.product-item-wrap {
    padding-bottom: 10px;
}

.photo-slider-top-icons {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    height: fit-content;
}

.product-item {
    background-color: #FFFFFF;
    border: 1px #dfdfdf solid;
    padding: 45px 5px 5px 5px;
    height: 100%;
    flex-direction: column;
    display: flex;
}

    .product-item .product-item-icons-cart .shop-content-cart {
        background-image: url('/images/icons/cart_add.png');
        background-repeat: no-repeat;
        background-position: right;
        height: 28px;
        width: 47px;
    }

        .product-item .product-item-icons-cart .shop-content-cart.added {
            background-image: url('/images/icons/cart_add.png');
        }

    .product-item .product-item-icons-cart-now .shop-content-cart-now {
        background-image: url('/images/icons/buy_now_add.png');
        background-repeat: no-repeat;
        background-position: right;
        height: 28px;
        width: 32px;
    }

    .product-item .product-item-icons-remainorder .shop-content-remainorder {
        background-image: url("/media/img/icons/product_order.png");
        background-repeat: no-repeat;
        background-position: right;
        height: 28px;
        width: 37px;
    }

    .product-item .product-item-icons-favoritelist .shop-content-favoritelist {
        background-image: url("/images/icons/favorite.png");
        background-repeat: no-repeat;
        background-position: right;
        height: 28px;
        width: 29px;
    }

        .product-item .product-item-icons-favoritelist .shop-content-favoritelist.added {
            background-image: url("/media/img/icons/favorite1.png");
        }

    .product-item fieldset, .product-item label {
        margin: 0;
        padding: 0;
    }

    .product-item:hover {
        box-shadow: 0px 5px 5px 0px rgba( 35, 36, 36, 0.25);
    }

    .product-item .add-content-cart-button {
        display: none;
    }

    .product-item .add-content-cart-button-now {
        display: none;
    }

    .product-item:hover .add-content-cart-button {
        display: inline;
    }

    .product-item:hover .add-content-cart-button-now {
        display: inline;
    }

    .product-item:hover .shop-content-cart {
        display: none;
    }

    .product-item button.add-content-cart-button {
        background-color: #E04900;
        border: 1px #E04900 solid;
        color: #FFFFFF;
        font-size: 16px;
        padding-left: 12px;
        cursor: pointer;
        padding-right: 12px;
        line-height: 24px;
    }
    /*.product-item button.add-content-cart-button:disabled {
            background-color: #B47B60;
            border-color: #B47B60;
            cursor: default;
        }*/

    .product-item button.add-content-cart-button-now {
        background-color: #0f902e;
        border: 1px #0f902e solid;
        color: #FFFFFF;
        font-size: 12px;
        padding-left: 12px;
        cursor: pointer;
        padding-right: 12px;
        line-height: 24px;
    }

#show-more {
    width: 150px;
    border: 1px solid #0b4b7d;
    display: table;
    margin: 0 auto;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

    #show-more:hover {
        opacity: 0.6;
    }

.show-more-text {
    cursor: pointer;
    font-size: 15px;
    margin: 7px 0;
}

img.product-item-img {
    max-width: 100%;
    max-height: 150px;
    min-height: 150px;
    object-fit: contain;
    position: relative;
    margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
}

    img.product-item-img:hover {
        opacity: 0.6;
    }

.product-item-name {
    color: #0b4b7d;
    display: block;
    font-size: 12px;
    padding: 5px;
    text-align: left;
    line-height: normal;
}

.product-item-brand {
    color: #0b4b7d;
    display: block;
    font-size: 12px;
    padding: 2px 5px 0 5px;
    text-align: left;
}

.product-item-country {
    color: #333333;
    display: block;
    font-size: 12px;
    padding: 0 5px 2px 5px;
    text-align: left;
}

.product-item-code {
    color: #666666;
    display: block;
    font-size: 11px;
    padding: 0 5px 0 5px;
    text-align: left;
}

