input[type="checkbox"].cmplz-category {
  width: initial;
  -webkit-appearance: checkbox;
}
input[type="checkbox"].cmplz-category:checked::before {
  content: "";
}
.cmplz-cookiebanner {
  box-sizing: border-box;
}
:root {
  --cmplz_banner_width: 600px;
  --cmplz_banner_background_color: #ffffff;
  --cmplz_banner_border_color: #333333;
  --cmplz_banner_border_width: 0px 0px 0px 0px;
  --cmplz_banner_border_radius: 12px 12px 12px 12px;
  --cmplz_banner_margin: 10px;
  --cmplz_categories-height: 110px;
  --cmplz_title_font_size: 15px;
  --cmplz_text_line_height: calc(var(--cmplz_text_font_size) * 1.5);
  --cmplz_text_color: #222222;
  --cmplz_hyperlink_color: #1e73be;
  --cmplz_text_font_size: 12px;
  --cmplz_link_font_size: 12px;
  --cmplz_category_body_font_size: 12px;
  --cmplz_button_accept_background_color: #333333;
  --cmplz_button_accept_border_color: #333333;
  --cmplz_button_accept_text_color: #ffffff;
  --cmplz_button_deny_background_color: #ffffff;
  --cmplz_button_deny_border_color: #ffffff;
  --cmplz_button_deny_text_color: #333333;
  --cmplz_button_settings_background_color: #ffffff;
  --cmplz_button_settings_border_color: #333333;
  --cmplz_button_settings_text_color: #333333;
  --cmplz_button_border_radius: 6px 6px 6px 6px;
  --cmplz_button_font_size: 15px;
  --cmplz_category_header_always_active_color: green;
  --cmplz_category_header_title_font_size: 14px;
  --cmplz_category_header_active_font_size: 12px;
  --cmplz-manage-consent-height: 50px;
  --cmplz-manage-consent-offset: -35px;
  --cmplz_slider_active_color: #61ce71;
  --cmplz_slider_inactive_color: #f8be2e;
  --cmplz_slider_bullet_color: #ffffff;
}
#cmplz-manage-consent .cmplz-manage-consent {
  margin: unset;
  z-index: 9998;
  color: var(--cmplz_text_color);
  background-color: var(--cmplz_banner_background_color);
  border-style: solid;
  border-color: var(--cmplz_banner_border_color);
  border-width: var(--cmplz_banner_border_width);
  border-radius: var(--cmplz_banner_border_radius);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  line-height: initial;
  position: fixed;
  bottom: var(--cmplz-manage-consent-offset);
  min-width: 100px;
  height: var(--cmplz-manage-consent-height);
  right: 40px;
  padding: 15px;
  cursor: pointer;
  animation: mc_slideOut 0.5s forwards;
}
#cmplz-manage-consent .cmplz-manage-consent:active {
  outline: none;
  border: none;
}
#cmplz-manage-consent .cmplz-manage-consent.cmplz-dismissed {
  display: none;
}
#cmplz-manage-consent .cmplz-manage-consent:hover {
  animation: mc_slideIn 0.5s forwards;
  animation-delay: 0;
}
@-webkit-keyframes mc_slideIn {
  100% {
    bottom: 0;
  }
}
@keyframes mc_slideIn {
  100% {
    bottom: 0;
  }
}
@-webkit-keyframes mc_slideOut {
  100% {
    bottom: var(--cmplz-manage-consent-offset);
  }
}
@keyframes mc_slideOut {
  100% {
    bottom: var(--cmplz-manage-consent-offset);
  }
}
@media (max-width: 425px) {
  .cmplz-cookiebanner .cmplz-header .cmplz-title {
    display: none;
  }
}
.cmplz-cookiebanner {
  max-height: calc(100vh - 20px);
  position: fixed;
  height: auto;
  left: 50%;
  top: 50%;
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  grid-template-rows: minmax(0, 1fr);
  z-index: 99999;
  background: var(--cmplz_banner_background_color);
  border-style: solid;
  border-color: var(--cmplz_banner_border_color);
  border-width: var(--cmplz_banner_border_width);
  border-radius: var(--cmplz_banner_border_radius);
  padding: 15px 20px;
  display: grid;
  grid-gap: 10px;
}
.cmplz-cookiebanner a {
  transition: initial;
}
.cmplz-cookiebanner .cmplz-buttons a.cmplz-btn.tcf {
  display: none;
}
.cmplz-cookiebanner.cmplz-dismissed {
  display: none;
}
.cmplz-cookiebanner .cmplz-body {
  width: 100%;
  grid-column: span 3;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 55vh;
}
.cmplz-cookiebanner .cmplz-body::-webkit-scrollbar-track {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0);
  background-color: transparent;
}
.cmplz-cookiebanner .cmplz-body::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
}
.cmplz-cookiebanner .cmplz-body::-webkit-scrollbar-thumb {
  background-color: var(--cmplz_button_accept_background_color);
  border-radius: 10px;
}
@media (min-width: 350px) {
  .cmplz-cookiebanner .cmplz-body {
    min-width: 300px;
  }
}
.cmplz-cookiebanner .cmplz-divider {
  margin-left: -20px;
  margin-right: -20px;
}
.cmplz-cookiebanner .cmplz-header {
  grid-template-columns: 100px 1fr 100px;
  align-items: center;
  display: grid;
  grid-column: span 3;
}
.cmplz-cookiebanner .cmplz-logo svg {
  max-height: 35px;
  width: inherit;
}
.cmplz-cookiebanner .cmplz-logo img {
  max-height: 40px;
  width: inherit;
}
.cmplz-cookiebanner .cmplz-title {
  justify-self: center;
  grid-column-start: 2;
  font-size: var(--cmplz_title_font_size);
  color: var(--cmplz_text_color);
  font-weight: 500;
}
.cmplz-cookiebanner .cmplz-close {
  line-height: 20px;
  justify-self: end;
  grid-column-start: 3;
  font-size: 20px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  color: var(--cmplz_text_color);
}
.cmplz-cookiebanner .cmplz-close svg {
  width: 20px;
  height: 20px;
}
.cmplz-cookiebanner .cmplz-close:hover {
  text-decoration: none;
  line-height: initial;
  font-size: 18px;
}
.cmplz-cookiebanner .cmplz-message {
  word-wrap: break-word;
  font-size: var(--cmplz_text_font_size);
  line-height: var(--cmplz_text_line_height);
  color: var(--cmplz_text_color);
  margin-bottom: 5px;
}
.cmplz-cookiebanner .cmplz-message a {
  color: var(--cmplz_hyperlink_color);
}
.cmplz-cookiebanner .cmplz-message,
.cmplz-cookiebanner .cmplz-categories,
.cmplz-cookiebanner .cmplz-links,
.cmplz-cookiebanner .cmplz-buttons,
.cmplz-cookiebanner .cmplz-divider {
  grid-column: span 3;
}
.cmplz-cookiebanner
  .cmplz-categories.cmplz-tcf
  .cmplz-category
  .cmplz-category-header {
  grid-template-columns: 1fr auto;
}
.cmplz-cookiebanner .cmplz-categories .cmplz-category {
  background-color: rgba(239, 239, 239, 0.5);
}
.cmplz-cookiebanner .cmplz-categories .cmplz-category:not(:last-child) {
  margin-bottom: 10px;
}
.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header {
  display: grid;
  grid-template-columns: 1fr auto 15px;
  grid-template-rows: minmax(0, 1fr);
  align-items: center;
  grid-gap: 10px;
  padding: 10px;
}
.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-category-header
  .cmplz-category-title {
  font-weight: 500;
  grid-column-start: 1;
  justify-self: start;
  font-size: var(--cmplz_category_header_title_font_size);
  color: var(--cmplz_text_color);
  margin: 0;
}
.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-category-header
  .cmplz-always-active {
  font-size: var(--cmplz_category_header_active_font_size);
  font-weight: 500;
  color: var(--cmplz_category_header_always_active_color);
}
.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-category-header
  .cmplz-always-active
  label {
  display: none;
}
.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-category-header
  .cmplz-banner-checkbox {
  display: flex;
  align-items: center;
  margin: 0;
}
.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-category-header
  .cmplz-banner-checkbox
  label
  > span {
  display: none;
}
.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-category-header
  .cmplz-banner-checkbox
  input[data-category="cmplz_functional"] {
  display: none;
}
.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-category-header
  .cmplz-icon.cmplz-open {
  grid-column-start: 3;
  cursor: pointer;
  content: "";
  transform: rotate(0deg);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-size: cover;
  height: 18px;
  width: 18px;
}
.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category[open]
  .cmplz-icon.cmplz-open {
  transform: rotate(180deg);
}
.cmplz-cookiebanner .cmplz-categories .cmplz-category summary {
  display: block;
}
.cmplz-cookiebanner .cmplz-categories .cmplz-category summary::marker {
  display: none;
  content: "";
}
.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  summary::-webkit-details-marker {
  display: none;
  content: "";
}
.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-description {
  font-size: var(--cmplz_category_body_font_size);
  color: var(--cmplz_text_color);
  margin: 0;
  max-width: 100%;
  padding: 10px;
}
@media (max-width: 425px) {
  .cmplz-cookiebanner .cmplz-category .cmplz-category-header {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 425px) {
  .cmplz-cookiebanner .cmplz-message {
    margin-right: 5px;
  }
}
.cmplz-cookiebanner .cmplz-buttons {
  display: flex;
  gap: var(--cmplz_banner_margin);
}
.cmplz-cookiebanner .cmplz-buttons .cmplz-btn {
  height: 45px;
  padding: 10px;
  margin: initial;
  width: 100%;
  white-space: nowrap;
  border-radius: var(--cmplz_button_border_radius);
  cursor: pointer;
  font-size: var(--cmplz_button_font_size);
  font-weight: 500;
  text-decoration: none;
  line-height: 20px;
  text-align: center;
  flex: initial;
}
.cmplz-cookiebanner .cmplz-buttons .cmplz-btn:hover {
  text-decoration: none;
}
.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-accept {
  background-color: var(--cmplz_button_accept_background_color);
  border: 1px solid var(--cmplz_button_accept_border_color);
  color: var(--cmplz_button_accept_text_color);
}
.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-deny {
  background-color: var(--cmplz_button_deny_background_color);
  border: 1px solid var(--cmplz_button_deny_border_color);
  color: var(--cmplz_button_deny_text_color);
}
.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-view-preferences {
  background-color: var(--cmplz_button_settings_background_color);
  border: 1px solid var(--cmplz_button_settings_border_color);
  color: var(--cmplz_button_settings_text_color);
}
.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-save-preferences {
  background-color: var(--cmplz_button_settings_background_color);
  border: 1px solid var(--cmplz_button_settings_border_color);
  color: var(--cmplz_button_settings_text_color);
}
.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-manage-options {
  background-color: var(--cmplz_button_settings_background_color);
  border: 1px solid var(--cmplz_button_settings_border_color);
  color: var(--cmplz_button_settings_text_color);
}
.cmplz-cookiebanner .cmplz-buttons a.cmplz-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: initial;
}
@media (max-width: 425px) {
  .cmplz-cookiebanner .cmplz-links.cmplz-information {
    display: initial;
    text-align: center;
  }
}
.cmplz-cookiebanner .cmplz-links {
  display: flex;
  gap: var(--cmplz_banner_margin);
}
.cmplz-cookiebanner .cmplz-links.cmplz-information {
  justify-content: space-between;
}
.cmplz-cookiebanner .cmplz-links.cmplz-documents {
  justify-content: center;
}
.cmplz-cookiebanner .cmplz-links .cmplz-link {
  color: var(--cmplz_hyperlink_color);
  font-size: var(--cmplz_link_font_size);
  text-decoration: underline;
  margin: 0;
}
.cmplz-cookiebanner .cmplz-links .cmplz-link.cmplz-read-more-purposes {
  display: none;
}
.cmplz-categories .cmplz-category .cmplz-description-statistics-anonymous {
  display: none;
}
.cmplz-categories .cmplz-category .cmplz-description-statistics {
  display: block;
}
@media (min-width: 768px) {
  .cmplz-cookiebanner {
    min-width: var(--cmplz_banner_width);
    max-width: 100%;
    display: grid;
    grid-row-gap: 10px;
  }
}
@media (max-width: 768px) {
  .cmplz-cookiebanner {
    width: 100%;
  }
  .cmplz-cookiebanner .cmplz-buttons {
    flex-direction: column;
  }
}
@media (min-width: 769px) {
  .cmplz-message,
  .cmplz-categories {
    width: calc(var(--cmplz_banner_width) - 42px);
  }
}
.cmplz-cookiebanner .cmplz-links.cmplz-information {
  display: none;
}
.cmplz-cookiebanner .tcf {
  --cmplz_bottom_banner_breakpoint: 768px;
  display: block;
}
@media (max-width: 425px) {
  @media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
      .cmplz-cookiebanner .cmplz-header {
        display: none;
      }
    }
  }
}
.cmplz-cookiebanner .optin .cmplz-categories.cmplz-tcf {
  display: block;
}
.cmplz-cookiebanner .optout .cmplz-categories.cmplz-tcf {
  display: none;
}
.cmplz-cookiebanner .cmplz-categories:not(.cmplz-tcf),
.cmplz-cookiebanner .cmplz-manage-third-parties,
.cmplz-cookiebanner .cmplz-save-preferences,
.cmplz-cookiebanner .cmplz-view-preferences,
.cmplz-cookiebanner .cmplz-manage-options {
  display: none;
}
.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-category-header
  .cmplz-title {
  justify-self: left;
  grid-column-start: 1;
}
.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-category-header
  .cmplz-always-active {
  justify-self: right;
}
.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-category-header
  .cmplz-description {
  padding: 0;
}
.cmplz-cookiebanner .cmplz-links.cmplz-information {
  display: flex;
}
.cmplz-cookiebanner
  .cmplz-links.cmplz-information
  .cmplz-link.cmplz-read-more-purposes.tcf {
  display: block;
}
.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-manage-options.tcf {
  background-color: var(--cmplz_button_settings_background_color);
  border: 1px solid var(--cmplz_button_settings_border_color);
  color: var(--cmplz_button_settings_text_color);
}
.cmplz-cookiebanner .cmplz-buttons a.cmplz-btn.cmplz-manage-options.tcf {
  display: flex;
}
.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-category-header
  .cmplz-category-title {
  margin: 0 0 5px 0;
}
@media (min-width: 1024px) {
  .cmplz-cookiebanner.cmplz-bottom .cmplz-body > div {
    width: 49%;
  }
}
@media (min-width: 768px) {
  .cmplz-cookiebanner .cmplz-categories {
    height: 280px;
  }
}
.cmplz-cookiebanner.cmplz-bottom .cmplz-buttons {
  flex-direction: column;
}
.cmplz_tcf_legitimate_interest_checkbox {
  display: none;
}
.cmplz-tcf-type-description {
  margin: 20px;
  display: none;
}
#cmplz-document .cmplz-tcf-rm:after {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/></svg>')
    no-repeat;
}
#cmplz-document .cmplz-tcf-rl:after {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0z" fill="none"/><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/></svg>')
    no-repeat;
}
#cmplz-document .cmplz-tcf-toggle,
#cmplz-document .cmplz-tcf-toggle-vendor {
  text-decoration: none;
  border-bottom: 0;
}
#cmplz-document .cmplz-tcf-toggle:after,
#cmplz-document .cmplz-tcf-toggle-vendor:after {
  content: "";
  display: inline-block;
  height: 15px;
  width: 15px;
  background-size: cover;
}
#cmplz-document .cmplz-tcf-expl-header {
  margin-top: 15px;
}
.cmplz-tcf-category-expl p,
.cmplz-tcf-category-expl a {
  font-size: 13px;
  color: #333;
}
.cmplz-tcf-category-expl a {
  text-decoration: underline;
}
.cmplz-tcf-category-expl .cmplz-tcf-banner-marketing-purposes,
.cmplz-tcf-category-expl .cmplz-tcf-banner-statistics-purposes {
  max-width: fit-content;
}
.cmplz-tcf-template {
  display: none;
}
.cmplz-tcf-buttons {
  margin-top: 20px;
}
.cmplz-tcf-buttons button {
  margin-right: 20px;
  margin-bottom: 20px;
}
.cmplz-tcf-container {
  max-height: 400px;
  overflow-y: auto;
  padding: 10px;
}
.cmplz-tcf-container .cmplz-tcf-vendor-container {
  margin-bottom: 20px;
}
.cmplz-tcf-container
  .cmplz-tcf-vendor-container.cmplz-vendortype-tcf
  .cmplz-vendortype-label {
  display: none;
}
.cmplz-tcf-container .cmplz-tcf-vendor-container label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cmplz-tcf-container .cmplz-tcf-vendor-container label .cmplz-vendortype-label {
  background-color: #333;
  color: white;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 3px;
}
.cmplz-tcf-container .cmplz-tcf-checkbox-container input {
  margin-right: 5px;
}
.cmplz-tcf-container
  .cmplz-tcf-checkbox-container.cmplz-vendortype-ac
  .cmplz-tcf-info
  .cmplz-tcf-info-content:not(:first-child) {
  display: none;
}
.cmplz-tcf-container .cmplz-tcf-checkbox-container .cmplz-tcf-links {
  display: flex;
}
.cmplz-tcf-container
  .cmplz-tcf-checkbox-container
  .cmplz-tcf-links
  .cmplz-tcf-policy-url {
  margin-left: 30px;
  min-width: 125px;
}
.cmplz-tcf-container
  .cmplz-tcf-checkbox-container
  .cmplz-tcf-links
  .cmplz-tcf-showinfo {
  margin-left: 20px;
}
.cmplz-tcf-container .cmplz-tcf-checkbox-container .cmplz-tcf-info {
  display: none;
}
.cmplz-tcf-container
  .cmplz-tcf-checkbox-container
  .cmplz-tcf-info
  .cmplz-tcf-info-content {
  line-height: 33px;
  margin-left: 30px;
  display: flex;
}
.cmplz-tcf-container
  .cmplz-tcf-checkbox-container
  .cmplz-tcf-info
  .cmplz-tcf-info-content
  .retention_seconds,
