.video-fluid {
	max-width: 100%;
	height: 357px;
}

.custom-height {
	height: 70vh;
}

.footer-box {
	max-width: 1420px;
}

.msgtextarea {
	min-height: 100px !important;
}

.video-thumbnail {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	/* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
	background-color: #000;
	cursor: pointer;
}

.video-thumbnail img,
.video-thumbnail iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80px;
	height: 80px;
	background-color: rgba(0, 0, 0, 0.6);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.play-button::before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-left: 20px solid white;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	margin-left: 5px;
	transition: transform 0.3s ease;
}

.play-button:hover {
	background-color: rgba(255, 255, 255, 0.9);
	transform: translate(-50%, -50%) scale(1.1);
}

.play-button:hover::before {
	border-left-color: #e60023;
	/* Red shade */
	transform: scale(1.2);
}

.error-border {
    border: 1px solid #dc3545 !important;
    box-sizing: border-box; /* prevents size change */
}

