.shopimg{
    padding: 10px;
}
.card-choice-shop{
    padding-left: 10px;
    padding-top: 10px;

}
.card-choices-shop{
    border: none;
    /* Ajout de la transition */
    transition: box-shadow 0.2s ease-in-out;
}

.card-choice-shop h4{
    text-transform: uppercase;
}

.card-choices-shop:hover{
    -webkit-box-shadow: 0px 10px 13px -7px #000000, 0px 0px 26px 10px rgba(0,0,0,0);
    box-shadow: 0px 10px 13px -7px #000000, 0px 0px 26px 10px rgba(0,0,0,0);
}

.seperateur{
    margin-top: 10px;
    text-align: center;
}

.auth-one-bg {
    background-image:none!important;
    background-position: center;
    background-size: cover;
}

/*loader*/

#loading-screen {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-spinner {
    border: 16px solid #f3f3f3;  /* Light grey */
    border-top: 16px solid #5ea3cb;  /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;  /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.auth-one-bg .bg-overlay {
    background: linear-gradient(to right, #fff, #5ea3cb);
}

