@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;
  }
}

.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;
}

.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;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 15px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  z-index: 1090;
  display: none;
}
.modal.active {
  display: flex;
}
.modal__wrapper {
  width: 100%;
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 40px 14px 40px 20px;
  height: -moz-fit-content !important;
  height: fit-content !important;
  max-height: 90%;
  position: relative;
}
@media (max-width: 520px) {
  .modal__wrapper {
    max-height: 100%;
  }
}
.modal__wrapper.lg {
  max-width: 60%;
}
.modal__wrapper.md {
  max-width: 50%;
}
@media (max-width: 1440px) {
  .modal__wrapper.md {
    max-width: 67%;
  }
}
@media (max-width: 1080px) {
  .modal__wrapper.md {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .modal__wrapper.md {
    max-width: 100%;
  }
}
.modal__wrapper.sm {
  max-width: 40%;
}
.modal__scrolled {
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 680px;
  padding: 0 20px;
}
@media (max-width: 520px) {
  .modal__scrolled {
    padding: 0 8px;
    max-height: 500px;
  }
}
.modal__scrolled::-webkit-scrollbar {
  width: 6px;
  background: rgba(0, 0, 0, 0.2509803922);
  border-radius: 20px;
}
.modal__scrolled::-webkit-scrollbar-thumb {
  width: 6px;
  background: rgba(19, 37, 57, 0.3137254902);
  border-radius: 20px;
}

#transaction .modal__wrapper {
  padding: 40px;
}
@media (max-width: 520px) {
  #transaction .modal__wrapper {
    padding: 20px 16px;
    border-radius: 15px !important;
  }
}

