.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(344px, 1fr));
    grid-gap: 1rem;
    letter-spacing: 1px;
}

.product-list__wrapper {
    scroll-margin-top: 110px;
}

.product-list__title {
    margin-bottom: 1rem;
}

.product-list .product-col {
    border-color: var(--color-neutral-300);
}

.product-list__wrapper #menu-accordion {
    margin-bottom: 1rem;
}

.product-filter {
    border: 0;
    margin: 1rem 0;
}

.product-list__description {
    font-weight: 100;
}

.product-list__item .image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 290px;
}

.product-list__item .btn {
    padding: 0.675rem 2.5rem;
}

.product-filter #sort {
    width: 100%;
    max-width: 220px;
    margin-left: 1rem;
    border-radius: 5px;
}

.product-list__item--sku {
    color: var(--color-default);
    font-size: 12px;
    margin-bottom: 0.5rem;
    letter-spacing: 0.6px;
}

.product-list__pagination {
    margin: 1rem 0;
}

.product-list .description {
    letter-spacing: 0.7px;
    font-size: 14px;
    line-height: 21px;
    color: var(--color-default);
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 768px) {
    .product-list .product-col {
        padding: 2rem;
    }
}

@media (min-width: 992px) {
    .product-list {
        grid-gap: 2rem;
    }

    .product-list__title {
        margin-bottom: 1.5rem;
    }

    .product-list__pagination {
        margin: 2rem 0;
    }

    .product-list__item h4 {
        font-size: 20px;
        text-transform: initial;
        word-break: break-word;
        font-weight: 700;

        a {
            min-height: 72px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
    }

    .product-list__description {
        font-size: 22px;
    }
}

.product-detail__link-item {
    .product-detail__link-item--video-headline {
        margin-bottom: .5rem;
    }

    &:not(:last-child) {
        margin-bottom: 1rem;
    }

    p {
        margin: 0;
    }

    a {
        text-decoration: underline;
    }
}

@media (min-width: 1024px) {
    .product-list__wrapper {
        display: grid;
        grid-template-columns: 310px auto;
        grid-gap: 2rem;
    }

    .product-filter {
        margin: 3rem 0 2rem;
    }
}

.cover-image-navigation {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    font-size: var(--font-size-h5);
    font-weight: bold;
    margin-bottom: 3rem;
    text-align: center;
}

@media (min-width: 1370px) {
    .cover-image-navigation {
        display: grid;
    }
}

.cover-image-navigation .image {
    text-align: center;
    margin-bottom: 1rem;

    img {
        width: 100%;
        height: auto;
    }
}

.filter-group.filter-group-checkbox {
    margin-left: 0;
}

.filter-group-checkbox label {
    display: block;
}

.input-slider-wrapper {
    width: 100%;
    padding-bottom: 40px;
}

.slider-container {
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-family: "Forza", system-ui, sans-serif;
}

.slider-container.theme-red .back-bar {
    height: 3px;
    border-radius: 2px;
    background-color: #eee;
}
.slider-container.theme-red .back-bar .selected-bar {
    border-radius: 2px;
    background-color: #2F3337;
    z-index: 2;
}
.slider-container.theme-red .back-bar .pointer {
    width: 16px;
    height: 16px;
    top: -6px;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid #2F3337;
    background-color: #2F3337;
}
.slider-container.theme-red .back-bar .pointer-label {
    color: var(--color-default);
    font-size: 0.75rem;
    top: -1.5rem;
}
.slider-container.theme-red .back-bar .focused {
    color: var(--color-default);
}

.slider-container.theme-red .scale {
    top: 10px;
}

.slider-container.theme-red .scale span {
    border-left: 1px solid #e5e5e5;
}
.slider-container.theme-red .scale ins {
    color: var(--color-default);
    font-size: 0.875rem;
}

.slider-container .clickable-dummy {
    background-color: white;
}

.slider-container.theme-red .back-bar .pointer-label {
    bottom: -55px;
    top: auto;
    padding: .6rem 1.1rem;
    background: white;
}

.slider-container.theme-red .back-bar .pointer-label.high {
    right: -11px !important;
    left: auto !important;
}

.slider-container.theme-red .back-bar .pointer-label.low {
    left: -7px !important;
}