.box-aviso-cookies {
    background: transparent;
    position: fixed;
    bottom: 0px;
    padding: 10px 10px;
    width: 100%;
    -webkit-animation: 1s slide-up;
    animation: 1s slide-up;
    margin-top: 0%;
    z-index: 999;
}

@-webkit-keyframes slide-up {
    0% {
        bottom: -200px
    }

    to {
        bottom: 0px
    }
}

@keyframes slide-up {
    0% {
        bottom: -200px
    }

    to {
        bottom: 0px
    }
}

@media (min-width:720px) {
    .box-aviso-cookies {
        padding: 0px 50px
    }
}

.box-aviso-cookies.recuo {
    bottom: 95px
}

.box-aviso-cookies .container {
    padding: 10px;
    background: #FFFFFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-shadow: -1px 0px 5px -2px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -1px 0px 5px -2px rgba(0, 0, 0, 0.75);
    box-shadow: -1px 0px 5px -2px rgba(0, 0, 0, 0.75)
}

@media (min-width:720px) {
    .box-aviso-cookies .container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
}

.box-aviso-cookies .container p {
    font-size: 12px;
    color: #333333;
    font-family: Libre Franklin, sans-serif;
    line-height: 18px;
    padding-right: 15px;
    text-align: justify
}

.box-aviso-cookies .container p a {
    color: #7CC6FE;
    text-decoration: underline
}

.box-aviso-cookies .container .buttons {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px
}

@media (min-width:720px) {
    .box-aviso-cookies .container .buttons {
        min-width: 200px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-top: 0px;
        width: auto
    }
}

.box-aviso-cookies .container .buttons button {
    padding: 10px;
    background: #619EC8;
    color: #FFFFFF;
    margin-right: 15px
}

@media (min-width:720px) {
    .box-aviso-cookies .container .buttons button {
        margin-right: 0px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

.box-aviso-cookies .container .buttons button.outline {
    border: 1px solid #619EC8;
    color: #619EC8;
    background: #FFFFFF;
    margin-right: 0px
}