@font-face {
    font-family: 'Lato';
    src:  url('../Fonts/Lato-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src:  url('../Fonts/Lato-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src:  url('../Fonts/Lato-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src:  url('../Fonts/Lato-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src:  url('../Fonts/Lato-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

html {
    Scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    text-decoration: none;
    user-select: none;
}

body {
    font-family: Lato, Arial, sans-serif;

    --color_blue: #003B55;
    --color_blue-dark: #121A45;
    --color_yellow: #FF9200;
    --color_red: #E72950;
    --color_red-dark: #840F27;
    --color_red-dark2: #33060F;
    --color_black: #000000;
    --color_white: #ffffff;
    --color_grey: #F5F5F5;
    --color_grey-dark: #707070;

    --font_size-small2: clamp(.7rem, 1.6vw, .8rem);
    --font_size-small: clamp(.85rem, 1.8vw, 1rem);
    --font_size-basic: clamp(1rem, 2vw, 1.2rem);
    --font_size-medium: clamp(1.1rem, 2.3vw, 1.5rem);
    --font_size-medium2: clamp(1.1rem, 2.5vw, 1.6rem);
    --font_size-large: clamp(1.6rem, 3vw, 4rem);
    --font_size-large2: clamp(3.6rem, 6vw, 8rem);

    margin: 0;
    padding: 0;
    color: var(--color_black);
}

.text-center,
.text-ce-headline-center{
    text-align: center;
}

.text-right,
.text-ce-headline-right {
    text-align: right;
}

.frame-space-before-large {
    padding-top: 3rem;
}

.frame-space-after-large {
    padding-bottom: 3rem;
}

.frame-space-before-extra-large > div {
    padding-top: 6rem;
}

.frame-space-after-extra-large > div {
    padding-bottom: 6rem;
}

.row {
    --bs-gutter-x: 3rem;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    color: var(--color_black);
    text-decoration: none;
}

.button {
    text-transform: uppercase;
    font-size: var(--font_size-basic);
    font-weight: 900;
    text-align: center;
    border-radius:42px;
    padding: 3px 4px;
    display: block;
    width: fit-content;
    background: transparent linear-gradient(90deg, var(--color_red-dark) 0%, var(--color_red) 36%, var(--color_yellow) 66%, var(--color_red) 81%, var(--color_red-dark2) 100%) 0% 0% no-repeat;
    border: none;
}

#hero .button {
    font-size: var(--font_size-medium);
    padding: 3px 4px;
}

.button span {
    background-color: var(--color_white);
    padding: .5rem 1.5rem;
    border-radius: 40px;
    display: flex;
    gap: .5rem;
    color: var(--color_black);
}

#hero .button span {
    padding: .5rem 2rem;
}

.button:hover span {
    background-color: transparent;
    color: var(--color_white);
}

.button.icon-download span:after {
    content: '';
    display: block;
    background-image: url(../Icons/Icon-Download_schwarz.svg);
    background-repeat: no-repeat;
    flex: 0 0 20px;
    background-size: 20px;
}

.button.icon-download:hover span:after {
    background-image: url(../Icons/Icon-Download_weiss.svg);
}

figure {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

figure figcaption {
    font-size: var(--font_size-medium);
    font-weight: 400;
}

figure img {
    max-width: 100%;
    height: auto;
}

h1 {
    color: var(--color_red);
    font-size: var(--font_size-large2);
    font-weight: 900;
    margin-bottom: 1.5rem;
    margin-top: 0;
    line-height: .8;
}

h2 {
    font-size: var(--font_size-large);
    margin: 0;
    font-weight: 900;
}

#hero h2 {
    margin: 0 0 .5rem 0;
}

h2.red {
    color: var(--color_red);
}

h3 {
    font-size: var(--font_size-medium);
    font-weight: 400;
    line-height: 1.4;
}

p {
    font-size: var(--font_size-basic);
    font-weight: 400;
}

p.headline  {
    font-size: var(--font_size-medium);
    font-weight: 900;
}

p strong {
    font-weight: 900;
}

p u {
    text-decoration: underline;
}

p.headline + p{
    margin-top: .5rem;
}

hr {
    background: transparent linear-gradient(90deg, var(--color_red) 0%, var(--color_red) 20%, var(--color_yellow) 64%, var(--color_red) 100%) 0% 0% no-repeat padding-box;
    height: 4px;
    margin: 0;
    border: none;
}

.ce-image.image-mobile {
    display: none;
}

.ce-image .ce-gallery {
    display: flex;
    flex-wrap: wrap;
    row-gap: 1.5rem;
}

.ce-image .ce-gallery .ce-row  {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.ce-image .ce-gallery.ce-border img {
    border: 1px solid var(--color_white);
}

.ce-image.ce-right .ce-gallery .ce-row {
    justify-content: right;
}

.frame-bg-grey {
    background-color: var(--color_grey);
}

main {
    min-height: calc(100svh - 240px);
}

.mobile-button {
    cursor: pointer;
    position: absolute;
    top: calc(5svh - .5rem);
    left: .75rem;
    display: none;
    height: 2.5rem;
    z-index: 99;
}

#home-link {
    cursor: pointer;
    position: absolute;
    height: 3.5rem;
    width: 3.5rem;
    z-index: 99;
    display: block;
    top: 5svh;
}

#home-link a {
    display: block;
    height: 100%;
    width: 100%;
}

#home-link a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-button span.button-line {
    background: var(--color_white);
    display: block;
    height: 4px;
    position: relative;
    width: 40px;
    z-index: 1;
    top: 50%;
}

