/* ------------ */
/* CookieS */
/* ------------ */

@-webkit-keyframes CookieSShow {
    0% {
        opacity: 0;
        -webkit-transform: scale(.98);
        transform:scale(.98)
    }

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

@keyframes CookieSShow {
    0% {
        opacity: 0;
        -webkit-transform: scale(.98);
        transform:scale(.98)
    }

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

body.show-cookies-settings > :not(.CookieS) {
    /* -webkit-filter: blur(5px); */
    /* filter:blur(5px) */
}

.CookieS {
    display: none;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    line-height: normal;
    -webkit-text-size-adjust: auto;
    -ms-text-size-adjust: auto;
    text-size-adjust:auto
}

.CookieS.is-open {
    display:block
}

.CookieS__overlay {
    
    
    transform: translate3d(0, 0, 0);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    z-index:100;
    overscroll-behavior: contain;
}

.CookieS__container {
    box-sizing: border-box;
    position: relative;
    overflow-y: auto;
    width: 100%;
    max-width: 100%;
    max-width: 632px;
	height: auto;
    max-height: 90vh;

    -webkit-backdrop-filter: blur(25px) saturate(200%);
    backdrop-filter: blur(25px) saturate(200%);
    background: rgba(255, 255, 255, 0.7); /* Safer opacity */
    border: 1px solid rgba(255, 255, 255, 0.25);

    
    -webkit-animation: ContactShow .6s ease-out;
    animation: ContactShow .6s ease-out;
    margin:0 10px;
    padding: 72px 32px 48px 32px;
    border-radius: 0.8rem;
    
	text-align: left;
}

.CookieS__close {
   -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    border: 0;
    background: 0 0;
    cursor: pointer;
    outline: 0;
    position: absolute;
    top: 12px;
    right:12px
}

.CookieS__close:hover {
 background:0 0
}

.CookieS__close button {
	outline: none;
}

@media only screen and (min-width:768px) {
 .CookieS__close {
  top:28px;
  right:28px
 }
}
.CookieS__close>svg {
 pointer-events:none
}

.CookieS__title {
 font-weight:200;
 line-height:1.2;
 color:#005691;
 margin:0 0 10px;
 background:-webkit-linear-gradient(45deg,#005691,#008ecf);
 -webkit-background-clip:text;
 -webkit-text-fill-color:transparent;
 font-size:16px
}

@media only screen and (min-width: 992px) {
    .CookieS__title {
        font-size:24px
    }
}

.CookieS__description {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: auto;
    font-weight: 200;
    color: #000;
    font-size: 12px;
    line-height: 1.5;
    margin:0 0 10px
}

.CookieS__description__title {
    font-weight:500
}

.CookieS__description__paragraph {
    margin-bottom:10px
}

.CookieS__checkbox ~ label, .CookieS__cDescription__title {
    font-weight: 200;
    color: #000;
    font-size: 16px;
    line-height: 1.2;
    margin:0 0 10px
}

@media only screen and (min-width: 768px) {
    .CookieS__cDescription__title {
        font-size:20px
    }
}

.CookieS__cDescription__text {
    font-weight: 200;
    color: #000;
    font-size: 12px;
    line-height: 1.5;
    margin:0 0 10px
}

.CookieS__cDescription--withButton .CookieS__button--primary, .CookieS__cDescription--withButton .CookieS__button--secondary {
    padding-left: 6px;
    padding-right: 6px;
    width:100%
}

@media only screen and (min-width: 768px) {
    .CookieS__cDescription--withButton .CookieS__button--secondary {
        width:auto
    }
}

.CookieS__checkbox {
    opacity: 0;
    position:absolute
}

.CookieS__checkbox ~ label {
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    min-height: 24px;
    display: inline-block;
    padding-left: 40px;
    line-height: 24px;
    margin:0 0 2px;
}

.CookieS__checkbox ~ label:before {
    content: "";
    position: absolute;
    box-sizing:border-box;
}

@media screen {
    .CookieS__checkbox ~ label:before {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 1 1'%3e%3crect fill='%23DFDFE0' x='0' y='0' width='1' height='1'/%3e%3c/svg%3e");
        background-size: 24px;
        background-repeat: no-repeat;
        background-position: 16px 12px;
        top: -12px;
        bottom: -12px;
        left: -16px;
        right:-16px
    }
}

@media print {
    .CookieS__checkbox ~ label:before {
        background: 0 0;
        width: 24px;
        height: 24px;
        border: 1px solid #000;
        top: 0;
        left:0
    }
}

.CookieS__checkbox ~ label:hover:before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 1 1'%3e%3crect fill='%237FC6E7' x='0' y='0' width='1' height='1'/%3e%3c/svg%3e")
}

.CookieS__checkbox:active ~ label:before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 1 1'%3e%3crect fill='%23008ECF' x='0' y='0' width='1' height='1'/%3e%3c/svg%3e")
}

.CookieS__checkbox:disabled ~ label {
    cursor: not-allowed;
    color:#bfc0c2
}

.CookieS__checkbox:disabled ~ label:before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 1 1'%3e%3crect fill='%23EFEFF0' x='0' y='0' width='1' height='1'/%3e%3c/svg%3e")
}

