.productCat{
    margin-bottom: 50px;
}
.productCat .img{
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}
.productCat .img img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    transition: -webkit-transform 4s cubic-bezier(0,.6,.45,1);
    transition: transform 4s cubic-bezier(0,.6,.45,1);
    transition: transform 4s cubic-bezier(0,.6,.45,1), -webkit-transform 7s cubic-bezier(0,.6,.45,1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.productCat:hover .img img{
    -webkit-transform:translate(-50%, -50%) scale(1.15);
    -ms-transform:translate(-50%, -50%) scale(1.15);
    -o-transform:translate(-50%, -50%) scale(1.15);
    transform:translate(-50%, -50%) scale(1.15);
}
.productCat .tend{
    padding: 10px;
    border-left: solid 2px #1591cd;
}
.productCat .tend a{

    text-transform: uppercase;
    font-weight: bold;
    display: block;
    padding-left: 15px;
    border-left: solid 1px #1591cd;
    font-size: 14px;
    line-height: 22px;
}
/*=====================================================*/
.product{
    margin-bottom: 30px;
    position: relative;
}
.product .wrap{
    border:solid 1px rgba(0,0,0,0.15);
    margin-bottom: 20px;
}
.product .img{
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}
.product .img img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.product:hover .img img{
    -webkit-transform: translate(-50%, -50%)  scale(1.05);
    -ms-transform: translate(-50%, -50%) scale(1.05);
    -o-transform: translate(-50%, -50%) scale(1.05);
    transform: translate(-50%, -50%) scale(1.05);
}
.product .tend{
    margin-bottom: 10px;
}
.product .tend a{
    display: block;
    font-size: 15px;
    line-height: 23px;
    height:46px;
    overflow: hidden;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.1px;
}
.product .tend a span{
    display: block;
}
.product:hover .tend a{
    color:#1591cd;
}
.product .price{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product .price .red{
    font-size: 16px;
    line-height: 24px;
    color:#e5523e;
    font-weight: bold;
    margin:0 5px;
}
.product .price .nor{
    font-size: 13px;
    line-height: 21px;
    color:#999999;
    text-decoration: line-through;
    margin:0 5px;
}
.product .price.vm{
    justify-content: flex-start;
}
.product .price.vm .price{

}
.product .ribbon{
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    pointer-events: none;
}
.product .ribbon .rib{
    font-size: 12px;
    color: #ffffff;
    line-height: 25px;
    padding: 0 5px;
    border-radius: 5px;
    margin-bottom: 5px;
}
.product .pc{
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    pointer-events: none;
    width: 40px;
    height: 40px;
    background: #ef5926;
    border-radius: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 12px;
    line-height: 40px;
    font-weight: bold;
    pointer-events: none;
}
/*============================================================*/
.productTools{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 35px;
}
.productTools .gridT{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.productTools .gridT .col{
    margin-left: 10px;
}
.productTools .gridT .col:first-child{
    margin-left: 0;
}
.filter{
    position: relative;
}
.filter .txt{
    font-size: 13px;
    line-height: 21px;
    color: #333333;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.filter .icon {
    background: #f5f5f5;
    width: 170px;
    padding: 11px 15px;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 25px;
}
.filter .icon1{
    width: 130px;
}
.filter .icon2  {
    width: 85px;
}
.filter .icon:before{
    content: "\f0dc";
    font-family: fontAwesome;
    position: absolute;
    right:15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.filter .content{
    padding: 10px 15px;
    background: #f6f6f6;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.15);
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 2;
    min-width: 250px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.filter .content2{
    left: initial;
    right: 0;
    min-width: 200px;
}
.filter.active .content{
    opacity: 1;
    visibility: initial;
    pointer-events: auto;
}
.myCheckbox input{
    display: none;
}
.myCheckbox {
    padding-left: 15px;
    position: relative;
    margin-bottom: 5px;
    cursor: pointer;
}
.myCheckbox:hover{
    color: #ffcc00;
}
.myCheckbox:before{
    content: "\f096";
    font-family: FontAwesome;
    position: absolute;
    left: 0px;
    top: 0;
    font-size: 13px;
    line-height: 21px;
    color:#999999;
}
.myCheckbox.active:before{
    content: "\f14a";
    color: #ffcc00;
}
.myCheckbox span{
    color:#999999;
}
/*==================THUMBNAIL====================*/
.productWrap{
    margin-bottom: 30px;
    
}
.productThumbnail{
    margin-bottom: 25px;
    
}
div#thumbnail-for{
    margin-bottom:16px;
    border: 1px solid rgba(0,0,0,0.1);
}
div#thumbnail-for .img {
    padding-top: 100%;
    overflow: hidden;
    position: relative;
  
}
div#thumbnail-for img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}
div#thumbnail-for .slick-arrow{
    width:40px;
    height:40px;
    background: rgba(0,0,0,0.35);
    border:none;
    font-size: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    color: #ffffff;
    border-radius: 5px;
}
div#thumbnail-for .slick-prev{
    left:10px;
}
div#thumbnail-for .slick-next{
    right:10px;
}
div#thumbnail-for .slick-arrow:before{
    font-family: FontAwesome;
    position: absolute;
    font-size: 30px;
    line-height: 40px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
