@charset "UTF-8";
:root {
  --gdpr-color-bg: #fff;
  --gdpr-color-border: #ddd;
  --gdpr-color-title: #000;
  --gdpr-color-text: #000;
  --gdpr-color-btn: #333;
  --gdpr-color-btn-accept: orange;
  --gdpr-color-validated-checkbox: green;
  --gdpr-font-title: inherit;
  --gdpr-font-text: inherit;
  --gdpr-color-bg-decline-top-right: #fff;
  --gdpr-color-text-decline-top-right: black;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

#cc-modal-container {
  font-family: var(--gdpr-font-text);
}
#cc-modal-container.show.blocking {
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
#cc-modal-container.show #cc-modal-main,
#cc-modal-container.show #cc-modal-settings {
  opacity: 1;
}
@media (max-width: 767px) {
  #cc-modal-container.non-blocking .cc-modal {
    bottom: 10px;
    left: 10px;
  }
}
@media (min-width: 768px) {
  #cc-modal-container.non-blocking .cc-modal {
    bottom: 30px;
    left: 30px;
    -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
    transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  }
}
#cc-modal-container.blocking .cc-modal {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#cc-modal-container.decline-default .cc-header .cc-btn-decline {
  display: none;
}
#cc-modal-container.decline-top-right #cc-modal-main .cc-footer .cc-btn-decline {
  display: none;
}
#cc-modal-container.decline-top-right #cc-modal-main .cc-header {
  position: relative;
}
#cc-modal-container.decline-top-right #cc-modal-main .cc-header .cc-btn-decline {
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  background-color: var(--gdpr-color-bg-decline-top-right);
  color: var(--gdpr-color-text-decline-top-right);
  border-bottom-left-radius: 8px;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  text-decoration: underline;
}
#cc-modal-container.decline-top-right #cc-modal-main .cc-header .cc-btn-decline:hover {
  opacity: 0.7;
}
#cc-modal-container.decline-top-right #cc-modal-main .cc-header .cc-title {
  margin-top: 20px;
}

.cc-modal {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 450px;
  max-width: calc(100% - 20px);
  max-height: 98vh;
  position: fixed;
  z-index: 1010;
  opacity: 0;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  background-color: var(--gdpr-color-bg);
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  border-radius: 8px;
  overflow: hidden;
}
.cc-modal.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cc-modal .cc-header {
  font-family: var(--gdpr-font-title);
  padding: 20px 20px 0 20px;
}
@media (min-width: 768px) {
  .cc-modal .cc-header {
    padding: 30px 30px 0 30px;
  }
}
.cc-modal .cc-body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: auto;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gdpr-color-text);
}
.smooth-scrollbar .cc-modal .cc-body {
  overflow: hidden;
}
.cc-modal .cc-body-inner {
  padding: 20px 20px 0 20px;
}
@media (min-width: 768px) {
  .cc-modal .cc-body-inner {
    padding: 30px 30px 0 30px;
  }
}
.cc-modal .cc-body-inner a {
  color: var(--gdpr-color-text);
  text-decoration: underline;
}
.cc-modal .fix-scrollbar {
  height: 30px;
}
.cc-modal .cc-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid var(--gdpr-color-border);
}
.cc-modal .cc-footer a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  padding: 1em 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
}
.cc-modal .cc-footer a:not(:first-child) {
  border-left: 1px solid var(--gdpr-color-border);
}
.cc-modal .cc-title {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--gdpr-color-title);
}
.cc-modal .cc-btn {
  color: var(--gdpr-color-btn);
  -webkit-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}
@media (max-width: 768.98px) {
  .cc-modal .cc-btn {
    font-size: 0.9em;
  }
}
.cc-modal .cc-btn:hover {
  background-color: var(--gdpr-color-border);
}
.cc-modal .cc-btn-accept,
.cc-modal .cc-btn-done {
  color: var(--gdpr-color-btn-accept);
}
.cc-modal .cc-type {
  display: block;
  padding: 20px 0;
  position: relative;
  border-top: 1px solid var(--gdpr-color-border);
}
.cc-modal .cc-type:first-of-type {
  border-top: none;
}
.cc-modal .cc-type label {
  display: block;
  width: 80%;
  line-height: 1.3em;
}
.cc-modal .cc-type strong {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
}
.cc-modal .cc-type input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  right: 0;
  top: 20px;
  cursor: pointer;
  display: block;
  width: 44px;
  height: 22px;
  background-color: var(--gdpr-color-border);
  border-radius: 22px;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.cc-modal .cc-type input[type=checkbox]:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 2px;
  left: 2px;
  background-color: var(--gdpr-color-bg);
  border-radius: 11px;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  -webkit-transition: background-color 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: background-color 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out, background-color 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out, background-color 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}
.cc-modal .cc-type input[type=checkbox]:after {
  content: "no";
  text-transform: uppercase;
  font-weight: bold;
  font-size: 11px;
  position: absolute;
  color: #444;
  top: 112%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

[lang=fr-FR] #cc-modal-settings .cc-type input[type=checkbox]:after {
  content: "non";
}

[lang=es-ES] #cc-modal-settings .cc-type input[type=checkbox]:after {
  content: "no";
}

[lang=de-DE] #cc-modal-settings .cc-type input[type=checkbox]:after {
  content: "nicht";
}

[lang=it-IT] #cc-modal-settings .cc-type input[type=checkbox]:after {
  content: "no";
}

#cc-modal-settings .cc-type input[type=checkbox]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#cc-modal-settings .cc-type input[type=checkbox]:checked {
  background-color: var(--gdpr-color-validated-checkbox);
}

#cc-modal-settings .cc-type input[type=checkbox]:checked:before {
  -webkit-transform: translateX(22px);
      -ms-transform: translateX(22px);
          transform: translateX(22px);
}

#cc-modal-settings .cc-type input[type=checkbox]:checked:after {
  content: "yes";
}

[lang=fr-FR] #cc-modal-settings .cc-type input[type=checkbox]:checked:after {
  content: "oui";
}

[lang=es-ES] #cc-modal-settings .cc-type input[type=checkbox]:checked:after {
  content: "sí";
}

[lang=de-DE] #cc-modal-settings .cc-type input[type=checkbox]:checked:after {
  content: "ja";
}

[lang=it-IT] #cc-modal-settings .cc-type input[type=checkbox]:checked:after {
  content: "sì";
}

.gdpr-alert {
  display: block;
  padding: 20px 20px 20px 20px;
  margin: 20px 0;
  background-color: var(--gdpr-color-border);
  color: var(--gdpr-color-text);
}
