@import url('https://rkt.static.monospace.host/custom.css');

/* -------------------------------- 

File#: _1_filter
Title: Filter
Descr: A plugin to filter/sort items in a grid
Usage: codyhouse.co/license

-------------------------------- */

/* *,
*::after,
*::before {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
}

button,
input,
textarea,
select {
    background-color: transparent;
    border-radius: 0;
    color: inherit;
    line-height: inherit;
    appearance: none;
}

textarea {
    resize: vertical;
    overflow: auto;
    vertical-align: top;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img,
video,
svg {
    display: block;
    max-width: 100%;
} */

/* variables */
:root {
    /* colors */
    --fe6-color-primary-hsl: 250, 84%, 54%;
    --fe6-color-bg-hsl: 0, 0%, 100%;
    --fe6-color-contrast-high-hsl: 230, 7%, 23%;
    --fe6-color-contrast-higher-hsl: 230, 13%, 9%;
    --fe6-color-accent-hsl: 342, 89%, 48%;
    --fe6-color-contrast-lower-hsl: 240, 4%, 85%;
    --fe6-color-contrast-medium-hsl: 225, 4%, 47%;

    /* spacing */
    --fe6-space-4xs: 0.125rem;
    --fe6-space-3xs: 0.25rem;
    --fe6-space-2xs: 0.375rem;
    --fe6-space-sm: 0.75rem;
    --fe6-space-md: 1.25rem;

    /* typography */
    --fe6-text-sm: 0.833rem;
    --fe6-text-md: 1.2rem;
}

@media(min-width: 64rem) {
    :root {
        /* spacing */
        --fe6-space-4xs: 0.1875rem;
        --fe6-space-3xs: 0.375rem;
        --fe6-space-2xs: 0.5625rem;
        --fe6-space-sm: 1.125rem;
        --fe6-space-md: 2rem;

        /* typography */
        --fe6-text-sm: 1rem;
        --fe6-text-md: 1.5625rem;
    }
}

.hyphens-auto {
    hyphens: auto;
    word-break: break-word;
}

/* form elements */
.fe6-form-legend {
    color: hsl(var(--fe6-color-contrast-higher-hsl));
    line-height: 1.2;
    font-size: var(--fe6-text-md);
    margin-bottom: var(--fe6-space-sm);
}

/* component */


/* utility classes */
.fe6-text-center {
    text-align: center;
}

.fe6-color-contrast-medium {
    --fe6-color-o: 1;
    color: hsla(var(--fe6-color-contrast-medium-hsl), var(--fe6-color-o, 1));
}

.fe6-margin-top-md {
    margin-top: var(--fe6-space-md);
}

.fe6-radius-md {
    border-radius: 0.25em;
}

.fe6-padding-x-3xs {
    padding-left: var(--fe6-space-3xs);
    padding-right: var(--fe6-space-3xs);
}

.fe6-padding-y-4xs {
    padding-top: var(--fe6-space-4xs);
    padding-bottom: var(--fe6-space-4xs);
}

.fe6-text-sm {
    font-size: var(--fe6-text-sm);
}

.fe6-color-bg {
    --fe6-color-o: 1;
    color: hsla(var(--fe6-color-bg-hsl), var(--fe6-color-o, 1));
}

.fe6-bg-contrast-higher {
    --fe6-bg-o: 1;
    background-color: hsla(var(--fe6-color-contrast-higher-hsl), var(--fe6-bg-o, 1));
}

.fe6-justify-center {
    justify-content: center;
}

.fe6-flex-wrap {
    flex-wrap: wrap;
}

.fe6-gap-2xs {
    gap: var(--fe6-space-2xs);
}

.fe6-flex {
    display: flex;
}

.fe6-padding-sm {
    padding: var(--fe6-space-sm);
}

.fe6-flex-center {
    justify-content: center;
    align-items: center;
}

.fe6-height-4xl {
    height: 16rem;
}

.fe6-bg-primary {
    --fe6-bg-o: 1;
    background-color: hsla(var(--fe6-color-primary-hsl), var(--fe6-bg-o, 1));
}

.fe6-bg-contrast-lower {
    --fe6-bg-o: 1;
    background-color: hsla(var(--fe6-color-contrast-lower-hsl), var(--fe6-bg-o, 1));
}

.fe6-bg-accent {
    --fe6-bg-o: 1;
    background-color: hsla(var(--fe6-color-accent-hsl), var(--fe6-bg-o, 1));
}

.fe6-gap-sm {
    gap: var(--fe6-space-sm);
}

.fe6-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}

.fe6-grid>* {
    min-width: 0;
    grid-column-end: span 12;
}

.fe6-margin-right-3xs {
    margin-right: var(--fe6-space-3xs);
}

.fe6-appearance-auto {
    appearance: auto;
}

.fe6-items-center {
    align-items: center;
}

.fe6-gap-md {
    gap: var(--fe6-space-md);
}

.fe6-margin-bottom-md {
    margin-bottom: var(--fe6-space-md);
}

.fe6-bg-opacity-70\% {
    --fe6-bg-o: 0.7;
}

.fe6-hide {
    display: none !important;
}

@media(min-width: 32rem) {
    .fe6-col-6\@xs {
        grid-column-end: span 6;
    }
}

@media(min-width: 64rem) {
    .fe6-col-4\@md {
        grid-column-end: span 4;
    }
}











/* -------------------------------- 

File#: _1_filter-navigation
Title: Filter Navigation
Descr: Filter navigation template
Usage: codyhouse.co/license

-------------------------------- */

/* variables */
:root {
    /* colors */
    --fo5-color-primary-hsl: 250, 84%, 54%;
    --fo5-color-bg-hsl: 0, 0%, 100%;
    --fo5-color-contrast-high-hsl: 230, 7%, 23%;
    --fo5-color-contrast-higher-hsl: 230, 13%, 9%;
    --fo5-color-bg-darker-hsl: 240, 4%, 90%;
    --fo5-color-bg-light-hsl: 0, 0%, 100%;
    --fo5-color-bg-lighter-hsl: 0, 0%, 100%;
    --fo5-color-black-hsl: 230, 13%, 9%;
    --fo5-color-bg-dark-hsl: 240, 4%, 95%;
    --fo5-color-white-hsl: 0, 0%, 100%;

    /* spacing */
    --fo5-space-3xs: 0.25rem;
    --fo5-space-2xs: 0.375rem;
    --fo5-space-xs: 0.5rem;
    --fo5-space-sm: 0.75rem;
    --fo5-space-md: 1.25rem;

    /* typography */
    --fo5-text-md: 1.2rem;
}

@media(min-width: 64rem) {
    :root {
        /* spacing */
        --fo5-space-3xs: 0.375rem;
        --fo5-space-2xs: 0.5625rem;
        --fo5-space-xs: 0.75rem;
        --fo5-space-sm: 1.125rem;
        --fo5-space-md: 2rem;

        /* typography */
        --fo5-text-md: 1.5625rem;
    }
}

/* buttons */
.fo5-btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1em;
    white-space: nowrap;
    text-decoration: none;
    background: hsl(var(--fo5-color-bg-dark-hsl));
    color: hsl(var(--fo5-color-contrast-higher-hsl));
    cursor: pointer;
    text-decoration: none;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all 0.2s ease;
    will-change: transform;
    padding: var(--fo5-space-2xs) var(--fo5-space-sm);
    border-radius: 0.25em;
}

