/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

body.cookie-set {
    overflow: hidden;
}
@media (max-width: 767px) {
    body.cookie-set .cookie {
        top: 0;
    }
}
@media (max-height: 720px) {
    body.cookie-set .cookie {
        top: 0;
    }
}

.cookie {
    z-index: 9999;
    left: 0;
    right: 0;
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    margin-top: 30px;
    position: fixed;
    bottom: 0;
    color: var(--black);
    display: none;
    width: calc(100% - 30px * 2);
    overflow: hidden;
    box-shadow: 0px 0px 415px -6px rgba(0,0,0,0.1);
}
@media (max-width: 767px) {
    .cookie {
        width: 100%;
        margin-bottom: 0;
        margin-top: 0;
    }
}
@media print {
    .cookie {
        display: none !important;
    }
}
.cookie__button {
    cursor: pointer;
    text-align: center;
    background: var(--black);
    padding: 23px;
    color: var(--white);
    display: block;
    min-width: 18rem;
    font-weight: bold;
    font-size: 0.875rem;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    border: 1px solid transparent;
}
.cookie__button:hover {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
}
@media (max-width: 767px) {
    .cookie__button {
        width: 100%;
    }
}
.cookie__button-trans {
    background: transparent;
    border: 1px solid var(--black);
    color: var(--black);
    margin-bottom: 17px;
}
.cookie__button-trans:hover {
    border: 1px solid var(--black);
    background: var(--black);
    color: var(--white);
}
.cookie-toggle {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    background: var(--white);
    padding: 0 35px;
    height: 0;
    position: relative;
    visibility: hidden;
}
@media (max-width: 767px) {
    .cookie-toggle {
        padding: 0 25px;
    }
}
.cookie-display {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    padding: 35px;
    height: 100%;
    visibility: visible;
}
@media (max-width: 767px) {
    .cookie-display {
        padding: 25px;
    }
}
.cookie--opened {
    background: transparent;
}
.cookie-agreed {
    display: block;
}
.cookie__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 767px) {
    .cookie__main {
        display: block;
        padding-bottom: 0;
    }
}
@media (min-width: 768px) {
    .cookie__main-buttons {
        padding-left: 25px;
    }
}
@media (max-width: 767px) {
    .cookie__main-buttons {
        padding-top: 8px;
    }
}
.cookie__main-content {
    margin-right: auto;
}
.cookie__image {
    height: 150px;
    width: 180px;
    margin-right: 35px;
    min-width: 180px;
    align-self: flex-start !important;
}
@media (max-width: 1199px) {
    .cookie__image {
        width: 150px;
        min-width: 150px;
        margin-right: 15px;
    }
}
@media (max-width: 991px) {
    .cookie__image {
        width: 110px;
        min-width: 110px;
    }
}
@media (max-width: 767px) {
    .cookie__image {
        width: 180px;
        min-width: 180px;
        margin-right: 0;
        margin-bottom: 12px;
    }
}
.cookie__image-img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
@media (max-width: 767px) {
    .cookie__image-img {
        object-position: left;
    }
}
.cookie__detail {
    max-height: 100%;
}
@media (max-width: 767px) {
    .cookie__detail {
        overflow: auto;
    }
}
@media (max-height: 720px) {
    .cookie__detail {
        overflow: auto;
    }
}
@media (max-width: 991px) {
    .cookie__detail .cookie__image {
        display: none;
    }
}
.cookie__detail-link {
    position: relative;
    background: transparent;
}
.cookie__detail-checkbox {
    margin-right: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 767px) {
    .cookie__detail-checkbox {
        margin-right: 18px;
    }
}
.cookie__detail-checkbox-disabled {
    opacity: 0.5;
}
.cookie__detail-close {
    position: absolute;
    top: 35px;
    right: 35px;
    cursor: pointer;
}
.cookie__detail-close path {
    fill: #000000;
}
@media (max-width: 767px) {
    .cookie__detail-close {
        top: calc(25px - 2px);
        right: calc(25px - 2px);
        width: 30px;
        height: 30px;
    }
}
.cookie__detail-content {
    position: relative;
}
@media (min-width: 768px) {
    .cookie__detail-buttons {
        padding-left: 25px;
    }
}
@media (max-width: 767px) {
    .cookie__detail-buttons {
        padding-top: 40px;
    }
}
.cookie__detail-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 35px;
    margin-bottom: 35px;
    position: relative;
}
.cookie__detail-row:last-child {
    margin-bottom: 0;
}
.cookie__detail-headline {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 600;
    font-family: var(--font-primary);
}
.cookie__detail-text {
    margin: 2px 0;
    font-size: 0.875rem;
    line-height: 1.5;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #474747;
    max-width: 55rem;
    font-family: var(--font-secondary);
    font-weight: 400;
}
.cookie__detail-text--checked {
    font-weight: bold;
}
.cookie__detail-rows {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}
@media(max-width: 767px) {
    .cookie__detail-rows {
        display: block !important;
    }
}
.cookie__headline {
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--black);
    margin-top: 0;
    margin-bottom: 2px;
    font-family: var(--font-primary);
}
@media (max-width: 991px) {
    .cookie__headline {
        font-size: 1.6rem;
    }
}
@media (max-width: 767px) {
    .cookie__headline {
        padding-right: 35px;
    }
}
.cookie__text * {
    font-size: 0.875rem;
    line-height: 1.5;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #474747;
    max-width: 55rem;
    font-family: var(--font-secondary);
}
@media (min-width: 992px) {
    .cookie__text {
        max-width: 80%;
    }
}
.cookie__text * a {
    text-decoration: underline;
    color: inherit;
}
.cookie-settings {
    color: #474747;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    letter-spacing: 1px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    text-transform: uppercase;
    font-size: 0.75rem;
    line-height: 1.2;
    display: block;
    cursor: pointer;
    text-align: center;
    padding: 24px;
    min-width: 18rem;
}
@media (max-width: 767px) {
    .cookie-settings {
        display: block;
    }
}
.cookie-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.cookie input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
}
.cookie-switch {
    cursor: pointer;
    text-indent: -9999px;
    width: 72px;
    height: 39px;
    background: #E1E1E1;
    display: block;
    border-radius: 100px;
    position: relative;
}
@media (max-width: 767px) {
    .cookie-switch {
        height: 32px;
        width: 65px;
    }
}
.cookie-switch:after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 31px;
    height: 31px;
    background: #808080;
    border-radius: 32px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
