/* START TOOLTIP STYLES */
[tooltip] {
  position: relative; /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none; /* opinion 2 */
  font-size: 1; /* opinion 3 */
  line-height: 1.4;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}

.wp-list-button {
    padding: 10px;
    display: flex;
    align-items:center;
    margin: 10px 0;
    background: #0d9a15;
    color: #FFF !important;
    border-radius:.33rem;
}
.wp-list-button i{
	font-size: 20px;
	padding-right: 5px;
}

.wp-detail-button{
	padding: 2px 10px;
    display: flex;
    align-items:center;
    background: #0d9a15;
    color: #FFF !important;
    border-radius:.33rem;
}
.wp-detail-button  i{
	font-size: 15px;
	padding-right: 5px;
}
.whatsapp-button{
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 99;
    background-color: #25d366;
    border-radius: 40px;
    color: #ffffff;
    text-decoration: none;
    width: 60px;
    height: 60px;
    font-size: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    -moz-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    animation: effect 5s infinite ease-in;
}

@keyframes effect {
    20%, 100% {
        width: 60px;
        height: 60px;
        font-size: 45px;
    }
    0%, 10%{
        width: 70px;
        height: 70px;
        font-size: 50px;
    }
    5%{
        width: 60px;
        height: 60px;
        font-size: 45px;
    }
}
@media(max-width:999px){
  @keyframes effect {
    20%, 100% {
      width: 50px;
      height: 50px;
      font-size: 35px;
    }
    0%, 10%{
      width: 60px;
      height: 60px;
      font-size: 50px;
    }
    5%{
      width: 50px;
      height: 50px;
      font-size: 35px;
    }
  } 

}

.product-feature{
	
	position: relative;
}
.product-feature-content{
	
	width:100%;
}
.product-feature-hidden {
	height:50px;
}
.product-feature-hidden .product-feature-content{
	height:50px;
	overflow:hidden;
	white-space: nowrap; 
	text-overflow: ellipsis;
	position:absolute;
}
.product-feature-hidden{
	height:50px;
	white-space: nowrap; 
	text-overflow: ellipsis;
}
.product-feature-continue{
	position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 5px;
    color: #000;
    font-size: 11px;
    text-decoration: revert;
    z-index: 999999;
}
.product-size-carousel h6{
	margin-top:30px;
	text-align:center;
}
[tooltip]::before {
  content: '';
  border: 5px solid transparent; /* opinion 4 */
  z-index: 1001; /* absurdity 1 */
}
[tooltip]::after {
  content: attr(tooltip); /* magic! */
  
  /* most of the rest of this is opinion */
  font-family: Helvetica, sans-serif;
  text-align: center;
  
  /* 
    Let the content set the size of the tooltips 
    but this will also keep them from being obnoxious
    */
  min-width: 25em;
  max-width: 45em;
  white-space: break-spaces;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: .3ch;
  box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
  background: #333;
  color: #fff;
  z-index: 1000; /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip='']::before,
[tooltip='']::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #333;
}
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}
[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -.5em);
}

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
}
[tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}
[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, .5em);
}

/* FLOW: LEFT */
[tooltip][flow^="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #333;
  left: calc(0em - 5px);
  transform: translate(-.5em, -50%);
}
[tooltip][flow^="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-.5em, -50%);
}

/* FLOW: RIGHT */
[tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #333;
  right: calc(0em - 5px);
  transform: translate(.5em, -50%);
}
[tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: .9;
    transform: translate(-50%, 0);
  }
}

@keyframes tooltips-horz {
  to {
    opacity: .9;
    transform: translate(0, -50%);
  }
}

/* FX All The Things */ 
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}








