
/* ------------------------------------------
      PLAYER NAVBAR
------------------------------------------ */
.time small {
    font-size: 9pt;
}
.player-navbar {
    position: fixed;
    width: 100%;
    bottom: 0;
    height: 60px;
    overflow: hidden;
    background: rgba(233, 233, 233);
    z-index: 9980;
}
.player-content-left {
    text-align: center;
    padding: 10px 0px;
    width: 100%;
}
.player-content-left a {
    cursor: pointer;
    display: inline-block;
    font-size: 100%;
    width: 44px;
    height: 44px;
    line-height: 44px;
    color: #3b3b3b;
    transition-duration: 0.3s;
}

@media screen and (max-width: 1223px) {
    .player-content-left {
        padding: 0px;
    }
    .player-content-left a {
        width: 24px;
        margin: 0px 10px;
        height: 24px;
        line-height: 24px;
    }
    .player-navbar {
        height: 140px;
        padding-top: 20px;
        z-index: 1;
    }
    .time .row .col-md-9 {
        max-width: 70%;
    }
    .time .row .col-md-3 {
        max-width: 30%;
    }
    .player-content-time .time-rail {
        padding: 5px 0;
    }
}

.player-content-left a:hover {
    color: #919191;
}
.player-content-left a:hover.play-pause {
    border-color: #919191;
}
.player-content-left a.play-pause.active {
    border-color: #919191;
}
.player-content-left a.play-pause.active i::before {
    content: "";
    margin-left: 5px;
}
.player-content-left a.active {
    color: #919191;
}

.player-content-time {
    padding: 10px;
    width: 100%;
}

.player-content-time .time {
    color: #505050;
}
.player-content-time .time-rail {
    height: 1px;
    position: relative;
    padding: 15px 0;
    overflow: hidden;
}
.player-content-time .time-rail .thumb, .player-content-time .time-rail .track {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.player-content-time .time-rail .thumb {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffba49;
    z-index: 1;
    left: 30%;
    transition: 0.3s;
}
.player-content-time .time-rail .thumb:hover {
    transform: translateY(-50%) scale(1.2);
}
.player-content-time .time-rail .thumb::before {
    content: "";
    width: 500px;
    height: 1px;
    background-color: #ffba49;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
.player-content-time .time-rail .track {
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: #c6ad94;
}
.player-content-time .time-rail input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    overflow: hidden;
    background: none;
}
.player-content-time .time-rail input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffba49;
}

.player-content-time .time .title-player {
    float: left;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ------------------------------------------
      PLAYER VIDEO
------------------------------------------ */
/*
#player-container{
    max-width: 100%; 
    overflow: hidden; 

    position: relative;
    height: 300px;

}

#player {
    left: 0; 
    top: 0; 
    height: 100%;
    width: 100%; 
    position: relative;
}
*/

#player-container3{
    float: none;
    clear: both;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

#player3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* ------------------------------------------
     VIDEO PLAYER STICKY
------------------------------------------ */

.player-container__video {
    position: fixed;
    top: 0;
    border: 2px solid;  
}
.player-container_in-content .player-container__video {
    position: relative;
    height: 320px; width: 100%;
    position: relative;
    bottom: auto; right: auto;
    overflow: hidden;
}
.player-container_in-content .player-container__video .player-container__object {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}