@media (max-width: 767px) {
    .cookie-switch:after {
        top: 3px;
        left: 3px;
        width: 26px;
        height: 26px;
        border-radius: 28px;
    }
}
.cookie input:checked + .cookie-switch {
    background: #E1E1E1;
}
.cookie input:checked + .cookie-switch:after {
    left: calc(100% - 4px);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    background: #6FD132;
}
@media (max-width: 767px) {
    .cookie input:checked + .cookie-switch:after {
        left: calc(100% - 2px);
    }
}
.cookie-switch:active:after {
    width: 45px;
}
.cookie__table {
    text-align: left;
}
@media (max-width: 767px) {
    .cookie__table {
        width: 100%;
        overflow: auto;
    }
}
.cookie__table table {
    border-collapse: collapse;
}
@media (max-width: 767px) {
    .cookie__table table {
        width: 900px;
        margin-bottom: 12px;
    }
}
.cookie__table thead {
    background: #EFF2F7;
}
.cookie__table thead th {
    padding: 16px 20px 16px 0;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
    color: var(--black);
}
@media (max-width: 575px) {
    .cookie__table thead th {
        font-size: 0.875rem;
    }
}
.cookie__table thead th:first-child {
    padding-left: 5px;
}
.cookie__table tbody tr {
    border-bottom: 1px solid #E0E0E0;
}
.cookie__table td {
    width: 15%;
    padding-right: 20px;
    vertical-align: top;
    padding-top: 8px;
    padding-bottom: 10px;
    font-size: 0.875rem;
    line-height: 1.6;
    letter-spacing: 0.25px;
    color: var(--black);
}
.cookie__table td.cookie__table-use {
    width: 40%;
}