@media print {
    .CookieS__checkbox:disabled ~ label:before {
        border-color:#bfc0c2
    }
}

.CookieS__checkbox:checked ~ label:before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 1 1'%3e%3crect fill='%23005691' x='0' y='0' width='1' height='1'/%3e%3c/svg%3e")
}

.CookieS__checkbox:checked ~ label:after {
    content: "";
    box-sizing: border-box;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    position: absolute;
    left: 7px;
    top: 5px;
    -webkit-transform: rotate(-44.5deg);
    transform: rotate(-44.5deg);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    width: 15px;
    height:8px;
}

@media print {
    .CookieS__checkbox:checked ~ label:after {
        border-color:#000
    }
}

.CookieS__checkbox:checked:hover ~ label:before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 1 1'%3e%3crect fill='%237FC6E7' x='0' y='0' width='1' height='1'/%3e%3c/svg%3e")
}

.CookieS__checkbox:checked:active ~ label:before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 1 1'%3e%3crect fill='%23008ECF' x='0' y='0' width='1' height='1'/%3e%3c/svg%3e")
}

.CookieS__checkbox:checked:disabled ~ label:before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 1 1'%3e%3crect fill='%23EFEFF0' x='0' y='0' width='1' height='1'/%3e%3c/svg%3e")
}

.CookieS__checkbox:checked:disabled ~ label:after {
    border-color:#bfc0c2
}

@media only screen and (min-width: 768px) {
    .CookieS__checkbox ~ label {
        font-size:20px
    }
}

.CookieS__buttonContainer .CookieS__button {
    width: 100%;
    margin-bottom:32px
}

.CookieS__button {
    border: 1px solid transparent;
    border-radius: 0;
    box-sizing: border-box;
    cursor: pointer;
    font-weight: 300;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    text-align: center;
    font-size: 14px;
    height: 40px;
    padding: 0 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-top:0
}

.CookieS__button:disabled {
    cursor:not-allowed
}

.CookieS__button > svg {
    fill: currentColor;
    -webkit-flex: 0 0 22px;
    -ms-flex: 0 0 22px;
    flex: 0 0 22px;
    height: 22px;
    margin-left: -4px;
    margin-right:8px
}

@media only screen and (min-width: 768px) {
    .CookieS__button {
        font-size: 16px;
        padding: 14px 16px;
        height:auto
    }

    .CookieS__button > svg {
        -webkit-flex: 0 0 24px;
        -ms-flex: 0 0 24px;
        flex: 0 0 24px;
        height: 24px;
        margin-left: -5px;
        margin-right:8px
    }
}

.CookieS__button:focus, .CookieS__button:hover {
    border:1px solid
}

.CookieS__button--secondary {
    background: #fff;
    border-color: #005691;
    color:#005691
}

.CookieS__button--secondary:hover {
    color: #7fc6e7;
    border-color:#7fc6e7
}

@media (hover: none) {
    .CookieS__button--secondary:hover {
        color: #008ecf;
        border-color:#008ecf
    }
}

.CookieS__button--secondary:active {
    color: #008ecf;
    border-color:#008ecf
}