.fo5-btn:focus-visible {
    box-shadow: 0px 0px 0px 2px hsl(var(--fo5-color-bg-hsl)), 0px 0px 0px 4px hsla(var(--fo5-color-contrast-higher-hsl), 0.15);
    outline: none;
}

.fo5-btn:active {
    transform: translateY(2px);
}

.fo5-btn--subtle {
    background: hsl(var(--fo5-color-bg-lighter-hsl));
    color: hsl(var(--fo5-color-contrast-higher-hsl));
}

.fo5-btn--subtle:hover {
    background: hsl(var(--fo5-color-bg-light-hsl));
}

.fo5-btn--subtle:focus {}

/* icons */
.fo5-icon {
    height: var(--fo5-size, 1em);
    width: var(--fo5-size, 1em);
    display: inline-block;
    color: inherit;
    fill: currentColor;
    line-height: 1;
    flex-shrink: 0;
    max-width: initial;
}

.fo5-icon--2xs {
    --fo5-size: .75em;
}

.fo5-icon--xs {
    --fo5-size: 16px;
}

/* component */
/* --expanded version */
.filter-nav--expanded {
    /* --v1 */
    /* --v2 */
    /* --v3 */
}

.filter-nav--expanded .filter-nav__nav {
    display: flex;
    overflow: auto;
}

.filter-nav--expanded .filter-nav__list {
    display: inline-flex;
    position: relative;
    padding: 40px 10px !important;
}

.filter-nav--expanded .filter-nav__item {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.filter-nav--expanded .filter-nav__btn {
    /* <button> element inside each list item */
    
        margin: 0;
        padding: 0;
        border: 0;
    

        background-color: transparent;
        border-radius: 0;
        color: inherit;
        line-height: inherit;
        appearance: none;

    cursor: pointer;
    font-family: 'anton', sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 4vh
}

.filter-nav--expanded .filter-nav__marker {
    /* animated marker */
    position: absolute;
    width: 0;
    pointer-events: none;
    transition: width 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, width 0.3s;
    transition: transform 0.3s, width 0.3s, -webkit-transform 0.3s;
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    will-change: width, transform;
}


.filter-nav {
    background: #000;
}

.filter-nav--expanded.filter-nav--v3 .filter-nav__btn {
    padding: 5px 10px;
    color: #fff;
    transition: color 0.2s, opacity 0.2s;
}

.filter-nav--expanded.filter-nav--v3 .filter-nav__btn:hover {
    color: var(--filter-active-color);
}

.filter-nav--expanded.filter-nav--v3 .filter-nav__btn[aria-current=true] {
    color: var(--filter-active-color);
}

.filter-nav--expanded.filter-nav--v3 .filter-nav__btn[aria-current=true]:hover {
    opacity: .5;
}

.filter-nav--expanded.filter-nav--v3 .filter-nav__marker {
    /* animated marker */
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: hsl(var(--fo5-color-primary-hsl));
}


.filter-nav__toggle {
    width: 100%;
    padding: 25px 15px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'anton', sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 4vh
}



/* --collapsed version - available horizontal space not enough to contain all list items */
.filter-nav--collapsed .filter-nav__wrapper {
    /* position: fixed; */
    /* z-index: 15; */
    /* top: 0; */
    /* left: 0; */
    width: 100%;
    height: 0;
    /* background-color: hsla(var(--fo5-color-black-hsl), 0.9); */
    visibility: hidden;
    opacity: 0;
}

.filter-nav--collapsed .filter-nav__wrapper--is-visible {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s;
    height: 100%;
    padding: 0px 0px 25px;
}

.filter-nav--collapsed .filter-nav__wrapper--is-visible .filter-nav__nav {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.filter-nav--collapsed .filter-nav__nav {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    /* background-color: hsl(var(--fo5-color-bg-hsl)); */
    /* box-shadow: 0 0.9px 1.5px rgba(0, 0, 0, 0.03), 0 3.1px 5.5px rgba(0, 0, 0, 0.08), 0 14px 25px rgba(0, 0, 0, 0.12); */
    max-height: 100%;
    -webkit-transform: translateY(-1em);
    transform: translateY(-1em);
}

.filter-nav--collapsed .filter-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
    font-family: 'anton', sans-serif;
}

.filter-nav--collapsed .filter-nav__list {
    order: 2;
    flex-direction: column;
    overflow: auto;
    padding: 0 0 var(--fo5-space-md);
}

.filter-nav--collapsed .filter-nav__btn {
    display: block;
    /* fallback */
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    font-size: var(--fo5-text-md);
    padding: var(--fo5-space-xs) var(--fo5-space-sm);
    color: #fff;
    cursor: pointer;
}

.filter-nav--collapsed .filter-nav__btn:hover {
    color: #c3c3c3;
}

.filter-nav--collapsed .filter-nav__btn[aria-current=true] {
    color: var(--filter-active-color);
}

.filter-nav--collapsed .filter-nav__marker {
    /* hide animated marker */
    display: none !important;
}

.filter-nav--collapsed .filter-nav__close-btn {
    /* X button */
    --fo5-size: 32px;
    width: var(--fo5-size);
    height: var(--fo5-size);
    display: flex;
    order: 1;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    /* margin: var(--fo5-space-xs) var(--fo5-space-xs) 0 auto; */
    margin-left: auto;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    /* border-radius: 50%; */
    /* background-color: hsl(var(--fo5-color-bg-light-hsl)); */
    /* box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0.3px 0.4px rgba(0, 0, 0, 0.025), 0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1); */
    transition: 0.2s;
}

.filter-nav--collapsed .filter-nav__close-btn:hover {
    /* background-color: hsl(var(--fo5-color-bg-lighter-hsl)); */
    /* box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0.9px 1.5px rgba(0, 0, 0, 0.03), 0 3.1px 5.5px rgba(0, 0, 0, 0.08), 0 14px 25px rgba(0, 0, 0, 0.12); */
}

.filter-nav--collapsed .filter-nav__close-btn .filter-nav__icon {
    display: block;
    color: hsl(var(--fo5-color-contrast-high-hsl));
}

/* utility classes */
.fo5-hide {
    display: none !important;
}

.fo5-justify-center {
    justify-content: center;
}

.fo5-margin-left-2xs {
    margin-left: var(--fo5-space-2xs);
}
























/* variables */
:root {
    /* colors */
    --fe6-color-primary-hsl: 250, 84%, 54%;
    --fe6-color-bg-hsl: 0, 0%, 100%;
    --fe6-color-contrast-high-hsl: 230, 7%, 23%;
    --fe6-color-contrast-higher-hsl: 230, 13%, 9%;
    --fe6-color-accent-hsl: 342, 89%, 48%;
    --fe6-color-contrast-lower-hsl: 240, 4%, 85%;
    --fe6-color-contrast-medium-hsl: 225, 4%, 47%;

    /* spacing */
    --fe6-space-4xs: 0.125rem;
    --fe6-space-3xs: 0.25rem;
    --fe6-space-2xs: 0.375rem;
    --fe6-space-sm: 0.75rem;
    --fe6-space-md: 1.25rem;

    /* typography */
    --fe6-text-sm: 0.833rem;
    --fe6-text-md: 1.2rem;
}

@media(min-width: 64rem) {
    :root {
        /* spacing */
        --fe6-space-4xs: 0.1875rem;
        --fe6-space-3xs: 0.375rem;
        --fe6-space-2xs: 0.5625rem;
        --fe6-space-sm: 1.125rem;
        --fe6-space-md: 2rem;

        /* typography */
        --fe6-text-sm: 1rem;
        --fe6-text-md: 1.5625rem;
    }
}

/* form elements */
.fe6-form-legend {
    color: hsl(var(--fe6-color-contrast-higher-hsl));
    line-height: 1.2;
    font-size: var(--fe6-text-md);
    margin-bottom: var(--fe6-space-sm);
}

/* component */


/* utility classes */
.fe6-text-center {
    text-align: center;
}

.fe6-color-contrast-medium {
    --fe6-color-o: 1;
    color: hsla(var(--fe6-color-contrast-medium-hsl), var(--fe6-color-o, 1));
}

.fe6-margin-top-md {
    margin-top: var(--fe6-space-md);
}

.fe6-radius-md {
    border-radius: 0.25em;
}

.fe6-padding-x-3xs {
    padding-left: var(--fe6-space-3xs);
    padding-right: var(--fe6-space-3xs);
}

.fe6-padding-y-4xs {
    padding-top: var(--fe6-space-4xs);
    padding-bottom: var(--fe6-space-4xs);
}

.fe6-text-sm {
    font-size: var(--fe6-text-sm);
}

.fe6-color-bg {
    --fe6-color-o: 1;
    color: hsla(var(--fe6-color-bg-hsl), var(--fe6-color-o, 1));
}

.fe6-bg-contrast-higher {
    --fe6-bg-o: 1;
    background-color: hsla(var(--fe6-color-contrast-higher-hsl), var(--fe6-bg-o, 1));
}

.fe6-justify-center {
    justify-content: center;
}

.fe6-flex-wrap {
    flex-wrap: wrap;
}

.fe6-gap-2xs {
    gap: var(--fe6-space-2xs);
}

.fe6-flex {
    display: flex;
}

.fe6-flex-column {
    flex-direction: column;
}

.fe6-padding-sm {
    padding: var(--fe6-space-sm);
}

.fe6-flex-center {
    justify-content: center;
    align-items: center;
}

.fe6-height-4xl {
    height: 16rem;
}

.fe6-bg-primary {
    --fe6-bg-o: 1;
    background-color: hsla(var(--fe6-color-primary-hsl), var(--fe6-bg-o, 1));
}

.fe6-bg-contrast-lower {
    --fe6-bg-o: 1;
    background-color: hsla(var(--fe6-color-contrast-lower-hsl), var(--fe6-bg-o, 1));
}

.fe6-bg-accent {
    --fe6-bg-o: 1;
    background-color: hsla(var(--fe6-color-accent-hsl), var(--fe6-bg-o, 1));
}

.fe6-gap-sm {
    gap: var(--fe6-space-sm);
}

.fe6-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    padding: 0 var(--fe6-space-sm) var(--fe6-space-sm) var(--fe6-space-sm);
}

