@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400..800&family=Wix+Madefor+Text:ital,wght@0,400..800;1,400..800&display=swap");
#adaptive {
  min-width: 1920px;
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
}
@media (max-width: 1440px) {
  #adaptive {
    min-width: 1440px;
    max-width: 1440px;
  }
}
@media (max-width: 1080px) {
  #adaptive {
    min-width: 980px;
    max-width: 980px;
  }
}
@media (max-width: 768px) {
  #adaptive {
    min-width: 768px;
    max-width: 768px;
  }
}
@media (max-width: 520px) {
  #adaptive {
    max-width: 360px;
    min-width: 360px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  font-family: "Wix Madefor Text", sans-serif;
  color: #132539;
  transition: 0.3s !important;
}

.google {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #098E4D;
  transition: 0.2s;
}
.google:hover {
  transition: 0.2s;
  background: #098E4D;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

button,
input,
textarea,
select {
  display: block;
  outline: none;
  border: none;
  background: none;
}

textarea {
  resize: none;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

table {
  border-collapse: collapse;
}

button,
select {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

a {
  display: block;
  text-decoration: none;
}

img,
video {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

label {
  position: relative;
  display: block;
}

body {
  background: #F1F1F1;
}

.burgerBtn {
  display: none;
}
@media (max-width: 1080px) {
  .burgerBtn {
    display: block;
    padding: 12px;
  }
  .burgerBtn__icon {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 520px) {
  .burgerBtn {
    padding: 6px;
  }
}

.container {
  display: grid;
  grid-template-columns: 1fr 5fr;
  grid-template-rows: 120px auto;
}
@media (max-width: 1080px) {
  .container {
    grid-template-columns: 1fr;
    grid-template-rows: 105px auto;
  }
}
@media (max-width: 520px) {
  .container {
    display: flex;
    flex-direction: column;
  }
}

.accordionWrapper {
  display: grid;
  grid-gap: 25px;
}
@media (max-width: 1080px) {
  .accordionWrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-column: 1/3;
  }
}
@media (max-width: 520px) {
  .accordionWrapper {
    grid-template-columns: 1fr;
    grid-column: 1/2;
    grid-gap: 15px;
  }
}

.empty {
  overflow-x: hidden !important;
}
.empty .list__scrolled {
  min-width: 0 !important;
}

.header {
  padding: 30px;
  padding-right: 150px;
}
@media (max-width: 1440px) {
  .header {
    padding-right: 30px;
  }
}
@media (max-width: 1080px) {
  .header {
    padding: 20px 15px;
  }
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 30px;
}
@media (max-width: 520px) {
  .header__wrapper {
    flex-direction: column-reverse;
    align-items: start;
    gap: 10px;
  }
}
.header__btns {
  display: flex;
  gap: 25px;
}
@media (max-width: 520px) {
  .header__btns {
    gap: 8px;
  }
}
.header__btns_helpCenter {
  display: flex;
  align-items: center;
  border-radius: 4px;
  border: 3px solid #32AC70;
  background: #32AC70;
  gap: 4px;
}
.header__btns_helpCenter_pr {
  padding: 8px 16px;
  font-weight: 500;
  height: 100%;
  color: #fff;
}
.header__btns_helpCenter_link {
  width: 42px;
  height: 36px;
  padding: 3px;
  border-radius: 3px;
  background: #0B8248;
}
.header__btns_helpCenter_link:hover {
  background: #098E4D;
}
.header__btns_helpCenter_link:active {
  background: #8CCAAB;
}
.header__btns_helpCenter_link_icon {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__btns_referalCopy {
  display: flex;
  align-items: center;
  grid-gap: 15px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #098E4D;
  transition: 0.2s;
}
@media (max-width: 768px) {
  .header__btns_referalCopy {
    gap: 8px;
    padding: 8px;
  }
}
@media (max-width: 520px) {
  .header__btns_referalCopy {
    gap: 10px;
    padding: 6px 12px;
  }
}
.header__btns_referalCopy:hover {
  background: #098E4D;
  transition: 0.2s;
}
.header__btns_referalCopy:hover * {
  color: #fff;
  transition: 0.2s;
}
.header__btns_referalCopy_icon {
  width: 30px;
  height: 30px;
}
@media (max-width: 520px) {
  .header__btns_referalCopy_icon {
    width: 15px;
    height: 15px;
  }
}
.header__btns_referalCopy_txt {
  font-size: 18px;
}
@media (max-width: 520px) {
  .header__btns_referalCopy_txt {
    font-size: 12px;
  }
}
.header__btns .cashout {
  display: flex;
  align-items: center;
}
.header__btns .cashout__summ {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #098E4D;
  padding: 4px 16px;
  border-radius: 8px 0 0 8px;
  height: 100%;
}
.header__btns .cashout__summ_txt {
  font-size: 18px;
  white-space: nowrap;
}
@media (max-width: 520px) {
  .header__btns .cashout__summ_txt {
    font-size: 12px;
  }
}
.header__btns .cashout__icon {
  width: 30px;
  height: 30px;
}
@media (max-width: 520px) {
  .header__btns .cashout__icon {
    width: 15px;
    height: 15px;
  }
}
.header__btns .cashout__btn {
  padding: 4px 24px;
  font-size: 18px;
  height: 100%;
  border-radius: 0 8px 8px 0;
  border: 1px solid #098E4D;
  transition: 0.2s;
  border-left: none;
}
@media (max-width: 520px) {
  .header__btns .cashout__btn {
    padding: 4px 16px;
    font-size: 12px;
  }
}
.header__btns .cashout__btn:hover {
  background: #098E4D;
  transition: 0.2s;
  color: #fff;
}
.header__btns .primaryBtn {
  white-space: nowrap;
  padding: 12px 16px;
}
@media (max-width: 520px) {
  .header__btns .primaryBtn {
    padding: 8px 12px;
    font-size: 12px;
  }
}
.header .help {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .header .help {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1089;
    flex-direction: column-reverse;
  }
}
@media (max-width: 520px) {
  .header .help {
    flex-direction: row;
    position: static;
  }
}
.header .help__wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 12px;
  border-radius: 8px;
  border: 1px solid #098E4D;
}
@media (max-width: 768px) {
  .header .help__wrapper {
    flex-direction: column;
    gap: 0;
    transition: 0.2s;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    border: none;
  }
  .header .help__wrapper.active {
    transition: 0.2s;
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 520px) {
  .header .help__wrapper {
    visibility: visible;
    flex-direction: row;
    opacity: 1;
    gap: 20px;
    border: 1px solid #098E4D;
    padding: 4px 12px;
  }
}
.header .help__btn {
  display: none;
}
@media (max-width: 768px) {
  .header .help__btn {
    display: block;
    border-radius: 50%;
    background: #32AC70;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3137254902);
  }
  .header .help__btn_icon {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 520px) {
  .header .help__btn {
    display: none;
  }
}
.header .help__link {
  display: flex;
  align-items: center;
  transition: 0.2s;
}
@media (max-width: 1080px) {
  .header .help__link {
    border: none;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .header .help__link {
    padding-bottom: 20px;
  }
}
@media (max-width: 520px) {
  .header .help__link {
    padding-bottom: 0;
  }
}
.header .help__link:hover {
  transform: scale(1.1);
  transition: 0.2s;
}
.header .help__link:hover * {
  color: #fff;
  transition: 0.2s;
}
.header .help__link_txt {
  font-size: 18px;
  transition: 0.2s;
}
@media (max-width: 1080px) {
  .header .help__link_txt {
    display: none;
  }
}
.header .help__link_icon {
  width: 40px;
  height: 40px;
}
@media (max-width: 768px) {
  .header .help__link_icon {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 520px) {
  .header .help__link_icon {
    width: 30px;
    height: 30px;
  }
}
.header__controls {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  .header__controls {
    width: auto;
  }
}
@media (max-width: 520px) {
  .header__controls {
    width: 100%;
  }
}
.header__controls_wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 520px) {
  .header__controls_wrapper {
    gap: 20px;
    margin-left: auto;
  }
}
.header__controls_not {
  position: relative;
}
.header__controls_not_wrapper {
  position: absolute;
  background: #fff;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.3137254902);
  padding: 30px 20px 30px 30px;
  border-radius: 10px;
  right: 0;
  transform: translate(0, 20px);
  width: 100vw;
  max-width: 500px;
  max-height: 80vh;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
  z-index: 1089;
}
@media (max-width: 768px) {
  .header__controls_not_wrapper {
    right: -174px;
    top: 61px;
  }
}
@media (max-width: 520px) {
  .header__controls_not_wrapper {
    max-width: 340px;
    right: -127px;
    top: -30px;
  }
}
.header__controls_not_wrapper.active {
  transition: 0.2s;
  visibility: visible;
  opacity: 1;
}
.header__controls_not_scrolled {
  padding: 15px 20px 0 0;
  overflow-y: auto;
  max-height: 60vh;
}
.header__controls_not_scrolled::-webkit-scrollbar {
  width: 6px;
  background: rgba(0, 0, 0, 0.2509803922);
  border-radius: 20px;
}
.header__controls_not_scrolled::-webkit-scrollbar-thumb {
  width: 6px;
  background: rgba(19, 37, 57, 0.3137254902);
  border-radius: 20px;
}
.header__controls_not_title {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 20px;
}
@media (max-width: 520px) {
  .header__controls_not_title {
    font-size: 18px;
  }
}
.header__controls_not_closeBtn {
  position: absolute;
  top: 35px;
  right: 35px;
  z-index: 1088;
}
.header__controls_not_item {
  border: 1px solid #DEDEDE;
  padding: 12px;
  border-radius: 6px;
  position: relative;
}
.header__controls_not_item:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 520px) {
  .header__controls_not_item:not(:last-child) {
    margin-bottom: 12px;
  }
}
.header__controls_not_item.active {
  background: #DCFCE1;
}
.header__controls_not_item.inactive {
  background: #ffb9b9;
}
.header__controls_not_item_status {
  position: absolute;
  top: -16px;
  right: 8px;
  display: block;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 1010;
  color: #fff;
  font-weight: bold;
}
.header__controls_not_item_status.active {
  background: #32AC70;
}
.header__controls_not_item_status.inactive {
  background: #bd3c3c;
}
.header__controls_not_item_wrapper * {
  font-size: 16px;
  line-height: 18px;
  transition: 0.2s;
}
@media (max-width: 520px) {
  .header__controls_not_item_wrapper * {
    font-size: 12px;
    line-height: 16px;
  }
}
.header__controls_not_item_wrapper strong {
  font-weight: 500;
}
.header__controls_not_item_wrapper b {
  font-weight: 700;
}
.header__controls_not_item_wrapper a {
  display: inline;
  text-decoration: underline;
}
.header__controls_not_item_showMore {
  display: block;
  margin-top: 12px;
  text-decoration: underline;
}
.header__controls_not_item_title {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 12px;
}
.header__controls_not_btn {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 50px;
  height: 50px;
  position: relative;
}
@media (max-width: 520px) {
  .header__controls_not_btn {
    width: 38px;
    height: 38px;
  }
}
.header__controls_not_btn_icon {
  width: 40px;
  height: 40px;
}
@media (max-width: 520px) {
  .header__controls_not_btn_icon {
    width: 30px;
    height: 30px;
  }
}
.header__controls_not_btn_much {
  display: block;
  padding: 4px;
  background: #32AC70;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  position: absolute;
  color: #fff;
  font-weight: 500;
  top: 0;
  right: 0;
  font-size: 14px;
  line-height: 1;
}
@media (max-width: 520px) {
  .header__controls_not_btn_much {
    font-size: 11px;
    padding: 3px;
    width: 15px;
    height: 15px;
  }
}
.header__controls_user {
  width: 60px;
  height: 60px;
  position: relative;
}
@media (max-width: 520px) {
  .header__controls_user {
    width: 40px;
    height: 40px;
  }
}
.header__controls_user_btn {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.header__controls_user_btn_img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.header__controls_user:hover .header__controls_user_logout {
  display: flex;
}
.header__controls_user_logout {
  display: none;
  align-items: center;
  grid-gap: 8px;
  position: absolute;
  padding: 8px 16px;
  border-radius: 6px;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1019607843);
  right: 0;
  background: #fff;
  transition: 0.2s;
  z-index: 1090;
}
.header__controls_user_logout:hover {
  transition: 0.2s;
  background: #d1d1d1;
}

#createContragent > div {
  max-width: 980px;
  border-radius: 20px;
  position: relative;
}

#cash .modal__wrapper {
  max-width: 650px;
  border-radius: 15px;
}

.cash__wrapper {
  display: flex;
  grid-gap: 20px;
  position: relative;
}
.cash__title {
  font-size: 24px;
  margin-bottom: 20px;
}
@media (max-width: 520px) {
  .cash__title {
    font-size: 22px;
  }
}
.cash__info {
  display: grid;
  margin-bottom: 20px;
  background: #132539;
  border-radius: 10px;
  padding: 8px 12px;
}
.cash__info_pr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 8px 0;
}
.cash__info_pr:not(:last-child) {
  border-bottom: 1px solid rgba(9, 142, 77, 0.3137254902);
}
.cash__info_pr_txt {
  font-size: 18px;
  color: #fff;
}
@media (max-width: 520px) {
  .cash__info_pr_txt {
    font-size: 14px;
  }
}
.cash__closeBtn {
  position: absolute;
  top: -35px;
  right: -35px;
  z-index: 1088;
}
@media (max-width: 520px) {
  .cash__closeBtn {
    top: 15px;
    right: 15px;
  }
}

@media (max-width: 520px) {
  э .header__controls_not_item_status {
    font-size: 12px;
  }
}

#createCompany .policyField {
  grid-column: 1/3;
}
@media (max-width: 520px) {
  #createCompany .policyField {
    grid-column: 1/2;
  }
}

.scrolled {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 60vh;
  padding-right: 15px;
  padding-bottom: 30px;
}
@media (max-width: 520px) {
  .scrolled {
    max-height: 360px;
  }
}
.scrolled::-webkit-scrollbar {
  width: 6px;
  background: rgba(19, 37, 57, 0.062745098);
  border-radius: 6px;
}
.scrolled::-webkit-scrollbar-thumb {
  width: 6px;
  background: rgba(19, 37, 57, 0.3137254902);
  border-radius: 6px;
}

.createContragent {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px 25px;
}
@media (max-width: 520px) {
  .createContragent {
    grid-gap: 25px;
    grid-template-columns: 1fr;
  }
}
.createContragent .policyField {
  grid-column: 1/3;
}
@media (max-width: 520px) {
  .createContragent .policyField {
    grid-column: 1/2;
  }
}
.createContragent .primaryBtn {
  width: 100%;
}
.createContragent__title {
  grid-column: 1/3;
  font-family: Wix Madefor Display;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 520px) {
  .createContragent__title {
    font-size: 18px;
  }
}
.createContragent__closeBtn {
  position: absolute;
  top: -35px;
  right: -35px;
  z-index: 1088;
}
@media (max-width: 768px) {
  .createContragent__closeBtn {
    top: 35px;
    right: 35px;
  }
}
@media (max-width: 520px) {
  .createContragent__closeBtn {
    top: 25px;
  }
}
.createContragent__btns {
  display: flex;
  justify-content: flex-end;
  margin-top: 25px;
  gap: 25px;
}
@media (max-width: 520px) {
  .createContragent__btns {
    margin-top: 20px;
  }
}

.desktop {
  display: block;
}
@media (max-width: 768px) {
  .desktop {
    display: none;
  }
}

.mobile {
  display: none;
}
@media (max-width: 768px) {
  .mobile {
    display: block;
  }
}

.fieldDefault__status_txt {
  height: 16px;
}

#changePhone .modal__wrapper,
#changePhoneCode .modal__wrapper,
#changePhoneVer .modal__wrapper {
  border-radius: 16px;
  max-width: 440px;
}

