﻿/**************************************
 Frontend privacy settings
 **************************************/
/**************************************
 Frontend privacy styles
 **************************************/
.frontendPrivacy__consentBanner, .frontendPrivacy__modalWrapper {
  transition: all 0.5s;
}
.privacy-consent-queried .frontendPrivacy__consentBanner, .privacy-consent-queried .frontendPrivacy__modalWrapper {
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
  height: 0;
}
.frontendPrivacy__consentBanner {
  position: fixed;
  z-index: 999;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 1em;
  text-align: center;
  box-shadow: 0px 9px 20px 0px currentColor;
  background: currentColor;
}
.frontendPrivacy__consentBanner > * {
  color: #fff;
}
.frontendPrivacy__consentBanner button, .frontendPrivacy__consentBanner .button {
  display: inline-block;
  cursor: pointer;
  margin: 0 0 0 1em;
  padding: 0.7em 0.8em;
  outline: 1px solid currentColor;
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.5s;
}
.frontendPrivacy__consentBanner button:hover, .frontendPrivacy__consentBanner .button:hover {
  opacity: 1;
}
.frontendPrivacy__thirdPartyIframe {
  color: currentColor;
  background: #fff;
}
.frontendPrivacy__thirdPartyIframe .frontendPrivacy__thirdPartyIframe--warning {
  position: relative;
  display: block;
  text-align: center;
  padding: 2em;
  border: 2px solid #ccc;
}
.frontendPrivacy__thirdPartyIframe .frontendPrivacy__thirdPartyIframe--buttons {
  margin-top: 1em;
}
.frontendPrivacy__thirdPartyIframe .frontendPrivacy__thirdPartyIframe--contentSource {
  position: absolute;
  bottom: 0.5em;
  right: 0.5em;
  font-size: 0.8em;
}
.frontendPrivacy__thirdPartyIframe button, .frontendPrivacy__thirdPartyIframe .button {
  display: inline-block;
  cursor: pointer;
  margin: 0 0 0 1em;
  padding: 0.7em 0.8em;
  outline: 1px solid currentColor;
  color: currentColor;
  opacity: 0.7;
  transition: opacity 0.5s;
}
.frontendPrivacy__thirdPartyIframe button:hover, .frontendPrivacy__thirdPartyIframe .button:hover {
  opacity: 1;
}
.frontendPrivacy__thirdPartyIframe.active .frontendPrivacy__thirdPartyIframe--warning {
  display: none;
}
.frontendPrivacy__thirdPartyIframe:not(.active) .frontendPrivacy__thirdPartyIframe--wrapper {
  display: none;
}
.frontendPrivacy__thirdPartyIframe .frontendPrivacy__thirdPartyIframe--wrapper:not([width]), .frontendPrivacy__thirdPartyIframe .frontendPrivacy__thirdPartyIframe--wrapper:not([height]) {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
}
.frontendPrivacy__thirdPartyIframe .frontendPrivacy__thirdPartyIframe--wrapper:not([width]) iframe, .frontendPrivacy__thirdPartyIframe .frontendPrivacy__thirdPartyIframe--wrapper:not([height]) iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/**************************************
 Visibility
 **************************************/
.dnt-enabled .hide-for-dnt-enabled, .dnt-disabled .hide-for-dnt-disabled, .dnt-enabled .show-for-dnt-disabled, .dnt-disabled .show-for-dnt-enabled {
  display: none !important;
}
/**************************************
 Modal
 **************************************/
#frontendPrivacy__modalWrapper.frontendPrivacy__modalWrapper {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
#frontendPrivacy__modalWrapper.frontendPrivacy__modalWrapper .frontendPrivacy__consentBanner {
  position: unset;
  display: block !important;
  width: fit-content;
  padding: 1rem;
}
#frontendPrivacy__modalWrapper.frontendPrivacy__modalWrapper .frontendPrivacy__consentBanner > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.modal__scroll-lock {
  overflow: hidden;
}