.box-img {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.box-img-text {
    color: white;
    font-size: 1.25rem;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    width: max-content;
}
.img-box-card {
    border: 1px solid #eee;
    height: 387px;
    width: 560px;
    background: #eee;
}
.card-box-img::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0, 0.4), rgba(0, 0, 0,  0.4), rgba(0, 0, 0, 0));

}
.overlaycat::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0, 0.4), rgba(0, 0, 0,  0.4), rgba(0, 0, 0, 0));
}
.search-input{
    border-radius: 99px;
    padding: 12px;
    border: 1px solid #eee;
}
.search {
    position: relative;
}

.search-input:focus {
    outline: none !important;
    border: 1px solid #eee !important;
    box-shadow: 0 0 0 0rem rgb(13 110 253 / 25%) !important;
}

.search-input:focus-visible {
    outline: 3px solid rgb(32, 160, 216) !important; 
    border: 1px solid #eee; 
}

.search-input:focus:not(:focus-visible) {
    box-shadow: 0 0 0 0rem rgb(13 110 253 / 25%); 
}
.searchInputIcon {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    color: #a1a1a1;
    transition: all 0.1s ease-in-out;
    transform: translateY(-50%);
}

.produktcategorys .filter__toggle{
    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
    padding: 1rem 0;
    &:focus-visible{
        outline: 3px solid rgb(32, 160, 216);
        padding: 5px;
        border-radius: 4px;
    }
}

.filter__title,
#catFilter .category,
#catFilter .category *{
    font-size: 1rem !important;
    line-height: 25px;
}

#catFilter .category.active,
#catFilter .category:hover
{
    color: #F1BA56 !important;
    transition: all 0.3s ease-out;
}

#catFilter .category.active *
{
    color: #F1BA56;
}
.high-contrast #catFilter .category.active
{
    color: black !important;
}

.category__filter .filter__toggle .toggle__chevron{
    transition: all ease 0.3s;
}

.category__filter .filter__toggle .toggle__chevron.active{
    transform: rotate(180deg);
    transition: all ease 0.3s;
}

.payment li {
    display: inline;
    list-style: none;
}

.payment {
    border-top: 1px solid #eee;
}

.shippingInfo * {
    text-align: center;
}

.productCategory .neu {
    border: 1px solid;
    width: max-content;
    padding: 0px 5px;
    text-transform: uppercase;
}

.productCategory .pozent {
    border: 1px solid #CB1335;
    width: max-content;
    padding: 0px 5px;
    text-transform: uppercase;
    background-color: #CB1335;
    color: #fff !important;
}

.productCategory .videoblock__video span.badge img.video__badge {
    left: 10px;
    position: absolute;
    width: 70px;
    top: 10px;
}

.tag {
    background-color: #C9C5B5;
    height: 40px;
    display: inline-block;
    text-align: center;
    border: 0;
    color: #fff !important;
    padding: 6px 10px;
    cursor:pointer;
}
.tag.active
{
    background-color: #306A63;
}
.slidein
{
    position:fixed;
    right:0;
    top:50%;
    transform:translateX(100%) translateY(-50%);
    transition:0.5s ease all;
    background:white;
    z-index: 5000;
}
.slidein.open
{
    transform:translateX(0) translateY(-50%);
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.15);
}
.productpage_subtitle
{
    color: black !important;
}
.high-contrast .productpage_subtitle
{
    color: black !important;
}
.productpage_subtitle {
    color: #F1BA56 !important;
}

#productsort,
#productsearch {
    background-color: #36353F;
    color: white;
    border: 0;
    padding: .5rem 1.25rem;
}

#productsearch::placeholder {
    color: white;
}

#productsort:focus-visible,
#productsort:focus,
#productsearch:focus-visible,
#productsearch:focus {
    border: none !important;
    outline: none !important;
}

#productsort{
    width: 100%;
    padding-right: 3rem;
}

#sort__products {
    position: relative;
}

#sort__products:after {
    content: '\f078';
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    pointer-events: none;
}

.productcategory .main {
    position: relative;
    min-height: 200px;
}

.loading-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 10;
    justify-content: center;
    align-items: start;
    padding-top: 5rem;
}

.loading-overlay.active {
    display: flex;
}

.spinner {
    animation: rotate 2s linear infinite;
    z-index: 11;
    width: 50px;
    height: 50px;
}

.spinner .path {
    stroke: #36353f;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}