.orderDetails {
  position: relative;
  width: 100%;
}
.orderDetails__closeBtn {
  position: absolute;
  top: -35px;
  right: -35px;
}
.orderDetails__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
.orderDetails__status {
  display: flex;
  justify-content: space-between;
  grid-gap: 40px;
  margin-bottom: 20px;
}
@media (max-width: 1080px) {
  .orderDetails__status {
    grid-gap: 23px;
  }
}
.orderDetails__status_el {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.3;
  width: 110px;
  min-width: 110px;
}
.orderDetails__status_el.active {
  opacity: 1;
}
.orderDetails__status_el_name {
  display: block;
  margin-bottom: 10px;
}
.orderDetails__status_el_candle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: relative;
}
.orderDetails__status_el_candle::before {
  content: "";
  display: block;
  width: 132px;
  height: 2px;
  background: #c4c4c4;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0, -50%);
}
@media (max-width: 1080px) {
  .orderDetails__status_el_candle::before {
    width: 113px;
  }
}
.orderDetails__status_el:last-child .orderDetails__status_el_candle::before {
  display: none;
}
.orderDetails__info {
  padding: 20px 15px;
  border-radius: 20px;
  border: 1px solid #DFDFDF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  margin-bottom: 30px;
}
.orderDetails__info_btns {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.orderDetails__info_btns_btn {
  padding: 10px 20px;
  background: rgba(161, 164, 189, 0.1882352941);
  font-family: Wix Madefor Display;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}
.orderDetails__info_btns_btn:first-child {
  border-radius: 20px 0 0 20px;
}
.orderDetails__info_btns_btn:last-child {
  border-radius: 0 20px 20px 0;
}
.orderDetails__info_btns_btn.active, .orderDetails__info_btns_btn:hover {
  background: #32AC70;
  color: #fff;
  transition: 0.3s;
}
.orderDetails__info_tab {
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  padding: 20px 20px 0;
  max-height: 410px;
  overflow: hidden;
}
.orderDetails__info_tab.active {
  display: flex;
  flex-direction: column;
  visibility: visible;
  opacity: 1;
  transition: 0.3s;
}
.orderDetails__info_tab table {
  margin-top: -20px;
}
.orderDetails__info_tab table tr {
  height: 30px;
}
.orderDetails__info_tab table tr td {
  text-align: left;
}
.orderDetails__info_tab_item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.orderDetails__info_tab_item:not(:last-child) {
  border-bottom: 1px solid rgba(11, 130, 72, 0.3137254902);
  padding-bottom: 20px;
}
.orderDetails__info_tab_item .successChoose {
  margin-top: 12px;
}
.orderDetails__info_tab_item_title {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}
.orderDetails__info_tab_item .addFile {
  position: relative;
  max-width: -moz-fit-content;
  max-width: fit-content;
  cursor: pointer;
}
.orderDetails__info_tab_item .addFile__inner {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 400px;
}
.orderDetails__info_tab_item_link {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #32AC70;
  transition: 0.3s;
}
.orderDetails__info_tab_item_link:hover {
  color: #0B8248;
  transition: 0.3s;
}
.orderDetails__sum {
  padding: 20px 15px;
  border-radius: 20px;
  border: 1px solid #DFDFDF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  margin-bottom: 10px;
}
.orderDetails__sum_title {
  font-family: Wix Madefor Display;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.orderDetails__sum_wrapper {
  display: flex;
  align-items: center;
}
.orderDetails__sum_wrapper_details {
  display: grid;
  gap: 6px;
  border-right: 1px solid rgba(96, 96, 96, 0.3137254902);
  padding-right: 25px;
}
.orderDetails__sum_wrapper_details_el {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  width: 100%;
  gap: 20px;
}
.orderDetails__sum_wrapper_details_el * {
  white-space: nowrap;
}
.orderDetails__sum_wrapper_total {
  display: grid;
  grid-gap: 6px;
  padding-left: 25px;
}
.orderDetails__sum_wrapper_total_title {
  font-size: 16px;
  font-weight: 600;
}
.orderDetails__sum_wrapper_total_value * {
  font-size: 20px;
  font-weight: 600;
}

.transaction {
  width: 100%;
  position: relative;
}
.transaction .primaryBtn {
  width: 100%;
}
.transaction__closeBtn {
  position: absolute;
  top: -35px;
  right: -70px;
}
@media (max-width: 768px) {
  .transaction__closeBtn {
    top: 19px;
    right: -19px;
  }
}
@media (max-width: 520px) {
  .transaction__closeBtn {
    top: 75px;
    right: 20px;
  }
}
.transaction__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -80px;
  margin-left: -40px;
  border-radius: 20px 20px 0 0;
  width: calc(100% + 80px);
}
@media (max-width: 520px) {
  .transaction__steps {
    visibility: hidden;
  }
  .transaction__steps * {
    font-size: 12px;
    padding: 12px;
  }
}
.transaction__steps_title {
  padding: 12px;
  font-size: 22px;
  text-align: center;
  font-weight: 600;
  border-radius: 20px 20px 0 0;
  background: #E8EAEC;
  transition: 0.3s;
}
.transaction__steps_title.active {
  color: #fff;
  background: #2E9B69;
  transition: 0.3s;
}
.transaction__tabs {
  padding: 20px 0 0;
}
.transaction__tabs .dropdown.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.transaction__tabs .dropdown.disabled * {
  cursor: not-allowed;
  pointer-events: none;
}
.transaction__tabs_item {
  display: none;
}
.transaction__tabs_item.active {
  display: block;
}
.transaction__tabs_item_header {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 25px;
  margin: 25px 0;
  grid-column: 1/3;
}
@media (max-width: 520px) {
  .transaction__tabs_item_header {
    display: flex;
    grid-gap: 12px;
    margin: 20px 0;
    flex-direction: column-reverse;
  }
}
.transaction__tabs_item .form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 35px 25px;
}
@media (max-width: 520px) {
  .transaction__tabs_item .form {
    grid-gap: 25px;
    grid-template-columns: 1fr;
  }
}
.transaction__tabs_item .form.disabled * {
  cursor: not-allowed !important;
  opacity: 0.5;
}
.transaction__info {
  display: flex;
  align-items: center;
}
@media (max-width: 520px) {
  .transaction__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
.transaction__info_details {
  display: grid;
  gap: 6px;
  border-right: 1px solid rgba(96, 96, 96, 0.3137254902);
  padding-right: 25px;
}
@media (max-width: 520px) {
  .transaction__info_details {
    padding: 0;
    border: none;
    gap: 4px;
  }
  .transaction__info_details * {
    font-size: 12px;
  }
}
.transaction__info_details_el {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  width: 100%;
  gap: 20px;
}
.transaction__info_details_el * {
  white-space: nowrap;
}
.transaction__info_total {
  display: grid;
  grid-gap: 6px;
  padding-left: 25px;
}
@media (max-width: 520px) {
  .transaction__info_total {
    grid-template-columns: 1fr auto;
    padding: 0;
  }
}
.transaction__info_total_title {
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 520px) {
  .transaction__info_total_title {
    font-size: 14px;
  }
}
.transaction__info_total_value * {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 520px) {
  .transaction__info_total_value * {
    font-size: 16px;
  }
}
.transaction__footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
}
@media (max-width: 520px) {
  .transaction__footer {
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 15px;
    margin-top: 20px;
  }
}
.transaction__btns {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  width: 100%;
  max-width: 320px;
}
@media (max-width: 520px) {
  .transaction__btns {
    padding-right: 15px;
  }
}
.transaction__btns button {
  width: 150px !important;
}

