.tabbed-content {
    position: relative;
}

.tabbed-content::before {
    position: absolute;
    top: 49px;
    left: calc(-50vw + 50%);
    height: 1px;
    background-color: #c4c4c4;
    width: 100vw;
    content: " ";
}

.tabbed-content__navbar {
    height: 50px;
}

.tabbed-content__navbar ul {
    display: inline-flex;
    gap: 25px;
    list-style-type: none;
    padding: 0;
    justify-content: flex-start;
}

.tabbed-content__navbar ul li p {
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 45px;
    text-transform: uppercase;
    color: var(--color-grey-50);
    text-decoration: none !important;
    cursor: pointer;
    margin: 0 !important;
}

.navbar__item > p[data-active="true"] {
    border-bottom: 5px solid var(--color-dark-blue);
    color: var(--color-grey-100);
}

.navbar__text {
    color: var(--color-grey-50);
}

.navbar__text:hover {
    color: var(--color-dark-blue);
}

/* Title Medium */
.tabbed-content__container h2 {
    color: var(--color-grey-100);
    font-size: 40px;
    line-height: 120%;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 25px 0 !important;
}

/* Title Small */
.tabbed-content__container h3,
.tabbed-content__container h4 {
    color: var(--color-grey-100);
    font-size: 25px;
    line-height: 130%;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 10px 0 !important;
}

.tabbed-content__body[data-active="true"] {
    display: block;
}

.tabbed-content__body[data-active="false"] {
    display: none;
}

.tabbed-content__body p {
    color: var(--color-grey-75);
    font-family: Arial;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
    margin: 0 0 25px 0 !important;
}

.tabbed-content__body ul,
.tabbed-content__body ol {
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-grey-100);
    margin-bottom: 25px;
    padding-left: 15px;
}

.tabbed-content__body li > ul,
.tabbed-content__body li > ol {
    margin-bottom: 0;
}

.tabbed-content__body ul {
    list-style: disc;
}

.tabbed-content__body ol {
    list-style: auto;
}

.tabbed-content__body a {
    color: var(--color-dark-blue);
    font-weight: 700;
}

@media only screen and (max-width: 1200px) {
    .tabbed-content__navbar {
        overflow-x: auto;
        overscroll-behavior-x: contain;
        margin: 0;
    }

    .tabbed-content__navbar ul li {
        flex-grow: 1;
        word-wrap: normal;
        white-space: nowrap;
    }
}

@media only screen and (min-width: 1920px) {
    .lindstrom-container--content .tabbed-content::before {
        left: -100px;
        max-width: 1920px;
    }

    .lindstrom-container--text .tabbed-content::before {
        left: -490px;
        max-width: 1920px;
    }
}
