/* ---- COOKIE ---- */
html.cookiefox-modal-open,
body.cookiefox-modal-open {
  overflow: hidden;
  max-height: 100vh;
}


#lightbox.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  width: calc(100vw - 22px);
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  background-color: #c8ff70;
  color: #95AAFF;
  padding: 15px;
  box-shadow: none
  z-index: 1000;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
  align-items: center;
}

.cookie-banner p,
.cookie-banner p a {
  display: inline-block;
  margin: 0;
  padding-right: 10px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 22px;
  text-decoration: none;
}

.cookie-banner p {
  width: calc(100% - 22px);
  text-align: center;
}

.cookie-banner p a {
  padding-right: 0;
}

.cookie-banner p a:hover {
  text-decoration: underline;
  color: #fff;
}

.cookie-banner .close-icon {
  cursor: pointer;
  vertical-align: middle;
  top: 50%;
  right: 15px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}

.cookie-btn {
  background-color: #fff;
  background: #fff;
  margin-bottom: 0px;
  position: relative;
  cursor: pointer;
  margin-right: 18px;
  border: 1px solid #fff;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  color: #000;
  height: 100%;
  vertical-align: middle;
  border-radius: 52px;
  padding: 10px 33px;
  transition: all 0.2s ease;
}

.cookie-btn:hover {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---- POPUP  ---- */

#cookie-consent.popup {
  display: none;
  position: fixed;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
  background-color: #242628 ;
  padding: 40px;
  z-index: 1001;
  width: calc(100% - 80px);
  max-height: 80vh;
  max-width: calc(1400px - 80px);
  box-shadow: none;
  justify-content: center;
  flex-direction: column;
}

#cookie-consent.popup::before, #cookie-consent.popup::after  { 
  position: absolute;
  content: "";
  top: 0;
  width: 25vw;
  height: 100%;
  background: #242628 ;
  z-index: 1;
}

#cookie-consent.popup::before {
  right: 100%;
} 
#cookie-consent.popup::after  { 
  left: 100%;
} 

#cookie-consent.popup .popup-title {
  color: #fff;
  text-align: center;
  margin-bottom: 38px;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  line-height: 27px;
  color: #fff;
}

#cookie-consent.popup .popup-text, #cookie-consent.popup .popup-text a {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 30px;
  text-align: center;
}

#cookie-consent.popup .popup-content {
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  flex: 1 1 auto;
  min-height: 0; 
  
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain; 
}

.cookiefox__text p {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 25px;
}

.cookiefox__details-summary {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 20px;
  cursor: pointer;
}

.cookiefox__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10%;
  justify-content: center;
}

.cookiefox__category-label {
  display: flex;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 22px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.cookiefox__category-checkbox {
  margin-right: 10px;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  background-color: #fff;
  position: relative;
}

.cookiefox__category-checkbox:checked::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 5px;
  width: 5px;
  height: 10px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cookiefox__category-label.is-disabled {
  cursor: not-allowed;
}

.cookiefox__footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.cookiefox__spacer {
  flex: 1;
}

.cookiefox__details-description {
  margin-top: 10px;
}

.cookiefox__details-more {
  margin-top: 10px;
}

.cookiefox__details-cookies {
  margin-top: 10px;
}

.cookiefox__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.cookiefox__th,
.cookiefox__td {
  border: 1px solid #fff;
  padding: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 22px;
  color: #fff;
  background-color: transparent;
  text-align: left;
}

.cookiefox__th {
  font-weight: normal;
}

.cookiefox__td a {
  color: #fff;
}

.cookiefox__details-description hr {
  color: transparent;
  margin-top: 32px;
  margin-bottom: 32px;
}

button#accept-cookies {
  margin-right: 0px;
}

.cookie-link {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 22px;
  text-decoration: underline;
  color: #fff;
}

.cookie-link:hover {
  text-decoration: underline;
  color: #fff;
}

/* manage button */
.cookiefox__meta {
  text-align: center;
}

.cookie-btn#manage-cookies {
  border: none;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 22px;
  background: none;
  color: #fff;
  text-decoration: underline;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  margin-top: 20px;
}

@media (max-width: 900px) {
  #cookie-consent.popup {
    width: calc(100% - 20px);
    padding-left: 10px;
  }
  
  .cookiefox__footer {
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  #cookie-consent.popup .popup-content {
    padding-right: 10px;
  }

  button#accept-cookies {
    margin-right: 10px;
  }

  .cookie-btn {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 22px;
    padding-left: 20px;
    padding-right: 15px;
    margin-right: 10px;
  }
  
  .cookiefox__categories {
    gap: 2%;
  }

  .cookie-btn#manage-cookies {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 22px;
    margin-top: 20px;
  }

  #cookie-consent.popup .popup-title,
  .cookiefox__category-label {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 22px;  
  }

  #cookie-consent.popup .popup-text,
  .cookiefox__text p,
  .cookiefox__details-summary,
  .cookiefox__th,
  .cookiefox__td,
  .cookie-link {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 22px;
  }

  .cookiefox__details-description hr {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  #cookie-consent.popup .popup-title {
    margin-bottom: 20px;
  }
}