/* Loader */

#loading{
    width: 300px;
	left: 50%;
    margin-left: -150px;
    top: 50%;
    margin-top: -36px;
    min-height:30px;	
	text-align: center;
    display: none;
    -moz-box-shadow: 0px 0px 11px #000000;
    -webkit-box-shadow: 0px 0px 11px #000000;    
	box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    background: white;
    position: fixed;
    z-index: 3;
    padding: 10px;

}

.loading_container{
    padding-top: 5px;
}

.loading-texto{
    font-weight: 500;
    position: relative;
    top: -1px;
}

.glyphicon-refresh-animate {
    -animation: spin .7s infinite linear;
    -ms-animation: spin .7s infinite linear;
    -webkit-animation: spinw .7s infinite linear;
    -moz-animation: spinm .7s infinite linear;
}

@keyframes spin {
    from { transform: scale(1) rotate(0deg);}
    to { transform: scale(1) rotate(360deg);}
}

@-webkit-keyframes spinw {
    from { -webkit-transform: rotate(0deg);}
    to { -webkit-transform: rotate(360deg);}
}

@-moz-keyframes spinm {
    from { -moz-transform: rotate(0deg);}
    to { -moz-transform: rotate(360deg);}
}

/** MASCARA **/
.mascara{    
	display:none;
    position:fixed;
    left    :0;
    top     :0;
    z-index:2;
    background-color:#000;

    width:100%;
    height:100%;
    opacity: 0.4!important;
}