div#thumbnail-for .slick-prev:before{
    content: "\f104";
}
div#thumbnail-for .slick-next:before{
    content: "\f105";
}
div#thumbnail-for .slick-arrow:hover{
    color:#1591cd;
}
#thumbnail-nav .slick-track{
    margin: 0;
}
div#thumbnail-nav .slick-list{
    margin:0 -8px;
}
div#thumbnail-nav .item{
    padding:0 8px;
}
div#thumbnail-nav .item .img{
    cursor: pointer;
    position: relative;
    padding-top: 100%;
}
div#thumbnail-nav .item .img img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 70%;
    max-height: 70%;
}
div#thumbnail-nav .slick-slide.slick-current .img{
    position: relative;
}
div#thumbnail-nav .item .img:before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    border: solid 1px rgba(0,0,0,0.1);
}
div#thumbnail-nav .slick-slide.slick-current .img:before{
    border: solid 2px #1591cd;
}
/*========================================================*/
.the-wrap{
    padding: 20px 25px;
    background: #f6f6f6;
}
.the-title{
    font-size: 25px;
    line-height: 33px; 
    font-weight: 600;

    margin-bottom: 25px;
}
.the-title h1,
.the-title h2{
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}
.the-attr ul li{
    margin-bottom: 15px;
}
.the-attr .at{
    width: 100px;
    float: left;
}
.the-attr .as{
    overflow: hidden;
    color:#555555;
}
.the-attr ul li.nofloat .at{
    float: none;
    margin-bottom: 5px;
}

