@media (min-width: 768px) {
	.ytplayer-module.fix-height {
		padding-bottom: 0;
	}
}

@media (max-width: 767.98px) {
	.ytplayer-module.fix-height {
		min-height: initial;
	}
}

.ytplayer-module {
	padding-bottom: 56%;
	overflow: hidden;
}

.ytplayer-module:not(.active) {
	opacity: 0;
	transition: opacity .3s ease-out;
}

.ytplayer-module.active {
	opacity: 1;
	transition: opacity .3s ease-in;
}

.ytplayer-module .arrows {
	width: 100%;
	position: absolute;
	top: 50%;
}

.ytplayer-module .arrows i {
	font-size: 24px;
	font-style: normal;
	line-height: 24px;
	text-align: center;
	color: #fff;
	background-color: rgba(0,0,0,.4);
	margin-top: -24px;
	padding: 12px 5px;
	position: absolute;
	opacity: 0;
	transition: all .3s ease;
	cursor: pointer;
}

.ytplayer-module .arrows .prev {
	left: -50px;
}

.ytplayer-module .arrows .next {
	right: -50px;
}

.ytplayer-module:hover .arrows i {
	opacity: 1;
}

.ytplayer-module:hover .arrows .prev {
	left: 50px;
}

.ytplayer-module:hover .arrows .next {
	right: 50px;
}

.ytplayer-module .arrows i:hover {
	background-color: rgba(0,0,0,1);
}

.ytplayer-module .pages {
	display: inline-block;
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 20px;
}

.ytplayer-module .pages i {
	display: inline-block;
	margin: 0 5px;
	cursor: pointer;
}

.ytplayer-module .pages img {
	max-width: 100px;
	border: 1px solid transparent;
	border-radius: 4px;
	opacity: .7;
	transition:all .3s ease;
}

.ytplayer-module .pages i.active img {
	border-color: #fff;
	box-shadow:inset 0 1px 1px rgba(0,0,0,.7),0 0 8px rgba(255,255,255,1);
	opacity: 1;
}

.ytplayer-module .pages img ~ span {
	display: none !important;
}

.ytplayer-module .pages i span {
	display: inline-block;
	width: 11px;
	height: 11px;
	background: rgba(255,255,255,.4);
	border-radius: 20px;
}

.ytplayer-module .pages i.active span {
	background: rgba(255,255,255,1);
}