@charset "UTF-8";

:root {
--cc-color-bg: #fff;
--cc-color-border: #ddd;
--cc-color-title: #000;
--cc-color-text: #000;
--cc-color-btn: #333;
--cc-color-btn-accept: orange;
--cc-color-validated-checkbox: green;
--cc-font-title: inherit;
--cc-font-text: inherit;
--cc-color-bg-decline-top-right: #fff;
--cc-color-text-decline-top-right: black;
}
body.no-scroll {
overflow: hidden;
height: 100vh;
}
#cc-mc-rgpd {
font-family: var(--cc-font-text);
}
#cc-mc-rgpd.show.blocking {
position: fixed;
z-index: 2000;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.7);
}
#cc-mc-rgpd.show #cookie-modal-main,
#cc-mc-rgpd.show #cookie-modal-settings {
opacity: 1;
}
@media (max-width: 767px) {
#cc-mc-rgpd.non-blocking .cc-modal {
bottom: 10px;
left: 10px;
}
}
@media (min-width: 768px) {
#cc-mc-rgpd.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;
-o-transition: transform 0.3s ease-out, opacity 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-mc-rgpd.blocking .cc-modal {
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
#cc-mc-rgpd.decline-default .cc-header .cc-btn-decline {
display: none;
}
#cc-mc-rgpd.decline-top-right #cookie-modal-main .cc-footer .cc-btn-decline {
display: none;
}
#cc-mc-rgpd.decline-top-right #cookie-modal-main .cc-header {
position: relative;
}
#cc-mc-rgpd.decline-top-right #cookie-modal-main .cc-header .cc-btn-decline {
position: absolute;
top: 0;
right: 0;
padding: 15px;
background-color: var(--cc-color-bg-decline-top-right);
color: var(--cc-color-text-decline-top-right);
border-bottom-left-radius: 8px;
-webkit-transition: opacity 0.3s ease-out;
-o-transition: opacity 0.3s ease-out;
transition: opacity 0.3s ease-out;
text-decoration: underline;
}
#cc-mc-rgpd.decline-top-right #cookie-modal-main .cc-header .cc-btn-decline:hover {
opacity: 0.7;
}
#cc-mc-rgpd.decline-top-right #cookie-modal-main .cc-header .cc-title {
margin-top: 20px;
}
.cc-modal {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-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(--cc-color-bg);
-webkit-transition: opacity 0.3s ease-out;
-o-transition: opacity 0.3s ease-out;
transition: opacity 0.3s ease-out;
border-radius: 8px;
overflow: hidden;
}
.cc-modal .cc-header {
font-family: var(--cc-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;
line-height: 1.6;
color: var(--cc-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(--cc-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(--cc-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;
}
.cc-modal .cc-footer a:not(:first-child) {
border-left: 1px solid var(--cc-color-border);
}
.cc-modal .cc-title {
margin-bottom: 10px;
font-weight: 700;
font-size: 1.3em;
color: var(--cc-color-title);
}
.cc-modal .cc-btn {
color: var(--cc-color-btn);
-webkit-transition: background-color 0.3s ease-out;
-o-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(--cc-color-border);
}
.cc-modal .cc-btn-accept,
.cc-modal .cc-btn-done {
color: var(--cc-color-btn-accept);
}
.cc-modal .cc-type {
display: block;
padding: 20px 0;
position: relative;
border-top: 1px solid var(--cc-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(--cc-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(--cc-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;
-o-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;
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%);
}
#cookie-modal-settings {
display: none;
}
[lang=fr-FR] #cookie-modal-settings .cc-type input[type=checkbox]:after {
content: "non";
}
[lang=es-ES] #cookie-modal-settings .cc-type input[type=checkbox]:after {
content: "no";
}
[lang=de-DE] #cookie-modal-settings .cc-type input[type=checkbox]:after {
content: "nicht";
}
[lang=it-IT] #cookie-modal-settings .cc-type input[type=checkbox]:after {
content: "no";
}
#cookie-modal-settings .cc-type input[type=checkbox]:disabled {
opacity: 0.5;
cursor: not-allowed;
}
#cookie-modal-settings .cc-type input[type=checkbox]:checked {
background-color: var(--cc-color-validated-checkbox);
}
#cookie-modal-settings .cc-type input[type=checkbox]:checked:before {
-webkit-transform: translateX(22px);
-ms-transform: translateX(22px);
transform: translateX(22px);
}
#cookie-modal-settings .cc-type input[type=checkbox]:checked:after {
content: "yes";
}
[lang=fr-FR] #cookie-modal-settings .cc-type input[type=checkbox]:checked:after {
content: "oui";
}
[lang=es-ES] #cookie-modal-settings .cc-type input[type=checkbox]:checked:after {
content: "sí";
}
[lang=de-DE] #cookie-modal-settings .cc-type input[type=checkbox]:checked:after {
content: "ja";
}
[lang=it-IT] #cookie-modal-settings .cc-type input[type=checkbox]:checked:after {
content: "sì";
}
.cc-alert {
display: block;
padding: 20px 20px 20px 20px;
margin: 20px 0;
background-color: var(--cc-color-border);
color: var(--cc-color-text);
}