.the-detail {
    margin-bottom: 5px;
}
.the-detail .title {
    color: #dc0064;
    margin-bottom: 10px;
}
.the-detail .row-info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.the-detail .row-info .attr-name {
    width: 120px;
    font-weight: 700;
    position: relative;
  
}
.the-detail .row-info .attr-name::after {
    position: absolute;
    content: ':';
    right: 0;
    top: 0;
}
.the-detail .row-info .attr-value {
    padding-left: 20px;
    overflow: hidden;
}
.the-detail .attr-value .img-star{
    display: flex;
    align-items: center;
    align-content: center;
}
.the-detail .attr-value .img-star li{
    font-size: 15px;
    line-height: 18px;
    color: #ffcc00;
    margin-right: 5px;
}
.the-detail .price {
    font-size: 16px;
    line-height: 25px;
    font-weight: bold;
    color: #e5523e;
}
.the-detail .row-info .attr-value .the-price .red{
    font-size: 14px;
}
.the-detail .price_old {
    text-decoration: line-through;
    margin-left: 5px;
    color: #999999;
    font-size: 12px;
}
.the-detail .vat {
    display: inline-block;
    font-size: 12px;
    line-height: 20px;
    background: #d10000;
    color: #ffffff;
    padding: 3px 21px;
}
.the-price{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.the-price .red{
    font-size: 26px;
    line-height: 34px;
    font-weight: bold;
    color: #ff0000;
    margin-right: 10px;
}
.the-price .nor{
    font-size: 18px;
    line-height: 26px;
    color: #888888;
    text-decoration: line-through;
}
.the-select ul{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.the-select ul li {
    margin-right: 10px;
    margin-bottom: 5px;
    background: #ffffff;
    border: solid 1px #dddddd;
    color: #555555;
    padding: 5px 16px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    cursor: pointer;
}
.the-select ul li:hover,
.the-select ul li.active{
    border-color: #1591cd;
}
.the-select ul li input{
    display: none;
}
.the-des p{
    padding: 0;
    padding-left: 15px;
    position: relative;
    color: #666666;
}
.the-des p:before{
    content: "\f111";
    font-family: FontAwesome;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 5px;
    line-height: 22px;
}
.the-quantity{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.the-quantity .txt{
    font-weight: 500;
    margin-right: 10px;
}
.the-quantity .quantity{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.the-quantity .quantity button{
    background: aliceblue;
    border:none;
    width: 30px;
    height: 35px;
    background: #dddddd;
}
.the-quantity .quantity input{
    width: 85px;
    height: 36px;
    border: solid 1px #00000017;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}
.productButton .button{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
}
.the-button{
    margin-bottom: 25px;
}
.the-button button{
    width: 250px;
    height: 50px;
    background: #1591cd;
    color: #ffffff;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: bold;
    border:none;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.the-button button span{

    position: relative;
}
/* .the-button button span:before{
    content: "\f291";
    font-family: fontAwesome;
    position: absolute;
    left:0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
} */
.the-button button:hover{
    background: #333333;
}
.the-share ul{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.the-share ul li{
    margin-right: 10px;
}
/*============================================================*/
.affixWrap{
    position: absolute;
    right: 100%;
    margin-right: 10px;
    width: 100px;
}
.affixProduct ul li{
    margin-bottom: 10px;
}
.affixProduct ul li a {
    display: block;
    width: 100px;
    height: 100px;
    background: #f4f4f4;
    text-transform: uppercase;
    position: relative;
    font-weight: bold;
    color:#333333;
}
.affixProduct ul li a span{
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width:95%;
    text-align: center;
}
.affixProduct ul li.active a{
    background: #1591cd;
    color:#ffffff;
}
.productContent{
    position: relative;
    margin-bottom: 10px;
}
.boxProduct{
    margin-bottom: 30px;
}
.boxProduct .title{
    font-size: 25px;
    line-height: 33px;
    font-weight: bold;

    text-transform: uppercase;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: solid 3px #f6f6f6;
    position: relative;
}
.boxProduct .title:before{
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 200px;
    border-bottom: solid 3px #1591cd;
}
/*==================================================*/
.theOther .title{
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: solid 1px rgba(0,0,0,0.15);
    position:relative;
}
.theOther .title:before{
    content:"";
    position:absolute;
    bottom:-1px;
    left:0;
    width:55px;
    border-bottom:solid 3px #1591cd;
}
.theOther .title h2{
    font-size: 26px;
    line-height: 36px;
    text-transform: uppercase;

}
.theOther ul li{
    padding-left: 15px;
    position: relative;
    margin-bottom: 10px;
}
.theOther ul li:before{
    content: "\f0da";
    font-family: fontAwesome;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 14px;
    line-height: 22px;
    color:#999999;
}
.theOther ul li a{
    font-size: 15px;
    line-height: 23px;
}
.theOther ul li a span{
    font-size: 14px;
    line-height: 22px;
    color:#999999;
}
#slideOther .slick-list{
    margin: 0 -15px;
}
#slideOther .item{
    padding: 0 15px;
}
#slideOther .slick-arrow {
    position: absolute;
    right: 0;
    top: -80px;
    background: #e5e5e5;
    border: none;
    font-size: 0;
    width: 40px;
    height: 40px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 2;
}
#slideOther .slick-prev{
    margin-right: 45px;
}
#slideOther .slick-arrow:before{
    font-family: FontAwesome;
    font-size:20px;
    line-height: 28px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#slideOther .slick-prev:before{
    content:"\f104";
}
#slideOther .slick-next:before{
    content:"\f105";
}
#slideOther .slick-arrow:hover{
    background: #1591cd;
}
#slideOther .slick-arrow:hover:before{
    color:#ffffff;
}
#slideOther .service{
    margin-bottom: 0;
}

