body {
    background: linear-gradient(#ffffff, #dcdcdc);
    min-height: 100vh;
}

.calculator-container {
    background-color: #dc002e;
    padding: 24px 24px;
    border-radius: 20px;
}

.calculator-container label {
    color: white;
}

.calculator-container h2 {
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    color: white;
}

.calculator-container select {
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    width: 100%;
    padding: 16px 15px 16px 15px;
    margin: 5px 0 15px;
    border: 1px solid #707492;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 500;
    color: #11184A;
    background-color: #f5f5f5;
    appearance: none;
    /* Elimina la flecha del navegador */
    -webkit-appearance: none;
    -moz-appearance: none;
    background: white url('../img/down-arrow.png') no-repeat right 10px center;

}

.calculator-container input {
    width: 100%;
    padding: 8px 15px;
    margin: 5px 0 15px;
    border: 1px solid #707492;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 500;
    color: #11184A;
    background-color: #f5f5f5;
}

#info-container {
    color: white;
    background-color: #22222255;
    padding: 10px 10px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.btn-calc {
    background-color: #222222;
    border-radius: 10px;
    border-bottom: 4px solid #666666;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 20px;
    transition: 0.2s;
}

.btn-calc:hover {
    background-color: #111111;
    color: white;
    font-size: 20px;
    transition: 0.2s;
}

ul.notificaciones li {
    list-style-type: none;
}

ul.notificaciones li a {
    text-decoration: none;
    color: #242424;
    font-weight: 500;
    font-size: 17px;
}

ul.notificaciones div.fechaPub {
    background: red;
    float: left;
    margin-right: 10px;
    padding: 5px 7px;
    border-radius: 5px;
    color: white;
    font-weight: 900;
    font-size: 18px;
    text-align: center;
    min-width: 70px;
}

div#caja_titulo {
    padding: 10px 30px;
    background: #dfdfdf;
    border-radius: 20px;
    margin-bottom: 35px;
}

div#caja_titulo h2 {
    font-size: 30px;
    margin-bottom: 0px;
}

li.listado {
    margin-bottom: 20px;
    min-height: 45px;
}

div#resultPrueba {
    display: none;
    margin-top: 20px;
    background-color: #22222255;
    border: 2px solid lightgreen;
    padding: 10px 20px;
    border-radius: 10px;
    text-align: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

div.tituloPub {
    padding-top: 7px;
}


@media only screen and (min-width : 901px) {
    ul.notificaciones {
        padding-left: 0em;
    }

    .m-5 {
        margin: 0.3rem !important;
    }

    div#caja_titulo h2 {
        font-size: 20px;
        text-align: center;
    }

    ul.notificaciones li a {
        font-size: 15px;
    }

    ul.notificaciones div.fechaPub {
        font-size: 15px;
        min-width: 60px;
    }

    div.tituloPub {
        padding-top: 0px;
    }
}

/* Cuando la pantalla es menor a 900px  (tablets y teléfonos inteligentes)*/
@media only screen and (max-width : 900px) {
    ul.notificaciones {
        padding-left: 0em;
    }

    .m-5 {
        margin: 0.3rem !important;
    }

    div#caja_titulo h2 {
        font-size: 20px;
        text-align: center;
    }

    ul.notificaciones li a {
        font-size: 15px;
    }

    ul.notificaciones div.fechaPub {
        font-size: 15px;
        min-width: 60px;
    }
    
    div.tituloPub {
        padding-top: 0px;
    }
}