.video-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.video-overlay__content {
	position: relative;
	width: 100%;
	height: 100%;
}

.video-overlay__iframe {
	width: 100%;
	height: 100%;
    z-index: 0;
}

.transparent-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent; /* Make it transparent */
    z-index: 10; /* Ensure it's above the iframe */
    display: none; /* Hidden by default */
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #333;
    color: #fff;
    border: 1px solid #555;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 100;
}

.close-button:hover {
    background-color: #555;
}

}