/*
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 : Sep 25, 2015, 11:51:15 AM
    Author     : mvoropaev
*/

div#loadMask {
    position: absolute;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
    z-index: 10000;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
div#loadMask .b {
    position: absolute;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
    background-color: black;

}
div#loadMask .f {
    position: absolute;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
    z-index: 2;
}
div#loadMask .f .s {
    background-color:rgba(0, 48, 95, 0.6);
    position: absolute;

    font-size: 48px;
    text-align: center;
    vertical-align: middle;
    line-height: 48px;

    width: 100px;
    height: 100px;
    box-sizing: border-box;

    /*color: rgb(0, 48, 95);*/
    color: white;
    
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    padding: 23px 15px;
    border: 3px solid lightgray;
    border-radius: 15px;
}
