:root {
  --lgpd-primary-color: #2e3092;
  --lgpd-second-color: #fff;
  --lgpd-black-color: #333;
  --lgpd-gray-color: #f7f3f3;
}

.lgpd-consent-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 100;
  background-color: var(--lgpd-gray-color);
  width: 100%;
  height: 90px;
  box-shadow: 0 2px 4px -1px rgb(0 0 0 / 20%), 0 4px 5px 0 rgb(0 0 0 / 14%),
    0 1px 10px 0 rgb(0 0 0 / 12%);
  left: 0;
  bottom: 0;
  font-family: sans-serif;
  font-size: 16px;
  color: var(--lgpd-black-color);
  animation: 1.8s ease lgpd-consent-popup-animation;
  box-sizing: border-box;
}
.lgpd-consent-popup-body {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
.lgpd-consent-popup a {
  color: var(--lgpd-primary-color);
  text-decoration: none;
  font-weight: bold;
}

.lgpd-consent-popup p {
  width: 65%;
  font-weight: 400;
  line-height: 1.5 !important;
  padding-top: 15px;
}

.lgpd-consent-popup-button {
  color: var(--lgpd-second-color);
  background-color: var(--lgpd-primary-color);
  cursor: pointer;
  border: none;
  border-radius: 50px;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 14px 0 14px 0;
  width: 100%;
  max-width: 300px;
  text-transform: uppercase;
  margin-right: 20px;
}

.lgpd-consent-popup-button:hover {
  background: var(--lgpd-gray-color);
  border: 2px solid var(--lgpd-primary-color);
  color: var(--lgpd-primary-color);
  font-weight: bold !important;
  transition: 0.4s;
}

/*Celular*/
@media (max-width: 767px) {
  .lgpd-consent-popup {
    height: auto;
    padding-right: 30px;
    max-width: 100%;
    font-size: 12px;
    flex-wrap: wrap;
  }
  .lgpd-consent-popup-body {
    display: block;
  }
  .lgpd-consent-popup p {
    width: 100%;
    font-weight: 400;
    line-height: 1.5;
    padding: 16px 0;
    font-size: 14px;
  }
  .lgpd-consent-popup-button {
    font-size: 10px;
    width: 62% !important;
    margin-left: 22%;
    margin-bottom: 16px;
  }
}
/*Tablet*/
@media (min-width: 768px) and (max-width: 1023px) {
  .lgpd-consent-popup {
    width: 100%;
    height: 200px;
    font-size: 15px;
    flex-wrap: wrap;
  }
  .lgpd-consent-popup-body {
    display: block;
  }
  .lgpd-consent-popup p {
    width: 100%;
    font-weight: 400;
    line-height: 1.5;
    padding-bottom: 20px;
  }
  .lgpd-consent-popup-button {
    font-size: 14px;
    padding: 14px 0 14px 0;
    max-width: 300px;
    margin-left: 28%;
  }
}

/*Notebook*/
@media (min-width: 1024px) {
  .lgpd-consent-popup {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@keyframes lgpd-consent-popup-animation {
  from {
    bottom: -100%;
  }
  to {
    bottom: 0;
  }
}
