p {
  margin: 0px;
    font-size: 1.0rem;
}

.cookies-container {
  color: #000;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  position: fixed;
  width: 100%;
  bottom: 0rem;
  background:#d8bf6b;
  z-index: 1000;
}
.cookies-container  a{color: #000;}

.cookies-container  a:hover{color: rgb(35, 36, 134);}
.cookies-content {
  #box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  #background: white;
  max-width:100%;
  border-radius: 0px;
  padding: 1rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns:5fr auto;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
  to {
    transform: initial;
    opacity: initial;
  }
}
.cookies-pref label {
  margin-right: 0rem;
}

.cookies-save {
  grid-column: 3;
  grid-row: 1/2;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 5px;
  padding: 0px 0;
  border: 1px solid #0a0a0e;
  background:#37333b;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600
}
.cookies-save:hover {
  background: rgb(119, 122, 122);
  color: #000
}
@media (max-width: 500px) {
  .cookies-content {
    grid-template-columns: 1fr;
  }
  .cookies-save {
    grid-column: 1;
    grid-row: 3;
  }
}


.lgpd {
    position: fixed;
    bottom: 0;
    background: #fff;
    z-index: 99999999;
    padding: 30px 0;
    width: 100%;
    box-shadow: 0 0 80px #aaa
}
.lgpd_limit {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1248px;
    margin: 0 auto
}
@media screen and (min-width: 768px) {
    .lgpd_limit {
        flex-flow: row nowrap
    }
}
.lgpd_text {
    width: calc(100% - 20px);
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 20px
}
@media screen and (min-width: 768px) {
    .lgpd_text {
        width: calc(100% - 220px);
        margin-bottom: 0
    }
}
.lgpd_text strong {
    font-weight: 700;
    font-size: 15px
}
.lgpd_text a {
    font-weight: 600;
    text-decoration: underline;
    color: #00f
}
.lgpd_accept {
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 5px;
    padding: 10px 0;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600
}
.lgpd_accept:hover {
    background: #fff;
    color: #000
}