.mobile-button span.button-line:before,
.mobile-button span.button-line:after {
    background: var(--color_white);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.mobile-button span.button-line::before {
    top: 10px;
}

.mobile-button span.button-line::after {
    top: -10px;
}

.main-nav {
    display: none;
    position: fixed;
    bottom: 0;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    background: transparent linear-gradient(90deg, var(--color_red-dark) 0%, var(--color_red) 36%, var(--color_red) 70%, var(--color_yellow) 90%, var(--color_yellow) 100%) 0% 0% no-repeat;
    border-radius: 20px 0;
    z-index: 99;
    padding: 4px;
}

.main-nav .close-nav-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.main-nav .close-nav-wrapper img.close-nav {
    width: 50px;
    height: auto;
    cursor: pointer;
}

.main-nav .main-nav-inner {
    background-color: var(--color_white);
    border-radius: 20px 0;
    padding: 1rem;
    max-height: 95vh;
    overflow-y: scroll;
}

.main-nav ul:not(.buttons) li {
   border-bottom: .5px solid var(--color_black);
}

.main-nav ul:not(.buttons) li a {
    padding: 1.5rem 0;
    display: block;
    font-size: var(--font_size-medium2);
}

.main-nav ul:not(.buttons) li:last-of-type {
    border-bottom: 2px solid var(--color_black);
}

.main-nav ul.buttons {
    margin-top: 2rem;
}

.main-nav ul.buttons li {
    display: flex;
    justify-content: end;
}

.main-nav ul.buttons li a {
    text-transform: uppercase;
    font-size: var(--font_size-basic);
    font-weight: 900;
    text-align: center;
    border-radius:42px;
    padding: 2px 4px;
    display: block;
    width: fit-content;
    background: transparent linear-gradient(90deg, var(--color_red-dark) 0%, var(--color_red) 36%, var(--color_yellow) 66%, var(--color_red) 81%, var(--color_red-dark2) 100%) 0% 0% no-repeat;
    border: none;
}

.main-nav ul.buttons li a span {
    background-color: var(--color_white);
    padding: .5rem 1.5rem;
    border-radius: 40px;
    display: block;
    width: fit-content;
}

header .mobile-button span.button-line::after {
    top: -10px;
}


section#hero {
    position: relative;
    min-height: 100svh;
    overflow-y: hidden;
    color: var(--color_white);
    padding-bottom: 4rem;
}

section#hero.subpage {
    min-height: 15svh;
}