.fe6-grid>* {
    min-width: 0;
    grid-column-end: span 12;
}

.fe6-margin-right-3xs {
    margin-right: var(--fe6-space-3xs);
}

.fe6-appearance-auto {
    appearance: auto;
}

.fe6-items-center {
    align-items: center;
}

.fe6-gap-md {
    gap: var(--fe6-space-md);
}

.fe6-margin-bottom-md {
    margin-bottom: var(--fe6-space-md);
}

.fe6-bg-opacity-70\% {
    --fe6-bg-o: 0.7;
}

.fe6-hide {
    display: none !important;
}

@media(min-width: 32rem) {
    .fe6-col-6\@xs {
        grid-column-end: span 6;
    }
}

@media(min-width: 64rem) {
    .fe6-col-4\@md {
        grid-column-end: span 4;
    }
}















/* -------------------------------- 

File#: _1_modal-window
Title: Modal Window
Descr: A modal dialog used to display critical information
Usage: codyhouse.co/license

-------------------------------- */

/* variables */
:root {
    /* colors */
    --mc4-color-primary-hsl: 250, 84%, 54%;
    --mc4-color-bg-hsl: 0, 0%, 100%;
    --mc4-color-contrast-high-hsl: 230, 7%, 23%;
    --mc4-color-contrast-higher-hsl: 230, 13%, 9%;
    --mc4-color-contrast-lower-hsl: 240, 4%, 85%;
    --mc4-color-bg-light-hsl: 0, 0%, 100%;
    --mc4-color-bg-lighter-hsl: 0, 0%, 100%;
    --mc4-color-black-hsl: 230, 13%, 9%;
    --mc4-color-white-hsl: 0, 0%, 100%;
    --mc4-color-bg-dark-hsl: 240, 4%, 95%;
    --mc4-color-primary-darker-hsl: 250, 84%, 38%;
    --mc4-color-primary-light-hsl: 250, 84%, 60%;
    --mc4-color-accent-hsl: 342, 89%, 48%;

    /* spacing */
    --mc4-space-xs: 0.5rem;
    --mc4-space-sm: 0.75rem;
    --mc4-space-md: 1.25rem;
    --mc4-space-2xs: 0.375rem;

    /* typography */
    --mc4-text-lg: 1.25rem;
    --mc4-text-md: 1.2rem;
    --mc4-text-sm: 0.833rem;
}

@media(min-width: 64rem) {
    :root {
        /* spacing */
        --mc4-space-xs: 0.75rem;
        --mc4-space-sm: 1.125rem;
        --mc4-space-md: 2rem;
        --mc4-space-2xs: 0.5625rem;

        /* typography */
        --mc4-text-lg: 1.75rem;
        --mc4-text-md: 1.5625rem;
        --mc4-text-sm: 1rem;
    }
}

/* buttons */
.mc4-btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: 'anton', sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 2.5em;
    white-space: nowrap;
    text-decoration: none;
    background: hsl(var(--mc4-color-bg-dark-hsl));
    color: hsl(var(--mc4-color-contrast-higher-hsl));
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all 0.2s ease;
    will-change: transform;
    padding: var(--mc4-space-sm) var(--mc4-space-md);
    /* border-radius: 0.25em; */
}

.mc4-btn:focus-visible {
    /* box-shadow: 0px 0px 0px 2px hsl(var(--mc4-color-bg-hsl)), 0px 0px 0px 4px hsla(var(--mc4-color-contrast-higher-hsl), 0.15); */
    outline: none;
}

.mc4-btn:active {
    /* transform: translateY(2px); */
    filter: invert(1)
}

.mc4-btn--primary {
    background: hsl(var(--mc4-color-primary-hsl));
    color: hsl(var(--mc4-color-white-hsl));
    /* box-shadow: inset 0px 1px 0px hsla(var(--mc4-color-white-hsl), 0.15), 0px 1px 3px hsla(var(--mc4-color-primary-darker-hsl), 0.25), 0px 2px 6px hsla(var(--mc4-color-primary-darker-hsl), 0.1), 0px 6px 10px -2px hsla(var(--mc4-color-primary-darker-hsl), 0.25); */
}

.mc4-btn--primary:hover {
    background: hsl(var(--mc4-color-primary-light-hsl));
    /* box-shadow: inset 0px 1px 0px hsla(var(--mc4-color-white-hsl), 0.15), 0px 1px 2px hsla(var(--mc4-color-primary-darker-hsl), 0.25), 0px 1px 4px hsla(var(--mc4-color-primary-darker-hsl), 0.1), 0px 3px 6px -2px hsla(var(--mc4-color-primary-darker-hsl), 0.25); */
}

