:root {
  --primary-color: #006035;
  --secondary-color: #333;
  --tertiary-color: #f7f3f3;
  --fourth-color: #fff;
}

.lgpd-consent-popup {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 99;
  background-color: var(--tertiary-color);
  width: 100%;
  height: auto;
  padding: 20px 0;
  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: "Montserrat Regular";
  color: var(--secondary-color);
  font-size: 16px;
  animation: 1.8s ease lgpd-consent-popup-animation;
  flex-direction: row;
  justify-content: center;
  box-sizing: border-box;
  justify-content: space-between;
}

.lgpd-consent-popup .row {
  justify-content: space-between;
  gap: 16px;
}

.lgpd-consent-popup a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  font-family: "Montserrat Regular" !important;
}

.lgpd-consent-popup p {
  width: 65%;
  font-weight: 400;
  z-index: 100;
  font-family: "Montserrat Regular" !important;
  font-size: 16px;
  text-align: left;
  line-height: 23px;
}

.lgpd-consent-popup-button {
  margin-left: 5px;
  color: var(--fourth-color);
  background-color: var(--primary-color);
  cursor: pointer;
  border: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 14px 0 14px 0;
  width: 100%;
  max-width: 300px;
  text-transform: uppercase;
  font-family: "Montserrat Regular" !important;
}

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

@media (max-width: 1199px) {
  .lgpd-consent-popup {
    font-size: 15px;
    flex-wrap: wrap;
  }
  .lgpd-consent-popup-button {
    font-size: 14px;
  }
}

@media (max-width: 1019px) {
  .lgpd-consent-popup .row {
    justify-content: center;
  }

  .lgpd-consent-popup p {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .lgpd-consent-popup {
    display: block;
    font-size: 12px;
    flex-wrap: wrap;
  }

  .lgpd-consent-popup p {
    font-size: 12px;
  }

  .lgpd-consent-popup-button {
    font-size: 10px;
    width: 55% !important;
  }
}

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

  to {
    bottom: 0;
  }
}
