/* nav et #btn-commander utilisent maintenant les variables CSS du thème */
html {
    /*disable selection*/
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    /*disable right click*/
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#btn-commander {
    background-color: var(--color-primary) !important;
}

.ligne-article {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.bloc-article-panier,
footer {
    font-family: 'Montserrat';
}

.bloc-article-panier {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    cursor: pointer;
}

@keyframes pulsate {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1.1);
    }

    75% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

.btn-decremente,
.btn-incremente {
    background-color: var(--color-primary) !important;
}

#bloc-logo-retourMenu {
    display: block;
    animation: pulsate 4s infinite;
}

.note-element {
    animation: pulsate 4s infinite;
}

@keyframes shimmer {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
    }

    50% {
        box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
    }
}

.bloc-option {
    width: 90%;
    animation: shimmer 3s infinite;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
}