.mc4-btn--primary:focus {
    /* box-shadow: inset 0px 1px 0px hsla(var(--mc4-color-white-hsl), 0.15), 0px 1px 2px hsla(var(--mc4-color-primary-darker-hsl), 0.25), 0px 1px 4px hsla(var(--mc4-color-primary-darker-hsl), 0.1), 0px 3px 6px -2px hsla(var(--mc4-color-primary-darker-hsl), 0.25), 0px 0px 0px 2px hsl(var(--mc4-color-bg-hsl)), 0px 0px 0px 4px hsl(var(--mc4-color-primary-hsl)); */
}

.mc4-btn--subtle {
    background: hsl(var(--mc4-color-bg-lighter-hsl));
    color: hsl(var(--mc4-color-contrast-higher-hsl));
    /* box-shadow: inset 0px 1px 0px hsla(var(--mc4-color-white-hsl), 0.1), 0px 0px 0px 1px hsla(var(--mc4-color-black-hsl), 0.02), 0px 1px 3px -1px hsla(var(--mc4-color-black-hsl), 0.2), 0 0.3px 0.4px rgba(0, 0, 0, 0.025),0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1); */
}

.mc4-btn--subtle:hover {
    background: hsl(var(--mc4-color-bg-light-hsl));
    /* opacity: .8; */
    filter: invert(1)
    /* box-shadow: inset 0px 1px 0px hsla(var(--mc4-color-white-hsl), 0.1), 0px 0px 0px 1px hsla(var(--mc4-color-black-hsl), 0.02), 0px 1px 3px -1px hsla(var(--mc4-color-black-hsl), 0.2), 0 0.1px 0.3px rgba(0, 0, 0, 0.06),0 1px 2px rgba(0, 0, 0, 0.12); */
}

.mc4-btn--subtle:focus {
    /* box-shadow: inset 0px 1px 0px hsla(var(--mc4-color-white-hsl), 0.1), 0px 0px 0px 1px hsla(var(--mc4-color-black-hsl), 0.02), 0px 1px 3px -1px hsla(var(--mc4-color-black-hsl), 0.2), 0 0.1px 0.3px rgba(0, 0, 0, 0.06),0 1px 2px rgba(0, 0, 0, 0.12), 0px 0px 0px 2px hsl(var(--mc4-color-bg-hsl)), 0px 0px 0px 4px hsl(var(--mc4-color-contrast-high-hsl)); */
}

/* icons */
.mc4-icon {
    height: var(--mc4-size, 1em);
    width: var(--mc4-size, 1em);
    display: inline-block;
    color: inherit;
    fill: currentColor;
    line-height: 1;
    flex-shrink: 0;
    max-width: initial;
}

.mc4-icon--xs {
    --mc4-size: 16px;
}

.mc4-icon--sm {
    --mc4-size: 24px;
}

/* component */
.modal {
    position: fixed;
    z-index: 50;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
}

.modal:not(.modal--is-visible) {
    pointer-events: none;
    background-color: transparent;
}

.modal--is-visible {
    opacity: 1;
    visibility: visible;
}

/* close button */
.modal__close-btn {
    display: flex;
    flex-shrink: 0;
    /* border-radius: 50%; */
    transition: 0.2s;
}

.modal__close-btn svg {
    display: block;
    margin: auto;
}

.modal__close-btn--outer {
    /* close button - outside the modal__content */
    width: 48px;
    height: 48px;
    position: fixed;
    top: var(--mc4-space-sm);
    right: var(--mc4-space-sm);
    z-index: 10;
    /* background-color: hsla(var(--mc4-color-black-hsl), 0.9); */
    transition: 0.2s;
}