.m-mt-20{
	margin-top:0;
}
.p-10{
	padding:10px;
}
.p-20{
	padding:20px;
}
.installment-popup{
	max-width: 1220px !important;
	width:100% !important;
}
.pagi {
    padding: 10px;
    text-align: center;
}
.pagi a {
    display: inline-block;
    padding: 3px 11px;
    margin-right: 4px;
    margin-bottom: 5px;
    border-radius: 3px;
    border: solid 1px #c0c0c0;
    background: #e9e9e9;
    box-shadow: inset 0px 1px 0px rgba(255,255,255, .8), 0px 1px 3px rgba(0,0,0, .1);
    font-size: .975em;
    font-weight: bold;
    text-decoration: none;
    color: #717171;
    text-shadow: 0px 1px 0px rgba(255,255,255, 1);
}
.pagi  div.disabled {
    display: inline-block;
    padding: 3px 11px;
    margin-right: 4px;
    border-radius: 3px;
    margin-bottom: 5px;
    border: solid 1px #c0c0c0;
    background: #f9f9f9;
    box-shadow: inset 0px 1px 0px rgba(255,255,255, .8), 0px 1px 3px rgba(0,0,0, .1);
    font-size: .975em;
    font-weight: bold;
    text-decoration: none;
    color: #717171;
    text-shadow: 0px 1px 0px rgba(255,255,255, 1);
}
.pagi a:hover {
    background: #fefefe;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FEFEFE), to(#f0f0f0));
    background: -moz-linear-gradient(0% 0% 270deg,#FEFEFE, #f0f0f0);
}
.pagi span.current {
    display: inline-block;
    padding: 3px 11px;
    margin-right: 4px;
    border-radius: 3px;
    margin-bottom: 5px;
    border: solid 1px #c0c0c0;
    box-shadow: inset 0px 1px 0px rgba(255,255,255, .8), 0px 1px 3px rgba(0,0,0, .1);
    font-size: .975em;
    font-weight: bold;
    text-decoration: none;
    color: #717171;
    text-shadow: 0px 1px 0px rgba(255,255,255, 1);
    border: none;
    background: #616161;
    box-shadow: inset 0px 0px 8px rgba(0,0,0, .5), 0px 1px 0px rgba(255,255,255, .8);
    color: #f0f0f0;
    text-shadow: 0px 0px 3px rgba(0,0,0, .5);
}

@media(max-width:999px){
	.m-mt-20{
		margin-top:20px;
	}
	.category-banner .category-name{
		text-align:center !important;
	}
	.height-1-mob{
		height:150px !important;
	}
}
.product-installment-info {
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
    text-decoration: underline;
    cursor:pointer;
}
.installmentButton{
	position:relative;
}
.installmentButton:hover .custom-tooltip{
	opacity:1;
	visibility:visible;
	transition:.3s ease;
}
.custom-tooltip{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	right:calc(100% + 5px);
	width: 150px;
    font-size: 14px;
    font-weight: normal;
    padding: 5px;
    background-color:#3677b4;
    color:#FFF;
    border-radius:.33rem;
    text-align:center;
    opacity:0;
	visibility:hidden;
	transition:.3s ease;
}
.select-container .select-container-header, .quantity-container .quantity-container-header {
	margin-bottom:0 !important
}
.product-feature{
	border-top: 1px solid rgb(0 0 0 / 15%);
    border-bottom: 1px solid rgb(0 0 0 / 15%);
    font-size: 12px;
    padding: 2px 0;
}
.mt-10{
	margin-top:10px !important;
}
.select-container,.quantity-container {
    border-top: 2px solid rgb(0 0 0 / 5%);
    border-bottom: 2px solid rgb(0 0 0 / 5%);
    margin-top:2rem;
}
.quantity-container {
    margin-bottom:2rem;
	
}
.select-container .select-container-header,.quantity-container .quantity-container-header {
    border-bottom: 1px solid rgb(0 0 0 / 5%);
    margin-bottom: 10px;
}
.select-container .select-container-content {
    padding: 8px 5px;
    border-radius: .33rem;
    border: 3px solid rgb(220 211 210 / 32%);
    margin-bottom: 10px;
    display: table;
    width: 100%;
    cursor:pointer;
    transition: .3s ease;
}
.select-container .select-container-content.activeSelect{
	border-color:#f9cc6a;
	transition: .3s ease;
}
.select-container .select-container-content div {
    font-size: 14px;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    padding: 0px 10px;
    
}
.quantity-container .quantity-container-content {
    padding: 5px 0;
    border-bottom: 1px solid rgb(0 0 0 / 8%);
    margin-bottom: 0;
}
.quantity-container .quantity-container-content:last:child{
	border-bottom:none !important;
}
.quantity-container .quantity-container-content .col-md-3,.quantity-container .quantity-container-content .col-md-6{font-size: 12px;line-height: 2.3;}
.quantity-container .quantity-container-content .product-form{
	margin:0 !important;
}
.quantity-container .quantity-container-content .col-md-3 .input-group{
	height:3rem;
	margin:0 !important;
}
.quantity-container .quantity-container-content .col-md-3 .input-group .form-control{
	min-height:3rem !important;
}
.quantity-container .quantity-container-content .col-md-3{
	text-align:center;
}
.select-container .select-container-content.activeSelect div:first-child{
	color: #5d5d5d;
	transition: .3s ease;
}
.select-container .select-container-content div:first-child{
	border-right: 1px solid rgb(0 0 0 / 4%);
    font-weight: 600;
    color: #b3b3b3;
    transition: .3s ease;
}
.select-container .select-container-header div.col-md-6,.quantity-container .quantity-container-header div.col-md-3,.quantity-container .quantity-container-header div.col-md-6 {
    text-align: center;
    font-size: 15px;
    color: #000;
    text-transform: uppercase;
    padding: 5px 0;
}
.pricebox{
	margin-bottom:15px;
	    line-height: 1;
}
.pricebox .pricepsf{
	font-size: 2em;
	text-decoration:line-through;
	    color: #a7a7a7;
}
.pricebox .pricenormal{
	font-size: 3em;
    letter-spacing: 2px;
    color: #a02c00;
    font-weight: bold;
}
.checkbox-container{
	border-bottom: 2px solid rgb(0 0 0 / 5%);
}
.checkbox-content{
	display:table;
	width:100%;
}
.checkbox-content img{
	border-radius:.33rem;
	margin-left:5px;
	box-sizing: border-box;
	vertical-align: middle;
	margin-bottom: 5px;
}
.checkbox-content input{
	display:none;
}
.checkbox-content div{
	display:table-cell;
	vertical-align:middle;
	padding:8px 5px;
	/* box-sizing: border-box; */
}
.checkbox-content div.checkbox-price{
	text-align:right;
}
.checkbox-color .checkbox-title {
    width:80% !important;

}
.checkbox-color .checkbox-price{
	width:20% !important;
}
.checkbox-content .checkbox-title {
	width:70%;
	
}
.checkbox-content .checkbox-price{
	width:30%;
}
.checkbox-content .checkbox-title label {
	position:relative;
	margin-bottom: 0;
	padding-left: 25px;
	font-size:12px;
	cursor:pointer;
	box-sizing: border-box;
	display: block;
}
.checkbox-content .checkbox-title label:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #e8ae30;
}
.checkbox-content.activeCheckbox .checkbox-title label:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 4px;
    width: 12px;
    height: 12px;
    border-radius: .1em;
    background-color: black;
}
.checkbox-content:last-child{
	border-bottom:none;
}
.m-t-20{
	margin-top:20px !important;
}
.p-b-0{
	padding-bottom:0 !important;
}
.product-details-des .product-rate span,.product-details-des .product-rate i{
	font-size:18px;
}
.product-details-des .product-rate {
	padding:10px 0;
	cursor:pointer;
}
.product-details-des .product-rate span{
	display:inline-block;
	padding-left:5px;
}
.product-price-layer{
	display:table;
}
.product-price-layer .product-price-text,.product-price-layer .product-price-discount{
	display:table-cell;
	vertical-align:middle;
	font-weight:bold;
}
.product-price-layer .product-price-discount{
	padding:5px 10px;
	background-color:red;
	color:#FFF;
	border-radius:.33rem;
	font-size:16px;
}
.product-price-layer .product-price-text{
	padding-left:5px;
	font-size: 20px;
}
.product-price-text-psf{
	text-decoration: line-through;
	color: #b9b9b9;
}
.product-price-text-normal{
}
.product-price-layer .product-price-discount small,.product-price-layer .product-price-discount span{
	display:block;
	text-align:center;
}
.product-price-layer-other{
	font-size:16px;
	font-weight:bold;
	margin-bottom:10px;
}
.zoomWindow{
	background-color:#FFF;
}
.w-100{
	min-width:auto !important;
	width:100% !important;
}
.br-30{
	border-radius:3rem;
}
.m-10-auto{
	margin:10px auto !important;
}
#product-tab-size thead > tr >td{
	background-color: #d93035;
	color:#FFF;
	font-weight:bold;
}
#product-tab-size tbody > tr >td{
	border-bottom:1px solid rgba(0,0,0,0.1);
}
#product-tab-size thead > tr >td, #product-tab-size tbody > tr >td{
	text-align:center;
	padding:5px 20px;
}
#product-tab-size thead > tr >td:first-child,#product-tab-size tbody > tr >td:first-child{
	text-align:left !important;
}
#product-tab-feature li{
	padding:5px 0;
	font-family: "Open Sans",sans-serif;
    font-size: 1.4rem;
    line-height: 1.86;
}
h3.priceTitle {
    font-size: 16px;
    margin: 0px;
    padding: 6px;
    text-align: center;
    background: #dcdcdc;
    border-top: 1px solid #999;
    border-left: 1px solid #999;
    border-right: 1px solid #999;
}
h3.priceTitle img {
    padding: 0px;
}
			.tablePrice{
    font-size: 11px;

}
.tablePrice th{
  padding: 5px 2px;
  font-size: 12px;
  border: 1px solid #000;
  background: #333;
  color: #fff;
}
.tablePrice td{
  padding: 5px 2px;
  border: 1px solid #dcdcdc;
}
.tablePrice th.priceOne {
  width: 40px;
  text-align: center;
}
.tablePrice td.priceOne {
  width: 40px;
  text-align: center;
  font-weight: bold;
}
.tablePrice th.priceThree {
  text-align: right;
}
.tablePrice td.priceThree {
  text-align: right;
}
.tablePrice th.priceTwo {
  text-align: right;
}
.tablePrice td.priceTwo {
  text-align: right;
}
.m-b-10{
	margin-bottom:10px;
}

/* KumaÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€¦Ã‚Â¸ ÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§in */

.fabric-container{
	margin-top:30px;
	min-height: 80vh;
}
.fabric-content{
	width:100%;
	height:300px;
	overflow:hidden;
	background-size:cover;
	background-position:center center;
	margin-bottom:30px;
	
	position: relative;
	cursor:pointer;
}
.fabric-content .fabric-content-image,.fabric-content .fabric-content-image img{
	height:100%;
	width:100%;
}
.fabric-content .fabric-content-image img{
	object-fit:cover;
}

.fabric-content .fabric-content-detail{
	position:absolute;
	left:0;
	bottom:15px;
	width:100%;
}
.fabric-content .fabric-content-detail .fabric-content-title{
	color:#FFF;
	font-weight:bold;
	font-size:20px;
	text-align:center;
}
.fabric-content .fabric-content-detail .fabric-content-desc{
	color:#FFF;
	font-size:12px;
	text-align:center;
}
.fabric-content .fabric-content-detail .fabric-content-price {
    text-align: center;
    display: block;
    padding: 2px 10px;
    background-color: #f88e19;
    color: #FFF;
    font-size: 16px;
    border-radius: .33rem;
    margin: 0 auto;
    width: fit-content;
}
.fabric-content:before{
	content:"";
	width:100%;
	height:100%;
	left: 0;
	top:0;
	position:absolute;
	background: rgb(0,0,0);
	background: -moz-linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(255,255,255,0) 70%);
	background: -webkit-linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(255,255,255,0) 70%);
	background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(255,255,255,0) 70%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
}
.fabric-single-content {
    position: absolute;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 98%;
    height: 90%;
    border-top-left-radius: .33rem;
    border-top-right-radius: .33rem;
    background-color: #FFF;
    overflow: auto;
    padding: 20px;
    box-shadow: 0 -3px 12px rgb(0 0 0 / 12%);
    transition:.3s ease;
}
.fabric-single-content h3{
	font-size:20px;
}
.fabric-single-content .fabric-single-body p {
	    font-size: 13px;
	    padding: 5px 0;
	}
