﻿.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.m-auto {
    margin: auto;
}


.mt-5p {
    margin-top: 5px;
}

.mt-10p {
    margin-top: 10px;
}


.mt-15p {
    margin-top: 15px;
}


.mb-15p {
    margin-bottom: 15px;
}

.mt-20p {
    margin-top: 20px;
}

.mb-20p {
    margin-bottom: 20px;
}

.mt-25p {
    margin-top: 25px;
}


.mb-25p {
    margin-bottom: 25px;
}


.mt-30p {
    margin-top: 30px;
}

.mt-35p {
    margin-top: 35px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-50p {
    margin-top: 50px;
}


.mt-75p {
    margin-top: 75px;
}


.px-50 {
    padding-left: 7% !important;
    padding-right: 7% !important;
    direction: ltr;
}

.btn-primary {
    font-weight: 600;
    color: #0947d8
}

    .btn-primary:hover {
        color: white !important;
        background-color: #0d51ef !important;
    }

.question-text {
    font-size: 20px !important;
    font-weight: 500 !important;
    font-family: arabiya;
    line-height: 1.3;
    margin-bottom: 0px;
}

    .question-text h3 {
        font-size: 20px !important;
        font-weight: 600 !important;
        font-family: arabiya !important;
    }

.radiobuttonList label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding-right: 25px;
    margin-left: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #111111
}

.inner-row {
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 1.6rem;
    width: 100%;
}

/* Styles for the popup */
.popup {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -5%);
    background-color: white;
    width: 75vw;
    z-index: 1000;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    /*overflow-y: scroll;*/
}





/* Styles for the blurred background */
.blur-background {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.exit-btn {
    background-color: #FF4A55;
    color: #FFFFFF;
    border: none;
    padding: 8px 16px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}

    .exit-btn:hover {
        background-color: #FF3333;
    }


.block {
    text-align: justify;
    direction: ltr;
    padding: 10px;
    margin: 5px;
}



.toast {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: red;
    color: #fff;
    font-size: 2rem;
    padding: 15px 30px 15px 30px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

    .toast.show {
        opacity: 0.66;
        visibility: visible;
    }


.toast_error {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: red;
    color: #fff;
    font-size: 2rem;
    padding: 15px 30px 15px 30px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

    .toast_error.show {
        opacity: 0.75;
        visibility: visible;
    }

.toast_Success {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: green;
    color: #fff;
    font-size: 2rem;
    padding: 15px 30px 15px 30px;
    border-radius: 7px;
    opacity: 0;
    visibility: hidden;
    margin: -8px;
    transition: opacity 0.3s, visibility 0.3s;
}

    .toast_Success.show {
        opacity: 0.66;
        visibility: visible;
    }
