#cookie-consent {
  --color-white: #fff;
  --cookie-box-bg: var(https://www.lasphere.com/exposition-gianguido-bonfanti/);
  --cookie-box-backdrop: var(--color-white);
  --cookie-box-shadow: #222222;
  --cookie-text-color: var(--color-gray-800);
  --cookie-checked: green;
  position: fixed;
  bottom: 0;
  z-index: 999;
  width: 100%;
}
#cookie-consent::before {
  content: "";
  z-index: -1;
  display: block;
  position: fixed;
  inset: 0 0 0 0;
  background-color: var(--cookie-box-backdrop);
  opacity: 0.5;
}
#cookie-consent #cookie-main {
  background-color: var(--cookie-box-bg);
  box-shadow: 0 0 50px 0 var(--cookie-box-shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  padding: 2.5em 5vw 3em 5vw;
  align-items: start;
}
#cookie-consent #cookie-main h3 {
  color: var(--cookie-text-color);
  font-weight: 900;
}
#cookie-consent #cookie-main section {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1em 10%;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
}
#cookie-consent #cookie-main section p {
  color: var(--cookie-text-color);
  line-height: 1.2;
  font-size: 0.9em;
  text-wrap: balance;
}
#cookie-consent #cookie-main section a {
  color: var(--cookie-text-color);
  font-weight: bold;
  text-decoration: underline;
}
#cookie-consent ul.cookie-buttons {
  display: flex;
  gap: 1em;
  box-sizing: border-box;
}
#cookie-consent ul.cookie-buttons button {
  cursor: pointer;
  padding: 0.5em 1.5em;
  background: var(--color-theme);
  border: solid 2px var(--color-theme);
  color: var(--color-white);
  font-weight: 900;
  white-space: nowrap;
}
#cookie-consent ul.cookie-buttons button:hover {
  opacity: 0.85;
}
#cookie-consent ul.cookie-buttons button.custom {
  background: var(--color-white);
  border: solid 2px var(--color-theme);
  color: var(--cookie-text-color);
}
#cookie-consent ul.cookie-buttons button.custom:hover {
  background: var(--color-white);
  opacity: 0.85;
}
#cookie-consent #cookie-customize {
  display: none;
}
#cookie-consent.customize {
  display: flex;
  inset: 0 0 0 0;
  justify-content: center;
  align-items: center;
}
#cookie-consent.customize #cookie-main {
  display: none;
}
#cookie-consent.customize #cookie-customize {
  display: flex;
  flex-direction: column;
  gap: 2em;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  padding: 2em;
  background: var(--cookie-box-bg);
  border-radius: 1em;
  box-shadow: 0 0 50px 0 var(--cookie-box-shadow);
}
#cookie-consent.customize #cookie-customize h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--cookie-text-color);
  font-size: 1.5em;
  font-weight: 900;
}
#cookie-consent.customize #cookie-customize h3 button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: sans-serif;
  font-size: 1em;
}
#cookie-consent.customize #cookie-customize .cookie-content {
  overflow-y: auto;
  padding-right: 2em;
}
#cookie-consent.customize #cookie-customize .cookie-content section {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
#cookie-consent.customize #cookie-customize .cookie-content section p {
  color: var(--cookie-text-color);
  font-size: 0.9em;
}
#cookie-consent.customize #cookie-customize .cookie-content .cookie-intro {
  margin-bottom: 2em;
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-height: 75%;
  margin-top: 1em;
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category {
  padding-top: 1em;
  border-top: solid 1px var(--cookie-text-color);
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: var(--cookie-box-bg);
  margin-bottom: 1em;
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category header button.cookie-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category header button.cookie-header::before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin-right: 0.5em;
  border-right: 2px solid var(--cookie-text-color);
  border-bottom: 2px solid var(--cookie-text-color);
  transform: rotate(-45deg);
  transition: transform 0.35s;
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category header button.cookie-header.empty::before {
  opacity: 0.35;
  border-bottom: none;
  transform: rotate(90deg);
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category header button.cookie-header h4 {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  flex: auto;
  font-size: 1.25em;
  font-weight: bold;
  text-align: left;
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category header button.cookie-header h4 .special {
  color: var(--cookie-checked);
  font-size: 0.75em;
  font-weight: bold;
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category button.cookie-boolean {
  cursor: pointer;
  position: relative;
  top: 0;
  width: 2.6em;
  height: 1.4em;
  margin: 0;
  background-color: var(--color-gray-200);
  border-radius: 5em;
  outline: 0;
  border: none;
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category button.cookie-boolean::before {
  content: "";
  position: absolute;
  left: 0.25em;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  border: 3px solid transparent;
  box-sizing: border-box;
  background-color: var(--cookie-box-bg);
  border-radius: 50%;
  transition: 0.4s;
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category button.cookie-boolean.selected {
  background-color: var(--cookie-checked);
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category button.cookie-boolean.selected::before {
  left: 1.3em;
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category button.cookie-boolean.disabled {
  opacity: 0.35;
  pointer-events: none;
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category .cookies {
  display: none;
  flex-direction: column;
  gap: 0;
  margin-top: 1em;
  background: #f4f4f4;
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category .cookies .cookie {
  display: flex;
  flex-direction: column;
  padding: 1em 0.5em;
  border-top: solid 1px #e3e3e3;
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category .cookies .cookie:first-child {
  border: none;
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category .cookies .cookie .cookie-row {
  display: flex;
  margin-bottom: 1em;
  font-size: 0.9rem;
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category .cookies .cookie .cookie-row:last-child {
  margin-bottom: 0;
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category .cookies .cookie .cookie-row .cookie-label {
  width: 100px;
  color: var(--cookie-text-color);
  font-weight: bold;
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category .cookies .cookie .cookie-row .cookie-value {
  flex: 1;
  color: var(--cookie-text-color);
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category.expanded header button.cookie-header::before {
  transform: rotate(45deg);
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category.expanded .cookies {
  display: flex;
}
#cookie-consent.customize #cookie-customize ul.cookie-buttons {
  width: 100%;
  flex-wrap: wrap;
}
#cookie-consent.customize #cookie-customize ul.cookie-buttons button {
  flex: auto;
}

@media only screen and (max-width: 800px) {
  #cookie-consent #cookie-main section {
    flex-direction: column;
  }
  #cookie-consent #cookie-main section p {
    text-wrap: initial;
  }
  #cookie-consent #cookie-main .cookie-buttons {
    width: 100%;
    justify-content: space-between;
  }
  #cookie-consent #cookie-main .cookie-buttons button {
    width: 100%;
  }
}
@media only screen and (max-width: 800px) and (max-width: 600px) {
  #cookie-consent #cookie-main .cookie-buttons button {
    flex-direction: column;
  }
}
@media only screen and (max-width: 800px) {
  #cookie-consent.customize {
    padding: 2em;
  }
  #cookie-consent.customize #cookie-customize {
    max-height: 99%;
    box-sizing: border-box;
  }
  #cookie-consent.customize #cookie-customize .cookie-buttons {
    flex-direction: column;
  }
}
@media only screen and (max-width: 550px) {
  #cookie-consent #cookie-main .cookie-buttons {
    flex-direction: column;
  }
  #cookie-consent ul.cookie-buttons button {
    white-space: wrap;
  }
}/*# sourceMappingURL=cookie-consent.css.map */