.itr-withdrawal-button {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .itr-withdrawal-button {
        display:block;
        margin: auto;
        margin-bottom: 35px;
    }
}

#itrWithdrawalForm .modal-content {
    position: relative;
}

#itrWithdrawalForm .modal-dialog {
    width: 330px;
}

#itrWithdrawalForm .modal-header {
    border: none;
}

#itrWithdrawalForm .modal-body {
    padding-left: 30px;
    padding-right: 30px;
}

#itrWithdrawalForm .itr-submit-success {
    display: none;
    padding: 10px;
    border: 1px solid darkgreen;
    color: darkgreen;
    margin-bottom: 10px;
    font-size: 13px;
}

#itrWithdrawalForm .itr-submit-error {
    display: none;
    padding: 10px;
    border: 1px solid darkred;
    color: darkred;
    margin-bottom: 10px;
    font-size: 13px;
}

#itrWithdrawalForm .itr-form-title {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

#itrWithdrawalForm #itr-withdrawal-submit {
    text-transform: none;
}

#itrWithdrawalForm .itr-submit-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#itrWithdrawalForm .form-group label {
    text-align: left
}

#itrWithdrawalForm .form-group .controls {
    float: none;
}

#itrWithdrawalForm .form-group input,
#itrWithdrawalForm .form-group textarea {
    font-size: 13px;
}

#itrWithdrawalForm .itr-data-protection-title {
    margin-bottom: 10px
}

#itrWithdrawalForm .itr-data-protection-text {
    color: #7f7f7f;
    font-family: quicksand_regular, Helvetica, Arial, sans-serif;
    font-size: 13px;
    margin-bottom: 20px;
}

#itrWithdrawalForm .itr-required-fields-note {
    color :#7f7f7f;
    font-family: quicksand_regular, Helvetica, Arial, sans-serif;
    font-size: 13px;
    margin-bottom: 20px;
}

.modal-loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: .3rem;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0d6efd; /* Bootstrap blue color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    #itrWithdrawalForm {
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }
    #itrWithdrawalForm .modal-dialog {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 90% !important;
    }
}