* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Inter, sans-serif;
}

body {
    background: #E6E9EE;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.container {
    max-width: 610px;
    width: 100%;
}

.card {
    background: #fff;
    border-radius: 10px;
    padding: 50px;
    text-align: center;
}

.logo {
    width: 100px;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #343A40;
}

.amount {
    background-color: #102a4d;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 28px;
    letter-spacing: 0;
    font-weight: 600;
    display:none;
}

.input-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    text-align: left;
    font-size: 14px;
    color: #1D2433;
}

.input {
    width: 100%;
    border: 1px solid #C2C2C2;
    height: 56px;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 400;
}

.transfer-section {
    background: #E6E9EE;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: left;
}

.bank-icon {
    width: 127px;
    height: 56px;
    display: block;
    margin: 0 auto 0 auto;
    object-fit: cover;
    border-radius: 8px;
}

.how-title {
    text-align: center;
    margin: 25px 0 20px;
}

.instructions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin: 0;
    text-align: center;
    color: #1D2433;
}

.instructions span {
    line-height: 140%;
}

.alert {
    background: #fff;
    padding: 10px;
    border-left: 4px solid #409eff;
    font-size: 14px;
    border-radius: 4px;
}

.cvu-section {
    text-align: left;
    margin-bottom: 40px;
    position: relative;
    padding: 15px 0;
    border-bottom: 1px solid #E8EBF1;
}

.cvu-copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.cvu-number {
    font-weight: bold;
    font-size: 14px;
}

.copy-btn {
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #BBD33B;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    height: 56px;
}

.submit-btn.disabled {
    background: #f3f9d4;
}

.submit-btn:hover {
    background: #aacc29;
}

.submit-btn.disabled:hover {
    background: #f3f9d4;
}

.customer-step-info-description-container {
    background: #FFFFFF;
    padding: 12px 8px;
    border-radius: 12px;
    display: flex;
    gap: 8px;
    margin-top: 30px;
    margin-bottom: 0;
}

.customer-step-info-description strong {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
}
.customer-step-info-description {
    font-size: 14px;
    color: #1D2433;
    font-weight: 500;
    line-height: 140%;
}

.copy-label {
    font-size: 14px;
    font-weight: 400;
    color: #1D2433;
}

.cvu-copy-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-right: 35px;
}

.copy-container {
    position: absolute;
    right: 0;
    display: flex;
}

.copy-done {
    display: none;
}

#deeplinks {
    display: none!important;
}
@media only screen and (max-width: 372px) {
    #customer-number {
        font-size: 12px;
    }
}
@media only screen and (max-width: 768px) {
    body {
        padding: 0;
    }
    
    .container {
            margin-top: 10%;
    max-width: 96%;
    }

    .card {
        padding: 20px;
    }
    
    #card-main {
        padding: 10px;
    }

    .cvu-copy-container {
        flex-direction: column;
        gap: 10px;
    }

    .customer-step-info-description-container {
        margin-top: 20px;
        margin-bottom: 0;
    }
}

.customer-step-info {
  margin-bottom: 20px;
}

.error-message {
        text-align: left;
    font-size: 12px;
    margin-top: 2px;
    color: red;
    display:none;
}

.customer-step-info.error .error-message {
    display:block;
}

.popup {
  max-width: 380px;
  margin: 50px auto;
  padding: 24px 16px;
  background-color: white;
  text-align: center;
  font-family: sans-serif;
  border-radius: 16px;
  margin-top:0;
}

.popup-title {
  font-weight: bold;
  font-size: 18px;
  color: #000;
  margin-bottom: 16px;
}

.popup-text {
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 16px;
}

.popup-link {
  color: #b2b500;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}

.popup-cancel {
  display: block;
  width: 100%;
  background-color: #f0f2ff;
  border: none;
  padding: 12px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 16px;
  color: #000;
  cursor: pointer;
}

#card-result {
    display:none;
    max-width: 90%;
    margin: 0 auto;
    margin-top: 50px;
}

#card-main {
    display:none;
        padding-top: 40px;
}

.page-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 12px 12px 28px;
  background: #fff;
  overflow-x: hidden;
}

@media all and (min-width: 1280px) {
  .page-layout {
    max-width: 720px;
    padding: 16px 16px 40px;
    border-radius: 12px;
  }
}

.deposit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
}

.details-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 12px;
  padding: 8px 16px;
  background-color: #edebe9;
}

.notification-block {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  padding: 8px;
  border-radius: 12px;
  background-color: #ffefdd;
  color: #292621;
  font-size: 12px;
  line-height: 16px;
}

.notification-text {
  color: #292621;
  font-size: 12px;
  line-height: 16px;
  word-break: break-word;
}

.details-block {
  min-height: 56px;
}

.details-block-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.value-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.value-title {
  font-size: 12px;
  color: #55504a;
  word-break: break-all;
  text-align: left;
}

.value {
  font-size: 16px;
  color: #090807;
  word-break: break-all;
}

.currency {
  margin-left: 4px;
}

.copy-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  min-width: 60px;
  padding: 7.5px 12px;
  border-radius: 20px;
  background-color: #d8eaff;
  font-size: 14px;
  font-weight: 600;
  color: #090807;
  line-height: 17px;
  word-break: break-all;
}

.proceed-button {
  width: 100%;
  min-height: 56px;
  margin: 0px 0 16px 0;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #292621;
  word-break: break-all;
  text-decoration: none;
      height: 48px;
    text-transform: uppercase;
    cursor: pointer;
    gap: 4px;
    transition: background-color .3s ease;
        display: flex
;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    border: none;
}
.proceed-button:hover {
  color: #292621 !important;
  cursor: pointer !important;
}

.guide-block {
  width: 100%;
  padding: 16px 16px 20px 12px;
  border-radius: 12px;
  background-color: white;
}

.guide-title {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: -0.15px;
  color: #090807;
}

.guide-item_wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}

.guide-item {
  display: flex;
  gap: 8px;
}

.guide-item .icon {
  max-width: 24px;
  max-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-text {
  width: 100%;
  word-break: break-word;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: -0.15px;
  color: #292621;
  text-align: left;
}

.alert {
  position: fixed;
  top: 8px;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 400px;
  min-width: 296px;
  padding: 16px;
  border-radius: 12px;
  background-color: #009e69;
  color: #fff;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.32px;
}

.alert-error {
    background-color: #f53838;
    border-left: 4px solid #ff0000;
}

#redirectUrl {
    display: flex;
    height: 56px;
    justify-content: center;
    align-items: center;
}

.modulor_button__text-wrap__1_80_3 {
    width: 100%;
}

#card-result {
    position:relative;
}

.alert__icon,
.alert svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.alert--visible {
  opacity: 1;
  visibility: visible;
}

.loader, .loader:before, .loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  animation-fill-mode: both;
  animation: bblFadInOut 1.8s infinite ease-in-out;
}
.loader {
  color: #b6de13;
  font-size: 7px;
  position: relative;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}

@keyframes bblFadInOut {
  0%, 80%, 100% { box-shadow: 0 2.5em 0 -1.3em }
  40% { box-shadow: 0 2.5em 0 0 }
}

.bank-list-icons {
    margin-bottom: 10px;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    gap: 6px;
    justify-content: center;
    align-items: center;
}

#card-final {
    display:none;
}

