.basic-overlay-wrapper { position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.4);
    display: -ms-flexbox!important;
    display: -webkit-flex!important;
    display: -webkit-box!important;
    display: flex!important;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
    -webkit-transition: linear .1s;
    transition: linear .1s;
    opacity: 1;
    visibility: visible;
	cursor: pointer;
    overflow: auto;
}

.basic-overlay-wrapper.hidden { display: none;
    -webkit-transition: linear .2s;
    transition: linear .2s;
    opacity: 0;
    visibility: hidden;
}

.basic-overlay-close-button {
	float: right;
	background: url(/site/images/close_button_2x.png) no-repeat;
	width: 26px;
	height: 26px;
	margin: -32px -32px 0 0;
	background-size: 26px 26px;
	cursor: pointer;
	-webkit-transition: linear .1s;
	transition: linear .1s;
}

.basic-overlay-modal {
	width: 800px;
	height: 500px;
	background-color: #fff;
	border-radius: 4px;
	padding: 40px;
	cursor: default;
}


/* X-LARGE SCREENS (CASCADE TO LOWER SCREEN) */
@media only screen and (min-width: 1442px) {
	
}
 
/* LARGE SCREENS (SPECIFIC) */
@media only screen and (min-width: 1069px) and (max-width:1441px) {
	
}
 
/* MEDIUM SCREENS (CASCADE TO LOWER SCREENS) */
@media only screen and (max-width: 1068px) {
	
}
 
/* MEDIUM SCREENS (SPECIFIC) */
@media only screen and (min-width: 736px) and (max-width:1068px) {
 
}
 
/* SMALL SCREENS */
@media only screen and (max-width: 735px) {
 
}
 
/* EXTRA SMALL SCREENS < 400px */
@media only screen and (max-width: 400px) {
 
}