@keyframes show {
    0%, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0) scaleY(5)
    }
    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0) scaleY(.9)
    }
    75% {
        transform: translate3d(0, 10px, 0) scaleY(.95)
    }
    90% {
        transform: translate3d(0, -5px, 0) scaleY(.985)
    }
    to {
        transform: translateZ(0)
    }
}

@keyframes hide {
    0% {
        transform: translate3d(0, 0, 0)
    }
    99% {
        transform: translate3d(0, 100vh, 0)
    }
    100% {
        z-index: 0;
        opacity: 0;
        display: none
    }
}

.banner-lgpd-consent-container {
    position: fixed;
    left: 0;
    bottom: 10px;
    display: flex;
    width: 100vw;
    justify-content: center;
    z-index: 29999999
}

.banner-lgpd-consent {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 0;
    width: calc(100vw - 20px);
    max-width: 1326px;
    height: 70px;
    padding: 27px;
    background-color:#00607F;
    box-shadow: 0 8px 6px 0 rgba(0, 0, 0, .41);
    border-radius: 5px;
    overflow: hidden;
    font-family: UOLTextRegular, Arial, Helvetica, sans-serif;
    transform: translate3d(0, 100vh, 0);
    text-align: center
}

.banner-lgpd-consent__column {
    padding: 0 54px;
    margin: 0 -30px;
    color: #fff !important;
    font-size: 14px;
    font-weight: 400 !important;
    line-height: 16px;
    display: block !important
}

.banner-lgpd-consent--version-b .banner-lgpd-consent__title {
    display: block
}

.banner-lgpd-consent__link {
    color: inherit;
    text-decoration: underline
}

.banner-lgpd-consent__link:hover {
    color: inherit;
    text-decoration: none
}

.banner-lgpd-consent__accept {
    position: relative;
    display: block;
    width: 118px;
    height: 36px;
    line-height: 34px;
    background-color: #2D424D;
    border-radius: 1px;
    cursor: pointer;
    color: #FFF !important;
    border: 2px solid #FFF;
    font-weight: bold;
    box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, .4);
    transition: all .3s
}

.banner-lgpd-consent--show {
    animation: show 1s both
}

.banner-lgpd-consent--hide {
    animation: hide 1s ease-in forwards
}

@media screen and (max-width: 768px) {
    .banner-lgpd-consent-container {
        bottom: 140px
    }

    .banner-lgpd-consent {
        height: auto;
        padding: 34px;
        flex-wrap: wrap
    }

    .banner-lgpd-consent__column {
        width: 100%;
        padding: 0;
        margin: 0;
        font-size: 20px;
        line-height: 24px
    }

    .banner-lgpd-consent__accept {
        width: 100%;
        margin: 24px 0 0
    }
}