/* settings - breakpoints */

body.yellow_theme #desktop_Homepage {
    display: block;
}

body.yellow_theme #mobile_Homepage {
    display: none;
}

@media screen and (min-width: 48em) {
    body.yellow_theme #desktop_Homepage {
        display: block;
    }

    body.yellow_theme #mobile_Homepage {
        display: none;
    }
}

/* button */

body.yellow_theme .yellow_theme--button {
    border-radius: calc(35px / 2);
    border: 1px solid var(--yellow_theme__dark-grey);
    box-shadow: inset -2px -2px 4px rgba(0, 0, 0, 0);
    cursor: pointer;
    font-family: 'Manrope';
    font-size: 16px;
    height: 35px;
    line-height: 0.5em;
    margin: 0 .1rem .5rem 0;
    max-width: auto;
    padding: 12px 16px;
    transition: box-shadow .3s ease-out;
    width: max-content !important;
}

/* settings - backgrounds */

body.yellow_theme .header--cta_button {
    color: var(--yellow_theme__dark-purple);
    border: solid 1px var(--yellow_theme__dark-purple);
}

body.yellow_theme .header--cta_button.white-background_hover {
    color: var(--yellow_theme__white);
    border: solid 1px var(--yellow_theme__white);
}

body.yellow_theme .black-background {
    background-color: var(--yellow_theme__black);
}

body.yellow_theme .dark_grey-background {
    background-color: var(--yellow_theme__dark-grey);
}

body.yellow_theme .light_grey-background {
    background-color: var(--yellow_theme__light-grey);
}

body.yellow_theme .white-background,
body.yellow_theme .white-background_hover:hover {
    background-color: var(--yellow_theme__white);
    color: var(--yellow_theme__dark-purple);
}

body.yellow_theme .bright_purple-background {
    background-color: var(--yellow_theme__bright-purple);
}

body.yellow_theme .light_purple-background {
    background-color: var(--yellow_theme__light-purple);
}

body.yellow_theme .purple-background {
    background-color: var(--yellow_theme__purple);
}

body.yellow_theme .dark_purple-background,
body.yellow_theme .dark_purple-background_hover:hover {
    background-color: var(--yellow_theme__dark-purple);
    color: var(--yellow_theme__white);
}

body.yellow_theme .bright_green-background {
    background-color: var(--yellow_theme__bright_green);
}

body.yellow_theme .light_green-background {
    background-color: var(--yellow_theme__light_green);
}

/* settings - colors */

body.yellow_theme .dark_purple-color {
    color: var(--yellow_theme__dark-purple);
}

body.yellow_theme .medium_purple-color {
    color: var(--yellow_theme__purple);
}

body.yellow_theme .light_purple-color {
    color: var(--yellow_theme__bright-purple);
}

body.yellow_theme .white-color {
    color: var(--yellow_theme__white);
}

/* settings - typo html tags */



body.yellow_theme section p {
    text-align: left;
    line-height: 1.8;
    /* font-family: 'Manrope'; */
    font-family: "Manrope";
    font-weight: 400;
    font-size: 18px;
    color: #1e2c99;
    /* color: var(--yellow_theme__black); */
}

body.yellow_theme section blockquote p {
    font-size: 18px;
}

body.yellow_theme section h1,
body.yellow_theme section h2,
body.yellow_theme section h3,
body.yellow_theme section h4,
body.yellow_theme section h5,
body.yellow_theme section h6 {
    text-align: left;
    /* font-family: Karma, Georgia, Times, Times New Roman, serif; */
    font-family: "venice-blvd", sans-serif;
    font-weight: 800;
    font-size: 35px;
    color: #1e2c99;
    /* color: var(--yellow_theme__black); */
}


body.yellow_theme section h3 {
    font-size: 30px;
    font-weight: 500;
}

body.yellow_theme section h2 {
    font-size: 40px;
}

body.yellow_theme section h1 {
    font-size: 50px;
}

@media screen and (max-width: 48em) {
    body.yellow_theme section p {
        line-height: 1.5;
        font-weight: 400;
        font-size: 18px;
    }

    body.yellow_theme section h1,
    body.yellow_theme section h2,
    body.yellow_theme section h3,
    body.yellow_theme section h4,
    body.yellow_theme section h5,
    body.yellow_theme section h6 {
        font-weight: 800;
        font-size: 30px;
    }

    body.yellow_theme section h1 {
        font-size: 50px;
    }

    body.yellow_theme section h2 {
        font-size: 35px;
    }

    body.yellow_theme section blockquote p {
        font-size: 18px;
    }

    body.yellow_theme section .wp-block-quote {
        padding-left: 10px;
    }

    body.yellow_theme section .wp-block-quote:before,
    body.yellow_theme section blockquote:before {
        left: -0.375rem;
    }
}

body.yellow_theme section ul {
    color: var(--yellow_theme__black);
    font-family: 'Manrope';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    list-style: outside disc;
    text-align: left;
    margin-left: 2rem;
}

body.yellow_theme section ul li.list-marker {
    display: list-item;
    padding-left: 0;
    font-size: 18px;
}

body.yellow_theme section ol li.list-marker {
    font-size: 18px;
}

body.yellow_theme section ul li.list-marker:before {
    content: none;
}

body.yellow_theme section ul.key_checkmarks li.list-marker::marker {
    content: "\2713  ";
}

body.yellow_theme section ul.key_checkmarks li.list-marker#text {
    text-indent: 20px;
}

body.yellow_theme section ul.key_lines li.list-marker::marker {
    content: "-  ";
}

