/* popup accept video */

.wsmiddsgvovideo-close {
	position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
	width: 2.75rem;
	height: 2.75rem;
    /* padding: .825rem; */
	display: flex;
	align-items: center;
	justify-content: center;
    line-height: 1;
	z-index: 1;
	border: 1px solid var(--Stroke-Primary);
	background: var(--Background-Secondary);
	transition: background-color .5s
}
.wsmiddsgvovideo-close:hover {
	background: var(--Background-Primary);
}
.wsmiddsgvovideo-close svg {
	fill:#fff;
	width: .875rem;
    height: .875rem;
}
.wsmiddsgvovideo-overlay {
	top:0;
	left:0;
	height: 100vh;
	width: 100vw;
	position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
	z-index: 99999999;
	background-color: rgba(20, 20, 20, 0.80);
}
.wsmiddsgvovideo-accept-youtube {
	width: 34rem;
	max-width:90%;
	max-height: 90%;
	overflow-y: auto;
	position:relative;
	box-shadow: 0 0 20px rgb(0 0 0 / 80%);
	background-color: var(--Background-Primary);
	border: 1px solid var(--Stroke-Primary);
	color: #fff;
	padding: 4rem 3rem;
	text-align: center;
}
.wsmiddsgvovideo-accept-video-txt {
	margin-bottom: 2rem
}
@media (max-width: 767px) {
	.wsmiddsgvovideo-accept-youtube {
		padding: 4rem 2rem;
	}
}