#mailVerify .modal__wrapper,
#mailVerifyTrans .modal__wrapper {
  max-width: 500px;
  border-radius: 15px;
}
#mailVerify .mailVer,
#mailVerifyTrans .mailVer {
  position: relative;
}
#mailVerify .mailVer__btns,
#mailVerifyTrans .mailVer__btns {
  display: flex;
  grid-gap: 20px;
  margin-top: 20px;
}
#mailVerify .mailVer__title,
#mailVerifyTrans .mailVer__title {
  font-size: 24px;
  margin-bottom: 20px;
}
#mailVerify .mailVer__closeBtn,
#mailVerifyTrans .mailVer__closeBtn {
  position: absolute;
  top: -35px;
  right: -35px;
  z-index: 1088;
}
@media (max-width: 520px) {
  #mailVerify .mailVer__closeBtn,
  #mailVerifyTrans .mailVer__closeBtn {
    top: 15px;
    right: 15px;
  }
}

.mailVerify {
  width: 100%;
  background: red;
}
.mailVerify__btn {
  display: flex;
  grid-gap: 10px;
  align-items: center;
  padding: 8px 16px;
  margin: 0 auto;
}
.mailVerify__btn_txt {
  color: #fff;
  font-size: 20px;
}
@media (max-width: 520px) {
  .mailVerify__btn_txt {
    font-size: 12px;
  }
}
.mailVerify__btn_icon {
  width: 24px;
  height: 24px;
}
@media (max-width: 520px) {
  .mailVerify__btn_icon {
    width: 15px;
    height: 15px;
  }
}