.CookieS__button--secondary:disabled {
    color: #bfc0c2;
    border-color:#bfc0c2
}

.CookieS__button--secondary:hover {
    background:#fff
}

.CookieS__button--primary {
    background: #005691;
    border-color: #005691;
    color:#fff
}

.CookieS__button--primary:hover {
    background: #7fc6e7;
    border-color:#7fc6e7
}

@media (hover: none) {
    .CookieS__button--primary:hover {
        background: #005691;
        border-color:#005691
    }
}

.CookieS__button--primary:active {
    background: #008ecf;
    border-color: #008ecf;
    outline:0
}

.CookieS__button--primary:disabled {
    background: #bfc0c2;
    border-color:#bfc0c2
}

.CookieS__button--acceptAll {
    width: 100%;
    margin-bottom:20px
}

.CookieS__button--primary, .CookieS__button--secondary {
    padding-left: 6px;
    padding-right: 6px;
    width:100%
}

.CookieS__link {
    display: inline-block;
    box-sizing: border-box;
    position: relative;
    text-decoration: none;
    color: #005691;
    font-size: inherit;
    font-weight: 200;
    margin-top: 0 !important;
    margin-bottom:0 !important
}

.CookieS__link:hover {
    color:#7fc6e7
}

.CookieS__link:active {
    color:#008ecf
}

.CookieS__link:before {
    content: "";
    position: absolute;
    top: calc(-15px + 1em);
    right: calc(-15px + 1em);
    bottom: calc(-15px + 1em);
    left:calc(-15px + 1em)
}

@media (hover: none) {
    .CookieS__link:hover {
        color:#005691
    }
}

.CookieS__link:after {
    background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' width='1' height='1' viewBox='0 0 192 192'%3e%3cpath fill='%23005691' d='M71.2 174.4l-6.4-4.8L119 96 64.8 22.4l6.4-4.8L129 96z'/%3e%3c/svg%3e")
}

.CookieS__link:hover {
    text-decoration:none !important
}

.CookieS__imprint {
    text-align: right;
    padding-top:15px
}

.CookieS__buttonContainer {
    position: relative;
}

.CookieS__buttonContainer .CookieS__button {
    width: 100%;
    margin-bottom:32px
}

@media only screen and (min-width: 768px) {
    .CookieS__buttonContainer {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items:flex-end
    }

    .CookieS__buttonContainer .CookieS__button {
        width: auto;
        margin-bottom: 0;
        min-width:168px
    }

    .CookieS__buttonContainer .CookieS__button ~ .CookieS__smallprint {
        margin-left:32px
    }
}

.CookieS__smallprint {
    font-weight: 200;
    color: #000;
    margin: 0;
    font-size: 12px;
    line-height:1.5
}

.CookieS__save-feedback {
    display: none;
    margin-top: -24px;
    margin-bottom: 24px;
    color: #1c7a45;
    font-weight: 400;
    text-align: center;
}

.CookieS__save-feedback.is-visible {
    display: block;
}

@media only screen and (min-width: 768px) {
    .CookieS__save-feedback {
        position: absolute;
        bottom: -24px;
        left: 0;
        margin: 0;
        text-align: left;
    }
}

.CookieS__smallprint__title {
    font-weight:500
}


/* Responsive cookies styling */
@media (max-width: 768px) {
  .CookieS__container {
    padding: 50px 20px 30px 20px !important;
    max-height: 85vh !important;
    overflow-y: auto;
  }
}

/* Responsive cookies styling */
@media (max-width: 768px) {
  .CookieS__container {
    padding: 50px 20px 30px 20px !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
  }
}

/* Responsive cookies styling */
@media (max-width: 768px) {
  .CookieS__container {
    padding: 30px 20px 20px 20px !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
  }
}

/* Improve mobile close button touch target (hitbox) */
@media (max-width: 768px) {
  .CookieS__close {
    padding: 10px !important;
    width: 44px !important;
    height: 44px !important;
    top: 5px !important;
    right: 5px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 100 !important;
  }
}

html:has(body.show-cookies-settings),
body.show-cookies-settings {
    overflow: hidden !important;
}
