:root {
  --accent-color: #7d723d;
  --accent-hover: #a3a090;
  --popup-background: #ffffff;
  --popup-text-color: #000000;
  --popup-button-color: #ffffff;
  --popup-button-hover-color: #ffffff;
}

.cookie-popup-container {
  display: none;
}

.cookie-popup-container * {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.cookie-popup-container .cookie-popup {
  width: min(920px, 95%);
  border-radius: 6px;
  padding: 15px;
  background-color: var(--popup-background);
  position: fixed;
  left: calc(50% - min(460px, 47.5%));
  bottom: 20px;
  z-index: 999999 !important;
  transition: 300ms;
}

.cookie-popup-container .cookie-popup .cookie-popup-content-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-popup-container .cookie-popup .cookie-popup-content-container p {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  color: var(--popup-text-color);
}

.cookie-popup-container .cookie-popup .cookie-popup-content-container .nowrap {
  white-space: nowrap;
}

.cookie-popup-container .cookie-popup .cookie-content {
  max-width: calc(100% - 115px);
}

.cookie-popup-container .cookie-popup .cookie-decide {
  width: 100px;
  display: flex;
  align-items: center;
}

.cookie-popup-container .cookie-decide ul {
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100px;
}

.cookie-decide ul li {
  width: 100%;
  text-align: center;
  border: 2px solid var(--accent-color);
  border-radius: 6px;
  padding: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 300ms;
  font-size: 12px;
  line-height: 18px;
}

.cookie-decide ul li.allow {
  background-color: var(--accent-color);
  color: var(--popup-button-color);
  margin: 0 !important;
}

.cookie-decide ul li.allow:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--popup-button-hover-color);
}

a.policy-href {
  text-decoration: none;
  font-size: 12px !important;
  line-height: 18px;
  font-weight: 600 !important;
  transition: 300ms;
}

@media screen and (max-width: 425px) {
  .cookie-popup-container .cookie-popup .cookie-popup-content-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-popup-container .cookie-popup .cookie-content {
    max-width: 100%;
  }

  .cookie-popup-container .cookie-popup .cookie-content p {
    margin-bottom: 10px;
  }
}