section#hero .bg {
    height: 100%;
    object-fit: cover;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

section#hero #logo {
    position: absolute;
    right: 0;
    top: 5svh;
    width: 240px;
    max-width: 40vw;
}

section#hero #logo img {
    width: 100%;
    height: auto;
    box-shadow: 0 0 40px #FFFFFF80;
}

section#hero #circle-red {
    height: 65svh;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 3px solid var(--color_red);
    transform: translateX(-40%) translateY(50%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 0% 50%);
    bottom: 0;
    left: 0;
}

section#hero #circle-red #circle-red-inner {
    background-color: var(--color_red);
    display: block;
    border-radius: 50%;
    aspect-ratio: 1;
    height: 58svh;
}

section#hero div.frame-space-before-extra-large {
    margin-top: 10vh;
}

section#hero div.frame-space-before-extra-large > div {
    padding-top: 0;
}

section#hero figure img {
    max-width: 17vw;
}

/*SIDE MENU*/
#side-menu {
    position: fixed;
    top: 50svh;
    right: 0;
    z-index: 99;
}

#side-menu.hidden {
    display: none;
}

#side-menu a {
    background-color: var(--color_red);
    color: var(--color_white);
    font-size: var(--font_size-small);
    text-transform: uppercase;
    transform: rotate(-90deg);
    padding: .25rem .5rem .5rem .5rem;
    display: block;
    position: relative;
    right: -40%;
}

/*SCROLL TOP*/
#scroll-top {
    position: fixed;
    left: .75rem;
    bottom: 1rem;
    background-color: var(--color_grey-dark);
    border-radius: 50%;
    z-index: 99;
}

#scroll-top.hidden {
    display: none;
}

#scroll-top span {
    background-image: url(../Icons/Icon-Arrow_weiss.svg);
    transform: rotate(180deg);
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    background-size: 60%;
    display: block;
    background-color: var(--color_blue);
    border-radius: 50%;
    background-position: 50%;
    cursor: pointer;
}


.container {
    position: relative;
    z-index: 1;
}

section#content h2 + h3{
    margin-top: 1rem;
}


section#content .container-wrapper {
    position: relative;
}


section#content .container-wrapper .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 50%;
}

section#content .container-wrapper .bg-image.bg-contain {
    object-fit: contain;
    object-position: 50% 50%;
}

section#content .container-wrapper .gradient {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, var(--color_white), transparent 65%)
}

.tile {
    display: flex;
    width: 100%;
    aspect-ratio: 3/2;
    padding: 4px;
    border-radius: 39px 0;
    background: transparent linear-gradient(90deg, var(--color_red-dark) 0%, var(--color_red) 36%, var(--color_red) 70%, var(--color_yellow) 90%, var(--color_yellow) 100%) 0% 0% no-repeat;
    margin: 4rem 0;
}

.tile .tile-inner {
    background-color: var(--color_white);
    height: 100%;
    width: 100%;
    margin: 0;
    border-radius: 35px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    text-align: center;
    flex-flow: column;
}

.tile .tile-inner p {
    margin: 0;
    padding: 0 .5rem;
    width: 100%;
}

.tile .tile-inner p:not(.headline) {
    margin-top: .75rem;
}


main ul {
    margin-top: 2rem;
}

main ul li {
    font-size: var(--font_size-medium);
    padding-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .25rem;
}

main ul li:before {
    content: '';
    background-image: url(../Icons/Icon-Checkliste.svg);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    height: 30px;
    flex: 0 0 35px;
}


main p + ul li {
    font-size: var(--font_size-basic);
}

table {
    border-spacing: 0;
    width: 100%;
    margin-top: 2rem;
}

table thead {
    background: transparent linear-gradient(90deg, var(--color_yellow) 0%, var(--color_red) 55%, var( --color_red-dark) 100%) 0% 0% no-repeat padding-box;
    color: var(--color_white);
    border-bottom: 3px solid var(--color_black);
    font-size: var(--font_size-basic);
}


