.video-widget {
	position: fixed;
	right: 20px;
	bottom: 50px;
	z-index: 11;
}
.video-widget:hover .video-widget__close {
	opacity: 1;
}
.video-widget__container {
	position: relative;
	font-family: Helvetica;
	z-index: 999999;
	overflow: hidden;
	border-style: solid;
	background: #eee;
	-webkit-transition: width 0.3s ease-in-out 0s, height 0.3s ease-in-out 0s,
		bottom 0.3s ease-in-out 0s, border-color 0.2s ease-in-out 0s,
		opacity 1s ease-in-out 0s, -webkit-transform 0.2s ease-in-out 0s;
	transition: width 0.3s ease-in-out 0s, height 0.3s ease-in-out 0s,
		bottom 0.3s ease-in-out 0s, border-color 0.2s ease-in-out 0s,
		opacity 1s ease-in-out 0s, -webkit-transform 0.2s ease-in-out 0s;
	-o-transition: width 0.3s ease-in-out 0s, height 0.3s ease-in-out 0s,
		bottom 0.3s ease-in-out 0s, border-color 0.2s ease-in-out 0s,
		opacity 1s ease-in-out 0s, -o-transform 0.2s ease-in-out 0s;
	-moz-transition: transform 0.2s ease-in-out 0s, width 0.3s ease-in-out 0s,
		height 0.3s ease-in-out 0s, bottom 0.3s ease-in-out 0s,
		border-color 0.2s ease-in-out 0s, opacity 1s ease-in-out 0s,
		-moz-transform 0.2s ease-in-out 0s;
	transition: transform 0.2s ease-in-out 0s, width 0.3s ease-in-out 0s,
		height 0.3s ease-in-out 0s, bottom 0.3s ease-in-out 0s,
		border-color 0.2s ease-in-out 0s, opacity 1s ease-in-out 0s;
	transition: transform 0.2s ease-in-out 0s, width 0.3s ease-in-out 0s,
		height 0.3s ease-in-out 0s, bottom 0.3s ease-in-out 0s,
		border-color 0.2s ease-in-out 0s, opacity 1s ease-in-out 0s,
		-webkit-transform 0.2s ease-in-out 0s, -moz-transform 0.2s ease-in-out 0s,
		-o-transform 0.2s ease-in-out 0s;
	outline: 0;
	cursor: pointer;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-box-shadow: #000000 0 10px 20px;
	box-shadow: #000000 0 10px 20px;
	border-radius: 20px;
	border-width: 5px;
	width: 130px;
	height: 180px;
	border-color: #fff;
}
.video-widget__container.active {
	width: 310px;
	height: 500px;
}
.video-widget__container.noactive:hover {
	transform: scale(1.1);
	border-color: #000;
}
.video-widget__video {
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	z-index: 200;
	-webkit-transition: opacity 0.4s ease-in-out 0s;
	-o-transition: opacity 0.4s ease-in-out 0s;
	-moz-transition: opacity 0.4s ease-in-out 0s;
	transition: opacity 0.4s ease-in-out 0s;
	opacity: 0.9;
}
.video-widget__close {
	position: absolute;
	top: 5px;
	right: 10px;
	width: 20px;
	height: 20px;
	z-index: 222222222222;
	opacity: 0;
	-webkit-transition: opacity 0.2s ease-in-out 0s,
		-webkit-transform 0.3s ease-in-out 0s;
	transition: opacity 0.2s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
	-o-transition: opacity 0.2s ease-in-out 0s, -o-transform 0.3s ease-in-out 0s;
	-moz-transition: transform 0.3s ease-in-out 0s, opacity 0.2s ease-in-out 0s,
		-moz-transform 0.3s ease-in-out 0s;
	transition: transform 0.3s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
	transition: transform 0.3s ease-in-out 0s, opacity 0.2s ease-in-out 0s,
		-webkit-transform 0.3s ease-in-out 0s, -moz-transform 0.3s ease-in-out 0s,
		-o-transform 0.3s ease-in-out 0s;
}
.video-widget__close:before {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.video-widget__close:after,
.video-widget__close:before {
	position: absolute;
	left: 9px;
	top: 1px;
	content: "";
	height: 18px;
	width: 2px;
	background: #fff;
	-webkit-box-shadow: #000000 1px 1px 10px;
	box-shadow: #000000 1px 1px 10px;
}
.video-widget__close:after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.video-widget__close:after,
.video-widget__close:before {
	position: absolute;
	left: 9px;
	top: 1px;
	content: " ";
	height: 18px;
	width: 2px;
	background: #fff;
	-webkit-box-shadow: #000000 1px 1px 10px;
	box-shadow: #000000 1px 1px 10px;
}