/*
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 : 5 ago. 2020, 17:36:41
    Author     : Claudio Bogado
*/

body {
    padding-top: 70px;
}

.esperando {
    border: 20px solid lightgray;
    border-top: 20px solid #212529;
    border-bottom: 20px solid #212529;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: girar 2s linear infinite;    
}

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