.mailVerifySuccess {
  display: none !important;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
  padding: 8px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  background: #32AC70;
}
.mailVerifySuccess.active {
  display: flex !important;
}

.reqNewCode {
  width: 100%;
}

#changePhoneCode .changePhone__btns button {
  width: 100%;
  white-space: nowrap;
}

.time {
  text-align: center;
}

.changePhone {
  position: relative;
}
.changePhone__closeBtn {
  position: absolute;
  top: -35px;
  right: -35px;
  z-index: 1088;
}
.changePhone__title {
  font-size: 24px;
  margin-bottom: 20px;
}
.changePhone__btns {
  margin-top: 20px;
  display: flex;
  grid-gap: 20px;
}

.successModal,
.errorModal {
  display: none !important;
}
.successModal.active,
.errorModal.active {
  display: flex !important;
}
.successModal .modal__wrapper,
.errorModal .modal__wrapper {
  border-radius: 15px;
  max-width: 400px;
}
.successModal__title,
.errorModal__title {
  font-size: 24px;
  text-align: center;
}
@media (max-width: 520px) {
  .successModal__title,
  .errorModal__title {
    font-size: 16px;
  }
}
.successModal__img,
.errorModal__img {
  display: block;
  margin: 20px auto;
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 520px) {
  .successModal__img,
  .errorModal__img {
    width: 50px;
    height: 50px;
    margin: 10px auto;
  }
}
.successModal__btn,
.errorModal__btn {
  margin: 0 auto;
}

.none {
  margin: 0 auto;
  padding: 30px;
  max-width: 800px;
}
.none__img {
  max-width: 300px;
  margin: 0 auto;
}
@media (max-width: 520px) {
  .none__img {
    max-width: 160px;
  }
}
.none__title {
  margin: 20px 0 15px;
  text-align: center;
  font-size: 32px;
}
@media (max-width: 520px) {
  .none__title {
    font-size: 18px;
  }
}
.none__pr {
  font-size: 22px;
  margin: 15px 0 20px;
  text-align: center;
}
@media (max-width: 520px) {
  .none__pr {
    font-size: 14px;
    margin: 10px 0;
  }
}
.none button,
.none a {
  margin: 0 auto;
  padding: 12px 48px;
}