.product-item-available {
    color: #666666;
    display: block;
    font-size: 12px;
    padding: 2px 5px 2px 5px;
    text-align: left;
    cursor: pointer;
}

    .product-item-available .able-text {
        color: #0f902e;
        padding-left: 5px;
    }

    .product-item-available .not-able-text {
        color: #fa0012;
        padding-left: 5px;
    }

        .product-item-available .not-able-text:hover {
            text-decoration: underline;
        }

.product-item-icons {
    padding: 5px;
    cursor: pointer;
    display: flex;
    margin-top: auto;
}

    .product-item-icons .product-item-icons-favoritelist {
        border-right: 1px solid #e9e9e9;
        padding-right: 10px;
        padding-left: 10px;
        height: 28px;
        display: block;
    }

        .product-item-icons .product-item-icons-favoritelist:hover,
        .product-item-icons .product-item-icons-cart:hover,
        .product-item-icons .product-item-icons-cart-now:hover,
        .product-item-icons .product-item-icons-remainorder:hover {
            opacity: 0.6;
        }

    .product-item-icons .product-item-icons-remainorder {
        border-right: 1px solid #e9e9e9;
        padding-right: 10px;
        height: 28px;
        display: block;
    }

    .product-item-icons .product-item-icons-cart {
        border-right: 1px solid #e9e9e9;
        padding-left: 10px;
        padding-right: 10px;
        height: 28px;
        display: block;
    }

    .product-item-icons .product-item-icons-cart-now {
        padding-left: 10px;
        display: block;
    }

    .product-item-icons .favorite-icon {
        padding-right: 10px;
    }

.product-item-prices {
    color: #0b4b7d;
    display: flex;
    font-size: 13px;
    padding: 5px 5px;
    text-align: left;
}

    .product-item-prices .prices-price-relevant {
        background-color: #f7e86c;
        border-radius: 7px;
        padding: 5px 8px;
        font-weight: bold;
        -webkit-border-radius: 7px;
    }

        .product-item-prices .prices-price-relevant.price-none {
            background-color: #eee;
            color: #999;
        }

.product-item-icons .product-item-icons-cart.price-none,
.product-item-icons .product-item-icons-cart-now.price-none {
    display: none;
}

.product-item-rating {
    color: #0b4b7d;
    font-size: 13px;
    padding: 5px;
    display: flex;
    text-align: left;
}

.product-item-prices .buy-button {
    background-color: #0f902e;
    color: #FFFFFF;
    font-size: 12px;
    border-radius: 7px;
    padding: 5px 8px;
    -webkit-border-radius: 7px;
    text-transform: uppercase;
    text-decoration: none;
}

.product-item-payment-type {
    padding: 5px 5px 5px 5px;
}

    .product-item-payment-type select.select-payment-type {
        background-color: #FFFFFF;
        border: 1px solid #e9e9e9;
        box-sizing: border-box;
        color: #212529;
        display: block;
        cursor: pointer;
        font-size: 12px;
        height: 25px;
        line-height: 23px;
        padding: 0px 5px 0px 5px;
        transition: 200ms;
        width: 100%;
    }

/*.product-right-block button.added:after {
    content:'Ð’ ÐºÐ¾Ñ€Ð·Ð¸Ð½Ñ–';
}

.product-right-block button:after {
    content:'ÐšÑƒÐ¿Ð¸Ñ‚Ð¸';

}*/

/*rating*/
/*.rating1 {
    border: none;
}

.rating1 > input { display: none; }
.rating1 > label:before {
    margin: 0;
    font-size: 1.25em;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005";
}

.rating1 > .half:before {
    content: "\f089";
    position: absolute;
}

.rating1 > label {
    color: #ddd;
    float: right;
}*/


/*------------------------ rating ----------------------------*/
.rating {
    border: none;
}

    .rating > input {
        display: none;
    }

    .rating > label:before {
        margin: 0;
        font-size: 1.25em;
        font-family: FontAwesome;
        display: inline-block;
        content: "\f005";
    }

    .rating > .half:before {
        content: "\f089";
        position: absolute;
    }

    .rating > label {
        color: #ddd;
        float: right;
    }

