:root {
  --accent-color: #FFA06A;
}

.adr_module-cookie-open {
  overflow: hidden;
  pointer-events: none;
}

.adr_module-module--hidden {
  display: none !important;
}

.adr_module_button {
  padding: 0;
  height: 40px;
  width: 100%;
  border: none;
  border-radius: 100px;
  text-align: center;
}

.adr_module_button {
  background-color: #fff;
  cursor: pointer;
  font-size: 14px;
  color: #24201E;
  /* background-color: var(--accent-color); */
}

.adr_module_button.adr_module_button--accept {
  background-color: #fff;
 
  transition-duration: 0.2;
  font-weight: bold;
  color: #24201E;
}

.adr_module_button.adr_module_button--accept:hover {
  background-color: #FFA06A;
}

.adr_module_button.adr_module_button--bordered {
  background-color: transparent;
}

.adr_module_button.adr_module_button--bordered:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.adr_module_button.adr_module_button--ghost {
  background-color: transparent;
}

.adr_module-module.adr_module-module--dark
  .adr_module_button.adr_module_button--bordered {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.adr_module-module.adr_module-module--light
  .adr_module_button.adr_module_button--bordered {
  color: #24201E;
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.adr_module-module.adr_module-module--dark
  .adr_module_button.adr_module_button--ghost {
  color: #fff;
}

.adr_module-module.adr_module-module--light
  .adr_module_button.adr_module_button--ghost {
  color: #24201E;
}




.adr_module-module {
  font-size: 10px;
  font-family: sans-serif;
  position: fixed;
  z-index: 999999999998;
  top: 0;
  background-color: rgba(255, 255, 255, 0.5);
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  flex-direction: column;
  box-sizing: border-box;
}

.adr_module-module--wrapper{
  padding: 1.6em;
  max-height: 100vh;
}

.adr_module-banner {
}

.adr_module-module h4 {
  font-size: 24px;
  margin-bottom: 16px;
  font-family: sans-serif;
}

.adr_module-module.adr_module-module--dark .adr_module-banner__wrapper {
  background-color: #511E26;
  color: #ffffff;
}

.adr_module-module.adr_module-module--light .adr_module-banner__wrapper {
  background-color: #fff;
  color: black;
}

.adr_module-module.adr_module-module--light .adr_module-banner__wrapper h4 {
  color: black;
}

.adr_module-module.adr_module-module--dark .adr_module-banner__wrapper h4 {
  color: #fff;
}

.adr_module-banner footer {
  z-index: 999999999999;
  color: #24201E;
  font-size: 12px;
  opacity: 0.6;
  background-color: transparent;
  text-align: center;

  padding: 8px 0;
  display: none;
}

.adr_module-banner footer a {
  text-decoration-line: underline;
  font-size: 12px;
  color: #24201E;
  pointer-events: all;
}

.adr_module-banner * {
  box-sizing: border-box;
  margin: 0;
}

.adr_module-banner__wrapper {
  /* margin-top: auto; */
  pointer-events: auto;
  width: 100%;
  padding: 3.2em;
  border-radius: 16px;
  max-width: 640px;

  /* padding: 3.2em; */
  flex-direction: column;
  display: flex;
  align-items: center;
}

/* @media (min-width: 992px) {
.adr_module-banner__wrapper {
padding: 3.2em;
flex-direction: column;
display: flex;
align-items: center;
}
} */

.adr_module-banner__text {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  font-size: 1.4em;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.adr_module-banner__text a {
  color: inherit;
  text-decoration: underline;
}

.adr_module-banner__text a:hover {
  color: #ff0000;
}

.adr_module-banner__text p:last-child {
  margin-bottom: 0;
}

.adr_module-banner__btns {
  flex: 0 0 auto;
  min-width: 0;
  margin-top: 2.4em;
  width: 100%;
  display: flex;
  gap: 0.6rem;
  flex-direction: column;
}

@media (max-width: 640px) {
  .adr_module-banner__btns ul {
    flex-direction: column;
  }
}

.adr_module-banner__btns ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 0.6rem;
}

.adr_module-banner__btns ul > li {
  flex: 1 1 auto;

  width: 100%;
}

html:not(.page--show-cookie-popup) .adr_module-popup {
  display: none;
}

.adr_module-popup__block {
  min-width: 0;
}

.adr_module-popup__block-wrapper {
  border: 0.1em solid transparent;
  height: 100%;
  display: grid;
  grid-template: 100%/100%;
  background-color: rgba(0, 0, 0, 0.8);
  transition-property: border-color;
  transition-duration: 300ms;
  transition-timing-function: ease;
}

.adr_module-popup__block-wrapper::before {
  content: "";
  display: block;
  padding-top: 100%;
  grid-area: 1/1/2/2;
}

.adr_module-popup__block-wrapper:hover {
  border-color: RGB(var(--accent-color));
}

.adr_module-popup__block:first-child {
  grid-column-end: span 2;
}

.adr_module-popup__block:first-child .adr_module-popup__block-wrapper::before {
  padding-top: 49%;
}

.adr_module-popup__block-image {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-size: cover;
  background-position: center;
}

.adr_module-popup__block-wrapper {
  position: relative;
  z-index: 1;
}

.adr_module-popup__block-wrapper::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 87.68%,
      rgba(255, 255, 255, 0.01) 100%
    ),
    linear-gradient(
      144.64deg,
      rgba(255, 255, 255, 0.02) 1.61%,
      rgba(255, 255, 255, 0) 89.55%
    );
}

