@keyframes boomcta {
    0% { right: -155px; }
    20% { right: 0px; }
    80% { right: 0px; }
    100% { right: -155px; }
}

#faciliti-cta {
    position: fixed;
    bottom: 38vh;
    min-width: 200px;
    width: 200px;
    min-height: 75px;
    align-items: center;
    padding: 0;
    right: -155px;
    transition: right 0.3s ease;
    background-color: #c40030;
    cursor: pointer;
    display: flex;
    border: none;
    animation-name: boomcta;
    animation-duration: 6s;
    justify-content: space-between;
    z-index: 10000;
}

#faciliti-cta:hover {
    right: 0;
    width: auto;
}

#faciliti-cta .cta-text {
    margin: auto;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1.5;
    text-align:center;
    text-transform: uppercase;
}

#faciliti-cta img {
    height: 75px;
    width: 75px;
    margin-left: -40px;
    background-color: transparent !important;
}

@media mobile, (max-device-width: 768px) {
    #faciliti-cta *:not(img) {
        opacity: 0;
    }

    #faciliti-cta:hover {
        right: -155px; // left: -155px; pour la version à gauche
    }

    #faciliti-cta {
        background-color: transparent;
        bottom: 10px;
        animation: none;
    }
}