:root {
    /* Fonts */
    --font-base-size: 16px;
    --font-family: 'Poppins', sans-serif;
    --font-weight-base: 400;
    --font-weight-semi-bold: 600;
    --font-weight-bold: 700;
    /* Colors */
    --color-jb-green-1: #51B046;
    --color-jb-green-2: #77C06D;
    --color-jb-green-3: #9CD193;
    --color-jb-green-4: #BDDFB7;
    --color-jb-green-5: #DCEFDA;
    --color-jb-gray-1: #212121;
    --color-jb-gray-2: #666666;
    --color-jb-gray-3: #9A9A9A;
    --color-jb-gray-4: #CDCDCD;
    --color-jb-gray-5: #F7F7F7;
    --color-jb-gray-6: #D9D9D9;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-dark-gray: #252525;
    --color-gray: #808285;
    --color-light-orange: #FAB72B;
    --color-light-orange-25: #FAB72B40;
    --color-red: #E84133;
    --color-red-2: #E8413340;
    --color-innio-green-1: #24DB82;
    --color-innio-lila-2: #8C57FF;
    --color-hyperlink: #5102FF;
    --color-globe: var(--color-white);

    --icon-color-search: var(--color-jb-gray-4);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: var(--font-base-size);
}

body {
    font-size: 1rem;
    color: var(--color-black);
    background-color: var(--color-white);
    font-family: var(--font-family);
}

@font-face {
    font-family: 'INNIOHeadline';
    src: url('../fonts/INNIOHeadline-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'INNIORegular';
    src: url('../fonts/INNIO-Regular.woff2') format('woff2'),
         url('../fonts/INNIO-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'INNIOMedium';
    src: url('../fonts/INNIO-Medium.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

p {
    font-size: 16px;
    line-height: 1.5;
}

p.responsive {
    font-size: 16px;
    line-height: 24px;
    font-weight: var(--font-weight-base);
}

p.small {
    font-size: 14px;
    line-height: 1.714285;
}

p.xsmall {
    font-size: 12px;
    line-height: 1;
}

p.large {
    font-size: 1.25rem;
    line-height: 1.75;
}

p.bold {
    font-weight: var(--font-weight-bold);
    margin: 0
}

span.bold {
    font-weight: var(--font-weight-bold);
    margin: 0
}

.text--green {
    color: var(--color-jb-green-1);
}

.text--orange {
    color: var(--color-light-orange);
}

.text-break {
    hyphens: auto;
}

h1 {
    font-size: 5rem;
    line-height: 1.2;
    text-decoration: underline;
    text-underline-offset: 1rem;
    font-weight: var(--font-weight-bold);
}

h2, h2.sub {
    font-size: 24px;
    line-height: 34px;
    font-weight: var(--font-weight-bold);
}


@media (min-width: 768px) {
    h2 {
        font-size: 3rem;
        line-height: 1.333333;
        font-weight: var(--font-weight-bold);
    }

    h2.sub {
        font-size: 48px;
        line-height: 64px;
        font-weight: var(--font-weight-semi-bold);
    }
}

h2.light {
    font-weight: var(--font-weight-semi-bold);
}

h2.small {
    font-size: 2.25rem;
    line-height: 1.5555556;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4166667;
    font-weight: var(--font-weight-semi-bold);
}

h3.small {
    font-size: 1.25rem;
}

h4 {
    font-size: 1.125rem;
    line-height: 1.5555556;
    font-weight: var(--font-weight-semi-bold);
}

h5,
h6 {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: var(--font-weight-bold);
}

.font-secondary {
    font-family: INNIORegular, sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 532px) {
    h2.small {
        font-size: 24px;
        line-height: 34px;
    }
    
    h3 {
        font-size: 20px;
        line-height: 30px;
    }

    h3.small {
        font-size: 16px;
        line-height: 22px;
    }

    p.responsive {
        font-size: 14px;
        line-height: 24px;
        font-weight: var(--font-weight-base);
    }
}

/* HEADER */

.header {
    display: flex;
    flex-direction: column;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-jb-gray-1);
    color: var(--color-white);
}

.top-bar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

@media (min-width: 768px) {
    .top-bar__container {
        /* padding: 8px; */
    }
}

.top-bar__utilities {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* LOGO */

.logo {
    --width: 94px;
    --height: 24px;

    width: var(--width);
    height: var(--height);
    background-image: url("../img/INNIO_logo_black.png");
    background-repeat: no-repeat;
    background-size: 100%;
}

.logo--compact {
    --width: 64px;
    --height: 17px;
}

.logo--white {
    background-image: url("../img/INNIO_logo_white.png");
}

/* META NAVIGATION */

.meta-navigation {
}

.meta-navigation__list {
    display: flex;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.meta-navigation__item {

}

.meta-navigation__link {
    color: var(--color-white);
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none;
}

.meta-navigation__link:hover {
    color: var(--color-jb-green-2);
}

@media (max-width: 576px) { 
    .meta-navigation__item--hidden-mobile {
        display: none;
    }
}

/* COUNTRY LANGUAGE SELECTION */
.country-language-selection select,
.country-language-selection ::picker(select) {
  appearance: auto;
}

.country-language-selection {
    display: flex;
    gap: 6px;
    align-items: center;
}

.country-language-selection__select select {
    color: var(--color-white);
    font-size: 13px;
    line-height: 1.5;
    background-color: transparent;
    border: none;
}

.country-language-selection__select select option {
    color: var(--color-black);
}

.nav-menu__header .country-language-selection__select select {
    font-size: 14px;
    font-weight: var(--font-weight-semi-bold);
}

/* APPLICATION BAR */

.application-bar {
    background-color: var(--color-white);
    color: var(--color-black);
    box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.15);
    position: relative;
}

.application-bar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0 16px;
    flex-wrap: wrap;
    row-gap: 28px;
}

@media (min-width: 768px) {
    .application-bar__container {
        padding: 40px 0 16px;
        flex-wrap: wrap;
        row-gap: 56px;
    }
}

.application-bar__logo {
    max-width: 230px;
}

@media (min-width: 576px) { 
    .application-bar__logo {
        max-width: 255px;
    }
}

@media (min-width: 992px) { 
    .application-bar__logo {
        max-width: none;
    }
}

.application-bar__utilities {
    flex: none;
}

.application-bar__main-navigation {
    width: 100%;
    display: flex;
    justify-content: center;
    row-gap: 15px;
}

.application-bar.has-search .application-bar__main-navigation {
    flex-direction: column;
}

.application-bar.has-search .main-navigation {
    justify-content: space-between;
}

@media (min-width: 992px) {
    .application-bar.has-search .application-bar__main-navigation {
        flex-direction: row;
        justify-content: space-between;
    }
}

.application-bar__searchfield {
    width: 100%;
}

@media (min-width: 992px) {
    .application-bar__searchfield {
        width: 250px;
    }
}

@media (min-width: 1200px) {
    .application-bar__searchfield {
        width: 420px;
        flex: none;
    }
}

@media (min-width: 1400px) {
    .application-bar__searchfield {
        width: 575px;
        flex: none;
    }
}

/* MAIN NAVIGATION */

.main-navigation {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    column-gap: 66px;
}

.main-navigation__item {
    display: flex;
    align-items: center;
}

.main-navigation__link {
    color: var(--color-black);
    font-size: 12px;
    line-height: 13.8px;
    text-decoration: none;
    font-weight: var(--font-weight-semi-bold);
    text-transform: uppercase;
    text-align: center;

    &:hover {
        color: var(--color-jb-green-1);
    }

    @media (min-width: 768px) {
        font-size: 16px;
        line-height: 1.5;
    }
}

.main-navigation__link--active {
    color: var(--color-jb-green-1);
}

/* FOOTER */

.footer {
    color-scheme: dark;
    background: var(--color-jb-gray-1);
}


.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0px 22px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .footer__container {
        padding: 58px 0px 32px;
    }
}

.footer__utilities {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.footer__sitemap-navigation,
.footer__social-links {
    width: 100%;
}

.footer__utilities {
    order: 1;
    margin-bottom: 29px;
    
}

.footer__logo {
    order: 2;
    max-width: 355px;
}

.footer__sitemap-navigation {
    order: 3;
}

.footer__social-links {
    order: 4;
}

@media (min-width: 768px) {
    .footer__utilities {
        order: 2;
        margin: 0;
        justify-content: flex-end;
        width: auto;
    }
    
    .footer__logo {
        order: 1;
    }
}

@media (min-width: 992px) { 
    .footer__logo {
        max-width: none;
    }
}

/* SITEMAP NAVIGATION */

.sitemap-navigation {
    padding: 38px 0 62px 0;
}

@media (min-width: 768px) {
    .sitemap-navigation {
        padding: 60px 0 30px 0;
    }
}

.sitemap-navigation__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    row-gap: 16px;
}

@media (min-width: 768px) {
    .sitemap-navigation__list {
        flex-direction: row;
    }
}

.sitemap-navigation__item {}

.sitemap-navigation__link {
    text-decoration: none;
    color: var(--color-white);
}

.sitemap-navigation__link:hover {
    color: var(--color-jb-green-1);
}

/* SOCIAL LINKS */


.social-links{
    
}

.social-links__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    column-gap: 40px;
}

@media (min-width: 768px) {
    .social-links__list {
        column-gap: 48px;
        justify-content: flex-end;
    }
}

.social-links__item {}

.social-links__link {
    text-decoration: none;
    color: var(--color-white);
}

.social-links__link:hover {
    color: var(--color-jb-green-1);
}

/* BOTTOM BAR */

.bottom-bar {}

.bottom-bar__container {
    padding: 23px 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    row-gap: 28px;
}

@media (min-width: 768px) {
    .bottom-bar__container {
        flex-direction: row;
    }
}

.bottom-bar__copyright {
    display: flex;
    align-items: center;
    column-gap: 14px;
    font-size: 14px;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .bottom-bar__copyright {
        justify-content: flex-start;
    }
}

.bottom-bar__legal-links {}

.bottom-bar--grey {
    background-color: #575765;
    color: var(--color-white);

    a {
        color: var(--color-white);
    }
}

/* LEGAL LINKS */

.legal-links {}

.legal-links__list {
    display: flex;
    column-gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: column;
}

@media (min-width: 768px) {
    .legal-links__list {
        flex-direction: row;
    }
}

.legal-links__item {}

.legal-links__link {
    color: var(--color-black);
    font-size: 14px;
    line-height: 28px;
    text-decoration: none;
}

.legal-links__link--hyperlink:hover {
    color: var(--color-hyperlink);
}

.legal-links__link--green:hover {
    color: var(--color-jb-green-1);
}

@media (min-width: 768px) {
    .legal-links__link {
        line-height: 21px;
    }
}

/* BUTTON */

.button {
    padding: 16px 24px;
    text-transform: uppercase;
    border: 2px solid;
    border-color: light-dark(var(--color-jb-green-1), var(--color-white));
    color: light-dark(var(--color-jb-green-1), var(--color-white));
    border-radius: 100px;
    text-decoration: none;
    background-color: transparent;
    font-size: 20px;
    font-weight: var(--font-weight-semi-bold);
    line-height: 24px;
    display: inline-flex;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
    align-items: center;
}

.button:hover {
    background-color: light-dark(var(--color-jb-green-1), var(--color-jb-green-1));
    color: light-dark(var(--color-white), var(--color-white));
    border-color: light-dark(var(--color-jb-green-1), var(--color-jb-green-1));
}

.button:disabled,
.button[disabled],
.button--disabled {
    pointer-events: none;
}

.button--primary {
    background-color: var(--color-jb-green-1);
    color: var(--color-white);
}

.button--disabled {
    color: var(--color-jb-green-3);
    border-color: var(--color-jb-green-3);
}

.button--secondary {
    color: var(--color-jb-gray-4);
    border-color: var(--color-jb-gray-4);
}

.button--small {
    padding: 5px 20px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: var(--font-weight-bold);
}

.button--xsmall {
    padding: 5px 20px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: var(--font-weight-bold);
}

.button--medium {
    font-size: 14px;
    line-height: 16.8px;
    font-weight: var(--font-weight-bold);
}

.button--multiline {
    white-space: normal;
    max-width: 160px;
    text-align: center;
}

@media (max-width: 991px) {
    .button--multiline {
        max-width: 100%;
    }
}

.button--inline {
    border: none;
    font-weight: var(--font-weight-bold);
    color: var(--color-jb-green-1);
    background-color: transparent;
    text-align: right;
}

.button--inline-qualis-desktop {
    border: none;
    font-weight: var(--font-weight-bold);
    color: var(--color-jb-green-1);
    background-color: transparent;
    text-align: left;
}

.button--innio {
    font-family: INNIOHeadline, sans-serif;
    font-size: 12px;
    line-height: 14px;
    font-weight: 700;
    background-color: var(--color-innio-green-1);
    color: var(--color-black);
    text-transform: uppercase;
    border-color: var(--color-innio-green-1);
}

.button--innio:hover {
    background-color: var(--color-innio-green-1);
    border-color: var(--color-innio-green-1);
    color: var(--color-black);
}

.button--mobile-scale {
    font-size: 20px;
    line-height: 1.2;
    font-weight: var(--font-weight-semi-bold);
}

@media (max-width: 532px) {
    .button {
        font-size: 14px;
        line-height: 120%;
        padding: 16px 20px;
    }

    .button--small {
        padding: 5px 20px;
        font-size: 14px;
        line-height: 120%;
    }

    .button--xsmall {
        padding: 5px 20px;
        font-size: 12px;
        line-height: 1.2;
    }
    
    .button--responsive {
        padding: 5px 20px;
        font-size: 12px;
        line-height: 1.2;
    }

    .button--full-width {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .button--mobile-scale {
        padding: 5px 20px;
        font-size: 12px;
        font-weight: var(--font-weight-bold);
    }
}

.button--cta {
    font-family: INNIORegular, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    padding: 10px 10px 10px 20px;
    display: inline-flex;
    align-items: center;
    column-gap: 9px;
    color-scheme: light;
    background-color: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
    text-transform: none;

    &:hover {
        background-color: var(--color-hyperlink);
        border-color: var(--color-hyperlink);
        color-scheme: dark;
    }
}

.button--action {
    padding: 15.4px;
}

.button--active {
    border: 2px solid var(--color-jb-green-1);
    color: var(--color-jb-green-1);
}

@media (max-width: 532px) {
    .button--hide {
        display: none;
    }
}

.wp-block-button a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
}
.wp-block-button a::after {
    display: inline-flex;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='15.56' height='12.64' viewBox='0 0 22 19' fill='none' xmlns='http://www.w3.org/2000/svg' class='button__icon'%3E%3Cpath d='M19.3382 9.85565H0.776031' style='stroke:var(--icon-color-button,%235102FF)' stroke-width='2.5' stroke-miterlimit='10'%3E%3C/path%3E%3Cpath d='M11.4869 1.84717L20.2412 10.7455' style='stroke:var(--icon-color-button,%235102FF)' stroke-width='2.5' stroke-miterlimit='10'%3E%3C/path%3E%3Cpath d='M20.2412 8.99124L11.4869 17.8641' style='stroke:var(--icon-color-button,%235102FF)' stroke-width='2.5' stroke-miterlimit='10'%3E%3C/path%3E%3C/svg%3E");
    height: 16px;
    width: 16px;
    background-color: var(--innio-hyperlink-2);
    border: var(--innio-hyperlink-2);
    background-size: 10px;
    border-radius: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.wp-block-button a::after:hover {
    background-color: var(--color-white);
    border: var(--color-white);
}

/* INDICATOR ICON */

.indicator-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.indicator-icon--cta {
    background-color: light-dark(var(--color-hyperlink), var(--color-white));
    border-radius: 50%;
}

.indicator-icon--cta path {
    stroke: light-dark(var(--color-white), var(--color-hyperlink));
}

/* HERO BLOCK */

.hero-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 532px;
    --background-image: none;
    background: var(--background-image);
    color: var(--color-white);
    background-position: center center;
    background: linear-gradient(89.96deg, rgba(0, 0, 0, 0.75) 11.39%, rgba(0, 0, 0, 0) 75.92%), var(--background-image);;
}

.hero-block--margin {
    margin-top: 56px;
}

@media (max-width: 532px) {
    .hero-block--margin {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .hero-block {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.25) 40.5%, rgba(0, 0, 0, 0) 93%), var(--background-image);
        background-position: center;
    }
}

