@charset "UTF-8";

/*Обнуление*/

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

a {
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

button {
  background: transparent;
  font-size: 16px;
}

/*--------------------*/

body {
  background-color: #f6f9fc;
  font-family: Gotham, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 13px;
}

.wrapper {
  overflow: hidden;
}

.wrapper_full-height {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.wrapper_full-height main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}

.wrapper_has-aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 40px;
  width: 100%;
  background-color: #3558fc;
  border-radius: 12px;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.button:hover {
  opacity: 0.85;
}

.sml-button {
  border: 2px solid #3558fc;
  font-size: 13px;
  font-weight: 900;
  color: #3558fc;
  padding: 16px 15px;
  border-radius: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.sml-button:hover {
  opacity: 0.85;
}

.input {
  background-color: #f6f9fc;
  padding: 32px 20px 20px 20px;
  border-radius: 16px;
  display: block;
  width: 100%;
  color: #333a53;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid #f6f9fc;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.input::-webkit-input-placeholder {
  color: #d0dae3;
}

.input::-moz-placeholder {
  color: #d0dae3;
}

.input:-ms-input-placeholder {
  color: #d0dae3;
}

.input::-ms-input-placeholder {
  color: #d0dae3;
}

.input::placeholder {
  color: #d0dae3;
}

.input._error {
  border: 1px solid #f6103c;
}

.main__wrapper {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.title {
  font-size: 22px;
  font-weight: 900;
  color: #333a53;
  margin-bottom: 32px;
}

.label {
  font-size: 15px;
  color: #333a53;
  font-weight: 700;
}

@font-face {
  font-family: Gotham;
  font-display: swap;
  src: url("../fonts/Gotham-Black.woff2") format("woff2"), url("../fonts/Gotham-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: Gotham;
  font-display: swap;
  src: url("../fonts/Gotham-Bold.woff2") format("woff2"), url("../fonts/Gotham-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Gotham;
  font-display: swap;
  src: url("../fonts/Gotham-Light.woff2") format("woff2"), url("../fonts/Gotham-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: Gotham;
  font-display: swap;
  src: url("../fonts/Gotham-Regular.woff2") format("woff2"), url("../fonts/Gotham-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Gotham;
  font-display: swap;
  src: url("../fonts/Gotham-Ultra.woff2") format("woff2"), url("../fonts/Gotham-Ultra.woff") format("woff");
  font-weight: 1000;
  font-style: normal;
}

@font-face {
  font-family: Gotham;
  font-display: swap;
  src: url("../fonts/Gotham-Medium.woff2") format("woff2"), url("../fonts/Gotham-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

.header {
  padding: 34px 0;
}

.header__container {
  padding: 0px 40px;
}

.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.header__logo img {
  width: 135px;
}

.header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #333a53;
}

.dropdown {
  position: relative;
}

.dropdown__header {
  padding: 16px 20px;
  border-radius: 12px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #333a53;
}

.dropdown__header .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22px;
          flex: 0 0 22px;
  width: 22px;
}

.dropdown__header .icon img {
  width: 22px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 15px;
}

.dropdown__header:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #9fadbb;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.dropdown__header.open:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.dropdown__list {
  font-size: 13px;
  font-weight: 700;
  color: #333a53;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 16px 20px;
  border-radius: 12px;
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  width: 100%;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.dropdown__list.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.dropdown__list li {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.dropdown__list .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22px;
          flex: 0 0 22px;
  width: 22px;
}

.dropdown__list .icon img {
  width: 22px;
  height: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

.login {
  padding: 10px 0 40px 0;
}

.login__container {
  padding: 0px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.login__body {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 520px;
          flex: 0 1 520px;
}

.form {
  border-radius: 20px;
  padding: 55px 40px 40px 40px;
  background-color: #fff;
}

.form__top {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-bottom: 50px;
}

.form__top p {
  color: #91a0ae;
  font-size: 15px;
  font-weight: 500;
}

.form__title {
  font-size: 27px;
  color: #333a53;
  line-height: 120%;
  text-transform: uppercase;
  font-weight: 900;
}

.form__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.form__field {
  position: relative;
}

.form__label {
  position: absolute;
  z-index: 1;
  font-weight: 500;
  font-size: 13px;
  top: 12px;
  left: 20px;
  color: #a6b3bf;
}

.form__bottom {
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form__bottom p {
  color: #91a0ae;
}

.form__link {
  color: #333a53;
}

.form__code-fields {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (68px)[5];
  grid-template-columns: repeat(5, 68px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}

.form__code {
  font-size: 24px;
  text-align: center;
  padding: 24px;
  font-weight: 700;
}

.form__code::-webkit-input-placeholder {
  color: #d6e0e9;
}

.form__code::-moz-placeholder {
  color: #d6e0e9;
}

.form__code:-ms-input-placeholder {
  color: #d6e0e9;
}

.form__code::-ms-input-placeholder {
  color: #d6e0e9;
}

.form__code::placeholder {
  color: #d6e0e9;
}

.form__code-error {
  display: none;
  color: #f6103c;
}

.login-create {
  background-color: #eef2f6;
  padding: 25px 30px;
  border-radius: 16px;
  position: absolute;
  overflow: hidden;
  left: calc(100% + 16px);
  top: 0;
  max-width: 280px;
  width: 100%;
}

.login-create__icon {
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.login-create__label {
  font-size: 15px;
  color: #262d44;
  font-weight: 500;
  margin-bottom: 12px;
}

.login-create__button {
  position: relative;
  z-index: 1;
}

.login-create__bg img {
  top: 42px;
  width: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  right: -50px;
  position: absolute;
}

.dropdown-form {
  position: relative;
}

.dropdown-form__button {
  border: 1px solid #f6f9fc;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333a53;
  font-size: 15px;
  background-color: #fff;
  height: 70px;
  padding: 38px 20px 15px 20px;
  position: relative;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #333a53;
  font-size: 15px;
  width: 100%;
  font-weight: 700;
  cursor: pointer;
}

.dropdown-form__top {
  position: relative;
}

.dropdown-form__top.open .dropdown-form__arrow::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.dropdown-form__arrow {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 20px;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px;
  background-color: #f6f9fc;
}

.dropdown-form__arrow:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #333a53;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.dropdown-form__list {
  border: 1px solid #f6f9fc;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 5;
  max-height: 300px;
  overflow-y: auto;
  color: #333a53;
  font-size: 15px;
  background-color: #fff;
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  padding: 20px 20px 20px 20px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.dropdown-form__list li {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #e1dddd;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}

.dropdown-form__list.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.footer {
  padding: 48px 0;
}

.footer_white {
  background-color: #fff;
  padding: 40px 0;
  margin-top: 40px;
}

.footer__container {
  padding: 0px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer__container_white {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.footer__link {
  font-weight: 700;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  color: #333a53;
}

.footer__link:hover {
  color: #3558fc;
}

.footer__copy {
  color: #989fb6;
}

.sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
  width: 100%;
  display: block;
  background-color: #fff;
  padding: 75px 0;
}

.sidebar__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
}

.sidebar__menu {
  margin-bottom: 40px;
}

.sidebar__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sidebar__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 20px;
  position: relative;
  background-color: #fff;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  color: #262d44;
  border-bottom: 1px solid #f6f9fc;
  line-height: 120%;
}

.sidebar__link:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  background-color: #3558fc;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.sidebar__link._active {
  background-color: #f6f9fc;
}

.sidebar__link._active:after {
  opacity: 1;
  visibility: visible;
}

.sidebar-contact {
  background-color: #f6f9fc;
  padding: 20px;
  border-radius: 0 16px 16px 0;
  width: 240px;
}

.sidebar-contact__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}

.sidebar-contact__top p {
  font-size: 13px;
  color: #262d44;
  font-weight: 700;
}

.sidebar-contact__link {
  font-size: 12px;
  color: #262d44;
}

.header-main {
  padding: 20px 0;
  background-color: #fff;
  width: 100%;
}

.header-main__container {
  padding-right: 15px;
}

.header-main__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-main__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-main__logo {
  display: none;
}

.header-main__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.header-main__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.header-main__button {
  font-weight: 700;
  color: #262d44;
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  padding: 10px 12px;
  background-color: #f6f9fc;
  border-radius: 12px;
}

.header-main__button:hover .header-main__icon {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.header-main__icon {
  width: 26px;
  height: 26px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.header-main__icon img {
  width: 14px;
}

.header-main-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-main-stats__icon {
  width: 30px;
  height: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 6px;
  background-color: #f6f9fc;
}

.header-main-stats__icon img {
  width: 18px;
}

.header-main-stats__label {
  margin-bottom: 4px;
  color: #7a8ea2;
  font-size: 12px;
}

.header-main-stats__sum {
  font-size: 16px;
  color: #3558fc;
  font-weight: 900;
}

.withdrawal__container {
  height: 100%;
}

.withdrawal__sections {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.withdrawal__section {
  padding: 30px 40px;
}

.withdrawal__section:last-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 520px;
          flex: 0 1 520px;
  border-left: 2px solid #f6f9fc;
}

.withdrawal__title {
  margin-bottom: 30px;
}

.withdrawal__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 10px;
}

.withdrawal__item {
  padding: 20px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 12px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  background-color: #f6f9fc;
}

.withdrawal__item img {
  width: 65px;
}

.withdrawal__item:hover,
.withdrawal__item._active {
  background-color: #fff;
  -webkit-box-shadow: -2px 6px 8px rgba(0, 0, 0, 0.1);
          box-shadow: -2px 6px 8px rgba(0, 0, 0, 0.1);
}

.page {
  padding: 40px 45px;
  background-color: #f6f9fc;
  height: 100%;
}

.page__panel {
  background-color: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.withdrawal-form {
  max-width: 440px;
  padding: 0;
}

.withdrawal-form__field {
  position: relative;
  margin-bottom: 18px;
}

.withdrawal-form__field_static {
  margin-bottom: 8px;
}

.withdrawal-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

.withdrawal-form__sum span {
  color: #7d8893;
}

.withdrawal-form__sum span.withdrawal-form__price {
  font-size: 19px;
  color: #3558fc;
  font-weight: 900;
}

.withdrawal-form__commission {
  color: #7d8893;
}

.withdrawal-form__commission span {
  font-weight: 700;
  color: #333a53;
}

.withdrawal-form__bottom {
  margin-top: 18px;
  color: #7d8893;
}

.account__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 45px;
  gap: 45px;
}

.account__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 300px;
          flex: 0 1 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.account__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
}

.account__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.personal {
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  align-items: center;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.personal__avatar {
  margin-bottom: 24px;
}

.personal__avatar img {
  width: 115px;
}

.personal__info {
  text-align: center;
}

.personal__name {
  margin-bottom: 6px;
  font-size: 15px;
  color: #262d44;
  font-weight: 700;
}

.personal__id {
  font-size: 12px;
  color: #8089a8;
}

.balance {
  padding: 24px;
  border-radius: 20px;
  background-color: #3558fc;
}

.balance__title {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #fff;
}

.balance__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
}

.balance__sum {
  font-size: 20px;
  color: #fff;
  font-weight: 900;
  margin-bottom: 6px;
  white-space: nowrap;
}

.balance__profit {
  color: #abb9f7;
  font-weight: 700;
}

.balance__add {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35px;
          flex: 0 0 35px;
  width: 35px;
  height: 35px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 12px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.balance__add:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.account-referal {
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.account-referal__field {
  margin-bottom: 10px;
}

.account-referal__field input {
  padding: 16px 18px;
  font-size: 13px;
  color: #738496;
}

.account-referal__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  border: 1px solid #3558fc;
  color: #3558fc;
  font-weight: 700;
  font-size: 13px;
  border-radius: 12px;
  padding: 14px 20px;
}

.account-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 370px;
          flex: 0 1 370px;
  padding: 24px 28px;
  border-radius: 16px;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.account-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.account-item__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 28px;
          flex: 0 0 28px;
}

.account-item__icon img {
  width: 28px;
}

.account-item__title {
  font-size: 15px;
  font-weight: 700;
  color: #262d44;
}

.account-item__sum {
  font-size: 20px;
  font-weight: 900;
  color: #262d44;
}

.account-item__profit {
  margin-top: 12px;
  color: #7a8ea2;
}

.account-graph {
  padding: 30px;
  border-radius: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.account-graph__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}

.account-graph__title {
  font-size: 22px;
  font-weight: 700;
  color: #333a53;
}

.account-graph__content {
  width: 100%;
}

.datepicker {
  position: relative;
}

.datepicker__button {
  padding: 12px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #333a53;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  background-color: #f6f9fc;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.datepicker__item {
  position: absolute;
  top: 100%;
}

.datepicker__item {
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  padding: 10px;
  top: 100%;
  right: 0;
  width: auto;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  pointer-events: none;
}

.datepicker__item.active {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}

.datepicker__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.datepicker__days-row,
.datepicker__days-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[7];
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.datepicker__day {
  text-align: center;
  padding: 5px;
  cursor: pointer;
}

.datepicker__day--today {
  background: #007bff;
  color: white;
  border-radius: 50%;
}

.datepicker__day--label {
  font-weight: bold;
}

.history__content {
  padding: 35px;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  overflow: auto;
}

.table th,
.table td {
  padding: 20px;
  text-align: center;
  font-weight: 700;
}

.table th:last-child,
.table td:last-child {
  text-align: end;
  border-radius: 0 12px 12px 0;
}

.table th:first-child,
.table td:first-child {
  text-align: left;
  border-radius: 12px 0 0 12px;
}

.table th {
  color: #7a8ea2;
}

.table td {
  color: #333a53;
}

.table tr:nth-child(odd) td {
  background-color: #f6f9fc;
}

.price {
  color: #3558fc;
}

.status_success {
  color: #26a14e;
}

.status_in-progress {
  color: #72808e;
}

.status_error {
  color: #cd405e;
}

table {
  border-collapse: collapse;
  width: 100%;
}

table th,
table td {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  font-weight: normal;
  text-align: left;
}

table th {
  font-weight: normal;
}

table tr {
  border: none;
}

table thead {
  background: none;
}

.farms__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.farms__top .title {
  margin: 0;
}

.farms__button {
  gap: 12px;
  width: auto;
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 700;
}

.farms__button img {
  width: 20px;
}

.farms__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.farms__tab-btn {
  padding: 12px 20px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #333a53;
  border-radius: 12px 12px 0 0;
}

.farms__tab-btn._active {
  background-color: #fff;
  color: #3558fc;
}

@media (max-width: 1500px) {
  .account__container {
    gap: 20px;
  }

  .account__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 220px;
            flex: 0 1 220px;
  }
}

@media (max-width: 1350px) {
  .account__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 20px;
  }

  .account__info {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    max-width: 300px;
  }

  .personal {
    padding: 20px;
  }
}

@media (max-width: 1200px) {
  .header__container {
    padding: 0px 20px;
  }

  .login__container {
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
  }

  .login__body {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .login__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 520px;
            flex: 0 1 520px;
    width: 100%;
  }

  .login-create {
    position: relative;
    left: 0;
  }

  .sidebar {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
  }

  .sidebar-contact {
    width: 100%;
  }

  .header-main__body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .withdrawal__section {
    padding: 30px 20px;
  }

  .page {
    padding: 40px 20px;
  }
}

@media (max-width: 1024px) {
  .footer_white {
    padding-bottom: 80px;
  }

  .header-main__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .withdrawal__sections {
    display: block;
  }

  .page {
    padding-bottom: 40px;
  }

  .account__row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 20px;
  }

  .history__wrapper {
    width: 800px;
  }

  .history__content {
    padding: 20px 15px;
  }

  .table th,
  .table td {
    padding: 15px;
  }

  .referrals__wrapper {
    width: 650px;
  }
}

@media (max-width: 767px) {
  .button {
    font-size: 16px;
  }

  .title {
    margin-bottom: 24px;
  }

  .header {
    padding: 24px 0;
  }

  .header__body {
    gap: 16px;
  }

  .header__left {
    gap: 12px;
  }

  .header__logo img {
    width: 100px;
  }

  .header__link {
    padding: 12px 16px;
    gap: 8px;
  }

  .header__link span {
    display: none;
  }

  .dropdown__header {
    padding: 12px 16px;
    gap: 8px;
  }

  .dropdown__header .text {
    display: none;
  }

  .dropdown__list {
    width: auto;
  }

  .dropdown__list {
    left: inherit;
    right: 0;
  }

  .dropdown__list .text {
    display: none;
  }

  .dropdown__list {
    padding: 12px 16px;
  }

  .login__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .form {
    padding: 40px 20px;
  }

  .form__top p {
    font-size: 13px;
  }

  .form__top {
    margin-bottom: 30px;
  }

  .form__title {
    font-size: 20px;
  }

  .login-create {
    padding: 15px;
    max-width: 100%;
  }

  .login-create__icon {
    margin-bottom: 12px;
  }

  .footer {
    padding: 20px 0 32px 0;
  }

  .footer_white {
    padding: 20px 0 80px 0;
    margin: 0;
  }

  .sidebar {
    position: fixed;
    width: 100%;
    height: auto;
    padding: 0;
    bottom: 0;
    z-index: 5;
    left: 0;
    -webkit-box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
            box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
  }

  .sidebar__logo {
    display: none;
  }

  .sidebar__menu {
    margin: 0;
  }

  .sidebar__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .sidebar__link:after {
    width: 100%;
    height: 3px;
    bottom: 0;
    top: inherit;
  }

  .sidebar__link {
    border-right: 1px solid #e7e7e7;
    border-left: 1px solid #e7e7e7;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 8px;
    text-align: center;
    font-size: 12px;
  }

  .sidebar-contact {
    width: 100%;
    padding: 8px 15px;
    display: none;
  }

  .sidebar-contact__top {
    margin-bottom: 6px;
    gap: 12px;
  }

  .header-main__container {
    padding: 0px 15px;
  }

  .withdrawal__section {
    padding: 30px 15px;
  }

  .withdrawal__section:last-child {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    border: none;
    border-top: 2px solid #f6f9fc;
  }

  .withdrawal__item {
    padding: 20px 16px;
  }

  .withdrawal__item img {
    width: 55px;
  }

  .page {
    padding: 40px 15px;
  }

  .page__panel {
    height: auto;
    border-radius: 10px;
  }

  .withdrawal-form {
    padding: 0;
  }

  .withdrawal-form__item {
    gap: 12px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .account__info {
    max-width: 100%;
  }

  .account-graph {
    padding: 20px 15px;
    padding: 0;
    background-color: #fff;
    overflow: scroll;
  }

  .farms__tabs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .farms__tab-btn {
    font-size: 13px;
    padding: 12px 10px;
  }
}

@media (max-width: 600px) {
  .form__code-fields {
    -ms-grid-columns: (52px)[5];
    grid-template-columns: repeat(5, 52px);
    gap: 12px;
  }

  .form__code {
    font-size: 20px;
    padding: 18px;
    border-radius: 8px;
  }

  .account-graph__wrapper {
    width: 600px;
    padding: 30px;
    border-radius: 20px;
    background-color: #fff;
    -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 492px) {
  .sidebar__list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .sidebar__link span {
    display: none;
  }

  .sidebar__link {
    padding: 20px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1;
            flex: 1 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .account__row {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }

  .account-item {
    padding: 20px 15px;
  }
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  pointer-events: none;
}

.popup.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.popup__body {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 15px;
  position: relative;
}

.popup__content {
  background-color: #fff;
  max-width: 590px;
  width: 100%;
  padding: 65px 62px;
  text-align: center;
  position: relative;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popup__content P {
  font-size: 14px;
  line-height: 140%;
}

.popup__content-form {
  padding: 50px 30px;
}

.popup__icon {
  margin-bottom: 16px;
}

.popup__title {
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 130%;
}

.close-popup {
  position: absolute;
  top: -24px;
  right: -24px;
  cursor: pointer;
  display: block;
  width: 32px;
  height: 32px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.close-popup:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.account-referal__item {
  margin-bottom: 20px;
}

.account-referal__item:last-child {
  margin-bottom: 0;
}

.history__wrapper {
  max-height: 460px;
  /* 8 строк + высота заголовка */
  overflow-y: auto;
  scrollbar-width: thin;
  /* Firefox */
  scrollbar-color: transparent transparent;
}

.history__wrapper::-webkit-scrollbar {
  width: 6px;
}

.history__wrapper::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.history__wrapper:hover::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .popup__content {
    padding: 40px 20px;
  }

  .popup__content-form {
    padding: 40px 20px;
  }

  .popup__icon img {
    width: 70px;
    height: 70px;
  }

  .history__wrapper {
    max-height: 360px;
  }
}

@media (max-width: 492px) {
  .close-popup {
    width: 24px;
    height: 24px;
    top: -32px;
    right: 0;
  }

  .close-popup img {
    width: 24px;
    height: 24px;
  }
}