@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&family=Sora:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body {
  padding: 0;
  margin: 0;
  background-color: #202020;
  font-family: "Atkinson Hyperlegible", sans-serif;
  overflow-y: scroll;
  --scrollbar-width: calc(100vw - 100%);
}

body.no-scroll {
  overflow-y: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

/* Child Spacing (Gap) Modifiers */

.vgap-1>* {
  margin-bottom: 1px;
}

.vgap-1:last-child {
  margin-bottom: 0;
}


.vgap-2>* {
  margin-bottom: 2px;
}

.vgap-2>*:last-child {
  margin-bottom: 0;
}

.vgap-3>* {
  margin-bottom: 3px;
}

.vgap-3>*:last-child {
  margin-bottom: 0;
}

.vgap-5>* {
  margin-bottom: 5px;
}

.vgap-5>*:last-child {
  margin-bottom: 0;
}

.vgap-8>* {
  margin-bottom: 8px;
}

.vgap-8>*:last-child {
  margin-bottom: 0;
}

.vgap-10>* {
  margin-bottom: 10px;
}

.vgap-10>*:last-child {
  margin-bottom: 0;
}

.vgap-15>* {
  margin-bottom: 15px;
}

.vgap-15>*:last-child {
  margin-bottom: 0;
}

.vgap-20>* {
  margin-bottom: 20px;
}

.vgap-20>*:last-child {
  margin-bottom: 0;
}

.vgap-25>* {
  margin-bottom: 25px;
}

.vgap-25>*:last-child {
  margin-bottom: 0;
}

.vgap-30>* {
  margin-bottom: 30px;
}

.vgap-30>*:last-child {
  margin-bottom: 0;
}

.hgap-1>* {
  margin-right: 1px;
}

.hgap-1>*:last-child {
  margin-right: 0;
}

.hgap-2>* {
  margin-right: 2px;
}

.hgap-2>*:last-child {
  margin-right: 0;
}

.hgap-3>* {
  margin-right: 3px;
}

.hgap-3>*:last-child {
  margin-right: 0;
}

.hgap-5>* {
  margin-right: 5px;
}

.hgap-5>*:last-child {
  margin-right: 0;
}

.hgap-8>* {
  margin-right: 8px;
}

.hgap-8>*:last-child {
  margin-right: 0;
}

.hgap-10>* {
  margin-right: 10px;
}

.hgap-10>*:last-child {
  margin-right: 0;
}

.hgap-15>* {
  margin-right: 15px;
}

.hgap-15>*:last-child {
  margin-right: 0;
}

.hgap-20>* {
  margin-right: 20px !important;
}

/* Flex */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex {
  display: flex;
  align-items: center;
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.flex-grow,
.flex-grow-1 {
  flex-grow: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

/* Text */
.m-text-align-center {
  text-align: center;
}

/* Links */

a.g-textlink {
  color: #4f96ff;
  text-decoration: none;
  cursor: pointer;
}

a.g-textlink:hover {
  text-decoration: underline;
}

.m-disabled {
  user-select: none;
  pointer-events: none;
  opacity: 0.75;
  transition: opacity 500ms;
}

/* Column Sizing */
body {
  --full-width: 950px;
  --col-width-4: 230px;
  /* width of single column when there are 4 columns (not including gaps) */
  --gap: 10px;
}

@media (min-width: 1050px) {
  body {
    --full-width: 1010px;
    --col-width-4: 245px;
  }
}

@media (min-width: 1110px) {
  body {
    --full-width: 1070px;
    --col-width-4: 260px;
  }
}

@media (min-width: 1170px) {
  body {
    --full-width: 1130px;
    --col-width-4: 275px;
  }
}

@media (min-width: 1230px) {
  body {
    --full-width: 1190px;
    --col-width-4: 290px;
  }
}

@media (min-width: 1430px) {
  body {
    --full-width: 1390px;
    --col-width-4: 340px;
  }
}

@media (max-width: 400px) {
  body>div:nth-child(9)>iframe:nth-child(2) {
    /* margin-right: 285px !important; */
    /* margin-bottom: -5px !important; */
  }

  body>div:nth-child(11)>iframe:nth-child(3) {
    margin-right: 285px !important;
    margin-bottom: -5px !important;
  }
}

/* switch pay */

.switchpay-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.47);
  z-index: 1003;
}

.switchpay-modal-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  color: #5A5B5D !important;
  margin: 0 20px;
  box-shadow: 0px 8px 24px rgba(9, 10, 11, 0.32157);
  z-index: 1004;
}