.fabric-single-content.fabric-single-content-active{
	bottom:30px !important;
	transition:.3s ease;
}
.fabric-single-content::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.fabric-single-content::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
.fabric-single-content::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
.fabric-single-content::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
.fabric-single-content .fabric-single-body{
	font-size:16px;
	margin-top:10px;
}
.fabric-single-content .fabric-single-body img{
	height: auto !important;
}
.fabric-single-content .fabric-single-image{
	width:100%;
}
.fabric-features ul{
	list-style:none;
	display:inline-block;
	width:100%;
}
.fabric-features ul li {
    width: 24%;
    display: table;
    border: 2px solid #cacaca;
    border-radius: 30px;
    /* display: table-cell; */
    float: left;
    margin-bottom: 10px;
    margin-right:2px;
    height:40px;
}
.fabric-features ul li span{
	display:table-cell;
	vertical-align:middle;
	line-height: 0;
}
.fabric-features ul li span:first-child{
	width: 25%;
}
.fabric-features ul li span:last-child {
    width: 75%;
    /* padding-left: 10px; */
    text-align: center;
    font-size: 11px;
}
.fabric-features h4 {
    margin: 10px 0;
    color: #6e7073;
}
.m-t-20{
	margin-top:20px !important
}
.p-0{
	padding:0 !important;
}
.fabric-color-content{
	cursor:pointer;
	position:relative;
}
.fabric-color-content,.fabric-color-content img{
	width:100%;
	height: 140px;
}
.fabric-color-content img{
	object-fit:cover;
	padding:2px
}
.fabric-color-content-selected:before{
	content:"";
	width:100%;
	height:100%;
	border:6px solid #000;
	position:absolute;
	top:0;
	left:0;
}
.fabric-color-selected{
	background-color:#f2f2f2;
}
.fabric-color-selected img{
	width:100%;
}