table thead th {
    padding: 1rem;
    border-bottom: 3px solid var(--color_black);
    text-align: left;
    font-weight: 900;
    vertical-align: top;
}

table tbody tr td  {
    border-bottom: 1px solid var(--color_black);
    padding: 1.5rem 1rem;
    font-size: var(--font_size-basic);
    vertical-align: top;
}

table tbody tr:last-of-type td  {
    border-bottom: 3px solid var(--color_black);
}

.mobile-table {
    background: transparent linear-gradient(180deg, var(--color_yellow) 0%, var(--color_red) 55%, var( --color_red-dark) 100%) 0% 0% no-repeat padding-box;
    display: none;
    margin-top: 2rem;
}

.mobile-table .table-wrapper {
    background-color: var(--color_white);
    margin-left: 1rem;
    padding-left: 1.5rem;
}

.mobile-table .table-head {
    font-weight: 900;
    font-size: var(--font_size-medium);
    color: var(--color_blue);
}

.mobile-table .table-col:not(:last-of-type) {
    margin-bottom: 3rem;
}

.mobile-table .table-entry {
    padding: 1rem 0;
    border-bottom: .5px solid var(--color_black);
}

.mobile-table .table-entry:last-of-type {
    border-bottom: 2px solid var(--color_black);
}

/*FORM*/
.tx-powermail .powermail_fieldwrap {
    margin-block-start: 0!important;
    margin-bottom: 2rem;
}

.tx-powermail label {
    font-size: var(--font_size-small);
    color: var(--color_grey-dark);
}

.tx-powermail input {
    background: var(--color_white);
    box-shadow: inset 4px 4px 6px #00000029;
    border-radius: 4px;
    font-size: var(--font_size-basic);
    line-height: 2;
}

.tx-powermail input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
}

.tx-powermail ul.powermail-errors-list li {
    display: none;
}

.tx-powermail .checkbox.powermail_field_error {
    background-color: unset;
}

.tx-powermail .powermail_field .checkbox {
    display: flex;
    gap: .5rem
}

    /*ACCORDION*/
.accordion .expand {
    width: 100%;
}

.accordion .expand span {
    font-size: var(--font_size-medium);
    font-weight: 900;
    border-bottom: 3px solid var(--color_black);
    text-transform: uppercase;
    padding: 1.5rem 0;
    display: flex;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
}

.accordion .expand:hover {
    color: var(--color_red);
}

.accordion .expand span:after {
    content: '';
    display: block;
    background-image: url(../Icons/Icon-Accordion.svg);
    width: 36px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform .5s ease;
}

.accordion .expand.active {
    color: var(--color_red);
}

.accordion .expand.active span:after {
    transform: rotate(-180deg);
}


.accordion .expand span:hover:after {
    color: var(--color_white);
}

.accordion .collapse {
    display: grid;
    grid-template-rows: 0fr;
    transition: all .5s ease;
    padding-top: 1rem;
}

.accordion .expand.active + .collapse {
    grid-template-rows: 1fr;
}

.accordion .collapse > div {
    overflow: hidden;
}






    /*FOOTER*/
footer .footer-top {
    min-height: 100px;
    background-color: var(--color_white);
    box-shadow: 0 6px 8px #0000001A inset;
    display: flex;
    align-items: center;
    padding: 1rem 0;
}

footer .footer-top nav.footer-menu ul {
    display: flex;
    justify-content: space-between;
}

footer .footer-bottom {
    height: 140px;
    background: transparent radial-gradient(closest-side at 0% 0%, var(--color_blue) 0%, var(--color_blue-dark) 100%) 0% 0% no-repeat padding-box;
    color: var(--color_white);
    display: flex;
    align-items: center;
}

footer .footer-bottom .social-media-nav {
    padding-bottom: 1rem;
}

footer .footer-bottom .social-media-nav ul {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

footer .footer-bottom .social-media-nav img {
    width: 35px;
    height: auto;
}


/*< xl*/
@media (max-width: 1199px) {
    .row {
        --bs-gutter-x: 1.5rem;
    }

    section#content .container-wrapper .bg-image.bg-contain {
        display: none;
    }
}