#checkedCurrencyFalse {
  display: none;
}
#checkedCurrencyFalse.active {
  display: block;
}

#checkedCurrencyTrue {
  display: block;
}
#checkedCurrencyTrue.inactive {
  display: none;
}

.main {
  padding: 0px 150px 30px 30px;
}
@media (max-width: 1440px) {
  .main {
    padding: 0 30px 30px;
  }
}
@media (max-width: 1080px) {
  .main {
    padding: 0 15px 30px;
  }
}

table {
  border-collapse: separate;
  border-spacing: 0 10px;
  table-layout: fixed;
  width: 100%;
}

tr {
  height: 60px;
  background: none;
}
@media (max-width: 520px) {
  tr {
    height: 40px;
  }
}
tr.table__header {
  box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1450980392);
  background: #E8EAEC;
  border-radius: 15px 15px 0 0;
}
tr.table__header th:first-child {
  border-radius: 15px 0 0;
}
tr.table__header th:last-child {
  border-radius: 0 15px 0 0;
}
tr.table__item {
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1450980392);
}
tr:last-child {
  border-radius: 0 0 15px 15px;
}

th,
td {
  text-align: center;
}
@media (max-width: 520px) {
  th,
  td {
    font-size: 12px;
  }
  th *,
  td * {
    font-size: 12px;
  }
}
th img,
td img {
  margin: 0 auto;
}

@media (max-width: 1440px) {
  .list__wrapper {
    padding: 15px 0;
    overflow-x: auto;
    max-width: 1140px;
  }
  .list__wrapper::-webkit-scrollbar {
    height: 6px;
    background: rgba(19, 37, 57, 0.062745098);
    border-radius: 6px;
  }
  .list__wrapper::-webkit-scrollbar-thumb {
    height: 6px;
    background: rgba(19, 37, 57, 0.3137254902);
    border-radius: 6px;
  }
}
@media (max-width: 1080px) {
  .list__wrapper {
    max-width: 950px;
  }
}
@media (max-width: 768px) {
  .list__wrapper {
    max-width: 738px;
  }
}
.list__scrolled {
  min-height: -moz-fit-content;
  min-height: fit-content;
  display: grid;
  background: #fff;
  border-radius: 15px;
}
@media (max-width: 1440px) {
  .list__scrolled {
    min-width: 1440px;
  }
}
@media (max-width: 520px) {
  .list__scrolled {
    min-width: 880px !important;
  }
}
.list__scrolled table {
  margin-top: -20px;
}
.list__item {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 3fr 2fr 2fr;
  border-radius: 10px;
  padding: 10px 20px 10px 4px;
  box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1450980392);
  gap: 20px;
}
.list__item * {
  text-align: center;
  font-size: 20px;
}
.list__item_currency {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 10px;
}
.list__item_currency_arrow {
  width: 25px;
  height: 25px;
}
.list__item_currency * {
  margin-left: -8px;
}
.list__item_btn {
  gap: 8px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}
.list__item_btn_txt {
  color: #fff;
}
.list__item_btn_icon {
  width: 8px;
  height: 20px;
}

body {
  background: #fff !important;
}

.main {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 60px 15px;
}

.back {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  margin-bottom: 50px !important;
  text-decoration: none !important;
}
.back * {
  font-size: 24px !important;
}
@media (max-width: 768px) {
  .back * {
    font-size: 18px;
  }
}
.back img {
  width: 40px;
  height: 40px;
}
@media (max-width: 768px) {
  .back img {
    width: 20px;
    height: 20px;
  }
}

