/*
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 : 14/05/2020, 12:02:21 PM
    Author     : Jose Venegas Sanchez
*/

*,*:after, *:before{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#contenedor_carga{
    background-color: rgba(3,2,2,0.2);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: fixed;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 10000;
}

#carga{
    border: 15px solid #ccc;
    border-top-color: #3C730D;
    height: 100px;
    width: 100px;
    border-radius: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    -webkit-animation: girar 1.5s linear infinite;
    animation:  girar 1.5s linear infinite;
}
@keyframes girar{
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}