html {
    scroll-behavior: smooth;
}

/* Animation du message d'erreur */
.alert-pulse {
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 177, 66, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 177, 66, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgbargba(255, 177, 66, 0);
    }
}

#loadApple {
    position: fixed;
    top: 50%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
    background: white;
}

/* Empêche la sélection d'un texte sur la page */
.unselectable {
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

#upBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #dc3545;
    color: white;
    cursor: pointer;
    width:45px;
    height:45px;
    border-radius:250px;
    text-align:center;
    animation: fade 0.3s linear;
}

@keyframes fade {
    0% { opacity: 0 }
    100% { opacity: 1 }
}

#upBtn:hover {
    background-color: #9a2631;
}