.product__details {
    position: relative
}

.product__section {
    background-color: var(--section-bg-color);
    position: relative
}

.product__section:nth-of-type(odd) {
    --section-bg-color: var(--bs-body-bg)
}

.product__section:nth-of-type(odd) .card {
    --bs-card-bg: #f8f8f8
}

.product__section:nth-of-type(2n) {
    --section-bg-color: #f8f8f8
}

.product__section:nth-of-type(2n) .spinner-wrap {
    background-color: hsla(0,0%,97%,.7)
}

.product__section:nth-of-type(2n) .card {
    --bs-card-bg: #fff
}

.product__section .spinner-wrap {
    align-items: center;
    z-index: 1
}

@media(min-width: 1200px) {
    .product__section__inner {
        max-width:calc(var(--container-width)/12*7 - var(--bs-gutter-x)*.5)
    }
}

.product__section__inner__custom-headline {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem
}

.product__features {
    position: relative
}

.product__features__item:not(:last-child) {
    margin-bottom: 2rem
}

.product__features__item>:last-child {
    margin-bottom: 0
}

.product__features__item__headline {
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem
}

@media(min-width: 1200px) {
    .product__features__item .list {
        -moz-column-count:2;
        column-count: 2;
        gap: 0 3rem
    }

    .product__features__item .list.list--one-col,.product__features__item .list.list--only-child {
        -moz-column-count: 1;
        column-count: 1
    }
}

.product__features__item .list>li {
    overflow: hidden
}

.product__badges {
    margin-bottom: .5rem
}

.product__amount,.product__badges {
    align-items: center;
    display: flex;
    gap: .5rem
}

.product__amount__badge {
    border-radius: 100vh;
    box-shadow: inset 0 0 0 3px hsla(0,0%,8%,.1);
    height: 20px;
    width: 20px
}

.product__amount__badge--yellow {
    background-color: #fbba00
}

.product__amount__badge--green {
    background-color: #79fb00
}

.product__contactrequestbutton {
    margin: 2rem 0 1rem
}

.addtobasket {
    position: relative
}

.addtobasket__actions {
    align-items: stretch;
    display: inline-flex;
    flex-basis: 100%;
    gap: .75rem;
    margin-bottom: 1.25rem;
    margin-top: 1.5rem;
    position: relative
}

.addtobasket .article-alert {
    --bg-opacity: 0.5;
    --border-opacity: 0.5;
    --bs-alert-padding-x: 0.5rem;
    --bs-alert-padding-y: 0.25rem;
    --bs-alert-color: var(--bs-body-color);
    --bs-alert-bg: rgba(var(--color-second-rgb),var(--bg-opacity));
    --bs-alert-border-color: rgba(var(--color-main-rgb),var(--border-opacity));
    align-items: center;
    bottom: -34px;
    display: flex;
    flex-wrap: wrap;
    font-size: .875rem;
    gap: .5rem;
    justify-content: space-between;
    left: 0;
    margin-bottom: 0;
    position: absolute;
    right: 0
}

.addtobasket .article-alert:not(.d-none):after {
    animation-delay: .1s;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    animation-name: basket-message-indicator;
    animation-timing-function: linear;
    background-color: var(--color-main);
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    top: -2px;
    width: 100%
}

.addtobasket .article-alert__inner {
    align-items: center;
    display: flex;
    gap: .35rem
}

.addtobasket .article-alert svg {
    height: 16px;
    width: 16px
}

.addtobasket__amount {
    max-width: 120px
}

.second-basket {
    display: none
}

@media(min-width: 1200px) {
    .second-basket {
        align-items:center;
        background-color: #f0f0f0;
        bottom: 0;
        display: flex;
        height: calc(100vh - var(--navbar-anchor-height));
        margin-left: auto;
        max-height: calc(100vh - var(--navbar-anchor-height));
        overflow-y: auto;
        padding: 3rem;
        position: absolute;
        right: 0;
        width: 35%;
        z-index: 1
    }

    .second-basket__wrap {
        bottom: 0;
        position: sticky;
        z-index: 1
    }
}

@media(min-width: 1400px) {
    .second-basket {
        padding:4rem
    }
}

.second-basket .product__headline {
    font-size: calc(1.275rem + .3vw);
    line-height: 1.1;
    margin-bottom: 1.5rem
}