.cmplz-tcf-container
  .cmplz-tcf-checkbox-container
  .cmplz-tcf-info
  .cmplz-tcf-info-content
  .retention_days,
.cmplz-tcf-container
  .cmplz-tcf-checkbox-container
  .cmplz-tcf-info
  .cmplz-tcf-info-content
  .session-storage,
.cmplz-tcf-container
  .cmplz-tcf-checkbox-container
  .cmplz-tcf-info
  .cmplz-tcf-info-content
  .non-cookie-storage-inactive,
.cmplz-tcf-container
  .cmplz-tcf-checkbox-container
  .cmplz-tcf-info
  .cmplz-tcf-info-content
  .non-cookie-storage-active,
.cmplz-tcf-container
  .cmplz-tcf-checkbox-container
  .cmplz-tcf-info
  .cmplz-tcf-info-content
  .non-cookie-refresh-inactive,
.cmplz-tcf-container
  .cmplz-tcf-checkbox-container
  .cmplz-tcf-info
  .cmplz-tcf-info-content
  .non-cookie-refresh-active {
  display: none;
}
.cmplz-tcf-container
  .cmplz-tcf-checkbox-container
  .cmplz-tcf-info
  .cmplz-tcf-info-content
  .cmplz-tcf-header {
  min-width: 125px;
}
.cmplz-tcf-container
  .cmplz-tcf-checkbox-container
  .cmplz-tcf-info
  .cmplz-tcf-info-content
  .cmplz-tcf-description {
  display: flex;
  flex-wrap: wrap;
}
.cmplz-tcf-container
  .cmplz-tcf-checkbox-container
  .cmplz-tcf-info
  .cmplz-tcf-info-content
  .cmplz-tcf-description
  input {
  margin-left: 15px;
}
.cmplz-cookiebanner .cmplz-preferences,
.cmplz-manage-consent-container .cmplz-preferences {
  display: none;
}
.cmplz-cookiebanner .cmplz-statistics:not(.cmplz-tcf),
.cmplz-manage-consent-container .cmplz-statistics:not(.cmplz-tcf) {
  display: none;
}
#cmplz-manage-consent .cmplz-manage-consent {
  display: none;
}
.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox {
  position: relative;
}
.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-banner-checkbox
  input.cmplz-consent-checkbox {
  opacity: 0;
  margin: 0;
  margin-top: -10px;
  cursor: pointer;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  width: 40px;
  height: 20px;
}
.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-banner-checkbox
  input.cmplz-consent-checkbox:focus
  + .cmplz-label:before {
  box-shadow: 0 0 0 2px #245fcc;
}
.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-banner-checkbox
  input.cmplz-consent-checkbox:checked
  + .cmplz-label::before {
  display: block;
  background-color: var(--cmplz_slider_active_color);
  content: "";
  padding-left: 6px;
}
.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-banner-checkbox
  input.cmplz-consent-checkbox:checked
  + .cmplz-label:after {
  left: 14px;
}
.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-banner-checkbox
  .cmplz-label {
  position: relative;
  padding-left: 30px;
  margin: 0;
}
.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-banner-checkbox
  .cmplz-label:before,
.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-banner-checkbox
  .cmplz-label:after {
  box-sizing: border-box;
  position: absolute;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  transition: background-color 0.3s, left 0.3s;
}
.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-banner-checkbox
  .cmplz-label:before {
  display: block;
  content: "";
  color: #fff;
  box-sizing: border-box;
  font-family: "FontAwesome", sans-serif;
  padding-left: 23px;
  font-size: 12px;
  line-height: 20px;
  background-color: var(--cmplz_slider_inactive_color);
  left: 0px;
  top: -7px;
  height: 15px;
  width: 28px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-banner-checkbox
  .cmplz-label:after {
  display: block;
  content: "";
  letter-spacing: 20px;
  background: var(--cmplz_slider_bullet_color);
  left: 4px;
  top: -5px;
  height: 11px;
  width: 11px;
}
.cmplz-cookiebanner {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
#cmplz-manage-consent .cmplz-manage-consent {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.cmplz-cookiebanner.cmplz-show {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.cmplz-cookiebanner.cmplz-show:hover {
  transition-duration: 1s;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
.cmplz-categories .cmplz-category .cmplz-description-statistics-anonymous {
  display: block;
}
.cmplz-categories .cmplz-category .cmplz-description-statistics {
  display: none;
}