.switchpay-modal-close-button {
  position: absolute;
  top: 21px;
  right: 21px;
  padding: 0;
  line-height: 0;
  border: none;
  cursor: pointer;
  background-color: transparent;
  z-index: 100;
}

.switchpay-modal-back-button {
  position: absolute;
  top: 21px;
  left: 21px;
  padding: 0;
  line-height: 0;
  border: none;
  cursor: pointer;
  background-color: transparent;
  z-index: 100;
}

.switchpay-icon {
  width: 14px;
}

.switchPayLogo {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background-color: white;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

@media (max-width: 767px) {
  .switchpay-modal-wrapper {
    width: 100%;
    height: 100%;
    justify-content: center;
    border-radius: 0px;
    overflow-y: scroll;
    margin: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    position: static;
  }

  .switchpay-partial-screen {
    height: auto;
    width: calc(100vw - 32px);
    border-radius: 5px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.switchPayDivider {
  border-bottom: 1px solid #E4E4E8;
}

.CreditCardOptionsContainer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.icon-container {
  border-radius: 50%;
  cursor: pointer;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  transition-duration: 0.3s;
}

.icon-container:hover {
  background-color: #E1E1EA;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.icon-container:focus {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.icon-container:active {
  -webkit-transform: scale(0.75);
  transform: scale(0.75);
}

#switchpayStatusContainer {
  padding: 35px;
}

#switchpayStatusIcon {
  text-align: center;
}

#switchpayStatusTitle {
  color: #000 !important;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  margin: 20px 0px;
}

#switchpayStatusDescription {
  color: #000 !important;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin: 20px 0px;
}

#switchpayStatusButton {
  width: 100%;
  margin-top: 20px;
  padding: 15px;
}

.switchpayCardFormContainer {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.switchpayInputContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
  gap: 10px;
}

.switchpayInputGroup {
  flex: 1;
  margin-bottom: 15px;
}

.switchpayInput {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-decoration: none;
}

.switchpayFormHeader {
  text-align: center;
  margin-bottom: 20px;
}

.switchpayLabel {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.timerContainer {
  align-items: center;
  text-align: center;
  padding: 5px;
  margin: 10px 0 0 0;
}

.timerText {
  margin: 5px 0;
}

@media (max-width: 768px) {
  .switchpayInputGroup {
    flex: 0 0 100%;
  }
}

.ibaneraHeader {
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  color: #000000 !important;
  font-weight: 600;
}

.ibaneraBackButton {
  width: auto;
}

.ibaneraDisclaimerText {
  margin: 25px 20px;
  color: #ACACB2 !important;
  font-size: 10px;
  font-weight: 400;
  line-height: 140%;
}

.ibaneraFundDisclaimerText {
  color: #ACACB2 !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  margin: 25px 20px;
}

.ibaneraFundDisclaimerTextBold {
  font-weight: 700;
}

.Btn {
  background-color: #4e8cca !important;
  border: none !important;
}

.Btn {
  color: white !important;
  border-radius: 5px;
  cursor: pointer;
}

.Btn:hover {
  background-color: #3c82c9;
}

.SlidingIcon {
  background-color: #4e8cca !important;
}

#Layer_1 {
  fill: #4e8cca !important;
}

.slider {
  border-color: #4e8cca !important;
}

a {
  color: #4e8cca !important;
}

@media (max-width: 767px) {
  .QuickCoinWidget .QuickCoinForm .SideBySide {
    display: inline !important;
  }
}

ol.progtrckr {
  display: table;
  list-style-type: none;
  float: right;
  margin-top: 30px;
  padding: 19px 0px 60px 20%;
  table-layout: fixed;
  width: 100%;
}

ol.progtrckr li {
  display: table-cell;
  text-align: center;
  line-height: 3em;
}

