:root {
  --cl-backdrop: rgba(21, 25, 34, 0.6);
  --cl-modal-background: #fff;
  --cl-link: #383c43;
  --cl-link-hover: #73757a;
  --cl-secondary: #fff;
  --cl-default-container-width: 360px;
}
@keyframes ConsentModal-fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes ConsentModal-fade-out {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.ConsentWidget__container {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
}
.ConsentWidget {
  color: var(--cl-font-color-main);
  font-family: inherit;
  -webkit-font-smoothing: antialiased;
  border-radius: var(--cl-wdgt-border-radius);
  pointer-events: all;
  box-shadow: 0 0 0 1px #2a2b3212, 0 15px 20px 1px #2a2b321f;
  transition: box-shadow 0.25s ease-out;
  background-color: var(--cl-modal-background);
  padding: 16px;
  margin: 8px;
}
.ConsentWidget__content {
  margin-bottom: 24px;
}
.ConsentWidget__title {
  color: var(--cl-font-color-title);
  font-weight: 600;
  letter-spacing: inherit;
  font-size: 20px;
  line-height: 30px;
  margin: 0 0 8px;
}
.ConsentWidget__text {
  color: var(--cl-font-color-text);
  letter-spacing: inherit;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  margin: 0;
}
.ConsentWidget__link {
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.25s, opacity 0.25s ease-out;
  background-color: transparent;
  color: var(--cl-link);
}
.ConsentWidget__link:hover {
  color: var(--cl-link-hover);
}
.ConsentWidget__link:focus-visible {
  border: 2px solid var(--cl-primary-hover);
  border-radius: 4px;
  outline: none;
}
.ConsentModal__overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  background-color: var(--cl-backdrop);
  line-height: 1.428571429;
  -webkit-font-smoothing: antialiased;
  z-index: 10000;
}
.ConsentModal[aria-hidden="false"] .ConsentModal__overlay {
  animation: ConsentModal-fade-in 0.2s linear;
  animation-fill-mode: forwards;
}
.ConsentModal[aria-hidden="true"] .ConsentModal__overlay {
  animation: ConsentModal-fade-out 0.2s linear;
  animation-fill-mode: forwards;
}
.ConsentModal__container {
  position: fixed;
  inset: 32px 15px;
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  overflow: auto;
  border-radius: var(--cl-wdgt-border-radius);
  background-color: var(--cl-modal-background);
  z-index: 1000;
  font-family: inherit;
}
.ConsentModal[aria-hidden="false"] .ConsentModal__container {
  animation: ConsentModal-fade-in 0.25s linear;
}
.ConsentModal[aria-hidden="true"] .ConsentModal__container {
  animation: ConsentModal-fade-out 0.25s linear;
}
.hide {
  display: none;
}
.ConsentModal__header > .header-title {
  margin: 0 0 8px;
  letter-spacing: -0.44px;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  color: var(--cl-font-color-title);
}
.ConsentModal__content-section {
  padding: 16px 16px 0;
}
.ConsentModal__header > .header-description {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  margin: 0;
  color: var(--cl-font-color-text);
}
.ConsentModal__link {
  color: var(--cl-link);
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.25s, opacity 0.25s ease-out;
}
.ConsentModal__link:hover {
  color: var(--cl-link-hover);
}
.ConsentModal__link:focus-visible {
  border: 2px solid var(--cl-primary-hover);
  border-radius: 4px;
  outline: none;
}
.ConsentModal__body > hr {
  margin: 16px 0;
  background-color: #e2e2e4;
  height: 1px;
  border: none;
  overflow: hidden;
}
.ConsentModal__body > hr:first-of-type {
  margin: 24px 0 16px;
}
.ConsentModal__content-element {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ConsentModal__content-element-title {
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 8px;
  line-height: 24px;
  color: var(--cl-font-color-title);
}
.ConsentModal__content-element-description {
  font-weight: 400;
  font-size: 14px;
  margin: 0;
  line-height: 21px;
  color: var(--cl-font-color-text);
}
.ConsentModal__toggle {
  position: absolute;
  top: 0;
  right: 0;
  margin-left: 12px;
}
[dir="rtl"] .ConsentModal__toggle {
  right: auto;
  left: 0;
}
.ConsentModal__toggle-text {
  font-weight: 500;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  text-align: right;
  color: var(--cl-font-color-title);
}
.SVG_wrapper {
  width: 18px;
  height: 18px;
  min-width: 18px;
}
.SVG {
  vertical-align: baseline !important;
}
.ToggleSwitch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.ToggleSwitchinput {
  opacity: 0;
  width: 0;
  height: 0;
}
.ToggleSwitch-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #d0d1d3;
  border-radius: 12px;
}
.ToggleSwitchinput:focus + .ToggleSwitch-slider {
  outline: 2px solid var(--cl-primary-hover);
}
.ToggleSwitch-background-checked {
  position: absolute;
  inset: 0;
  transition: opacity ease 0.3s;
  background-color: var(--cl-primary);
  border-radius: 12px;
  opacity: 0;
}
input:checked + .ToggleSwitch-slider .ToggleSwitch-background-checked {
  opacity: 1;
}
.ToggleSwitch-bubble {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  transform: translate(2px, 2px);
  background-color: var(--cl-modal-background);
  -webkit-transition: 0.3s;
  transition: transform 0.3s;
  border-radius: 50%;
}
[dir="rtl"] .ToggleSwitch-bubble {
  transform: translate(-22px, 2px);
}
input:checked + .ToggleSwitch-slider > .ToggleSwitch-bubble {
  transform: translate(22px, 2px);
}
[dir="rtl"] input:checked + .ToggleSwitch-slider > .ToggleSwitch-bubble {
  transform: translate(-2px, 2px);
}
.ToggleSwitch-icon-unchecked {
  display: block;
  position: absolute;
  transform: translate3d(-50%, -50%, 0);
  left: 50%;
  top: 50%;
  opacity: 1;
  transition: 0.1s;
}
.ToggleSwitch
  input:checked
  + .ToggleSwitch-slider
  .ToggleSwitch-icon-unchecked {
  display: none;
}
.ToggleSwitch-icon-checked {
  display: none;
  position: absolute;
  transform: translate3d(-50%, -50%, 0);
  left: 50%;
  top: 50%;
  opacity: 1;
  transition: 0.1s;
}
.ToggleSwitch input:checked + .ToggleSwitch-slider .ToggleSwitch-icon-checked {
  display: block;
}
[dir="rtl"]
  .ToggleSwitch
  input:checked
  + .ToggleSwitch-slider
  .ToggleSwitch-icon-checked {
  left: 50%;
}
.ConsentModal__footer {
  position: sticky;
  bottom: 0;
  padding-top: 16px;
  margin-top: auto;
  text-align: right;
  background-color: var(--cl-modal-background);
}
.ConsentModal__footer-button-section {
  padding: 0 16px 16px;
}
.ConsentButton {
  outline: none;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  text-align: center;
  text-decoration: none;
  font-size: var(--cl-font-size-button);
  line-height: 24px;
  font-weight: 600;
  border-radius: var(--cl-btn-border-radius);
  display: inline-block;
  vertical-align: middle;
  font-family: inherit;
  text-transform: none;
  overflow: visible;
  margin: 0 0 12px;
}
.ConsentButton:active {
  color: var(--cl-primary-text);
  background-color: var(--cl-active);
  border-color: var(--cl-active);
}
.ConsentButton-outline {
  padding: 9px 28px;
  border: 1px solid;
  background-color: var(--cl-secondary);
  border-color: var(--cl-secondary-border);
  color: var(--cl-secondary-text);
  transition: color 0.25s ease-out, background-color 0.25s ease-out,
    border-color 0.25s ease-out;
}
.ConsentButton:focus {
  outline: 2px solid var(--cl-primary-hover);
}
.Customize {
  border: none;
}
.ConsentButton-outline:hover {
  background-color: var(--cl-secondary-hover);
  border-color: var(--cl-secondary-border);
  color: var(--cl-secondary-text-hover);
}
.Customize:hover {
  background-color: #fff;
  border: none;
  color: var(--cl-customize-color);
}
button.ConsentButton-fill {
  padding: 12px 28px;
  border: none;
  color: var(--cl-primary-text);
  background-color: var(--cl-primary);
  border-color: var(--cl-primary);
  transition: color 0.25s ease-out, background-color 0.25s ease-out,
    border-color 0.25s ease-out;
}
button.ConsentButton-fill:hover {
  background-color: var(--cl-primary-hover);
  border-color: var(--cl-primary-hover);
}
.widgetBtn {
  margin: 0 0 8px;
  width: 100%;
}
.ConsentModal__close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}
[dir="rtl"] .ConsentModal__close-button {
  left: 24px;
  right: auto;
}
.ConsentModal__close-button:hover {
  opacity: 0.8;
}
@media (min-width: 768px) {
  .ConsentWidget {
    width: var(--cl-default-container-width);
    padding: 24px;
    margin: 24px;
  }
  .ConsentModal__container {
    right: 32px;
    left: 32px;
  }
  .ConsentModal__content-section {
    padding: 32px 32px 0;
  }
  .ConsentModal__content-element-title {
    margin: 0;
  }
  .ConsentModal__toggle {
    position: unset;
  }
  .ConsentModal__footer-button-section {
    padding: 0 32px 32px;
  }
  .ConsentButton {
    margin: 0 8px 0 0;
  }
  .widgetBtn {
    margin: 0 0 12px;
  }
  .ConsentModal__close-button {
    top: 24px;
    right: 24px;
  }
}
@media (min-height: 780px) and (min-width: 600px) {
  .ConsentModal__container {
    top: auto;
    bottom: auto;
  }
}
@media (max-width: 767px) {
  .ConsentModal__header > .header-title {
    font-size: 20px;
    margin-right: 24px;
  }
  [dir="rtl"] .ConsentModal__header > .header-title {
    margin-right: 0;
    margin-left: 24px;
  }
  .ConsentButton {
    width: 100%;
  }
}
@media (max-height: 420px) and (min-width: 768px) {
  .ConsentWidget__container {
    height: 100%;
  }
  .ConsentWidget {
    overflow: scroll;
    box-sizing: border-box;
    max-height: calc(100% - 48px);
    min-width: calc(var(--cl-default-container-width) + 48px);
    margin-bottom: auto;
  }
}
#header-hp-link {
  color: #fff;
  font-weight: 600;
  font-size: 24px;
}
