* {
  margin: 0;
  padding: 0;
}

::-webkit-scrollbar {
  width: 0;
}

.header {
  height: 140px;
  display: flex;
  /*align-items: center;*/
  /*justify-content: center;*/
  width: 100%;
}

.header__tokens-count {
  position: relative;
  width: 550px;
  font-size: 30px;
  font-family: Calibri Light;
  color: #0F5BC7;
  order: 2;
  margin: auto;
}

.header__tokens-count span {
  color: green;
}

.header #sign_up_header,
.header #sign_in_header {
  float: right;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  text-decoration: none;
  margin-top: 50px;
  margin-right: 132px;
  margin-left: auto;
  width: 195px;
  height: 20px;
  padding: 12px 0;
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 16px;
  color: white;
  background: -webkit-gradient(linear, left top, left bottom, from(#72255E), to(#561C47));
  background: linear-gradient(180deg, #72255E 0%, #561C47 100%);
  border: 10px;
  border-radius: 10px;
  font-weight: 500;
  order: 2;
}

.header #sign_up_header p,
.header #sign_in_header p {
  height: 20px;
}

.header__logo {
  float: left;
  margin-left: 81px;
  margin-top: 49px;
  /*margin-left: auto;*/
  order: 1;
  cursor: pointer;
  height: 76px;
  width: 123px;
}

#user_mail {
  font-size: 18px;
  font-family: 'Gilroy-Regular', sans-serif;
}

.header__user {
  float: right;
  margin-top: 50px;
  margin-right: 132px;
  order: 3;
}

.header__icons {
  margin-right: 22px;
  width: 26.5px;
  height: 25px;
  display: inline-block;
}

.header__language {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.header__languages {
  position: absolute;
  z-index: 100;
  margin-left: 50px;
  float: right;
  display: none;
  height: 0;
  width: 125px;
  background: #911670;
  cursor: pointer;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.header__languages-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  cursor: pointer;
}

.header__languages-option img {
  margin: 4px;
}

.header__languages-option p {
  font-family: Roboto;
  font-size: 15px;
  font-weight: 400;
  color: white;
  margin: auto 0;
}

.header__languages-option:hover {
  background: rgba(110, 33, 89, 0.42);
}

.header__flags {
  border-radius: 5px;
  margin-right: 22px;
}

.header__flags,
.option__flags {
  height: 25px;
  width: 25px;
}

.header__arrow {
  width: 12.5px;
  height: 6.25px;
  margin: auto;
  display: inline-block;
}

.line {
  background-color: #C31162;
  width: 100%;
  height: 1px;
  border: none;
  vertical-align: bottom;
}

.navigation {
  position: relative;
  width: 100%;
}

.navigation__title {
  margin: 99px 0 0 182px;
  font-family: 'Open Sans';
  font-size: 40px;
  font-weight: 600;
}

.navigation__tabs {
  margin: 30px 0 0 182px;
}

.navigation__tabs-name {
  display: inline-block;
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 25px;
  font-weight: 500;
  color: #A6A6A6;
  opacity: 1;
  margin-right: 150px;
  cursor: pointer;
}

.navigation__tabs-name:hover {
  color: #75155C;
}

.navigation__tabs-name_active {
  color: #75155C;
  font-weight: bold;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  opacity: 1;
}

.navigation__tabs-name_green-active {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  opacity: 1;
}

.navigation__tabs-name_active:hover {
  color: #571044;
}

.navigation__tabs-name_green-active:hover {
  color: #27A17C;
}

@media (max-width: 1500px) {
  .navigation__title {
    margin: 50px 0 0 50px;
  }

  .navigation__tabs {
    margin: 20px 0 0 50px;
  }
}

@media (max-width: 1100px) {
  .header__logo {
    margin-left: 10px;
    margin-top: 49px;
  }

  .header__tokens-count {
    width: 310px;
    font-size: 20px;
    margin: auto;
  }

  .header__user {
    margin-top: 50px;
    margin-right: 10px;
  }
}

@media (max-width: 550px) {
  .header {
    display: -ms-grid;
    /* display: grid; */
    -ms-grid-columns: 40% 60%;
        grid-template-columns: 40% 60%;
    -ms-grid-rows: 50px 70px;
        grid-template-rows: 50px 70px;
    height: auto;
  }
  #user_mail {
    grid-column: 1 / span 2;
    grid-row: 1 / span 1;
    margin: auto 16px;
  }
  .header__logo {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    grid-row: 2 / span 1;
    margin: 12px 15px;
    width: 88px;
    height: 55px;
  }
  .header__tools {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / span 1;
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    grid-row: 2 / span 1;
  }
  .header__tokens-count {
    width: 110px;
    font-size: 16px;
    margin: 5px auto;
  }
  .header__user {
    display: -ms-grid;
    margin: 0;
    /* margin-right: 20px;
    height: 30px;
    margin-bottom: 0; */
  }
}


/* █▄ █ ▄▀▄ █ █ ▀█▀ █▀▀ ▄▀▄ ▀█▀ ▀█▀ █▀█ █▄ █    █▄▄ █ █ ▀█▀ ▀█▀ █▀█ █▄ █ █▀▀ 
   █ ▀█ █▀█ ▀▄▀ ▄█▄ █▄█ █▀█  █  ▄█▄ █▄█ █ ▀█    █▄█ █▄█  █   █  █▄█ █ ▀█ ▄██  */
   
@media (max-width: 500px) {
  .navigation {
    position: relative;
    width: calc(100vw - 32px);
    margin: 50px 16px 20px;
  }
  .navigation__title {
    margin: 0;
    font-size: 30px;
  }
  .navigation__tabs {
    margin: 0;
    width: calc(100vw - 32px);
  }
  .navigation__tabs-name {
    font-size: 20px;
    margin: 30px 64px 0 0;
  }

}

@media (max-width: 400px) {
  .header {
    -ms-grid-columns: 30% 70%;
        grid-template-columns: 30% 70%;
  }
}
/*# sourceMappingURL=accountheader.css.map */