.bigbox-fondo{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;

    background-color: black;
    opacity: 0;
    display: none;
    z-index: 9997;
}

.bigbox-imagen{
    position: absolute;
    margin: 10px 0px 0px -275px;
    width: 180px;
    z-index: 9998;
    display: none;
}

.bigbox-contenedor{
    position: fixed;
    width: 600px;

    display: none;
    opacity: 0;

    border: 5px solid white;
    z-index: 9999;
    border-radius: 10px;


    background: rgb(240,240,245);
    background: radial-gradient(circle, rgba(240,240,245,1) 0%, rgba(222,222,222,1) 100%);

    box-shadow: 10px 10px 20px 0px;
}

@media only screen and (max-width: 600px) {
    .bigbox-contenedor{
        width: 94%;
    }
}

.bigbox-cerrar{
    float: right;
    width: 45px;
    height: 45px;

    cursor: pointer;
    color: #044880;

    text-align: center;
    padding-top: 10px;
    
   /*  background-color: #5a5d62;  */

    font-size: 20px;
    padding-top: 8px;

    /* border-radius: 0px 10px; */
}

.bigbox-circulo{
    width: 100px;
    height: 100px;
    text-align: center;
    margin-top: 24px;

    color: #044880;

    border: 5px solid #044880;
    border-radius: 100%;

    padding-top: 23px;
    /* font-size: 24px; */
    
}

.bigbox-contenido{
    margin-top: 20px;
}

.bigbox-small{
    color: #044880;
}

.bigbox-contenido span{
    display: block;
}

.bigbox-titulo{
    font-size: 38px;
    color: #044880;
}

.bigbox-texto{
    font-size: 28px;
    color: #044880;
}

.bigbox-boton{
    background-color: #dc3545;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 16px;

    border-radius: 30px;

    margin-top: 85px;
    margin-bottom: 20px;
    padding: 15px 30px 15px 30px;
}

.bigbox-boton:focus{
    outline: 0;
}

.bigbox-boton:hover{
    background-color: #c82333;
    border-color: #bd2130;
}



