/* 
    Created on : 13/08/2018, 03:04:40 PM
    Author     : Mathius Rivero
*/

/* Pantalla Negra */
#pantallazocompleto{
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,0.5);
    display: none;
}
                
/* Centrar Rueda Carga */
#carganzo{
    position: fixed;
    left: 50%;
    top: 40%;
    z-index: 100;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
  
  /* Centrar Mensaje */
#wait_message{
    position: fixed;
    left: 50%;
    top: 40%;
    z-index: 100;
    width: 350px;
    height: 75px;
    margin: 85px 0 0 -190px ;
    border: 5px solid #3498db;
    border-radius: 15px;
    background-color: #f3f3f3;
    font-size: 1.1em;
    color: #3498db;
    padding: 10px;
    text-align: center;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}