.fakeText {
  width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fieldDefault__status {
  display: none;
}
.fieldDefault__status.active {
  display: block;
}
.fieldDefault__status_txt {
  color: #e05757;
}

.invalid {
  border: 1px solid #ff0000 !important;
  box-shadow: 0 0 5px 0 #e05757;
}
.invalid .placeholder,
.invalid * {
  color: #e05757;
}

.policyField__txt.active,
.policyField__txt.active * {
  color: #e05757;
}

.disabled .dropdown,
.disabled .dropdown * {
  cursor: not-allowed !important;
  opacity: 0.5;
}

.addFile__header_title.active {
  color: #e05757;
}

.pagination {
  margin: 20px 0;
  display: flex;
  grid-gap: 10px;
  align-items: center;
  justify-content: center;
}
.pagination__btn_icon {
  width: 24px;
}
.pagination__pages {
  display: flex;
  align-items: center;
  grid-gap: 6px;
}
.pagination__pages_el {
  font-size: 18px;
  line-height: 24px;
  transition: 0.2s;
}
.pagination__pages_el.active, .pagination__pages_el:hover {
  color: #fff !important;
  background: #32AC70;
  transition: 0.2s;
}

.createContragent {
  margin-top: 20px;
}

@media (max-width: 520px) {
  #createContragent .modal__scrolled {
    max-height: 460px;
  }
}

.podskazka {
  font-size: 18px;
}
@media (max-width: 520px) {
  .podskazka {
    font-size: 12px;
  }
}

#createCompany .podskazka {
  margin-bottom: 15px;
}

.choose,
.create {
  display: none !important;
}
.choose.active,
.create.active {
  display: block !important;
}

#transPrev,
#transSend,
#transNext {
  display: none !important;
}
#transPrev.active,
#transSend.active,
#transNext.active {
  display: block !important;
}

.emailVerifyLabel {
  cursor: pointer;
}

.addFileWrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 25px;
  grid-column: 1/3;
}
@media (max-width: 520px) {
  .addFileWrapper {
    grid-column: 1/2;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

#transaction .policyField {
  grid-column: 1/3;
}
@media (max-width: 520px) {
  #transaction .policyField {
    grid-column: 1/2;
  }
}
#transaction .policyField * {
  font-size: 18px;
}
@media (max-width: 520px) {
  #transaction .policyField * {
    font-size: 12px;
  }
}

.referalDetails__tab_item {
  display: none;
  padding: 8px;
}
.referalDetails__tab_item tr:first-child {
  background: #E8EAEC;
  box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1450980392);
  border-radius: 15px 15px 0 0;
}
.referalDetails__tab_item tr:first-child th:first-child {
  border-radius: 15px 0 0;
}
.referalDetails__tab_item tr:first-child th:last-child {
  border-radius: 0 15px 0 0;
}
.referalDetails__tab_item tr:not(:first-child) {
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1450980392);
  border-radius: 15px;
}
.referalDetails__tab_item.active {
  display: block;
}

.referalDetails__tab_btns {
  display: flex;
  grid-gap: 10px;
}
.referalDetails__tab_btns_btn {
  border-radius: 20px;
  padding: 8px 16px;
  border: 1px solid #098E4D;
  transition: 0.2s;
}
.referalDetails__tab_btns_btn:hover, .referalDetails__tab_btns_btn.active {
  transition: 0.2s;
  color: #fff;
  background: #098E4D;
}

@media (max-width: 520px) {
  #adaptive {
    height: -moz-fit-content;
    height: fit-content;
  }
  #adaptive .wrapper {
    min-height: 60vh !important;
  }
}

@media (max-width: 520px) {
  .main {
    height: 100vh;
    min-height: -moz-fit-content;
    min-height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 150px !important;
    position: relative;
  }
}

.footer {
  width: 100%;
  padding: 20px 50px;
  background: #243447;
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 15px;
  left: 0;
}
@media (max-width: 1080px) {
  .footer {
    flex-wrap: wrap;
  }
}
@media (max-width: 520px) {
  .footer {
    padding: 20px 10px;
    width: 100%;
  }
  .footer * {
    font-size: 12px;
  }
}
.footer * {
  color: #fff;
}
@media (max-width: 520px) {
  .footer__copywrite {
    order: 1;
  }
}
.footer a {
  text-decoration: underline;
}
.footer__list {
  display: flex;
  grid-gap: 15px;
}
@media (max-width: 1080px) {
  .footer__list {
    grid-gap: 30px;
  }
}
@media (max-width: 520px) {
  .footer__list {
    flex-direction: column;
    grid-gap: 10px;
    order: 3;
    margin: 0 auto;
  }
  .footer__list * {
    text-align: center;
  }
}
.footer__creater {
  display: flex;
  grid-gap: 5px;
  align-items: center;
}
@media (max-width: 520px) {
  .footer__creater {
    order: 2;
  }
}

.main {
  position: relative;
}

.dropdown {
  position: relative;
  cursor: pointer;
}
.dropdown__icon {
  position: absolute;
  top: 8px;
  right: 16px;
}
@media (max-width: 580px) {
  .dropdown__icon {
    top: 4px;
  }
}
.dropdown select {
  padding: 13px 16px;
  width: 100%;
}
@media (max-width: 580px) {
  .dropdown select {
    font-size: 12px;
    padding: 10px 16px;
  }
}
@media (max-width: 580px) {
  .dropdown select option {
    font-size: 12px;
  }
}

.verifyBtns {
  display: flex;
  grid-gap: 20px;
}
.verifyBtns * {
  width: 100% !important;
  white-space: nowrap;
}

.fieldDefault__tooltip_content,
.addFile__header_tooltip_content {
  font-size: 14px !important;
  max-width: 250px !important;
}

.addFile__header_tooltip_content {
  bottom: 0 !important;
}

.cash__pr {
  margin-bottom: 20px;
}
@media (max-width: 520px) {
  .cash__pr {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

@media (max-width: 520px) {
  .addFile {
    margin-top: 15px;
  }
  .addFile__header_title {
    position: absolute;
    top: -20px;
    margin-bottom: 20px;
  }
  .addFile__header_tooltip_icon {
    display: none;
  }
  .addFile__header_tooltip_content {
    display: block;
    position: static !important;
    width: 100% !important;
    font-size: 12px !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 0 !important;
    box-shadow: none !important;
  }
}
#cash .policyField {
  margin-bottom: 20px;
}

.orderDetails .successChoose {
  margin-top: 0 !important;
}
.orderDetails .addFileOrder {
  margin-top: -10px;
}

.fieldDefault .fieldDefault__status {
  bottom: -5px;
}

.fieldDefault__status_txt {
  display: block;
  height: 16px;
}

#transaction .fieldDefault__status {
  bottom: -10px;
}