.hero-block__container {
    padding: 0 0 30px 0;
}

.hero-block__title {
    font-size: 40px;
    line-height: 48px;
    margin-top: 270px;
    margin-bottom: 16px;
    text-underline-offset: 0.5rem;
}

@media (min-width: 768px) {
    .hero-block__title {
        font-size: 80px;
        line-height: 96px;
        margin-top: 60px;
        margin-bottom: 32px;
        text-underline-offset: 1rem;
    }
}

.hero-block__subtitle {
    font-size: 24px;
    line-height: 1.4166667;
}

@media (min-width: 1200px) {
    .hero-block__subtitle {
        font-size: 30px;
        line-height: 1.5;
    }
}

.card {
    border: none;
    background-color: var(--color-jb-gray-5);
    border-radius: 0;
}

.card:has(table) {
    background-color: var(--color-white);
}

.card--white {
    background-color: var(--color-white);
}

.card--gray {
    background-color: var(--color-jb-gray-5);
}

.card__image--width {
    width: auto;
}

.card__image--gif {
    height: 100%;
}

@media (max-width: 532px) {
    .card__image--responsive {
        max-height: 188px;
    }
}

.card--aligned {
    text-align: left;
}

@media (max-width: 768px) {
    .card--aligned {
        text-align: center;
    }
}

@media (max-width: 532px) {
    .card__image--small {
        width: 230px;
    }
}


.card--horizontal video {
    height: 100%;
    object-fit: cover;
}

.card--horizontal .card__image {
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .card--horizontal .card__body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }
}

.card-body > *:last-child {
    margin-bottom: 0;
}

.card--horizontal .card__body {
    padding: 25px 20px;
}

.card__body a {
    text-decoration: none;
    color: var(--color-jb-green-1);
    font-weight: 600;
}

.card__body h3,
.card__body p,
.card__body ul {
    margin-bottom: 24px;
}

.card__body h4 {
    margin-bottom: 16px;
}

.card__body .truncate-2-lines, 
.card__body .truncate-3-lines {
    margin: 0;
}

