
.video-thumbnail img {
	height: auto;
	width: 100%;
	transition: opacity 0.2s ease;
}


.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 72px;
	height: 72px;
	background: rgb(170, 16, 16);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.video-thumbnail:hover{
	cursor: pointer;
}

.video-card:hover .play-button {
	background: rgb(144, 1, 1);
	transform: translate(-50%, -50%) scale(1.1);
}


.c-video-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 1);
	z-index: 999999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.c-video-overlay.active {
	opacity: 1;
	visibility: visible;
}

.c-video-player {
	position: relative;
	aspect-ratio: 16 / 9;
	width: 100%;
	height: 100%;
}

@media (min-width: 768px) {
	.c-video-overlay {
		background: rgba(0, 0, 0, 0.95);
	}
	.c-video-player {
		height: 100%;
	}
}

.c-video-player-close-wrapper{
	width: 100%;
	margin: 0 auto;
	position: absolute;
	bottom: 110px;
	right: 0px;
}

.c-video-player__close {
	height: 32px;
	color: #ebebeb;
	font-size: 17px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #ffffff;
	background: black;
	padding: 1.25rem 2rem;
	border-radius: 30px;
	margin: 0 auto;
}

.c-video-player__close:hover {
	opacity: 1;
}

.c-video-player__media {
	width: 100%;
	height: 100%;
	border: none;
}