.header__btns_referalCopy .name {
  font-size: 16px;
  white-space: nowrap;
}
.header__btns_referalCopy .name .namenone {
  font-size: 16px;
}
@media (max-width: 520px) {
  .header__btns_referalCopy .name {
    font-size: 12px;
  }
  .header__btns_referalCopy .name .namenone {
    display: none;
  }
}

.navbar {
  background: #132539;
  height: 100%;
  padding: 60px 30px;
  grid-row: 1/3;
}
@media (max-width: 1440px) {
  .navbar {
    padding: 40px 15px;
  }
}
@media (max-width: 1080px) {
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 360px;
    right: -360px;
    z-index: 1090;
    transition: 0.3s;
  }
  .navbar.active {
    right: 0;
    transition: 0.3s;
  }
}
.navbar .closeBtn {
  position: absolute;
  top: 35px;
  right: 30px;
  width: 40px;
  height: 40px;
  display: none;
}
@media (max-width: 1080px) {
  .navbar .closeBtn {
    display: block;
  }
}
@media (max-width: 520px) {
  .navbar .closeBtn {
    right: 10px;
  }
}
.navbar .closeBtn__icon {
  width: 100%;
}
.navbar__logo {
  padding-bottom: 80px;
  border-bottom: 1px solid #2E3354;
}
@media (max-width: 1080px) {
  .navbar__logo {
    padding-bottom: 30px;
    max-width: 60%;
  }
}
.navbar__logo_img {
  width: 100%;
}
.navbar__menu {
  display: grid;
  grid-gap: 12px;
  margin: 30px 0;
}
.navbar__menu_link {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  padding: 10px;
  border-radius: 6px;
}
.navbar__menu_link:hover, .navbar__menu_link.active {
  background: #2E3354;
}
.navbar__menu_link_txt {
  color: #fff;
  font-size: 24px;
}
@media (max-width: 1440px) {
  .navbar__menu_link_txt {
    font-size: 20px;
  }
}
.navbar__menu_link_icon {
  width: 40px;
  height: 40px;
}
@media (max-width: 1440px) {
  .navbar__menu_link_icon {
    width: 30px;
    height: 30px;
  }
}

.textBtn, .outlineBtn, .secondaryBtn, .primaryBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-style: solid;
  border-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
}
@media (max-width: 520px) {
  .textBtn, .outlineBtn, .secondaryBtn, .primaryBtn {
    padding: 6px 12px;
    font-size: 12px;
  }
}

.primaryBtn {
  background: #32AC70;
  color: #fff;
  border-width: 2px;
  cursor: pointer;
}
.primaryBtn * {
  color: #fff;
}
.primaryBtn:hover {
  background: #098E4D;
}
.primaryBtn:active {
  border-color: #8CCAAB;
  background: #0B8248;
}
.primaryBtn.disabled, .primaryBtn.disabled:active, .primaryBtn.disabled:hover {
  background: #D4D5E2;
  cursor: not-allowed !important;
}
.primaryBtn__icon {
  width: 16px;
  height: 16px;
  margin-top: -6px;
}

.secondaryBtn {
  background: transparent;
  color: #32AC70;
  border-color: #32AC70;
  border-width: 1px;
}
.secondaryBtn:hover {
  color: #098E4D;
  border-color: #098E4D;
}
.secondaryBtn:active {
  border-width: 2px;
  border-color: #0B8248;
  color: #0B8248;
}
.secondaryBtn.disabled, .secondaryBtn.disabled:active, .secondaryBtn.disabled:hover {
  background: #f5f5f5;
  border-color: #D4D5E2;
  border-width: 1px;
  color: #D4D5E2;
  cursor: not-allowed !important;
}
.secondaryBtn__icon {
  width: 16px;
  height: 16px;
}

.outlineBtn {
  background: #F5FAF8;
  border-color: #77BE9D;
  border-width: 1px;
  color: #32AC70;
}
.outlineBtn:hover {
  border-color: #098E4D;
  color: #32AC70;
  background: #EAF5F1;
}
.outlineBtn:active {
  border-color: #0B8248;
  border-width: 2px;
  color: #0B8248;
  background: #F5FAF8;
}
.outlineBtn.disabled, .outlineBtn.disabled:active, .outlineBtn.disabled:hover {
  background: #f5f5f5;
  border-color: #D4D5E2;
  border-width: 1px;
  color: #D4D5E2;
  cursor: not-allowed !important;
}
.outlineBtn__icon {
  width: 16px;
  height: 16px;
}

.textBtn {
  color: #32AC70;
  border-width: 2px;
}
.textBtn:hover {
  color: #0D8048;
}
.textBtn:active {
  color: #32AC70;
  border-color: #F5FAF8;
}
.textBtn.disabled, .textBtn.disabled:active, .textBtn.disabled:hover {
  color: #D4D5E2;
  cursor: not-allowed !important;
}
.textBtn__icon {
  width: 16px;
  height: 16px;
}

.dropdown,
.accordion {
  position: relative;
  width: 100%;
  border-width: 1px;
  border-color: #9397B6;
  border-style: solid;
  border-radius: 6px;
}
.dropdown__btn,
.accordion__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropdown__wrapper,
.accordion__wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 70%;
  height: -moz-fit-content;
  height: fit-content;
  border-width: 1px;
  border-color: #9397B6;
  border-style: solid;
  border-radius: 6px;
  background: #fff;
  z-index: 1040;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.dropdown__wrapper.active,
.accordion__wrapper.active {
  visibility: visible;
  opacity: 1;
  transition: 0.3s;
}
.dropdown__option, .dropdown__btn,
.accordion__option,
.accordion__btn {
  width: 100%;
  padding: 12px 16px;
  transition: 0.2s;
}
@media (max-width: 520px) {
  .dropdown__option, .dropdown__btn,
  .accordion__option,
  .accordion__btn {
    padding: 8px 12px;
  }
  .dropdown__option_txt, .dropdown__btn_txt,
  .accordion__option_txt,
  .accordion__btn_txt {
    font-size: 12px;
  }
}
.dropdown__option:hover, .dropdown__btn:hover,
.accordion__option:hover,
.accordion__btn:hover {
  transition: 0.2s;
  background: rgba(0, 0, 0, 0.1254901961);
}
.dropdown.disabled,
.accordion.disabled {
  opacity: 0.5;
}
.dropdown.disabled .dropdown__btn,
.dropdown.disabled .accordion__btn,
.accordion.disabled .dropdown__btn,
.accordion.disabled .accordion__btn {
  cursor: not-allowed !important;
}

