.all-pay-details {
  max-width: 945px;
  width: 100%;
}
.transfer-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.transfer-option {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  width: 176px;
  height: 65px;
  border: 1px solid rgba(69, 39, 117, 0.2);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  padding: 10px;
  text-align: center;
  user-select: none;
  background-color: #fff;
  color: #333;

  box-shadow: 0px 0px 1px 0px rgba(106, 106, 106, 0.3),
    0px 3px 12px -1px rgba(62, 62, 112, 0.05);
}

.transfer-option input {
  display: none;
}

.transfer-option .check-circle {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(69, 39, 117, 0.2);
  background: transparent;
  transition: all 0.3s ease;
}

.transfer-option input:checked + .check-circle {
  background-color: #452775;
  border-color: #452775;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'><path d='M6.173 12.627l-4.51-4.51 1.414-1.414 3.096 3.096 7.096-7.096 1.414 1.414-8.51 8.51z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.transfer-option.is-active {
  border-color: #452775;
}

.option-details {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* END OPTIONS PAY */
/* ==========================
START FORM
=============================*/
.money-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.all-main-bank {
  border: 1px solid rgba(214, 214, 214, 1);
  border-radius: 10px;
  padding: 16px;
}
.all-main-bank .title-account {
  font-size: 15px;
  font-weight: 700;
  color: #848484;
  margin-bottom: 20px;
}
.bank-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.field-row label {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  display: none;
}
.bank-input {
  height: 57px;
  border: 1px solid rgba(232, 231, 231, 1);
  border-radius: 14px;
  padding: 0 10px;
  font-size: 14px;
}
.bank-input::placeholder {
  font-size: 14px;
  color: rgba(118, 121, 126, 1);
  font-weight: 700;
}
.header-top-money {
  background: rgba(249, 245, 254, 1);
  font-size: 18.11px;
  font-weight: 700;
  color: rgba(69, 39, 117, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  border-radius: 10px;
  margin-bottom: 24px;
}
.money-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.money-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  min-height: 60px;
  border-radius: 8px;
  cursor: pointer;
  padding: 10px 15px;
  transition: all 0.3s ease;
  background-color: #fff;
  font-size: 16px;
  font-weight: 700;
  color: #452775;
  border: 1px solid #fff;
  box-shadow: 0px 0px 1px 0px rgba(106, 106, 106, 0.3),
    0px 3px 12px -1px rgba(62, 62, 112, 0.05);
}

.money-option input {
  display: none;
}

.money-option .circle-check {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(69, 39, 117, 0.2);
  background: transparent;
  transition: all 0.3s ease;
}

.money-option input:checked + .circle-check {
  background-color: #452775;
  border-color: #452775;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'><path d='M6.173 12.627l-4.51-4.51 1.414-1.414 3.096 3.096 7.096-7.096 1.414 1.414-8.51 8.51z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.money-option.highlighted {
  border-color: #452775;
}

.details-row {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.btn-main-share {
  display: flex;
  width: 100%;
  height: 60px;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 50px;
  border-radius: 14px;
  background: #452775;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20.633px;
  text-transform: uppercase;
}

/* ==========================
END FORM
=============================*/
/* ======================
START MODALS
=======================*/
.modal-main {
  background: #00000040;
  --bs-modal-width: 465px;
}
.modal-main .modal-content {
  border-radius: 28.73px;
  padding: 15px 15px 10px 15px;
}
.modal-main .modal-header {
  border: none;
}
.modal-main .modal-title-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 700;
  color: #452775;
}
html[dir="rtl"] .modal-main .modal-header .btn-close {
  margin-right: auto;
  margin-left: initial;
}
.modal-main .btn-main-share {
  height: 53px;
  font-size: 14px;
}
.modal-main .wallet-text {
  font-size: 16px;
  font-weight: 700;
  color: rgba(132, 132, 132, 1);
  padding: 18px 0 30px 0;
  text-align: center;
}

.wallet-row input {
  background: rgba(230, 238, 245, 0.3);
  border: 1px solid rgba(209, 209, 209, 1);
  border-radius: 12px;
  width: 100%;
  outline: none;
  height: 60px;
  padding: 15px;
}
html[dir="rtl"] .wallet-row input {
  text-align: right;
}

.wallet-row input::-webkit-outer-spin-button,
.wallet-row input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.wallet-row input[type="number"] {
  -moz-appearance: textfield;
}

.close-button img {
  width: 35px;
  height: 35px;
  cursor: pointer;
}

.modal-main .buttons-modal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 35px;
}
.modal-main .buttons-modal .btn-cancel-modal {
  background: transparent;
  color: #452775;
}

.modal-main .dates-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-main .dates-row input {
  height: 55px;
  text-align: center !important;
}
/* ======================
END MODALS
=======================*/

@media screen and (max-width: 520px) {
  .transfer-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .transfer-options .transfer-option {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    gap: 10px;
  }
  .money-option {
    font-size: 14px;
  }
  .header-top-money {
    font-size: 15px;
  }
  .money-form .btn-form-submit {
    height: 55px;
  }
  .modal-main .wallet-text {
    font-size: 14px;
    padding: 20px 0;
  }
  .modal-main .modal-content {
    padding: 10px;
  }
  .wallet-threshold-form,
  .date-threshold-form {
    padding-bottom: 22px;
  }
  .modal-main .dates-row input,
  .wallet-row input {
    height: 70px;
  }
  .modal-main .btn-main-share {
    font-size: 17px;
    height: 60px;
  }
  .modal-main .modal-content {
    border-radius: 15px;
  }
}
.form-heading
{
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    color: var(--text-color);
    margin-bottom: 20px;
}
