#ccBar {
  --cc-surface: var(--panel-bg, rgba(19, 18, 18, 0.86));
  --cc-surface-strong: var(--bg-200, #332d2c);
  --cc-surface-contrast: var(--bg-300, #eceaea);
  --cc-surface-muted: var(--surface-muted, #2f2726);
  --cc-text: var(--text-100, #f3eed9);
  --cc-text-muted: var(--text-200, #d1e7e0);
  --cc-link: var(--text-200, #d1e7e0);
  --cc-accent: var(--primary-200, #ad514c);
  --cc-accent-strong: var(--primary-100, #741e20);
  --cc-border: var(--surface-border, rgba(243, 238, 217, 0.12));
  --cc-border-strong: var(--surface-border-strong, rgba(173, 81, 76, 0.35));
  --cc-shadow-strong: var(--shadow-soft, 0 24px 48px rgba(0, 0, 0, 0.3));

  background: var(--cc-surface);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 10px;
  font-family: var(--font-family, "Outfit", sans-serif);
  color: var(--cc-text);
  font-size: 12px;
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 9999;
}
#ccBar label {
  color: var(--cc-text);
}
#ccBar * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
#ccBarMain,
#ccBarMore {
  max-width: 1200px;
  margin: 0 auto;
}
#ccBarMain {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  flex-wrap: wrap;
}
#ccBarMainInner {
  width: 80%;
}
#ccBarMain > div {
  padding: 10px;
}
#ccBar p {
  margin: 0;
  margin-bottom: 5px;
  color: var(--cc-text);
}
#ccBarIntro {
  margin-bottom: 20px;
}
#ccBarButtonOuttro {
  text-align: center;
  flex: 1;
  font-size: 11px;
}
#ccBar.visible {
  opacity: 1;
  visibility: visible !important;
  transition: opacity 0.8s;
}
#ccBar ul {
  list-style: none;
  padding: 0px;
  flex-wrap: wrap;
}
#ccBarCategories {
  display: flex;
  flex-direction: row;
}
.ccBarCategory {
  margin-right: 20px;
  flex-basis: 20%;
}
.ccBarCategory:last-child {
  flex-grow: 1;
}
.ccBarCategoryHeading {
  font-weight: bold;
  font-size: 11px;
  margin-bottom: 5px;
}

/* Buttons */
#ccBarButtons {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  width: 20%;
}
#ccBarButtons button {
  margin: 5px;
  border: 1px solid var(--cc-border);
  outline: none;
  padding: 8px 5px;
  cursor: pointer;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background: var(--cc-accent);
  color: var(--cc-text);
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
  text-transform: none;
  font-size: 14px;
  box-shadow: var(--cc-shadow-strong);
}
#ccBarButtons button:hover {
  background: var(--cc-accent-strong);
  color: var(--cc-text);
}
#ccBarButtons #ccBarShowMoreButton {
  background: none;
  color: var(--cc-link);
  font-size: 12px;
  cursor: pointer;
  padding: 0px;
  border: none;
  box-shadow: none;
}
#ccBarButtons #ccBarShowMoreButton:hover {
  text-decoration: underline;
  color: var(--cc-text);
}

/* CC Bar More */
#ccBarMore {
  visibility: hidden;
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  height: 0;
  transition: all 0.3s;
}
#ccBarMore > div {
  margin-right: 20px;
}
#ccBarMore.visible {
  border-top: 1px solid var(--cc-border);
  visibility: visible;
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  margin-top: 20px;
  padding-top: 20px;
  height: auto;
}

/* Cookie List */
#ccBar #ccBarCookieList ul {
  display: block !important;
  width: 100%;
  max-width: 400px;
}
#ccBar #ccBarCookieList ul li {
  display: flex;
  display: -webkit-flex;
  width: 100%;
  background: var(--cc-surface-muted);
  color: var(--cc-text);
  padding: 5px 10px !important;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--cc-border);
  border-left: solid 6px var(--cc-accent);
  cursor: initial !important;
}
#ccBar #ccBarCookieList ul li .ccBarCookieListLeft {
  width: 120px;
}
#ccBar #ccBarCookieList ul li .ccBarCookieListRight {
  width: 100px;
}
#ccBar #ccBarCookieList ul li .ccBarCookieDelete {
  background: var(--cc-accent-strong);
  color: var(--cc-text);
  line-height: 1;
  padding: 3px 7px;
  cursor: pointer;
  border: 1px solid var(--cc-border-strong);
  outline: none;
}
#ccBar .ccBarCookieListHeading {
  font-weight: bold;
  margin-top: 20px;
}

#ccBar #ccBarCookieList i {
  display: block;
  margin-top: 20px;
}

