#tronchoCookies  {
    visibility: hidden;
    opacity: 0;
    
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    border-radius: 25px 25px 0 0;
    background-color: #1a1a1a;
    transition: 0.2s ease;
    z-index: 999;
}
#tronchoCookies.appear {
    visibility: visible;
    opacity: 1;
}
#tronchoCookies .texto {
    float: left;
    width: calc(100% - 486px);
    max-width: 800px;
    color: #fafafa;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
}
#tronchoCookies .texto a {
    color: #B4D5FE;
    transition: 0.2s ease;
}
#tronchoCookies .texto a:hover {
    color: #68acff;
    transition: 0.2s ease;
}
#tronchoCookies .zonaBoton {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-right: 40px;
}
#tronchoCookies .boton {
    margin-bottom: 14px;
    margin-left: 20px;
    box-shadow: unset;
    width: 180px;
    min-width: 180px;
    height: 40px;
    font-family: 'Montserrat';
    font-size: 13px;
    line-height: 16px;
    font-weight: 700;
    padding: 10px 0px;
    border-radius: 50px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease-out;
}
#tronchoCookies .boton.rojo {
    color: white;
    background-color: #e61b0e;
    border: 2px solid #e61b0e;
}
#tronchoCookies .boton.gris {
    color: white;
    background-color: unset;
    border: 2px solid #808080;
}
@media screen and (max-width: 700px) {
#tronchoCookies .texto {
    width: 100%;
}
#tronchoCookies .zonaBoton {
    width: 100%;
    flex-direction: column;
    align-items: flex-end;
}
#tronchoCookies .boton {
    margin: 20px auto 10px auto;
}
#tronchoCookies .boton.gris {
    margin: 20px auto 0px auto;
}
}