@charset "UTF-8";

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

@font-face {
  font-family: "OpenSans-Bold";
  src: url("/fonts/OpenSans-Bold.ttf");
}

@font-face {
  font-family: "OpenSans-Regular";
  src: url("/fonts/OpenSans-Regular.ttf");
}

@font-face {
  font-family: "Century Gothic";
  src: url("/fonts/CenturyGothic.woff2") format("woff2"), url("/fonts/CenturyGothic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

*::-moz-focus-inner {
  border: 0;
}

*:focus {
  outline: none;
}

body {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

button {
  border: none;
  cursor: pointer;
}

.content {
  flex: 1 0 auto;
}

.footer {
  flex-shrink: 0;
}

.font-face-en,
.font-face-en body {
  font-family: "Arcon", "Century Gothic", sans-serif;
}

.font-face-ru,
.font-face-ru body {
  font-family: "Century Gothic", sans-serif;
}

.btn-view-download {
  background: #fff;
  border: 2px solid #37b182;
  border-radius: 5px;
  color: #37b182;
  font-family: "OpenSans-Bold", sans-serif;
  font-size: 13px;
  padding: 8px 36px 8px 10px;
  position: relative;
  transition: all 0.3s;
}

.btn-view-download::after {
  content: "";
  background-image: url("/images/view_icon.png");
  background-repeat: no-repeat;
  background-size: 18px;
  height: 18px;
  right: 10px;
  position: absolute;
  top: calc(50% - 9px);
  width: 18px;
}

.btn-view-download:hover {
  background: #37b182;
  color: #fff;
}

.btn-view-download:hover:after {
  background-image: url("/images/view_icon-hover.png");
}

.btn-proceed,
.btn-proceed--inverted,
.btn-cancel {
  background: #37b182;
  border: 2px solid #37b182;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "OpenSans-Bold", sans-serif;
  font-size: 13px;
  padding: 10px;
  transition: all 0.3s;
  min-width: 150px;
}

.btn-proceed:hover,
.btn-proceed--inverted:hover,
.btn-cancel:hover {
  background: #fff;
  color: #37b182;
}

.btn-cancel {
  background: #ff0000;
  border: 2px solid #ff0000;
}

.btn-cancel:hover {
  background: #fff;
  color: #ff0000;
}

.btn-proceed--inverted {
  background: #fff;
  color: #37b182;
}

.btn-proceed--inverted:hover {
  background: #37b182;
  color: #fff;
}

span.view-download-icon {
  display: inline-block;
  position: relative;
  width: 18px;
}

span.view-download-icon::after {
  content: "";
  background-image: url("/images/view_icon.png");
  background-repeat: no-repeat;
  background-size: 18px;
  height: 18px;
  right: 0;
  position: absolute;
  top: -13px;
  width: 18px;
}

span.view-download-icon:hover:after {
  background-image: url("/images/view_icon-hover.png");
}

.btn-upload {
  background: #37b182;
  border: 1px solid #37b182;
  border-radius: 4px;
  color: #fff;
  display: block;
  min-width: 96px;
  overflow: hidden;
  padding: 10px;
  text-align: center;
  transition: all 0.3s;
}

.btn-upload:hover {
  background: #fff;
  color: #37b182;
}

.checkbox input[type=checkbox] + label a.link-agreement {
  color: #37b182;
  text-decoration: none;
}

.error-msg--rejection,
.error-msg--system {
  border: 1px solid #ff0000;
  color: #ff0000;
  display: block;
  font-size: 1.5rem;
  margin: 10px 0 0;
  padding: 10px;
  text-align: center;
  width: 100%;
}

.error-msg--system {
  margin-bottom: 30px;
  padding: 30px;
}

input[type=radio] {
  display: none;
}

input[type=radio] + label {
  background-color: #eef5f5;
  background-repeat: repeat-x;
  color: #000;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  margin: -2px;
  margin-bottom: 0;
  padding: 4px 12px;
  text-align: center;
  vertical-align: middle;
}

input[type=radio]:checked + label {
  background-color: #13c088;
  background-image: none;
  color: #fff;
  outline: 0;
}

.as_label {
  color: #818181;
  display: block;
  font-family: "OpenSans-Bold", sans-serif;
  font-size: 0.8rem;
  margin-bottom: 4px;
  margin-right: 10px;
  position: relative;
  text-transform: uppercase;
}

.as_label sup {
  color: #ff0000;
}

.as_label--with-tooltip {
  cursor: help;
}

.as_label--with-tooltip:hover > .tooltip {
  display: block;
}

.select-wrapper select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #eef5f5 url(/images/select-arrow1.png) 95% 50% no-repeat;
  padding-left: 11px;
  padding-right: 10%;
  text-overflow: ellipsis;
}

.select-wrapper select.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

.tooltip {
  background-color: #f6f9fe;
  border-radius: 8px;
  box-shadow: 0 0 4px 0 #7f90a4;
  color: #4f4f4f;
  display: none;
  margin-right: 20px;
  padding: 10px 20px;
  position: absolute;
  z-index: 999999;
}

.tooltip i {
  overflow: hidden;
  position: absolute;
}

.tooltip i::after {
  background-color: #f6f9fe;
  box-shadow: 0 0 4px 0 #7f90a4;
  content: "";
  height: 12px;
  position: absolute;
  top: 50%;
  width: 12px;
}

.tooltip__list {
  list-style: disc;
  text-transform: none;
}

.tooltip__list li {
  padding: 4px 0;
}

.tooltip__list-title {
  font-size: 1.2em;
  font-weight: bold;
  list-style: none;
}

.tooltip__list-title::before {
  content: "\2022";
  color: #ff0000;
  display: inline-block;
  font-weight: bold;
  margin-left: -1em;
  width: 1em;
}

.tooltip-arrow-right {
  left: unset;
  min-width: 260px;
  right: 100%;
  top: 50%;
  transform: translate(0, -50%);
}

.tooltip-arrow-right i {
  bottom: unset;
  height: 24px;
  left: 100%;
  margin-left: 0;
  margin-top: -12px;
  top: 50%;
  width: 12px;
}

.tooltip-arrow-right i::after {
  left: 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.tooltip-arrow-down {
  left: 50%;
  min-width: 300px;
  right: unset;
  top: -10px;
  transform: translate(-50%, -100%);
}

.tooltip-arrow-down i {
  bottom: unset;
  height: 12px;
  left: 50%;
  margin-left: -12px;
  margin-top: 0;
  top: 100%;
  width: 24px;
}

.tooltip-arrow-down i::after {
  left: 50%;
  top: unset;
  transform: translate(-50%, -50%) rotate(45deg);
}

#check-account-number,
#check-wallet-address {
  display: none;
}

.exchange-check {
  margin-top: 20px;
}

.exchange-check__title {
  color: #000;
  font-size: 18px;
  text-align: center;
}

.exchange-check__hint {
  color: #9c9d9d;
  font-family: "OpenSans-Regular", sans-serif;
  font-size: 12px;
  font-style: italic;
  text-align: right;
}

.exchange-check__hint a {
  color: #1c4666;
  text-decoration: underline;
}

.exchange-check__input {
  background: #13c088;
  border-radius: 5px;
  display: flex;
  margin-top: 10px;
  padding: 20px 10px 15px 15px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .exchange-check__input {
    flex-direction: column;
  }
}

.exchange-check__input label {
  background: #000;
  border-radius: 3px;
  color: #fff;
  font-family: "OpenSans-Bold", sans-serif;
  font-size: 10px;
  left: 15px;
  padding: 5px 10px;
  position: absolute;
  text-transform: uppercase;
  top: -10px;
}

.exchange-check__input input {
  background: #fff;
  border: none;
  border-radius: 5px;
  color: #000;
  flex: 1;
  font-size: 18px;
  height: 50px;
  padding-left: 12px;
}

@media screen and (max-width: 767px) {
  .exchange-check__input input {
    flex: unset;
  }
}

.exchange-check__input button {
  align-self: center;
  background: #1c4666;
  border: 2px solid #1c4666;
  border-radius: 4px;
  color: #fff;
  font-family: "OpenSans-Bold", sans-serif;
  font-size: 14px;
  height: 40px;
  margin-left: 15px;
  padding: 8px 12px;
  text-transform: uppercase;
  transition: all 0.3s;
}

@media screen and (max-width: 767px) {
  .exchange-check__input button {
    margin-top: 15px;
  }
}

.exchange-check__input button:hover {
  background: #fff;
  color: #1c4666;
}

.exchange-check__checkbox {
  color: #000;
  font-size: 13px;
  margin-left: 15px;
  margin-top: 25px;
  text-transform: uppercase;
}

.exchange-check__checkbox label {
  display: inline-block;
  margin-right: 20px;
  padding-left: 35px;
  position: relative;
  text-indent: -18px;
}

.exchange-check__checkbox label input {
  cursor: pointer;
  opacity: 0;
}

.exchange-check__checkbox label input:checked + span {
  background-color: #3e991c;
  background-image: url("/images/icons/accepted.svg");
  border: none;
}

.exchange-check__checkbox label span {
  background-position: center;
  background-size: 100%;
  border: 1px solid #ccd5dd;
  border-radius: 4px;
  cursor: pointer;
  height: 16px;
  left: 0;
  position: absolute;
  top: 3px;
  width: 16px;
}

.exchange-check__checkbox label a {
  color: #37b182;
}

.exchange-check--inverted .exchange-check__title {
  color: white;
}

.exchange-check--inverted .exchange-check__hint a {
  color: #e3b999;
}

.exchange-check--inverted .exchange-check__checkbox {
  color: #fff;
}

.content-inner-title--no-margin {
  margin-bottom: 0;
}

.hidden {
  display: none;
}

#card-input .content-inner-title__small {
  margin-bottom: 0;
}

#card-input .wallet-value {
  color: #5457ff;
}

