/* Minification failed. Returning unminified contents.
(39,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '@media'
(85,17): run-time error CSS1035: Expected colon, found 'positioning'
 */
@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;
    display:none;

    @media print {
        display:none !important;
    }
}

    #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;
    }
    #headerFaciltiLogo {
        margin-top: 13px
    }

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

        #faciliti-cta:hover {
            right: -155px;
            // left: -155px;
            for positioning of the button on the left
        }

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

        #headerFaciltiLogo {
            margin-top: 0px;
        }
    }
