/*!
* © Evite You 2024 All Rights Reserved.
*/

.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	justify-content: center;
	align-items: center;
}
	.modal-content {
	background-color: #fff;
	padding: 15px;
	border-radius: 0px;
	text-align: center;
	position: relative;
	width: 80%;
	max-width: 700px;
}
iframe {
	width: 100%;
	height: 350px;
	border: none;
}
.close-vid {
    font-size: 18px;
    cursor: pointer;
    background-color: #fff;
    text-decoration: none; /* Fixed the typo ("nine" → "none") */
    border: 0px solid #ccc; /* Optional: Adds a subtle border */
    padding: 8px 12px; /* Adds some padding for better appearance */
    border-radius: 5px; /* Makes edges rounded */
    transition: all 0.3s ease-in-out; /* Smooth hover effect */
}

.close-vid:hover {
    background-color: #f0f0f0; /* Light gray hover effect */
    border-color: #999;
}