.truncate-2-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    max-width: 100%;
}

.truncate-3-lines {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    max-width: 100%;
}

.truncate-3-lines.hide-in-card {
    display: none;
}

.truncate-3-lines--fixedHeight {
    height: 102px;
}
@media (max-width: 532px) {
    .truncate-3-lines--fixedHeight {
        height: 90px;
    }
}

.truncate-2-lines--fixedHeight {
    height: 68px;
}
@media (max-width: 532px) {
    .truncate-2-lines--fixedHeight {
        height: 60px;
    }
}

.popover__content .truncate-2-lines,
.popover__content .truncate-3-lines {
    -webkit-line-clamp: unset;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    display: block;
    height: auto;
}

@media (min-width: 768px) {
    .card--horizontal.card--reverse > .row {
        flex-direction: row-reverse !important;
    }

    .card--horizontal > .row {
        flex: 1 1 auto;
    }

    .card--horizontal .card__body {
        padding: 32px;
    }
}

.card__title {
    padding: 5px 16px 0 16px;
}

.card__cta {
    margin-top: auto;
    padding: 0 16px 16px 16px;
}

/* CONTENT SECTION */

.content-section {
    margin: 32px 0 64px 0;
}

@media (max-width: 768px) {
    .content-section--padding {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 768px) {
    .content-section {
        margin: 32px 0 100px 0;
    }
}

.my-team__content-section--actions-column {
    display: flex;
}

.my-team__content-section--actions-column {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 40px;
}

.content-section--filters {
    flex-direction: row;
    align-items: center;
}

@media (max-width: 767px) {
    .my-team__content-section--actions-column {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
    }
    
    .content-section--filters {
        flex-direction: column;
        gap: 8px;
    }
}

.content-section--select {
    width: 100%;
    text-align: center;
    text-align-last: center;
}

@media (min-width: 992px) {
    .content-section--dropdown {
        align-self: center;
    }
}

@media (max-width: 375px) {
    .content-section--dropdown {
        flex-direction: column;
        row-gap: 8px;
    }
}

.content-section--position {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.content-section--actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    row-gap: 8px;
    align-items: center;
}

@media (max-width: 532px) {
    .content-section--actions {
        flex-direction: column;
        row-gap: 8px;
        align-items: flex-start;
    }
}

@media (max-width: 991px) {
    
    .content-section--position {
        flex-direction: column;
        align-items: flex-start!important;
        gap: 16px;
    }
}

@media (max-width: 532px) {
    
    .content-subsection--position {
        flex-direction: column;
        align-items: normal;
        gap: 16px;
        width: 100%;
    }
    .content-subsection--position > *{
        width: 100%;
    }
}

@media (max-width: 532px) {
    .content-section--actions {
        margin-bottom: 16px;
    }

    .section--inline {
        flex-direction: row;
        align-items: start;
    }
    
    .section--inline h2 {
        max-width: 180px;
    }
}

.content-section__headline {
    margin-bottom: 27px;
}

.content-section__headline--green {
    color: var(--color-jb-green-1);
}

.content-section__headline--mb {
    margin-bottom: 64px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .content-section__headline--maxWidth {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .content-section__headline--mb {
        margin-bottom: 40px;
    }
}

@media (max-width: 532px) {
    .content-section__headline--mb {
        margin-bottom: 24px;
    }
}

.section-mb-large { 
    margin-bottom: 120px; 
}

.section-mb-medium { 
    margin-bottom: 100px; 
}

@media (max-width: 532px) {
    .section-mb-medium {
        margin-bottom: 64px;
    }
}

.section-mb-small {
    margin-bottom: 80px; 
}

@media (max-width: 532px) {
    .section-mb-small {
        margin-bottom: 40px;
    }
}

.section-mb-xsmall { 
    margin-bottom: 40px; 
}

.section-mt-medium { 
    margin-top: 100px; 
}

.section-mt-small { 
    margin-top: 80px; 
}

@media (max-width: 532px) {
    .section-mt-small {
        margin-top: 40px;
    }
}

.section-mt-xsmall { 
    margin-top: 64px; 
}

@media (max-width: 767px) {
    .section-mb-large {
        margin-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .section-mt-xsmall {
        margin-top: 40px;
    }
}

@media (max-width: 532px) {
    .section-mt-xsmall {
        margin-top: 24px;
    }
}

/* CARD SLIDER */

.card-slider .card {
    height: 100%;
}

.card-slider__container {
    padding: 0;
}

.card-slider__viewport {
    padding-top: 8px;
    padding-right: 8px;
}

.card-grid .card {
    height: 100%;
}

.card-grid .card__image--cover-2x1,
.card-slider .card__image--cover-2x1 {
    aspect-ratio: 2/1;
    object-fit: cover;
}

.card-grid--row {
    row-gap: 24px;
}

.card-grid--gapped {
    row-gap: 64px;
}

.card-grid--mt {
    margin-top: 40px;
}

@media (max-width: 532px) {
    .card-grid--row {
        row-gap: 8px;
    }

    .card-grid--gapped {
        row-gap: 24px;
    }

    .card-grid--mt {
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    .card-slider__content {
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* CAROUSEL */

.embla {
    position: relative;
}

.embla__viewport {
    overflow: hidden;
}

.embla__container {
    display: flex;
}

.embla__slide {
    flex: 0 0 100%;
    min-width: 0;
}

.embla__slide .table tr:first-child{
    height: 60px;
}
.embla__slide .table tr:first-child th,
.embla__slide .table tr:first-child td{
    padding: 0 16px;
    vertical-align: middle;
}

.embla__prev,
.embla__next {
    position: absolute;
    top: 50%;
    border: none;
    background-color: transparent;
    width: 14px;
    height: 24px;
    background-color: var(--color-white);
}

.embla__prev {
    left: -30px;
}

.embla__next {
    right: -30px;
}

@media (max-width: 532px) {
    .embla__prev {
        left: -20px;
    }
    
    .embla__next {
        right: -20px;
    }
}

.swipe_icon {
    color: var(--color-jb-green-1);
}

.table__embla--right {
    top: 17px;
    right: -23px;
}

.table__embla--left {
    top: 17px;
    left: -23px;
}

@media (min-width: 768px) {
    .embla--column-on-desktop {
        .embla__container {
            gap: 34px;
        }

        .embla__slide {
            flex: 0 0 calc((100% - 68px) / 3);
        }

        .embla__slide > *{
            height: 100%;
        }

        .embla__prev,
        .embla__next {
            display: none;
        }
    }
}

.embla--carousel .embla__container {
    gap: 24px;
}

@media (min-width: 768px) {
    .embla--carousel .embla__slide {
        flex: 0 0 calc((100% - 24px) / 2); /* 2 slides */
    }
}

@media (min-width: 1000px) {
    .embla--carousel .embla__slide {
        flex: 0 0 calc((100% - 48px) / 3); /* 3 slides */
    }
}

@media (min-width: 1200px) {
    .embla--carousel .embla__slide {
        flex: 0 0 calc((100% - 72px) / 4); /* 4 slides */
    }
}

@media (min-width: 1200px) {
    .embla-buttons--hide {
        display: none;
    }
}

.stage {
    color-scheme: dark;
    position: relative;
}

.stage__image {
    aspect-ratio: 375 / 728;
    object-fit: cover;
}

@media (min-width: 768px) {
    .stage__image {
        aspect-ratio: 728 / 1024;
    }
}

@media (min-width: 992px) {
    .stage__image {
        aspect-ratio: 1440 / 940;
    }
}

.stage__text-panel {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 11%, rgba(0, 0, 0, 0) 73%);
}

@media (max-width: 768px) {
    .stage__text-panel {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.25) 40.5%, rgba(0, 0, 0, 0) 93%);
    }
}

.stage__logo-banner {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    min-width: 322px;
}

.stage__headline {
    font-family: INNIOHeadline, sans-serif;
    color: var(--color-white);
    text-decoration: none;
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 38px;
}

@media (min-width: 1400px) {
    .stage__headline {
        font-size: 80px;
        line-height: 96px;
        margin-bottom: 86px;
    }
}

.stage__cta-button {
    margin-bottom: 52px;
}

@media (min-width: 1400px) {
    .stage__cta-button {
        margin-bottom: 96px;
    }
}

.embla__slide--spacer {
    display: none;
}

@media (min-width: 375px) and (max-width: 767px) {
    .embla__slide--spacer {
        display: block;
        flex: 0 0 45%; 
        pointer-events: none;
    }
}

/* BREADCRUMB */

.breadcrumb {
    padding: 27px 0px 9px;
    margin-bottom: 0;
}

.breadcrumb-item {
    font-size: 12px;
    line-height: 18px;
    font-weight: var(--font-weight-base);
    --bs-breadcrumb-item-active-color: var(--color-black);
}

.breadcrumb-link {
    font-size: 12px;
    line-height: 18px;
    font-weight: var(--font-weight-base);
    text-decoration: none;
    color: var(--color-black);
}

@media (min-width: 768px) {
    .breadcrumb {
        padding: 56px 0 8px;
    }
}

@media (max-width: 532px) {
    .breadcrumb {
        display: none;
    }
}

/* FORM */

.form-row {
    display: flex;
    gap: 20px;
}

.form-field-spacing {
    margin-bottom: 16px;
}

.form-field-spacing--mb {
    margin-bottom: 40px;
}

@media (max-width: 532px) {
    .form-field-spacing--mb {
        margin-bottom: 16px;
    }
}

.form-last-row {
    margin-bottom: 0;
}

@media (max-width: 532px) {
    .form-row {
        flex-direction: column;
        gap: 8px;
    }
}

.form__separator {
    margin: 43px 0;
    border: 2.5px solid var(--color-jb-gray-5);
}

.table-list .form__separator {
    margin: 12px 0 24px 0;
}

.form__separator--mobile, .col__separator {
    display: none;
}

@media (max-width: 532px) {
    .col__separator {
        display: block;
    }

    .form__separator--mobile {
        border: 2.5px solid var(--color-jb-gray-5);
        display: block;
        margin: 16px 0;
    }
}


.form__title {
    margin-bottom: 24px;
}

.form-column {
    flex-direction: column;
    gap: 0
}

.form__footer {
    color: var(--color-jb-gray-6);
}

.form__cta {
    margin-top: 40px
}

.form .row:last-of-type {
    margin-bottom: 0;
}

.form__label {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .form__label {
        margin-bottom: 0;
    }
}

.form__headline {
    margin-left: 0%;
}

@media (min-width: 768px) {
    .form__headline {
        margin-left: 25%;
    }
}

.form__conditional {
    width: 100%;
}

@media (min-width: 992px) {
    .form__conditional {
        width: 80%;
        margin-left: auto;
    }
}

.form__check-label {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-left: 8px;
}

.form__input,
.form__textarea {
    border: 1px solid var(--color-jb-gray-6);
    border-radius: 0;
}

.form__textarea--responsive {
    height: 40px;
    border-radius: 0;
}

@media (max-width: 768px) {
    .form__textarea--responsive {
        height: 70px;
    }
}

.form__input--small {
    width: 45px;
    margin-left: 8px;
}

.radio__check {
    margin: 0;
    height: 27px;
    width: 27px;
    align-self: center;
}

.radio__check--gray {
    border: 2px solid var(--color-jb-gray-6)
}

@media (max-width: 532px) {
    .radio__check {
        align-self: flex-start;
    }
}

.form__input::placeholder,
.form__textarea::placeholder,
.form-input__table::placeholder,
.form__textarea--responsive::placeholder,
.input-suffix::placeholder {
    color: var(--color-jb-gray-6);
}

.form__input--visible::placeholder {
    color: var(--color-jb-gray-6);
}

@media (min-width: 768px) {
    .form__input--hidden::placeholder,
    .form__textarea::placeholder {
        visibility: hidden;
    }
}

.form__input--color,
.form__input--color:focus {
    color: var(--color-jb-gray-4);
}

.form-control:focus, .form-select:focus {
    box-shadow: none;
}

.radio__check:checked, .radio__check:focus {
    background-color: var(--color-jb-green-1);
    background-image: none;
    border: none;
    box-shadow: none;
}

.form__check--radio {
    display: flex;
    align-items: center;
}

@media (max-width: 532px) {

    .form-column {
        padding-top: 8px;
        row-gap: 8px;
    }

    .form__check--radio {
        flex-direction: column;
        align-items: flex-start;
    }

    .form__input--small {
        margin: 0;
    }

}

/* hide spinners in browser in input field of type 'number' */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

/* ERRORS */

.error {
    border-color: var(--color-red);
    color: var(--color-red);
}

.error--input {
    border-color: var(--color-red);
}

.required-fields-message {
    color: var(--color-red);
    font-size: 0.875rem;
    line-height: 1.714285;
    text-align: left;
    margin-bottom: 40px;
}

.error-message {
    color: var(--color-red);
    margin: 8px 0 0 0;
    text-align: end;
    font-size: 0.875rem;
    line-height: 1.714285;
}

@media (max-width: 532px) {
    .error-message {
        text-align: center;
    }
}

.textarea.error::placeholder,
.form__input.error::placeholder,
.form__textarea.error::placeholder,
.form-input__table.error::placeholder,
.form__textarea--responsive.error::placeholder,
.form__input--visible.error::placeholder {
    color: var(--color-red);
}

.checkbox-round:not(:checked).error {
    border: 2px solid var(--color-red);
}

.border-danger {
    border: 2px solid var(--color-red);
}

/* DOT LINE */

.dot-line {
    display: none;
}

.dot-line--hide {
    display: none;
}

@media (min-width: 768px) {
    .dot-line {
        display: flex;
        justify-content: center;
    }

    .dot-line--hide {
        display: none;
    }
}

.dot-line svg {
    max-width: 1440px;
    width: 100%;
    height: auto;
}

/* NAV MENU */

.btn-close:focus, .btn-close:active {
    box-shadow: none;
}
    
.btn-close {
    width: 18px;
    height: 18px;
    opacity: 1;
}

.btn-close:hover {
    background-image: url("../img/icons/plus.svg");
    transform: rotate(45deg);
    font-size: 25px;
    opacity: 1;
}

.nav-menu__greeting {
    text-transform: uppercase;
    font-weight: var(--font-weight-semi-bold);
}

.nav-menu__header {
    border-bottom: 2px solid var(--color-jb-gray-5);
}

.nav-menu__header .country-language-selection__icon {
    --color-globe: var(--color-black);
}

.nav-menu__header .country-language-selection__select select {
    color: var(--color-black);
}

.nav-menu__nav-item {
    border-bottom: 2px solid var(--color-jb-gray-5);
}

.nav-menu__link {
    color: var(--color-black);
    text-transform: uppercase;
    font-weight: var(--font-weight-semi-bold);
    font-size: 16px;
    line-height: 25px;
}

.nav-menu__link:hover {
    color: var(--color-jb-green-1);
}

.offcanvas.offcanvas-end{
    transform: none;
}

@media (min-width: 1400px) {
    .offcanvas.offcanvas-end  {
      right: calc((100% - 1320px) / 2);
    }
}

.nav-menu__nav-item:last-child {
    border: none;
}

/* TABLE */

@media (min-width: 992px) and (max-width: 1199px) {
    table td:first-child.table--fixedFirstColumn {
        max-width: 240px;
        width: 240px;
    }
      
    table td:first-child.table--fixedFirstColumn select {
        max-width: 100%;
        width: auto; 
        min-width: 40px;
        text-overflow: ellipsis;
    }
}

.table>:not(caption)>*>* {
    padding: 16px;
}

@media (min-width: 991px) {
    .table>:not(caption)>*>*.table--padding{
        padding: 8px;
    }
}

@media (min-width: 1400px) {
    .table>:not(caption)>*>*.table--padding{
        padding: 16px;
    }
}

.table-custom-spacing>:not(caption)>*>* {
    padding: 10px;
    width: 120px; 
}

.table__row {
    height: 64px;
}

th {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}

@media (max-width: 532px) {
    th {
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
    }
}

td, th {
    border: none;
}

@media (max-width: 768px) {
    .table__row  {
      height: auto;
    }
}

.table__title--show-mobile {
    display: block
}

@media (min-width: 992px) {
    .table__title--show-mobile {
      display: none;
    }
}

.table--colWidth {
    width: 160px;
}

@media (min-width: 1400px) {
    .table--colWidth {
        width: auto;
    }
}

.table a {
    text-decoration: none;
    color: #51B046;
    font-weight: 600;
}

.table {
    --bs-table-border-color: transparent;
}

.table--fixedSize {
    table-layout: fixed;
    width: 100%;
}

.table--fixedSize th:nth-child(2),
.table--fixedSize td:nth-child(2),
.table--fixedSize th:nth-child(4),
.table--fixedSize td:nth-child(4) {
    width: 150px;
}

.table--fixedSize th:last-child,
.table--fixedSize td:last-child {
    width: 220px;
}

.table-row-highlight tbody tr:first-child {
    --bs-table-bg: var(--color-jb-gray-5);
}

table td:first-child,
table th:first-child {
    text-align: left;
}  

.form-input__table {
    display: inline;
    border: none;
    text-align: center;
    width: 200px;
    height: 24px;
}

.participant-row {
    border-style: hidden;
}

tr:last-child {
    border-color: transparent;
} 

.table__cell p {
    margin: 0;
    flex: 0 1 60%;
}

.table__cell {
    align-items: center;
}

.table__cell--transparent {
    --bs-table-striped-bg: transparent;
}

.table--alignCenter {
    text-align: center;
    align-content: center;
}

@media (max-width: 532px) {
    .hidden-row {
        display: none;
    }
    
    .table__cell {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.25rem;
    }
}

@media (max-width: 767px) {

    .table__row {
        display: flex;
    }

    .table__cell {
        height: fit-content;
        display: flex;
        flex-direction: column;
    }
    
    .table__mobile-view {
        width: 100%;
        display: block;
        align-content: flex-start;
        text-align: left;
    }
}

.mobile-view--show, .mobile-view--card { 
    display: none;
}

.th--mobile-width {
    min-width: 160px;
}

@media (max-width: 375px) {
    .th--mobile-width {
        min-width: unset;
        word-wrap: normal;
    }
}

@media (max-width: 370px) {
    .th--mobile-width-profile {
        min-width: unset;
        word-wrap: normal;
    }
}

@media (max-width: 991px) {
    
    .desktop-view--show {
        display: none;
    }

    .mobile-view--hide {
        display: none;
    }
    
    .mobile-view--card {
        display: block;
        border: none;
        background-color: var(--color-jb-gray-5);
        border-radius: 0;
        margin-bottom: 24px;
    }
    
    .mobile-view--show { 
        display: block;
    }
}

@media (min-width: 768px) {
    .table-footer {
        display: table-row-group;
    }
    .footer-item {
        text-align: end;
    }
    .footer-item--first {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .table-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-item {
        display: block;
        width: 100%;
    }
}

.participant--mobile {
    width: 100%;
}

@media (max-width: 991px) {
    .participant-row--mobile{
        display: flex;
    }

    .mobile-view--show.participant--mobile {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
}

.table > :not(caption) > * > * {
    background-color: transparent;
}

@media (min-width: 992px) {
    .table--4row-striping tbody tr:nth-child(8n-7),
    .table--4row-striping tbody tr:nth-child(8n-6),
    .table--4row-striping tbody tr:nth-child(8n-5),
    .table--4row-striping tbody tr:nth-child(8n-4) {
      background-color: var(--color-jb-gray-5)
    }
}

@media (max-width: 767px) {
    .table--alignContentCenter {
        align-content: center;
    }
}

.table-mobile-2col,
.table-desktop-2col {
  display: none;
}

table.table-desktop-2col--show {
    display: block;
}

@media (max-width: 531px) {
  .table-mobile-2col {
    display: block;
  }
}

@media (min-width: 532px) {
  .table-desktop-2col {
    display: block;
  }
}

@media (max-width: 531px) {
  .modal__buttons--column {
    flex-direction: column;
  }
}

.table--mt {
    margin-top: 40px;
}

@media (max-width: 532px) {
    .table--mt {
        margin-top: 24px;
    }
}

/* TABLE GRID + TABLE from 1300px */

.table-grid>:not(caption)>*>* {
    padding: 10px;
}

.table-grid th, .table-grid td {
    font-size: 16px;
    line-height: 24px;
}

.table-cell--position {
    text-align: end;
}

@media (max-width: 1299px) {
    .show-card-grid {
        display: block;
    }

    .hide-card-grid {
        display: none;
    }
}

@media (min-width: 1400px) {
    .show-card-grid {
        display: none;
    }

    .hide-card-grid {
        display: block;
    }

    .table-cell--position {
        text-align: center;
    }
}

/* WORDPRESS TABLE */
.wp-block-table table {
    table-layout: fixed;
}

/* STATUS RED/GREEN */

.status {
    font-size: 14px;
    line-height: 14px;
    font-weight: var(--font-weight-semi-bold);
    border-radius: 22px;
    padding: 8px 12px;
    text-transform: uppercase;
    margin: 0;
    display: inline-block;
    white-space: normal;
}

.status--green {
    background-color: var(--color-jb-green-5);
    color: var(--color-jb-green-1);
}

.status--red {
    background-color: var(--color-red-2);
    color: var(--color-red);
}

.status--gray {
    background-color: var(--color-jb-gray-4);
    color: var(--color-gray);
}

.status--orange {
    background-color: var(--color-light-orange-25);
    color: var(--color-light-orange);
}

@media (max-width: 375px) {
    .status--fixedWidth {
        width: 100px;
        text-align: center;
        line-height: 120%;
    }
}

/* USER IDENTIFIER */

.user-identifier {
    display: flex;
    column-gap: 32px;
}

.user-identifier__greetings {
    font-weight: 600;
    display: none;
}

@media (min-width: 768px) {
    .user-identifier__greetings {
        display: block;
    }
}

.world-map {
    margin-bottom: 80px;
    display: none;
}

@media (min-width: 1200px) {
    .world-map {
        display: block;
    }
}

.world-map__container {
    position: relative;
}

.world-map-pin {
    position: absolute;
}

.world-map-pin__label {
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    padding: 5px 10px;
    background-color: var(--color-jb-green-1);
    color: var(--color-white);
    border-radius: 100px;
    margin-left: 6px;
    white-space: nowrap;
    display: none;
    pointer-events: none;
}

.world-map-pin--reverse .world-map-pin__label {
    transform: translateX(-100%);
    margin-left: 32px;
}

.world-map-pin:hover {
    z-index: 10;
}

.world-map-pin__icon:hover + .world-map-pin__label {
    display: block;
}

/* SEARCH */

.search-box {
    position: relative;
    border: 2px solid var(--color-jb-gray-4);
    padding: 6px 24px 6px 40px;
    width: 100%;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: var(--font-weight-bold);
}

.search-box__icon {
    position: absolute;
    left: 10px;
    top: 6px;
}

.search-box::placeholder {
    color: var(--color-jb-gray-6);
}

.search-box--active::placeholder {
    color: var(--color-jb-green-1);
}

.search-box--active,
.search-box:focus,
.search-box:active {
    border: 2px solid var(--color-jb-green-1);
    color: var(--color-jb-green-1);
    outline: none;
}

.search-box--active + .search-box__icon,
.search-box:focus + .search-box__icon,
.search-box:active + .search-box__icon {
    --icon-color-search: var(--color-jb-green-1);
}

[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    height: 20px;
    width: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%2351B046' stroke='%2351B046' stroke-width='2' d='M6 6L14 14M14 6L6 14'/%3E%3C/svg%3E");
    background-size: 20px 20px;
}

@media (max-width: 532px) {

    .search-box {
        padding: 5px 16px 5px 30px;
        font-size: 12px;
        line-height: 14.4px;
    }

    .search-box__icon {
        width: 15px;
        top: 1px;
        left: 12px;
    }

    .search-box:focus + .search-box__icon, .search-box:active + .search-box__icon {
        width: 17px;
    }
}

@media (max-width: 532px) {
    .search-box {
        width: 100%;
    }
}

@media (max-width: 532px) {
    .filter__section {
        flex-wrap: wrap;
        align-items: flex-start;
        /* row-gap: 16px; */
        row-gap: 8px;
    }
    
    .filter__section--row {
        flex-direction: row;
        align-items: center;
    }
}

/* SELECT FIELD */
tr > td:not(:first-child) .select-field {
    margin-top: 1rem;
}

@media (min-width: 992px) {
    tr > td:not(:first-child) .select-field {
        position: absolute;
        top: calc(50% - 8px);
        margin-top: 0;
    }
    .card-grid td .select-field {
        position: relative;
    }
}

.select-field {
    border: 2px solid var(--color-jb-gray-4);
    padding: 5px 25px 5px 20px;
    text-transform: uppercase;
    appearance: base-select;
}

form .select-field.form-select {
    padding: .375rem .75rem;
}

select,
::picker(select) {
  appearance: base-select;
}

::picker(select) {
  border: 1px solid var(--color-jb-green-1);
  border-radius: 9px;
}
.select-field::picker-icon {
  display: none;
}
.select-field option {
    background: var(--color-jb-green-1);
    color: var(--color-white);
    padding: 0 10px;
    border: none,
}
.select-field option::checkmark {
  display: none;
}
.select-field option:hover,
.select-field option:focus,
.select-field option:checked {
    background-color: var(--color-white);
    color: var(--color-jb-green-1);
}
.select-field option:disabled {
    opacity: 0.5;
    pointer-events: none;
}
@media (max-width: 532px) {
    .select--full-width {
        width: 100%!important;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
    }
}

.select-field > * {
    background-color: var(--color-jb-green-1);
    color: var(--color-white);
    text-align: left;
    font-weight: 700;
}

.select__dropdownButton {
    color: var(--color-jb-gray-4);
    border-radius: 100px;
    background-color: transparent;
}

.select__dropdownButton--maxWidth {
  max-width: 260px;
  white-space: normal;
  word-break: break-word;
}

@media (max-width: 390px) {
    .select__dropdownButton {
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

.select__dropdownButton:hover {
    color: var(--color-white);
}

.select__dropdownButton:not(:has(option:checked[value=""])) {
    color: var(--color-jb-green-1);
    border: 2px solid var(--color-jb-green-1);
    --bs-form-select-bg-img: url("data:image/svg+xml,<svg width='10' height='10' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M4 3.17634L7.11125 0.0214843L8 0.922689L4 4.97875L-3.97325e-08 0.922689L0.888749 0.0214841L4 3.17634Z' fill='%2351B046'/></svg>");
}

.select__dropdownButton:not(:has(option:checked[value=""])):hover {
    color: white;
    --bs-form-select-bg-img: url("data:image/svg+xml,<svg width='10' height='10' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M4 3.17634L7.11125 0.0214843L8 0.922689L4 4.97875L-3.97325e-08 0.922689L0.888749 0.0214841L4 3.17634Z' fill='white'/></svg>");
}

.select__form {
    border: 1px solid var(--color-jb-gray-6);
    border-radius: 0;
    color: var(--color-jb-gray-6);
    width: 100%;
    font-size: 16px;
    text-transform: none;
    background-size: 8px 5px;
    --bs-form-select-bg-img: url("data:image/svg+xml,<svg width='10' height='10' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M4 3.17634L7.11125 0.0214843L8 0.922689L4 4.97875L-3.97325e-08 0.922689L0.888749 0.0214841L4 3.17634Z' fill='%23CDCDCD'/></svg>");
}

.select__form--green {
    border: 2px solid var(--color-jb-green-1);
    --bs-form-select-bg-img: url("data:image/svg+xml,<svg width='10' height='10' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M4 3.17634L7.11125 0.0214843L8 0.922689L4 4.97875L-3.97325e-08 0.922689L0.888749 0.0214841L4 3.17634Z' fill='%2351B046'/></svg>");
    color: var(--color-jb-green-1);
    text-align: left;
}

.select__form.error {
    --bs-form-select-bg-img: url("data:image/svg+xml,<svg width='10' height='10' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M4 3.17634L7.11125 0.0214843L8 0.922689L4 4.97875L-3.97325e-08 0.922689L0.888749 0.0214841L4 3.17634Z' fill='%23E84133'/></svg>");
    border-color: var(--color-red);
    color: var(--color-red);
}

.select__form:not(:has(option:checked[value=""])) {
    color: black;
}

.select-field.select-field--green {
    border: 2px solid var(--color-jb-green-1);
    border-radius: 100px;
    color: var(--color-jb-green-1);
    background-size: 8px 5px;
    --bs-form-select-bg-img: url("data:image/svg+xml,<svg width='10' height='10' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M4 3.17634L7.11125 0.0214843L8 0.922689L4 4.97875L-3.97325e-08 0.922689L0.888749 0.0214841L4 3.17634Z' fill='%2351B046'/></svg>");
}

.select-field.select-field--green > * {
    background-color: var(--color-jb-green-1);
    color: var(--color-white);
    text-align: left;
}

@media (max-width: 532px) {
    .select-wrapper {
        padding-top: 8px;
    }
}

.select__dropdownButton:not(:has(option:checked[value=""])) {
    color: var(--color-jb-green-1);
}

.select__dropdownButton {
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    text-transform: uppercase;
    background-size: 8px 5px;
    --bs-form-select-bg-img: url("data:image/svg+xml,<svg width='10' height='10' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M4 3.17634L7.11125 0.0214843L8 0.922689L4 4.97875L-3.97325e-08 0.922689L0.888749 0.0214841L4 3.17634Z' fill='%23CDCDCD'/></svg>");
}

.select__dropdownButton--small {
    font-size: 12px;
    line-height: 1.2;
    font-weight: var(--font-weight-bold);
}

.select__dropdownButton:hover {
    background-color: var(--color-jb-green-1);
    border: 2px solid var(--color-jb-green-1);
    color: var(--color-white);
    outline: none;
    box-shadow: none;
    background-size: 8px 5px;
    --bs-form-select-bg-img: url("data:image/svg+xml,<svg width='10' height='10' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M4 3.17634L7.11125 0.0214843L8 0.922689L4 4.97875L-3.97325e-08 0.922689L0.888749 0.0214841L4 3.17634Z' fill='white'/></svg>");
}

.select__dropdownButton--small {
    font-size: 12px;
    line-height: 1.2;
    font-weight: var(--font-weight-bold);
}

.w-100-sm {
    width: auto;
}

@media (max-width: 532px) {
    .select__dropdownButton--responsive {
        font-size: 12px;
        line-height: 1.2;
        font-weight: var(--font-weight-bold);
    }
    
    .w-100-sm {
        width: 100%;
    }
}

.select-group {
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

@media (max-width: 991px) {
    .select-group {
        flex-direction: column;
        gap: 8px;
        align-items: normal;
    }
}

/* ACCORDION */
.accordion__group {
    gap: 120px;
    margin-bottom: 1rem;
}

.accordion__header {
    font-weight: var(--font-weight-bold);
}

.accordion__header, .accordion__text{
    width: 90%;
    color: var(--color-black);
    padding-bottom: 24px;
}

.accordion__text a {
    color: var(--color-jb-green-1);
    font-weight: bold;
    text-decoration: none;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
}

.accordion-button:focus, .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.accordion-item__border, .accordion-flush>.accordion-item:last-child {
    border-bottom: 1px solid var(--color-jb-gray-4);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("../img/icons/minus.svg");
}

.accordion-button::after {
    background-image: url("../img/icons/plus.svg");

}

@media (max-width: 375px) {

    .accordion__group {
        margin: 0;
    }
}

/* INFO BLOCK */

.info-block {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.info-block h3 {
    margin: 0
}

.info-block__icon {
    align-content: center;
    height: 78px;
    width: auto;
}

.info-block--order {
    order: 0;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    justify-content: space-between;
}

.info-block__text {
    padding-left: 40px;
}

@media (max-width: 767px) {
    .info-block {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }

    .info-block__text {
        order: 1;
        padding: 0;
    }

    .info-block__images {
        flex-direction: column;
        order: 2;
        row-gap: 24px;
    }
}

@media (max-width: 767px) {

    /* Dynamically change order for the elements in info block */
    .info-block--order[data-order="2"] {
        order: 2;
    }
    .info-block--order[data-order="3"] {
        order: 3;
    }
    .info-block--order[data-order="4"] {
        order: 4;
    }
}

/* Nav tab */

.nav-link--base {
    color: var(--color-black);
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    text-align: center;
}

.nav-tabs .nav-link  {
    border: none;
    border-bottom: 3px solid var(--color-jb-gray-4);
    margin-bottom: 0;
    padding: 16px;
}

.nav-link--width {
    width: 180px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .nav-link--width {
        width: 173px;
    }
}

.nav-link--base:hover, .nav-link--base:focus {
    --bs-nav-tabs-link-hover-border-color: var(--color-jb-gray-4);
    border-bottom: 3px solid var(--color-jb-green-1);
    color: var(--color-jb-green-1);
}

.nav-tabs .nav-link.active {
    border-bottom: 3px solid var(--color-jb-green-1);
    color: var(--color-jb-green-1);
}

@media (min-width: 768px) {
    .nav-tabs {
        justify-content: center;
        border: none;
    }
}

@media (max-width: 767px) {

    .nav-tabs--scroll {
        border: none;
        overflow-x: auto;
        white-space: nowrap;
        display: flex;
        flex-wrap: nowrap; 
        scroll-behavior: smooth;
    }

    .nav-tabs--scroll::-webkit-scrollbar {
        display: none;
    }

    .nav-tabs--scroll .nav-item {
        flex-shrink: 0;
    }

    .nav-tabs--scroll .nav-link {
        white-space: nowrap;
    }
}

.tab-slider {
    padding: 0;
}

/* TAB SLIDER BUTTONS */

.tab-slider__prev {
    top: 5%;
    left: 15px;
}

.tab-slider__next {
    top: 5%;
    right: 15px;
}

@media (min-width: 768px) {
    .tab-slider__prev,
    .tab-slider__next {
        display: none;
    }
}

/* MODAL */

.modal__content {
    padding: 40px;
    border-radius: 0;
}

@media (max-width: 532px) {
    .modal__content {
        padding: 40px 16px;
    }

    .modal-dialog {
        margin-left: 0;
        margin-right: 0;
    }
}

.modal__title {
    margin-bottom: 0px;
}

.modal__close {
    background-color: transparent;
    background-repeat: no-repeat;
    border: none;
    padding: 0;
    height: 20px;
    width: 20px;
    position: absolute;
    right: 8px;
    top: 8px;
    z-index: 10;
}

.modal__close:focus, .modal__close:active {
    box-shadow: none;
}

@media (min-width: 1200px) {
    .modal--xl {
        max-width: 1296px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .modal--xl {
        max-width: 936px;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .modal--xl {
        max-width: 720px;
    }
}

.modal--default, .modal--large {
    max-width: 80vw;
}

@media (min-width: 1200px) {
    .modal--large {
        max-width: 1100px;
    }
    
    .modal--default {
        max-width: 850px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .modal--large {
        max-width: 900px;
    }
}

@media (max-width: 532px) {
    .modal--default, .modal--large {
        max-width: 100%;
    }
}

.modal-header {
    border: none;
    padding: 0;
}

.modal-body{
    padding: 0;
}

.modal-body p {
    font-weight: var(--font-weight-base);
    width: 100%;
}

.modal-body p.bold {
    font-weight: var(--font-weight-bold);
}

.modal-buttons {
    display: flex;
    gap: 16px;
}

@media (max-width: 532px) {
    .container--padding {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 767px) {
    .container--padding {
        padding-left: 16px;
        padding-right: 16px;
    }
}

span a {
    text-decoration: none;
    color: var(--color-jb-green-1);
    font-weight: 600;
}

.text-end span.break-before {
    display: block;
}

/* COOKIES */

.cookie__modal {
    padding: 38px;
    border: none;
}

@media (max-width: 375px) {
    .cookie__modal {
        padding: 20px 12px;
    }
}

.cookie__footer {
    border: none;
    justify-content: center;
    padding: 0;
    margin-top: 80px;
    gap: 16px;
}

@media (max-width: 768px) {
    .cookie__footer {
        flex-direction: column;
        margin-top: 40px;
    }
}

/* TEXTAREA */

.textarea {
    border-radius: 0;
    border: 1px solid var(--color-jb-gray-6);
    height: 216px;
}

.textarea::placeholder {
    color: var(--color-jb-gray-4);
    font-size: 16px;
    line-height: 24px;
}

/* RADIO BUTTON */

.form__check-label a {
    text-decoration: none;
    color: var(--color-jb-green-1);
    font-weight: 600;
}

/* CHECKBOX */

.form-check-input[type=checkbox] {
    border-radius: 0;
    outline: none;
    box-shadow: none;
}

.checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-jb-green-1);
    border-radius: 0;
    outline: none;
    box-shadow: none;
    margin: 0;
}

.checkbox-round[type=checkbox] {
    border-radius: 100px;
    width: 27px;
    height: 27px;
    outline: none;
    box-shadow: none;
    margin-top: 0;
}

@media (max-width: 532px) {
    .checkbox-round[type=checkbox] {
        width: 20px;
        height: 20px;
    }
}

.checkbox-round:checked[type=checkbox],
.checkbox-round:active[type=checkbox],
.checkbox:checked[type=checkbox],
.checkbox:active[type=checkbox] {
    --bs-form-check-bg-image: none;
}

.checkbox-round:checked,
.checkbox:checked {
    background-color: var(--color-jb-green-1);
    border-color: var(--color-jb-green-1);
}

.checkbox-round:not(:checked) {
    border: 2px solid var(--color-jb-gray-6);
    background-color: var(--color-jb-gray-5);
}

.checkbox:not(:checked) {
    border: 2px solid var(--color-jb-green-1);
}

.checkbox--gray:not(:checked) {
    border: 2px solid var(--color-jb-gray-6);
}

@media (max-width: 375px) {
    .checkbox-round {
        width: 23px;
        height: 23px;
    }
}

.checkbox__label {
    display: inline;
}

/* CTA SECTION  */

.cta-section .description {
    max-width: 100%;
    font-weight: var(--font-weight-bold);
    margin: 0;
}

.cta-section > .button {
    align-self: center;
}

@media (min-width: 768px) {
    .cta-section .description {
        width: 70%;
    }
}

@media (max-width: 375px) {
    .cta-section {
        gap: 1.5rem
    }
}

@media (max-width: 532px) {
    .cta-section--column {
        flex-direction: column;
        row-gap: 16px;
    }
}

.no-break {
    white-space: nowrap;
}

/* SWITCH */

.form-switch {
    align-items: center;
    display: inline-flex;
    padding: 0;
    position: relative;
    margin: 0;
}

.form-switch .switch__input {
    background-color: var(--color-jb-gray-4);
    border-radius: 100px;
    box-shadow: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease-in-out;
    height: 30px;
    width: 90px;
}

.switch__label {
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    line-height: 14px;
    color: var(--color-white);
    text-transform: uppercase;
    position: absolute;
    padding-top: 5px;
    transition: left 0.3s ease-in-out;
}

.switch__input:not(:checked) + .switch__label {
    left: -8px;
    outline: none;
    box-shadow: none;
}

.switch__input:checked + .switch__label {
    left: -25px;
    outline: none;
    box-shadow: none;
}

.switch__input:checked {
    background-color: var(--color-jb-green-1);
}

.form-switch .switch__input:checked,
.form-switch .switch__input:focus {
    --bs-form-switch-bg: none
}

.switch__input::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: var(--color-jb-gray-2);
    border-radius: 50%;
    top: 3px;
    left: 4px;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.switch__input:checked::before {
    transform: translateX(58px);
    background-color: var(--color-jb-gray-6);
}

/*  CHECK MARK */

.check-mark {
    position: absolute;
    top: -8px;
    right: -8px;
}

/* POPOVER */
.popover__wrapper {
    position: relative;
}

.popover__content {
    z-index: 30;
    width: 350px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background-color: var(--color-white);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.28);
    top: -150px;
}

.popover__content--left {
    left: -200px
}

.popover__wrapper:hover .popover__content {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);
    box-shadow: 0 0 0 9999px #00000047;
}

@media (max-width: 768px) {
    .popover__content {
        width: auto;
        left: 0 !important;
        right: 0 !important;
    }
}

.wp-block-media-text {
    display: flex;
    flex-direction: column;
    column-gap: 16px;
}

.wp-block-media-text.has-media-on-the-right {
    flex-direction: column-reverse;
}

@media screen and (min-width: 768px) {
    .wp-block-media-text,
    .wp-block-media-text.has-media-on-the-right {
        flex-direction: row;
    }
}
/* CIRCLE */

.circle {
    border: 6px solid var(--color-jb-gray-6);
    border-radius: 50%;
    margin: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle--orange {
    border: 6px solid var(--color-light-orange);
}

.circle--red {
    border: 6px solid var(--color-red);
}

/* Circular Progress Bar */

.progress-text {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: fit-content;
    margin: auto;
    position: absolute;
    z-index: 1;
    text-align: center;
}

.progress-text--position {
    height: auto;
    align-content: center;
}

.circular-progress-container {
    width: 55px;
    height: 55px;
    position: relative;
}

.circular-progress-container--margin {
    margin-left: auto;
}

@media (min-width: 1400px) {
    .circular-progress-container--margin {
        margin: auto;
    }
}

@media (max-width: 991px) {
    .circular-progress-container {
        margin-right: 0
    }
}

.circular-progress {
    --size: 55px;
    --half-size: calc(var(--size) / 2);
    --stroke-width: 6px;
    --radius: calc((var(--size) - var(--stroke-width)) / 2);
    --circumference: calc(var(--radius) * pi * 2);
    --dash: calc((var(--percent) * var(--circumference)) / 100);
    --percent: 75;
  }
  
  .circular-progress circle {
    cx: var(--half-size);
    cy: var(--half-size);
    r: var(--radius);
    stroke-width: var(--stroke-width);
    fill: none;
    stroke-linecap: round;
  }
  
  .circular-progress circle.bg {
    stroke: #ddd;
  }
  
  .circular-progress circle.fg {
    transform: rotate(-90deg);
    transform-origin: var(--half-size) var(--half-size);
    stroke-dasharray: var(--dash) calc(var(--circumference) - var(--dash));
  }
  .circular-progress circle.fg.color-red {
    stroke: var(--color-red);
  }
  .circular-progress circle.fg.color-jb-green-1{
    stroke: var(--color-jb-green-1);
  }
  .circular-progress circle.fg.color-light-orange{
    stroke: var(--color-light-orange);
  }

.content__title--height {
    min-height: 68px;
}

@media (max-width: 532px) {
    .content__title--height {
        min-height: auto;
    }
}

.content__status {
    width: 130px;
    min-height: 48px;
    text-align: right;
    margin: 0;
}

.text__hint {
    color: var(--color-red);
}

/* CALENDAR */

.flatpickr-calendar {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.flatpickr-innerContainer {
    padding-top: 8px;
}

.flatpickr-weekdays {
    font-size: 12px;
    background-color: var(--color-jb-gray-5) !important;
    font-weight: bold;
    color: var(--color-dark-gray);
}

.flatpickr-day {
    font-size: 16px;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    color: var(--color-black);
}

.flatpickr-day.prevMonthDay {
    color: var(--color-jb-gray-3) !important;
}

.flatpickr-day.selected, .flatpickr-day.today {
    background: var(--color-jb-green-1) !important;
    color: var(--color-white) !important;
}

.flatpickr-day:hover {
    background: var(--color-jb-gray-6);
}

.flatpickr-day.disabled {
    color: var(--color-jb-gray-3) !important;
    background: none;
}

.flatpickr-current-month {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flatpickr-months {
    display: flex;
    justify-content: center; 
    align-items: center;
}

.flatpickr-prev-month {
    left: 10px;
}

.flatpickr-next-month {
    right: 10px;
}

.flatpickr-current-month input.cur-year  {
    font-size: 1.125rem;
    line-height: 1.5555556;
    font-weight: var(--font-weight-bold) !important;
    color: var(--color-black);
}

/* INPUT FIELD WITH PREFIX */

.input-group-text {
    background-color: transparent;       
    border-right: none;
    padding-right: 0;
    border-radius: 0;
}

.input-suffix {
    border-radius: 0;
    border-left: none;
    padding-left: 0;
}

/* set border color to input prefix also */
.input-group:focus-within .input-prefix {
    border-color: #86b7fe;
}

/* VERTICAL SCROLLBAR IN MODAL */

.scrollable-area {
    padding-top: 8px;
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-jb-gray-4) transparent;
    scroll-behavior: smooth;
}

/* WebKit (Chrome, Safari) */
.scrollable-area::-webkit-scrollbar {
    scrollbar-color: var(--color-jb-gray-4) transparent;;
    width: 8px;
}
.scrollable-area::-webkit-scrollbar-thumb {
    background-color: var(--color-jb-gray-4) transparent;
    border-radius: 3px;
}
.scrollable-area::-webkit-scrollbar-track {
    background: transparent;
}

.meta-bar {
    justify-content: space-between;
    margin-bottom: 16px;
}

@media (max-width: 992px) {
    .meta-bar {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

.modal__list > li {
    font-size: 16px;
}

/* MULTIPLE SELECT */

.choices.select__multiple {
    border: 2px solid var(--color-jb-green-1);
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,<svg width='10' height='10' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M4 3.17634L7.11125 0.0214843L8 0.922689L4 4.97875L-3.97325e-08 0.922689L0.888749 0.0214841L4 3.17634Z' fill='%2351B046'/></svg>");
    text-align: left;
    background-position: right 1rem center;
    background-size: 10px 10px;
}

.choices__inner {
    background-color: transparent !important;
    border: none !important;
    padding: .375rem .75rem !important;
    min-height: auto !important;
}

.choices__list--multiple .choices__item {
    border: 2px solid var(--color-jb-green-1) !important;
    background-color: transparent !important;
    border-radius: 50%;
    color: var(--color-jb-green-1) !important;
    font-size: 14px !important;
    font-weight: var(--font-weight-bold) !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.choices__input.choices__input--cloned::placeholder {
    color: var(--color-jb-green-1);
    font-size: 16px;
    margin: 0;
    padding: 0;

}

.choices.select__multiple.has-item .choices__input.choices__input--cloned::placeholder {
    opacity: 0;
}

input.choices__input {
    font-size: 14px;
    color: var(--color-jb-green-1);
    background-color: transparent;
    margin: 0;
    padding: 0;
}

.select__multiple.has-items::placeholder {
    display: none;
}

.hint__headline {
    margin-bottom: 16px;
}

@media (max-width: 532px) {
    .hint__headline {
        margin-bottom: 8px;
    }
}
.choices[data-type*=select-multiple] .choices__button, .choices[data-type*=text] .choices__button {
    background-image: url("data:image/svg+xml,<svg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M7.7876 5.9609L13.268 0.480451L15.0949 2.30727L9.61441 7.78772L15.0949 13.2682L13.268 15.095L7.7876 9.61454L2.30715 15.095L0.48033 13.2682L5.96078 7.78772L0.48033 2.30727L2.30715 0.480451L7.7876 5.9609Z' fill='%2351B046'/></svg>")!important;
    border-left: none!important;
    margin: 0 0 0 4px!important;
    opacity: 1!important;
    background-size: 10px!important;
    width: 10px;
}

/* POPOVER CARD SLIDER */

   #global-popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.28);
  }
  
  #global-popover-content {
    position: absolute;
    background: var(--color-white);
    width: 350px;
    box-shadow: 0 0 0 9999px #00000047;
    opacity: 0;
    visibility: hidden;
  }
  
  #global-popover[aria-visible="true"] #global-popover-content {
    opacity: 1;
    visibility: visible;
  }
  
  #global-popover-content .card__body {
    padding: 1rem;
  }
  
  #global-popover-content .card__image {
    width: 100%;
  }

/* TWO COLUMN LAYOUT */

.two-column-layout {
    max-width: 930px;
    margin-bottom: 100px;
}

@media (max-width: 532px) {
    .two-column-layout .right-column {
        text-align: right;
    }

    .two-column-layout {
        margin-bottom: 64px;
    }
}

.two-column-layout__title {
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .two-column-layout__title {
        padding-bottom: 60px;
    }
}
@media (max-width: 991px) {
    .switch-table-wrapper .container:has(.two-column-layout) {
        padding-right: calc(var(--bs-gutter-x) * .5)!important;
        padding-left: calc(var(--bs-gutter-x) * .5)!important;
    }
}
@media (max-width: 375px) {
    .two-column-layout__title {
        padding-bottom: 40px;
    }
}


/* Settings for MY TEAM PAGE */
    .order-controls {
        display: flex;
        row-gap: 40px;
        margin-bottom: 40px;
    }

    .w-100-xl {
        width: auto;
    }

    .search__hint {
        margin-bottom: 0;
    }

    .filter__section--marginTop {
        margin-top: 0;
    }

@media (max-width: 767px) {
    .order-controls {
            display: flex;
        flex-direction: column;
        row-gap: 0;
        }

        .filter__section--marginTop {
            margin-top: 8px;
        }

        .search__hint {
            margin-bottom: 40px;
    }
    
    .w-100-xl {
        width: 100%;
    }
}

    .my-team__buttons-section {
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 40px;
        flex-wrap: wrap;
        row-gap: 24px
    }
    
    @media (max-width: 1399px) {
        .my-team__buttons-section { 
            flex-direction: column;
            row-gap: 24px;
        }
    }

    .search__cta-buttons--order {
        justify-content: space-between;
        max-width: 100%;
    }
    
    @media (max-width: 991px) {
        .search__cta-buttons--order {
            flex-wrap: wrap;
        }

        .search__cta-buttons--order .button  { 
            width: 48%;
            text-align: center;
            display: block;
            text-align: center;
        }
    }

    @media (max-width: 767px) {
        .my-team__buttons-section { 
            margin-bottom: 24px;
            row-gap: 12px;
        }
    }
    
    @media (max-width: 532px) {
        .search__cta-buttons--order {
            flex-direction: column;
        } 

        .search__cta-buttons--order .button {
            width: 100%;
        }
    }
    
    .search__cta-buttons {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
    }
    
    @media (max-width: 532px) {
        .search__cta-buttons {
            flex-direction: column;
            align-items: start;
            row-gap: 8px;
            margin-bottom: 8px;
        }
    }
/* MY TRAINER TABLE */

.prerequisites-status {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.break-cell {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* UPLOAD SECTION */

.file-input-row__label {
    width: auto;
}

.file-input-row__field {
    width: 450px;
}

.tab-slider-controls--position {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

/* Embla Buttons My Trainer */

.tab-slider-controls--position .tab-slider__prev,
.tab-slider-controls--position .tab-slider__next {
    position: absolute;
    top: 12px;
    pointer-events: auto;
}

.tab-slider-controls--position .tab-slider__prev {
    left: -11px;
}

.tab-slider-controls--position .tab-slider__next {
    right: -11px;
}

@media (max-width: 532px) {
    .tab-slider-controls--position .tab-slider__prev {
        left: 5px;
    }
    
    .tab-slider-controls--position .tab-slider__next {
        right: 5px;
    }
}

tr.table-striped-row > td {
    background-color: var(--color-jb-gray-5);
}
.calendar-legend .event-type::before {
    content: "";
    display: inline-block;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    border-width: 1px;
    border-style: solid;
    margin-right: 0.5rem
}
@media (min-width: 1200px) {
    .calendar-legend .event-type::before {
        width: 27px;
        height: 27px;
    }
}
.calendar-legend .event-type-0::before {
    border-color: var(--color-jb-green-1);
    background-color: var(--color-jb-green-1);
}
.calendar-legend .event-type-1::before {
    border-color: var(--color-jb-green-1);
    background-color: var(--color-jb-green-5);
    color: var(--color-jb-gray-2);
}
.calendar-legend .event-type-2::before {
    border-color: var(--color-jb-gray-2);
    background-color: var(--color-jb-gray-2);
}
.calendar-legend .event-type-3::before {
    border-color: var(--color-jb-green-3);
    background-color: var(--color-jb-green-3);
}
.calendar-legend .event-type-4::before{
    border-color: var(--color-jb-gray-4);
    background-color: var(--color-jb-gray-4);
    color: var(--color-jb-gray-2);
}
.calendar-legend .event-type-5::before{
    border-color: var(--color-jb-gray-1);
    background-color: var(--color-jb-gray-1);
}
.calendar-multi-user-button {
    position: absolute;
    z-index: 1;
    right: 20px;
    padding-top: 5px
}
@media (max-width: 767px) {

    .calendar-multi-user-button {
        display: none;
    }
}

#location-calendar .calendar-legend .event-type-0::before {
    border-color: var(--color-jb-green-1);
    background-color: var(--color-jb-green-1);
}
#location-calendar .calendar-legend .event-type-1::before {
    border-color: var(--color-jb-green-1);
    background-color: var(--color-jb-green-3);
    color: var(--color-white);
}
#location-calendar .calendar-legend .event-type-2::before {
    border-color: var(--color-jb-gray-2);
}

.select-container {
    position: absolute;
    z-index: 1;
    right: 20px;
    padding-top: 5px
}

@media (max-width: 767px) {
    .select-container {
        position: relative;
        right: 0;
        justify-content: space-evenly;
        padding-bottom: 0.5rem;
    }
}

@media (max-width: 532px) {
    .select-container {
        flex-wrap: wrap;
        gap: 1rem!important;
    }
}

/* HR */
hr {
    border-color: var(--color-jb-gray-4);
    opacity: 1;
}
@media (min-width: 576px) {
    hr.penultimate {
        display: none;
    }
}
@media (min-width: 992px) {
    hr.penultimate {
        display: block;
    }
}

.select__innio__form:not(:has(option:checked[value=""])) {
    color: white;
}

.tab-pane a, #courseShortDescription a {
    text-decoration: none;
    color: #51B046;
    font-weight: 600;
}




.table-mobile-wbt-upload,
.table-desktop-wbt-upload {
  display: none;
}

@media (max-width: 767px) {
  .table-mobile-wbt-upload {
    display: block;
  }
}

@media (min-width: 768px) {
  .table-desktop-wbt-upload {
    display: block;
  }
}

.hide-table {
	display: none;
}

#trainerEventsBegin {
	width: 442px;
	height: 44px;
}

#trainerEventsEnd {
	width: 442px;
	height: 44px;
}

#trainerEventsFilterContainer {
	gap: 30px; 
	margin-top: 44px; 
	margin-bottom: 24px;
}

#trainerEventsFilterButtonContainer {
	margin-bottom: 64px;
}

@media (max-width: 532px) {
    .responsive-inputs {
        flex-direction: column;
        gap: 10px;
    }
    
    .responsive-inputs input {
        width: 90vw !important;
    }
}