.card-input-main {
  display: flex;
  justify-content: space-between;
  padding: 0 70px 20px;
}

@media screen and (max-width: 767px) {
  .card-input-main {
    align-items: center;
    flex-direction: column-reverse;
    padding: 0 35px 20px;
  }
}

.card-input-main .invoice-information-block-checkout {
  margin-top: 25px;
}

.card-input-footer {
  border-top: 1px solid #d4d4d4;
  display: flex;
  justify-content: space-between;
  padding: 20px 70px 0;
}

@media screen and (max-width: 767px) {
  .card-input-footer {
    align-items: center;
    flex-direction: column;
    padding: 20px 35px 0;
  }
}

@media screen and (max-width: 767px) {
  .card-input-footer ul {
    width: 280px;
  }
}

.card-input-footer ul li {
  color: #818181;
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
}

.card-input-footer ul li strong {
  color: #000;
  display: inline-block;
  font-family: "OpenSans-Bold", sans-serif;
  font-size: 14px;
  margin-bottom: 6px;
}

.card-input-footer .card-logos-block {
  align-content: center;
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  width: 300px;
}

@media screen and (max-width: 767px) {
  .card-input-footer .card-logos-block {
    width: 280px;
  }
}

.card-input-footer .card-logos-block img {
  align-self: center;
}

