.vidcontainer {
    width: 80%;
    margin: 0 auto;
    text-align: left;
}

@media screen and (max-width: 800px) {
    .vidcontainer {
        width: 100%;
    }
}

.vidcontainer img {
    max-width: 100%;
    height :auto
}

.vidcontainer h2 {
    margin: 0 0 5px 0;
    font-size: 1em;
    letter-spacing: 0;
    text-transform: capitalize;
}

@media screen and (max-width: 575px) {
    .vidcontainer h2 {
        font-size: 1.2em;
    }
}

.vidcontainer p {
    margin: 0;
    font-size: 0.75em;
    line-height: 1em;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#caption_holder {
   margin: 0 0 20px 0;
}

.video-player__playing {
    margin-bottom: 1em;
}

.video-player__thumbs {
    width: 100%;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media screen and (max-width: 475px) {
    .video-player__thumbs {
        padding: 0!important;
    }
}

.video-thumb {
    float: left;
    width: 23.5%;
    position: relative;
    padding: 0 0 13% 0;
    margin: 0 0 4em 0;
    cursor: pointer;
}

@media screen and (max-width: 575px) {
    .video-thumb {
        width: 48%;
        margin: 0 0 20% 0;
        padding: 0 0 26.5% 0;
    }
}

.video-thumb .img_holder {
    overflow: hidden;
    position: absolute;
    padding-top: 55%;
    width: 100%;
    top: 0;
    overflow: hidden;
    background: #CE171F;
}

.video-thumb .caption {
   position: absolute;
   padding: 55% 0 0 0;
}

.video-thumb .caption h2 {
   line-height: 1em;
}

@media screen and (max-width: 575px) {
    .video-thumb .caption h2 {
       font-size: 0.85em;
    }
}

.video-thumb .caption p {
   line-height: 1.2em;
   font-size: 0.65em;
}

.video-thumb.active {
    cursor: default;
}

.video-thumb:before,
.video-thumb:after {
    display: block;
    position: absolute;
    transition: all 250ms ease-out;
    z-index: 1;
}

.video-thumb:before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(206, 23, 31, 0);
}

.video-thumb.active,
.video-thumb:hover {
    -webkit-filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);
    -ms-filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);
    filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);
    transition: all 250ms ease-out;
}

.video-thumb img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .video-thumb:hover > .video-thumb img {
        opacity: 0.8;
        -webkit-transition: 500ms;
        -ms-transition: 500ms;
        transition: 500ms;
    }
}

.video-thumb {
	cursor: pointer;
}

#player iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.video-thumb__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: #222;
	color: #fff;
}