/*-------------------------------------- rating-pr --------------------------------*/
.rating-pr {
    border: none;
}

    .rating-pr > input {
        display: none;
    }

    .rating-pr > label:before {
        margin: 0;
        font-size: 1.25em;
        font-family: FontAwesome;
        display: inline-block;
        content: "\f005";
    }

    .rating-pr > .half:before {
        content: "\f089";
        position: absolute;
    }

    .rating-pr > label {
        color: #ddd;
        float: right;
    }

/*ratingLive*/

.ratingLive {
    border: none;
}

    .ratingLive > input {
        display: none;
    }

    .ratingLive > label:before {
        margin: 0;
        font-size: 1.25em;
        font-family: FontAwesome;
        display: inline-block;
        content: "\f005";
    }

    .ratingLive > .half:before {
        content: "\f089";
        position: absolute;
    }

    .ratingLive > label {
        color: #ddd;
        float: right;
    }


/*product-left-block*/
.product-left-block {
    border-top: 1px solid #e5e5e5;
    height: auto;
    padding: 20px 10px;
    width: 100%;
}

    .product-left-block .product-top-panel, .product-item .product-top-panel {
        position: relative;
        background-color: #FFFFFF;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        --webkitdisplay: flex;
        --webkitalign-items: flex-start;
        --moz-display: flex;
        --moz-align-items: flex-start;
        padding: 5px 0;
    }

    .product-left-block .product-top-panel-brand, .product-item .product-top-panel-brand {
        margin-left: auto;
        position: absolute;
        top: 5px;
        right: 20px;
        z-index: 2;
    }

        .product-left-block .product-top-panel-brand img {
            /*width: auto;
    height: auto;
    max-height: 50px;
    max-width: 110px;*/
            max-width: 100%;
            min-height: 50px;
            max-height: 50px;
            object-fit: contain;
            position: relative;
            margin: 0 auto;
            padding: 0;
            display: block;
        }

        .product-item .product-top-panel-brand img {
            /*width: auto;
    height: auto;
    max-height: 50px;
    max-width: 110px;*/
            max-width: 100%;
            min-height: 50px;
            max-height: 50px;
            object-fit: contain;
            position: relative;
            margin: 0 auto;
            padding: 0;
            display: block;
        }


    .product-left-block .product-slider {
        height: auto;
        background-color: #FFFFFF;
        width: 100%;
    }

        .product-left-block .product-slider .lSSlideWrapper {
            height: auto;
        }

        .product-left-block .product-slider .lightSlider img {
            max-width: 100%;
            min-height: 350px;
            max-height: 450px;
            object-fit: contain;
            position: relative;
            margin: 0 auto;
            padding: 10px;
            display: block;
        }

    .product-left-block .product-left-block-item {
        background-color: #FFFFFF;
        border-bottom: 5px solid #e5e5e5;
        padding: 15px;
        margin-top: 10px;
    }

    .product-left-block .product-left-block-item {
        margin-top: 10px;
    }


