/**
 * -----------------------------------------------
 *
 * Loading Screen Style
 * 
 * @author Yalan Bravo yalanbo@dudev.mx
 * @version 1.0
 * Copyright (c) 2016, Dudev S.A. de C.V.
 *
 * -----------------------------------------------
 */

body{
    padding : 0px;
    margin:0px;
}

#loadWrapper{
    width: 100%;
    height: 100%;
    background: #AD7E2A;
    position: absolute;
    margin: 0px !important;
    padding: 0px !important;
}

#loadLegend{
    padding: 10px 20px;
    width: 25%;
    min-width: 240px;
    margin: 20px;
    font-family: Verdana;
    background: white;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
}

#loadLegend H3{
    color : #AD7E2A;
    font-size: 1.1rem;
    font-weight: normal;
}

#loadLegend p{
    color : #4A4A4A;
    font-size: .75rem;
}

#loadLegend h3 img{
    display:none;
    margin-bottom: -5px;
}

/* Start by setting display:none to make this hidden.
   Then we position it in relation to the viewport window
   with position:fixed. Width, height, top and left speak
   for themselves. Background we set to 80% white with
   our animation centered, and no-repeating */
.modal-loading {
    display:    none;
    position:   fixed;
    z-index:    1000;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, .8 );
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading {
    overflow: hidden;   
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading .modal-loading {
    display: block;
}

.modal-loading .img-container{
    background: #FFF;
    text-align: center;
    width: 64px;
    height: 64px;
    display: block;
    position: relative;
    margin: auto;
    border-radius: 32px;
    top: 40%;
}

.modal-loading .img-container img{
    margin: auto !important;
    position: relative;
    top: 16px;
    display: block;
}