/* BASED ON : 
 * START Fast & Agile YouTube Embed by Schoberg.net
 */
.youtubeVideoLoader { /* continer (responsive) */
  position: relative;
  cursor: pointer;
  background: #ccc no-repeat center center / cover; 
  padding-bottom: 56.25%; /* 16:9 */
  height: 0px;
  clear:both;
  margin-bottom: 10px;
}

.youtubeVideoLoader::before { /* play bubble */
  content: '';
 background: rgba(255, 255, 255, 0.6) none repeat scroll 0 0;
border-radius: 100px;
box-shadow: 0 0 20px 3px rgba(51, 51, 51, 0.8);
content: "";
display: block;
height: 65px;
left: 50%;
margin: -40px 0 0 -40px;
position: absolute;
top: 50%;
transition: all 0.1s ease 0s;
width: 65px;
z-index: 1;
}

.youtubeVideoLoader:hover::before { /* play bubble hover */
background: rgba(238, 238, 238, 0.8) none repeat scroll 0 0;
box-shadow: 0 0 10px 3px rgba(51, 51, 51, 0.8);
height: 75px;
margin: -45px 0 0 -45px;
width: 75px;
}

.youtubeVideoLoader::after { /* Play Triangle */
  content: '';
border-color: transparent transparent transparent #333;
border-style: solid;
border-width: 15px 0 15px 25px;
content: "";
display: block;
height: 0;
left: 50%;
line-height: 0;
margin: -20px 0 0 -15px;
position: absolute;
top: 50%;
width: 0;
z-index: 2;
} 
/* END Fast & Agile YouTube Embed by Schoberg.net */
/* Modal Styles */
#videoModalContainer{
	  width:100%;
	  padding: 0px;
	  top:0;
	  left:0;
}
.modal-content
{
	background-color: #444;
}
.modal-body
{
	padding: 0px;
}
.modal-footer
{
	padding:1em;
	border-top: none;
	background-color: #444;
}