.modal__close-btn--outer svg {
    color: hsl(var(--mc4-color-white-hsl));
    /* icon color */
    transition: -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal__close-btn--outer:hover {
    background-color: hsla(var(--mc4-color-black-hsl), 1);
}

.modal__close-btn--outer:hover svg {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.modal__close-btn--inner {
    /* close button - inside the modal__content */
    --mc4-size: 56px;
    width: var(--mc4-size);
    height: var(--mc4-size);
    /* background-color: hsl(var(--mc4-color-bg-light-hsl)); */
    /* box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0.3px 0.4px rgba(0, 0, 0, 0.025),0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1); */
    transition: 0.2s;
    cursor: pointer;
}

.modal__close-btn--inner svg {
    color: inherit;
    /* icon color */
}

.modal__close-btn--inner:hover {
    /* background-color: hsl(var(--mc4-color-bg-lighter-hsl)); */
    transform: scale(0.97);
    opacity: .8;
    /* box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0.9px 1.5px rgba(0, 0, 0, 0.03),0 3.1px 5.5px rgba(0, 0, 0, 0.08),0 14px 25px rgba(0, 0, 0, 0.12); */
}

/* animations */
:root {
    --modal-transition-duration: 0.2s;
    /* fallback (i.e., unless specified differently in the variations 👇) */
}

@media (prefers-reduced-motion: no-preference) {
    .modal--animate-fade {
        --modal-transition-duration: 0.2s;
        transition: opacity var(--modal-transition-duration), background-color var(--modal-transition-duration), visibility 0s var(--modal-transition-duration);
    }

    .modal--animate-fade.modal--is-visible {
        transition: opacity var(--modal-transition-duration), background-color var(--modal-transition-duration), visibility 0s;
    }

    .modal--animate-scale,
    .modal--animate-translate-up,
    .modal--animate-translate-down,
    .modal--animate-translate-right,
    .modal--animate-translate-left {
        --modal-transition-duration: 0.2s;
        transition: opacity var(--modal-transition-duration), background-color var(--modal-transition-duration), visibility 0s var(--modal-transition-duration);
    }

    .modal--animate-scale .modal__content,
    .modal--animate-translate-up .modal__content,
    .modal--animate-translate-down .modal__content,
    .modal--animate-translate-right .modal__content,
    .modal--animate-translate-left .modal__content {
        will-change: transform;
        transition: -webkit-transform var(--modal-transition-duration) cubic-bezier(0.215, 0.61, 0.355, 1);
        transition: transform var(--modal-transition-duration) cubic-bezier(0.215, 0.61, 0.355, 1);
        transition: transform var(--modal-transition-duration) cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform var(--modal-transition-duration) cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .modal--animate-scale.modal--is-visible,
    .modal--animate-translate-up.modal--is-visible,
    .modal--animate-translate-down.modal--is-visible,
    .modal--animate-translate-right.modal--is-visible,
    .modal--animate-translate-left.modal--is-visible {
        transition: opacity var(--modal-transition-duration), background-color var(--modal-transition-duration), visibility 0s;
    }

    .modal--animate-scale.modal--is-visible .modal__content,
    .modal--animate-translate-up.modal--is-visible .modal__content,
    .modal--animate-translate-down.modal--is-visible .modal__content,
    .modal--animate-translate-right.modal--is-visible .modal__content,
    .modal--animate-translate-left.modal--is-visible .modal__content {
        -webkit-transform: scale(1);
        transform: scale(1);
        /* reset all transformations */
    }

    .modal--animate-slide-up,
    .modal--animate-slide-down,
    .modal--animate-slide-right,
    .modal--animate-slide-left {
        --modal-transition-duration: 0.3s;
        transition: opacity 0s var(--modal-transition-duration), background-color var(--modal-transition-duration), visibility 0s var(--modal-transition-duration);
    }

    .modal--animate-slide-up .modal__content,
    .modal--animate-slide-down .modal__content,
    .modal--animate-slide-right .modal__content,
    .modal--animate-slide-left .modal__content {
        will-change: transform;
        transition: -webkit-transform var(--modal-transition-duration) cubic-bezier(0.215, 0.61, 0.355, 1);
        transition: transform var(--modal-transition-duration) cubic-bezier(0.215, 0.61, 0.355, 1);
        transition: transform var(--modal-transition-duration) cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform var(--modal-transition-duration) cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .modal--animate-slide-up.modal--is-visible,
    .modal--animate-slide-down.modal--is-visible,
    .modal--animate-slide-right.modal--is-visible,
    .modal--animate-slide-left.modal--is-visible {
        transition: background-color var(--modal-transition-duration), visibility 0s;
    }

    .modal--animate-slide-up.modal--is-visible .modal__content,
    .modal--animate-slide-down.modal--is-visible .modal__content,
    .modal--animate-slide-right.modal--is-visible .modal__content,
    .modal--animate-slide-left.modal--is-visible .modal__content {
        -webkit-transform: scale(1);
        transform: scale(1);
        /* reset all transformations */
    }

    /* scale */
    .modal--animate-scale .modal__content {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }

    /* translate */
    .modal--animate-translate-up .modal__content {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }

    .modal--animate-translate-down .modal__content {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }

    .modal--animate-translate-right .modal__content {
        -webkit-transform: translateX(-40px);
        transform: translateX(-40px);
    }

    .modal--animate-translate-left .modal__content {
        -webkit-transform: translateX(40px);
        transform: translateX(40px);
    }

    /* slide */
    .modal--animate-slide-up .modal__content {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    .modal--animate-slide-down .modal__content {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    .modal--animate-slide-right .modal__content {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    .modal--animate-slide-left .modal__content {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

/* load content - optional */
.modal--is-loading .modal__content {
    visibility: hidden;
}

.modal--is-loading .modal__loader {
    display: flex;
}

.modal__loader {
    /* loader icon */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: none;
    pointer-events: none;
}

/* --image */
.modal-img-btn {
    position: relative;
    cursor: pointer;
}

.modal-img-btn::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(var(--mc4-color-black-hsl), 0);
    transition: background 0.2s;
}

.modal-img-btn:hover::after {
    background-color: hsla(var(--mc4-color-black-hsl), 0.7);
}

.modal-img-btn:hover .modal-img-btn__icon-wrapper {
    opacity: 1;
}

.modal-img-btn__icon-wrapper {
    position: absolute;
    z-index: 2;
    top: calc(50% - 24px);
    left: calc(50% - 24px);
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: hsla(var(--mc4-color-black-hsl), 0.7);
    opacity: 0;
    transition: opacity 0.2s;
}

.modal-img-btn__icon-wrapper .mc4-icon {
    color: hsl(var(--mc4-color-white-hsl));
}

/* utility classes */
.mc4-max-width-100\% {
    max-width: 150rem;
}

.mc4-max-height-100\% {
    max-height: 100%;
}

.mc4-shadow-md {
    box-shadow: 0 0.9px 1.5px rgba(0, 0, 0, 0.03), 0 3.1px 5.5px rgba(0, 0, 0, 0.08), 0 14px 25px rgba(0, 0, 0, 0.12);
}

.mc4-shadow-md-2 {
    box-shadow: 0 -2.5px 5px rgba(0, 0, 0, 0.1), 0 3.1px 5.5px rgba(0, 0, 0, 0.08), 0 14px 25px rgba(0, 0, 0, 0.12);
}

.mc4-radius-md {
    border-radius: 0.25em;
}

.mc4-block {
    display: block;
}

.mc4-pointer-events-none {
    pointer-events: none;
}

.mc4-flex-center {
    justify-content: center;
    align-items: center;
}

.mc4-flex {
    display: flex;
}

.mc4-height-100\% {
    height: 100%;
}

.mc4-width-100\% {
    width: 100%;
}

.mc4-padding-md {
    padding: 5vh var(--mc4-space-md);
}

.mc4-bg-black {
    --mc4-bg-o: 1;
    background-color: hsla(var(--mc4-color-black-hsl), var(--mc4-bg-o, 1));
}

.mc4-width-3xl {
    width: 8rem;
}

.mc4-overflow-hidden {
    overflow: hidden;
}

.mc4-text-lg {
    font-size: var(--mc4-text-lg);
}

.mc4-text-component :where(h1, h2, h3, h4) {
    line-height: var(--mc4-heading-line-height, 1.2);
    margin-top: calc(var(--mc4-space-md) * var(--mc4-space-multiplier, 1));
    margin-bottom: calc(var(--mc4-space-sm) * var(--mc4-space-multiplier, 1));
}

.mc4-text-component :where(p, blockquote, ul li, ol li) {
    line-height: var(--mc4-body-line-height, 1.4);
}

.mc4-text-component :where(ul, ol, p, blockquote, .mc4-text-component__block) {
    margin-bottom: calc(var(--mc4-space-sm) * var(--mc4-space-multiplier, 1));
}

.mc4-text-component :where(ul, ol) {
    padding-left: 1.25em;
}

.mc4-text-component ul :where(ul, ol),
.mc4-text-component ol :where(ul, ol) {
    padding-left: 1em;
    margin-bottom: 0;
}

.mc4-text-component ul {
    list-style-type: disc;
}

.mc4-text-component ol {
    list-style-type: decimal;
}

.mc4-text-component img {
    display: block;
    margin: 0 auto;
}

.mc4-text-component figcaption {
    margin-top: calc(var(--mc4-space-xs) * var(--mc4-space-multiplier, 1));
    font-size: var(--mc4-text-sm);
    text-align: center;
}

.mc4-text-component em {
    font-style: italic;
}

.mc4-text-component strong {
    font-weight: bold;
}

.mc4-text-component s {
    text-decoration: line-through;
}

.mc4-text-component u {
    text-decoration: underline;
}

.mc4-text-component mark {
    background-color: hsla(var(--mc4-color-accent-hsl), 0.2);
    color: inherit;
}

.mc4-text-component blockquote {
    padding-left: 1em;
    border-left: 4px solid hsl(var(--mc4-color-contrast-lower-hsl));
    font-style: italic;
}

.mc4-text-component hr {
    margin: calc(var(--mc4-space-md) * var(--mc4-space-multiplier, 1)) auto;
    background: hsl(var(--mc4-color-contrast-lower-hsl));
    height: 1px;
}

.mc4-text-component>*:first-child {
    margin-top: 0;
}

.mc4-text-component>*:last-child {
    margin-bottom: 0;
}

.mc4-text-component.mc4-line-height-xs {
    --mc4-heading-line-height: 1;
    --mc4-body-line-height: 1.1;
}

.mc4-text-component.mc4-line-height-sm {
    --mc4-heading-line-height: 1.1;
    --mc4-body-line-height: 1.2;
}

.mc4-text-component.mc4-line-height-md {
    --mc4-heading-line-height: 1.15;
    --mc4-body-line-height: 1.4;
}

.mc4-text-component.mc4-line-height-lg {
    --mc4-heading-line-height: 1.22;
    --mc4-body-line-height: 1.58;
}

.mc4-text-component.mc4-line-height-xl {
    --mc4-heading-line-height: 1.3;
    --mc4-body-line-height: 1.72;
}

.mc4-top-0 {
    top: 0;
}

.mc4-position-sticky {
    position: sticky;
}

.mc4-float-right {
    float: right;
}

:where(.mc4-inner-glow) {
    position: relative;
}

.mc4-inner-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075);
}

.mc4-bg {
    --mc4-bg-o: 1;
    background-color: var(--rkt-detail-bg);
}

.mc4-overflow-auto {
    overflow: auto;
}

.mc4-max-width-sm {
    max-width: 48rem;
}

@media not all and (min-width: 64rem) {
    .mc4-display\@md {
        display: none !important;
    }
}

.mc4-gap-xs {
    gap: var(--mc4-space-xs);
}

.mc4-justify-end {
    justify-content: flex-end;
}

.mc4-padding-x-sm {
    padding-left: var(--mc4-space-sm);
    padding-right: var(--mc4-space-sm);
}

.mc4-padding-x-md {
    padding-left: var(--mc4-space-md);
    padding-right: var(--mc4-space-md);
}

.mc4-padding-y-sm {
    padding-top: var(--mc4-space-sm);
    padding-bottom: var(--mc4-space-sm);
}

.mc4-padding-y-md {
    padding-top: var(--mc4-space-md);
    padding-bottom: var(--mc4-space-md);
}

.mc4-text-md {
    font-size: var(--mc4-text-md);
}

.mc4-text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mc4-justify-between {
    justify-content: space-between;
}

.mc4-items-center {
    align-items: center;
}

.mc4-bg-contrast-lower {
    --mc4-bg-o: 1;
    background-color: hsla(var(--mc4-color-contrast-lower-hsl), var(--mc4-bg-o, 1));
}

.mc4-max-width-xs {
    max-width: 40rem;
}

.mc4-flex-shrink-0 {
    flex-shrink: 0;
}

:where(.mc4-inner-glow-top) {
    position: relative;
}

.mc4-inner-glow-top::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: var(inset 0 1px 0.5px hsla(0, 0%, 100%, 0.075));
}

.mc4-momentum-scrolling {
    -webkit-overflow-scrolling: touch;
}

.mc4-flex-grow {
    flex-grow: 1;
}

.mc4-flex-column {
    flex-direction: column;
}

.mc4-bg-opacity-90\% {
    --mc4-bg-o: 0.9;
}

.mc4-bg-opacity-50\% {
    --mc4-bg-o: 0.5;
}
#main {
    z-index: 1;
}
#main > #full-width-section:first-child {
    position: relative;
    z-index: 1
}
#main > #full-width-section:last-child {
    position: relative;
    z-index: 0    
}
#header {
    pointer-events: none;
    z-index: 501
}
body.ak-opened #header {
    pointer-events: none;
    z-index: 0
}
.main_menu {
    pointer-events: all;
}

