.cc-window-wrapper {
    opacity: 1;
    -webkit-transition: visibility 0s, opacity 0.5s linear;
    transition: visibility 0s, opacity 0.5s linear;
}

.cc-window {
    opacity: 1;
    -webkit-transition: opacity 1s ease;
    transition: opacity 1s ease;
}

.cc-window-wrapper.cc-invisible,
.cc-window.cc-invisible {
    opacity: 0;
}

.cc-animate.cc-revoke {
    /* -webkit-transition: transform 1s ease; */
    /* -webkit-transition: -webkit-transform 1s ease; */
    /* transition: -webkit-transform 1s ease; */
    /* transition: transform 1s ease; */
    /* transition: transform 1s ease, -webkit-transform 1s ease; */
    -webkit-transition: transform 1s ease;
    -moz-transition: transform 1s ease;
    -ms-transition: transform 1s ease;
    -o-transition: transform 1s ease;
    transition: transform 1s ease;
}

.cc-animate.cc-revoke.cc-top {
    -webkit-transform: translateY(-2em);
    transform: translateY(-2em);
}

.cc-animate.cc-revoke.cc-bottom,
.cc-animate.cc-revoke.cc-popup,
.cc-animate.cc-revoke.cc-overlay {
    -webkit-transform: translateY(2em);
    transform: translateY(2em);
}