/*< lg*/
@media (max-width: 991px) {

    .mobile-button {
        display: flex;
    }

    .main-nav.active {
        display: block;
    }

    section#hero div.frame-space-before-extra-large {
        margin-top: 16svh;
    }

    .ce-image .ce-gallery {
        row-gap: 1.1rem;
    }

    section#hero .ce-image.ce-left .ce-row {
        justify-content: end;
    }

    section#hero .ce-image.ce-left .ce-row figure {
        flex-direction: row-reverse;
    }

    section#hero .ce-image.ce-left .ce-row figure figcaption {
        text-align: right;
    }

    section#hero figure img {
        max-width: 17vw;
        max-height: 9vh;
    }

    section#hero #circle-red {
        top: 50svh;
        bottom: unset;
        clip-path: unset;
        height: unset;
        width: 30vw;
        transform: translateX(-54%) translateY(-20%);

    }

    section#hero #circle-red #circle-red-inner {
        height: unset;
        width: 25vw;
    }

    table {
        display: none;
    }

    .mobile-table {
        display: block;
    }

    .tile {
        margin: 1.5rem 0;
        border-radius: 29px 0;
    }

    .tile .tile-inner {
        border-radius: 25px 0;
    }

    .col-6 .tile {
        aspect-ratio: 1;
    }

    .col-lg-4 .tile {
        aspect-ratio: 2 / 1;
    }

    .ce-image.image-desktop {
        display: none;
    }

    .ce-image.image-mobile {
        display: block;
    }

}

/*< md*/
@media (max-width: 767px) {

    #side-menu a {
        padding: .5rem 1rem 1rem 1rem;
    }

    .frame-space-before-large {
        padding-top: 1.5rem;
    }

    .frame-space-after-large {
        padding-bottom: 1.5rem;
    }

    .frame-space-before-extra-large > div {
        padding-top: 3rem;
    }

    .frame-space-after-extra-large > div {
        padding-bottom: 3rem;
    }

    footer .footer-top nav.footer-menu ul {
        display: block;
    }

    footer .footer-top nav.footer-menu ul li:not(:last-of-type) {
        padding-bottom: .5rem;
    }

    section#content .container-wrapper .gradient {
        background: linear-gradient(90deg, var(--color_white), transparent);
    }

    .button:hover span {
        background-color: var(--color_white);
        color: var(--color_black);
    }

    .button.icon-download:hover span:after {
        background-image: url(../Icons/Icon-Download_schwarz.svg);
    }
}

/* COOKIE OPT-IN BAR */
#cookie-bar {
    background: rgba(85, 85, 85, .8);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font-size: 12px;
    position: fixed;
    z-index: 9999;
}

#cookie-bar .cb-buttons {
    display: flex;
    position: relative;
}

#cookie-bar .cd-outer {
    padding: 1.5rem 2rem 2rem 2rem;
    max-width: 1245px;
    position: relative;
    left: 50%;
    width: 40%;
    background-color: var(--color_white);
    top: 50%;
    transform: translate(-50%, -50%) !important;
}

#cookie-bar h3 {
    font-size: var(--font_size-medium);
    margin-top: 0;
    margin-bottom: .5rem;
    color: var(--color_black);
    font-weight: 400
}

#cookie-bar .cd-outer::after {
    content: '';
    display: table;
    clear: both;
}

@media (max-width: 1250px) {
    #cookie-bar .cd-outer {
        width: 96%;
    }
}

#cookie-bar .cb-label {
    color: var(--color_black);
    display: block;
    width: 100%;
    font-size: var(--font_size-basic);
    margin-bottom: 1.5em;
}

#cookie-bar .cb-label a {
    color: var(--color_blue);
}

#cookie-bar .cb-save {
    color: var(--color_blue);
    text-decoration: none;
    padding: 6px 40px;
    display: inline-block;
    font-size: 16px;
    margin-right: 2rem;
}

