.product-teaser {
    border-top: 2px solid var(--black-lgt);
    display: flex;
    flex-direction: column;
    padding-top: 24px;
    height: 100%;
}
.product-teaser a {
    color: var(--black-lgt);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-teaser figure {
    position: relative;
    margin-bottom: 0;
}
.product-teaser figure figcaption {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: white;
    border-radius: 50%;
    background: var(--green);
    width: 95px;
    height: 95px;
    padding: 10px;
    font-family: 'text-bold';
    font-size: 16px;
}
.product-teaser figure figcaption div.tag {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.product-teaser div.product_title {
    font-size: 18px;
    text-transform: uppercase;
    padding: 24px 5px 16px 5px;
    font-family: 'text-bold';
    text-align: center;
    min-height: 72px;
}
.product-teaser div.product_teasertext p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 0rem;
    padding-bottom: 6px;
}
div.product_teasertext p.product_subtitle {
    font-family: 'text-bold' !important;
    font-weight: normal !important;
}
.product-teaser div.product-price {
    text-align: center;
    font-size: 18px;
    font-family: 'text-bold';
    padding: 8px 5px 8px 5px;
    width: 100%;
}
.product-teaser div.product-price span.regular-price-lbl {
    font-family: 'text-light' !important;
    font-size: 14px !important;
}
.product-teaser div.product-price span.price {
    text-align: center;
    font-size: 18px;
    font-family: 'text-bold';
}
.product-teaser div.product-price span {
    display: block;
    font-size: 18px;
    padding: 8px 5px 8px 5px;
}
.product-teaser div.product-price span.inkl-ust {
    font-family: 'text-light';
    padding: 8px 5px 16px 5px;
    font-size: 14px;
}
.product-teaser div.product-price span.inkl-ust a {
    color: var(--green);
    text-decoration: underline;
    display: block;
    text-align: center;
}
.product-wrapper.active {
    display: flex;
    -webkit-animation: aniIn 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: aniIn 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.product-wrapper.closing {
    -webkit-animation: aniOut 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
    animation: aniOut 0.25s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
.product-wrapper.inactive {
    display: none;
}
@keyframes aniIn {
    0% {
        opacity: 0;
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
    }
    100% {
        opacity: 1;
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
    }
}
@keyframes aniOut {
    0% {
        opacity: 1;
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        opacity: 1;
    }
}
/* Basis für alle Checkboxen */
.form-check-input[type="checkbox"] {
    width: 2.5em;
    height: 1.5em;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 2em;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    background-image: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    vertical-align: middle;
    cursor: pointer;
}
/* Switch-Knopf */
.form-check-input[type="checkbox"]::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 1em;
    height: 1em;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.6);
}
/* Aktiv-Zustand */
.form-check-input[type="checkbox"]:checked::before {
    transform: translateX(1em);
}
.form-check-input[type="checkbox"]:checked {
    background-color: var(--green);
    border-color: var(--green);
}
/* Label-Abstand */
.form-check-input[type="checkbox"]+.form-check-label {
    padding-left: 0.5em;
    vertical-align: middle;
}
.form-check-input[type="checkbox"]:focus,
.form-check-input[type="checkbox"]:focus-visible {
    outline: none;
    box-shadow: none;
}
.form-check-label {
    padding: 0.35em 1em;
}
.filter-header {
    margin: 0;
    margin-bottom: -12px;
    padding: 0;
    line-height: 1;
}
.filterwrapper {
    position: relative;
    left: 12%;
}
.filterwrapper div {
    min-width: 100%;
    max-width: 100%;
}
@media (min-width: 768px) {
    .filterwrapper div {
        min-width: 45%;
        max-width: 45%;
    }
}
@media (min-width: 992px) {
    .filterwrapper div {
        min-width: 30%;
        max-width: 30%;
    }
}