.adr_module-popup__block-content {
  padding: 2.7em;
  position: relative;
  z-index: 5;
  grid-area: 1/1/2/2;
  align-self: flex-end;
}

.adr_module-popup__block-title {
  font-family: sans-serif;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
}

.adr_module-popup__block-attribute {
  font-family: sans-serif;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.6em;
}

.page--popup-is-active,
.page--popup-product-is-active {
  overflow: hidden;
}

@keyframes popup-in {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.adr_module-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999999999;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: auto;
  min-width: 0;
  display: block;
}

.adr_module-popup__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template: 100%/100%;
  width: 100%;
  min-height: 100%;
}

.adr_module-popup__backdrop {
  grid-area: 1/1/2/2;
  position: relative;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.adr_module-popup__container {
  position: relative;
  z-index: 2;
  grid-area: 1/1/2/2;
  pointer-events: none;
  padding-left: 0.4em;
  padding-right: 0.4em;
  display: flex;
  flex-direction: column;
  max-width: 59.8em;
}

@media (min-width: 768px) {
  .adr_module-popup__container {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

@media (max-width: 479px) {
  .adr_module-popup__container {
    padding-left: 0;
    padding-right: 0;
  }
}

.adr_module-popup__wrapper {
  animation-name: popup-in;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-duration: 600ms;
  margin-top: auto;
  margin-bottom: auto;
  pointer-events: auto;
  position: relative;
  z-index: 10;
  background-position: center bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-color: #fff;
  color: #24201E;
  overflow: hidden;
  padding: 2.4em;
}

@media (min-width: 480px) {
  .adr_module-popup__wrapper {
    padding: 3.2em;
  }
}

.adr_module-popup__header-close {
  outline: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4em;
  height: 2.4em;
  font-size: 2.4em;
  color: #24201E;
  cursor: auto;
  transition-property: background-color, border-color, color, box-shadow,
    opacity;
  transition-duration: 300ms;
  transition-timing-function: ease;
}

.adr_module-popup__header-close:not(.swiper-button-disabled):hover {
  cursor: pointer;
}

.adr_module-popup__header-close.swiper-button-disabled {
  opacity: 0.5;
}

.adr_module-popup__header-close:hover,
.adr_module-popup__header-close:focus {
  color: #ff0000;
}

[data-hideable-text-container].has-hidden-text.show-text
  [data-hideable-text-btn-show] {
  display: none;
}

[data-hideable-text-container].has-hidden-text:not(.show-text)
  [data-hideable-text-btn-hide] {
  display: none;
}

[data-hideable-text-container].has-hidden-text [data-hideable-text] {
  overflow: hidden;
  display: block;
  display: box;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
}

[data-hideable-text-container].has-hidden-text:not(.show-text)
  [data-hideable-text] {
  max-height: 7.2em;
  -webkit-line-clamp: 3;
}

[data-hideable-text-container]:not(.has-hidden-text) [data-hideable-text-btn] {
  display: none;
}

.adr_module-popup__accordion-content .adr_module-popup__content-text {
  padding-top: 2.4em;
  padding-bottom: 2.4em;
}

[data-hideable-text-btn] {
  margin-top: 1.6em;
  text-decoration: underline;
  display: inline-block;
  color: inherit;
  text-decoration: underline;
  transition: color 300ms ease;
}

[data-hideable-text-btn]:hover,
[data-hideable-text-btn]:focus {
  color: #ff0000;
}

.adr_module-popup__content-text {
  font-size: 1.6em;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.adr_module-popup__content-text a {
  color: inherit;
  text-decoration: underline;
  transition: color 300ms ease;
}

.adr_module-popup__content-text a:hover,
.adr_module-popup__content-text a:focus {
  color: #ff0000;
}

.adr_module-popup__content-text > * {
  margin: 0 0 1.6em;
}

.adr_module-popup__content-text > *:last-child {
  margin-bottom: 0;
}

.adr_module-popup__accordion {
  margin-bottom: 0.8em;
}

.adr_module-popup__accordion:last-child {
  margin-bottom: 0;
}

.adr_module-popup__header {
  display: flex;
  align-items: center;
  margin-bottom: 3.2em;
}

.adr_module-popup__header-heading {
  font-weight: 300;
  font-size: 2.278em;
  line-height: 3.2em;
  letter-spacing: 0.02em;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  margin: 0;
}

.adr_module-popup__accordion[data-hideable="active"]
  .adr_module-popup__accordion-icon {
  transform: rotateZ(180deg);
}

.adr_module-popup__section {
  border-top: 0.1em solid #e0e0e0;
  margin-top: 3.2em;
  padding-top: 3.2em;
}

.adr_module-popup__accordion-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 1.6em;
  background-color: #f5f5f5;
  color: #24201E;
  font-weight: 300;
  font-size: 1.8em;
  letter-spacing: 0.02em;
  line-height: 2.4em;
}

.adr_module-popup__accordion-heading {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
}

/* The switch - the box around the slider */
.adr_module-module .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.adr_module-module .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.adr_module-module .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 100px;
}

.adr_module-module .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 100px;
}

.adr_module-module input:checked + .slider {
  background-color: #2196f3;
}

.adr_module-module .default_enabled .slider {
  background-color: #6b6b6b;
  pointer-events: none;
}

.adr_module-module .default_enabled {
  cursor: not-allowed;
}

.adr_module-module input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

.adr_module-module input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.adr_module-module .default_enabled .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.adr_module-module .slider.round {
  border-radius: 34px;
}

.adr_module-module .slider.round:before {
  border-radius: 50%;
}

.adr_module-module .customize {
  width: 100%;
  padding: 24px 0 0 0;
  display: none;
  flex-direction: column;
  gap: 16px;
}

.adr_module-module .customize.active {
  display: flex;
}

.adr_module-module .customize p {
  font-size: 12px;
}

.adr_module-module .group {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  flex-wrap: wrap;
  padding: 8px 0;
}

.adr_module-module .group .action {
  display: flex;
  align-items: center;
  justify-content: center;
}

.adr_module-module .group:not(:last-child) {
  border-bottom: 1px solid #404040;
}

/* 
.adr_module-module .customize .adr_module_button {
margin-top: 16px;
} */

.adr_module-module .customize .adr_module-popup__accordion-icon {
  flex: 0 0 auto;
  min-width: 0;
  display: block;
  width: 2.4em;
  height: auto;
}

.adr_module-module .group .cookie_list {
  width: 100%;
  list-style: none;
  display: none;
  padding: 0;
  word-wrap: break-word;
  margin: 0;
  color: #fff;
}

.adr_module-module .group .cookie_list li:not(:last-child) {
  border-bottom: 1px solid #404040;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.adr_module-module .group.active .adr_module-popup__accordion-icon {
  transform: rotate(180deg);
}

.adr_module-module .group.active .cookie_list {
  display: block;
}

.adr_module-module .group .cookie_list li a {
  color: #fff;
}