.fabric-color-selected a {
    color: #fff;
    padding: 5px;
    /* margin-top: 10px; */
    display: block;
    width: 100%;
    background: #f88e19;
    font-size: 15px;
}
.fabric-color-selected i {
    padding: 5px;
}
.fabric-color-selected-content{
	padding:10px;
}

.fabric-color-selected-category {
    font-size: 2.5rem;
    font-weight: bold;
    /* line-height: 1.4; */
    margin-top: -10px;
}
.checkbox-content.checkbox-color{
									background: whitesmoke;
								}
.fabric-single-content-close {
    width: 60px;
    height: 60px;
    background-color: #f88e19;
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 99;
    text-align: center;
    border-radius: 50%;
    line-height: 5;
    cursor:pointer;
}
.filter-wrapper {
    display: flex;
    width: 100%;
    border-radius: .44rem;
    margin: 10px 0;
    background-color: #FFF;
    border: 1px solid #ccc;
}
 .filter-wrapper .filter-container {
 	width:25%;
 	padding: 5px;
 	text-align:center;
 	border-right:1px solid #ccc;
 	transition:.3s ease;
 	cursor:pointer;
 }
 .filter-wrapper .filter-container.active-filter{
 	background-color:#ccc;
 }
 .filter-wrapper .filter-container:hover{
 	background-color:#ccc;
 	transition:.3s ease;
 }
 .filter-wrapper .filter-container:last-child{
 	border-right:none;
 }
 .product-media{
		display:table;
	}
	.p-image{
		display: table-cell;
    	vertical-align: middle;
	}
.fabric-single-content-close i{
	color:#FFF;
	font-size:25px;
}
.fabric-single-content-title{
	font-size:4rem;
	color:#5b5c60 !important
}
.fabric-single-content-price{
	font-size:3rem;
	font-weight:thin;
	display:block;
}
.product-customize{
	padding:10px 0;
	border-bottom: 2px solid rgb(0 0 0 / 5%);
}
.product-customize a {
    color: #ffffff;
    text-align: left;
    display: inline-block;
    border: 3px solid #f9cc6a;
    width: 100%;
    padding: 5px 10px;
    border-radius: .33rem;
    background: #f9cc6a;
    font-weight: bold;
    font-size: 15px;
	transition:.3s ease;
}
.product-customize a i{
	
	padding-right:5px;
}
@media(max-width:999px){
	.m-m-0{
		margin:0 !important;
	}
	.m-m-0 .col-6{
		padding:5px !important;
	}
	.fabric-content{
		margin-bottom:0 !important;
		height:150px !important;
	}
	.fabric-content .fabric-content-detail .fabric-content-title{
		font-weight:400 !important;
		font-size:14px;
		text-align:left;
	}
	.fabric-content .fabric-content-detail .fabric-content-price {
	    font-size: 12px !important;
	    text-align: left;
	    margin: 0;
	    padding: 2px 5px;
	}
	.fabric-content .fabric-content-detail{
		padding:0 10px;
	}
	.fabric-content .fabric-content-detail .fabric-content-desc{
		text-align:left !important;
	}
	.fabric-single-content-close {
	    width: 40px;
	    height: 40px;
	    line-height: 3;
	}
	.fabric-single-content-close i {
	    font-size: 20px !important;
	}
	.fabric-color-content,.fabric-color-content img{
		height:100px !important;
	}
	.fabric-features ul li{
		width:100%;
		height:40px;
	}
	.product-customize-modal h1{
		font-size: 20px;
	}
}
/******/