ol.progtrckr li.progtrckr-done {
  color: black !important;
  border-bottom: 5px solid #4e8dcb;
}

ol.progtrckr li.progtrckr-working {
  color: silver !important;
  border-bottom: 5px solid #d0e0f0;
}

ol.progtrckr li.progtrckr-todo {
  color: silver !important;
  border-bottom: 5px solid #d0e0f0;
}

ol.progtrckr li:last-child {
  border-bottom: none;
}

ol.progtrckr li:after {
  content: "  ";
}

ol.progtrckr li:before {
  position: relative;
  bottom: -2.25em;
  float: left;
  left: 0%;
  line-height: 1em;
}

ol.progtrckr li.progtrckr-done:before {
  content: "";
  color: white !important;
  background-color: #4e8dcb;
  width: 30px;
  height: 30px;
  line-height: 1.2em;
  border: none;
  border-radius: 1.2em;
}

ol.progtrckr li.progtrckr-working:before {
  content: "";
  color: white !important;
  background-color: #4e8dcb;
  width: 30px;
  height: 30px;
  line-height: 1.2em;
  border: none;
  border-radius: 1.2em;
}

ol.progtrckr li.progtrckr-todo:before {
  content: "";
  color: white !important;
  background-color: white;
  width: 24px;
  height: 24px;
  line-height: 1.2em;
  border: 4px solid #d0e0f0;
  border-radius: 1.2em;
}

.cardProcessingHeader {
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: #000000 !important;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
  border-radius: 10px;
}

.cardProcessingDescription {
  width: 400px;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
}

.cardProcessingContainer {
  border-radius: 10px;
}

@media (max-width: 550px) {

  .cardProcessingHeader,
  .cardProcessingDescription {
    width: 75%;
  }
}

.blockChainText {
  font-size: 15px;
  line-height: 19px;
  text-align: center;
  color: #4E8DCB !important;
  display: flex;
  justify-content: center;
  text-decoration: none;
  margin: 30px;
  font-weight: 700;
}

.blockChainDurationText {
  width: 400px;
  font-size: 11px;
  line-height: 22px;
  font-weight: 400;
  margin: 20px auto;
  text-align: center;
  display: flex;
}

.backButton {
  background-color: #4d8cca;
  color: #ffffff !important;
  padding: 10px 35px;
  margin: 15px;
  border-radius: 5px;
  border: 2px solid #d3dce2;
}

.forwardButtonContainer {
  display: flex;
  gap: 5px;
  text-align: center;
  margin: 20px auto;
  width: 65%;
}

.forwardPurchaseCryptoFormButton {
  padding: 15px !important;
}

.forwardPurchaseCryptoFormButton {
  width: 100%;
}

.switchpayCalculationTotal {
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  color: #000000 !important;
}

.switchpayCalculationTotalValue {
  font-weight: 800;
  font-size: 20px;
  line-height: 25px;
  text-align: right;
  color: #4E8DCB !important;
}

