.popbox.visible{
	opacity: 1; 
	z-index: 999;
  transition:opacity 0.3s ease;
 
 
}
.popbox.opened{
	display: block;
    

}

.popbox_locked .popbox_main_content.popbox_blur{
	filter:blur(15px); 
}

html.popbox_locked{
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
}

.popbox{
	z-index: -999;
	position: fixed;
	width: 100%;
	max-width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
  overflow-y: scroll; 
 
#   transition: transform .2s;
#   transform: scale(0.5);
    transition:opacity 0.3s ease;
    opacity:0;
    will-change: opacity;
	background: rgba(60, 52, 66, 0.05); 
#	padding:18px;
  padding-top:2%;
	display: none;
}

.popbox_container{
	border-radius:5px;
	border: 1px solid #999;
  margin-bottom:18px;
	padding: 18px;
	margin-left:auto;
	margin-right:auto;
	background:#fff;
	max-width:1200px;
  overflow-y: scroll;      
}

