body {
    background-color: #009999;
}

.divCentered {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.errores {
    left: 0;
    bottom: 0;
    width: 100%;
    position: fixed;
}

.collapsible {
    background-color: #d80027;
    color: white;
    cursor: pointer;
    padding: 5px;
    width: 100%;
    border: none;
    text-align: justify;
    outline: none;
    font-size: 10px;
}

    .active, .collapsible:hover {
        background-color: #B00020;
    }

.content {
    padding: 0 9px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
}

.form-control {
    font-size: 18px;
}

.bottom-banner {
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px; 
    background-color: #333;
    color: white;
    text-align: justify;
    padding: 15px 20px;
    font-size: 14px;
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
    transition: bottom 0.8s ease-in-out;
    border-radius: 10px 10px 0 0; 
}

.bottom-banner.show {
    bottom: 0;
}

.animated-banner p {
    margin: 0;
}

@media (max-width: 900px), (max-height: 650px) {
    .bottom-banner {
        font-size: 11px;
        padding: 10px 8px;
        max-width: 800px;
    }
}

@media (max-width: 800px), (max-height: 550px) {
    .bottom-banner {
        font-size: 9px;
        max-width: 700px;
    }
}

@media (max-width: 710px), (max-height: 460px) {
    .bottom-banner {
        font-size: 7px;
        max-width: 550px;
    }
}