.terms {
  padding: 60px 0;
}
.terms__wrapper {
  width: 100%;
}
@media (max-width: 1580px) {
  .terms__wrapper {
    padding: 0 120px;
  }
}
@media (max-width: 980px) {
  .terms__wrapper {
    padding: 0 15px;
    flex-direction: column;
    gap: 40px;
  }
}
.terms__content {
  width: 100%;
}
.terms__content > div {
  margin-bottom: 30px;
}
.terms__content ul {
  padding-left: 30px;
  list-style: disc;
}
.terms time {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: #231F20;
  margin-bottom: 35px;
}
.terms h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 40px;
}
@media (max-width: 980px) {
  .terms h1 {
    font-size: 32px;
  }
  .terms h1 + br {
    display: none;
  }
}
.terms h2 {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.02em;
  color: #231F20;
  margin-bottom: 15px;
}
@media (max-width: 980px) {
  .terms h2 {
    font-size: 32px;
  }
  .terms h2 + br {
    display: none;
  }
}
.terms p,
.terms li,
.terms a {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  margin: 2px 0;
}
.terms p b,
.terms li b,
.terms a b {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.02em;
}
.terms a {
  text-decoration: underline;
}
.terms h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 10px;
}
.terms__menu {
  margin-top: 70px;
  display: grid;
  gap: 22px;
}
.terms__menu_link {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none !important;
}
.terms__menu_link.active {
  color: #E29723;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4392156863);
  z-index: 1100;
  align-items: center;
  justify-content: center;
  padding: 15px;
  display: none;
}
.modal.active {
  display: flex;
}
.modal__wrapper {
  width: 100%;
  max-width: 580px;
}
@media (max-width: 580px) {
  .modal__wrapper {
    padding: 30px 20px;
  }
}
.modal .thanks {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  margin: 0 auto;
  width: 100%;
}
.modal .thanks__title {
  font-family: Inter;
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.02em;
}
@media (max-width: 580px) {
  .modal .thanks__title {
    font-size: 32px;
  }
}
.modal .thanks__pr {
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  margin: 30px 0;
}
@media (max-width: 580px) {
  .modal .thanks__pr {
    margin: 10px 0 30px;
  }
}
.modal .thanks__pr * {
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
}
.modal .thanks__pr a {
  text-decoration: underline;
}
.modal .thanks__pr strong {
  font-weight: 600;
}
.modal .thanks__btn {
  border-radius: 28px;
  background: #080807;
  padding: 8px 90px;
  color: #fff;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  transition: 0.3s;
}
@media (max-width: 580px) {
  .modal .thanks__btn {
    max-width: 100%;
    width: 100%;
  }
}
.modal .thanks__btn::before {
  content: "";
  display: block;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  top: -3px;
  left: -4px;
  transition: 0.3s;
  border: 1px solid #000;
  border-radius: 28px;
}
.modal .thanks__btn:active::before {
  top: 0;
  left: 0;
  transition: 0.3s;
}
.modal .thanks__btn:hover {
  transition: 0.3s;
  color: #080807;
  background: #fff;
}
.modal .thanks__btn:hover::before {
  transition: 0.3s;
  border: 1px solid #080807;
}
.modal .thanks__btn:active {
  color: #fff;
  background: #080807;
  transition: 0.3s;
}
.modal .done {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.modal .done__title {
  font-family: Inter;
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.02em;
}
@media (max-width: 580px) {
  .modal .done__title {
    font-size: 32px;
  }
}
.modal .done__pr {
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  margin: 30px 0;
}
@media (max-width: 580px) {
  .modal .done__pr {
    margin: 10px 0 30px;
  }
}
.modal .done__btn {
  border-radius: 28px;
  background: #080807;
  padding: 8px 90px;
  color: #fff;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  transition: 0.3s;
  width: 100%;
}
@media (max-width: 580px) {
  .modal .done__btn {
    max-width: 100%;
    width: 100%;
  }
}
.modal .done__btn::before {
  content: "";
  display: block;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  top: -3px;
  left: -4px;
  transition: 0.3s;
  border: 1px solid #000;
  border-radius: 28px;
}
.modal .done__btn:active::before {
  top: 0;
  left: 0;
  transition: 0.3s;
}
.modal .done__btn:hover {
  transition: 0.3s;
  color: #080807;
  background: #fff;
}
.modal .done__btn:hover::before {
  transition: 0.3s;
  border: 1px solid #080807;
}
.modal .done__btn:active {
  color: #fff;
  background: #080807;
  transition: 0.3s;
}/*# sourceMappingURL=terms.css.map */