/* Cookie Consent Popup */
.cookie-consent-container {
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
  align-items: flex-end;
}

.cookie-consent-container.active {
  display: flex;
}

.cookie-consent-container .content {
  background-color: #fff;
  padding: 5vw 3vw;
  color: #4e4e4e;
  width: inherit;
}

.cookie-consent-container p {
  padding-top: 25px;
}

.cookie-consent-buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 2em;
}

.cookie-consent-button {
  border: none;
  outline: none;
  padding: .8em 1.5em;
  width: 100px;
  margin-right: 1em;
  border-radius: 3px;
  text-transform: uppercase;
}

.cookie-consent-button:hover {
  cursor: pointer;
  color: rgb(200, 200, 200);
  transition: 0.5s;
}

.accept {
  background-color: #4e4e4e;
  color: #fff;
}