#preloader.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 2px);
    height: calc(100% - 3px);
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
    z-index:999999;
}

.hide {
    max-height: 0;
    height: 0;
    transition: all 0.4s ease-in-out;
    display: none;
  }

#preloader .preloader-container {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: calc(100% - 0px);
    height: calc(101% - 0px);
    background: black;
}
#preloader video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*
    max-width:100%;
    max-height:100%; */
}

#preloader .preloader-skip {
    position: absolute;
    bottom: 5%;
    left: 50%;
    height: auto;
    transform: translate(-50%, -50%);
    cursor: pointer;
    border: 0px;
    font-family: "EDF 2020";
    color: #fff;
    background-color: #005BFF;
    padding: 10px 12px;

    font-size: 14px;
    width: 120px;
    display: none;
}

@media screen and (min-width:768px) {
    #preloader .preloader-skip {
    font-size: 18px;
    width: 160px;
    }
}

@media screen and (max-width:768px) {
    .preloader-skip-span{
        display: none;
        position: absolute;
        /* bottom: 5%; */
        left: 50%;
        transform: translate(-50%, -50%);
        cursor: pointer;
        border: 0px;
        text-align: center;
    
        font-family: Frutiger LT;
        color: #fff;
        font-weight: 700;
        background-color: #005BFF;
        padding: 2px 4px;
        font-size: 10px;
        width: 80px;
    }
}


.click_sound_on::after{
    content: '🔊';
    position: absolute;
    right: 5px;
    bottom: 5px;
    z-index: 102;
    /* -webkit-animation: fadeInOut 3s;
    animation: fadeInOut 3s;
    opacity: 0; */
    font-family: "FrutigerLT-55Rm";
    font-size: 40px;
    font-weight: 700;
    color:#fff;

    @media screen and (max-width: 768px) {
            font-size: 30px;
    }
}
.click_sound_off::after{
    content: '🔇';
    position: absolute;
    right: 5px;
    bottom: 5px;
    z-index: 102;
    font-family: "FrutigerLT-55Rm";
    font-size: 40px;
    font-weight: 700;
    color:#fff;

    @media screen and (max-width: 768px) {
        font-size: 30px;
    }
}

/* @media screen and (max-width: 1024px) {
    .click_sound::after{
        content: '🔊 Taper pour le son';
        font-size: 20px;
    }
} */

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    16% {
       opacity: 1;
    }
    84% {
       opacity: 1;
    }
    100% {
       opacity: 0;
    }
}




.block{
    display:block;
}