/*product-right-block*/
.product-right-block {
    background-color: #f7f7f7;
    border-top: 1px solid #e5e5e5;
    height: auto;
    padding: 0 10px 10px 10px;
    width: 100%;
}

    .product-right-block .product-right-block-item {
        background-color: #FFFFFF;
        border-bottom: 1px solid #e5e5e5;
        padding: 15px;
        margin-top: 10px;
    }



    .product-right-block .rcb-title {
        font-size: 18px;
        line-height: 1.3;
    }

    .product-right-block .rcb-rating {
        font-size: 13px;
        display: flex;
        padding-top: 15px;
        text-align: left;
    }

    .product-right-block .rcb-brand {
        padding-top: 5px;
        font-size: 15px;
        color: #828282;
    }

        .product-right-block .rcb-brand .rcb-brand-value {
            color: #0b4b7d;
            font-weight: bold;
        }

    .product-right-block .rcb-country {
        padding-top: 5px;
        font-size: 15px;
        color: #828282;
    }

        .product-right-block .rcb-country .rcb-country-value {
            color: #000000;
        }

    .product-right-block .rcb-brand-code {
        padding-top: 5px;
        color: #828282;
        font-size: 15px;
    }

        .product-right-block .rcb-brand-code .rcb-brand-code-value {
            color: #000000;
        }

    .product-right-block .rcb-available {
        padding-top: 15px;
        font-size: 14px;
    }

    .product-right-block .rcb-available-order {
        padding-top: 10px;
        font-size: 14px;
        width: auto;
    }

        .product-right-block .rcb-available-order .rcb-available-order-text {
            background-color: #fbb601;
            color: white;
            padding: 5px 5px;
        }

    .product-right-block .rcb-available .able-text {
        color: #0f902e;
        padding-left: 5px;
    }

    .product-right-block .rcb-available .not-able-text {
        color: #fa0012;
        padding-left: 5px;
    }

        .product-right-block .rcb-available .not-able-text:hover {
            text-decoration: underline;
            cursor: pointer;
        }


    .product-right-block .rcb-price {
        padding-top: 20px;
    }

        .product-right-block .rcb-price .rcb-price-relevant {
            background-color: #f7e86c;
            border-radius: 7px;
            padding: 5px 8px;
            font-weight: bold;
            -webkit-border-radius: 7px;
        }

            .product-right-block .rcb-price .rcb-price-relevant.price-none {
                background-color: #eee;
                color: #999;
            }

    .product-right-block .rcb-buttons {
        padding-top: 25px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        align-items: center;
    }

        .product-right-block .rcb-buttons .rcb-buttons-fav {
            border-right: 1px solid #e9e9e9;
            display: flex;
            padding-right: 14px;
            padding-left: 14px;
            justify-items: center;
            align-items: center;
        }

        .product-right-block .rcb-buttons .rcb-buttons-cart {
            border-right: 1px solid #e9e9e9;
            display: flex;
            padding-right: 14px;
            justify-items: center;
            align-items: center;
        }

        .product-right-block .rcb-buttons .rcb-buttons-cart-now {
            padding-left: 14px;
            display: flex;
            justify-items: center;
            align-items: center;
        }



        .product-right-block .rcb-buttons button {
            background-color: #E04900;
            border: 1px #E04900 solid;
            color: #FFFFFF;
            font-size: 16px;
            padding-left: 12px;
            cursor: pointer;
            padding-right: 12px;
            line-height: 28px;
        }

            .product-right-block .rcb-buttons button:disabled {
                background-color: #B47B60;
                border-color: #B47B60;
                cursor: default;
            }

        .product-right-block .rcb-buttons .rcb-buttons-cart-now button {
            background-color: #ff2f00;
            border: 1px #ff2f00 solid;
            color: #FFFFFF;
            font-size: 16px;
            padding-left: 12px;
            cursor: pointer;
            padding-right: 12px;
            line-height: 28px;
        }


        .product-right-block .rcb-buttons button.price-none {
            background-color: #eee;
            border: 1px #999 solid;
            color: #999;
        }

    .product-right-block .rcb-info {
        font-size: 14px;
    }

    .product-right-block .rcb-banner img {
        height: 120px;
        width: 100%;
    }

    .product-right-block .rcb-banner-gut-meister img {
        height: 150px;
        margin: 0 auto;
        position: relative;
        display: block;
        /*width: 100%;*/
    }

/*sidebar*/
.sidebar {
    /*border: 1px #dfdfdf solid;*/
    font-size: 14px;
}

.sidebar-content {
    padding-bottom: 15px;
}

.sidebar .sidebar-block {
    padding-top: 15px;
    border-bottom: 1px solid #CCCCCC;
}

    .sidebar .sidebar-block.first-row {
        padding-top: 0px;
    }