.mc4-social-icon {
    width: 24px;
    height: 24px;
}


.full-width-image {
    width: 100%;
    height: auto;
}

.rkt-grid-item {
    cursor: pointer;
}

.rkt-grid-item:hover {
    /* TODO */
}

/* Style for the table with the 'rkt-akg-table' class */
.rkt-akg-table {
    line-height: 1.4;
    width: 100%; /* Set the table to take full width of its container */
    border-collapse: collapse; /* Collapse borders so that they don't double up */
}

/* Style for table rows within the 'rkt-akg-table' class */
.rkt-akg-table tr {
    border-top: 1px solid black; /* Horizontal border for each row */
    border-bottom: 1px solid black; /* Horizontal border for each row */
}

.rkt-akg-table th {
    padding: 9px 12px;
}

.rkt-akg-table td {
    padding: 9px 12px;
}

/* Style for the first column cells within the 'rkt-akg-table' class */
.rkt-akg-table th:first-child {
    padding-right: 15px; /* Right padding for the first column */
    padding-left: 0;
    border-left-width: 0px;
    border-right-width: 0px;
    text-align: left;
    text-transform: none;
    font-weight: 600;
    letter-spacing: normal;
    width: 35%;
}

/* Style for the second column cells within the 'rkt-akg-table' class */
.rkt-akg-table td:last-child {
    padding-right: 0;
    padding-left: 15px; /* Left padding for the second column */
    border-left-width: 0px;
    border-right-width: 0px;
    text-align: right;
    width: 65%;
}

.ak-card-inner {
    flex-direction: column;
    display: flex;
    justify-content: space-between;
}

.ak-title,
.ak-title-modal {
    font-size: 2.5rem !important;
    text-transform: uppercase;
    font-family: 'anton', sans-serif;
    font-weight: 400;
    white-space: normal;
    margin-top: 0;
    margin-bottom: 0;
}
.ak-title-modal + p {
    margin-bottom: 1em;
}
.ak-description {
    margin: 32px auto;
}
.ak-authors-name {
    font-size: 2.5rem !important;
    text-transform: uppercase;
    font-weight: 400;
}




.rkt-grid-item {
    transition: all .2s ease;
    border: 0px solid black;
}
.rkt-grid-item:hover {
    opacity: .8 !important;
    /* border: 5px solid black; */
    transform: scale(0.98);
}
.rkt-grid-item > div {
    flex: 1 1 auto;
}

.rkt-btn > .avia-button.avia-size-x-large {
    font-family: 'anton', sans-serif !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    font-size: 1.5em !important;
    padding: 1.1em 1.5em 1em 1.5em !important;
    margin-top: 1em !important;
    line-height: 1 !important;
    transition: .1s all ease-out;
}
.rkt-btn > .avia-button.avia-size-x-large:hover {
    filter: invert(1);
}

/* Kadence Anpassungen */
.product_image {
    max-width: 100% !important;
}
.attachment-shop-single {
    width: 100% !important;
}
.kadence-blocks-form-success,
.kadence-blocks-form-warning,
.kb-form-error-msg {
    font-weight: 400;
}

/* WooCommerce Anpassungen */
.woocommerce div.product div.images .woocommerce-product-gallery__image--placeholder {
    border: none;
}

.woocommerce table.variations tr td select {
    height: auto;
}

.wc-block-cart__empty-cart__title.with-empty-cart-icon::before {
    background-color: currentColor;
    content: "";
    display: block;
    height: 2em;
    margin: 0 auto 2em;
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzOCIgaGVpZ2h0PSIzOCIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iY3VycmVudENvbG9yIiBkPSJNMTkgMEM4LjUwNCAwIDAgOC41MDQgMCAxOXM4LjUwNCAxOSAxOSAxOSAxOS04LjUwNCAxOS0xOVMyOS40OTYgMCAxOSAwWm02LjEyOSAxMi44NzFhMi40NDkgMi40NDkgMCAwIDEgMi40NTIgMi40NTIgMi40NDkgMi40NDkgMCAwIDEtMi40NTIgMi40NTEgMi40NDkgMi40NDkgMCAwIDEtMi40NTItMi40NTEgMi40NDkgMi40NDkgMCAwIDEgMi40NTItMi40NTJaTTExLjY0NSAzMS4yNThjLTIuMDMgMC0zLjY3Ny0xLjYwOS0zLjY3Ny0zLjYgMC0xLjUzMyAyLjE4My00LjYyOCAzLjE4Ny01Ljk2MWEuNjEuNjEgMCAwIDEgLjk4IDBjMS4wMDQgMS4zMzMgMy4xODggNC40MjggMy4xODggNS45NiAwIDEuOTkyLTEuNjQ4IDMuNjAxLTMuNjc4IDMuNjAxWm0xLjIyNi0xMy40ODRhMi40NDkgMi40NDkgMCAwIDEtMi40NTItMi40NTEgMi40NDkgMi40NDkgMCAwIDEgMi40NTItMi40NTIgMi40NDkgMi40NDkgMCAwIDEgMi40NTIgMi40NTIgMi40NDkgMi40NDkgMCAwIDEtMi40NTIgMi40NTFabTEzLjA0IDExLjgxNEE4Ljk4OSA4Ljk4OSAwIDAgMCAxOSAyNi4zNTVjLTEuNjI0IDAtMS42MjQtMi40NTIgMC0yLjQ1MmExMS40IDExLjQgMCAwIDEgOC43ODggNC4xMjJjMS4wNTcgMS4yNTctLjg1OSAyLjc5Ni0xLjg3OCAxLjU2M1oiLz48L3N2Zz4=);
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: 2em;
    width: 2em;
}

