h2.modal_head {
    font-size: 20px;
    border-left: solid 4px #185B63;
    padding-left: 10px;
}

/* Container for radio option */
.select_option {
    display: flex;
    flex-direction: column;
}

.radio-card {
    display: flex;
    flex-direction: row;
    border: 2px solid #1A5D5D;
    border-radius: 10px;
    padding: 0px 10px;
    margin: 5px 0;
    cursor: pointer;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    width: 100%;
    position: relative;
    margin-right: 8px;
}

/* Selected state */
.radio-card:hover, .radio-card input:checked + .content-option {
    border-color: #185B63;
}


.content-option {
    display: flex;
;
    flex-direction: row;
}
/* Hidden radio input */
.radio-card input {
    display: none;
}

/* Icon */
.icon {
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
}

.text-content {
    display: flex
;
    flex-direction: column;
    margin-top: 25px;
    text-align: left;
}



.text-content .title {
    font-size: 16px;
    font-weight: bold;
    color: #30B876;
    margin: 0;
    text-transform: capitalize;
}

.text-content .description {
    font-size: 14px;
    color: #999;
    margin: 5px 0 0;
}

/* Checkmark */
.checkmark {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #ccc;
    border-radius: 50%;
    background-color: #fff;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: absolute;
    right: 10px;
    top: 27px;
}

.radio-card input:checked + .content-option .checkmark {
    background-color: #30B876;
    border-color: #30B876;
}

.radio-card input:checked + .content-option .checkmark::before {
    content: '✓';
    color: #fff;
    font-size: 14px;
}


.formbold-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 10px;
  }
  
  .formbold-form-wrapper {
    margin: 0 auto;
    width: 100%;
    background: white;
  }
  
  .talent-img{
      width: 100%;
  }
  
  .form_label{
      width: 100%;
      font-size: 14px;
      color: #757575;
      text-align: left;
      font-family: "Outfit", serif;
      font-weight: 400;
      font-style: normal;
      margin:8px 0px;
      
  }

  .formbold-steps {
    padding-bottom: 18px;
    margin-bottom: 0px;
    border-bottom: 1px solid #DDE3EC;
  }
  .formbold-steps ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 40px;
    justify-content: center;
  
  }
  .formbold-steps li {
    display: flex;
    align-items: baseline;
    gap: 14px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #536387;
    flex-direction: column;
  }
  .formbold-steps li span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DDE3EC;
    width: 190px;
    height: 7px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #536387;
    border-radius: 12px;
  
  }
  .formbold-steps li.active {
    color: #07074D;;
  }
  
  .formbold-steps li.active span {
    background: var(--primary);
    color: #FFFFFF;
    border-radius: 12px;
  }
  
  .formbold-input-flex {
    display: flex;
    gap: 20px;
    margin-bottom: 22px;
  }
  .formbold-input-flex > div {
    width: 100%;
  }
  .formbold-form-input {
    width: 100%;
    padding: 13px 22px;
    border-radius: 5px;
    border: 1px solid #DDE3EC;
    background: #FFFFFF;
    font-weight: 500;
    font-size: 16px;
    color: #536387;
    outline: none;
    resize: none;
  }
  .formbold-form-input:focus {
    border-color: #6a64f1;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
  }
  .formbold-form-label {
    color: #07074D;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    display: block;
    margin-bottom: 10px;
  }
  
  .formbold-form-confirm {
    border-bottom: 1px solid #DDE3EC;
    padding-bottom: 35px;
  }
  .formbold-form-confirm p {
    font-size: 16px;
    line-height: 24px;
    color: #536387;
    margin-bottom: 22px;
    width: 75%;
  }
  .formbold-form-confirm > div {
    display: flex;
    gap: 15px;
  }
  
  .formbold-confirm-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    border: 0.5px solid #DDE3EC;
    border-radius: 5px;
    font-size: 16px;
    line-height: 24px;
    color: #536387;
    cursor: pointer;
    padding: 10px 20px;
    transition: all .3s ease-in-out;
  }
  .formbold-confirm-btn {
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12);
  }
  .formbold-confirm-btn.active {
    background: #6A64F1;
    color: #FFFFFF;
  }
  
  .formbold-form-step-1,
  .formbold-form-step-2,
  .formbold-form-step-3 {
    display: none;
  }
  .formbold-form-step-1.active,
  .formbold-form-step-2.active,
  .formbold-form-step-3.active {
    display: block;
  }
  
  .formbold-form-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    margin-top: 25px;
  }
  
  .formbold-back-btn {
    cursor: pointer;
    background: #FFFFFF;
    border: none;
    color: #07074D;
    font-weight: 500;
    font-size: 16px;
    display: none;
  }
  .formbold-back-btn.active {
    display: block;
    border: solid 1px #000000 !important;
    font-size: 16px;
    border-radius: 5px;
    padding: 10px 25px;
    font-weight: 500;
    color: #000000;
    cursor: pointer;
    width: 20%;
    text-align: center !important;
  }
  
  button#send_email {
    width: 100% !important;
  }
  
  .formbold-btn {
  
      font-size: 16px;
      border-radius: 5px;
      padding: 10px 25px;
      border: solid 1px var(--primary);
      font-weight: 500;
      background-color: var(--primary);
      color: white;
      cursor: pointer;
      width: 25%;
      text-align: center !important;
  }
  
  
  .formbold-btn:hover {
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
  }
  
  
  
  .disabled{
    display: none;
  }


  .current_balance {
    box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.0337);
    border: 1px solid rgba(226, 224, 224, 0.5705);
    background: rgba(255, 255, 255, 1);
    padding: 20px;
    display: flex;
    border-radius: 15px;

}

.image {
    display: inline-block !important;
}

.content {
    display: inline-block !important;
}


span.title {
    font-size: 30px;
    font-family: 'Outfit';
    display: block;
    margin-left: -50px;
}


span.amount-modal {
    font-size: 42px;
    font-weight: bolder;
    font-family: outfit;
}

.content {
    position: absolute;
    left: 200px;
}


input#withdraw_amount {
    width: 100%;
    margin-top: 20px;
    padding: 10px;
    font-size: 30px;
    font-family: 'Outfit';
    color: black !important;
    text-align: center;
}

#quote_details{
    display: none;
}


div#quote_details {
    width: 100%;
    margin-top: 10px;
    background: white;
    border: solid 1px #d9d9d9;
    text-align: left;
}

p.data_quote .label {
    display: inline-block;
    background: #e8e8e8 !important;
    width: 100%;
    padding: 5px;
    position: relative;
}

p.data_quote {
    position: relative;
}

div#quote_details .val {
    position: absolute;
    right: 9px;
    top: 5px;
}

label.radio-card a {
  z-index: 99999;
  width: 100%;
  display: block;
}