@charset "UTF-8";

.wpvideofc[data-mode=floating] {
	width: var(--wpvideofc-floating-width);
	height: var(--wpvideofc-floating-height);
	transition: all linear .15s;
}
.wpvideofc[data-mode=floating][data-position=top-left] {top:var(--wpvideofc-floating-pad);left:var(--wpvideofc-floating-pad);}
.wpvideofc[data-mode=floating][data-position=top-center] {top:var(--wpvideofc-floating-pad);left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);}
.wpvideofc[data-mode=floating][data-position=top-right] {top:var(--wpvideofc-floating-pad);right:var(--wpvideofc-floating-pad);}
.wpvideofc[data-mode=floating][data-position=bottom-left] {bottom:var(--wpvideofc-floating-pad);left:var(--wpvideofc-floating-pad);}
.wpvideofc[data-mode=floating][data-position=bottom-center] {bottom:var(--wpvideofc-floating-pad);left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);}
.wpvideofc[data-mode=floating][data-position=bottom-right] {bottom:var(--wpvideofc-floating-pad);right:var(--wpvideofc-floating-pad);}
.wpvideofc[data-mode=floating][data-position=middle-left] {top:50%;left:var(--wpvideofc-floating-pad);-webkit-transform:translateY(-50%);transform:translateY(-50%);}
.wpvideofc[data-mode=floating][data-position=middle-center] {top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);}
.wpvideofc[data-mode=floating][data-position=middle-right] {top:50%;right:var(--wpvideofc-floating-pad);-webkit-transform:translateY(-50%);transform:translateY(-50%);}

.wpvideofc[data-mode=floating] .wpvideofc-btn-close {
	width: 20px;
	height: 20px;
	font-size: 17px;
}
.wpvideofc[data-mode=floating][data-position=top-left] .wpvideofc-btn-close {bottom:-25px;left:0px;}
.wpvideofc[data-mode=floating][data-position=top-center] .wpvideofc-btn-close {bottom:-25px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);}
.wpvideofc[data-mode=floating][data-position=top-right] .wpvideofc-btn-close {bottom:-25px;right:0px;}
.wpvideofc[data-mode=floating][data-position=bottom-left] .wpvideofc-btn-close {top:-25px;left:0px;}
.wpvideofc[data-mode=floating][data-position=bottom-center] .wpvideofc-btn-close {top:-25px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);}
.wpvideofc[data-mode=floating][data-position=bottom-right] .wpvideofc-btn-close {top:-25px;right:0px;}
.wpvideofc[data-mode=floating][data-position=middle-left] .wpvideofc-btn-close {top:-25px;left:0px;}
.wpvideofc[data-mode=floating][data-position=middle-center] .wpvideofc-btn-close {top:-25px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);}
.wpvideofc[data-mode=floating][data-position=middle-right] .wpvideofc-btn-close {top:-25px;right:0px;}

.wpvideofc[data-mode=floating] .wpvideofc-overlay {
	display: none;
}

.wpvideofc[data-mode=floating] .wpvideofc-container,
.wpvideofc[data-mode=floating] .wpvideofc-content {
	width: 100%;
	height: 100%;
}

.wpvideofc[data-mode=floating] .wpvideofc-video {
	border: var(--wpvideofc-floating-border-size) var(--wpvideofc-floating-border-style) var(--wpvideofc-floating-border-color);
	border-radius: 0;
	z-index: 1;
	transition: all linear .15s;
}
.wpvideofc[data-mode=floating][data-scroll=yes] .wpvideofc-video {
	border-radius: 50%;
}

.wpvideofc[data-mode=floating] .wpvideofc-video video {
	object-fit: cover;
	height: 100%;
}

.wpvideofc[data-mode=floating] .wpvideofc-text {
	position: absolute;
	top: 50%;
	margin: 0px;
	padding: 10px 20px 10px 20px;
	opacity: 0;
	overflow: hidden;
	background: var(--wpvideofc-floating-back-color);
	color: var(--wpvideofc-floating-text-color);
	white-space: nowrap;
	z-index: 0;
	transition: all linear .15s;
	pointer-events: none;
}
.wpvideofc[data-mode=floating][data-position=top-left] .wpvideofc-text,
.wpvideofc[data-mode=floating][data-position=bottom-left] .wpvideofc-text,
.wpvideofc[data-mode=floating][data-position=middle-left] .wpvideofc-text,
.wpvideofc[data-mode=floating][data-position=top-center] .wpvideofc-text,
.wpvideofc[data-mode=floating][data-position=bottom-center] .wpvideofc-text,
.wpvideofc[data-mode=floating][data-position=middle-center] .wpvideofc-text {left: 100%;-webkit-transform: translate(calc(var(--wpvideofc-floating-width) / 2 * -1), -50%);transform: translate(calc(var(--wpvideofc-floating-width) / 2 * -1), -50%);border-radius: 0 20px 20px 0;}
.wpvideofc[data-mode=floating][data-position=top-right] .wpvideofc-text,
.wpvideofc[data-mode=floating][data-position=bottom-right] .wpvideofc-text,
.wpvideofc[data-mode=floating][data-position=middle-right] .wpvideofc-text {right: 100%;-webkit-transform: translate(calc(var(--wpvideofc-floating-width) / 2), -50%);transform: translate(calc(var(--wpvideofc-floating-width) / 2), -50%);border-radius: 20px 0 0 20px;}

.wpvideofc[data-mode=floating]:hover .wpvideofc-text {
	opacity: 1;
	pointer-events: all;
}
.wpvideofc[data-mode=floating][data-position=top-left]:hover .wpvideofc-text,
.wpvideofc[data-mode=floating][data-position=bottom-left]:hover .wpvideofc-text,
.wpvideofc[data-mode=floating][data-position=middle-left]:hover .wpvideofc-text,
.wpvideofc[data-mode=floating][data-position=top-center]:hover .wpvideofc-text,
.wpvideofc[data-mode=floating][data-position=bottom-center]:hover .wpvideofc-text,
.wpvideofc[data-mode=floating][data-position=middle-center]:hover .wpvideofc-text {-webkit-transform: translate(-10px, -50%);transform: translate(-10px, -50%);}
.wpvideofc[data-mode=floating][data-position=top-right]:hover .wpvideofc-text,
.wpvideofc[data-mode=floating][data-position=bottom-right]:hover .wpvideofc-text,
.wpvideofc[data-mode=floating][data-position=middle-right]:hover .wpvideofc-text {-webkit-transform: translate(10px, -50%);transform: translate(10px, -50%);}

.wpvideofc[data-mode=floating] .wpvideofc-products,
.wpvideofc[data-mode=floating] .wpvideofc-product_text {
	display: none;
}
