#slider_content .video-container {
    width: 1000px;
    height: 300px;
    margin-left: -20px;
    margin-right: -20px;
}

.video-player,.video-player * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.video-player {
    display: block;
    width: 100%;
    position: relative;
    cursor: pointer;
}

.video-player video {
    display: block;
    width: 100%;
}

.video-player video::-webkit-media-text-track-display {
    font-size: 16px;
}

.video-player .mute-icon {
    display: none;
    position: absolute;
    bottom: 10px;
    right: 10px;
    height: 32px;
    width: 32px;
    background: url(../images/video-mute.png) no-repeat transparent;
    background-size: 100% auto;
    -webkit-transition: all .25s linear;
    -moz-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
}

.video-player.cloaked:hover .mute-icon {
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
    filter: alpha(opacity=75);
    -moz-opacity: .75;
    -khtml-opacity: .75;
    opacity: .75;
}

.video-player .progress-bar {
    position: relative;
    display: block;
    width: 100%;
    height: 5px;
    background: #f0f0f0;
}

.video-player .progress-bar > .progress {
    display: block;
    background: none;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    color: #32a770;
    border: none;
    overflow: hidden;
}

.video-player .progress-bar > .progress > .indicator {
    display: block;
    background: none;
    height: 100%;
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
    background: #32a770;
    -webkit-transition: all 1s linear;
    -moz-transition: all 1s linear;
    -o-transition: all 1s linear;
    transition: all 1s linear;
}

.video-player .poster {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: 100% auto;
    cursor: default;
}

.video-player .poster .play-button {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68px;
    height: 48px;
    background-size: 100%;
    margin-left: -34px;
    margin-top: -24px;
    cursor: pointer;
    background: url(../images/video-button.png) no-repeat transparent;
    outline: 0;
    border: 0 none!important;
    -webkit-appearance: none;
}

.video-player .poster .play-button:hover {
    background-image: url(../images/video-button-red.png);
}

@media only screen and (max-width: 999px) {
    .video-player .poster {
        background-size: cover;
        background-position: center;
    }
}

@media only screen and (max-width: 768px) {
    .video-player video {
        height: 150px;
    }
}
