video {
    width: 100%;
}

.player {
    background: rgba(0,0,0,0.8);
    box-sizing: border-box;
    border-radius: 2px;
    height: 40px;
    -moz-box-sizing: border-box;
    float: left;
    font-family: Arial, sans-serif;
    position: absolute;
    padding: 0;
    bottom: 20px;
    z-index: 2;
    opacity: 1;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    -webkit-transition: opacity 0.3s ease-in;
    transition: opacity 0.3s ease-in;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}


.video {
    position: relative;
    margin: 0px auto;
}

.video:hover .player {
    opacity: 1;
}

.player .progress {
    width: 60%;
    height: 12px;
    border-radius: 5px;
    background: #676767;
    box-shadow: inset 0 -5px 10px rgba(0,0,0,0.1);
    float: left;
    cursor: pointer;
    margin-top: 14px;
    padding: 0;
    position: relative;
    font-variant: normal;
}

.player .progress-bar {
    background: #D8D8D8;
    border-radius: 5px;
    height: 100%;
    position: relative;
    z-index: 999;
    width: 0;
}

.player .button-holder {
    position: relative;
    left: 10px;
}

.player .progress-button {
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    border-radius: 30px;
    width: 12px;
    height: 12px;
    position: absolute;
    left: -20px;
    text-decoration: overline;
}


.player [class^="buffered"] {
    background: rgba(255,255,255,0.1);
    position: absolute;
    top: 0;
    left: 30px;
    height: 100%;
    border-radius: 5px;
    z-index: 1;
}

.player .play-pause {
    display: inline-block;
    font-size: 2.25em;
    float: left;
    text-shadow: 0 0 0 #fff;
    color: rgba(255,255,255,0.8);
    width: 10%;
    padding: 4px 0 0 3%;
    cursor: pointer;
    font-variant: small-caps;
}

.player .play, .player .pause-button {
    -webkit-transition: all 0.2s ease-out;
}

.player .play .pause-button, .player .pause .play-button {
    display: none;
}

.player .pause-button {
    padding: 3px 2px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    height: 22px;
}

.player .pause-button span {
    background: #fff;
    width: 8px;
    height: 24px;
    float: left;
    display: block;
}

.player .pause-button span:first-of-type {
    margin: 0 4px 0 0;
}

.player .time {
    color: #2F3133;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 18px;
    position: absolute;
    left: -54px;
    top: -32px;
    padding: 0 8px;
    background: rgba(0,0,0,.65);
    border-radius: 5px 5px  0 0;
}

.player .stime, .ttime {
    color: #A9A9A9;
}
.player .play:hover {
    text-shadow: 0 0 5px #fff;
}

.player .play:active, .pause-button:active span {
    text-shadow: 0 0 7px #fff;
}


.player .pause-button:hover span {
    box-shadow: 0 0 5px #fff;
} .player .pause-button:active span {
    box-shadow: 0 0 7px #fff;
}


.player .volume {
    position: relative;
    float: left;
    width: 8%;
    margin: 0 0 0 4%;
    height: 100%;
}

.player .volume-icon {
    padding: 1.5%;
    height: 100%;
    cursor: pointer;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-transition: all 0.15s linear;
}

.player .volume-icon-hover {
    background-color: #353535;
}

.player .volume-holder {
    height: 100px;
    width: 100%;
    background: black;
    position: absolute;
    display: none;
    background: rgba(0,0,0,0.5);
    left: 0;
    border-radius: 2px 2px 0 0;
    top: -100px;
}

