.video_container{
    width:100%;
    height:100%;
    position: relative;
    margin:auto;
}
.player_logo img{
    width:100px;
    position:absolute;
    top:50%;
    transform: translateY(-40%);
}
.player_logo{
display: flex;
width: 100px;
}
.menu_icons_video_svg{
    position: relative;
    top: 0px;
    left: 0px;
    display: block;
    width: auto;
    width: 150px;
    height: 150px;
}
.playButton{
    position:absolute;
    z-index: 999;
    width:150px;
    height:150px;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    -webkit-filter: drop-shadow(12px 12px 25px rgba(0,0,0,1));
    cursor:pointer;
    display:block;
}

/* Main waveform */
.waveform {
    width: 100%;
    /* min-height: 8rem; */
    padding: 0.5rem 0;
    position: absolute;
    bottom: 0px;

}
.video_background{
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0,0,0,0.2);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}
.video_screen{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.hidden{
    display:none;
}

.timeline{
    background:rgba(255,255,255,0.5);
    height:10px;
    width:96%;
    position:absolute;
    bottom:60px;
    left:2%;
    border-radius:0px;
    overflow: hidden;
    cursor: pointer;;
}
.video_progress{
    background:#865aff;
    height:10px;
    left:0px;
}
.btn_video{
    background:transparent;
    width:40px;
    height:40px;
    border:0px;
    padding:0px;
    margin: 0px 5px;
}
.btn_video svg{
    width:40px;
    height:40px;
    cursor:pointer;
}
.control_zone{
    position: absolute;
    bottom: 12px;
    left:10px;
    right:10px;
    display: block;

    height: 40px;
    padding:5px;

}
.control_zone_right{
    position: absolute;
    right:5px;
    top:0px;
    display:flex;
}


.control_zone_left{
    position: absolute;
    left:5px; 
    top:0px;
    display:flex;
}
.control_zone_left .btn_video{
    flex-grow: 1; /* default 0 */
}
.info_player_time{
    position: relative;

}
.info_player_time span{
    top:50%;
    position: absolute;
    color:white;
    font-family: 'Open Sans', sans-serif;
    font-weight:100;
    transform: translateY(-50%);

    margin:0px 10px;
    text-align:center;
    white-space: nowrap;
}

@media only screen and (max-width: 600px) {
    .menu_icons_video_svg{
        width:75px;
        height:75px;
    }
    .playButton{
        width:75px;
        height:75px;
    }
    .info_player_time span{
        font-size:12px;
    }
    .btn_video{

        width:32px;
        height:32px;

    }
    .btn_video svg{
        width:32px;
        height:32px;

    }
    .timeline{
        bottom:45px;
    }
    .control_zone{
        bottom: 0px;
        left: 5px;
    right: 5px;
    }
    .player_logo img{
        width:75px;
        position:absolute;
        top:50%;
        transform: translateY(-50%);
    }
    .player_logo{
    display: flex;
    width: 75px;
    }
}