.card-input-footer--reduced {
  justify-content: left;
  margin-top: 30px;
  padding: 20px 0 0;
}

.card-input-footer--reduced ul {
  margin-right: 100px;
}

@media screen and (max-width: 767px) {
  .card-input-footer--reduced ul {
    margin-right: 0;
  }
}

.payment-form {
  position: relative;
}

.payment-form__title {
  background: #37b182;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-family: "OpenSans-Bold", sans-serif;
  font-size: 13px;
  left: 20px;
  padding: 5px 10px;
  position: absolute;
  text-transform: uppercase;
  top: -15px;
}

.payment-form__input {
  background: #fff;
  border: 2px solid #37b182;
  border-radius: 5px;
  padding: 30px 20px;
  position: relative;
  width: 350px;
}

@media screen and (max-width: 767px) {
  .payment-form__input {
    margin-top: 30px;
    width: 280px;
  }
}

.payment-form__input label {
  color: #37b182;
  font-family: "OpenSans-Bold", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}

.payment-form__input input {
  border: none;
  border-bottom: 1px solid #37b182;
  margin: 10px 0 20px;
  padding-bottom: 2px;
  width: 100%;
}

.payment-form__input input:last-child {
  margin-bottom: 0;
}

.payment-form__input .pan {
  position: relative;
}

