#aceite-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999999999;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 25px 10%;
    opacity: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    filter: drop-shadow(2px 4px 6px black);
}
#aceite-cookie.show{
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms;
}
#aceite-cookie p{
    font-size: 16px;
    font-weight: 400;
    color: #707070;
    margin-bottom: 0;
}
#aceite-cookie a,
#aceite-cookie a:hover{
    color: #214192;
    font-weight: 600;
}
.btn-padrao-accept{
    border: none;
    background-color: #214192;
    color: #ffffff !important;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 50px;
    padding: 9px 22px;
}
@media (max-width:767px) {
    #aceite-cookie {
        display: block !important;
        text-align: center;
    }
    .btn-padrao-accept{
        margin-top: 15px;
    }
}