.overlay_popup {
    background-color: white;
}

.overlay_glass {
    background-color: black;
}

.overlay_main {
    padding: 0;
}

.overlay_maximized .overlay_popup {
    border-radius: 0;    
}
.overlay_maximized .overlay_content {
    position: absolute;
    
    
}
.overlay_active .overlay_popup {
    opacity: 1;	
}

.overlay_header {
    height: 22px;
    line-height: 22px;
    padding-left: 10px;
    font-size: 16px;
    padding: 20px;
    color: black;
    font-weight: bold;
}

.overlay_active .overlay_header {
    background-color: white;
} 
.overlay_maximized .overlay_header {
    border-radius: 0;    
}
.overlay_content {
    padding: 20px;
}
.overlay_controls {
    top: 10px;
    right: 5px;    
}
.overlay_control_close {
    background-image: url(../img/icon-close.png)!important;
    width: 40px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.overlay_control_max {
    background-image: url(../img/icon-resize.png)!important;
    width: 40px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.overlay_buttons {
    padding: 20px;
}
.overlay_button {
    font-size: 15px;
    display: inline-block;

    background-color: #3571b0;
    padding: 0 15px;
    color: white;
    line-height: 30px;
    height: 30px;
    outline: 0;
    border: 0;
    margin: 0;
    cursor: pointer; 
    outline: 0;   
}

.overlay_button.left {
    margin-right: 5px;
}   

.overlay_button.right {
    margin-left: 5px;	
}

.overlay_button:hover {
}

.overlay_popup.dialog .overlay_content {
    font-size: 14px;	
}

.overlay_popup .admin_form {
	margin: 0;
	padding: 0;
	border: 0;
	background-color: transparent;	
}

.overlay_loader {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-left: 5px solid rgba(255,102,0, 0.7);
    border-radius: 50%;
    box-model: border-box;
    animation: loader_rotate 1.1s infinite linear;    
}
 
@keyframes loader_rotate {
    0% { transform: rotate(0deg)  }
    100% { transform: rotate(360deg) }
} 


