.top-products {}

.top-products .top-slick-list {}

.top-products .top-slick-list .owl-stage {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-width: 100%;
    justify-content: space-between;
    align-items: flex-start;
}

.top-products .top-slick-list .owl-stage .owl-item {
    flex: 0 0 31%;
    width: 31%
}

.top-products .top-slick-list [class*="owl-carousel"] .group {
    flex: 0 0 31%
}

.top-products .top-slick-list [class*="owl-carousel"] .owl-item .group {
    flex: 0 0 100%;
    width: 100%;
    display: inline-block;
}

.top-products [class*="owl-carousel"] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.top-products .top-slick-list .slick-slide {
    flex: 0 0 31%;
    margin: 15px 0;
}

.top-products .product {
    display: flex;
    align-items: center
}

.top-products .product .image {
    flex: 0 0 70px;
    margin-left: 25px;
    min-height: 100px;
    display: flex;
    align-items: center;
}

.top-products .product .counter {
    font-size: 27px;
    font-weight: 700;
    color: #87b63f;
    margin-left: 25px
}

.top-products .product .brief-data {
    position: relative;
    min-height: 70px;
    flex: 1;
}

.top-products .product .brief-data:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 1px dashed #e0e0e0;
    width: 100%;
    bottom: -12px;
}

.top-products .product .price-wrapper .regular-price:after {
    color: #87b63f
}

.top-products .product .price .amount bdi,
.top-products .product .price .amount bdi * {
    color: #87b63f;
    font-size: 14px
}

.top-products .product .title a {
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.top-products .owl-theme .owl-dots { width: 100%; }
.top-products .owl-theme .owl-nav { display:none !important; }


.top-products .owl-theme .owl-dots .owl-dot.active span, 
.top-products .owl-theme .owl-dots .owl-dot:hover span { background: #87b63f; }


@media screen and (max-width:1200px) {
    .top-products .top-slick-list [class*="owl-carousel"] .group {
        flex: 0 0 31%
    }
}

@media screen and (max-width:950px) {
    .top-products .top-slick-list [class*="owl-carousel"] .group {
        flex: 0 0 48%
    }

    .top-products .top-slick-list [class*="owl-carousel"] .group:nth-child(2)~.group {
        display: none
    }

}

@media screen and (max-width:700px) {
    .top-products .top-slick-list [class*="owl-carousel"] .group {
        flex: 0 0 100%
    }

    .top-products .top-slick-list [class*="owl-carousel"] .group:nth-child(1)~.group {
        display: none
    }

}