.woocommerce .rkt-wc-gallery.wp-block-woocommerce-product-image-gallery {
    max-width: 100%;
    width: 100%;
}

.woocommerce div.product div.images {
    margin: 0;
}

.woocommerce div.product p.stock {
    display: none;
}
.woocommerce div.product p.stock.out-of-stock {
    display: block !important;
}

.woocommerce-product-attributes-item__label {
    text-align: left;
    padding-inline-start: 0 !important;
    vertical-align: top;
}

tr:not(:last-child) .woocommerce-product-attributes-item__label,
tr:not(:last-child) .woocommerce-product-attributes-item__value {
    border-bottom: 1px solid currentColor !important;
}

.woocommerce table.shop_attributes td {
    font-style: normal;
}

.rkt-add-to-cart>form,
.rkt-add-to-cart .woocommerce-variation-add-to-cart {
    display: flex;
    flex-direction: column;
}

.rkt-add-to-cart .quantity {
    order: 0;
}

/* WooCommerce Quantity Input Styling */
.rkt-add-to-cart .quantity input.qty {
    border: 1px solid black; /* Solid black border */
    border-radius: 0; /* No border-radius */
    background-color: transparent; /* Transparent background */
    -moz-appearance: textfield; /* Removes default browser UI for Firefox */
    -webkit-appearance: none; /* Removes default browser UI for Safari & Chrome */
    appearance: none; /* Removes default browser UI for modern browsers */
    text-align: center; /* Center-align text */
}

/* Hide increment/decrement buttons in most modern browsers */
.rkt-add-to-cart .quantity input.qty::-webkit-inner-spin-button, 
.rkt-add-to-cart .quantity input.qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Optional: focus styles */
.rkt-add-to-cart .quantity input.qty:focus {
    background: #fff
}


.wc-block-components-notice-banner > .wc-block-components-notice-banner__content .wc-forward {
    font-family: var(--wp--preset--font-family--poppins);
    text-decoration: none;
    text-transform: none;
    font-size: 1em;
    float: none;
}

.is-large .wc-block-components-sidebar .wc-block-components-panel, .is-large .wc-block-components-sidebar .wc-block-components-totals-coupon, .is-large .wc-block-components-sidebar .wc-block-components-totals-item {
    padding-left: 0px;
    padding-right: 0px;
}

/* Checkout */
.wc-block-components-title.wc-block-components-title {
    font-size: var(--wp--preset--font-size--x-large);
}
.is-large .wp-block-woocommerce-checkout-order-summary-block {
    border: none;
    border-radius: 0;
}

.wc-block-components-totals-coupon__form {
    display: flex;
    flex-wrap: wrap;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
    width: 100%;
}
.wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__input {
    flex: 3 1 auto;
}
.wc-block-components-form .wc-block-components-text-input label, .wc-block-components-text-input label {
    color: inherit;
    color: hsla(0,0%,7%,.7);
    cursor: text;
    font-family: inherit;
    font-size: inherit;
    font-size: 1em;
    font-size: 0.75em;
    font-style: inherit;
    font-weight: inherit;
    left: .75em;
    letter-spacing: inherit;
    line-height: inherit;
    line-height: 1;
    line-height: 1.5;
    margin: 0;
    max-width: calc(100% - 32px);
    overflow: hidden;
    position: absolute;
    text-decoration: inherit;
    text-overflow: ellipsis;
    text-transform: inherit;
    top: 0;
    transform: translateY(0.375em);
    transform-origin: top left;
    transition: all .2s ease;
}
.wc-block-components-form .wc-block-components-text-input input[type="email"], .wc-block-components-form .wc-block-components-text-input input[type="number"], .wc-block-components-form .wc-block-components-text-input input[type="password"], .wc-block-components-form .wc-block-components-text-input input[type="tel"], .wc-block-components-form .wc-block-components-text-input input[type="text"], .wc-block-components-form .wc-block-components-text-input input[type="url"], .wc-block-components-text-input input[type="email"], .wc-block-components-text-input input[type="number"], .wc-block-components-text-input input[type="password"], .wc-block-components-text-input input[type="tel"], .wc-block-components-text-input input[type="text"], .wc-block-components-text-input input[type="url"] {
    background-color: #fff;
    border: 1px solid hsla(0,0%,7%,.8);
    border-radius: 4px;
    box-sizing: border-box;
    color: #2b2d2f;
    font-family: inherit;
    font-size: 1em;
    height: 50px;
    line-height: 1em;
    margin: 0;
    min-height: 0;
    padding: .5em;
    width: 100%;
}
.wc-block-components-form .wc-block-components-text-input input:autofill + label, .wc-block-components-form .wc-block-components-text-input.is-active label, .wc-block-components-text-input input:autofill + label, .wc-block-components-text-input.is-active label {
    transform: translateY(6px) scale(.75);
}
.wc-block-components-radio-control-accordion-content {
    font-size: .875em;
}

.wc-block-add-to-cart-form {
    width: 100%;
}

/* WooCommerce Site Title */
.woocommerce-account .wp-block-post-title, .woocommerce-account main .woocommerce, .woocommerce-cart .wp-block-post-title, .woocommerce-cart main .woocommerce, .woocommerce-checkout .wp-block-post-title, .woocommerce-checkout main .woocommerce {
    max-width: var(--wp--style--global--wide-size);
}

.wc-block-components-express-payment--checkout .wc-block-components-express-payment__event-buttons {
    margin-top: 20px;
}

/* Cookie Yes */
#cookie-law-info-bar {
    min-width: 240px;
    width: auto !important;
    max-width: 360px;
    box-shadow: -16px 16px 32px -4px rgba(0, 0, 0, 0.5);
}
#cookie-law-info-bar[data-cli-style="cli-style-v2"] .cli_messagebar_head {
    font-size: 3rem;
}

/* Germanized */
.wc-gzd-checkout .wc-block-components-order-summary {
    background: transparent;
}
ul.wc-block-components-product-details li[class*=wc-block-components-product-details__gzd-] .wc-block-components-product-details__value {
    color: #000
}
.editor-styles-wrapper .wc-block-grid__products .wc-block-grid__product .wc-block-components-product-image img[alt=""], .wc-block-components-product-image img[alt=""] {
    border: none;
}


