.quick-deposit-form {
    position: relative;
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    /* border-radius: 12px; */
    /* background: #f9f9f9; */
}
.quick-deposit-form h3 {
    text-align: center;
    margin-bottom: 20px;
}
.deposit-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
#deposit-amount{
    font-size: 14px;
    font-weight: 600;
}
#deposit-btn {
    background-color: #A520E4;
    font-family: "Roboto", Sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2em;
    border-radius: 5px 5px 5px 5px;
    padding: 17px 44px 17px 44px;
    color:#fff;
}
#deposit-btn:hover,
#deposit-btn.active {
    background-color: #F9F9F9;
    color: #000000;
}
.cutom-label{
    text-align: left;
    display: block;
}
.label-required{
    color: #E04562;
}
.deposit-row{
    margin-bottom: 20px;
}
.custom-amount {
    margin-top: 15px;
    text-align: center;
}
.custom-amount input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 5px;
    border: 1px solid #bbb;
    border-radius: 6px;
    font-size: 16px;
    font-family: Roboto;
    font-weight: normal;
    background-color: #f9f9f9;
    color: #000000;
}
.qd-loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 8px;
}
.warning{
    display: none;
    background-color: #F9E4E8;
    color: #E04562;
    text-align: left;
    padding: 5px 8px;
}
.qd-loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0073aa;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
}
#qd-loader{
    display: none;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}