.panel-shops-cat{
    position: relative;
    margin-bottom: 20px;
}

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

.panel-shops-cat .shop-cat-heading:before{
    content: '';
    display: inline-block;
    width: 100%;
    height: 8px;
    background-color: #f8f8f8;
    position: absolute;
    left: 0;
    top: 50%;
    transform: scaleX(1);
    z-index: 3;
}

.panel-shops-cat .shop-cat-heading h2{
    position: relative;
    display: inline;
    background-color: #fff;
    padding: 0 28px;
    font-size: 28px;
    font-weight: 500;
    z-index: 5;
}

.panel-shops-cat .shop-cat-heading a{
    color: #222;
}

.product-item-inner{
    position: relative;
    border-radius: 8px;
    outline: 1px solid #ebebeb;
    outline-offset: -1px;
    padding: 1px;
    margin-bottom: 30px;
    transition: outline-color .3s ease-in-out;
}

.product-item-inner:hover{
    outline-color: transparent;
}

.product-item-inner:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-image: repeating-linear-gradient(to right,#66bc89 0,#66bc89 4px,transparent 0,transparent 100%),repeating-linear-gradient(to right,#66bc89 0,#66bc89 4px,transparent 0,transparent 100%),repeating-linear-gradient(to bottom,#66bc89 0,#66bc89 4px,transparent 0,transparent 100%),repeating-linear-gradient(to bottom,#66bc89 0,#66bc89 4px,transparent 0,transparent 100%);
    background-position: left top,left bottom,left top,right top;
    background-repeat: repeat-x,repeat-x,repeat-y,repeat-y;
    background-size: 8px 1px,8px 1px,1px 8px,1px 8px;
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

.product-item-inner:hover:after{
    opacity: 1;
}

.add_to_cart_button:before{
    content: "\f223";
    font-family: Kiko;
    font-weight: 300;
    font-size: 15px;
    line-height: 0;
    position: relative;
    top: 2px;
    right: 3px;
    margin-left: 2px;
    display: inline-block;
}

.order_cart_button:before{
    content: "\f209";
    font-family: Kiko;
    font-weight: 300;
    font-size: 15px;
    line-height: 0;
    position: relative;
    top: 2px;
    right: 3px;
    margin-left: 2px;
    display: inline-block;
}

.product-item-inner .product-item-thumb{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 280px;
}

.product-item-inner .product-item-thumb img{
    max-width: 100%;
    max-height: 200px;
    width: auto;
}

.product-item-inner span.label{
    position: absolute;
    top: 11px;
    right: 11px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    padding: 2px;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    background-color: #f2f2f2;
    color: #1fa06a;
}

.product-item-inner a.link{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.product-item-inner .product-item-content{
    padding: 0 12px 26px;
}

.product-item-inner h3{
    text-align: center;
    min-height: 42px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-item-inner h3 a{
    color: #222;
    display: inline;
    position: relative;
    width: auto;
    background-image: linear-gradient(transparent calc(100% - 1px),currentColor 1px);
    background-image: -ms-linear-gradient(transparent 95%,currentColor 1px);
    background-repeat: no-repeat;
    background-size: 0 100%;
    background-position: 0 -2px;
    transition: all .3s ease-out;
    z-index: 5;
}

.product-item-inner:hover h3 a{
    color: #1fa06a;
    background-size: 100% 100%;
}

.product-item-inner .price{
    margin: 10px 0;
    text-align: center;
}

.product-item-inner .money{
    color: #f81111;
    font-size: 18px;
}

.product-item-inner .discounts_money{
    color: #657384;
    font-size: 16px;
    margin-left: 5px;
    text-decoration-line: line-through;
}

.product-item-inner .wishlist{
    display: flex;
    justify-content: space-evenly;
    margin-top: 15px;
    font-size: 13px;
    text-transform: uppercase;
}

.product-item-inner .wishlist a{
    color: #555;
    transition: 0.4s all;
    z-index: 10;
}

.product-item-inner .wishlist a:hover{
    color: #1fa06a;
}

.product-item-inner .wishlist a:before{
    content: "\f147";
    font-family: Kiko;
    font-weight: 300;
    font-size: 14px;
    line-height: 0;
    position: relative;
    top: 2px;
    right: 3px;
    margin-left: 2px;
    display: inline-block;
}

.product-item-inner .wishlist a:last-child:before{
    content: "\f171";
}

.product-item-inner .wishlist .disabled{
    cursor: not-allowed;
}

.product-item-inner .wishlist .disabled:before{
    color: #66bc89;
    font-weight: 600;
}

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

/*cart-box*/
.cart-box{
    position: relative;
    margin: 0 auto;
    background-color: #eeeeee9e;
    border-radius: 8px;
    padding: 20px 40px 40px;
}

.cart-box h1{
    font-weight: 500;
    margin-bottom: 20px;
    color: #000;
}

.cart-box h2{
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 15px;
}

.cart-box .product-item{
    position: relative;
    align-items: center;
    justify-content: space-evenly;
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
}

.cart-box .product-item .product-item-thumb{
    border: none;
}

.cart-box .product-item .product-item-thumb img{
    width: 100px;
}

.cart-box .product-item h3{
    font-size: 18px;
    font-weight: 400;
}

.cart-box .product-item .product-item-content{
    width: 70%;
}

.cart-box .product-item .product-item-price{
    font-size: 16px;
    font-weight: 500;
    color: #1fa06a;
    margin: 2px 0 10px;
}

.cart-box .product-item .product-item-price del{
    font-weight: 400;
    color: #555;
}

.cart-box .product-item .product-item-price-total{
    font-size: 18px;
    font-weight: 500;
    color: #1fa06a;
}

.order-bottom{
    text-align: center;
}

.order-bottom label{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

.order-inner{
    width: 70%;
}

.order-inner .product-item .product-item-thumb{
    padding: 0;
}

.order-inner .product-item .product-item-thumb img{
    width: 55px;
}

.order-inner .product-item h3{
    font-size: 16px;
}

.order-inner .total{
    text-align: right;
    font-size: 18px;
}

.cart-quantity{
    position: relative;
}

.cart-quantity input {
    width: 100px;
    height: 40px !important;
    line-height: 40px;
    font-size: 16px;
    float: left;
    display: block;
    padding: 0;
    margin: 0;
    padding-left: 46px;
    border: 1px solid #f3f3f3 !important;
    box-shadow: none;
}

.cart-quantity .quantity-nav{
    position: relative;
    float: left;
}

.cart-quantity .quantity-button {
    position: absolute;
    cursor: pointer;
    border-left: 1px solid #eee;
    width: 30px;
    text-align: center;
    color: #333;
    font-size: 15px;
    line-height: 40px;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.cart-quantity .quantity-button.quantity-up{
    border-bottom: none;
}

.cart-quantity .quantity-button.quantity-down {
    left: -68px;
    line-height: 40px;
    border-right: 1px solid #eee;
    border-left: none
}

.cart-total-inner .total{
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-align: right;
}

.cart-total-inner .total #total{
    font-size: 20px;
    color: #ff2525;
}

.cart-total-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.product-short-description h1{
    font-size: 24px;
    margin-bottom: 6px;
}

.product-short-description .info-code{
    font-size: 16px;
}

.product-short-description .info-code span{
    color: #1fa06a;
    margin: 0 5px;
    font-weight: 500;
}

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

.product-one-image{
    position: relative;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.product-price .info-price{
    color: #eb1c24;
    font-size: 30px;
    font-weight: 500;
    margin: 0;
}

.product-price .info-price span{
    color: #333;
    font-size: 14px;
    font-weight: 400;
}

.product-price ul{
    margin: 0;
    padding: 0;
}

.product-price ul li:first-child span{
    color: #eb1c24;
}

.order-number{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.order-number span{
    margin-right: 15px;
}

.quantity {
    position: relative;
    display: flex;
    margin-right: 20px;
}

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;
}

hr{
    margin: 12px 0;
}

.quantity input {
    width: 50px;
    height: 46px;
    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: 46px;
    text-align: center;
    color: #333;
    line-height: 45px;
    -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: 8px;
    border-bottom-left-radius: 8px;
}

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

.info-customs .ctit-template{
    font-weight: 500;
    font-size: 16px;
    color: #1fa06a;
    margin-bottom: 8px;
}

.info-customs .clist-template{
    list-style: disc;
    padding-left: 15px;
}

.info-customs .clist-template li{
    margin-bottom: 4px;
}

.info-customs .clist-template .csp{
    padding: 0 8px
}

.product-order{
    display: flex;
}

.product-order .button{
    margin: 0 10px;
    min-width: 160px;
    text-align: center;
    padding: 14px 25px;
}

.product-order .order-cart{
    background-color: #f44336;
}

.content-body{
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.content-body .heading{
    color: #1fa06a;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.keywords{
    border-top: 1px solid #eee;
    padding: 12px 0;
    font-size: 14px;
}

.keywords a{
    position: relative;
    display: inline-block;
    background-color: #edf0f3;
    padding: 4px 10px;
    margin: 0 4px;
    border-radius: 20px;
    font-size: 13px;
    color: #333;
}

.heading-other{
    margin-top: 30px;
}

.gen-page{
    display: inline-block;
    width: 100%;
}

#coupons_info{
    margin-top: 12px;
}

@media (max-width: 767.98px){

    .panel-shops-cat .shop-cat-heading h2{
        padding: 0 16px;
        font-size: 24px;
    }

    .product-item-inner .wishlist{
        display: block;
    }

    .product-item-inner .wishlist span{
        display: none;
    }

    .product-item-inner .wishlist a{
        margin: 0 3px;
    }

    .product-item-inner .wishlist a:before{
        font-size: 17px;
    }

    .cart-box{
        padding: 20px 10px 40px;
    }

    .cart-total-bottom{
        display: block;
    }

    .cart-total-bottom .cart-order{
        margin: 20px auto 0;
        text-align: center;
    }

    .cart-box .product-item{
        display: block;
        text-align: center;
    }

    .cart-box .product-item .product-item-thumb{
        margin: 0;
    }

    .cart-box .product-item .product-item-content{
        width: 100%;
    }

    .cart-box .product-item h3{
        font-size: 15px;
    }

    .cart-box .product-item .product-item-price-total{
        display: none;
    }

    .cart-box .cart-quantity{
        display: inline-block;
    }

    .cart-box .remove_cart{
        position: absolute;
        top: 20px;
        right: 30px;
        color: #fff;
        height: 35px;
        width: 35px;
        background-color: #9a9a9a;
        border-radius: 50%;
        text-align: center;
        line-height: 35px;
    }

    .order-inner{
        width:100%;
    }

    .product-order{
        display: block;
    }

    .product-order .order{
        display: flex;
        justify-content: space-between;
        margin-top: 15px;
    }

    .product-order .button{
        padding: 12px 15px
    }

}

