/* Styles for the popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup-content {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    width: 50%;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.popup-header {
    margin-bottom: 1rem;
}

.popup-icon {
    font-size: 2rem;
    color: #007BFF; /* Adjust color as needed */
}

.popup-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.popup-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.popup-content .btn-primary {
    background-color: #007BFF;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
}

/* Custom styles for radio buttons */
.custom-radio {
    border: 1px solid #E0E0E0;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    padding-top: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-radio .form-check-input {
    display: none;
}

.custom-radio .form-check-label {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    cursor: pointer;
}

.custom-radio .form-check-label span.radio-number {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: bold;
    color: #555;
}

.custom-radio input[type="radio"]:checked + .form-check-label {
    border: 1px solid #083862;
    background-color: #E0E0E0;
}


.success-checkmark:after {
    content: '✔';
    position: absolute;
    left:0; top: 2px;
    width: 20px; 
    height: 20px;
    text-align: center;
    border: 1px solid #aaa;
    background: #f8f8f8;
    border-radius: 50%;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.3)
  }

  @media (min-width: 991.98px){
    .success-btn{
        width: 25%;
    }

    .success-tick{
        width: 10%;
    }
} 

@media (max-width: 992px){
    .success-btn{
        width: 50%;
    }

    .success-tick{
        width: 30%;
    }
} 