:root {
    --verde: #419C1C;
    --blanco: #ffffff;
    --obscuro: #212121;
    --primario: #ffc107;
    --secundario: #0097a7;
    --gris: #757575;
    --grisClaro: #DFE9F3;
    --curp: #025204;
}

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

body {
    overflow: hidden; /* Hide scrollbars */
      
  }


.popup{
    background-color:#ffffff;
    max-width: 600px;
    height: 480px;
    padding:  0px;
    margin:0px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    border-radius: 5px;
    font-family: 'Quicksand', sans-serif;
    display: none;
    text-align: center;
}

.modal{
   
    position: fixed; /* Stay in place */
    z-index: 999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }

.sombra{

    -webkit-box-shadow: 0px 1px 15px 1px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 1px 15px 1px rgba(0,0,0,0.75);
    box-shadow: 0px 1px 15px 1px rgba(0,0,0,0.75);

}

.popup .boton{
    background-color: var(--verde);
    color: var(--blanco);
    padding: 1.5rem 1.5rem;
    margin-top: 1.5rem;
    font-size: 1.5rem;
    border-radius: 1rem;
    width: 50%; /** Ancho del borde del boton **/
}

@media (min-width: 768px) {

    .boton {
        width: auto;  /** AJUSTAR BOTON A DISP MOVILES Y PC EN AUTOMATICO **/
    }

}

.satid{
    display: block;
    font-weight: bold;
    font-size: 2.8rem;
    color: #FFFFFF;
    padding: 0%;
    background-color:#212121;    
    
}


.imagensita {
    width: 100%;
    height: 360px;
}