#mini-nav-video {
    display: flex;
    padding: 1em 0;
}
.vignette_video {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 80px;
    height: 80px;
    margin-right: 1em;
    color: #363636;
    background-color: #f0eeee;
    border: 2px solid #fff;
    outline: 3px solid #ff6255;
    border-radius: 999px;
    cursor: pointer;
}
.vignette_video .icon-play {
    position: absolute;
    color: #ffffff;
    font-size: 1.5em;
}
.vignette_video > * { pointer-events: none; }
/**
*
*
*/
#main_video {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 500;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
}
#temoins {
    display: flex;
    align-self: center;
    justify-content: center;
    position: absolute;
    top: 2em;
    z-index: 1;
    width: 500px;
    pointer-events: none;
}
#temoins .rond {
    display: block;
    width: 6px;
    height: 6px;
    margin: 0 0.5rem;
    border-radius: 50%;
    background-color: #fff;
    transition: all 0.3s linear;
}
#temoins .rond-gros {
    outline: 4px solid #fff;
}
#navig {
    display: flex;
    align-self: center;
    position: absolute;
    z-index: 1;
    justify-content: space-between;
    width: 500px;
    pointer-events: none;
}
.close_videos {
    display: flex;
    align-self: center;
    position: absolute;
    z-index: 2;
    top: 0.5em;
    align-items: center;
    justify-content: space-between;
    width: 90%;
}
.close_videos > div > * { pointer-events: none; }
.close_videos > .auteur {
    font-size: 1.2em;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 0 0 6px #000;
}
.close_videos > .annul {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    flex: 0 0 40px;
    color: #fff;
    font-size: 1.3em;
    border-radius: 999px;
    background-color: #363636;
    cursor: pointer;
}
#navig button { 
    pointer-events: all;
}
#main_video button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    margin: 0;
    border: none;
    border-radius: 50%;
    color: #fff;
    background-color: rgba(0,0,0,0.6);
    cursor: pointer;
    transition: all 0.3s linear;
}
#main_video button:hover {
    background-color: rgba(0,0,0,0.9);
}
#content_videos {
    position: relative;
    display: flex;
    justify-content: center;
    height: 622px;
}
.video {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    /*width: 350px;*/
    background-color: #000;
    border-radius: 0.5rem;
    outline: 10px solid #363636;
    overflow: hidden;
    transition: all 0.3s ease-out;
}
video {
   width: 350px;
   aspect-ratio: auto;
}
#nav-bar-bottom {
    position: absolute;
    z-index: 1;
    align-self: flex-end;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 90%;    
    padding: 0.5rem 1rem;
}
/*
* BOUTONS 
*/
#play-pause-btn, #son-btn, #close-btn {
   display: flex;
   width: 50px !important;
   height: 50px !important;
   flex: 0 0 50px !important;
   justify-content: center;
   align-items: center;
   font-size: 1.2em;
   border: none;
   border-radius: 50%;
   color: #ffffff;   
   background: rgba(0,0,0,0.5);
   cursor: pointer;
}
/*
* PROGRESS BAR
*/
 #time-line {
   display: flex;
   flex-direction: column;
   justify-content: center;
   width: 100%;
   height: 4px;
   border-radius: 2px;
   overflow: hidden;
   margin: 0 1rem;
   background: rgba(0,0,0,0.5);
}
#bar {
   height: 2px;
   width: 0%;
   background-color: #fff;
   transition: all 0.2s linear;
   pointer-events: none;
}
/**
* Déplacement droite ou gauche des vidéos
*/
.go_right {
    transform: scale(0.3) translateX( 450px );
    opacity: 0;
}
.go_left {
    transform: scale(0.3) translateX( -450px );
    opacity: 0;
}

@media screen and (max-width: 768px ) {
    #navig {
        display: none;
    }
    .content-mini-videos {
        width: 100%;
        padding: 0 2em;
        margin: 2em auto;
    }
}