#ccBar li.highlighted {
  border-radius: 5px;
  box-shadow: 0 0 20px 0 var(--cc-accent-strong);
  transform: scale(1);
  animation: pulse 2s infinite;
}
#ccBar a {
  color: var(--cc-link);
}

#ccBar a:hover {
  color: var(--cc-text);
}

/* Checkboxes */
#ccBar ul {
  display: flex;
  display: -webkit-flex;
  margin: 0;
  padding: 0;
}
#ccBar ul li {
  margin-right: 10px;
  cursor: pointer;
  margin-bottom: 5px;
  padding: 2px;
  width: 150px;
  font-size: 12px;
}
#ccBar ul li label {
  position: relative;
  min-height: 25px;
  display: block;
  padding-left: 30px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  font-size: 14px;
  text-transform: none;
  color: var(--cc-text);
}
#ccBar ul li label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
  border-radius: 3px;
  background: var(--cc-surface-contrast);
  border: 1px solid var(--cc-border);
}
#ccBar ul li label:after {
  content: "";
  display: block;
  width: 9px;
  height: 4px;
  border-bottom: 2px solid var(--cc-text);
  border-left: 2px solid var(--cc-text);
  transform: rotate(-45deg) scale(0);
  transition: transform ease 0.25s;
  position: absolute;
  top: 7px;
  left: 4px;
}
#ccBar ul li input[type="checkbox"] {
  width: auto;
  opacity: 0.00000001;
  position: absolute;
  left: 0;
  margin-left: -20px;
}
#ccBar ul li input[type="checkbox"]:checked ~ label:before {
  background-color: var(--cc-accent);
  border-color: var(--cc-accent);
}
#ccBar ul li input[type="checkbox"]:checked ~ label:after {
  transform: rotate(-45deg) scale(1);
}
#ccBar ul li input[type="checkbox"]:focus,
#ccBar ul li label::before {
  outline: 0;
}
#ccBar ul li input[type="checkbox"]:checked ~ label.ccBarDisabled:before {
  background: var(--cc-surface-muted);
  border-color: var(--cc-border-strong);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 5px 5px color-mix(in srgb, var(--cc-accent-strong) 0%, transparent);
  }
  50% {
    box-shadow: 0 0 5px 5px color-mix(in srgb, var(--cc-accent-strong) 100%, transparent);
  }
  100% {
    box-shadow: 0 0 5px 5px transparent;
  }
}

@media (max-width: 1024px) {
  #ccBarMainInner {
    width: 70%;
  }
  #ccBarButtons {
    width: 30%;
  }
}

@media (max-width: 900px) {
  #ccBarCategories {
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  #ccBarMain {
    flex-direction: column;
  }
  #ccBarMainInner,
  #ccBarButtons {
    width: 100%;
  }
  #ccBarButtons {
    flex-direction: row;
    flex-wrap: wrap;
  }
  #ccBarButtons button {
    flex: 1;
  }
  #ccBarButtonOuttro {
    width: 100%;
    flex: none;
  }
}
@media (max-width: 500px) {
  #ccBar {
    font-size: 11px;
    overflow-x: auto;
    max-height: 90vh;
  }
  #ccBarIntro {
    text-align: center;
  }
  #ccBarButtons,
  #ccBarCategories {
    flex-direction: column;
  }
}

#ccBarMoreOuttro {
  text-align: right;
}

/* ========== Placeholder ========== */
.ccBarPlaceholder {
  background: var(--cc-surface-contrast);
  padding: 25px;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family, "Outfit", sans-serif);
  font-size: 12px;
  position: relative;
  min-height: 200px;
  color: var(--text-050, #202020);
}
.ccBarPlaceholder .ccBarPlaceholderImage {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}
.ccBarPlaceholder .ccBarPlaceholderImage:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in srgb, var(--cc-surface-contrast) 80%, transparent);
  transition: all 0.3s;
}
.ccBarPlaceholder .ccBarPlaceholderImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.ccBarPlaceholder:hover img {
  transform: scale(1.1);
}
.ccBarPlaceholder .ccBarPlaceholderText {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-000, #0d0c0c);
}
.ccBarPlaceholderTitle {
  font-size: 1.2em;
  font-weight: bold;
}
.ccBarPlaceholder button {
  transition: all 0.3s;
  background-color: var(--cc-accent);
  border: 1px solid var(--cc-border-strong);
  outline: none;
  color: var(--cc-text);
  padding: 7px 15px;
  margin: 20px auto 0px auto;
  display: block;
  cursor: pointer;
  border-radius: 5px;
}
.ccBarPlaceholder button:hover {
  background-color: var(--cc-accent-strong);
}