.payment-form__input .cc-row {
  display: flex;
  justify-content: space-between;
}

.payment-form__input .cc-col-half {
  width: 45%;
}

.payment-form__error {
  color: #ff0000;
  font-family: "OpenSans-Bold", sans-serif;
  font-size: 13px;
  position: absolute;
  right: 0;
  top: 0;
}

.payment-form__logos {
  bottom: 25px;
  display: flex;
  position: absolute;
  right: 0;
}

.payment-form__logos img {
  align-self: center;
}

.payment-form__submit {
  display: block;
  margin: 60px auto;
  width: 170px;
}

@media screen and (max-width: 767px) {
  .payment-form__submit {
    margin-bottom: 0;
  }
}

.payment-complete {
  margin-bottom: 60px;
  text-align: center;
}

.payment-complete__header,
.payment-failed-header {
  color: #566573;
  display: inline-block;
  font-size: 29px;
  margin-left: 50px;
  position: relative;
}

.payment-complete__header:before,
.payment-failed-header:before {
  content: "";
  background: url(/images/icons/completed.png) 50% 50% no-repeat;
  height: 40px;
  left: -50px;
  position: absolute;
  top: 0;
  width: 40px;
}

.payment-complete__body {
  color: #657280;
  font-size: 18px;
  margin: 25px 0 50px;
}

.payment-complete__actions a {
  margin: 20px;
}

.payment-failed-header:before {
  background-image: url(/images/icons/error.png);
}

.content-inner-title__small {
  margin-top: 15px;
}

.invoice-information-block-checkout__bottom {
  margin-bottom: 40px;
}

.invoice-information-block-checkout {
  border-bottom: none;
  margin-bottom: 0;
}

.invoice-information-block-checkout ul {
  margin-bottom: 0;
  margin-top: 30px;
}

.invoice-information-block-checkout li {
  padding: 4px 0;
}

.wallet-value {
  color: #000;
}

.send-crypto-info {
  position: relative;
}

.send-crypto-info__list {
  margin-top: 30px;
  width: 500px;
}

@media screen and (max-width: 767px) {
  .send-crypto-info__list {
    width: 280px;
  }
}

.send-crypto-info__list li {
  color: #7f90a4;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 20px;
  margin-left: 40px;
  position: relative;
}

.send-crypto-info__list li:before {
  content: "";
  background: url(/images/check_icon.png) 50% 50% no-repeat;
  height: 22px;
  left: -40px;
  position: absolute;
  top: 0;
  width: 22px;
}

.send-crypto-info .payment-confirmation-info {
  background: #eef5f5;
  border: 2px solid #37b182;
  border-radius: 5px;
  color: #37b182;
  display: inline-block;
  font-family: "OpenSans-Bold", sans-serif;
  font-size: 13px;
  margin: 20px 0 30px 40px;
  padding: 10px 20px;
}

#qrcode {
  border: 1px solid #37b182;
  display: inline-block;
  padding: 30px 30px 15px;
  position: absolute;
  right: 80px;
  top: 70px;
}

@media screen and (max-width: 767px) {
  #qrcode {
    margin-bottom: 20px;
    position: relative;
    right: 0;
    top: 0;
  }
}

#qrcode strong {
  color: #000;
  display: block;
  font-size: 13px;
  margin-top: 15px;
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
}

#qrcode #copy-wallet {
  bottom: 15px;
  cursor: pointer;
  position: absolute;
  right: 30px;
}

.licenses__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.licenses__item {
  margin: 0 0 30px;
  width: calc(50% - 20px);
}
.licenses__item img {
  width: 100%;
}
.licenses__item a {
  color: #15c98f;
}

@media screen and (max-width: 767px) {
  .licenses__item {
    width: 100%;
  }
}

.use-saved-card-block {
  width: 350px;
}

@media screen and (max-width: 767px) {
  .use-saved-card-block {
    width: 280px;
  }
}

.calculator__block-errors {
  color: #ff0000;
  display: none;
  text-align: center;
}