.accordion__wrapper {
  visibility: visible;
  opacity: 1;
  max-height: 0px;
  overflow: hidden;
  position: static;
  border: none;
  transition: 0.3s;
  width: 100%;
  max-width: 100%;
}
.accordion__wrapper_content {
  width: 100%;
  padding: 0 12px 12px;
}
.accordion__wrapper table {
  border-collapse: separate;
  table-layout: fixed;
  border-spacing: 0 12px;
  width: 100%;
}
.accordion__wrapper table * {
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
}
@media (max-width: 520px) {
  .accordion__wrapper table * {
    font-size: 12px;
  }
}
.accordion__wrapper table a {
  color: #326fb6;
}
.accordion__wrapper table a:hover {
  color: #098E4D;
}

.codeVerify {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  border-width: 1px;
  border-color: #9397B6;
  border-style: solid;
  border-radius: 6px;
  position: relative;
  margin-bottom: 15px;
}
.codeVerify__status {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  bottom: -5px;
  height: 0;
}
@media (max-width: 520px) {
  .codeVerify__status {
    bottom: 0;
  }
}
.codeVerify__status_txt {
  font-size: 14px;
}
@media (max-width: 520px) {
  .codeVerify__status_txt {
    font-size: 12px;
  }
}
.codeVerify__status_txt.valid {
  color: #098E4D;
}
.codeVerify__status_txt.invalid {
  color: #FD383A;
}
.codeVerify__inp {
  width: 100%;
  padding: 14px 56px 14px 16px;
  font-size: 16px;
  color: #132539;
  position: relative;
  border-radius: 6px;
  z-index: 1020;
  min-height: 48px;
}
@media (max-width: 520px) {
  .codeVerify__inp {
    font-size: 12px;
    min-height: 0;
  }
}
.codeVerify__inp::-moz-placeholder {
  color: #A0A8AC;
}
.codeVerify__inp::placeholder {
  color: #A0A8AC;
}
.codeVerify__inp.valid {
  border-color: #098E4D;
}
.codeVerify__inp.invalid {
  border-color: #FD383A;
}

.fieldDefault {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  border-width: 1px;
  border-color: #9397B6;
  border-style: solid;
  border-radius: 6px;
  position: relative;
}
.fieldDefault__title {
  display: flex;
  align-items: flex-start;
  position: absolute;
  top: 14px;
  left: 12px;
  background: #fff;
  padding: 0 4px;
  gap: 4px;
  color: #9397B6;
  z-index: 1010;
}
@media (max-width: 520px) {
  .fieldDefault__title {
    font-size: 12px;
    top: 10px;
  }
}
.fieldDefault__title_required {
  color: #DA1414;
}
.fieldDefault__title.none {
  display: none;
}
.fieldDefault__title.active {
  top: -10px;
  left: 12px;
  z-index: 1030;
}
@media (max-width: 520px) {
  .fieldDefault__title.active {
    top: -8px;
  }
}
.fieldDefault__status {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  bottom: -10px;
  height: 0;
}
@media (max-width: 520px) {
  .fieldDefault__status {
    bottom: 0;
  }
}
.fieldDefault__status_icon {
  display: none;
  width: 12px;
  height: 12px;
}
.fieldDefault__status_icon.valid {
  display: block;
}
.fieldDefault__status_icon.invalid {
  display: block;
}
.fieldDefault__status_txt {
  font-size: 14px;
}
@media (max-width: 520px) {
  .fieldDefault__status_txt {
    font-size: 12px;
  }
}
.fieldDefault__status_txt.valid {
  color: #098E4D;
}
.fieldDefault__status_txt.invalid {
  color: #FD383A;
}
.fieldDefault__inp {
  width: 100%;
  padding: 14px 56px 14px 16px;
  font-size: 16px;
  color: #132539;
  position: relative;
  border-radius: 6px;
  z-index: 1020;
  min-height: 48px;
}
@media (max-width: 520px) {
  .fieldDefault__inp {
    font-size: 12px;
    min-height: 0;
  }
}
.fieldDefault__inp::-moz-placeholder {
  color: #A0A8AC;
}
.fieldDefault__inp::placeholder {
  color: #A0A8AC;
}
.fieldDefault__inp.valid {
  border-color: #098E4D;
}
.fieldDefault__inp.invalid {
  border-color: #FD383A;
}
.fieldDefault__tooltip {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 1030;
  cursor: pointer;
}
@media (max-width: 520px) {
  .fieldDefault__tooltip {
    top: 6px;
  }
}
.fieldDefault__tooltip_icon {
  width: 25px;
  height: 25px;
}
.fieldDefault__tooltip_content {
  background: #fff;
  border-radius: 4px;
  padding: 10px 20px;
  z-index: 1020;
  width: 100vw;
  max-width: 320px;
  position: absolute;
  bottom: 4px;
  right: 60px;
  box-shadow: 0px 0px 10px 1px rgba(19, 37, 57, 0.3137254902);
  visibility: hidden;
  opacity: 0;
}
.fieldDefault__tooltip:hover .fieldDefault__tooltip_content {
  visibility: visible;
  opacity: 1;
}
.fieldDefault__editBtn {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translate(0, -50%);
}

.changesSave {
  display: none;
}
.changesSave.active {
  display: flex;
  gap: 20px;
}

.changeData {
  display: block;
}
.changeData.inactive {
  display: none;
}

#email.inactive {
  pointer-events: none;
}

@media (max-width: 520px) {
  input {
    padding: 10px 45px 10px 16px !important;
  }
}