/* Menu Icon */
.wc-block-components-button.wc-block-components-drawer__close svg,
.wp-block-navigation__responsive-container-close svg, .wp-block-navigation__responsive-container-open svg {
    height: 48px; width: 48px;
}
.wc-block-mini-cart__icon {
    margin: 0;
}
.wc-block-mini-cart__badge {
    font-size: 12px;
    font-weight: 400;
    padding: .75em;
}


/* Kadence Shop Kit (KSK) */
.ksk-gallery {
    --thumb-gap: 5px;
    --thumb-grid-gap: 20px;
}
.ksk-gallery.kt-layout-list .splide .splide__list {
    gap: 0 !important;
}




/* Allgemeine Anpassungen */

.wp-block-post-title {
    hyphens: auto;
    word-break: break-word;
}

*~p {
    /* margin-block: 1em !important; */
}

.rkt-main-menu .wp-block-navigation-item__content {
    font-family: var(--wp--preset--font-family--anton);
    text-transform: uppercase;
}

.rkt-main-menu .wp-block-navigation-item__content:hover {
    text-decoration: underline;
    text-decoration-thickness: 0.1em !important;
    text-underline-offset: 0.075em !important;
}

/* Main Nav */
.wp-block-site-logo img {
    object-fit: contain;
    object-position: left center;
    width: auto !important;
}


/* wp-block-pullquote */
.wp-block-pullquote cite {
    font-family: var(--wp--preset--font-family--poppins) !important;
    text-transform: none;
    display: block;
}

/* rkt-partner-gallery */
.rkt-partner-gallery {
    /* display: flex; */
    align-items: center;
}
.rkt-partner-gallery img {
    object-fit: contain !important;
    padding: 2rem !important;
    background-color: #fff;
}

/* Links */
p :where(a:where(:not(.wp-element-button))) {
    text-decoration: underline;
}
.rkt-oc-menu p :where(a:where(:not(.wp-element-button))),
p :where(a:where(:not(.wp-element-button)):hover) {
    text-decoration: none;
}


/* Input */
.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted, .wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted,
.wc-block-components-textarea,
.wc-block-components-form .wc-block-components-text-input input[type="email"], .wc-block-components-form .wc-block-components-text-input input[type="number"], .wc-block-components-form .wc-block-components-text-input input[type="password"], .wc-block-components-form .wc-block-components-text-input input[type="tel"], .wc-block-components-form .wc-block-components-text-input input[type="text"], .wc-block-components-form .wc-block-components-text-input input[type="url"], .wc-block-components-text-input input[type="email"], .wc-block-components-text-input input[type="number"], .wc-block-components-text-input input[type="password"], .wc-block-components-text-input input[type="tel"], .wc-block-components-text-input input[type="text"], .wc-block-components-text-input input[type="url"] {
    border-radius: 0px;
}


.rkt-oc-menu a:hover {
    color: #0008;
}

/* Buttons */
/* Voraussetzung: wrap element in span! */
.wp-element-button > span {
    display: inline-block;
    transform: skewX(0deg);
    transition: all 0.1s cubic-bezier(0.25, 0.1, 0.56, 1.51);
}
.wp-element-button:hover > span {
    transform: skewX(-12deg);
}


.rt-home-eventslider .kb-slider-size-fixed .kb-advanced-slide-inner-wrap {
    min-height: auto;
}

.rkt-news-card-1 h3 {
    hyphens: auto;
    word-break: break-word;
}

.rkt-news-card-1 .kb-query-item:nth-child(4n+1) {
    background: #FFA0DA !important;
}

.rkt-news-card-1 .kb-query-item:nth-child(4n+2) {
    background: #C2AF94 !important;
}

.rkt-news-card-1 .kb-query-item:nth-child(4n+3) {
    background: #FB8647 !important;
}

.rkt-news-card-1 .kb-query-item:nth-child(4n) {
    background: #F4E736 !important;
}



.rkt-first-stick {
    top: 120px !important;
}



.rkt-news-card-1 .kb-query-item.category-mutprobe {

}
.rkt-news-card-1 .kb-query-item.category-unterwegs {
    
}
.rkt-news-card-1 .kb-query-item.category-pressespiegel {
    
}
.rkt-news-card-1 .kb-query-item.category-podcast {
    
}

.rkt-news-card-1 .kb-query-item.format-standard {

}
.rkt-news-card-1 .kb-query-item.format-link {
    
}
.rkt-news-card-1 .kb-query-item.format-audio {
    
}



/*  */

.kb-header-sticky-wrapper h1.wp-block-heading {
    transition: all .2s ease-out;
    /* font-size: 9.5vw !important;
    font-size: min(9.5vw, 160px) !important;
    font-size: clamp(64px, 9.5vw, 160px) !important;
    line-height: 0.85; */
}
.kb-header-sticky-wrapper svg.rkt-legaler-stress {
    transition: all .2s ease-out;
}

.kb-header-sticky-wrapper.item-is-stuck h1.wp-block-heading {
    font-size: 0px !important;
    opacity: 0;
}
.kb-header-sticky-wrapper.item-is-stuck svg.rkt-legaler-stress {
    opacity: 0;
    height: 0 !important;
}

/* AOS */
[data-aos=swipe-up]:after,
[data-aos=swipe-down]:after {
  background: var(--wp--preset--color--custom-dunkelgr-n) !important;
}

/* VA Slider */

.rt-home-eventslider .kb-splide .splide__slide {
    width: auto !important;
}

#rkt-event-splide {
    overflow: hidden;
}
.rkt-event-query-card > .kb-query-grid-wrap {
    display: flex;
}
.rkt-event-query-title,
/* .rkt-event-query-date, */
.rkt-event-query-title .wp-block-kadence-advancedheading.kt-adv-heading-has-icon {
    display: inline-block !important;
    white-space: nowrap;
}
.rkt-event-query-title .wp-block-kadence-advancedheading.kt-adv-heading-has-icon .kb-svg-icon-wrap.kb-adv-heading-icon {
    transform: translateY(-3px);
}

/* radikal typo */
.radikal-typo {
    font-size: calc(6vw - 1rem) !important;
}
@media screen and (max-width: 767px) {
    .radikal-typo {
        font-size: calc(11vw - 1rem) !important;
    }
}   

/* radikal typo */
.riot-diet {
    font-size: calc(17.5vw - 1rem) !important;
}

/* MUT WUT */
.mut-180 {
    transform: rotate(180deg);
}
.mut-wut .mut-wut-inner {
    transition: all .4s ease-out;
    margin: auto !important;
    border-radius: 9999999px;
}
.mut-wut:hover .mut-wut-inner {
    transform: rotate(180deg);
}
.mut-wut h2 {
    line-height: .95
}

.mut-wut h2:first-child, 
.mut-wut h2:last-child {
    transition: all .4s cubic-bezier(0, -0.65, 0, 1.09);
}
.mut-wut h2:last-child {
    font-size: 1.5em !important;
}
.mut-wut:hover h2:first-child {
    font-size: 1.5em !important;
}
.mut-wut:hover h2:last-child {
    font-size: var(--wp--preset--font-size--xx-large) !important
}



/* Desktop */
@media screen and (min-width: 1024px) {
    .desktop-last {
        order: 999
    }
}

/* Tablet */
@media screen and (min-width: 640px) and (max-width: 1023px) {
    .tablet-last {
        order: 999
    }
}

/* Mobile */
@media screen and (max-width: 639px) {
    .wp-block-buttons > .wp-block-button,
    .wp-block-button .wp-block-button__link {
        width: 100%;
    }
    .mobile-last {
        order: 999
    }
}