/* body - content */

body.yellow_theme .site-main__row {
    max-width: 1440px;
    margin: auto;
}

/* buttons */

body.yellow_theme .yellow_theme--button>*,
body.yellow_theme .yellow_theme--button>*:hover,
body.yellow_theme .yellow_theme--button>*:active {
    color: inherit;
    text-decoration: inherit;
}

body.yellow_theme .yellow_theme--button.yellow:hover,
body.yellow_theme .yellow_theme--button.yellow:active {
    box-shadow: 0 0 0 1px var(--yellow_theme__black);
}

body.yellow_theme .yellow_theme--button:not(.yellow):not(.header--cta_button):hover,
body.yellow_theme .yellow_theme--button:not(.yellow):not(.header--cta_button):active {
    background: var(--yellow_theme);
}

body.yellow_theme .yellow_theme--button.yellow {
    background-color: var(--yellow_theme);
    border: none;
}

body.yellow_theme .yellow_theme--button.large {
    border-radius: calc(45px / 2);
    font-size: 18px;
    font-weight: 700;
    height: 45px;
    line-height: 1.5;
    padding: 8px 18px 8px 18px;
}

body.yellow_theme .buttons {
    margin-bottom: 0.6875rem;
    margin-top: 0.6875rem;
}

/* price tag */

body.yellow_theme .figure_tag {
    font-size: 2.125rem;
    font-family: 'Manrope';
    font-weight: 700;
    background-color: var(--yellow_theme);
    border-radius: 3.5rem;
    font-weight: 700;
    padding: 0.6875rem 1.0625rem;
    width: fit-content;
    color: var(--yellow_theme__black);
    position: relative;
}

body.yellow_theme .sale-figure_tag {
    font-size: 1.25rem;
    font-family: 'Manrope';
    font-weight: 700;
    background-color: var(--yellow_theme__dark-purple);
    color: var(--yellow_theme__white);
    border-radius: 3.5rem;
    font-weight: 700;
    padding: 0.1875rem 0.6875rem;
    width: fit-content;
    position: relative;
}

body.yellow_theme .sale-figure_tag::before {
    content: '';
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0) calc(50% - 2px), rgba(228, 119, 42, 1) calc(50% - 1px), rgba(228, 119, 42, 1) calc(50% + 1px), rgba(0, 0, 0, 0) calc(50% + 2px));
    width: calc(100% - 1.0625rem);
    height: 1.375rem;
    display: inline-block;
    margin: 0.375rem .0 0.375rem 0;
    position: absolute;
    background-repeat: no-repeat;
}

body.yellow_theme .figure_tag .sale-figure_tag {
    position: absolute;
    right: 1.0625rem;
    top: -1.75rem;
}

/* body - content sections */

body.yellow_theme section:first-of-type {
    padding-top: 0;
}

/* body - content sections - content_table */

body.yellow_theme section.content_table a {
    color: var(--yellow_theme__dark-purple);
    text-decoration: none;
    font-family: Poppins;
    font-size: smaller;
}

body.yellow_theme section.content_table a:hover {
    color: var(--yellow_theme__dark-purple);
    text-decoration: underline 1px;
}

body.yellow_theme section.content_table div {
    margin: 4rem 0;
    padding: 1rem .5rem .5rem 1rem;
    border-radius: 5px;
    width: 80%;
    margin-left: auto;
    max-width: 52.5rem;
    margin-right: auto;
    border: solid var(--yellow_theme__black) 1px;
}

body.yellow_theme section.content_table h2 {
    font-size: 1rem;
    font-family: Poppins;
    line-height: 1.33333;
    color: var(--yellow_theme__black);
}

body.yellow_theme section.content_table ol li {
    margin-bottom: 10px;
}

body.yellow_theme section.content_table ol li:before {
    color: var(--yellow_theme__black);
    font-size: 18px;
    font-weight: 800;
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='24.226'%3E%3Cpath d='M18.115 0a5 5 0 014.329 2.5l4.111 7.113a5 5 0 010 5l-4.111 7.113a5 5 0 01-4.329 2.5h-8.23a5 5 0 01-4.329-2.5l-4.11-7.111a5 5 0 010-5L5.556 2.5A5 5 0 019.885 0z' fill='%2367a4f4'/%3E%3C/svg%3E"); */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Ccircle cx='14' cy='14' r='14' fill='%2367a4f4'/%3E%3C/svg%3E");
}

body.yellow_theme .entry__content h2:target:before {
    content: '';
    display: block;
    height: 160px;
    margin: -160px 0 0;
}

/* body - content sections - img_tag_background */

body.yellow_theme section.img_tag_background {
    overflow: hidden;
    padding: 0 0 1.375rem 0;
    position: relative;
    width: 100%;
}

body.yellow_theme section.img_tag_background>*:not(img) {
    margin: 2.625rem 6rem;
}

body.yellow_theme section.img_tag_background>button {
    margin: 0 2.625rem 0.675rem 2.625rem;
}

body.yellow_theme section.img_tag_background>*:not(img):last-child {
    margin-bottom: 2.625rem;
}

body.yellow_theme section.img_tag_background>div {
    max-width: 60%;
    width: fit-content;
}

body.yellow_theme section.img_tag_background>p,
body.yellow_theme section.img_tag_background>h1,
body.yellow_theme section.img_tag_background>h2,
body.yellow_theme section.img_tag_background>h3,
body.yellow_theme section.img_tag_background>h4,
body.yellow_theme section.img_tag_background>h5,
body.yellow_theme section.img_tag_background>h6 {
    margin-left: 3.5rem;
    margin-right: 3.5rem;
}

