/* AVISO COOKIE */

.banner-lgpd-consent-container {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  position: fixed;
  left: 0;
  bottom: 30px;
  display: flex;
  width: 100vw;
  justify-content: center;
  z-index: 29999999;
}

.banner-lgpd-consent {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  width: calc(100vw - 20px);
  max-width: 1326px;
  height: 70px;
  padding: 27px;
  background-color: rgba(64, 64, 64, 1);
  box-shadow: 0 8px 6px 0 rgba(0, 0, 0, 0.41);
  border-radius: 5px;
  font-family: UOLTextRegular, Arial, Helvetica, sans-serif;
  text-align: center;
  transform: translate3d(0, 100vh, 0);
}

.banner-lgpd-consent--show {
  animation: show 1s both;
}

.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__accept {
  position: relative;
  display: block;
  width: 118px;
  height: 36px;
  line-height: 34px;
  background: #04913E;
  border-radius: 1px;
  cursor: pointer;
  color: #fff !important;
  border: none;
  box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
}

.banner-lgpd-consent__accept:hover {
  background-color: #fff;
  color: #000 !important;
}

.banner-lgpd-consent__link {
  color: inherit;
  text-decoration: underline !important;
}

@keyframes show {
  0%,
  60%,
  75%,
  90%,
  100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  100% {
    transform: translateZ(0);
  }
}

@media screen and (max-width: 768px) {
  .banner-lgpd-consent-container {
    bottom: 10px;
  }

  .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;
  }
}

/* AVISO COOKIE FIM */