.sidebar .f-price {
    width: 100%;
}

.sidebar .sidebar-block-title {
    color: #0b4b7d;
    padding: 5px;
}

.toggle-button {
    background: none;
    border: none;
    padding: 0 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.toggle-text {
    font-size: 14px;
    color: #0b4b7d;
}

.sidebar-block-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.arrow-icon {
    width: 16px;
    height: 16px;
    color: #0b4b7d;
    position: relative;
    transition: transform 0.3s ease;
    top: 1px;
}

.sidebar .sidebar-prices-slider {
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
}


.sidebar .sidebar-prices {
    display: flex;
    justify-content: start;
    padding-bottom: 10px;
}


.sidebar input.f-price {
    background-color: #FFFFFF;
    border: 1px solid #a09fa1;
    box-sizing: border-box;
    color: #a09fa1;
    display: block;
    cursor: text;
    font-size: 14px;
    height: 27px;
    line-height: 25px;
    outline: none;
    padding: 0px 10px 0px 10px;
    transition: 200ms;
    width: 60px;
}

.sidebar button.btn-apply {
    border: 1px solid #0f902e;
    background-color: #0f902e;
    box-sizing: border-box;
    color: #FFFFFF;
    display: block;
    cursor: pointer;
    font-size: 14px;
    line-height: 25px;
    margin-left: 0px;
    outline: none;
    padding: 0px 10px 0px 10px;
    transition: 200ms;
    text-transform: uppercase;
    width: 100%;
}

.sidebar .sidebar-prices-item {
    padding: 5px;
}

.sidebar .sidebar-vendor {
    padding: 5px;
}

.sidebar .sidebar-country {
    padding: 5px;
}

.sidebar input.f-brand, .sidebar input.f-country {
    position: relative;
    top: 1px;
    cursor: pointer;
}

.sidebar label.f-brand-label, .sidebar label.f-country-label {
    padding-left: 7px;
    cursor: pointer;
}

.sidebar div.filter-block-h.search-description-li-hidden {
    display: none;
}

    .sidebar div.filter-block-h.search-description-li-hidden.show {
        display: block;
    }

.sidebar div.filter-block-h.search-description-li-toggle {
    color: #047dbc;
    list-style: none;
    padding-top: 5px;
    font-size: 13px;
    cursor: pointer;
}

    .sidebar div.filter-block-h.search-description-li-toggle:hover {
        text-decoration: underline;
    }

/*filter-delete*/

.shop-clear-filters ul {
    list-style: none;
    line-height: normal;
    margin: 0;
    padding: 0 0 15px 0;
    text-align: left;
    display: flex;
    justify-content: start;
}

    .shop-clear-filters ul li {
        position: relative;
        padding-right: 5px;
    }

        .shop-clear-filters ul li p {
            border: 1px #CCCCCC solid;
            /*border-radius: 5px;*/
            color: inherit;
            cursor: pointer;
            font-size: 12px;
            margin: 0;
            padding-left: 5px;
            padding-right: 5px;
            padding-top: 4px;
            padding-bottom: 4px;
            text-decoration: none;
            -webkit-radius: 5px;
        }



            .shop-clear-filters ul li p.last {
                border: 1px #e3000f solid;
                color: #e3000f;
            }

            .shop-clear-filters ul li p span {
                margin: 0;
                padding-left: 5px;
                color: #e3000f;
                font-weight: bold;
                display: inline;
            }

.product-right-block .rcb-buttons .rcb-buttons-cart-now button.add-content-cart-now-sec {
    display: none;
}

/*productdescription*/
#productdescription-content {
    padding: 15px 0 15px 0;
}

#productdescription .productdescription-title {
    font-size: 19px;
    padding-bottom: 15px;
    font-weight: bold;
}

#productdescription .productdescription-item {
    font-size: 14px;
    /*padding-bottom: 7px;
    padding-right: 7px;
    border-bottom: 1px solid #E5E5E5;
    border-right: 2px solid #E5E5E5;
    margin: 0 10px 0 0;*/
    text-align: justify;
    overflow: hidden;
}