#cookie-bar .cb-imprint {
    margin-right: auto;
    color: var(--color_blue);
    font-size: 1rem;
    padding: 8px 0px;
}

#cookie-bar .cb-check {
    display: flex;
    position: relative;
    margin-bottom: 1.5rem;
    align-items: center;
}

#cookie-bar .cb-check label {
    position: relative;
    font-size: var(--font_size-basic);
    color: var(--color_grey-dark);
    display: inline;
    margin-left: 0;
    vertical-align: super;
}

#cookie-bar .cb-check input[type="checkbox"]:focus {
    outline: 0;
}

#cookie-bar .cb-check input[type="checkbox"]:nth-of-type(2) {
    margin-left: 40px;
}

#cookie-bar .cb-check input[type="checkbox"]{
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 1px solid var(--color_grey-dark);
    -webkit-appearance: none;
    border-radius: 5px;
}

#cookie-bar .cb-check input[type="checkbox"]:checked{
    background-image: url('../Icons/Icon-checked.png');
    background-repeat: no-repeat;
    background-position: 50%;
}

#cookie-bar .cb-check input[type="checkbox"][readonly]{
    background-color: var(--color_grey);
    border: none;
    background-image: url('../Icons/Icon-checked-readonly.png');
    background-repeat: no-repeat;
    background-position: 50%;
}

#cookie-bar .cb-details {
    position: relative;
    display: block;
    width: 100%;
    clear: both;
}

#cookie-bar .cb-details.accordion {
    max-height: 25px;
    overflow: hidden;
    -webkit-transition: height .5s linear;
    -o-transition: height .5s linear;
    transition: height .5s linear;
    margin-bottom: .5rem;
}

#cookie-bar .cb-details.accordion.active {
    max-height: 100%;
}

#cookie-bar .cb-details label.cb-action {
    display: flex;
    color: var(--color_blue);
    cursor: pointer;
    float: right;
    font-weight: inherit;
    font-size: var(--font_size-small);
    align-items: center;
    gap: .5rem;
}

#cookie-bar .cb-details label.cb-action:after {
    content: '';
    display: block;
    background-image: url(../Icons/Icon-Accordion.svg);
    width: 20px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform .5s ease;
}

#cookie-bar .cb-details.active label.cb-action:after {
    transform: rotate(-180deg);
}

#cookie-bar .cb-details p {
    clear: both;
    margin-top: 1.7em;
    padding: 0 0 1.5em 0;
    position: relative;
    width: 100%;
    color: var(--color_black);
    font-size: var(--font_size-small);
}

#cookie-bar .cb-details strong {
    position: relative;
    display: block;
    color: var(--color_black);
    font-weight: 900;
}

#cookie-bar .cb-details strong:nth-of-type(2) {
    margin-top: 1em;
}

#cookie-bar .cb-disable,
#cookie-bar .cb-policy {
    border: 1px solid var(--color_red);
    color: var(--color_red);
}

#cookie-bar .cb-policy,
#cookie-bar .cb-disable {
    margin-left: 5px;
}

@media (max-width: 1650px) {
    #cookie-bar .cd-outer {
        width: 50%
    }
}

@media (max-width: 1290px) {
    #cookie-bar .cd-outer {
        width: 70%
    }
}

@media (max-width: 800px) {
    #cookie-bar .cd-outer {
        width: 90%
    }
}

@media (max-width: 630px) {
    #cookie-bar .cb-buttons {
        width: 100%;
        margin-top: 10px;
        flex-direction: column-reverse;
        align-items: center;
    }

    #cookie-bar .cb-buttons a {
        margin-bottom: 1rem;
        text-align: center;
    }

    #cookie-bar .cb-save {
        margin-right: 0;
    }

    #cookie-bar .cd-outer {
        max-height: 90%;
        overflow-y: scroll;
        padding: 1rem
    }

    #cookie-bar .cb-details.accordion {
        margin-bottom: 0;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .cb-buttons {
        display: block;
    }

    main {
        margin-top: 12.4rem
    }

    header {
        position: fixed;
    }
}
