#cookie-popup {
  position: fixed;
  bottom: 5px;
  right: 10%;
  left: 10%;
  align-self: center;
  min-width: 50rem;
  z-index: 10;
  background-color: #ececec;
  color: black;
  text-align: center;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  animation: showDiv 4.5s forwards;
}

#cookie-popup p {
  text-align: center;
  margin: 0;
  font-size: 12px;
}

.cookie-popup__buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.cookie-popup__button {
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 10px;
  transition-duration: 0.2s;
}

.cookie-popup__button--accept,
.cookie-popup__button--decline {
  color: white;
  background-color: #2e75b8;
}

.cookie-popup__button--accept:hover,
.cookie-popup__button--decline:hover {
  background-color: #21a038;
}

@keyframes showDiv {
  0% {
    opacity: 0%;
  }
  80% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
  }
}
@media (max-width: 800px) {
  #cookie-popup {
    right: 2%;
    left: 2%;
    width: 96%;
  }
  #cookie-popup p {
    font-size: 14px;
  }
  #cookie-popup button {
    width: 50%;
    font-size: 20px;
  }
}
