#page-load {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

#page-load .backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-color: rgba(0, 0, 0, 1);
}

#page-load .parent-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    transform: translate(-50%, -50%);
}

#page-load .load-spiner {
    border: 3px solid #007bff;
    border-top: 3px solid transparent;
    border-radius: 50%;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    flex: 0 0 auto;
}
#page-load h6{
    color: #303537!important;
    font-size: 14px;
    margin-bottom: 0;
}
.text-stared {
    display: inline-block;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}
/* .message-flash {
    margin-right: 30px;
    display: none;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    margin-top: 5px;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    opacity: 0;
    width: 30%;
}



.message-flash.show {
    right: 0;
    display: flex !important;
    opacity: 1;
}

.message-flash .icon {
    margin-right: 10px;
}

.message-flash .content-message {
    color: #333;
}

Styles pour les messages de succès
.message-flash.success {
    background-color: #dff0d8;
    border: 1px solid #c3e6cb;
}

.message-flash.success .icon {
    color: #3c763d;
}

Styles pour les messages d'erreur
.message-flash.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

.message-flash.error .icon {
    color: #a94442;
} */



@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
@media(max-width: 576px){
    #page-load .parent-modal{
        padding: 14px;
    }
    #page-load .load-spiner{
        width: 26px;
        height: 26px;
        margin-right: 0;
    }
    #page-load h6{
        display: none;
    }
}