@media(min-width: 1200px) {
    .second-basket .product__headline {
        font-size:1.5rem
    }
}

@media(min-width: 1400px) {
    .second-basket .product__headline {
        font-size:calc(1.35rem + 1.2vw)
    }
}

@media(min-width: 1400px)and (min-width:1200px) {
    .second-basket .product__headline {
        font-size:2.25rem
    }
}

.second-basket .product__subheadline {
    font-size: 1.125rem
}

@media(min-width: 1400px) {
    .second-basket .product__subheadline {
        font-size:1.25rem
    }
}

@keyframes basket-message-indicator {
    0% {
        background-color: var(--color-main);
        width: 100%
    }

    50% {
        background-color: var(--color-main);
        width: 50%
    }

    to {
        background-color: #c4152f;
        width: 0
    }
}

#variant .signmaster.big {
    display: inline-block;
    height: 1rem;
    line-height: .4em;
    overflow: visible;
    padding: 0 .1em;
    position: relative;
    top: .15em
}

.product__head {
    background-color: #f8f8f8;
    position: relative;
    z-index: 2
}

@media(min-width: 1200px) {
    .product__head {
        background-image:linear-gradient(90deg,#f8f8f8,#f8f8f8 50%,#f0f0f0 0,#f0f0f0);
        --spacing: 4rem;
        display: flex;
        min-height: calc(100vh - var(--navbar-anchor-height))
    }
}

.product__head--layout2 {
    --gradientstop: 430px;
    background-image: linear-gradient(180deg,#f0f0f0 0,hsla(0,0%,8%,.4) 430px,#f8f8f8 0,#f8f8f8);
    background-image: linear-gradient(to bottom,#f0f0f0 0,hsla(0,0%,8%,.4) var(--gradientstop),#f8f8f8 var(--gradientstop),#f8f8f8 100%)
}

@media(min-width: 992px) {
    .product__head--layout2 {
        --gradientstop:570px
    }
}

@media(min-width: 1200px) {
    .product__head--layout2 {
        --spacing:1rem;
        background-image: linear-gradient(0deg,#f0f0f0,#f0f0f0),linear-gradient(179deg,#f0f0f0,hsla(0,0%,8%,.4));
        background-position: 100%,0;
        background-repeat: no-repeat;
        background-size: 50% 100%,100% 100%
    }

    .product__head--layout2 .product__head__container {
        grid-template-rows: auto 1fr;
        max-width: none
    }

    .product__head--layout2 .breadcrumb__wrap {
        padding-left: calc((100vw - var(--container-width))/2 - .5001rem)
    }

    .product__head--layout2 .product__head__imagecol {
        padding: 2rem
    }

    .product__head--layout2 .product__head__contentcol {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: calc(var(--container-width)/2 - 1.5rem)
    }

    .product__head__container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 0 var(--bs-gutter-x);
        gap: 0 var(--bs-gutter-x)
    }
}

.product__head .breadcrumb__wrap {
    background-color: transparent;
    grid-column: 1/-1
}

@media(max-width: 575.98px) {
    .product__head .breadcrumb__wrap {
        margin-left:-.75rem;
        margin-right: -.75rem;
        width: calc(100% + 1.5rem)
    }
}

.product__head .breadcrumb__wrap .container.swiper {
    margin-left: 0;
    padding-left: 0;
    padding-right: 0
}

@media(max-width: 575.98px) {
    .product__head .breadcrumb__wrap .container.swiper {
        padding-left:.75rem;
        padding-right: .75rem
    }
}

@media(min-width: 1200px) {
    .product__head__imagecol {
        padding:0 calc(var(--container-width)/12) 0 0
    }

    .product__head__contentcol {
        padding: var(--spacing) 0 var(--spacing) calc(var(--container-width)/12)
    }
}

.product__head__section:not(:last-child) {
    margin-bottom: 2rem
}

.product__head__section__headline {
    display: block;
    margin-bottom: .75rem
}

.product__head__section--icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem
}

.product__head__section--links {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.5rem
}

.product__head--line .breadcrumb.container {
    margin: 0;
    padding: 0;
    width: 100%!important
}

.product__subheadline {
    font-size: 1.25rem;
    margin-bottom: .75rem
}

.product__headline,.product__subheadline {
    font-family: DIN,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,Open Sans,Arial,Liberation Sans;
    font-weight: 500
}

.product__headline,.product__materialnumber span {
    display: block
}

@media(min-width: 1400px) {
    .product__materialnumber span {
        display:inline-block;
        padding-right: .5rem
    }

    .product__materialnumber span:not(:first-child) {
        border-left: 1px solid hsla(0,0%,8%,.063);
        padding-left: .5rem
    }
}

.addtobasket {
    min-height: 185px
}

.product__price {
    margin-bottom: 1.5rem;
    position: relative
}

.product__price .spinner-wrap {
    background-color: hsla(0,0%,97%,.7)
}

@media(min-width: 1200px) {
    .product__price .spinner-wrap {
        background-color:hsla(0,0%,94%,.7)
    }
}

.product__price__number {
    align-items: flex-end;
    display: flex;
    font-family: DIN,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,Open Sans,Arial,Liberation Sans;
    font-size: 2.25rem;
    font-weight: 500;
    min-height: 54px
}

@media(min-width: 768px) {
    .product__price__number {
        font-size:calc(1.425rem + 2.1vw);
        min-height: 72px
    }
}

@media(min-width: 768px)and (min-width:1200px) {
    .product__price__number {
        font-size:3rem
    }
}

.product__price__info {
    display: block;
    flex-basis: 100%;
    font-size: .75rem;
    margin-top: .25rem
}

.product__price__inner--has-scaled-table {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    gap: 0 3rem
}

@media(min-width: 576px) {
    .product__price__inner--has-scaled-price .product__price__number__wrap {
        align-items:center;
        display: flex;
        flex-wrap: wrap;
        gap: 0 .75rem
    }
}

.product__price__scaledtable {
    margin-bottom: 0;
    margin-top: 1rem;
    --bs-border-color: hsla(0,0%,8%,.063);
    border: 1px solid hsla(0,0%,8%,.063);
    border-left: 1px solid var(--bs-border-color);
    border-left: 4px solid hsla(0,0%,8%,.063);
    border: 1px solid var(--bs-border-color);
    border-left-width: 4px;
    font-size: .875rem;
    width: auto
}

.product__price__scaledtable tr td,.product__price__scaledtable tr th {
    vertical-align: middle
}

.product__price__scaledtable>:not(caption)>*>* {
    padding: .25rem .5rem
}

.product__price__scaled {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 5px
}

.warning-replace {
    color: #e40424;
    display: flex;
    font-weight: 700;
    gap: 1rem;
    margin-bottom: 1.5rem
}

.warning-replace svg {
    display: inline-block;
    flex: 0 0 24px;
    height: 24px;
    width: 24px
}

.product__downloads {
    display: grid;
    grid-gap: 1.5rem;
    gap: 1.5rem;
    grid-template-areas: "filter" "files"
}

@media(min-width: 768px) {
    .product__downloads {
        gap:2rem;
        grid-template-areas: "filter files";
        grid-template-columns: 2fr 3fr
    }
}

.product__downloads__filter {
    grid-area: filter
}

.product__downloads__filter__item {
    margin-bottom: .85rem
}

.product__downloads__filter__item .form-check-label {
    cursor: pointer
}

.product__downloads__files {
    grid-area: files
}

.product__downloads__item {
    align-items: flex-end;
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    padding: 1.25rem 0;
    position: relative
}

@media(min-width: 768px) {
    .product__downloads__item {
        padding:1.25rem
    }
}

.product__downloads__item:first-child {
    padding-top: 0
}

.product__downloads__item:not(:last-child) {
    border-bottom: 1px solid hsla(0,0%,8%,.063)
}

.product__downloads__item:active .product__downloads__item__icon svg,.product__downloads__item:hover .product__downloads__item__icon svg {
    transform: translateY(6px)
}

.product__downloads__item__headline {
    display: block;
    font-family: DIN,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,Open Sans,Arial,Liberation Sans;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: .5rem
}

.product__downloads__item__languages {
    display: block;
    margin-bottom: .5rem
}

.product__downloads__item__details {
    align-items: center;
    display: flex;
    gap: .25rem
}

.product__downloads__item__details>span:not(:last-child) {
    padding-right: .25rem
}

.product__downloads__item__details>span:not(:last-child):after {
    content: "|";
    padding-left: .4rem
}

.product__downloads__item__icon {
    flex-grow: 0;
    flex-shrink: 0
}

.product__downloads__item__icon svg {
    color: #15458F;
    height: 24px;
    transition: transform .3s ease-in-out;
    width: 24px
}

.product__technicaldata__link {
    background-color: hsla(0,0%,8%,.063);
    padding: 1.25rem
}

.product__technicaldata__headline {
    font-size: 1.25rem
}

.product__technicaldata__subheadline {
    font-family: var(--bs-font-sans-serif);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0;
    padding-left: 0
}

.product__technicaldata__text {
    margin-bottom: .75rem;
    padding-left: .5rem
}

.product__technicaldata__content {
    position: relative
}

.product__technicaldata__close {
    display: flex;
    margin-left: auto
}

.product__technicaldata .collapse__btn__icon {
    color: #141414
}

.product__technicaldata .collapse__body {
    padding-bottom: 1rem;
    padding-top: 1rem
}

.product__head__imagecol {
    min-width: 0
}

.product__gallery {
    min-height: 351px;
    position: relative;
    width: 100%
}

@media(min-width: 768px) {
    .product__gallery {
        min-height:501px
    }
}

@media(min-width: 992px) {
    .product__gallery {
        min-height:601px
    }
}

.product__gallery__main .swiper-slide {
    align-items: center;
    display: flex;
    height: auto;
    justify-content: center;
    padding-top: 2rem
}

@media(min-width: 768px) {
    .product__gallery__main .swiper-slide {
        height:calc(350px + 4rem)
    }
}

@media(min-width: 992px) {
    .product__gallery__main .swiper-slide {
        padding:2rem 2rem 0
    }
}

.product__gallery__main .swiper-slide img,.product__gallery__main .swiper-slide svg {
    display: block;
    height: auto;
    margin: 0 auto;
    max-height: 350px;
    max-width: 100%;
    transform: scale(1);
    transform: scale(var(--zoom,1));
    width: auto
}

.product__gallery__main .swiper-pagination {
    height: 25px;
    margin-top: 1.5rem
}

.product__gallery__main .swiper-button-next,.product__gallery__main .swiper-rtl .swiper-button-prev {
    right: 0
}

.product__gallery__main .swiper-button-prev,.product__gallery__main .swiper-rtl .swiper-button-next {
    left: 0
}

.product__gallery__main .swiper-wrapper {
    align-items: stretch
}

.product__gallery__main__image {
    margin-bottom: 0
}

.product__gallery__main__image--video {
    position: relative
}

.product__gallery__main__image--video img {
    aspect-ratio: 16/9;
    -o-object-fit: cover;
    object-fit: cover
}

.product__gallery__main__image__description {
    font-size: .875rem;
    margin-top: .25rem;
    max-height: 66px;
    overflow-y: auto;
    padding-right: 35px
}

.product__gallery__main__image__playbutton {
    align-items: center;
    aspect-ratio: 16/9;
    background-color: transparent;
    border: none;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    max-height: 350px;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1
}

@media(max-width: 767.98px) {
    .product__gallery__main__image__playbutton {
        margin:0 auto;
        max-height: 200px
    }
}

.product__gallery__main__image__playbutton:active svg,.product__gallery__main__image__playbutton:hover svg {
    background-color: var(--color-main);
    color: var(--color-contrast)
}

.product__gallery__main__image__playbutton svg {
    align-items: center;
    aspect-ratio: 1;
    background-color: #fff;
    border-radius: 100vh;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    color: #141414;
    display: flex;
    height: 60px!important;
    justify-content: center;
    padding: 1rem;
    transition: background-color .3s ease-in-out,color .3s ease-in-out;
    width: 60px!important;
    z-index: 1
}

@media(max-width: 991.98px) {
    .product__gallery__main .swiper-button-next,.product__gallery__main .swiper-button-prev {
        display:none
    }
}

.product__gallery__thumbnails {
    display: none;
    height: 105px;
    margin-top: 2rem
}

@media(min-width: 992px) {
    .product__gallery__thumbnails {
        display:block;
        margin-left: 2.5rem;
        margin-right: 2.5rem
    }
}

@media(min-width: 992px)and (max-width:1199.98px) {
    .product__gallery__thumbnails {
        margin-left:calc(var(--container-width)/6);
        margin-right: calc(var(--container-width)/6)
    }
}

@media(min-width: 1780px) {
    .product__gallery__thumbnails {
        margin-left:calc(var(--container-width)/12);
        margin-right: calc(var(--container-width)/12)
    }
}

.product__gallery__thumbnails .swiper-wrapper {
    align-items: stretch
}

.product__gallery__thumbnails .swiper-button-prev {
    left: 0
}

.product__gallery__thumbnails .swiper-button-next {
    right: 0
}

.product__gallery__thumbnails .swiper-slide {
    align-items: center;
    background-color: #f0f0f0;
    cursor: pointer;
    display: flex;
    height: auto;
    justify-content: center;
    padding: .75rem;
    transition: background-color .3s ease-in-out
}

.product__gallery__thumbnails .swiper-slide:active,.product__gallery__thumbnails .swiper-slide:hover {
    background-color: hsla(0,0%,8%,.063)
}

.product__gallery__thumbnails .swiper-slide img {
    height: auto;
    max-height: 80px;
    max-width: 100%;
    width: auto
}

.product__gallery__thumbnails .swiper-pagination {
    bottom: -6px
}

.product__gallery__thumbnail.swiper-slide-thumb-active {
    outline: 2px solid #15458F;
    outline-offset: -2px
}

.product__gallery__thumbnail--video {
    position: relative
}

.product__gallery__thumbnail__playbutton {
    align-items: center;
    bottom: 0;
    color: #fff;
    display: flex;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.product__gallery__thumbnail__playbutton svg {
    filter: drop-shadow(0 0 2px rgba(0,0,0,.7));
    height: 20px;
    width: 20px
}

.product__gallery__navigation {
    display: none
}

@media(min-width: 992px) {
    .product__gallery__navigation {
        bottom:38px;
        display: block;
        height: 24px;
        left: 0;
        position: absolute;
        right: 0;
        z-index: 0
    }
}

.product__gallery__navigation .swiper-button-next,.product__gallery__navigation .swiper-button-prev {
    display: block
}

.product__gallery .file-glightbox,.product__gallery .glightbox {
    display: block;
    position: static;
    -webkit-text-decoration: none;
    text-decoration: none;
    width: 100%
}

.product__gallery .file-glightbox:before,.product__gallery .glightbox:before {
    background-color: transparent;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20.002' height='20.001' fill='%23141414' viewBox='0 0 20.002 20.001'%3E%3Cpath fill-rule='evenodd' d='m14.326 12.9 5.38 5.38a1.009 1.009 0 1 1-1.427 1.426l-5.38-5.38a8 8 0 1 1 1.426-1.426ZM8.002 14a6 6 0 1 0-6-6 6 6 0 0 0 6 6m3-5h-2v2a1 1 0 0 1-2 0V9h-2a1 1 0 1 1 0-2h2V5a1 1 0 1 1 2 0v2h2a1 1 0 0 1 0 2'/%3E%3C/svg%3E");
    bottom: .25rem;
    left: auto;
    right: 0;
    transition: background .3s ease-in-out
}

@media(min-width: 992px) {
    .product__gallery .file-glightbox:before,.product__gallery .glightbox:before {
        right:3rem
    }
}

.product__gallery .file-glightbox:active:before,.product__gallery .file-glightbox:hover:before,.product__gallery .glightbox:active:before,.product__gallery .glightbox:hover:before {
    background-size: 80%
}

.product__relation {
    position: relative
}

@media(min-width: 768px) {
    .product__relation--linked td {
        transition:background-color .3s ease-in-out
    }

    .product__relation--linked:active td,.product__relation--linked:hover td {
        --bs-table-bg: hsla(0,0%,8%,.063)
    }
}

.product__relation__col__link {
    grid-area: link;
    text-align: right
}

.product__relation__col__stockarticle {
    grid-area: stockarticle;
    text-align: center
}

@media(max-width: 767.98px) {
    .product__relation__col__stockarticle {
        text-align:left
    }
}

.product__relation__col__stockarticle svg {
    height: 24px;
    width: 24px
}

@media(max-width: 767.98px) {
    .product__relation__col__stockarticle svg {
        height:16px;
        width: 16px
    }
}

.product__relation__col__title {
    grid-area: title;
    width: 100%
}

.product__relation__col__sku {
    grid-area: sku
}

.product__relation__image {
    height: auto;
    max-height: 60px;
    -o-object-fit: contain;
    object-fit: contain;
    width: 60px
}

.product__relation__table {
    --table-bg-color: #f8f8f8;
    --table-padding: 0.5rem 1rem
}

@media(min-width: 992px) {
    .product__relation__table {
        --table-padding:1rem 1.25rem
    }
}

.product__relation__table thead td,.product__relation__table thead th {
    background-color: #f0f0f0;
    background-color: var(--table-bg-color,#f0f0f0);
    border-bottom: 0;
    font-family: DIN,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,Open Sans,Arial,Liberation Sans;
    font-size: 1.125rem;
    font-weight: 500;
    padding: var(--table-padding);
    white-space: nowrap
}

.product__relation__table tbody>tr:last-child td,.product__relation__table tbody>tr:last-child th {
    border-bottom: 0
}

.product__relation__table tbody>tr td,.product__relation__table tbody>tr th {
    border-bottom: 1px solid #f0f0f0;
    border-bottom: 1px solid var(--table-bg-color,#f0f0f0);
    padding: var(--table-padding);
    vertical-align: middle
}

@media(max-width: 767.98px) {
    .product__relation__table {
        display:block
    }

    .product__relation__table thead {
        display: none
    }

    .product__relation__table tbody {
        display: block
    }

    .product__relation__table tbody>tr {
        display: grid;
        grid-template-areas: "image title" "image stockarticle" "image sku" "link link";
        grid-template-columns: 60px 1fr;
        grid-gap: 0 1rem;
        align-items: center;
        border-bottom: 1px solid #f0f0f0;
        border-bottom: 1px solid var(--table-bg-color,#f0f0f0);
        gap: 0 1rem;
        padding: 1rem 1rem 0
    }

    .product__relation__table tbody>tr td,.product__relation__table tbody>tr th {
        align-items: center;
        border-bottom: 0;
        display: flex;
        gap: .5rem;
        padding: 0
    }

    .product__relation__table tbody>tr td.product__relation__col__image,.product__relation__table tbody>tr th.product__relation__col__image {
        grid-row: 1/4
    }

    .product__relation__table tbody>tr td.product__relation__col__title,.product__relation__table tbody>tr th.product__relation__col__title {
        font-weight: 700
    }

    .product__relation__table tbody>tr td.product__relation__col__sku svg,.product__relation__table tbody>tr td.product__relation__col__stockarticle svg,.product__relation__table tbody>tr th.product__relation__col__sku svg,.product__relation__table tbody>tr th.product__relation__col__stockarticle svg {
        display: none
    }

    .product__relation__table tbody>tr td.product__relation__col__sku:before,.product__relation__table tbody>tr td.product__relation__col__stockarticle:before,.product__relation__table tbody>tr th.product__relation__col__sku:before,.product__relation__table tbody>tr th.product__relation__col__stockarticle:before {
        content: attr(data-name) ":"
    }

    .product__relation__table tbody>tr td.product__relation__col__link,.product__relation__table tbody>tr th.product__relation__col__link {
        justify-content: flex-end;
        margin-top: .5rem;
        padding: .5rem
    }

    .product__relation__table tbody>tr td.product__relation__col__link a,.product__relation__table tbody>tr th.product__relation__col__link a {
        flex-grow: 1;
        justify-content: flex-end
    }
}

.product__section:nth-of-type(2n) .product__relation__table {
    --table-bg-color: #f0f0f0
}

.product__section__inner--relation:not(:last-child) {
    margin-bottom: 2rem
}

@media(min-width: 992px) {
    .product__section__inner--relation:not(:last-child) {
        margin-bottom:3rem
    }
}

@media(min-width: 1400px) {
    .product__section__inner--relation:not(:last-child) {
        margin-bottom:4rem
    }
}

.product__section__inner__content {
    min-width: 0
}

.crosselling .swiper-slide {
    align-items: stretch;
    display: flex;
    height: auto
}

.crosselling .swiper-navigation-full {
    margin-top: 3rem
}

@media(min-width: 576px) {
    .crosselling .swiper-navigation-full {
        margin-top:1.5rem
    }
}

.product__icons {
    display: flex;
    flex-wrap: wrap
}

.product__icons--feature {
    align-items: center;
    display: flex;
    gap: .75rem;
    margin-bottom: 1.25rem
}

@media(min-width: 576px) {
    .product__icons--feature {
        align-items:center;
        display: flex;
        gap: .75rem;
        margin-bottom: 0;
        position: absolute;
        right: 0;
        top: 8px
    }
}

.product__icons--feature svg {
    color: var(--color-main);
    height: 28px;
    width: 28px
}

@media(min-width: 1200px) {
    .product__icons--feature svg {
        height:34px;
        width: 34px
    }
}

.product__icons--big {
    gap: 1.75rem
}

.product__icons--big svg {
    height: 48px;
    width: 48px
}

.product__icons--medium {
    gap: 1.5rem
}

.product__icons--medium svg {
    height: 36px;
    width: 36px
}

.product__icons--small {
    gap: 1rem
}

.product__icons--small svg {
    height: 28px;
    width: 28px
}

.colorscheme-leantec .anchornav {
    --bg-color: var(--color-main);
    --active-color: #15458F
}

.colorscheme-meditec .anchornav {
    --bg-color: var(--color-third);
    --active-color: var(--color-main)
}

.frame-type-AnchorNavigation {
    display: contents
}

.anchornav {
    --bg-color: #15458F;
    --active-color: var(--color-main);
    background-color: var(--bg-color);
    height: 45px;
    overflow: hidden;
    position: sticky;
    top: var(--navbar-height);
    z-index: 500;
    --arrow-width: 40px
}

@media(min-width: 768px) {
    .anchornav {
        --arrow-width:60px;
        height: 48px
    }
}

@media(min-width: 1400px) {
    .anchornav {
        height:64px
    }
}

.anchornav.anchornav--relative {
    position: relative;
    top: 0
}

.anchornav.anchornav--relative .swiper {
    padding-left: 0
}

.anchornav .nav {
    flex-wrap: nowrap;
    --bs-nav-link-padding-y: 0.75rem;
    --bs-nav-link-padding-x: 1.25rem
}

@media(min-width: 1400px) {
    .anchornav .nav {
        --bs-nav-link-padding-y:1.25rem
    }
}

.anchornav .nav .nav-link {
    align-items: center;
    align-self: stretch;
    color: white;
    display: flex;
    font-family: DIN,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,Open Sans,Arial,Liberation Sans;
    font-size: .875rem;
    font-weight: 500;
    height: auto;
    justify-content: center;
    white-space: nowrap
}

@media(min-width: 768px) {
    .anchornav .nav .nav-link {
        font-size:1rem
    }
}

.anchornav .nav .nav-link svg {
    height: 20px;
    width: 20px
}

.anchornav .nav .nav-link:hover,.anchornav .nav .nav-link:not(:last-of-type) {
    border-right: 1px solid hsla(0,0%,100%,.25)
}

.anchornav .nav .nav-link:focus-visible {
    --color: var(--color-black-rgb);
    --offset: -2px
}

.anchornav .nav .nav-link.active {
    background-color: #15458F;
    color: white;
}

.anchornav .nav .nav-link--top {
    background-color: #15458F;
    border-right: 1px solid hsla(0,0%,100%,.25);
    --bs-nav-link-padding-x: 0.75rem
}

.anchornav .nav .nav-link--top:hover {
    background-color: #141414;
    color: #fff
}

@media(min-width: 768px) {
    .anchornav .nav .nav-link--top {
        --bs-nav-link-padding-x:1.25rem
    }
}

.anchornav .nav .nav-link--conversion {
    flex-basis: fit-content;
    flex-grow: 0;
    flex-shrink: 1
}

.anchornav .nav--fixed {
    bottom: 0;
    left: 0;
    position: absolute;
    top: 0;
    width: var(--arrow-width);
    z-index: 100
}

.anchornav .swiper {
    padding-left: var(--arrow-width)
}