body.yellow_theme section.img_tag_background>h1 {
    width: 50%;
}

body.yellow_theme section.img_tag_background img {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    object-fit: cover;
    position: absolute;
    width: 100%;
    z-index: -1;
}

body.yellow_theme section.img_tag_background.dark img {
    filter: brightness(0.5);
}

@media screen and (max-width: 48em) {
    body.yellow_theme section.img_tag_background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    body.yellow_theme section.img_tag_background>*:not(img) {
        margin: 1.625rem 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    body.yellow_theme section.img_tag_background>div {
        max-width: calc(100vw - 2rem);
        width: unset;
        display: inline-block;
    }
}

/* body - content sections - text */

body.yellow_theme section.text {
    height: auto;
    margin: auto;
    padding: 1.675em 0 0 0;
    position: relative;
    width: 60%;
}

@media screen and (max-width: 48em) {
    body.yellow_theme section.text {
        margin: 1rem;
        width: calc(100vw - 2rem);
    }
}

/* body - content sections - card_carousel */

body.yellow_theme section.card_carousel {
    background-image: repeating-linear-gradient(var(--yellow_theme__white), var(--yellow_theme__white) calc(50% - 1px), var(--yellow_theme__bright-purple) 50%, var(--yellow_theme__bright-purple) 100%);
    margin: 8px auto 0 auto;
    padding: 27px 2rem 27px 2rem;
}

body.yellow_theme section.card_carousel.small {
    padding-bottom: 0;
}

body.yellow_theme section.card_carousel.small .image img {
    margin-bottom: 0;
}

body.yellow_theme section.card_carousel ol {
    text-align: center;
}

@media screen and (max-width: 62em) {
    body.yellow_theme section.card_carousel ol li.card .trust_icon.card_carousel>img {
        height: 14rem;
    }
}

body.yellow_theme section.card_carousel ol li.card {
    display: inline-block;
    flex: 0 0 20%;
    margin: 0 0.875rem 1.375rem 0.875rem;
    max-width: calc(20% - 3.5rem);
    padding-left: 0;
    text-indent: 0;
}

body.yellow_theme section.card_carousel ol li.card figure {
    background-color: var(--yellow_theme__white);
    border-radius: 0.875rem;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.41);
    transition: box-shadow 1s ease-out;
}

body.yellow_theme section.card_carousel ol li.card figure:has(a):hover,
body.yellow_theme section.card_carousel ol li.card figure:has(a):focus,
body.yellow_theme section.card_carousel ol li.card figure:has(a):active {
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.61);
}

body.yellow_theme section.card_carousel ol li.card figure>a,
body.yellow_theme section.card_carousel ol li.card figure>a:hover,
body.yellow_theme section.card_carousel ol li.card figure>a:active,
body.yellow_theme section.card_carousel ol li.card figure>a *,
body.yellow_theme section.card_carousel ol li.card figure>a *:hover,
body.yellow_theme section.card_carousel ol li.card figure>a *:active {
    color: var(--yellow_theme__black);
    text-decoration-line: none;
}

body.yellow_theme section.card_carousel ol li.card::before {
    content: none;
}

body.yellow_theme section.card_carousel ol li.card figure img {
    aspect-ratio: 1;
    height: auto;
    object-fit: cover;
    width: 100%;
}

body.yellow_theme section.card_carousel ol li.card figure figcaption {
    border-radius: calc(45px / 2);
    font-family: 'Manrope';
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0.25rem auto 1rem auto;
    padding: 8px;
    text-align: center;
}

body.yellow_theme section.card_carousel ol li.card figure figcaption h2 {
    font-family: 'Manrope';
    text-align: center;
    /* font-size: 1.5rem; */
    font-weight: 400;
    margin-bottom: 0;
}

body.yellow_theme section.card_carousel ol li.card figure figcaption h3 {
    font-family: 'Manrope';
    font-size: 14px;
    font-weight: 700;
    margin: 0.375rem 0;
}

body.yellow_theme section.card_carousel ol li.card figure figcaption p {
    margin: 0.5rem 0;
    font-size: 14px;
    min-height: 105px;
}

body.yellow_theme section.card_carousel ol li.card figure .container {
    border-radius: 0.875rem 0.875rem 0 0;
    height: auto;
    overflow: hidden;
}

body.yellow_theme section.card_carousel ol li.card figure .container img {
    margin: 0;
}

@media screen and (min-width: 62.001em) {
    body.yellow_theme section.card_carousel.small ol li.card {
        flex: 0 0 16.666%;
        max-width: 12%;
    }
}

@media screen and (max-width: 62em) {
    body.yellow_theme section.card_carousel.small ol li.card {
        max-width: auto;
    }
}

body.yellow_theme section.card_carousel.small ol li.card figure img {
    object-fit: contain;
}

body.yellow_theme section.card_carousel.small ol li.card figure .image.small.container img {
    height: auto;
    width: 50%;
}

body.yellow_theme section.card_carousel.large ol li.card {
    flex: 0 0 33.333%;
    max-width: 20%;
}

body.yellow_theme section.card_carousel.large.yellow_counter ol li.card {
    vertical-align: top;
}

body.yellow_theme section.card_carousel.large ol li.card figure figcaption {
    height: fit-content;
    margin-bottom: 0.75rem;
}

body.yellow_theme section.card_carousel.large ol li.card figure .container {
    height: 231px;
}

