.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(153,153,153,0.8);
    z-index: 1000;
    width: 100%;
    height: 100%;
    color: #003745;
}

.cookie-banner .jquery-checkbox {
    display: none;
}

.cookie-banner__inner {
    position: absolute;
    background: #ffffff;
    width: 900px;
    padding: 30px 25px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

h2.cookie-banner__headline {
    font-size: 20px;
    font-weight: bold;
    background-color: transparent;
    line-height: 25px;
    color: #003745;
    margin: 0 0 12px;
    padding: 0;
    display: inline-block;
}

.cookie-banner__description {
    font-size: 14px;
    color: #003745;
    line-height: 18px;
    margin-bottom: 30px;

}
.cookie-banner__description a {
    font-size: 14px;
    color: #003745;
    font-weight: bold;
}

.cookie-banner__checkbox-group {
    margin-bottom: 30px;
}

.cookie-banner__checkbox-item {
    display: inline-block;
    margin-right: 80px;
}

.cookie-banner__checkbox-item--disabled label {
    cursor: default;
    opacity: 0.5;
}

.cookie-banner__checkbox-input {
    position: absolute;
    left: -9999px;
    visibility: hidden;
}

.cookie-banner__checkbox-input:checked ~ .cookie-banner__checkbox-box:after {
    content: "";
    background-color: transparent;
    position: absolute;
    left: 6px;
    top: 0;
    width: 5px;
    border-bottom: 3px solid #013846;
    height: 14px;
    border-right: 3px solid #013846;
    transform: rotate(45deg);

}

.cookie-banner__checkbox-box {
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid #e6e0d0;
    background: #ffffff;
    display: inline-block;
    margin-right: 15px;
}

.cookie-banner__checkbox-text {
    position: relative;
    top: -5px;
    font-size: 16px;
    color: #003745;
    line-height: 20px;
}

.cookie-banner__link-standard:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #ff0000 transparent transparent transparent;
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: -3px;
    transform: rotate(-90deg);
}

.cookie-banner__link-standard {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 18px;
    color: #00414F;
}

.cookie-banner__toggle-details {
    text-align: right;
    margin-bottom: 20px;
}

.cookie-banner__toggle-details .toggle-details__show,
.cookie-banner__toggle-details .toggle-details__hide {
    position: relative;
    font-size: 14px;
    color: #00414F;
    line-height: 18px;
    cursor: pointer;
}

.cookie-banner__toggle-details .toggle-details__show:after,
.cookie-banner__toggle-details .toggle-details__hide:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #ff0000 transparent transparent transparent;
    display: inline-block;
    margin-left: 5px;
    position: relative;
    top: -1px;
}

.cookie-banner__toggle-details .toggle-details__hide:after {
    transform: rotate(180deg);
}

.cookie-banner__toggle-details .toggle-details__hide {
    display: none;
}

.cookie-banner__additional-content {
    opacity: 0;
    max-height: 0;
    transition-duration: .5s;
    transition-property: opacity, max-height;
    transition-timing-function: ease-out;
    visibility: hidden;
}

.cookie-banner__additional-content--open {
    opacity: 1;
    max-height: 700px;
    visibility: visible;
}

.cookie-banner__additional-content-item {
    margin-bottom: 20px;
}

.cookie-banner__subheadline {
    font-size: 14px;
    color: #003745;
    line-height: 18px;
    margin-bottom: 12px;
}

.cookie-banner__cookie-description {
    font-size: 14px;
    color: #003745;
    line-height: 18px;
}

.cookie-banner__disclaimer-choices {
    text-align: right;
}

.cookie-banner__btn-primary,
.cookie-banner__btn-secondary {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 18px;
    text-align: center;
    padding: 7px 15px;
    outline: none;
    border: none;
    cursor: pointer;
    background: #ff0000;
}

.cookie-banner__btn-secondary {
    background: #dAd2ba;
    color: #003745;
    margin-right: 10px;
}

.osplus h2.cookie-banner__headline {
    font-size: 18px;
    font-weight: normal;
    background-color: transparent;
    line-height: 24px;
    color: #003745;
    margin: 0 0 12px;
    padding: 0;
    display: inline-block;
}

.osplus .cookie-banner__btn-primary,
.osplus .cookie-banner__btn-secondary {
    font-size: 12px;
    color: #FFFFFF;
    line-height: 16px;
    text-align: center;
    padding: 5px 10px;
    outline: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
    background-image: linear-gradient(180deg, #FF1414 32%, #E60000 78%);
    border-radius: 2px;
}

.osplus .cookie-banner__btn-secondary {
    background-image: linear-gradient(180deg, #999999 32%, #333330 78%);
    margin-right: 10px;
}

.osplus .cookie-banner__toggle-details .toggle-details__show,
.osplus .cookie-banner__toggle-details .toggle-details__hide {
    color: #ff0000;
}

.osplus .cookie-banner__description a {
    color: #FF0000;
    font-weight: normal;
}