/**
* LGPD
**/
@keyframes slide-top {
    0% {
      bottom: -10px;
    }
    100% {
      bottom: 10px;
    }
}
.banner-lgpd {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: -400px;
    z-index: 29999999;
    animation: slide-top 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards;
}
.banner-lgpd__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 0.8rem 1.5rem;
    box-sizing: border-box;
    flex-direction: column;
}
@media (min-width: 561px) {
.banner-lgpd__container {
    flex-direction: row;
}
}
@media (max-width: 560px) {
.banner-lgpd__column {
    width: 100%;
}
}
.banner-lgpd__column p {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    color: black;
    margin: 0;
    font-weight: 500;
    line-height: 20px;
}
.banner-lgpd__column p a {
    font-family: "Roboto", sans-serif;
    color: #0088cc;
    font-weight: 400;
}
.banner-lgpd__accept {
    font-family: "Roboto", sans-serif;
    background-color: #0088cc;
    color: #ffffff;
    border: 0;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    margin-left: 10px;
}
@media (max-width: 560px) {
.banner-lgpd__accept {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
}
}
.banner-lgpd.accept {
    display: none;
}