:root{
    --blanco: #ffffff;
    --negro: #000000;
    --celeste-alephoo: #08CBB9;
}


.banner__privacidad {
    display: none;
    left: 170px;
    height: 110px;
    position: fixed !important;
    background-color: var(--blanco);
    color: var(--negro);
    bottom: 10px;
    z-index: 400000;
    font-family: "Circular-Book", Sans-serif;
    border-radius: 20px;
    box-shadow: 0px 4px 20px var(--negro);
}

.banner__privacidad .banner__texto {
    padding-left: 25px;
    padding-top: 10px;
    margin-top: 5px;
}

.banner__privacidad .banner__texto .banner__texto-titulo {
    font-weight: bold;
    font-size: 2rem;
}

.banner__privacidad .banner__texto .banner__texto-parrafo {
    font-size: 1.4rem;
    line-height: 20px;
}

.banner__privacidad .banner__botonera {
    margin-top: 55px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}

.banner__privacidad .banner__botonera .banner__botonera-boton {
    width: 140px;
    height: 40px;
    border-radius: 18px;
    background-color: var(--celeste-alephoo);
    border: none;
    color: var(--blanco);
    font-size: 1.7rem;
}



@media (max-width: 768px) {

    .banner__privacidad {
        height: 190px;
        left: 25px;
    }

    .banner__privacidad .banner__botonera {
        margin-top: 0px;
    }

}