/**
* 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.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 4s forwards;
}

.banner-lgpd__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  
  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: white;
  margin: 0;
  font-weight: 100;
  line-height: 20px;
}

.banner-lgpd__column p a {
  font-family: "Roboto", sans-serif;
  color: #f18f21;
  font-weight: 400;
}

.banner-lgpd__accept {
  font-family: "Roboto", sans-serif;
  background-color: #f18f21;
  color: #ffffff;
  border: 0;
  padding: 0.8rem 2rem;
 
  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;
}