/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Apr 1, 2016, 9:42:24 AM
    Author     : oliverjacobs
*/

#overlay-bg, .overlay-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000;
    opacity: 0.8;
    z-index: 5;
}

.overlay-fg {
    display: none;
    position: relative;
    z-index: 10;
    position: fixed;
    left: 40%;
    background: #FFF;
    white-space: nowrap;
    height: 80%;
}

.overlay-title {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    font-size: 2.5em;
    color: #57585B;
    padding: 40px 70px;
    margin: 10px auto;
    text-align: center;
    white-space: nowrap;
}

.overlay-info {
    color: #555655;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
}


.overlay-cancel {
    right: 30px;
    top: 20px;
    position: absolute;
    z-index: 30;
    font-size: 2em;
    color: white;
    cursor: pointer;
}

.overlay-full {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFF;
    overflow: scroll;
}


/*************************************/
/*         LOADING OVERLAY            */
/*************************************/

#loading-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #FFF;
    opacity: 0.7;
    z-index: 5;
}

   

#loading-fg {
    display: none;
    position: fixed;
    z-index: 100;
    border: thin solid #AAA;
    border-radius: 15px;
    box-shadow: 0px 0px 15px #AAA;
    line-height: 100px;
    width: 300px;
    height: 100px;
    text-align: center;
    vertical-align: middle;
    background: #FFF;
    font-size: 16pt;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    
}


/*************************************/
/*         CANCEL OVERLAY            */
/*************************************/

#overlay-cancel-fg, #overlay-model-fg {
    text-align: center;
    padding: 50px;
}