body.yellow_theme section.card_carousel.yellow_counter ol li.card figure .container {
    border-bottom: solid var(--yellow_theme) 3px;
}

body.yellow_theme section.card_carousel.yellow_counter ol li.card::before {
    background-color: var(--yellow_theme);
    background-image: none;
    border-radius: 1.75rem;
    border: solid var(--yellow_theme__white) 2px;
    color: var(--yellow_theme__black);
    content: counter(order);
    font-size: 2.4375rem;
    height: 3.5rem;
    margin-bottom: -1.75rem;
    overflow: hidden;
    padding: 0.5rem;
    position: relative;
    width: 3.5rem;
    z-index: 1;
}

body.yellow_theme section.card_carousel.no_decoration {
    background: none;
}

body.yellow_theme section.card_carousel.no_decoration .card figure {
    background-color: unset;
    border-radius: 0;
    box-shadow: none;
}

body.yellow_theme section.card_carousel.no_decoration .card figure figcaption {
    margin: 1.0625rem -50% 0 -50%;
}

@media screen and (max-width: 75em) {
    body.yellow_theme section.card_carousel ol li.card figure figcaption h2 {
        font-size: 1.1rem;
    }

    body.yellow_theme section.card_carousel.large ol li.card {
        max-width: 25%;
    }
}

@media screen and (max-width: 62em) {
    body.yellow_theme section.card_carousel ol li.card {
        max-width: calc(20% - 2rem);
        margin: 0 0.375rem 1.375rem 0.375rem;
    }

    body.yellow_theme section.card_carousel ol li.card figure .container {
        height: auto;
    }

    body.yellow_theme section.card_carousel.large ol li.card {
        max-width: 28%;
    }
}

@media screen and (max-width: 48em) {
    body.yellow_theme section.card_carousel ol li.card {
        display: inline-block;
        flex: 0 0 33%;
        margin: 0 0 1.375rem 0;
        max-width: calc(33% - 0.5rem);
        padding-left: 0;
        text-indent: 0;
    }

    body.yellow_theme section.card_carousel ol li.card figure .container {
        height: unset;
    }

    body.yellow_theme section.card_carousel.small ol li.card figure .image.small.container img {
        height: auto;
        width: 100%;
    }

    body.yellow_theme section.card_carousel.small ol li.card:has(.small) {
        max-width: unset;
    }

    body.yellow_theme section.card_carousel.no_decoration .card figure figcaption {
        font-size: 1rem;
    }
}

@media screen and (max-width: 30em) {
    body.yellow_theme section.card_carousel {
        margin: 0;
        max-width: 100vw;
        overflow-x: scroll;
        padding: 0;
    }

    body.yellow_theme section.card_carousel ol {
        overflow-x: scroll;
        width: max-content;
    }

    body.yellow_theme section.card_carousel ol li.card {
        margin: 0 1rem 1.375rem 1rem;
        max-width: 9.5rem;
    }

    body.yellow_theme section.card_carousel ol li.card:first-of-type {
        margin-left: 1rem;
    }

    body.yellow_theme section.card_carousel ol li.card:last-of-type {
        margin-left: 1rem;
    }

    body.yellow_theme section.card_carousel ol li.card figure .container {
        max-height: 10.5rem;
    }

    body.yellow_theme section.card_carousel ol li.card figure .container.small {
        height: unset;
    }

    body.yellow_theme section.card_carousel ol li.card figure figcaption {
        margin: .0625rem;
        font-size: 1rem;
    }

    body.yellow_theme section.card_carousel ol li.card figure figcaption h2 {
        font-size: 1rem;
        margin-top: 0.25rem;
    }

    body.yellow_theme section.card_carousel.large ol li.card {
        flex: 0 0 100%;
        max-width: 60vw;
    }

    body.yellow_theme section.card_carousel.no_scroll ol {
        max-width: 100vw;
        flex-direction: row;
        flex-wrap: wrap;
        margin: auto;
        justify-content: center;
        padding: 1rem 0;
        width: unset;
        overflow-x: initial;
    }

    body.yellow_theme section.card_carousel.no_scroll {
        width: unset;
        overflow-x: initial;
    }
}

/* body - content sections - horizontal_split */

body.yellow_theme section.horizontal_split {
    display: flex;
    height: auto;
    margin: auto;
    position: relative;
    width: 100%;
}

body.yellow_theme section.horizontal_split>div {
    display: inline-block;
    flex-direction: column;
    flex: 1 1 50%;
    margin: 0;
    max-width: 50%;
    padding: 1.75rem;
    position: relative;
    width: 100%;
}

body.yellow_theme section.horizontal_split div.image_container {
    padding: 0;
}

body.yellow_theme section.horizontal_split div.image_container img {
    height: 100%;
    object-fit: cover;
    padding: 0;
    width: 100%;
    margin-bottom: 0;
}

body.yellow_theme section.horizontal_split>div>* {
    position: relative;
}

body.yellow_theme section.horizontal_split>div:first-child>* {
    padding-left: 1.75rem;
}

body.yellow_theme section.horizontal_split>div:last-child>* {
    padding-right: 1.75rem;
}

