.popup-cookie {
  width: 100%;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 999999;
  position: fixed;
  bottom: -100%;
  transition: bottom 0.5s ease-in-out;
  background-color: #f6f6f6;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid #428785;
  border-bottom: 0;
}

.popup-cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-cookie-content p {
  margin: 0;
  color: #000;
}

.popup-cookie.opened {
  bottom: 0;
}

.popup-cookie p {
  max-width: 900px;
  width: 75%;
}

.popup-cookie button {
  color: #FFFFFF;
  display: block;
  background: #428785;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #428785;
  padding: 8px 10px;
  border-radius: .25rem;
  transition: 0.5s;
}
.popup-cookie button:hover {
  color: #fff;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .popup-cookie {
    flex-direction: column;
    gap: 20px;
  }

  .popup-cookie button {
    max-width: 100%;
  }
}
