.wpe-video-slider {
	margin: auto;
}
.wpe-video-main{
	position: relative;
	height: 0;
	overflow: hidden;
	max-width: 100%;
}
.wpe-video-main:hover {
	opacity: 1;
}
.wpe-video-main.wp-embed-aspect-16-9{
	padding-bottom: 56.25%;
}
.wpe-video-main.wp-embed-aspect-9-16 {
	padding-bottom: 177.77%;
}
.wpe-video-main.wp-embed-aspect-1-1 {
	padding-bottom: 100%;
}
.wpe-video-main iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.wpe-video-thumbs {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 10px;
	overflow-x: auto;
}
.wpe-thumb {
	cursor: pointer;
	width: 25%;
}
.wpe-thumb.active {
	outline: 2px solid #000;
}
.wpe-thumb img {
	display: block;
	width: 100%;
	height: 100%;
    object-fit: cover;
}
.wpe-video-main button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	background: transparent;
	color: #fff;
	border: none;
	font-size: 32px;
	width: 44px;
	height: 44px;
	border-radius: 2px;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s ease;
}
.wpe-video-main button:hover{
	background-color: #fff;
	color: #000;
	box-shadow: 0 0 5px 5px rgba(0,0,0,.1);
}
.wpe-video-main button .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}
.wpe-video-main button.wpe-prev {
	left: 10px;
}
.wpe-video-main button.wpe-next {
	right: 10px;
}