.phone {
  display: flex;
  position: relative;
}
.phone__select {
  width: 100%;
  max-width: 38%;
  position: relative;
  z-index: 1080;
}
.phone__select::before {
  content: "";
  display: block;
  width: 1px;
  height: 80%;
  background: #9397B6;
  position: absolute;
  top: 10%;
  right: 0;
}
@media (max-width: 520px) {
  .phone__select * {
    font-size: 12px;
  }
}
.phone__select_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
  padding: 6px 12px;
  width: 100%;
  height: 100%;
}
.phone__select_btn_txt {
  display: flex;
  align-items: center;
}
.phone__select_btn_flag {
  width: 18px;
  height: 18px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.phone__select_btn_arrow {
  height: 16px;
  width: 16px;
}
.phone__select_dropdown {
  position: absolute;
  width: 100%;
  border-width: 1px;
  border-color: #9397B6;
  border-style: solid;
  border-radius: 6px;
  background: #fff;
  top: 100%;
  left: -1px;
  overflow-y: auto;
  max-height: 200px;
  visibility: hidden;
  opacity: 0;
  z-index: 1020;
}
.phone__select_dropdown::-webkit-scrollbar {
  width: 2px;
  border-radius: 2px;
  background: #9397B6;
}
.phone__select_dropdown::-webkit-scrollbar-button {
  width: 2px;
  border-radius: 2px;
  background: #132539;
}
.phone__select_dropdown.active {
  visibility: visible;
  opacity: 1;
}
.phone__select_dropdown_btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  width: 100%;
}
.phone__select_dropdown_btn:hover {
  background: #8CCAAB;
}
.phone__select_dropdown_btn_txt {
  display: flex;
  align-items: center;
}
.phone__select_dropdown_btn_flag {
  width: 18px;
  height: 18px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.phone__select_dropdown_scrolled {
  min-height: -moz-fit-content;
  min-height: fit-content;
}
.phone__wrapper {
  width: 100%;
  max-width: 65%;
}
.phone__wrapper .fieldDefault__title {
  left: calc(38% + 12px);
}
.phone__wrapper .fieldDefault__title.active {
  left: 12px;
}

.radio__title {
  display: flex;
  align-items: flex-start;
  background: #fff;
  padding: 0 16px;
  gap: 4px;
  color: #9397B6;
  margin-bottom: 5px;
  position: static;
}
.radio__title_required {
  color: #DA1414;
}
.radio__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.radio__label {
  display: flex;
  align-items: center;
  gap: 12px;
  border-width: 1px;
  border-style: solid;
  border-color: #9397B6;
  border-radius: 6px;
  padding: 14px 16px;
  cursor: pointer;
}
.radio__label_inp {
  display: none;
}
.radio__label_check {
  display: block;
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-width: 1px;
  border-style: solid;
  border-color: #9397B6;
  border-radius: 2px;
  position: relative;
}
.radio__label_check_cheched {
  position: absolute;
  top: 0;
  left: 0;
}
.radio__label_inp:checked + .radio__label_check {
  background: #32AC70;
  border-color: #32AC70;
}
.radio__label_inp:active + .radio__label_check {
  border-color: #77BE9D;
}

.password__showHide {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 1030;
  width: 25px;
  height: 25px;
}
@media (max-width: 520px) {
  .password__showHide {
    width: 20px;
    height: 20px;
    top: 8px;
  }
}
.password__showHide_icon {
  display: block;
  width: 100%;
}
.password__showHide_icon.show {
  display: none;
}
.password__showHide.active .password__showHide_icon {
  display: none;
}
.password__showHide.active .password__showHide_icon.show {
  display: block;
}

.policyField {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.policyField__txt {
  font-size: 16px;
}
@media (max-width: 520px) {
  .policyField__txt {
    font-size: 12px;
  }
}
.policyField__txt_link {
  display: inline;
  text-decoration: underline;
  font-size: 16px;
}
@media (max-width: 520px) {
  .policyField__txt_link {
    font-size: 12px;
  }
}
.policyField__txt_link:hover {
  color: #098E4D;
}
.policyField__inp {
  display: none;
}
.policyField__check {
  display: block;
  width: 16px;
  min-width: 16px;
  height: 16px;
  border-width: 1px;
  border-style: solid;
  border-color: #9397B6;
  border-radius: 2px;
  position: relative;
}
.policyField__check_checked {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.policyField__inp:checked + .policyField__check {
  background: #32AC70;
  border-color: #32AC70;
}
.policyField__inp:active + .policyField__check {
  border-color: #77BE9D;
}

.addFileOrder {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
.addFileOrder__title {
  display: block;
  width: 100%;
}
@media (max-width: 520px) {
  .addFileOrder__title {
    font-size: 14px;
  }
}

.addFile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px 20px;
}
@media (max-width: 520px) {
  .addFile {
    grid-gap: 6px 10px;
  }
}
.addFile .inputFile {
  display: none;
}
.addFile__inner {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 10px;
  border-radius: 6px;
  background: #F1F1F1;
}
@media (max-width: 520px) {
  .addFile__inner {
    padding: 8px;
  }
}
.addFile__inner_txt {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
}
@media (max-width: 520px) {
  .addFile__inner_txt {
    font-size: 12px;
  }
}
.addFile__inner_btn {
  margin-left: auto;
  padding-left: 8px;
}
.addFile__inner_btn_icon {
  width: 20px;
  height: 20px;
}
.addFile__header {
  display: flex;
  align-items: center;
  gap: 10px;
  grid-row: 1/2;
  grid-column: 1/3;
}
.addFile__header_title {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  color: #9397B6;
}
@media (max-width: 520px) {
  .addFile__header_title {
    font-size: 12px;
  }
}
.addFile__header_title_required {
  color: #DA1414;
}
.addFile__header_tooltip {
  position: relative;
  cursor: pointer;
}
.addFile__header_tooltip_icon {
  width: 25px;
  height: 25px;
}
.addFile__header_tooltip_content {
  background: #fff;
  border-radius: 4px;
  padding: 10px 20px;
  z-index: 1020;
  width: 100vw;
  max-width: 320px;
  position: absolute;
  bottom: -6px;
  left: 32px;
  box-shadow: 0px 0px 10px 1px rgba(19, 37, 57, 0.3137254902);
  visibility: hidden;
  opacity: 0;
}
.addFile__header_tooltip:hover .addFile__header_tooltip_content {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 768px) {
  .addFile .primaryBtn span {
    display: none;
  }
}

.secondary {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}
@media (max-width: 520px) {
  .secondary {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.subtitle {
  font-size: 24px;
  font-weight: 700;
  font-family: "Wix Madefor Display", sans-serif;
}

@media (max-width: 520px) {
  #changePhone .modal__wrapper {
    padding: 20px 10px;
  }
  #changePhone .changePhone__title {
    font-size: 18px;
  }
  #changePhone .changePhone__closeBtn {
    top: 15px;
    right: 15px;
  }
  #changePhoneCode .modal__wrapper {
    padding: 20px 10px;
  }
  #changePhoneCode .changePhone__title {
    font-size: 18px;
  }
  #changePhoneCode .changePhone__closeBtn {
    top: 15px;
    right: 15px;
  }
  #changePhoneCode .codeVerify {
    margin-bottom: 10px;
  }
  .time {
    font-size: 14px;
  }
}
#changePhoneCode .modal__wrapper form button,
#changePhoneCode .modal__wrapper form a {
  display: block;
  padding: 6px 30px;
  white-space: nowrap;
}

body {
  background: #132539;
}

