<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 999; 
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius:5px;
}

@media (max-width: 768px) {

    .popup {
        top: 40%;
        width: 350px;
    }
}
.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-weight:bold;
    font-size:20px;
}

    .close-popup:hover {
        color: red;
    }

.h2otp {
    margin: 0;
    font-size: 18px;
    margin-bottom: 10px;
}

.inputotp {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.buttonotp {
    /*display: block;*/
/*    width: 100%;
*/    /*padding: 10px;*/
    background-color: #2C4FA3;
    /*color: white;
    border: none;
    border-radius: 4px;*/
    cursor: pointer;
}

    button:hover {
        background-color: #0056b3;
    }

.button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 0px;
   
}

    .button-container button {
        width: calc(50% - 5px);
    }

.swal2-confirm {
    width: 80px !important;
    background-color: #FFDE00 !important;
    font-size: 12px;
    padding-top: 5px !important;
    /*text-align: center !important;*/
}

.swal2-image {
    padding-top: 0px !important;
    margin-top: 0px !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
}

.swal2-popup {
    width: 500px !important;
    height: auto !important;
    padding-top: 1px !important;
    padding-bottom: 5px !important;
    background-color: #FCFCF9 !important;
}

/*html {
    line-height: 1.4 !important;
    font-size: 12px !important;
    margin-top: 2px !important;
    padding-top: 0px !important;
}*/

.swal2-title {
    font-size: 16px;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    font-weight: bold;
    color: black;
}

.swal2-html-container {
    padding-top: 0px !important;
    font-size: 11px !important;
    margin-top: 0px !important; /* Adjust the margin as needed */
    padding-bottom: 2px !important;
    background-color: #FCFCF9 !important;
}

.swal2-actions {
    margin-top: 0px !important;
    display: flex !important;
    justify-content: center !important;
}
/* Styles for screens up to 768px width */
@media screen and (max-width: 768px) {
    .custom-alert-container {
        width: 90% !important;
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%);
        height: 100% !important;
        max-height: 90vh;
        overflow-y: auto;
        padding-bottom: 3px !important;
    }


    .custom-alert-icon {
        font-size: 10px !important;
    }

        .custom-alert-icon svg {
            width: 30px !important; /* Set the desired icon width */
            height: 30px !important; /* Set the desired icon height */
        }

    .custom-alert-title {
        font-size: 16px !important;
        margin-bottom: 5px !important;
        padding-bottom: 0px !important;
        font-weight: bold;
    }

    .custom-alert-content {
        font-size: 12px !important;
        margin-top: 0px !important; /* Adjust the margin as needed */
    }

    .custom-alert-confirm-button {
        background-color: #FFDE00 !important;
        color: black !important;
        font-size: 12px !important;
        width: 80px !important;
        height: 30px !important;
        padding-top: 0px !important;
        text-align: center !important;
    }

    .custom-alert-backdrop {
        display: none !important;
    }
}

/* Styles for screens between 769px and 1200px width */
@media screen and (min-width: 769px) and (max-width: 1200px) {
    .custom-alert-container {
        width: 50% !important;
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    .custom-alert-icon {
        font-size: 10px !important;
    }

        .custom-alert-icon svg {
            width: 30px !important; /* Set the desired icon width */
            height: 30px !important; /* Set the desired icon height */
        }

    .custom-alert-title {
        font-size: 16px !important;
        margin-bottom: 5px !important;
        padding-bottom: 0px !important;
    }

    .custom-alert-content {
        font-size: 12px !important;
        margin-top: 5px !important; /* Adjust the margin as needed */
    }

    .custom-alert-confirm-button {
        background-color: orange !important;
        color: black !important;
        font-size: 16px !important;
    }

    .custom-alert-backdrop {
        display: none !important;
    }

    .custom-confirm-button-class {
        background-color: orange !important;
        color: black !important;
        font-size: 16px !important;
        border: none !important;
        box-shadow: none !important;
    }



}




</pre></body></html>