 

.backdrop {
	position:fixed;
	top:0;
	left:0;
	height:100%;
	width:100%;
	/*background-color:#000;*/
	background-color:rgba(0,0,0,0.8);
	z-index:8000;
	
	}
	

#ws-lightbox-outer {
	position:fixed;
	left:50%;
	top:50%;
	z-index:9999; 
	background-color:rgba(0,0,0,0.9);
	}
	
#ws-lightbox-outer iframe {
	overflow:hidden;
	padding:0;
	}

.close-lb {
	position:fixed;
	top:0;
	right:0;
	background-image:url(../images/icons/close.svg);
	background-size:50%;
	height:70px;
	width:70px;
	cursor:pointer;
	background-color:rgba(0,0,0,0.9);
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;	
	}
	
.close-lb:hover{
	background-color:var(--black);
}