* {
  box-sizing: border-box;
}

/* Global */
html {
  width: 100%;
  height: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hidden {
  opacity: 0 !important;
  transition: opacity 300ms, left 0ms 300s !important;
}

.d-none {
  display: none !important;
}

.disabled-div {
  pointer-events: none;
}

body,
.container {
  background-color: var(--background-color);
  color: var(--primary-text-color);
}

.landing-page {
  position: relative;
  overflow: auto;
}

.index-container {
  padding: 1rem 1.875rem 3.75rem;
  padding-bottom: 1.875rem;
  padding-left: calc(50% - 17.16rem);
  padding-right: calc(50% - 17.16rem);
  height: inherit;
  box-sizing: border-box;
}

.container {
  width: 100%;
  height: 100%;
  margin: 0;
  max-width: 100% !important;
  box-sizing: border-box;
}

.step {
  padding: 20px;
  height: 100%;
}

.title {
  color: var(--primary-text-color);
  font-size: 1.4rem;
  margin-bottom: 25px;
  display: block;
  font-weight: 700;
}

.subheader {
  font-weight: bold;
  font-size: 1.4rem;
}

.other-method-title {
  margin-top: 30px;
}

.icons {
  width: 24px;
  height: 24px;
}

.mt40 {
  margin-top: 40px;
}

.red-color {
  color: red !important;
}

/* Forms */
.form-input,
.add-card,
.card {
  background-color: var(--background-field-color);
  border: 1px solid var(--background-field-color);
  color: var(--field-color);
}

.form-input {
  width: 100%;
  margin-top: 10px;
  height: 50px;
  outline: none;
  font-size: 0.87rem;
  padding-left: 20px;
  padding-right: 20px;
}

.form-input::placeholder {
  color: rgba(17, 17, 17, 0.48);
}

/* Buttons */
.btn {
  background: var(--primary-color);
  color: var(--secondary-text-color);
  width: 100%;
  height: 50px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 700;
  margin-bottom: 5px;
  margin-top: 40px;
}

.btn-disabled {
  background: grey;
  color: white;
}

.btn-secondary {
  background: var(--secondary-color);
  color: var(--secondary-text-color);
  width: 100%;
  height: 50px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 700;
  margin-bottom: 5px;
  margin-top: 40px;
}

.btn_back_action {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.btn-loader {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*Loader*/

.loader {
  position: absolute;
  left: 55%;
  top: 50%;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin: -76px 0 0 -76px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  border-top: 16px solid var(--primary-color);
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

/* Alerts */
.successful-alert {
  display: none;
  width: 295px;
  height: 56px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  color: white;
  border-radius: 12px;
  background: #467ef0;
  margin-left: 24%;
}

#succesful-alert.hidden {
  opacity: 0 !important;
  transition: opacity 300ms, left 0ms 300s !important;
}

.alert {
  padding: 20px;
  background-color: #f44336;
  color: white;
  border-radius: 10px;
  margin-bottom: 1px;
  position: fixed;
  top: 10px;
  right: 10px;
  max-width: 325px;
  z-index: 1111111;
  opacity: 1;
  transition: opacity 500ms;
}

#alert.hidden {
  opacity: 0 !important;
  transition: opacity 300ms, left 0ms 300s !important;
}

/* Header Bar */
.back-btn {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.btn-container {
  display: flex;
  align-items: center;
  width: 10%;
  height: 40px;
}

.cards-step-btn-back-action {
  cursor: pointer;
}

.choosen-amount-container {
  width: 90%;
  display: flex;
  justify-content: end;
}

.choosen-amount-container div {
  min-width: 100px;
  max-width: auto;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px;
}

.selected-amount {
  background: var(--secondary-color);
  color: var(--secondary-text-color);
}

/* Top Up Wallet (First Screen) */
.amount-input-container {
  display: flex;
  align-items: center;
}

.given-amount {
  font-weight: bold;
}

.amount-info {
  margin-top: 20px;
  font-size: 0.87rem;
  font-weight: 400;
}

.amount-suggestion {
  display: flex;
  margin-top: 10px;
  justify-content: space-between;
}

.dropbtn.currency-dropbtn {
  background: var(--secondary-color);
  color: var(--secondary-text-color);
  padding: 12px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown.currency-dropdown {
  position: relative;
  display: inline-block;
  margin-top: 10px;
}

/* .currency-dropdown .dropdown-content {
      display: none;
      position: absolute;
      right: 0;
      background-color: #f9f9f9;
      min-width: 90px;
      box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
      z-index: 1;
      width: 19%;
    } */

/* .currency-dropdown .dropdown-content span {
      color: black;
      padding: 12px;
      text-decoration: none;
      display: block;
      cursor: pointer;
    } */

/* .currency-dropdown .dropdown-content span:hover {
      background-color: #f1f1f1;
    } */

/* .currency-dropdown.dropdown:hover .dropdown-content {
      display: block;
    } */

.btn-choose-amount {
  background: var(--secondary-color);
  color: var(--secondary-text-color);
  width: 32%;
  padding: 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-choose-amount:hover,
.btn-auth:hover,
.active {
  background: var(--primary-color);
}

#exchange-info {
  width: 100%;
  background: #ffb800;
  height: 40px;
  border-radius: 10px;
  color: #000000;
  display: flex;
  margin-top: 30px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  padding: 10px;
  text-align: center;
}

/* Provider Selection Screen (Second Screen) */

.payment-method {
  background: var(--secondary-color);
  width: 100%;
  height: 80px;
  padding: 20px 15px 20px 15px;
  display: flex;
  margin-bottom: 10px;
}

.w-90 {
  width: 90%;
  position: relative;
}

.payment-method-icon {
  width: 36px;
  display: flex;
  align-items: center;
}

.payment-method-icon img {
  height: 44px;
}

.payment-name {
  color: var(--secondary-text-color);
  display: block;
  font-size: 14px;
  margin-left: 10px;
}

.tags {
  display: inline-block;
  color: rgba(255, 255, 255, 0.64);
  padding: 2px 10px;
  font-size: 11px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  margin-top: 10px;
  margin-left: 10px;
}

.btn-choose-payment {
  cursor: pointer;
}

.btn-choose-payment-arrow {
  width: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.exchange-label-info {
  float: right;
  background: #fff;
  color: #000;
  padding: 2px 4px 2px 4px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  position: absolute;
  top: 12px;
  right: 0px;
  height: auto;
}

/* Card Selection Screen */
.card-wrapper {
  display: flex;
  align-items: center;
  background: var(--background-field-color);
  margin-bottom: 16px;
}

.card {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  cursor: pointer;
}

.card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-content {
  display: flex;
  width: 100%;
  align-items: center;
}

.card-icon {
  width: 15%;
}

.card-number {
  width: 40%;
}

.card-exp {
  color: #8e8ea9;
  width: 45%;
  font-size: 14px;
  font-weight: 500;
  text-align: right;
}

.delete-card {
  width: 12%;
  text-align: right;
  padding-right: 15px;
}

.card-actions {
  cursor: pointer;
}

.card-actions > span {
  margin-right: 0px !important;
}

.add-card {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 0.87rem;
  margin-bottom: 20px;
}

.payment-info {
  width: 100%;
  text-align: center;
  font-weight: 400;
  font-size: 13px;
  padding: 20px;
  position: relative;
  bottom: 0;
  color: var(--primary-text-color);
}

.glass-effect {
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

/*Save Card Details*/
.bank-row-container {
  margin-top: 20px;
}

.shadow {
  margin-top: 20px;
  height: 3px;
  width: 85px;
  background: #dcdce4;
}

.card-remove-alert {
  margin: -110px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  width: 80%;
  min-width: 300px;
  border-radius: 15px;
  padding: 30px;
  position: relative;
  z-index: 1;
  background-color: #fff;
}

.card-remove-alert-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px;
}

.remove-description,
.authorise-description {
  color: var(--tertiary-text-color);
  font-weight: normal;
  text-align: center;
  margin: 12px 0px;
}

.authorise-text {
  color: var(--tertiary-text-color);
}

.card-authorise {
  margin-top: -230px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  width: 80%;
  min-width: 300px;
  position: relative;
  z-index: 1;
  background-color: #fff;
  border-radius: 15px;
}

.card-authorise-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  border-radius: 15px;
  background-color: #fff;
}

.credit-card-btn_back_action {
  cursor: pointer;
}

.btn-cancel {
  color: var(--tertiary-text-color);
  background: #ffffff;
  border: 1px solid var(--tertiary-text-color);
  width: 45%;
}

.btn-confirm {
  width: 45%;
}

.buttons {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.selected {
  border: 2px solid var(--primary-color) !important;
}

.select-for-delete {
  border: 1px solid red;
}

.d-flex {
  display: flex;
}

.bank-expiration-container {
  width: 70%;
  margin-right: 10px;
}

.bank-cvc-container {
  width: 30%;
}

.save-card-check {
  font-size: 0.87rem;
}

/* Update placeholder as well */
/* .cc-cvc{
  font-size:1.5rem;
} */

/*Crypto Manual Deposit*/
.details-container {
  width: 100%;
  display: flex;
  margin-top: 15px;
}

.crypto-info-label {
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 40px;
  text-align: center;
}

.detail-name {
  width: 40%;
  font-size: 0.8rem;
}

.detail-value {
  width: 60%;
  text-align: end;
  font-size: 0.9rem;
  font-weight: 700;
  word-wrap: break-word;
}

.recieve-value {
  width: 50%;
  text-align: end;
  font-weight: 700;
  color: var(--primary-text-color);
}

.promote {
  font-size: 1rem;
}

/*KYC Warning Page*/
.payment-status {
  width: 100%;
  text-align: center;
  margin-top: 50px;
}

.payment-status-info {
  color: var(--primary-text-color);
  font-size: 1rem;
  width: 100%;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  margin-top: 0px;
  margin-bottom: 20px;
}

/*Terms for Banking*/
iframe-banner {
  height: 100px;
  width: 100%;
  background: white;
  position: fixed;
  left: 0;
  top: 0;
  text-align: center;
}

terms {
  margin-bottom: 10px;
  font-size: 0.87rem;
  display: flex;
  align-items: center;
  position: relative;
}

.terms-content {
  overflow: scroll;
  height: 65%;
}

.terms-warning-text {
  font-size: 0.8rem;
  font-weight: 700;
}

#payment-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/*Loading / Pending Payment Page*/
.loading-page-container {
  margin-top: 150px;
}

.lds-ellopsis-container {
  width: 100%;
  text-align: center;
}

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--primary-text-color);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/* Manual Bank Screen */
.bank-container {
  height: auto !important;
  flex-direction: column !important;
}

.send-container {
  margin-bottom: 12px;
}

.send-value {
  font-weight: bold;
}

.recieve-container {
  margin-bottom: 50px;
}

.between-container {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  line-height: 20px;
}

.bank-info {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  font-weight: bold;
}

.important-warning {
  margin-top: 22px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #ff0000;
}

/* Bank Withdrawal Page */
.iban-details {
  display: flex;
}

.iban-details.detail-name {
  flex: 1 1 auto;
}

.iban-details.detail-value {
  flex: 2 1 auto;
}

.bank-label {
  font-size: 0.8rem;
}

/* THIS IS ALL FOR THE CHECKBOX - NEED TO FIX */

/* The container */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-image: url(https://s3.eu-west-1.amazonaws.com/assets.nixxe.io/gateway/icons/check.svg) !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none !important;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 3px;
  height: 7px;
  border: solid white;
  border-width: 0 3px 3px 0;
  /* // -webkit-transform: rotate(45deg);
    // -ms-transform: rotate(45deg);
    // transform: rotate(45deg); */
}

.save-info-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.save-info-checkmark {
  position: absolute;
  top: 490px;
  left: 20px;
  height: 20px;
  width: 20px;
  background-color: #ebeff8;
}

.save-info-checkbox input:checked ~ .save-info-checkmark {
  background-image: url(https://s3.eu-west-1.amazonaws.com/assets.nixxe.io/gateway/icons/check.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.save-info-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.save-info-checkbox input:checked ~ .save-info-checkmark:after {
  display: block;
}

#save-info {
  background-color: #ebeff8;
}

.btn-choose-simulator {
  cursor: pointer !important;
  height: 50px !important;
}
.new-age-crypto-qrcode {
  display: flex !important;
  justify-content: center !important;
  margin-top: 25px !important;
}
.new-age-crypto-qrcode svg {
  width: 200px !important;
}
.information-container {
  font-size: 0.85rem !important;
  margin-top: 25px !important;
  line-height: 25px !important;
}
.recieve-value {
  width: 60% !important;
}
#new_age_wallet {
  display: flex !important;
  align-items: center !important;
  justify-content: end !important;
  cursor: pointer !important;
}
.success {
  color: #155724 !important;
  background-color: #d4edda !important;
  border-color: #c3e6cb !important;
}
.w-90 {
  width: 90% !important;
}
.p-icon {
  width: 30px !important;
  height: 30px !important;
}
.arrow-icon {
  width: 16px !important;
  height: 16px !important;
}
.c-icon {
  width: 24px !important;
  height: 24px !important;
}
.text-center {
  text-align: center !important;
}
.bank-info-container {
  text-align: center !important;
  margin-top: 40px !important;
  font-size: 14px !important;
}

.subheader {
  font-weight: bold !important;
  font-size: 1.6rem !important;
}
.crypto-withdrawal-info {
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  margin-top: 40px !important;
  text-align: center !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.text-left {
  text-align: left !important;
}
.bvnk-information {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  margin-bottom: 20px;
  margin-top: 35px;
}
.bvnk-network-options {
  display: flex;
  margin-top: 10px;
  justify-content: space-between;
}
.btn-choose-bvnk-network {
  background: var(--secondary-color);
  color: var(--secondary-text-color);
  width: 32%;
  padding: 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bvnk-crypto-qrcode {
  display: flex !important;
  justify-content: center !important;
  margin-top: 25px !important;
  max-width: 200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.bvnk-crypto-qrcode svg {
  width: 300px !important;
}
.btn-choose-amount:hover,
.btn-choose-bvnk-network:hover,
.btn-auth:hover,
.active {
  background: var(--primary-color) !important;
}

.bvnk-address-info {
  display: flex;
  padding: 10px;
  background: #ebeff8;
  color: #111111;
  margin-top: 15px;
  margin-bottom: 15px;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 14px;
}
.bvnk-copy-icon {
  margin-left: 5px;
  display: flex;
  cursor: pointer;
}

#bvnk-address {
  display: flex;
  word-break: break-all;
}

.bvnk-footer-message {
  display: flex;
  padding: 10px;
  background: #ebeff8;
  margin-top: 15px;
  margin-bottom: 15px;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  border-radius: 6px;
  line-height: 20px;
  color: #111111;
  text-align: center;
}
.bvnk-warning {
  display: flex;
  justify-content: space-between;
  line-height: 16px;
  font-size: 0.8rem;
  font-weight: 400;
  margin-top: 35px;
  margin-bottom: 60px;
}
.bvnk-info-icon {
  margin-right: 10px;
}
.line-height-20 {
  line-height: 20px !important;
}
#cvv-for-card,
#cc-cvc {
  font-size: 1.5rem !important;
}
#cvv-for-card::placeholder,
#cc-cvc::placeholder {
  font-size: 0.87rem !important;
}
.btn-finish-container {
  margin-top: 40px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.btn-choose-crypton-coin {
  height: 48px !important;
}
.crypton-label {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
}
.crypton-address-active {
  border: 1px solid #65759b !important;
}
.flexepin-link {
  font-size: 0.8rem;
  text-align: right;
  display: block;
  color: var(--primary-text-color);
  margin-top: 5px;
}
.terms-text {
  margin-left: 25px !important;
}
.apple-pay-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background-color: black;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}
.imported-card {
  background-color: #fcf4a3;
  border: 1px solid #fcf4a3;
}
.user-phone-select {
  max-width: 97px !important;
  min-width: 50px !important;
}
.user-phone-container {
  display: flex !important;
  gap: 8px !important;
  align-items: center !important;
}
.user-details-label {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
}