@media screen and (max-width: 62em) {
    body.yellow_theme section.horizontal_split {
        flex-direction: column;
    }

    body.yellow_theme section.horizontal_split.reverse_order-mobile {
        flex-direction: column-reverse;
    }

    body.yellow_theme section.horizontal_split>div {
        flex: 0 0 100%;
        max-width: 100vw;
        padding: 1rem 0;
        overflow-y: hidden;
    }

    body.yellow_theme section.horizontal_split>.image_container {
        max-height: 80vw;
    }

    body.yellow_theme section.horizontal_split>div:first-child>* {
        margin-bottom: 1rem;
        padding-left: 0;
        padding-right: 0;
    }

    body.yellow_theme section.horizontal_split>*:not(.image_container)>* {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    body.yellow_theme section.horizontal_split>*:not(.image_container)>*:last-of-type {
        margin-bottom: -3rem;
        margin-top: 11rem;
    }
}

body.yellow_theme section.horizontal_split h2:has(~div .figure_tag) {
    max-width: calc(100% - 10rem);
}

@media screen and (max-width: 48em) {
    body.yellow_theme section.horizontal_split>*:not(.image_container)>*:last-of-type {
        margin-bottom: 1rem;
        margin-top: unset;
    }

    body.yellow_theme section.horizontal_split h2:has(~div .figure_tag) {
        max-width: calc(100% - 4rem);
    }
}

/* body - content sections - cta */

body.yellow_theme section.cta {
    margin-top: 1.5rem;
    max-width: 60%;
    border: solid var(--yellow_theme__purple);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

@media screen and (max-width: 62em) {
    body.yellow_theme section.cta .figure_tag {
        /* font-size: 1.5rem; */
        padding: 0.25rem 0.75rem !important;
        border-radius: 1rem;
    }

    body.yellow_theme section.cta .figure_tag .sale-figure_tag {
        padding: 0 0.25rem;
        top: -1.3275rem;
    }
}

@media screen and (max-width: 32em) {
    body.yellow_theme section.cta {
        max-width: calc(100% - 2rem);
        margin-left: 1rem;
        margin-right: 1rem;
    }

    body.yellow_theme section.cta .figure_tag {
        /* font-size: 1.5rem; */
        padding: 0.25rem 0.75rem !important;
        border-radius: 1rem;
    }

    body.yellow_theme section.cta.horizontal_split div.image_container {
        object-fit: fill;
    }

    body.yellow_theme section.cta.horizontal_split div.image_container img {
        object-fit: cover;
        position: relative;
        top: -2rem;
    }

    body.yellow_theme section.cta .figure_tag .sale-figure_tag {
        right: 0.5rem;
    }
}

body.yellow_theme section.cta.horizontal_split div.image_container {
    /* align-self: center; */
}

body.yellow_theme section.cta.horizontal_split div.image_container img {
    height: unset;
}

body.yellow_theme section.cta h2 {
    font-size: 34px;
}

body.yellow_theme section.cta p {
    font-size: 18px;
}

body.yellow_theme section.cta .figure_tag {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
}

body.yellow_theme section.cta .figure_tag .sale-figure_tag {
    background-color: var(--yellow_theme__black);
}

/* body - content sections - slider */

body.yellow_theme section.slider {
    padding-top: 1rem;
}

body.yellow_theme section.slider:not(:has(nav)) {
    padding-bottom: 1rem;
}

body.yellow_theme section.slider ul {
    margin: 0;
}

body.yellow_theme section.slider ul li {
    padding-left: 1rem;
}

body.yellow_theme section.slider ul li:before {
    content: none;
}

body.yellow_theme section.slider figure {
    display: flex;
    flex-wrap: wrap;
    min-height: 19.625rem;
    margin: 1.75rem 3.5rem;
    padding: 0;
    position: relative;
    overflow: hidden;
}

body.yellow_theme section.slider figure .image.container {
    max-width: 30%;
    overflow: hidden;
    position: absolute;
    width: 30%;
    width: auto;
}

body.yellow_theme section.slider figure .image.container img {
    height: auto;
    width: 100%;
}

body.yellow_theme section.slider figure>*:not(.image.container) {
    left: 30%;
    max-width: 70%;
    padding: 0 2.25rem 0 2.25rem;
    position: relative;
    width: 100%;
}

body.yellow_theme section.slider figure>*:not(.image.container):first-child {
    margin-top: 3.5rem;
}

body.yellow_theme section.slider figure>*:not(.image.container):last-child {
    margin-bottom: 3.5rem;
}

body.yellow_theme section.slider figure blockquote {
    color: var(--yellow_theme__black);
    font-family: 'Manrope';
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 0.6875rem;
    margin-top: 3.5rem;
    text-align: left;
}

body.yellow_theme section.slider figure figcaption {
    color: var(--yellow_theme__black);
    font-family: 'Manrope';
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    text-align: left;
}

body.yellow_theme section.slider figure figcaption cite {
    display: inline;
    font-size: inherit;
    font-style: inherit;
}

body.yellow_theme section.slider figure blockquote::after {
    content: '“';
}

body.yellow_theme section.slider figure blockquote::before {
    background: none;
    color: var(--yellow_theme);
    content: '„';
    font-size: 12.625rem;
    font-weight: 800;
    height: fit-content;
    left: -3.3125rem;
    line-height: 0.1;
    top: -2.8125rem;
}

body.yellow_theme section.slider figure blockquote::after {
    content: '“';
}

body.yellow_theme section.slider nav {
    margin: -1.375rem auto 0 auto;
    padding: 0.6875rem;
    width: fit-content;
}

body.yellow_theme section.slider nav input[type=radio] {
    visibility: hidden;
}

body.yellow_theme section.slider nav input[type=radio]~label {
    border-radius: 50%;
    border: solid var(--yellow_theme__white) 2px;
    cursor: pointer;
    height: 0.6875rem;
    margin: 0;
    position: relative;
    width: 0.6875rem;
}

body.yellow_theme section.slider nav input[type=radio]:checked+label {
    border: solid var(--yellow_theme__white) 3px;
}

@media screen and (max-width: 48em) {
    body.yellow_theme section.slider {
        padding-top: 0;
    }

    body.yellow_theme section.slider figure {
        height: unset;
        margin: 0;
    }

    body.yellow_theme section.slider ul li {
        padding-right: 1rem;
        padding-top: 1rem;
    }

    body.yellow_theme section.slider figure .image.container {
        align-items: center;
        display: flex;
        height: 24rem;
        justify-content: center;
        margin-bottom: 1rem;
        max-width: unset;
        position: relative;
        width: 100%;
    }

    body.yellow_theme section.slider figure>*:not(.image.container) {
        left: 0;
        max-width: unset;
        padding: .375rem 1rem;
    }

    body.yellow_theme section.slider figure blockquote {
        font-size: 26px;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 0;
    }

    body.yellow_theme section.slider figure>*:not(.image.container):last-child {
        margin-bottom: 0;
    }

    body.yellow_theme section.slider nav {
        margin-top: 1rem;
    }

    body.yellow_theme section.slider figure blockquote::before {
        font-size: 10.625rem;
        left: 0;
        top: -3.8125rem;
    }
}

/* helpers - rounded_box */

body.yellow_theme section .rounded_box {
    border-radius: 0.5rem;
    padding: 1.8125rem;
    position: relative;
}

body.yellow_theme section .rounded_box .figure_tag {
    position: absolute;
    right: 1.375rem;
    top: -2.5rem;
}

/* helpers - centered_text */

@media screen and (min-width: 48em) {
    body.yellow_theme section .centered_text {
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center;
        margin-bottom: 2.625rem;
    }

    body.yellow_theme section .centered_text>p,
    body.yellow_theme section .centered_text>h1,
    body.yellow_theme section .centered_text>h2,
    body.yellow_theme section .centered_text>h3,
    body.yellow_theme section .centered_text>h4,
    body.yellow_theme section .centered_text>h5,
    body.yellow_theme section .centered_text>button {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

@media screen and (max-width: 48em) {
    body.yellow_theme section .centered_text {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
        margin: 1rem;
        padding-top: 2rem;
    }

    body.yellow_theme section .centered_text>p,
    body.yellow_theme section .centered_text>h1,
    body.yellow_theme section .centered_text>h2,
    body.yellow_theme section .centered_text>h3,
    body.yellow_theme section .centered_text>h4,
    body.yellow_theme section .centered_text>h5,
    body.yellow_theme section .centered_text>button {
        text-align: left;
    }
}

/* helpers - vertical_center_child */

body.yellow_theme section .vertical_center_child {
    display: inline;
}

body.yellow_theme section .vertical_center_child>* {
    top: 50%;
    transform: translateY(-50%);
    position: relative;
    display: inline-block;
}

@media screen and (max-width: 48em) {
    body.yellow_theme section .vertical_center_child>* {
        top: unset;
        transform: none;
        margin-top: 1rem;
    }
}

/* helpers - large_height */

body.yellow_theme .large_height {
    height: 38rem;
}

@media screen and (max-width: 62em) {
    body.yellow_theme .hide_on_mobile {
        display: none !important;
    }
}

/* justification */

@media screen and (max-width: 62em) {
    body.yellow_theme .align-right-mobile {
        justify-content: right;
    }
}

/* hard left on mobile */

@media screen and (max-width: 62em) {
    body.yellow_theme .left-position-mobile {
        position: absolute;
        left: 0;
    }
}

/*  gray scale img*/

body.yellow_theme .gray img {
    filter: grayscale(100);
}

/*  center text beginning only desktop*/

body.yellow_theme .text.center * {
    text-align: center;
}

@media screen and (max-width: 62em) {
    body.yellow_theme .text.center * {
        text-align: left;
    }
}

/* references footer */

body.yellow_theme footer.references {
    padding: 15px;
}

body.yellow_theme footer.references h2 {
    font-size: small;
    margin-bottom: 1rem;
}

body.yellow_theme footer.references li {
    font-size: x-small;
    margin-bottom: 0;
    text-decoration: none;
    padding-left: 0;
}

body.yellow_theme footer.references li:before {
    background-image: none;
    content: '';
    display: block;
    height: unset;
}

body.yellow_theme footer.references ul {
    counter-reset: item;
}

body.yellow_theme footer.references li.superscript {
    padding-left: 0.75rem;
    line-height: initial;
}

body.yellow_theme footer.references li.superscript:before {
    content: counter(item);
    counter-increment: item;
    font-size: 0.8em;
    vertical-align: super;
    color: var(--yellow_theme__dark-purple);
}

body.yellow_theme footer.references li a {
    text-decoration: none;
    color: var(--yellow_theme__dark-purple);
}

body.yellow_theme footer.references li a:hover {
    text-decoration: underline;
}

body.yellow_theme footer.references hr.wp-block-separator {
    position: unset;
}

body.yellow_theme footer.references p em {
    color: unset;
    font-family: unset;
    font-size: unset;
    font-style: italic;
    font-weight: unset;
}

body.yellow_theme footer.references p {
    line-height: 10px;
    margin: 0.2rem 0;
}

@media screen and (min-width: 62em) {
    body.yellow_theme footer.references {
        max-width: 65.625rem;
        width: 840px;
        margin: auto;
    }
}

/* section SEO for yellow blog*/

body.yellow_theme section.variable_content strong {
    font-weight: 600;
}

@media screen and (min-width: 75em) {
    body.yellow_theme section.variable_content {
        max-width: 52.5rem;
        width: 66.66667%;
        margin: auto;
        margin-bottom: 3.75rem;
        margin-top: 3.75rem;
    }

    body.yellow_theme section.variable_content ol {
        padding-left: .5rem;
    }
}

@media screen and (max-width: 74.999em) {
    body.yellow_theme section.variable_content {
        margin: 2rem 1rem 1rem 1rem;
    }

    body.yellow_theme section.variable_content h2 {
        font-size: 30px;
    }

    body.yellow_theme section.variable_content h3 {
        font-weight: 400;
        font-size: 25px;
    }
}

body.yellow_theme section.variable_content ol {
    color: var(--yellow_theme__black);
    font-family: 'Manrope';
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

body.yellow_theme section.variable_content ol li:before {
    font-size: 14px;
    scale: 120%;
    color: var(--yellow_theme__black);
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='24.226'%3E%3Cpath d='M18.115 0a5 5 0 014.329 2.5l4.111 7.113a5 5 0 010 5l-4.111 7.113a5 5 0 01-4.329 2.5h-8.23a5 5 0 01-4.329-2.5l-4.11-7.111a5 5 0 010-5L5.556 2.5A5 5 0 019.885 0z' fill='%2367a4f4'/%3E%3C/svg%3E"); */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Ccircle cx='14' cy='14' r='14' fill='%2367a4f4'/%3E%3C/svg%3E");

}

body.yellow_theme section.variable_content a {
    /* color: var(--yellow_theme__dark-purple); */
    color: #1e2c99;
    font-family: "venice-blvd", sans-serif;
}

body.yellow_theme section.variable_content a:hover {
    color: black;
}

/*highlight-box style (seo facelift)*/

body.yellow_theme section.variable_content div.highlight_box {
    border: solid var(--yellow_theme__black) 1px;
    padding: 1rem;
    border-radius: 5px;
    margin: 3rem 0 3rem 0;
}


body.yellow_theme section.variable_content div.highlight_box.non_border {
    border: 0;
}

body.yellow_theme section.variable_content div.highlight_box h3 {
    font-size: 20px;
    margin-bottom: 0.5rem;
    font-family: Poppins;
    font-weight: 600;
}

/*slider (img + text) style (seo facelift)*/

body.yellow_theme .slider {
    margin: 3rem 0 2rem 0;
}

body.yellow_theme .slider .slider_elements {
    display: flex;
    overflow-y: hidden;
    overflow-x: scroll;
    height: max-content;
    margin-bottom: 1rem;
}

@media screen and (min-width: 75em) {
    body.yellow_theme .slider .slider_elements .row {
        flex-flow: inherit;
        margin: 0 2rem 0 2rem;
    }

    body.yellow_theme .slider .slider_elements .slider_media {
        height: 330px;
        max-width: 330px;
        width: 330px;
    }

    section>div>div.stage--entry.stage>header>div>h1 {
        line-height: 2rem;
    }
}

body.yellow_theme .slider .slider_elements .slider_text {
    padding: 3rem 1rem 0 3rem;
    border: solid var(--yellow_theme__black) 1px;
    border-left: 0;
    border-radius: 0 5px 5px 0;
    height: 330px;
    width: 350px;
    overflow-y: scroll;
}

body.yellow_theme .slider .slider_elements .slider_text h3 {
    font-family: "venice-blvd", sans-serif;
    color: var(--yellow_theme__black);
    font-weight: 700;
}

body.yellow_theme .slider .slider_elements .slider_media img {
    border-radius: 5px 0 0 5px;
    object-fit: cover;
    height: 330px;
}

body.yellow_theme .slider .slider_elements .slider_text p {
    font-family: Poppins;
    color: var(--yellow_theme__black);
    font-size: smaller;
}

/* mobile version slider */

@media screen and (max-width: 74.62em) {
    body.yellow_theme .slider .slider_elements .slider_media {
        height: 230px;
        max-width: 300px;
        width: 300px;
    }

    body.yellow_theme .slider .slider_elements .slider_text {
        padding: 2rem 0 .5rem 1.5rem;
        border-radius: 0 0 5px 5px;
        height: 250px;
        width: 300px;
        border: solid var(--yellow_theme__black) 1px;
        border-top: 0;
    }

    body.yellow_theme .slider .slider_elements .slider_text h3 {
        font-family: "venice-blvd", sans-serif;
        color: var(--yellow_theme__black);
        font-size: 20px;
        margin-bottom: 0.2rem;
    }

    body.yellow_theme .slider .slider_elements .slider_media img {
        border-radius: 5px 5px 0 0;
        height: 230px;
    }

    body.yellow_theme .slider .slider_elements .row {
        margin: 0 1rem 0 1rem;
    }

    body.yellow_theme .slider .slider_elements .slider_text p {
        font-size: small;
        line-height: normal;
    }
}

body.yellow_theme .slider .slick-dots button {
    height: unset;
}

body.yellow_theme .slider .slick-dots li button:hover,
body.yellow_theme .slider .slick-dots li.slick-active button {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18.2 16'><path d='M12.5 0h-7c-.7 0-1.4.4-1.7 1L.3 7c-.4.6-.4 1.4 0 2l3.5 6c.4.6 1 1 1.8 1h7c.7 0 1.4-.4 1.8-1l3.5-6c.4-.6.4-1.4 0-2l-3.5-6c-.5-.6-1.2-1-1.9-1z' fill='%23000000'/></svg>");
}

.slick-dots button {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19.1 17.1'><path d='M13 17.1H6c-.9 0-1.7-.5-2.2-1.3l-3.5-6C-.2 9-.2 8 .3 7.3l3.5-6C4.3.5 5.1 0 6 0h7c.9 0 1.7.5 2.2 1.3l3.5 6c.5.8.5 1.8 0 2.5l-3.5 6c-.4.8-1.3 1.3-2.2 1.3zM6 1c-.5 0-1 .3-1.3.8l-3.5 6c-.2.5-.2 1.1 0 1.5l3.5 6c.3.5.8.8 1.3.8h7c.6 0 1.1-.3 1.3-.8l3.5-6c.3-.5.3-1.1 0-1.5l-3.5-6c-.2-.5-.7-.8-1.3-.8H6z' fill='%23000000'/></svg>");
}

.slick-dots button.half-view {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18.2 16'><path d='M12.5 0h-7c-.7 0-1.4.4-1.7 1L.3 7c-.4.6-.4 1.4 0 2l3.5 6c.4.6 1 1 1.8 1h7c.7 0 1.4-.4 1.8-1l3.5-6c.4-.6.4-1.4 0-2l-3.5-6c-.5-.6-1.2-1-1.9-1z' fill='%23F5F5F5'/></svg>");
}

body.yellow_theme .slider .slick-dots li::marker {
    content: none;
}

/* Scrollbar*/

body.yellow_theme .slider ::-webkit-scrollbar {
    --scrollbar-foreground: #fff0;
}

/* product highlight element with post type product */

body.yellow_theme section.product_ad {
    display: flex;
    align-items: center;
    box-shadow: 0 0 0 1px var(--yellow_theme__black);
    height: 400px;
    margin: auto;
    width: 70%;
    border-radius: 5px;
}

body.yellow_theme section.product_ad .product__media {
    scale: 80%;
    flex: 0 0 auto;
    margin-right: 20px;
    width: 500px;
}

body.yellow_theme section.product_ad .product__media img {
    margin-bottom: auto;
}

body.yellow_theme section.product_ad .product__header {
    padding-right: 4rem;
}

body.yellow_theme section.product_ad .product__col {
    margin-bottom: 2rem;
}

body.yellow_theme section.product_ad .product__strike-price {
    text-decoration: line-through;
    text-decoration-color: red;
    text-decoration-thickness: 1px;
    margin: 0 10px;
}

body.yellow_theme section.product_ad .product__prices {
    display: flex;
    flex-direction: row;
    align-items: baseline;
}


/* info box module */

body.yellow_theme section div.info_box {
    position: relative;
    margin-top: 6rem;
}

body.yellow_theme section div.info_box svg {
    width: auto;
    max-width: 120px;
    position: absolute;
    top: -55px;
    left: -85px;
    z-index: -1;
}

body.yellow_theme section.variable_content div.info_box div.highlight_box {
    border: solid var(--yellow_theme__dark-purple) 3px;
    background-color: var(--yellow_theme__white);
}

body.yellow_theme .yellow_theme--button.large.header--cta_button {
    margin-top: 1rem;
}

/* mobile version*/

@media screen and (max-width: 74.62em) {

    /* SEO Facelift mobile header */
    .stage__header .cat-links {
        font-size: x-small;
    }

    .stage__title--entry,
    .stage__title--sticky {
        line-height: 1.75rem;
    }

    body.yellow_theme .yellow_theme--button.large.header--cta_button {
        font-size: 14px;
        height: auto;
        line-height: 1;
    }

    body.yellow_theme section.product_ad {
        margin: auto;
        height: max-content;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 90%;
    }

    body.yellow_theme section.product_ad .product__header {
        padding: 0rem 2rem 2rem 2rem;
    }

    body.yellow_theme section.product_ad .product__media {
        scale: 100%;
        flex: unset;
        margin: 0 1rem;
    }

    body.yellow_theme section.product_ad .product__col {
        margin-bottom: 0rem;
        padding: 0 0 0.5rem 0;
    }

    body.yellow_theme section.product_ad img {
        margin: 0;
    }

    body.yellow_theme section div.info_box {
        margin-left: 3.5rem;
    }

    body.yellow_theme section div.info_box svg {
        max-width: 100px;
        top: -45px;
        left: -70px;
    }
}

body.yellow_theme div.slider div.slider_elements div.slider_text ul li::before {
    content: '-';
    color: #000;
    text-indent: -1.5rem;
}

body.yellow_theme section.card_carousel ol.selectable li {
    transition: opacity .5s ease;
    -webkit-transition: opacity .5s ease;
}

body.yellow_theme section.card_carousel ol.selectable:hover li:not(:hover) {
    opacity: 0.6;
    filter: blur(0.5px);
}

body.yellow_theme section.closer_together h2 {
    margin-bottom: 0;
}

body.yellow_theme section.closer_together div.centered_text {
    margin-top: 0;
}

/* SEO Facelift fix */

/*p color fix - purple hero teaser */
.hero-teaser.site-block div div.hero-teaser__col p {
    color: white;
}

/*bildunterschrift center*/
figure.aligncenter figcaption.wp-element-caption {
    text-align: center;
    font-style: italic;
    font-size: .8rem;
}

/*tabellenunterschrift style*/
figure.wp-block-table figcaption.wp-element-caption {
    font-size: .8rem;
    font-style: italic;
    margin-top: .5rem;
}