.cc-animate.cc-revoke.cc-active.cc-top {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.cc-animate.cc-revoke.cc-active.cc-bottom,
.cc-animate.cc-revoke.cc-active.cc-popup,
.cc-animate.cc-revoke.cc-active.cc-overlay {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.cc-revoke:hover {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 40%);
}

.cc-animate.cc-revoke:hover {
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
}

.cc-grower {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 1s;
    transition: max-height 1s;
}

.cc-revoke,
.cc-window {
    position: fixed;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: Helvetica, Calibri, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    z-index: 9999;
}

.cc-window.cc-static {
    position: static;
}

.cc-window.cc-floating {
    padding: 2em;
    max-width: 24em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.cc-window.cc-floating .cc-logo {
    display: block;
}

.cc-window.cc-banner {
    padding: 1em 1.8em;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.cc-window.cc-banner.cc-theme-edgeless .cc-logo {
    margin-left: 10px;
}

.cc-revoke {
    padding: 0.4em;
    z-index: 2147483647 !important;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
    transition: box-shadow 0.6s ease-in-out;
    background-color: #fff;
}

.cc-revoke:hover {
    text-decoration: underline;
}

.cc-header {
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    margin-bottom: 1em;
}

.cc-btn,
.cc-close,
.cc-link,
.cc-revoke {
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.cc-link {
    opacity: 0.8;
    display: inline-block;
    padding: 0.2em;
    text-decoration: underline;
}

.cc-link:hover {
    opacity: 1;
}

.cc-link:active,
.cc-link:visited {
    color: initial;
}

.cc-btn {
    display: block;
    padding: 0.4em 0.8em;
    font-size: 0.9em;
    font-weight: 700;
    border-width: 2px;
    border-style: solid;
    text-align: center;
    white-space: nowrap;
    outline: 0;
}

.cc-btn:hover {
    cursor: pointer !important;
}

.cc-highlight .cc-btn {
    background-color: transparent;
    border-color: transparent;
}

.cc-highlight .cc-btn.cc-leave:focus,
.cc-highlight .cc-btn.cc-leave:hover {
    background-color: transparent;
    text-decoration: underline;
}

/* .cc-highlight .cc-btn:first-child:focus,.cc-highlight .cc-btn:first-child:hover {  background-color: transparent;  text-decoration: underline;} */
.cc-close {
    display: block;
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    font-size: 1em;
    opacity: 0.9;
    line-height: 0.75;
    outline: 0;
}

.cc-close:focus,
.cc-close:hover {
    opacity: 1;
    outline: 0;
}

.cc-banner .cc-close {
    position: unset;
    margin-left: 15px;
}

.cc-revoke.cc-top {
    top: 0;
    left: 3em;
    border-bottom-left-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
}

.cc-revoke.cc-bottom,
.cc-revoke.cc-popup,
.cc-revoke.cc-overlay {
    bottom: 0;
    left: 3em;
    border-top-left-radius: 0.5em;
    border-top-right-radius: 0.5em;
}

.cc-revoke.cc-left {
    left: 3em;
    right: unset;
}

.cc-revoke.cc-right {
    right: 3em;
    left: unset;
}

.cc-top {
    top: 1em;
}

.cc-left {
    left: 1em;
}

.cc-right {
    right: 1em;
}

.cc-bottom {
    bottom: 1em;
}

.cc-floating>.cc-link {
    margin-bottom: 1em;
}

.cc-floating .cc-message {
    display: block;
    margin-bottom: 1em;
}

.cc-floating .cc-logo {
    text-align: center;
}

.cc-window.cc-floating .cc-compliance {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

.cc-window.cc-banner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cc-banner.cc-top {
    left: 0;
    right: 0;
    top: 0;
}

.cc-banner.cc-bottom {
    left: 0;
    right: 0;
    bottom: 0;
}

.cc-banner .cc-message {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    max-width: 100%;
    margin-right: 1em;
}

.cc-compliance {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: justify;
    align-content: space-between;
}

.cc-floating .cc-compliance>.cc-btn {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.cc-btn+.cc-btn {
    margin-left: 0.5em;
}

@media print {

    .cc-revoke,
    .cc-window {
        display: none;
    }
}

@media screen and (max-width: 900px) {
    .cc-btn {
        white-space: normal;
    }
}

@media screen and (max-width: 414px) and (orientation: portrait),
screen and (max-width: 736px) and (orientation: landscape) {
    .cc-window.cc-top {
        top: 0;
    }

    .cc-window.cc-bottom {
        bottom: 0;
    }

    .cc-window.cc-banner,
    .cc-window.cc-floating,
    .cc-window.cc-left,
    .cc-window.cc-right {
        left: 0;
        right: 0;
    }

    .cc-window.cc-banner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .cc-window.cc-banner .cc-compliance {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }

    .cc-window.cc-floating {
        max-width: none;
    }

    .cc-window .cc-message {
        margin-bottom: 1em;
    }

    .cc-window.cc-banner {
        -webkit-box-align: unset;
        -ms-flex-align: unset;
        align-items: unset;
    }

    .cc-window.cc-banner .cc-message {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .cc-window.cc-floating {
        max-width: 100% !important;
    }
}

.cc-floating.cc-theme-classic {
    padding: 1.2em;
    border-radius: 5px;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-compliance {
    text-align: center;
    display: inline;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.cc-theme-classic .cc-btn.cc-settings,
.cc-theme-classic .cc-btn.cc-btn-decision {
    border-radius: 5px;
}

.cc-theme-classic .cc-btn.cc-btn-decision {
    min-width: 140px;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-btn {
    display: inline-block;
}

.cc-theme-edgeless.cc-window {
    padding: 0;
}

.cc-floating.cc-theme-edgeless .cc-message {
    margin: 2em;
    margin-bottom: 1.5em;
}

.cc-floating .cc-logo+.cc-message {
    margin-top: 1em;
}

.cc-logo+.cc-header {
    margin-top: 1em;
}

.cc-floating.cc-theme-edgeless .cc-logo {
    margin: 2em 2em 0px 2em;
}

.cc-banner.cc-theme-edgeless .cc-btn {
    margin: 0;
    padding: 0.8em 1.8em;
    height: 100%;
}

.cc-banner.cc-theme-edgeless .cc-message {
    margin-left: 1em;
}

.cc-floating.cc-theme-edgeless .cc-btn+.cc-btn {
    margin-left: 0;
}

.cc-theme-edgeless .cc-btn.cc-settings {
    border-color: transparent !important;
}

.cc-theme-wired .cc-btn.cc-settings:hover,
.cc-theme-wired .cc-btn.cc-settings:focus {
    text-decoration: underline;
}

/** POPUP OVERLAY */
.cc-window-wrapper.cc-overlay-wrapper,
.cc-window-wrapper.cc-popup-wrapper {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: 100vh !important;
    width: 100vw;
    color: rgb(20, 30, 35);
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 2147483647;
    overflow: hidden;
    height: 100vh !important;
}

.cc-window-wrapper.cc-overlay-wrapper .cc-window.cc-bottom,
.cc-window-wrapper.cc-popup-wrapper .cc-window.cc-bottom {
    bottom: auto;
}

.cc-window-wrapper.cc-overlay-wrapper .cc-window.cc-left,
.cc-window-wrapper.cc-popup-wrapper .cc-window.cc-left {
    left: auto;
}

.cc-window-wrapper.cc-overlay-wrapper .cc-window,
.cc-window-wrapper.cc-popup-wrapper .cc-window {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (min-width: 768px) {

    .cc-window-wrapper.cc-overlay-wrapper .cc-window,
    .cc-window-wrapper.cc-popup-wrapper .cc-window {
        height: auto;
        max-height: none;
    }
}

/* .cc-window-wrapper.cc-overlay-wrapper { */
/* background-color: rgba(33, 41, 52, 0.75); */
/* } */
.cc-logo {
    line-height: 0;
}

/** FIXES header in edgeless theme */
.cc-floating.cc-theme-edgeless .cc-header {
    margin: 1em 1.2em 0;
    padding: 0;
}

.cc-window-wrapper.cc-bottom-center-wrapper,
.cc-window-wrapper.cc-top-center-wrapper {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.cc-banner .cc-banner-logo {
    margin-right: 15px;
}

body.cc-scrolling-disabled {
    height: 100%;
    overflow: hidden;
}

/** Revoke button */
.pd-floating-icon {
    border-radius: 10px;
    width: 35px;
    height: 35px;
    transition: all 1.9s ease;
    top: 10px;
    left: 10px;
}

.pd-floating-icon img {
    vertical-align: baseline;
}

.cc-animate .pd-floating-icon:hover {
    cursor: pointer;
    transform: rotateY(180deg);
    transform-style: preserve-3d;
    transition: all 1.9s ease;
}

.pd-floating-icon__open {
    background-color: transparent;
    border: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    padding: 0;
    line-height: 0;
    margin: 0;
    box-shadow: none;
    min-width: 0;
}

.pd-floating-icon__open:focus {
    outline: none;
}

.pd-floating-icon__open:hover {
    background-color: transparent;
    box-shadow: none;
}

.pd-floating-text__open {
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.pd-floating-text span {
    font-family: Helvetica, Calibri, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5em;
}

.pd-floating-text span:hover {
    text-decoration: underline;
}

@keyframes appear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.pd-cp-ui-container {
    /* background: rgba(33, 41, 52, 0.85) !important; */
    bottom: 0 !important;
    /* display: flex !important; */
    display: none;
    left: 0 !important;
    opacity: 0;
    overflow-y: scroll;
    position: fixed !important;
    right: 0 !important;
    top: 0 !important;
    transition: opacity 0.15s ease;
    visibility: hidden;
    will-change: visibility, opacity;
    z-index: 2147483647 !important;
    transition: background 0.6s;
    -webkit-transition: background 0.6s;
}

/* .pd-cp-ui-container.pd-cp-ui__showing { */
/*   background: none !important; */
/* } */
.pd-cp-ui {
    background-color: #000;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    color: #fff;
    justify-content: space-between;
    left: 0;
    max-height: 90vh;
    min-height: 300px !important;
    opacity: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    position: fixed;
    right: 0;
    visibility: hidden;
    will-change: visibility, opacity;
    -webkit-font-smoothing: antialiased;
}

.pd-cp-ui__showing .pd-cp-ui {
    visibility: visible;
    opacity: 1;
}

.pd-cp-ui__top {
    top: 0;
}

.pd-cp-ui__bottom {
    bottom: 0;
}

.pd-cp-ui-content {
    padding: 20px 30px;
}

.pd-cp-ui__showing {
    opacity: 1;
    visibility: visible;
}

a.pd-cp-ui-close {
    font-weight: 600;
    text-decoration: none !important;
    padding: 10px 0;
}

.pd-cp-ui-close-top {
    display: none;
}

.pd-cp-ui-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.pd-cp-ui-title-container {
    flex: 1 1 auto;
    font-size: 1em;
    font-weight: 600;
    line-height: 20px;
}

.pd-cp-ui-horizontal-buttons {
    align-content: center;
    justify-content: center !important;
}

.pd-cp-btn {
    box-sizing: border-box;
    cursor: pointer !important;
    font-size: 0.9em;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 0.8em 1em;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
}

.cc-theme-classic .pd-cp-btn {
    border-radius: 5px;
}

.pd-cp-btn__small {
    flex: 0 1 auto;
    font-size: 0.75em;
}

.pd-cp-ui-horizontal-buttons .pd-cp-btn {
    flex: 1 0 auto !important;
    max-width: 300px !important;
}

@media (max-width: 699px) {
    .pd-cp-ui-content {
        padding: 20px;
    }

    .pd-cp-ui-header {
        margin-bottom: 0;
        display: flex;
        flex-wrap: wrap;
    }

    .pd-cp-ui-title-container {
        margin-bottom: 1em;
    }

    .pd-cp-ui-horizontal-buttons {
        text-align: right;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    .pd-cp-ui-horizontal-buttons .pd-cp-btn {
        display: inline-block;
        padding: 6px 10px;
    }

    .pd-cp-ui-horizontal-buttons .pd-cp-btn:first-child {
        margin-right: 0.5em;
        margin-bottom: 0;
    }

    .pd-cp-ui-col-6>.pd-cp-ui-close {
        display: none;
    }

    .pd-cp-ui-close-top {
        width: 20px;
        position: absolute;
        display: inline-block;
        right: 1em;
    }

    .pd-cp-btn.pd-cp-ui-save {
        width: 100%;
    }

    .pd-cp-ui-col-6:nth-child(2) {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
}

.pd-cp-ui-intro {
    font-size: 0.75em;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    line-height: 1.375;
    margin: 1em 0;
}

.pd-cp-scrolling-section {
    height: calc(90vh - 570px);
    max-height: 1000px;
    min-height: 180px !important;
    overflow-y: scroll;
    padding: 0px 15px 10px 0px;
}

.pd-cp-scrolling-section::-webkit-scrollbar {
    width: 4px;
}

.pd-cp-purpose-row {
    display: flow-root;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
}

.pd-cp-purpose-info {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.pd-cp-sn-actions {
    padding: 1.25em 0 !important;
}

.pd-cp-bold-messaging {
    font-size: 0.875em;
    font-weight: 700;
    line-height: normal;
    cursor: pointer;
    flex: 0 1 70%;
    clear: both;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 1em 0;
    display: flex;
}

.pd-cp-bold-messaging:before {
    width: 7px;
    height: 7px;
    border-right: 1px solid #4a6e78;
    border-bottom: 1px solid #4a6e78;
    content: " ";
    transform: rotate(-45deg);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    margin: 0.3em 0.7em 0 0.2em;
}

.pd-cp-purpose-row__active .pd-cp-bold-messaging:before {
    transform: rotate(45deg);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    width: 7px;
    height: 7px;
    border-right: 1px solid #4a6e78;
    border-bottom: 1px solid #4a6e78;
    content: " ";
    transition: all 0.2s ease-in-out;
    margin: 0.3em 0.7em 0 0.2em;
}

.pd-cp-purpose-wrapper {
    animation: 1s ease 0s 1 normal forwards running appear;
}

.pd-cp-purpose-description {
    float: left;
    margin: 0px !important;
    font-size: 0.75em;
    font-weight: 300;
    line-height: 1.375;
    padding: 0 0 0 1.7em !important;
}

.pd-cp-purpose-actions {
    flex: 0 1 30%;
    text-align: right;
    font-size: 0.7em;
    float: right;
    display: block !important;
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    font-weight: 600;
    padding: 1.1em 0;
}

.pd-cp-sn-actions {
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.pd-cp-preferences-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 20px;
    margin: 0px;
}

.pd-cp-preferences-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pd-cp-preferences-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.pd-cp-preferences-slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked+.pd-cp-preferences-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.pd-cp-preferences-slider.round {
    border-radius: 34px;
}

.pd-cp-preferences-slider.round:before {
    border-radius: 50%;
}

.pd-cp-ui-footer {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 15px;
}

.pd-cp-ui-footer .pd-cp-ui-close {
    float: left;
    cursor: pointer;
}

.pd-cp-ui-footer .pd-cp-ui-close:hover {
    color: inherit !important;
}

.pd-cp-ui-footer .pd-cp-ui-save {
    float: right;
}

.pd-cp-ui-col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.pd-cp-ui-float-right {
    float: right !important;
}

.pd-cp-cookies-details {
    display: flex;
    font-size: 0.75em;
    width: 100%;
    padding: 0.5em 0 0.5em 1.7em;
    animation: 1s ease 0s 1 normal forwards running appear;
}

.pd-cp-cookies-details .pd-cp-toggle {
    text-decoration: underline;
}

.pd-cp-toggle:hover,
.pd-cp-toggle:visited,
.pd-cp-toggle:active {
    outline: none;
}

.pd-cp-cookies-list {
    list-style-position: outside;
    list-style-type: none;
    margin: 0 0 0 1.2em;
    padding: 0.2em;
    line-height: 1.25;
    list-style: none;
    background-color: rgba(0, 0, 0, 0.1);
    animation: 1s ease 0s 1 normal forwards running appear;
}

.pd-cp-cookies-list-item {
    line-height: 1.25;
    text-indent: 0;
}

.pd-cp-cookies-list:first-of-type .pd-cp-cookies-list-item:first-of-type {
    border-top-width: 0;
    margin: 0;
    padding-top: 0;
}

.pd-cp-cookies-list-item dl {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.pd-cp-cookies-list-item dt {
    border: 0;
    clear: both;
    display: block;
    flex: 0 1 30%;
    font-size: 0.7em;
    font-weight: 700;
    line-height: 1.375;
    margin: 0 0 0.5em;
    padding: 0;
}

.pd-cp-cookies-list-item dd {
    flex: 0 1 70%;
    font-size: 0.7em;
    line-height: 1.375;
    margin: 0 0 0.5em;
    padding: 0;
}

.pd-cp-cookies-list>.pd-cp-cookies-list-item:not(:first-of-type) {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 5px 0 0 0;
    padding-top: 5px;
}

.pd-cp-powered-by {
    background: #ddd;
    text-align: center;
    font-size: 0.6em;
    padding: 0.5em;
}

.pd-cp-powered-by a {
    text-decoration: none;
    color: #333;
}

.pd-sr-only {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}




.grid {
    gap: var(--gutter)
}

.grid .grid__item {
    position: relative;
    display: block;
    text-decoration: none;
    width: 100%;
    overflow: hidden;
    transform: translateZ(0)
}

.grid .grid__item .note {
    background: none !important;
    font-size: calc(.875 * var(--baseFontSize));
    opacity: .6;
    margin: var(--gutter) 0
}

.grid .grid__item figure {
    display: block;
    overflow: hidden;
    height: 100%
}

.grid .grid__item figure>:not(.grid__text) {
    height: 100%
}

.grid .grid__item img,
.grid .grid__item picture:not(.inline) {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%
}



@media (min-width:1024px) {
    .grid .grid__item .video-wrapper {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%
    }
}

.grid .grid__item img,
.grid .grid__item video {
    object-fit: cover
}

.grid .grid__item .video-wrapper,
.grid .grid__item picture {
    background: linear-gradient(225deg, #e7eae7 30.32%, #f6f0e9 100.3%)
}


.grid .grid__item .video-wrapper video,
.grid .grid__item picture video {
    display: block;
    width: 100%;
    height: 100%;
    transform: translateZ(0)
}

.grid .cta {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

@media (min-width:1024px) {
    .grid .cta {
        padding-bottom: calc(var(--gutter) * 4);
        border-bottom-color: #1d1d1d1a
    }
}

.grid .cta svg {
    position: static !important;
    margin-left: .5em;
    width: .75em;
    height: .75em;
    transition: transform .3s ease-in-out
}

.grid a.grid__item:hover .cta svg {
    transform: translate(5px)
}

@media (min-width:1024px) {
    .grid {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (1fr)[12];
        grid-template-columns: repeat(12, 1fr)
    }

    .grid .grid__item {
        -ms-grid-column: span 12;
        grid-column: span 12
    }

    .grid .grid__11 {
        -ms-grid-column: span 11;
        grid-column: span 11
    }

    .grid .grid__10 {
        -ms-grid-column: span 10;
        grid-column: span 10
    }

    .grid .grid__9 {
        -ms-grid-column: span 9;
        grid-column: span 9
    }

    .grid .grid__8 {
        -ms-grid-column: span 8;
        grid-column: span 8
    }

    .grid .grid__7 {
        -ms-grid-column: span 7;
        grid-column: span 7
    }

    .grid .grid__6 {
        -ms-grid-column: span 6;
        grid-column: span 6
    }

    .grid .grid__5 {
        -ms-grid-column: span 5;
        grid-column: span 5
    }

    .grid .grid__4 {
        -ms-grid-column: span 4;
        grid-column: span 4
    }

    .grid .grid__3 {
        -ms-grid-column: span 3;
        grid-column: span 3
    }

    .grid .grid__2 {
        -ms-grid-column: span 2;
        grid-column: span 2
    }

    .grid .grid__1 {
        -ms-grid-column: span 1;
        grid-column: span 1
    }
}



.section--bcorp small {
    display: block;
    color: #747474;
    line-height: 1
}

.section--bcorp p,
.section--bcorp small {
    font-size: calc(1.125 * var(--baseFontSize))
}

.section--bcorp p {
    line-height: 1.4
}

.section--bcorp a {
    text-decoration: none;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: baseline;
    align-items: baseline;
    font-weight: 500
}

.section--bcorp a svg {
    height: .75em;
    width: auto;
    margin-left: calc(var(--gutter) / 2);
    transition: transform .3s ease-in-out
}

.section--bcorp a:focus svg,
.section--bcorp a:hover svg {
    transform: translate3d(5px, 0, 0)
}

@media (max-width:1023px) {
    .section--bcorp .grid__media {
        margin-bottom: var(--gutter)
    }

    .section--bcorp .h4,
    .section--bcorp p,
    .section--bcorp small {
        margin-bottom: calc(var(--gutter) * 1.25)
    }

    .section--bcorp p {
        font-size: calc(1 * var(--baseFontSize))
    }
}

.section--bcorp .grid__media,
.section--usp .grid__media {
    border-radius: 4px
}

@media (max-width:1023px) {

    .section--bcorp .grid__item.grid__media img,
    .section--usp .grid__item.grid__media img {
        position: static
    }
}

@media (min-width:1024px) {

    .section--bcorp .grid__media,
    .section--usp .grid__media {
        aspect-ratio: 1/1
    }

    .section--bcorp .grid__media img,
    .section--usp .grid__media img {
        position: static
    }

    .section--bcorp .grid__text,
    .section--usp .grid__text {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -ms-flex-pack: center;
        justify-content: center
    }

    .section--bcorp .grid__text>*,
    .section--usp .grid__text>* {
        margin: 0
    }

    .section--bcorp.section--usp .grid__text,
    .section--usp.section--usp .grid__text {
        padding-right: calc(var(--gutter) * 6)
    }
}

.section--bcorp .h4,
.section--data .h4 {
    font-size: calc(2.875 * var(--baseFontSize))
}

@media (max-width:1023px) {

    .section--bcorp .h4,
    .section--data .h4 {
        font-size: calc(1.875 * var(--baseFontSize))
    }
}

@media (min-width:1920px) {

    .section--bcorp .h4,
    .section--data .h4 {
        font-size: calc(3.75 * var(--baseFontSize))
    }
}

.section--bcorp.section--data .h4,
.section--data.section--data .h4 {
    margin-bottom: 0
}

@media (min-width:1024px) {

    .section--bcorp .grid,
    .section--data .grid {
        gap: 0;
        -ms-grid-columns: (1fr)[24];
        grid-template-columns: repeat(24, 1fr)
    }

    .section--bcorp .grid__item:first-child,
    .section--data .grid__item:first-child {
        grid-column: 1/13
    }

    .section--bcorp .grid__item:last-child,
    .section--data .grid__item:last-child {
        grid-column: 16/24
    }

    .section--bcorp.section--data .grid__item:last-child,
    .section--data.section--data .grid__item:last-child {
        grid-column: 16/25;
        white-space: nowrap
    }

    .section--bcorp.section--bcorp .grid__text,
    .section--data.section--bcorp .grid__text {
        gap: calc(var(--gutter)*1.5);
        max-width: 426px
    }
}


@media (max-width:1023px) {
    .comparison-table-outter {
        overflow-x: scroll
    }
}

.comparison-table {
    text-align: left;
    border-collapse: collapse;
    color: #1d1d1d;
    font-size: calc(.75 * var(--baseFontSize));
    margin: 0
}

.comparison-table [data-panel] {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.comparison-table .option-block.option-block--color--condensed {
    left: 0;
    padding: 0 !important;
    background: none
}

@media (min-width:1024px) {
    .comparison-table {
        table-layout: fixed;
        width: 100%;
        font-size: calc(.9375 * var(--baseFontSize))
    }
}

.comparison-table td,
.comparison-table th {
    padding: calc(var(--gutter)*.75);
    border: none;
    border-top: 1px solid rgba(29, 29, 29, .1);
    vertical-align: top
}

.comparison-table td .btn,
.comparison-table th .btn {
    min-width: 100px !important
}

@media (max-width:1023px) {

    .comparison-table td .btn,
    .comparison-table th .btn {
        font-size: calc(.875 * var(--baseFontSize))
    }
}

@media (min-width:1024px) {

    .comparison-table td,
    .comparison-table th {
        padding: var(--gutter) calc(var(--gutter)*.75)
    }
}

.comparison-table td>span,
.comparison-table th>span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: calc(var(--gutter)*.5)
}

.comparison-table td>span small,
.comparison-table th>span small {
    color: #757575
}

.comparison-table td>span svg,
.comparison-table th>span svg {
    color: #1d1d1d
}

.comparison-table td:first-child,
.comparison-table th:first-child {
    font-weight: 500;
    padding-left: 0;
    min-width: 110px
}

.comparison-table th {
    font-weight: 500
}

.comparison-table thead .bike-picture--container {
    margin: 0;
    width: 170px
}

@media (min-width:1024px) {
    .comparison-table thead .bike-picture--container {
        width: auto;
        margin: 0 var(--gutter) 0 0
    }
}

.comparison-table thead th {
    border: none
}

.comparison-table thead .thead--image th {
    padding-top: 0;
    padding-bottom: calc(var(--gutter)*.25);
    vertical-align: bottom
}

@media (min-width:1024px) {
    .comparison-table thead .thead--image th {
        padding-bottom: calc(var(--gutter)*.5)
    }
}

.comparison-table thead .thead--title {
    z-index: 1;
    background: #f3f3f3;
    font-size: calc(.9375 * var(--baseFontSize))
}

@media (min-width:1024px) {
    .comparison-table thead .thead--title {
        position: sticky;
        top: calc(var(--page-header-height) + var(--top-banner-height, 0px))
    }

    .scroll-down .comparison-table thead .thead--title {
        top: calc(var(--top-banner-height, 0px))
    }
}

.comparison-table thead .thead--title th {
    line-height: 1;
    white-space: nowrap
}

@media (min-width:1024px) {
    .comparison-table thead .thead--title {
        font-size: calc(1.375 * var(--baseFontSize))
    }
}

.comparison-table thead .thead--description {
    color: #757575
}

.comparison-table thead .thead--description th {
    padding-top: 0
}

@media (min-width:1024px) {
    .comparison-table thead .thead--price th {
        padding-bottom: calc(var(--gutter)*1.25);
        font-size: calc(1.125 * var(--baseFontSize))
    }

    .comparison-table thead .thead--colors th {
        padding-bottom: calc(var(--gutter)*1.5)
    }

    .comparison-table thead .thead--cta th {
        padding-bottom: calc(var(--gutter)*2)
    }
}

.comparison-table thead .thead--price span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.comparison-table thead .thead--price small {
    font-size: calc(.75 * var(--baseFontSize));
    color: #9a9a9a;
    font-weight: 400
}

.comparison-table thead .thead--cta th {
    padding-top: 0
}

@media (max-width:1023px) {
    .comparison-table thead .thead--cta th {
        padding-top: calc(var(--gutter)*.5);
        padding-bottom: calc(var(--gutter)*1.5)
    }
}

.comparison-table thead .thead--colors,
.comparison-table thead .thead--price {
    line-height: 1
}

.comparison-table thead .thead--colors th,
.comparison-table thead .thead--price th {
    padding-top: 0
}


.section--compare .comparison-table+p {
    margin: calc(var(--gutter)*1.5) 0 0
}

@media (min-width:1024px) {
    .section--compare .comparison-table+p {
        margin: calc(var(--gutter)*3) 0 0;
        text-align: center
    }
}

@media (max-width:767px) {
    .section--compare {
        padding-left: 0;
        padding-right: 0
    }

    .section--compare h2 {
        padding: 0 var(--gutter)
    }
}


.section--compare {
    overflow: clip
}

.section--compare .scrolling-headers {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #fdf8f2;
    overflow: scroll;
    display: -ms-flexbox;
    display: flex;
    padding: 0 var(--gutter);
    padding-top: calc(var(--page-header-height) + var(--top-banner-height, 0px));
    white-space: nowrap;
    font-size: calc(.9375 * var(--baseFontSize))
}

.section--compare .heading {
    position: sticky;
    top: 0;
    font-weight: 500;
    min-width: 200px;
    padding: calc(var(--gutter)*.75)
}

.section--compare .heading:first-child {
    min-width: 110px
}


.section--compare {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.section--compare .section .section__intro.section__title,
.section--compare .section__intro.h3,
.section .section--compare .section__intro.section__title {
    border-top: 1px solid rgba(29, 29, 29, .1);
    padding-top: var(--section-gutter);
    max-width: none
}

.section--compare p.section__intro {
    -ms-flex-order: -1;
    order: -1
}

@media (max-width:1023px) {
    .section--compare>* {
        padding-left: var(--gutter);
        padding-right: var(--gutter)
    }
}

.section--compare-models {
    padding-bottom: calc(var(--section-gutter) - var(--gutter))
}