.player .volume-bar-holder {
    background: #333;
    width: 10px;
    box-shadow: inset 0px 0px 5px rgba(0,0,0,0.3);
    margin: 15px auto;
    height: 80px;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.player .volume-button {
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    border-radius: 30px;
    width: 10px;
    height: 10px;
}

.player .volume-button-holder {
    position: relative;
    top: -10px;
}

.player .volume-bar {
    background: #D8D8D8;
    border-radius: 2px;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
}

.player .fullscreen {
    width: 12%;
    cursor: pointer;
    float: left;
    height: 100%;
}

.player .fullscreen a {
    width: 25px;
    height: 20px;
    border-radius: 2px;
    background: #fff;
    display: block;
    position: relative;
    top: 10px;
    margin: 0px auto;
}

.player .volume-icon span {
    width: 16px;
    height: 18px;
    display: block;
    position: relative;
    z-index: 1;
    font-weight: bold;
    margin-top: 10px;
    color: #2F3133;
    left: 25%;
    background-image: url(volume244.png);
    background-repeat: no-repeat;
    background-position: center;
}

.player .volume-icon span:before,
.player .volume-icon span:after {
    content: '';
    position: absolute;
}
.player .volume-icon span:after {
    width: 2%;
    height: 2%;
    border: 1px solid #fff;
    left: 20px;
    margin-top: 5px;
    border-width: 0px 0px 0 0;
    border-radius: 0 50px 0 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    font-variant: small-caps;
}

.player .v-change-11 span:after { border-width: 10px 10px 0 0; top: 0; }
.player .v-change-10 span:after { border-width: 9px 9px 0 0; top: 1px; }
.player .v-change-9 span:after { border-width: 8px 8px 0 0; top: 1px; }
.player .v-change-8 span:after { border-width: 7px 7px 0 0; top: 2px; }
.player .v-change-7 span:after { border-width: 6px 6px 0 0; top: 2px; }
.player .v-change-6 span:after { border-width: 5px 5px 0 0; top: 3px; }
.player .v-change-5 span:after { border-width: 4px 4px 0 0; top: 3px; }
.player .v-change-4 span:after { border-width: 3px 3px 0 0; top: 4px; }
.player .v-change-3 span:after { border-width: 2px 2px 0 0; top: 4px; }
.player .v-change-2 span:after { border-width: 1px 1px 0 0; top: 5px; }
.player .v-change-1 span:after { border-width: 0px 0px 0 0; top: 5px; }

.player .v-change-1 span:after {
    content: '+';
    -webkit-transform: rotate(45deg);
    font-size: 20px;
    top: -8px;
    left: 25px;
}

/*------------------------------------------------------------------
 [Video Section]
*/

.video-sections {
    padding: 30px 10px;
    color: #334048;
    color: rgba(255,255,255,.76);
    background: #160B13;
    line-height: 32px;
    font-size: 14px; 
    position: relative; 
    margin-top: 2px; 
}
.video-sections .textshow {
    width: 53%;
    float: right;
    margin-right: 2%;
}
.video-sections .video-container {
    font-size: 62.5%;
    padding: 0;
    margin: 0;
    width: 45%;
    float: right;
    padding: 0;
    padding-bottom: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border-radius: 3px;
    overflow: hidden;
}
.video-sections .video-container video{
    margin-bottom: -14px;
    border-radius: 3px;
    overflow: hidden;
    width: 100%;
}
.video-sections li {
    color: #2F3133;
    font-weight: 400;
    font-size: 14px;
    padding: 0 10px;
}
.video-sections li:before {
    font-family: "fontello";
    content: '\e8b9';
    position: relative;
    top: 0;
    left: 0;
    font-weight: 900;
    border-radius: 38px;
    padding: 1px 5px;
    color: #FFFFFF;
    background: rgba(0,0,0,.22);
    margin-right: 10px;
}
.video-sections .button {
    color: #FFFFFF;
    display: inline-block;
    padding: 2px 16px;
    border-radius: 36px;
    background: rgba(0,0,0,.32);
    margin: 0 auto;
    margin-top: 10px;
}
.video-sections h3 {
    color: #2F3133;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 10px;
    margin-right: 10px;
    margin-top: 5px;
    letter-spacing: 1px;
}
.textshow{
    color: #2F3133;
}