#wrapper{
    margin:0;
    padding: 0;
    position: absolute;
    z-index: 100;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    display: flex;
}

#wrapper-video{
    width: 100%;
    height: 100%;
    position: absolute;
}

#videoplayer {
    position: absolute;
    left:0;
    top:0;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    z-index: -1000;
    overflow: hidden;
    margin: 0 auto;
}

#barre {
    display: none;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30px;
    background: #515151;
}

#boutonPlay {
    cursor: pointer;
    margin-left: 2px;
    width: 5%;
    opacity: 0.8;
    outline: none;
    text-decoration: none;
    
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

#boutonPlay:hover {
    opacity: 1;
}

#pleinEcran {
    display: flex;
    cursor: pointer;
    z-index: 1000;
    margin-right: 2px;
    opacity: 0.5;
    
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

#pleinEcran:hover {
    opacity: 1;
}

#progressBarControl{
    width: 85%;
    background: #ddd;
    cursor: pointer;
}

#progressBar {
    width: auto;
    background: #fff;
    text-align: center;
}