#cookie-consent {
  position: fixed;
  bottom: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #f4f4f4;
  box-shadow: 0 -1px 10px 0 rgba(172, 171, 171, 0.3019607843);
}
#cookie-consent #cookie-main {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding: 1em 2em;
}
#cookie-consent #cookie-main section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2em;
  width: 100%;
}
#cookie-consent #cookie-main section p {
  line-height: 1.5em;
}
#cookie-consent #cookie-main section a {
  color: blue;
  font-weight: bold;
  text-decoration: underline;
}
#cookie-consent ul.cookie-buttons {
  display: flex;
  gap: 1em;
}
#cookie-consent ul.cookie-buttons button {
  padding: 1em;
  background: blue;
  border: solid 2px blue;
  color: white;
  white-space: nowrap;
}
#cookie-consent ul.cookie-buttons button:hover {
  background-color: #55F;
  border-color: #55F;
}
#cookie-consent ul.cookie-buttons button.custom {
  background: white;
  border: solid 2px blue;
  color: blue;
}
#cookie-consent ul.cookie-buttons button.custom:hover {
  background: white;
  border-color: #55F;
}
#cookie-consent #cookie-customize {
  display: none;
}
#cookie-consent.customize {
  top: 0;
  left: 0;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 2em 20%;
  background-color: rgba(0, 0, 0, 0.3333333333);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border: none;
}
#cookie-consent.customize #cookie-main {
  display: none;
}
#cookie-consent.customize #cookie-customize {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-height: 90%;
  padding: 1em 0;
  background: white;
  border-radius: 5px;
  box-shadow: 0 32px 68px rgba(0, 0, 0, 0.3);
}
#cookie-consent.customize #cookie-customize h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}
#cookie-consent.customize #cookie-customize .cookie-content {
  max-height: 90%;
  overflow-y: auto;
}
#cookie-consent.customize #cookie-customize .cookie-content section {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 0 30px;
}
#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 #EEEEEE;
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  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%;
}
#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 black;
  border-bottom: 2px solid black;
  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: green;
  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: 44px;
  height: 24px;
  margin: 0;
  background: #d0d5d2;
  background-color: rgb(208, 213, 210);
  border-radius: 50px;
  outline: 0;
  border: none;
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category button.cookie-boolean::before {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 2px;
  width: 20px;
  height: 20px;
  margin: 0;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.4s;
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category button.cookie-boolean.selected {
  background-color: rgb(24, 99, 220);
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category button.cookie-boolean.selected::before {
  transform: translateX(18px);
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category button.cookie-boolean.disabled {
  opacity: 0.35;
}
#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.9em;
}
#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;
  font-weight: bold;
}
#cookie-consent.customize #cookie-customize .cookie-content #cookie-types .cookie-category .cookies .cookie .cookie-row .cookie-value {
  flex: 1;
}
#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%;
  margin-top: 2em;
  padding: 0 30px;
}
#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.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;
  }
}/*# sourceMappingURL=cookie-consent.css.map */