.container-fluid .video-container{
	max-width: 1100px;
}

.full .video-container video{
	height: auto;
}

.video-container {
	position: relative;
	display: inline-block;
	width: auto;
	margin: auto;
	width: 100%;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100%;
	z-index: 1;
	right: unset;
	margin: unset;
	object-fit: cover;
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	background-color: transparent;
	border: none;
	outline: none;
	cursor: pointer;
	width: 100px;
	height: 100px;
	transition: all 0.2s ease-in-out;
}

.play-button svg {
	width: 100px;
	height: 100px;
}

.play-button:hover {
	transform: translate(-50%, -50%) scale(1.1);
}

video {
	display: block;
	margin: auto;
	width: 100%;
}