
/* youtube-wrapper.css */

/* ... youtube ...
-----------------------------------------------*/
.video-wrapper {
  background-color: #282828; /* youtube black */
  cursor: pointer;
}
.video-wrapper .image_container {
  overflow: hidden;
}
.ce_youtube figure::before {
  content: "";
  position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: .8;
  transition: all .2s ease 0s;
	width: 46px;
	height: 32px;
	background-image: url(img/YouTube_icon_light.svg);
	background-position: center;
	background-repeat: no-repeat;
  z-index: 1;
}
.youtube-lazyload:hover::before {
	opacity: 1;
}
.poster {
	width: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0;
	right: 0;
}
/* ... youtube ... END
-----------------------------------------------*/