.switchpayCalculationsContainer,
.switchpayCalculationsContainerTotal {
  width: 65%;
  margin: 20px auto;
  padding-bottom: 15px;
  border-bottom: 1px solid #CECED7;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}

.switchpayCalculationsContainerTotal {
  border-bottom: hidden;
}

.switchpayCalculationsGroup {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.switchpayCalculationFeeAmount {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: right;
  color: #5A5B5D !important;
}

.switchpayCalculationBorder {
  width: 100%;
  color: #ACACB2 !important;
}

.purchaseContainer {
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
}

.cryptoInputAmountContainer {
  margin-top: 10px;
  font-size: 46px;
  display: flex;
  justify-content: center;
}

.purchaseCryptoFormContainer {
  border-radius: 10px;
}

.switchpayCurrencyInput {
  border: 1px solid #ACACB2;
  border-radius: 6px;
  color: #4e8dcb !important;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  display: flex;
  align-items: center;
  text-align: center;
  width: 65%;
  height: 59px;
}

.switchpayDisclaimerText {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ACACB2 !important;
  width: 75%;
  margin: 16px auto 0px auto;
}

.switchpayDisclaimerTextFooter {
  width: 85%;
  margin: 0 auto;
}

@media (max-width: 760px) {
  .switchpayDisclaimerTextFooter {
    width: 100%;
  }

  .forwardButtonContainer {
    display: block;
    width: 100%;
  }

  .forwardPurchaseCryptoFormButton {
    margin: 10px 0 !important;
  }

  .forwardPurchaseCryptoFormButton {
    width: 100%;
  }

  .switchpayCurrencyInput {
    width: 100%;
  }
}

.paymentMethodItemActive {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px 5px 15px 15px;
  margin: 15px auto;
  gap: 15px;
  width: 450px;
  height: 80px;
  border: 1px solid #e1e1ea;
  border-radius: 15px;
  cursor: pointer;
}

.paymentMethodItemActive:hover {
  background-color: rgb(240, 240, 240);
}

.paymentMethodItemDisabled {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px 5px 15px 15px;
  gap: 15px;
  width: 450px;
  height: 80px;
  border: 1px solid #e1e1ea;
  border-radius: 15px;
  margin: 15px auto;
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 650px) {

  .paymentMethodItemActive,
  .paymentMethodItemDisabled {
    width: auto;
  }
}

.paymentOptionContainer {
  margin: 0 auto;
  padding-bottom: 25px;
  height: 100%;
  border-radius: 8px;
}

.paymentOptionsHeader {
  text-align: center;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  color: #000000 !important;
  border-radius: 10px;
  margin: 20px 0;
}

.paymentOptionImage {
  width: 27.4285678864px;
  height: 20.5714302063px;
}

.switchPayModal,
.switchPayConfirmationModal {
  min-height: 575px;
  max-height: 700px;
  width: 640px;
  left: 0px;
  top: 0px;
  background: #ffffff;
  position: relative;
  border-radius: 10px;
  overflow-y: scroll;
  padding: 30px;
  margin-bottom: 60px;
}
.switchPayModal * {
  box-sizing: border-box;
}

.switchPayConfirmationModal {
  width: 480px;
  min-height: 200px;
}

.switchPayContext {
  height: 100%;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .switchPayModal {
    height: 100%;
    width: 100%;
    border-radius: 0;
    min-height: 0px;
  }

  .switchPayContext {
    margin-top: 40px;
  }
}

@media (max-height: 858px) {
  .switchPayModal {
    overflow-y: scroll;
    border-radius: 10px;
    max-height: 600px;
  }
}

@font-face {
  font-family: "Roboto";
  src: url(fc2b5060f7accec5cf74.ttf);
}

:root,
html,
body {
  padding: 0;
  margin: 0;
  font-family: "Roboto", "Poppins";
  font-style: normal;
  position: relative;
  overscroll-behavior: none;
}

.switchpay-spinner {
  margin: 20px 0;
  justify-content: center;
}

.switchpay-error-container {
  border: 1px solid #f55a5a;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  align-items: center;
  margin: 20px auto 20px auto;
  width: 75%;
}

.switchpay-error-text {
  color: #f55a5a !important;
}

.switchPayButtonPrimary,
.switchPayButtonSecondary {
  border-radius: 6px;
  border: none;
  margin: 10px;
  cursor: pointer;
  padding: 10px 25px;
}

.switchPayButtonPrimary {
  background-color: #4e8cca;
  color: white !important;
}

.switchPayButtonPrimary:disabled {
  background-color: #acacb2;
  cursor: not-allowed;
}

.switchPayButtonPrimary:hover:enabled {
  background-color: #3c82c9;
}

.switchPayButtonSecondary {
  background-color: white;
  color: #4E8DCB !important;
  border: 1px solid #4E8DCB;
}

.switchPayButtonSecondary:hover:enabled {
  background-color: #F9F9FF;
}

.switchPayButtonSecondary:disabled {
  cursor: not-allowed;
}

.switchPayButtonRow {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.switchPayHeader {
  text-align: center;
  margin: 30px 0px 30px 0px;
  font-size: 22px;
}

.switchPaySubHeader {
  text-align: center;
  margin: 30px 0px 0px 0px;
}

.width-100 {
  width: 100%;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.requiredAsterisks {
  color: red !important;
}

@media (max-width: 320px) {
  .switchPayButtonRow {
    flex-direction: column;
  }
}