.custom-control.custom-radio {
    display: inline-block;
    border: 1px solid var(--border-color);
    width: 200px !important;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 15px;
    padding: 9px 23px;
    padding-right: 23px;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
}

label.custom-control.custom-radio:has(input[type="radio"]:checked) {
    background: var(--primary-color);
    color: #fff;
}

label.custom-control.custom-radio:first-child {
    margin-right: 15px;
}

.search-icon button{
    text-decoration: none;
    background: none;
    border: none;
    height: 100%;
    width: 100%;
}

.search-icon{
    cursor: pointer;
}

.modal-header {
    background: #1C6FA6;
    color: #fff;
}

.modal-header .modal-title {
    color: #fff;
}

.modal-header .close {
    color: #fff;
}


.spinner {
    width: 3rem;
    height: 3rem;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top-color: #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#loader {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 9999;
}

.anchor-style{
    cursor: text;
}