.registration,
.recover,
.login,
.forgot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  width: 100%;
}
.registration__wrapper,
.recover__wrapper,
.login__wrapper,
.forgot__wrapper {
  width: 100%;
  max-width: 520px;
  background: #fff;
  padding: 50px;
}
@media (max-width: 520px) {
  .registration__wrapper,
  .recover__wrapper,
  .login__wrapper,
  .forgot__wrapper {
    padding: 20px;
  }
}
.registration__logo,
.recover__logo,
.login__logo,
.forgot__logo {
  margin-bottom: 35px;
  color: transparent;
  font-size: 0px;
  max-width: 300px;
}
@media (max-width: 520px) {
  .registration__logo,
  .recover__logo,
  .login__logo,
  .forgot__logo {
    margin-bottom: 15px;
  }
}
.registration__title,
.recover__title,
.login__title,
.forgot__title {
  margin-bottom: 25px;
}
@media (max-width: 520px) {
  .registration__title,
  .recover__title,
  .login__title,
  .forgot__title {
    margin-bottom: 15px;
    font-size: 18px;
  }
}
.registration__container,
.recover__container,
.login__container,
.forgot__container {
  display: grid;
  grid-gap: 25px;
}
@media (max-width: 520px) {
  .registration__container,
  .recover__container,
  .login__container,
  .forgot__container {
    grid-gap: 15px;
  }
}
.registration__btn,
.recover__btn,
.login__btn,
.forgot__btn {
  width: 100%;
}
.registration__pr,
.recover__pr,
.login__pr,
.forgot__pr {
  margin-bottom: 20px;
}
@media (max-width: 520px) {
  .registration__pr,
  .recover__pr,
  .login__pr,
  .forgot__pr {
    margin-bottom: 15px;
    font-size: 12px;
  }
}
.registration__footer,
.recover__footer,
.login__footer,
.forgot__footer {
  display: grid;
  gap: 15px;
}
.registration__footer_pr,
.recover__footer_pr,
.login__footer_pr,
.forgot__footer_pr {
  display: flex;
  gap: 10px;
  font-size: 16px;
}
@media (max-width: 520px) {
  .registration__footer_pr,
  .recover__footer_pr,
  .login__footer_pr,
  .forgot__footer_pr {
    font-size: 12px;
    justify-content: space-between;
  }
}
.registration__footer_pr_link,
.recover__footer_pr_link,
.login__footer_pr_link,
.forgot__footer_pr_link {
  color: #32AC70;
  font-weight: 600;
}
@media (max-width: 520px) {
  .registration__footer_pr_link,
  .recover__footer_pr_link,
  .login__footer_pr_link,
  .forgot__footer_pr_link {
    font-size: 12px;
  }
}
.registration__btns,
.recover__btns,
.login__btns,
.forgot__btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.registration__btns_link,
.recover__btns_link,
.login__btns_link,
.forgot__btns_link {
  color: #32AC70;
  font-weight: 600;
}
@media (max-width: 520px) {
  .registration__btns_link,
  .recover__btns_link,
  .login__btns_link,
  .forgot__btns_link {
    font-size: 12px;
  }
}
.registration__btns_label,
.recover__btns_label,
.login__btns_label,
.forgot__btns_label {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  cursor: pointer;
}
.registration__btns_label_inp,
.recover__btns_label_inp,
.login__btns_label_inp,
.forgot__btns_label_inp {
  display: none;
}
@media (max-width: 520px) {
  .registration__btns_label_txt,
  .recover__btns_label_txt,
  .login__btns_label_txt,
  .forgot__btns_label_txt {
    font-size: 12px;
  }
}
.registration__btns_label_check,
.recover__btns_label_check,
.login__btns_label_check,
.forgot__btns_label_check {
  display: block;
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-width: 1px;
  border-style: solid;
  border-color: #9397B6;
  border-radius: 2px;
  position: relative;
}
@media (max-width: 520px) {
  .registration__btns_label_check,
  .recover__btns_label_check,
  .login__btns_label_check,
  .forgot__btns_label_check {
    width: 15px;
    min-width: 15px;
    height: 15px;
  }
  .registration__btns_label_check img,
  .recover__btns_label_check img,
  .login__btns_label_check img,
  .forgot__btns_label_check img {
    width: 100%;
  }
}
.registration__btns_label_check_cheched,
.recover__btns_label_check_cheched,
.login__btns_label_check_cheched,
.forgot__btns_label_check_cheched {
  position: absolute;
  top: 0;
  left: 0;
}
.registration__btns_label_inp:checked + .registration__btns_label_check,
.registration__btns_label_inp:checked + .recover__btns_label_check,
.registration__btns_label_inp:checked + .login__btns_label_check,
.registration__btns_label_inp:checked + .forgot__btns_label_check,
.recover__btns_label_inp:checked + .registration__btns_label_check,
.recover__btns_label_inp:checked + .recover__btns_label_check,
.recover__btns_label_inp:checked + .login__btns_label_check,
.recover__btns_label_inp:checked + .forgot__btns_label_check,
.login__btns_label_inp:checked + .registration__btns_label_check,
.login__btns_label_inp:checked + .recover__btns_label_check,
.login__btns_label_inp:checked + .login__btns_label_check,
.login__btns_label_inp:checked + .forgot__btns_label_check,
.forgot__btns_label_inp:checked + .registration__btns_label_check,
.forgot__btns_label_inp:checked + .recover__btns_label_check,
.forgot__btns_label_inp:checked + .login__btns_label_check,
.forgot__btns_label_inp:checked + .forgot__btns_label_check {
  background: #32AC70;
  border-color: #32AC70;
}
.registration__btns_label_inp:active + .registration__btns_label_check,
.registration__btns_label_inp:active + .recover__btns_label_check,
.registration__btns_label_inp:active + .login__btns_label_check,
.registration__btns_label_inp:active + .forgot__btns_label_check,
.recover__btns_label_inp:active + .registration__btns_label_check,
.recover__btns_label_inp:active + .recover__btns_label_check,
.recover__btns_label_inp:active + .login__btns_label_check,
.recover__btns_label_inp:active + .forgot__btns_label_check,
.login__btns_label_inp:active + .registration__btns_label_check,
.login__btns_label_inp:active + .recover__btns_label_check,
.login__btns_label_inp:active + .login__btns_label_check,
.login__btns_label_inp:active + .forgot__btns_label_check,
.forgot__btns_label_inp:active + .registration__btns_label_check,
.forgot__btns_label_inp:active + .recover__btns_label_check,
.forgot__btns_label_inp:active + .login__btns_label_check,
.forgot__btns_label_inp:active + .forgot__btns_label_check {
  border-color: #77BE9D;
}
@media (max-width: 520px) {
  .registration .google,
  .recover .google,
  .login .google,
  .forgot .google {
    padding: 6px;
  }
}/*# sourceMappingURL=signForms.css.map */