/*  */
.boxFilter{
	background: #fff;
	margin-bottom: 20px;
	overflow: hidden;
}
.boxFilter .title{
	text-transform: uppercase;
	font-weight: bold;
	padding: 8px 20px;
	background-color: #134f5c;
	color: #fff;
	font-size: 16px;
    line-height: 24px;
    position: relative;
    padding-right: 30px;
}
.boxFilter .title::before{
    font-family: FontAwesome;
    content: '\f0c9';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-weight: 400;
    font-size: 18px;
}
.boxFilter .filterPrices{
	padding: 10px 20px;
	border: 1px solid rgba(0,0,0,0.1);
	border-top: none;
}
.boxFilter .filterBrand{
	padding: 10px 20px;
	border: 1px solid rgba(0,0,0,0.1);
	border-top: none;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.boxFilter .menuProduct li{
    display: block;
    border-top: 1px solid #e5e5e5;
}
.boxFilter .menuProduct li a{
    padding: 10px 10px 10px 30px;
    position: relative;
    background-color: #f5f5f5;
    color: #000000;
    display: block;
}
.boxFilter .menuProduct li a::before{
    font-family: FontAwesome;
    content: '\f105';
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-weight: 400;
    font-size: 16px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.boxFilter .menuProduct li.active > a, .boxFilter .menuProduct li.active > .m-sub > a, .boxFilter .menuProduct li:hover > a, .boxFilter .menuProduct li:hover .m-sub > a{
    color: #fff;
    background-color: #1591cd;
}
.boxFilter .menuProduct li.active > .m-sub .button-submenu,
.boxFilter .menuProduct li:hover > .m-sub .button-submenu{
    color: #fff;
}

.boxFilter .menuProduct li .m-sub{
    position: relative;
}
.boxFilter .menuProduct li .m-sub > a{
    padding-right: 40px;
}
.boxFilter .menuProduct li .m-sub .button-submenu{
    width: 40px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    cursor: pointer;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.boxFilter .menuProduct li .m-sub .button-submenu::before{
    content: '\f107';
    font-family: FontAwesome;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.boxFilter .menuProduct li.active .m-sub .button-submenu::before{
    content: '\f106';
}
.boxFilter .menuProduct li ul{
    display: none;
}
.boxFilter .menuProduct li li:last-child{
    border-bottom: none;
}
.boxFilter .menuProduct li li a{
    background-color: #fff;
    color: #000000;
    padding-left: 45px;
}
.boxFilter .menuProduct li li a::before{
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: #000000;
    left: 30px;
}
.boxFilter .menuProduct li li:hover a, .boxFilter .menuProduct li li.active a{
    color: #1591cd;
    background-color: #fff;
}
.boxFilter .menuProduct li li:hover a::before, .boxFilter .menuProduct li li.active a::before{
    background-color: #1591cd;
}
/*==========================================================================*/
/*============================RESPONSIVE====================================*/
/*==========================================================================*/
@media all and (max-width: 1366px){
.productContent{
    padding-left: 100px;
}
.affixWrap{
    width: 80px;
    left: 0;
    right:initial;
    margin-right: 0;
}
.affixProduct ul li a{
    width: 80px;
    height: 80px;
}
}

@media all and (max-width: 991px){
    .boxFilter{
		padding: 0;
		margin-bottom: 30px;
	}
	.boxFilter .title{
		padding: 9px 15px;
		border-bottom: solid 1px rgba(0,0,0,0.1);
		margin-bottom: 0;
	}
	.filterMadein{
		overflow: auto;
	}
	.filterBrand,
	.filterPrices,
	.filterMadein,
	.filterStar{
		padding: 15px;
		display: none;
	}
	.boxFilter .title{
		position: relative;
        cursor: pointer;

	}
	.boxFilter .title:before{
		content: "\f107";
		font-family: FontAwesome;
		position: absolute;
		right:10px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.boxFilter.active .filterBrand,
	.boxFilter.active .filterPrices,
	.boxFilter.active .filterMadein,
	.boxFilter.active .filterStar{
		display: block;
	}
	.boxFilter .menuProduct{
		display: none;
	}
	.boxFilter.active .menuProduct{
		/* display: block; */
    }
    .productCat{
        margin-bottom: 25px;
    }
    .productTools{
        display: block;
    }
    .productTools .gridT{
        margin: 0 -10px;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }
    .productTools .gridT .col{
        width: 50%;
        padding: 0 10px;
        margin-left: 0;
    }
    .filter .icon{
        width: 100%;
    }
    .filter .content{
        min-width: initial;
        width: 100%;
    }
    .the-title{
        font-size: 22px;
        line-height: 30px;
    }
    .boxProduct .title{
        font-size: 20px;
        line-height: 30px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    #slideOther .slick-list{
        margin: 0 -10px;
    }
    #slideOther .item{
        padding: 0 10px;
    }
    #slideOther{
        padding-bottom: 50px;
    }
    #slideOther .slick-arrow {
        top: initial;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    #slideOther .slick-prev{
        margin-left: -25px;
    }
    #slideOther .slick-next{
        margin-left: 25px;
    }
    .productContent{
        padding-left: 0;
    }

    .productCat .tend a{
        font-size: 13px;
        line-height: 21px;
    }
    .the-wrap{
        padding: 20px;
    }
    .the-price .red{
        font-size: 20px;
        line-height: 30px;
    }
    .the-price .nor{
        font-size: 16px;
        line-height: 24px;
    }
}
@media all and (max-width: 460px){
    .product .tend a{
        font-size: 14px;
        line-height: 22px;
        height: 44px;
        overflow: hidden;
    }
}
@media all and (max-width: 370px){

    .productTools .gridT .col {
        width: 100%;
        margin-bottom: 10px;
    }
}