.shops-cat-heading{
    position: relative;
    text-align: center;
    margin-bottom: 18px;
}

.shops-cat-heading:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #7db702;
    left: 0;
    top: 50%;
}

.shops-cat-heading h2{
    position: relative;
    display: inline-block;
    background-color: #7db702;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    z-index: 9;
}

.shops-cat-heading a{
    color: #fff;
}

.shops-cat-page .page-header{
    margin: 0 0 20px;
}

.product-item{
    position: relative;
    border: 1px #ebebeb solid;
    border-radius: 10px;
    overflow: hidden;
}

.product-item .item-image{
    position: relative;
    overflow: hidden;
}

.product-item .item-image img{
    width: 100%;
    height: 290px;
    object-fit: cover;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.product-item .item-image:hover img{
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    -moz-transform: scale(1.05);
}

.product-item .label{
    position: absolute;
    top: 30px;
    left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    font-size: 15px;
    font-weight: 500;
    padding: 10px;
}

.product-item .caption{
    padding: 12px 10px;
}

.product-item .caption h3{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 4px;
}

.product-item .caption .discounts_money{
    color: #666;
    font-size: 15px;
    margin-right: 8px;
    text-decoration: line-through;
}

.product-item .caption .money{
    color: #49a942;
    font-size: 17px;
    font-weight: 700;
}

.imageGallery img {
    max-width: 100%;
}

.product-info .availability{
    margin: 6px 0 10px;
}

.product-info .money{
    font-size: 22px;
    color: #fb1919;
    font-weight: 600;
}

.product-info .info-price{
    margin-bottom: 10px;
}

.rating{
    color: #808080;
    padding: 6px 0;
}

.money {
    color: #fb1919;
    font-weight: bold;
    padding: 0 5px;
    font-size: 18px;
}

.discounts_money {
    color: #5a5a5a;
    font-weight: normal;
    text-decoration: line-through;
    padding: 0 5px;
    font-size: 16px;
}

.msgshow {
    background: #F5F5F5;
    padding: 20px;
    border: 4px solid #C7C7C7;
    position: fixed;
    bottom: 0;
    right: 0;
    display: none;
    z-index: 10020 !important;
}

.quantity {
    position: relative;
    display: flex;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button
{
    -webkit-appearance: none;
    margin: 0;
}

input[type=number]
{
    -moz-appearance: textfield;
}

.quantity input {
    width: 50px;
    height: 40px;
    line-height: 1.65;
    padding: 0;
    margin: 0;
    text-align: center;
    border-top: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
    border-right: 0;
    border-left: 0;
}

.quantity input:focus {
    outline: 0;
}

.product-detail .quantity-button {
    position: relative;
    cursor: pointer;
    border: 1px solid #dbdbdb;
    width: 34px;
    height: 40px;
    text-align: center;
    color: #333;
    line-height: 40px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.product-detail .quantity-button.quantity-down{
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.product-detail .quantity-button.quantity-up{
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.order-detail{
    gap: 20px;
}

.order-detail .btn-order{
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 6px;
}

.ctit-template{
    font-size: 16px;
    color: #48a942;
}

.clist-template li{
    padding: 4px 0;
}

.clist-template .csp{
    padding: 0 6px 0 2px;
}

.tabs .nav li a{
    background-color: #7eb702;
    border-radius: 9px;
    color: #fff;
    margin-right: 15px;
}

.tabs .nav li.active a,
.tabs .nav li a:hover{
    background-color: #49a942;
}

.tab-content{
    position: relative;
    border: 1px solid #ebebeb;
    padding: 15px;
    margin: 15px 0;
    border-radius: 10px;
}

.tab-content ul{
    list-style: disc;
    padding-left: 25px;
}

.cart-box .money{
    font-size: 14px;
}

div.step_bar a.step {
    display: block;
    float: left;
    height: 32px;
    line-height: 32px;
    font-size: 12px;
    font-weight: 700;
    background: url('../images/shops/star.png') no-repeat left center;
    padding-left: 10px;
    margin-right: 10px;
}

div.step_bar a.step span {
    display: block;
    width: 32px;
    height: 32px;
    float: left;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    color: #039;
}

div.step_bar a.step_current {
    color: red;
}


@media (max-width: 767.98px) {
    .product-item .item-image img{
        height: 170px;
    }

    .product-item .caption .discounts_money{
        font-size: 14px;
    }

    .product-item .caption .money{
        font-size: 16px;
    }

    .order-detail{
        gap: 10px;
        margin-bottom: 20px;
    }

    .quantity input{
        width: 35px;
    }

    .product-detail .quantity-button{
        width: 30px
    }

    .order-detail .btn-order{
        font-size: 13px;
        padding: 10px 18px;
    }
}