.read-more-button {
    background-color: #e9e9e9;
    border: 0px #B81D22 solid;
    border-radius: 5px;
    color: #000000;
    font-size: 16px;
    padding: 0.5em 1em 0.5em 1em;
    cursor: pointer;
    line-height: 24px;
    margin-top: 0.25em;
    width: 100%;
}

.read-all-reviews-btn {
    border: none;
    background-color: rgba(229, 229, 229, 1);
    border-radius: 7px;
    width: 100%;
    padding: 5px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#photo-slider img {
    max-width: 100%;
    min-height: 350px;
    max-height: 450px;
    object-fit: contain;
    position: relative;
    margin: 0 auto;
    padding: 10px;
    display: block;
}

@media only screen and (max-width:406px) {
    .product-right-block .rcb-buttons .rcb-buttons-cart-now button.add-content-cart-now-sec {
        display: block;
    }

    .product-right-block .rcb-buttons .rcb-buttons-cart-now button.add-content-cart-now-fir {
        display: none;
    }

    .product-right-block .rcb-buttons .rcb-buttons-fav {
        padding-right: 10px;
        padding-left: 10px;
    }

    .product-right-block .rcb-buttons .rcb-buttons-cart {
        padding-right: 10px;
    }

    .product-right-block .rcb-buttons .rcb-buttons-cart-now {
        padding-left: 10px;
    }
}

@media only screen and (max-width:305px) {
    .product-right-block .rcb-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

        .product-right-block .rcb-buttons .rcb-buttons-cart {
            border: none;
            margin: 0;
            padding: 0 0 10px 0;
        }

        .product-right-block .rcb-buttons .rcb-buttons-fav {
            border: none;
            margin: 0;
            padding: 0 0 10px 0;
        }

        .product-right-block .rcb-buttons .rcb-buttons-cart-now {
            margin: 0;
            padding: 0;
        }
}

.price-buy-wrapper-desktop {
    display: block;
}

.price-buy-wrapper-mobile {
    display: none;
}

#desktop-advantages-img {
    display: block;
    width: 100%;
}

#mobile-advantages-img {
    display: none;
}

@media(max-width:991px) {
    .product-left-block .product-left-block-item {
        margin-top: 0px;
        padding-top: 5px;
    }

    .price-buy-wrapper-desktop {
        display: none;
    }

    .price-buy-wrapper-mobile {
        display: block;
    }

    #desktop-advantages-img {
        display: none;
    }

    #mobile-advantages-img {
        display: block;
        width: 100%;
    }
}




/***** CSS Magic to Highlight Stars on Hover *****/

.rating > input:checked ~ label, /* show gold star when clicked */
.rating-pr > input:checked ~ label, /* show gold star when clicked */
.rating1:not(:checked) > label:hover, /* hover current star */
.rating1:not(:checked) > label:hover ~ label {
    color: #FFD700;
}
/* hover previous stars in list */

.rating1 > input:checked + label:hover, /* hover current star when changing rating */
.rating1 > input:checked ~ label:hover,
.rating1 > label:hover ~ input:checked ~ label, /* lighten current selection */
.rating1 > input:checked ~ label:hover ~ label {
    color: #FFED85;
}



/***** CSS Magic to Highlight Stars on Hover *****/

.ratingLive > input:checked ~ label, /* show gold star when clicked */
.ratingLive:not(:checked) > label:hover, /* hover current star */
.ratingLive:not(:checked) > label:hover ~ label {
    color: #FFD700;
}
    /* hover previous stars in list */

    .ratingLive > input:checked + label:hover, /* hover current star when changing rating */
    .ratingLive > input:checked ~ label:hover,
    .ratingLive > label:hover ~ input:checked ~ label, /* lighten current selection */
    .ratingLive > input:checked ~ label:hover ~ label {
        color: #FFED85;
    }
