<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** Fonts **/
@font-face {
    font-family: 'GothamRoundedBold';
    src: url('fonts/GothamRounded/GothamRoundedBold.otf') format("opentype"),
    	 url('fonts/GothamRounded/GothamRoundedBold.ttf') format('truetype');
}
@font-face {
    font-family: 'GothamRoundedMedium';
    src: url('fonts/GothamRounded/GothamRoundedMedium.otf') format("opentype"),
    	 url('fonts/GothamRounded/GothamRoundedMedium.ttf') format('truetype');
}
@font-face {
    font-family: 'GothamRoundedBook';
    src: url('fonts/GothamRounded/GothamRoundedBook.otf') format("opentype"),
    	 url('fonts/GothamRounded/GothamRoundedBook.ttf') format('truetype');
}
@font-face {
    font-family: 'Atmaka';
    src: url('fonts/Atmaka/Atmaka.ttf') format('truetype');
}

@import url('https://fonts.googleapis.com/css?family=Nunito:400,700&amp;display=swap');
/*font-family: 'Nunito', sans-serif;*/
/** End Fonts **/

/*Container @ desktop size is 1170 so divided by 2 = 585 - 15px (padding)*/

/* Responsive Font Size ***********************
font-size: calc(12px + .105vw); 14px ~ 12.3px 
font-size: calc(13px + .16vw);  16px ~ 13.5px 
font-size: calc(14px + .21vw);  18px ~ 14.67px 
font-size: calc(15px + .26vw);  20px ~ 15.83px 
font-size: calc(15px + .47vw);  24px ~ 16.5px 
font-size: calc(16px + .94vw);  34px ~ 19px 
font-size: calc(16px + 1.67vw); 48px ~ 21.34px 
***********************************************/

@media (min-width: 320px){
	.container-l {width: 100%;padding: 0 calc(10px + 1vw);}
	.container-m {width: 100%;padding: 0 calc(10px + 1vw);}
}
@media (min-width: 768px){
	.container-l {padding: 0 calc(10px + 1.5vw);}
	.container-m {padding: 0 calc(10px + 3vw);}
}
@media (min-width: 1400px){
	.container-l {padding: 0 calc(10px + 4.5vw);}
	.container-m {padding: 0 calc(10px + 8vw);}
}
.container-l,.container-m{
    margin-right: auto;
    margin-left: auto;
}
.container-l:before, .container-l:after, .container-m:before, .container-m:after{
	display: table;
    content: " ";
}
.container-l:after, .container-m:after{
	clear: both;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	color: #000;
	font-size: calc(12px + .105vw);
	line-height: calc(20px + .313vw);
	width: 100%;
	letter-spacing: 1px;
}

h1, h2, h3, h4, h5, h6 {
	color: #ff8300;
	font-family: 'Nunito', sans-serif;
	font-weight: bold;
}
/* default font size */
.fa {
	font-size: 14px;
}
/* Override the bootstrap defaults */
h1 {
	font-size: 33px;
}
h2 {
	font-size: calc(16px + 1.04vw);
	margin-bottom: calc(10px + .8vw)!important;
}
h2:after{
	display: none!important;
}
h3 {
	font-size: calc(16px + .73vw);
	margin-bottom: 0!important;
	text-align: left!important;
	line-height: 20px;
}
h4 {
	font-size: calc(15px + .47vw);
}
h5 {
	font-size: calc(15px + .26vw);
}
h6 {
	font-size: 10.2px;
}

h2.image:before{
	content: '';
	display: block;
	background: url('img/title_bg.png') center center no-repeat;
	background-size: auto;
    height: calc(30px + 2vw);
}
h2.image2:before{
	content: '';
	display: block;
	background: url('img/title_bg2.png') center center no-repeat;
	background-size: auto;
    height: calc(30px + 2vw);
}

legend {
	font-size: 18px;
	padding: 7px 0px;
}
@media (max-width: 767px) {
	legend {
		font-size: 16px;
	}
}
label {
	font-size: 1em;
	font-weight: normal;
}
select.form-control, textarea.form-control, input[type="text"].form-control, input[type="password"].form-control, input[type="datetime"].form-control, input[type="datetime-local"].form-control, input[type="date"].form-control, input[type="month"].form-control, input[type="time"].form-control, input[type="week"].form-control, input[type="number"].form-control, input[type="email"].form-control, input[type="url"].form-control, input[type="search"].form-control, input[type="tel"].form-control, input[type="color"].form-control {
	font-size: 1em;
}
.input-group input, .input-group select, .input-group .dropdown-menu, .input-group .popover {
	font-size: 1em;
}
.input-group .input-group-addon {
	font-size: 1em;
}
/* Fix some bootstrap issues */
span.hidden-xs, span.hidden-sm, span.hidden-md, span.hidden-lg {
	display: inline;
}

.nav-tabs {
	margin-bottom: 15px;
}
div.required .control-label:before {
	content: '* ';
	color: #F00;
	font-weight: bold;
}

/* General */
.flex{
	display: flex;
}
.flex-row{
	flex-direction: row;
}
.flex-column{
	flex-direction: column;
}
.flex-wrap{
	flex-wrap: wrap;
}
.flex-nowrap{
	flex-wrap: nowrap;
}
.flex-space-btw{
	justify-content: space-between;
}
.flex-center{
	justify-content: center;
	align-items: center;
}
.flex-hcenter{
	justify-content: center;
}
.flex-vcenter{
	align-items: center;
}
.justify-start{
	justify-content: flex-start;
}
.justify-end{
	justify-content: flex-end;
}
.align-start{
	align-items: flex-start;
}
.align-end{
	align-items: flex-end;
}
.align-center{
	align-items: center;
}
.alignself-start{
	align-self: flex-start;
}
.mb-10{
	margin-bottom: 10px;
}
.slick-list .slick-slide{
	padding: 0 calc(2px + .4vw);
}
.slick-slider .slick-prev, .slick-slider .slick-next, .slick-slider .slick-nav{
	position: absolute;
	width: 30px;
	height: 30px;
	background-color: #fff;
	cursor: pointer;
}
.slick-slider .slick-prev, .slick-slider .prev{
    top: 50%;
    transform: translateY(-50%);
    left: 3vw;
}
.slick-slider .slick-next, .slick-slider .next{
    top: 50%;
    transform: translateY(-50%);
    right: 3vw;
}
.slick-slider .slider-dots, .slick-slider .slick-dots{
    padding: calc(6px + .4vw) 0 0 0;
    list-style: none;
    text-align: center;
}
.slick-slider .slider-dots li, .slick-slider .slick-dots li{
	display: inline-block;
    padding: 8px;
}
.slick-slider .slider-dots li &gt; *, .slick-slider .slick-dots li &gt; *{
    color: transparent!important;
    width: 10px!important;
    height: 10px;
    border: 1px solid #cccccc;
    border-radius: 50%;
    background-color: #cccccc;
    line-height: 0;
    padding: 0!important;
    cursor: pointer;
}
.slider-dots li.slick-active &gt; *, .slick-dots li.slick-active &gt; *{
    border: 1px solid #484848;
    background-color: #484848;
}
.slick-dots{
	position: relative!important;
}
.slick-dots li button:before, .slick-dots li.slick-active button:before{
	color: transparent!important;
}
.slick-initialized .slick-slide{
	outline: none;
}
.section-space{
	position: relative;
	padding: calc(20px + 2vw) 0!important;
	overflow: visible!important;
	z-index: 1;
}
body:not(.common-home) .section-space{
	padding: 0!important;
}
/*body:not(.common-home) &gt; .bg-container, body:not(.common-home) &gt; .container-l{
	padding-top: calc(20px + 3vw);
	background: url('img/category_bg.jpg') no-repeat;
	background-size: cover;
}*/
.product-block{
	border: none!important;
	padding-bottom: 0px!important;
	height: 100%;
}
/*.product-block:hover{
	-webkit-box-shadow: 0px 0px 12px 3px rgba(153,153,153,0.2);
	-moz-box-shadow: 0px 0px 12px 3px rgba(153,153,153,0.2);
	box-shadow: 0px 0px 12px 3px rgba(153,153,153,0.2);
}*/
.product-block:hover .product-details{
	font-weight: bold;
}
.product-block .product-brand{
	font-family: 'Nunito', sans-serif;
	font-weight: bold;
	color: #777;
	padding-top: 6px;
}
.product-block .product-name{
	padding: 0!important
}
.product-block .product-name a{
	font-size: calc(14px + .21vw);
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
    color: #ffb003;
}
.product-block .product-details{
	font-size: calc(13px + .16vw);
	font-weight: 500;
	color: #000;
	padding: 0!important;
	margin-bottom: calc(10px + .4vw)!important;
}
.product-block .product-details .price{
	font-size: calc(15px + .26vw)!important;
	font-family: 'Nunito', sans-serif;
	font-weight: bold;
	color: #000;
}
.product-block .product-button a{
	width: 50px;
	height: 50px;
	cursor: pointer;
}
.product-block .product-button a+a{
	margin-left: 20px;
}
.product-block:hover .product-hover-buttons{
    opacity: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.product-block .product-hover-buttons{
	position: absolute;
	width: 100%;
	display: flex;
    justify-content: center;
	opacity: 0;
}
.product-block .product-hover-buttons img{
	transform: scale(1)!important;
}
.product-block .product-hover-buttons button{
	background: transparent;
	border: none;
}
.product-block .product-hover-buttons &gt;*{
	margin: 0 calc(4px + .3vw);
    padding: 0;
}
/*.product-block .product-hover-buttons button+button{
	margin-left: calc(12px + .8vw);
}*/
.product-block:hover .product-image.image-container img{
	opacity: .4;
}
.section-space.featured_section, .section-space.instagram{
	z-index: 2;
}
/*.section-space.featured_section:after, .section-space.instagram:after{
	content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 2px;
    height: 50px;
    background-color: #6f0004;
    z-index: 8;
}*/
.pagination&gt;li&gt;a, .pagination&gt;li&gt;span, .pagination&gt;.active&gt;a, .pagination&gt;.active&gt;span{
	font-size: calc(14px + .21vw);
	font-weight: bold;
	color: #333;
	background: transparent;
	border: none;
	padding: 6px;
    margin: 5px!important;
    border: none;
}
.pagination&gt;li&gt;a:focus, .pagination&gt;li&gt;a:hover, .pagination&gt;li&gt;span:focus, .pagination&gt;li&gt;span:hover{
	color: #e4b357;
	background: transparent;
}
.pagination&gt;.active&gt;a, .pagination&gt;.active&gt;a:focus, .pagination&gt;.active&gt;a:hover, .pagination&gt;.active&gt;span, .pagination&gt;.active&gt;span:focus, .pagination&gt;.active&gt;span:hover{
	color: #e4b357;
	background: transparent;
}
#filter-groups .list-group-item:nth-child(2){
	border: none;
	margin: 0;
	background: transparent;
	padding: 0!important;
}
#filter-groups .list-group-item.item-header{
	color: #f58220;
	font-size: calc(15px + .47vw);
	font-weight: bold;	
	text-transform: uppercase;
	padding: 5px 0!important;
	background: transparent;
}
#filter-groups #side-categories .list-group-item.item-header{
	margin-bottom: calc(12px + .6vw);
}
#side-categories .list-group-item{
	padding-bottom: 15px;
}
#side-categories .side-categories-level-1+.side-categories-level-1{
	border: none!important;
}
#filter-groups #side-price{
	border: none!important;
}
#side-price .ui-slider-horizontal{
	height: 2px!important;
}
#side-price #slider-price{
	background-color: #000!important;
}
#side-price .ui-slider-range{
	background-color: #ffb003!important;
	-webkit-box-shadow: 0px 1px 2px 0px rgba(252,240,236,0.4);
	-moz-box-shadow: 0px 1px 2px 0px rgba(252,240,236,0.4);
	box-shadow: 0px 1px 2px 0px rgba(252,240,236,0.4);
}
#side-price .ui-slider-handle{
	width: 16px!important;
	height: 16px!important;
	border: 1px solid #fff;
	background-color: #ffb003!important;
	-webkit-box-shadow: 0px 2px 3px 0px rgba(102,102,102,0.4);
	-moz-box-shadow: 0px 2px 3px 0px rgba(102,102,102,0.4);
	box-shadow: 0px 2px 3px 0px rgba(102,102,102,0.4);
}
#side-price .price-container{
	font-weight: 500;
	display: flex!important;
	justify-content: space-between;
	margin-bottom: 12px!important;
	padding: 10px 0;
}
#side-price .price-container&gt;*{
	width: auto!important;
	flex:1;
	max-width: 100px;
}
#side-price .price-container .input-group label{
	padding: 4px 0;
	font-size: calc(14px + .21vw);
	font-weight: 500;
	color: #000;
}
#side-price .price-container&gt;* input{
	font-size: calc(14px + .21vw);
	color: #000;
	padding: 2px 5px!important;
	border: none;
	box-shadow: none;
	text-align: left!important;
	background-color: transparent;
}
#side-price .list-group-item:not(.item-header){
	padding: 0!important;
}
#side-categories .group .item.level-1{
	border: 2px solid #ffb003;
    border-radius: 50px;
    margin-bottom: 12px;
}
#side-categories .group .item.level-1.active{
    background-color: #ffb003;
}
#side-categories .group .item .plus{
	display: block;
}
#side-categories .group .item.active .plus{
	display: none;
}
#side-categories .group .item .minus{
	display: none;
}
#side-categories .group .item.active .minus{
	display: block;
}
/*#side-categories .group .item.level-1{
	border-bottom: 1px solid #6f0004;
}
#side-categories .group .level-1.active{
	border-bottom: 1px solid #d34b9b;	
}*/
#side-categories .group .item.level-1 a{
	font-size: calc(13px + .16vw);
	font-weight: bold;
	color: #000;
	padding: calc(6px + .3vw) 0 calc(6px + .3vw) calc(8px + .8vw)!important;
}
#side-categories .group .item.level-1 a:hover{
	color: #000;
}
#side-categories .group .item.level-2 a{
	font-weight: bold;
    color: #333;
    padding: 3px 0 3px calc(10px + 1vw)!important;
}
#side-categories .group .item.level-2 a:hover, #side-categories .group .item.level-3 a:hover{
	color: #000;
}
#side-categories .group .item.level-3 a{
	font-weight: 500;
	color: #333;
	padding: 8px 0 6px calc(30px + 1.2vw)!important;
}
#side-categories .group .sub{
	margin-bottom: 12px;
}
#side-categories .group:not(:last-child), #side-categories .group .item.active+.sub, #side-categories .group .item .toggle{
	border: none!important;
}
#side-categories .group .item:hover a, #side-categories .group .item:hover .toggle, #side-categories .group .item.active a, #side-categories .group .item.active .toggle{
	background-color: transparent!important;
}
#filter-groups&gt;div{
	margin-bottom: calc(12px + .6vw)!important;
	padding-bottom: calc(15px + .8vw)!important;
	border-bottom: 1px solid #ccc!important;
}
#filter-groups #for-filters-container{
	margin: 0!important;
	padding: 0!important;
	border: none!important;
}
#side_filter{
	background-color: transparent!important;
	box-shadow: none;
}
#filter-groups .panel .list-group{
	border: none!important;
}
#filter-groups .checkbox{
	display: flex;
	padding: 8px 0;
	margin: 0;
}
#filter-groups .checkbox label{
    font-weight: 500;
    color: #000;
	display: flex;
	align-items: center;
	padding: 0;
}
#filter-groups .checkbox input{
	position: absolute;
	opacity: 0;
	cursor: pointer;
	max-width: 100%;
    min-height: 0;
    margin: 0 5px 0 0;
    width: 0!important;
    height: 0!important;
}
#filter-groups .checkbox .checkmark {
	position: relative;
	height: 18px;
	width: 18px;
	border: 1px solid #333333;
	background-color: #fff;
	margin-right: 8px;
}
#filter-groups .checkbox .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
#filter-groups .checkbox input:checked ~ .checkmark:after {
	display: block;
}
#filter-groups .checkbox .checkmark:after {
	left: 5px;
    top: 1px;
    width: 6px;
    height: 12px;
	border: solid black;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.loader{
	background-color: rgb(255, 255, 255)!important;
}
.page-banner {
    position: relative;
}
.page-banner:after {
    background: linear-gradient(-45deg, #ffffff 13px, transparent 0), linear-gradient(45deg, #ffffff 13px, transparent 0);
    background-repeat: repeat-x;
    background-size: 26px 26px;
    content: " ";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 100%;
    height: 26px;
}
body:not(.product-category):not(.product-product):not(.information-contact):not(.news-ncategory):not(.news-article) .page-banner{
	margin-bottom: 0;
}
.page-banner .page-banner-title{
	display: none;
	font-family: 'Nunito', sans-serif;
	font-size: calc(16px + 2.08vw);
	text-align: center;
}
.position-right-bottom{
	right: 0;
	bottom: 0;
}
.text-red{
	color: #6f0004;
}
.text-gold{
	color: #e4b357;
}
.text-dark{
	color: #333;
}
.text-danger{
	font-weight: bold;
}
.product-block .price .price-new{
	color: #000;
}
.product-block .price .price-old{
	font-size: calc(15px + .26vw)!important;
	text-decoration: line-through;
	opacity: 0.5!important;
}
.product-block .more-options-text{
	font-size: calc(11px + .105vw)!important;
	background: #ff8300!important;
    padding: 4px!important;
    letter-spacing: 0;
	line-height: 20px;
}
.product-block .sticker, .product-image-main-container .sticker, .product-image-column .sticker{
	font-family: 'Nunito', sans-serif;
	font-weight: bold;
    top: 0;
    left: auto;
    right: 0;
    bottom: auto;
    padding: calc(4px + .4vw) calc(6px + .8vw);
    line-height: normal;
    letter-spacing: 0;
}
.product-image-main-container .sticker{
	left: 20px;
}
.product-block .sale.sticker, .product-image-main-container .sale.sticker{
	color: #fff;
	background-color: #df1818;
}
.product-block .airflow.sticker, .product-image-main-container .airflow.sticker{
	color: #fff;
	background-color: #000;
}
.product-block .preorder.sticker, .product-image-main-container .preorder.sticker{
    color: #fff;
    background-color: #6f0004;
}
.product-block .out-of-stock.sticker, .product-image-main-container .out-of-stock.sticker{
	color: #fff;
	background-color: #b0b0b0;
}
.swal2-popup .swal2-title{
	font-size: calc(12px + .2vw)!important;
	margin-bottom: 15px!important;
	background: none;
    letter-spacing: 0;
}
.swal2-popup button{
	background-color: #f58220!important;
}
.swal2-content a{
	color: #333;
	font-weight: bold;
}
.event-none{
	pointer-events: none;
}
.float-img1{
	top: 0%;
    right: 0;
    transform: 0;
	max-width: 17%;
}
.float-img2{
	top: 35%;
	left: 0;
	transform: translateY(-35%);
	max-width: 12%;
}
.float-img3{
	top: 110%;
	left: 0;
	transform: translateY(-110%);
	max-width: 11%;
}
.float-img4{
	top: 105%;
	right: 0;
	transform: translateY(-105%);
	max-width: 14%;
}
.float-img5{
	bottom: 0;
	right: 0;
	max-width: 14%;
}
body.sidr-custom-open header .header-container-top{
	z-index: 8;
}
.free-delivery-box{
	font-weight: bold;
	border: 1px solid #000;
    margin: 10px 0 15px 0;
}
.free-delivery-box .amount{
	color: #6f0004;
	text-decoration: underline;
}
.slick-no-slide .slick-track{
	flex-wrap: wrap;
}
.sticker-button{
	position: fixed;
	top: 50%;
	right: -70px;
	transform: translateY(-50%);
	transform: rotate(-90deg);
	z-index: 8;
}
.sticker-button &gt; div{
	font-family: 'Nunito', sans-serif;
	font-size: calc(14px + .21vw);
	font-weight: bold;
	color: #000;
	background: #ffb003;
    border-radius: 8px;
    cursor: pointer;
}
.sticker-button &gt; div a{
	color: #fff;
}
.sticker-button &gt; div + div{
	margin-left: 10px;
}
.sticker-button .enquiry-button{
	display: none;
    align-items: center;
    padding: 0 10px;
}
.sticker-button .phone-button{
	transform: rotate(90deg);
	background: transparent;
}
.enquiry-modal .modal-dialog{
	width: 1000px;
}
.enquiry-modal .modal-header, .createlist-modal .modal-header, .addwishlist-modal .modal-header{
	height: 80px;
	border: none;
}
.enquiry-modal .modal-header .close{
	top: calc(8px + 1vw);
	right: calc(8px + 1vw);
}
.enquiry-modal .title{
	font-family: 'Nunito', sans-serif;
	font-weight: bold;
	font-size: calc(16px + .65vw);
	color: #f58220;
	letter-spacing: 0;
	max-width: 750px;
    margin: 0 auto;
    line-height: normal;
}
.enquiry-modal .sub-title{
	font-family: 'Nunito', sans-serif;
	font-size: calc(15px + .47vw);
	color: #ab8a58;
	margin-bottom: calc(15px + .6vw);
}
.enquiry-modal .enquiry-modal-box{
	padding: calc(15px + 1vw) calc(20px + 2.5vw);
}
.enquiry-modal input, .enquiry-modal select, .enquiry-modal textarea{
	border: 1px solid #ddd;
	box-shadow: none;
    padding: 8px 16px;
    min-height: 40px;
}
.enquiry-modal .form-group{
	margin-bottom: 12px;
}
.enquiry-modal .form-group.width-full{
	width: 100%;
}
.enquiry-modal .enquiry-submit-btn{
	width: 100%;
}
/* End General */

/* Header */
header{
	background-color: #353633!important;
	z-index: 11!important;
}
header .header-container-top{
	padding: 6px 4vw;
	position: relative;
	background-color: #f58220;
	z-index: 2;
}
header .header-container-bottom{
	position: relative;
	background-color: #fff;
	z-index: 9;	
}
.header-container-top .header-accouncement{
	color: #000;
	font-family: 'Nunito', sans-serif;
    font-weight: bold;
    letter-spacing: .1vw;
}
.header-container-top .header-social-icon .header-social-box &gt; .item{
	padding-left: calc(15px + 1.2vw);
}
.header-container-top .header-icon &gt; *+*{
	padding-left: 1.5vw;
}
.header-container-top .header-top &gt; div{
	flex: 1;
}
.header-container-top .header-top .header-accouncement{
	flex: 1.5;
}
header .header-menu-section{
	z-index: 1;
}
header .header-icon{
	z-index: 2;
}
.header-menu{
	padding: 20px 0 15px;
}
.header-menu .header-logo{
    padding: 0;
}
.header-menu ul{
	background: transparent;
	box-shadow: none;
	border: none;
}
.header-menu ul li{
	border: none;	
}
.header-menu ul li:hover, .header-menu ul li:active, .header-menu ul li:focus{
	outline: none;
}
.header-menu ul li a{
	font-family: 'Nunito', sans-serif;
    font-weight: bold;
	font-size: calc(12px + .105vw);
	color: #301934;
	background: transparent!important;
	border: none;
	padding: 8px calc(8px + .4vw)!important;
}
.header-menu ul li a:hover, .header-menu ul li a:active, .header-menu ul li a:focus{
	color: #301934;
	background: transparent;
	background-image: none;
	padding: 8px calc(12px + 1.4vw);
}
.header-menu ul .sub-arrow{
	display: none;
}
.header-mobile-links a{
	color: #000;
}
.header-mobile-links i{
	font-size: 22px;
}
header #main-menu ul{
	position: fixed;
    flex-wrap: wrap;
    left: 0;
    border: none;
    max-width: 100%!important;
    width: 100%!important;
    padding: calc(15px + 1.5vw) calc(15px + 1vw);
    background: #ebebeb;
}
header #main-menu ul .header-ul-container{
	max-width: 1170px;
	margin: 0 auto;
}
header #main-menu ul.header-ul-container{
    padding: 15px calc(18% - 5vw);
}
header #main-menu ul li{
	display: inline-block;
	width: auto;
	min-width: 200px;
	padding: 0 calc(8px + 1vw);
	vertical-align: top;
	margin-bottom: 30px;
}
header #main-menu ul .category li{
	width: 160px;
}
header #main-menu ul li &gt;*{
	width: 100%;
}
header #main-menu ul li a{
	font-family: 'Nunito', sans-serif;
	font-size: 15px;
	color: #000;
	padding: 0 0 20px 0!important;
	text-shadow: none;
	white-space: normal;
	text-transform: uppercase;
}
header #main-menu ul li a.title{
	font-family: 'SnellRoundhandBold';
	font-size: calc(15px + .26vw);
	color: #f58220;
}
header #main-menu ul li a:hover{
	color: #f58220;
}
header #main-menu ul li img{
	width: 100%;
}
header #main-menu ul li .brand-logo-container{
	display: flex;
    justify-content: center;
	border-bottom: 2px solid #f58220;
	margin-bottom: 6px;
}
header #main-menu ul li .brand-logo{
	max-width: 80px;
}
header #main-menu li:hover &gt; ul{
    display: block!important;
}
header #main-menu ul.category-sub-item{
    display: block!important;
    position: relative;
    padding: 0;
    box-shadow: none;
}
header #main-menu ul.category-sub-item li{
    margin: 0;
}
header #main-menu ul.level-2{
	display: block;
    position: relative;
    padding: 0;
    box-shadow: none;

}
header #main-menu ul.level-2 li{
	display: block;
	padding: 0;
	margin-bottom: 0;
}
header #main-menu ul.level-2 li a{
	font-family: 'Nunito', sans-serif;
	color: #777;
	text-transform: none;
	padding: 4px 0 !important;
    line-height: normal;
}
header #main-menu ul.level-2 li a:hover{
	color: #e4b357;
}
header .header-menu .header-icon &gt; *{
	padding: 0 calc(4px + .3vw);
}
.search-content &gt; button{
    background-color: #e4b357;
    border: 1px solid #e4b357;
    color: #000;
}
#cart &gt; a{
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000;
	font-family: 'Nunito', sans-serif;
	font-weight: bold;
}
#cart &gt; a img{
	padding-right: 8px;
}
#account, #account &gt; a{
	color: #000;
}
header #account ul{
	background-color: #fff;
	box-shadow: 0 6px 12px rgba(0,0,0,.175);
}
.language-box button.language-select{
	color: #000;
	background-color: transparent;
	border: none;
	padding: 0;
}
.language-box button + button:before{
	content: '|';
}
#enquiry .cart-dorpdown-footer .btn, #cart .cart-dorpdown-footer .btn{
	border: 1px solid #999!important;
}
.header-menu #account a.logged{
    background: #ffb003;
    padding: 5px 9px;
    border: 1px solid #ffb003;
    border-radius: 50%;
}
/* End Header */

/* Home */
.section-space.slideshow{
	padding: 0!important;
}
.slideshow .slick-list .slick-slide{
	padding: 0;
}
.slideshow .slideshow-thumbnail-box{
	position: absolute!important;
    bottom: 0;
    right: 6vw;
    z-index: 8;
    -webkit-box-shadow: 0px 0px 10px 4px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 0px 10px 4px rgba(0,0,0,0.25);
	box-shadow: 0px 0px 10px 4px rgba(0,0,0,0.25);
}
.slideshow .slideshow-thumbnail-box .item{
	max-width: calc(100px + 6.25vw);
	border-bottom: 5px solid #777777;
	cursor: pointer;
}
.slideshow .slideshow-thumbnail-box .slick-current .item{
	border-bottom: 5px solid #e4b357;	
}
.slideshow .slideshow-thumbnail-box .slick-slide{
	width: auto!important;
}
.slider-slideshow-description{
	top: 50%!important;
    transform: translate(-50%, -50%)!important;
    max-width: 85%;
}
.slider-slideshow-description .slider-slidehow-title{
	font-family: 'SnellRoundhandBold';
	font-size: calc(16px + 1.5vw);
	color: #e4b357;
	line-height: calc(20px + 1.2vw);
	max-width: 320px;
    margin-left: auto;
}
.slider-slideshow-description .slider-slideshow-description-texts{
	padding: calc(10px + .8vw) 0 0 0!important;
	max-width: 100%;
}
.slider-slideshow-description .slider-slideshow-description-texts &gt; span{
	font-size: calc(12px + .105vw)!important;
	line-height: normal;
}
.slider-slideshow-description .slider-slideshow-description-texts .slideshow-text-0{
	font-family: 'Nunito', sans-serif;
	font-weight: bold;
	font-size: calc(16px + 1.67vw)!important;
}
.slider-slideshow-description .slider-slideshow-description-texts .slideshow-text-1{
	font-family: 'Nunito', sans-serif;
	font-weight: bold;
	font-size: calc(16px + 6vw)!important;
}
.slider-slideshow-description .slider-slideshow-description-texts .slideshow-text-2{
	line-height: calc(14px + .2vw);
}
.slider-slideshow-description .slider-slideshow-description-link{
	padding-top: calc(10px + 1.5vw)!important;
}
.slider-slideshow-description.background-type-light_image .btn-primary2{
	color: #000;
}
.featured-section-box .item{
	display: flex!important;
}
.featured-section-box .item &gt; div{
	width: 50%;
}
.featured-section-box .item &gt; div+div{
	padding-left: calc(15px + 1.8vw);
}
.featured-section-box .item .image img{
	margin: 0 auto;
}
.featured-section-box .item .title{
	padding: calc(10px + 2vw) 0 .4vw;
}
.featured-section-box .item .button{
	padding-top: calc(15px + 2vw);
}
.featured-section-box .slick-slider .slider-dots{
	position: absolute;
    bottom: -60px;
    left: 25%;
    transform: translateX(-25%);
    width: auto;
}
.featured-section-box .slick-slider .slider-dots li &gt; *, .instagram.slick-slider .slick-dots li &gt; *{
    color: transparent;
    width: 10px!important;
    height: 10px;
    border: 2px solid #cfcfcf;
    border-radius: 50%;
    background-color: #ffffff;
    position: relative;
    z-index: 2;
}
.featured-section-box .slider-dots li.slick-active &gt; *, .instagram .slick-dots li.slick-active &gt; *{
	width: 12px!important;
    height: 12px;
    border: 2px solid #e4b357;
}
.featured-section-box .slick-slider .slider-dots li, .instagram.slick-slider .slick-dots li{
	position: relative;
	padding: 10px;
}
.featured-section-box .slick-slider .slider-dots li:after, .instagram.slick-slider .slick-dots li:after{
	display: block;
    content: '';
    width: 35px;
    height: 2px;
    background-color: #cfcfcf;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.featured-section-box .slick-slider .slider-dots li:last-child:after, .instagram.slick-slider .slick-dots li:last-child:after{
	display: none;
}
.featured_by_tab &gt; .container-l{
	position: relative;
    z-index: 9;
}
.featured_by_tab .fcategory_tab{
	padding: 0 5vw;
}
.featuredtab-product-container{
	margin-left: -20px;
    margin-right: -20px;
}
.featuredtab-product-container.mobile{
	display:none!important;
}
.featured_by_tab .fcategory_tab ul{
	margin-bottom: calc(15px + .6vw);
}
.featured_by_tab .fcategory_tab ul li a{
	font-size: calc(13px + .16vw);
	font-weight: bold;
	color: #333;
	padding: 8px calc(12px + .6vw);
}
.featured_by_tab .fcategory_tab ul li.active a{
	color: #e4b357;
}
.featured_by_tab .fcategory_tab .button{
	padding-top: calc(15px + .6vw);
}
.featuredtab-product-container .product-gutter{
	width: 25%;
	padding: 0 20px 40px 20px;
}
.featuredtab-product-container .owl-dots{
	position: relative;
	padding-top: 25px;
}
.featured-brand-container img{
	margin: 0 auto;
	max-width: 100%;
}
.section-space.featured_banner{
	padding: 20px 0!important;
}
.featured_banner img{
	margin: 0 auto;
}
.featured-brand-container{
	padding: 0 60px;
}
.featured-brand-container.slick-slider .prev, .featured-news-container.slick-slider .prev{
    left: 0;
}
.featured-brand-container.slick-slider .next, .featured-news-container.slick-slider .next{
    right: 0;
}
.featured-news-container .news-item{
	position: relative;
	outline: none;
	padding: 7px;
}
.featured-news-container .news-category{
	position: absolute;
    top: 30px;
    left: 30px;
    background: #000;
}
.featured-news-container .news-category a{
	font-size: calc(13px + .16vw);
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
	padding: 4px 8px;
}
.featured-news-container .news-item:hover .news-category{
	background: #e4b357;
}
.featured-news-container .news-item:hover .news-category a{
	color: #fff;
}
.featured-news-container .image{
	padding-bottom: 60%;
	background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-bottom: calc(8px + .6vw);
    -webkit-box-shadow: 0px 0px 12px 3px rgba(153,153,153,0.25);
    -moz-box-shadow: 0px 0px 12px 3px rgba(153,153,153,0.25);
    box-shadow: 0px 0px 12px 3px rgba(153,153,153,0.25);
}
.featured-news-container .news-view{
	font-family: 'Nunito', sans-serif;
	color: #008080;
	text-decoration: underline;
}
.featured-news-container .news-item:hover .news-view{
	color: #6f0004;
}
.featured-news-container .news-description, .news-container .news-description{
	padding-bottom: calc(12px + .6vw);
}
.instagram .slick-list .slick-slide{
	padding: 0;
}
.instagram .slick-dots{
	position: absolute!important;
	width: auto;
	left: 5vw;
}
.instagram.slick-slider .prev, .instagram.slick-slider .next{
	top: auto;
    left: auto;
	bottom: 0;
	transform: none;
	background-color: transparent;
}
.instagram.slick-slider .prev{
    right: 110px;
}
.instagram.slick-slider .next{
    right: 40px;
}
.slideshow .slider-dots{
	margin-bottom: calc(8px + .6vw);
}
.slideshow .slider-dots .owl-dot, .slideshow .slider-dots .owl-dot.active{
	width: 12px!important;
    height: 12px!important;
    margin: 10px!important;
}
.slideshow .slider-dots .owl-dot{
	background-color: transparent!important;
	border: 1px solid #fff!important;
}
.slideshow .slider-dots .owl-dot.active{
	background-color: #fff!important;
}
.section-space.fcategory{
	background-color: #f6ead5;
}
.fcategory-container{
	/*padding: 0 calc(15px + 12vw);*/
}
.fcategory-description-box{
	display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 calc(15px + .6vw) calc(15px + 12vw);
}
.fcategory-description-box .fcategory-description{
	margin-bottom: calc(15px + .8vw);
}
.fcategory-item-box .image{
	padding-bottom: 50%;
    height: 100%;
    background-size: cover!important;
}
.fcategory-item-box .item{
	position: relative;
}
.fcategory-item-box .item .detail{
    position: absolute;
    top: 85%;
    left: 0;
    transform: translateY(-85%);
    width: 100%;
    max-width: 400px;
    height: auto;
    padding: calc(4px + 1vw) calc(4px + 3vw) calc(4px + 1vw) calc(4px + 1vw);
    background-color: #ffb003; 
}
.fcategory-item-box .item .detail:after{
	position: absolute;
	content: '';
	display: block;
	color: #000;
	border-color: transparent black;
	border-style: solid;
    border-width: 6px 0px 6px 8px;
	height: 0px;
	width: 0px;
	top: 50%;
    right: calc(2px + 2vw);
    transform: translateY(-50%);
}
.fcategory-item-box .item .detail .name{
	font-size: calc(15px + .47vw);
	font-weight: bold;
	color: #000;
	text-transform: uppercase;
	line-height: normal;
}
.fcategory-container .slick-list{
	padding-top: calc(10px + 1vw);
}
.fcategory-container .slick-list, .fcategory-container .slick-slider{
	position: static;
}
.fcategory-container .slick-nav{
	top: auto;
	bottom: 10px;
	right: auto!important;
	background-color: transparent; 
    transform: none;
}
.fcategory-container .slick-nav.left{
	left: calc(15px + 12vw)!important;
}
.fcategory-container .slick-nav.right{
	left: calc(80px + 12vw)!important;
}
.fcategory-container .slick-list .slick-slide{
    padding: 0 calc(2px + .8vw);
}
.section_about_us{
	padding: 0!important;
}
.section-aboutus-image img{
	width: 100%;
}
.section-aboutus-detail{
	padding: 1.5vw calc(15px + 3vw);
}
.section-aboutus-detail .description{
	max-width: 700px;
	margin-bottom: calc(10px + 1.2vw);
}
.section_icon{
	background-color: #f6ead5;
	padding: calc(20px + 1vw) 0!important;
}
.section_icon .container-m &gt; .description{
	margin-bottom: calc(20px + 2vw);
}
.section-icon-container{
	margin-bottom: calc(10px + 1.5vw);
}
.section-icon-container .item{
	padding: 0 calc(8px + 1vw);
}
.section-icon-container .item .sub-title{
	font-size: calc(15px + .47vw);
	font-family: 'Nunito', sans-serif;
	font-weight: bold;
	color: #ffb003;
	margin-bottom: calc(10px + .4vw);
}
.section-icon-container .item .image{
	padding-right: 15px;
}
.section-icon-container .item .image img{
	min-width: 75px;
}
.featured-module .slick-nav{
	width: 30px!important;
    height: 40px!important;
	background: transparent;
	top: 50%!important;
}
.featured-module .slick-nav.left{
	right: auto!important;
	left: 0!important;
}
.featured-module .slick-nav.right{
	right: 0!important;
}
.featured-module .description{
	margin-bottom: calc(15px + 1.2vw);
}
.featured-module .featured{
	position: relative;
	padding: 0 4vw!important;
}
.featured-module .slick-list, .featured-module .slick-slider{
	position: static;
	padding: 12px 0;
}
.featured .slick-no-slide .slick-track{
    flex-wrap: nowrap;
}
.instagram{
	background: #ffbe50;
}
.testimonial-container{
	max-width: calc(100% - 6vw);
    padding: calc(20px + 2vw) calc(20px + 4vw);
    margin: 0 auto;
}
.testimonial-container .slick-list .slick-slide{
	padding: 0 calc(2px + 1.8vw);
}
.testimonial-container .slick-list{
	margin: 0 calc(-2px - 1.8vw);	
}
.testimonial-container .slick-list, .testimonial-container .slick-slider{
	position: static;
}
.testimonial-container .slick-nav{
	top: calc(20px + 2vw);
	left: auto!important;
	background-color: transparent; 
    transform: none;
}
.testimonial-container .slick-nav.left{
	right: calc(80px + 7vw)!important;
}
.testimonial-container .slick-nav.right{
	right: calc(20px + 7vw)!important;
}
.testimonial-container .item{
	padding: calc(10px + 1vw) 0 10px 0;
}
.testimonial-container .item img{
	margin: 0 auto;
	padding-bottom: calc(8px + .6vw);
}
.testimonial-container .author{
	font-weight: bold;
}
.section-space.testimonial_2_mh{
	padding: 0!important;
}
.featured-news-container .slick-list, .featured-news-container.slick-slider{
	position: static;
}
.featured-news-container .slick-list{
	margin: 0 calc(-9px - .4vw);
}
.featured-news-container .slick-nav{
	top: 0;
	left: auto!important;
	background-color: transparent; 
    transform: none;
}
.featured-news-container .slick-nav.left{
	right: 80px!important;
}
.featured-news-container .slick-nav.right{
	right: 0!important;
}
.featured-news-container .news-details .date, .news-container .news-details .date{
	color: #fff;
	background: #d34b9b;
	min-width: 65px;
	align-self: flex-start;
	margin-right: 15px;
	padding: 8px 0;
    line-height: 20px;
} 
.featured-news-container .news-details .date .day, .news-container .news-details .date .day, .news-article .news-details .date .day{
	font-family: 'Nunito', sans-serif;
	font-size: calc(15px + .55vw);
}
.featured-news-container .news-details .date .month, .news-container .news-details .date .month, .news-article .news-details .date .month{
	font-size: calc(13px + .16vw);	
}
.featured-news-container .news-details .news-title, .news-container .news-details .news-title, .news-article .news-details .news-title{
	font-size: calc(15px + .26vw);
	font-family: 'Nunito', sans-serif;
}
.featured-news .description, .news-container .description{
	margin-bottom: calc(15px + .6vw);
}
/* End Home */

/* Account */
.account-account .account-container h4{
	color: #333;
	font-weight: bold;
}
.createlist-box{
	margin-bottom: calc(15px + .6vw);
}
.wishlist-table{
	margin-bottom: calc(12px + .6vw);
}
.wishlist-table .wishlist-quantity-box{
	display: inline-block;
    max-width: 120px;
}
.wishlist-filter-box{
	margin-bottom: calc(12px + .6vw);
}
.wishlist-filter-box select{
	display: inline-block;
	max-width: 200px;
}
/* Account */

/* Information */
.information-information p{
	margin-bottom: calc(8px + .6vw);
}
.about_us .box1, .about_us .box2{
	padding: 0 4vw;
}
.about_us .box1 &gt; div, .about_us .box2 &gt; div{
	width: 50%;
}
.about_us .box1 &gt; div+div{
	padding-left: calc(15px + 2vw);
}
.about_us .box1 .box-image-1 .image2{
	padding: calc(15px + 1.8vw) 0 0 calc(15px + 1.2vw)
}
.about_us .box2{
	align-items: flex-end;
}
.about_us .box2 &gt; div+div{
	padding-left: calc(15px + 2vw);
}
.about_us .story-container{
	padding-top: calc(30px + 4vw);
	position: relative;
    z-index: 1;
}
.about_us .story-box{
	position: relative;
	margin-top: -6.5vw;
	padding: 0 5.5vw;
}
.about_us .story-content{
	background: #fff;
	padding: calc(12px + 2.5vw);
}
.about-us-container .content-box1 h2, .about-us-container .content-box1 h3{
	text-align: center!important;
}
.about-us-container .content-box1 .imagebox{
	padding: calc(12px + .8vw) 0 calc(12px + 3vw);
}
.about-us-container .section-icon{
	color: #fff;
	background-color: #301934;
	padding: calc(20px + 1vw) 0!important;
	margin: calc(15px + 6vw) calc(15px + 4.5vw);
}
.about-us-container .section-icon .item{
	padding: 0 calc(8px + 1vw);
}
.about-us-container .section-icon .item .image{
	padding-right: 15px;
}
.about-us-container .section-icon .item .image img{
	min-width: 75px;
}
.about-us-container .content-box3 &gt; div{
	width: 50%;
}
.about-us-container{
	padding: calc(10px + 1vw) 0 calc(20px + 5vw) 0;
}
/* End Information */

/* Brand */
.brand-container{
	padding: 0 calc(15px + 3vw);
}
.brand-container .item{
	width: 16.66%;
	padding: 10px;
}
/* End Brand */

/* Contact Us */
.information-contact h2, .information-contact h3{
	text-align: center!important;
}
/*.contactus-container{
	padding: 0 3vw;
}*/
.contactus-container .iframe-box{
	margin-bottom: calc(12px + .8vw);
}
.contactus-container .iframe-box iframe{
	-webkit-box-shadow: 0px 15px 15px -6px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 15px 15px -6px rgba(0,0,0,0.3);
	box-shadow: 0px 15px 15px -6px rgba(0,0,0,0.3);
}
.contactus-container .text-divider{
	padding: calc(10px + 2vw) 0;
}
.contact-detail .detail{
	width: 33.33%;
}
.contact-detail .detail &gt;*{
	margin-bottom: calc(2px + .2vw);
}
.contact-detail .detail .image{
	min-width: 30px;
}
.contact-detail .detail img{
	align-self: flex-start;
}
.contact-detail form{
	width: 66.66%;
	padding-left: calc(20px + 1.5vw);
}
.contact-detail .detail .title{
	font-size: calc(14px + .21vw);
	color: #ab8a58;
	margin-bottom: 5px;
}
.contact-detail form label{
	display: none;
}
.contact-detail form label.input-agree{
	display: block;
	text-align: left;
	padding-bottom: calc(10px + 1vw);
}
.contact-detail form input:not([type="submit"]){
	border: 1px solid #ddd;
    box-shadow: none;
    padding: 8px 16px;
    height: 40px;
}
.contact-detail form input[type="checkbox"]{
	height: auto;
	padding: 0;
}
.contact-detail form textarea{
	border: 1px solid #ddd;
    box-shadow: none;
    padding: 8px 16px;
}
.contact-detail form .form-group{
	margin-bottom: 12px;
}
.contact-detail .email a{
	color: #000000;
}
/* End Contact Us */

/* News/Article */
.news-ncategory h2, .news-ncategory h3, .news-article h2, .news-article h3{
	text-align: center!important;
}
.news-container{
	padding: 0 10vw;
}
.news-ncategory .news-container #column-left{
	width: 33.33%;
}
.news-ncategory .news-container #content{
	width: 66.66%;	
}
.news-container .title{
	font-size: calc(13px + .16vw)!important;
	font-weight: bold;
	color: #555;
	line-height: normal;
	margin-bottom: 4px;
}
.news-container .title a{
	font-size: calc(15px + .47vw)!important;
	font-weight: bold;
	color: #333;
}
.news-container .article-social-box{
	font-size: calc(14px + .21vw);
	font-weight: bold;
	padding: calc(8px + 1.5vw) 0;
}
.news-container .bnews-list{
	display: flex;
	flex-wrap: wrap;
}
.bnews-list .artblock .article-meta{
	color: #333!important;
}
.bnews-list .artblock .article-image{
	width: 100%;
	margin-bottom: calc(8px + .8vw)!important;
}
.news-container .button{
	padding-top: calc(10px + 1vw);
}
.bnews-list .artblock{
    padding: 0px 0 calc(15px + .6vw) 0!important;
    width: 100%;
    margin-bottom: calc(15px + .6vw);
    border-bottom: 1px solid #ddd;
}
.news-container .recent-newsbox .bnews-list{
	flex-direction: column;
}
.recent-newsbox .bnews-list .artblock{
	width: 100%;
}
.news-article .news-container .title{
	font-size: calc(15px + .47vw)!important;
	font-weight: bold;
	color: #ff8300;
}
.news-container .news-details .datebox{
	margin-bottom: 6px;
}
.news-container .news-details .datebox .image{
	margin-right: 8px;	
}
.news-container .news-details .datebox img{
	align-self: flex-start;
	margin-bottom: 0;
}
.news-container .news-view{
	position: relative;
	font-family: 'Nunito', sans-serif;
	font-weight: bold;
	color: #ff8300;
}
.news-container .news-view:after{
	position: absolute;
	content: '';
	display: block;
	color: #ff8300;
	border-color: transparent #ff8300;
	border-style: solid;
    border-width: 6px 0px 6px 8px;
	height: 0px;
	width: 0px;
	top: 50%;
    right: -20px;
    transform: translateY(-50%);
}
/*.bnews-list .artblock:first-child{
	padding-top: 0!important;
}*/
.recent-newsbox{
	padding-bottom: calc(15px + 1vw);
	/*padding-top: 55px;*/
}
.recent-newsbox .bnews-list .artblock{
	padding: calc(6px + .4vw) 0!important;
	margin-bottom: 0!important;
}
.recent-newsbox .name a{
	color: #333;
	font-weight: bold;
}
.recent-newsbox .name a:hover{
	color: #e4b357;
}
.recent-newsbox .news-date-added{
	font-size: 12px;
}
.news-container input[type="text"]{
	border: 1px solid #ddd;
    box-shadow: none;
    padding: 8px 16px;
    height: 40px;
    max-width: 200px;
    background: transparent;
}
.article-searchbtn{
	top: 50%;
	transform: translateY(-50%);
    right: 0;
    padding: 7px 15px;
}
.article-search-container{
	top: 0;
	left: 15px;
}
.news-category-container .title, .recent-newsbox .title{
	font-size: calc(15px + .55vw)!important;
	letter-spacing: 0;
	color: #ff8300;
}
.news-category-container .title{
	padding-bottom: 6px;
}
.news-category-container .list-group a{
	font-weight: bold;
	padding: 6px 0;
	background: transparent;
	color: #333;
	border: none;
}
.news-category-container .list-group a:hover{
	background: transparent;
	color: #e4b357;
	border: none;	
}
.article-content img{
	width: 100%;
	margin-bottom: calc(15px + 1.5vw);
	border: 1px solid transparent;
    border-radius: calc(30px + 1vw);
}
.article-back-btn{
	margin-bottom: calc(20px + 2vw);
}
/* End News/Article */

/* Category */
.product-category #column-left{
	width: 20%;
}
.product-category #content{
	width: 80%;
}
.sort-view-box{
	padding: 0 0 calc(15px + 1vw) 0;
}
.sort-view-box select{
	border: 1px solid #ddd;
}
.sort-view-box&gt;div+div{
	padding-left: 40px;
}
.product-view&gt;.product-gutter{
	padding: 0 20px 40px 20px!important;
}
#filter_group_tigger_open{
	color: #000000;
	font-weight: bold;
	background: #fff!important;
}
.product-category h2, .product-category h3{
	text-align: center!important;
}
.addwishlist-modal-box label input[type=radio]{
	margin-top: 0;
}
.wishlist-quantity-box .input-group{
	max-width: 200px;
    margin-bottom: calc(12px + .6vw);
}
/* End Category */

/* Product */
.product-product h2, .product-product h3{
	text-align: center!important;
}
.product-product .product-imagebox{
	width: 55%;
}
.product-product .product-descriptionbox{
	width: 45%;
}
.product-product .product-description{
	padding-bottom: calc(10px + .6vw);
}
.product-product .product-brand{
	font-size: calc(14px + .21vw);
	font-weight: bold;
	color: #666;
}
.product-product .product-title{
	font-size: calc(15px + .47vw);
	font-weight: bold;
	color: #ffb003;
	line-height: normal;
	padding-bottom: 6px;
}
.product-product .product-price{
	font-size: calc(14px + .83vw);
	font-weight: bold;
	color: #000;
	line-height: normal;
	padding-bottom: calc(4px + .2vw);
}
.product-product .old-prices{
	font-size: calc(14px + .83vw);
	font-weight: bold;
	color: #777;
	padding-right: 15px;
}
.product-product .new-prices{
	font-weight: bold;
	font-size: calc(14px + .83vw);
}
.product-special-price{
	color: #000;
}
.product-product .description-title{
	color: #ab8a58;
	font-weight: bold;
	font-size: calc(15px + .26vw);
}
.product-product .upcoming-date{
	font-size: calc(14px + .21vw);
	letter-spacing: 0;
	padding-bottom: 10px;
}
.product-product .upcoming-date span{
	font-weight: 500;
}
.product-product .product-description .title{
	font-size: calc(14px + .21vw);
	font-weight: bold;
	padding-bottom: 8px;
}
.product-product .product-description p{
	margin-bottom: 0;
}
#product{
	max-width: 100%!important;
}
#product label{
	font-weight: 500;
}
.product-product .input-group-flex{
	font-weight: 500;
	margin: calc(10px + .4vw) 0;
}
#product .button &gt; *:first-child{
	margin-right: 12px;
}
#product .option-box .form-group{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
#product .option-box select option:disabled{
	color: #b5b5b5;
}
#product .option-box label{
	margin: 0;
	padding-right: 10px;
}
#product .option-box select, #product .option-box input{
	max-width: 250px;
	border: 1px solid #ddd;
    box-shadow: none;
    padding: 8px 16px;
    height: 40px;
}
#product .product-qtybox{
    max-width: 330px;
}
#product .product-qtybox .input-group-addon{
	font-weight: 500!important;
	padding: 0;
}
#product .product-qtybox .input-group-addon, #product label{
	min-width: 80px;
}
#product .product-qtybox input{
	font-weight: bold;
	border: 1px solid #ddd;
    box-shadow: none;
    padding: 8px 16px;
    height: 40px;
}
#product .product-qtybox button{
	width: 40px;
	border: 1px solid #ddd;
	margin: 0;
	background: #ffb003;
	color: #000;
}
#product .product-qtybox button:hover{
	color: #000;
	background: #ddd;
}
.product-product .product-image-column{
	position: relative;
}
.product-product .product-image-additional-container{
	padding: 0!important;
}
.product-product .product-image-main-container{
	border: 1px solid #eee;
	margin-bottom: calc(3px + .3vw)!important;
}
.product-product .product-image-main-container img{
    background: #fff;
}
.product-product .product-image-additional-container .slick-slide{
	margin: 0 0 8px 0!important;
	padding: calc(3px + .3vw);
}
.product-product .product-image-additional-container .slick-no-slide{
	margin: 0!important;
}
.product-product .product-image-additional-container img{
	border: 1px solid #eee!important;
}
.zoom-product-image{
	bottom: 15px;
    right: 25px;
    pointer-events: none;
}
.product-product .product-tab{
	border: none;
	margin-bottom: calc(10px + 1.2vw);
	padding-top: calc(20px + 2vw);
}
.product-product .product-tab li{
	margin: 0;
}
.product-product .product-tab li a{
	font-weight: 500;
	color: #333;
    cursor: pointer;
    background-color: #fff;
    border: 2px solid #6f0004;
    min-width: calc(100px + 3vw);
    text-align: center;
    border-radius: 0;
    padding: calc(8px + .25vw);
    text-transform: uppercase;
}
.product-product .product-tab&gt;li.active&gt;a, .product-product .product-tab&gt;li.active&gt;a:focus, .product-product .product-tab&gt;li.active&gt;a:hover{
	color: #fff;
	border: 2px solid #6f0004;
	background-color: #6f0004;
}
.product-tab-content strong{
	font-weight: bold;
}
.product-product p{
    margin-bottom: calc(8px + .6vw);
}
.product-related-container{
	padding: 3vw 6vw;
}
.product-related-content{
	align-items: flex-start;
}
.product-related-content .item{
	padding: 0 20px 40px 20px!important;
}
.waiting_list_container{
	padding: 0!important;
	padding-top: calc(15px + 1vw)!important;
	border: none!important;
	border-top: 1px solid #ab8a58!important;
	/*background: #fbf6ec;*/
}
.waiting_list_container .waiting_list_description{
	font-size: calc(13px + .16vw);
	font-weight: bold;
	letter-spacing: 0;
}
.waiting_list_container .flex-group&gt;*{
	margin: 0!important;
}
.waiting_list_container .flex-group input{
	padding: 8px 18px;
	border: 1px solid #ddd;
	height: 50px;
}
.packsize{
    padding-bottom: 8px;
}
.product-product .product-detail-container{
	padding-bottom: calc(20px + 2vw);
}
.product-product .product-enquiry-form{
	display: flex;
    flex-direction: column;
	padding-bottom: calc(20px + 2vw);
    margin: 0 auto;
}
.product-product .product-enquiry-form .form-group{
	margin-bottom: 15px;
}
.product-product .product-enquiry-form .contact-footer{
	width: 100%;
	margin: 0 7.5px;
}
.product-product .product-enquiry-form input, .product-product .product-enquiry-form textarea{
	border: 1px solid #ddd;
	box-shadow: none;
	min-height: 40px;
}
.product-product .slick-no-slide .slick-track{
	flex-wrap: nowrap;
}
#product .button-box{
	padding-top: calc(15px + .8vw);
}
.product-product .wishlist-box button{
	display: flex;
    align-items: center;
	font-family: 'Nunito', sans-serif;
    font-weight: bold;
    font-size: calc(14px + .21vw);
	color: #ffb003;
	border: none;
	text-transform: uppercase;
	background-color: #fff;
}
.product-product .wishlist-box button img{
	margin-right: 8px;
}
.product-product .featured-module .featured{
	padding: 0!important;
}
/* End Product */

/* Cart / Checkout */
#enquiry .item-details .item-name, #cart .item-details .item-name, .checkout-cart .cart-description a{
	font-weight: bold;
	color: #333;
}
.checkout-cart .cart-quantity button{
	color: #fff;
	background-color: #f58220;
}
.quickcheckout-content .input-group button{
	padding: 4px 15px!important;
    min-width: 0!important;
}
.quickcheckoutleft, .quickcheckoutright, .extra-width{
	width: calc(33.33% - 20px)!important;
}
.quickcheckoutright{
	margin: 0 30px!important;
}
.quickcheckout-cart{
	border: 1px solid #ddd!important;
}
.quickcheckout-cart a{
	color: #333;
	font-weight: bold;
}
.quickcheckout-cart td{
	width: auto!important;
}
.quickcheckout-cart td.quantity{
	text-align: center!important;
}
.quickcheckout-heading{
	text-decoration: underline;
	padding-bottom: 8px!important;
}
#shipping-method .input-group.date{
	margin-bottom: 10px;
}
#shipping-method .input-group.date label{
	border: 1px solid #bbb;
	margin: 0;
}
.checkout-cart input[type="text"].input-number{
	height: 36px;
}
#shipping-method select option:disabled {
    background-color: #ddd;
    cursor: not-allowed;
}
.modal-header .close{
	position: absolute;
    top: 15px;
    right: 15px;
    margin: 0;
    opacity: 1;
    font-size: 24px;
}
.delivery-notice-modal h4{
	font-weight: bold;
}
#shipping-method select option:disabled {
    color: #df1818;
}
/* End Cart / Checkout */

/* content */
#content {
	min-height: 600px;
}

/* footer */
footer {
	margin-top: 30px;
	padding: calc(20px + 2.2vw) 0px 0;
	color: #fff;
	background-color: #333333;
}
footer .footer-top{
	font-family: 'Nunito', sans-serif;
	padding: calc(30px + 3vw) 5vw calc(30px + 3vw) 5vw;
}
body.common-home footer .footer-top{
	padding: calc(30px + 5vw) 5vw calc(30px + 3vw) 5vw;
}
footer .footer-upper-content{
	display: flex;
	padding: 0 4vw;
}
footer .footer-upper-content &gt; div{
	flex: 1;
	padding: 0 8px;
}
footer .footer-upper-content &gt; div:first-child{
	flex: 1.5;
}
footer .footer-contact-info &gt; img{
	margin-bottom: calc(10px + .6vw);
}
footer .footer-contact-info .telephone, footer .footer-contact-info .email{
	padding: 4px 0;
}
footer .footer-social-icon &gt; .item+.item{
	padding-left: calc(15px + 1.2vw);
}
footer .footer-contact-links.first{
	flex: 3;
}
footer .footer-contact-links.first ul{
	column-count: 2;
}
footer .footer-contact-links ul li{
	padding: 4px 0;
}
footer .footer-comment{
	font-size: calc(14px + .21vw);
	color: #e4b357;
	padding-top: calc(10px + .8vw);
	text-align: center;
}
footer h5{
	font-size: calc(15px + .47vw);
	color: #f58220;
	padding-bottom: calc(8px + .3vw);
	margin: 0;
	letter-spacing: .2vw;
	text-align: left;
}
footer a {
	font-family: 'Nunito', sans-serif;
	font-weight: bold;
	color: #fff;
}
footer a:hover {
	color: #eee;
}
footer .footer-btm {
	font-family: 'Nunito', sans-serif;
	color: #000;
	padding: 8px 0;
	margin-top: calc(10px + 1vw);
	background-color: #919191;
}
footer .footer-btm a{
	font-family: 'Nunito', sans-serif;
	font-weight: bold;
	color: #000;
	text-decoration: none;
}
body #footer-area{
	z-index: 1;
	margin: 0!important;
}
body #footer-area .newsletter-section{
	padding: 0!important;
	border: none!important;
}
#footer-area .newsletter-section{
	display: none;
    background-size: cover;
    color: #fff;
    position: relative;
    z-index: 12;
}
body.common-home #footer-area .newsletter-section{
	display: block;
}
#footer-area .newsletter-section h2{
	color: #fff;
}
#footer-area .newsletter-section .box-content{
	max-width: 100%!important;
}
#footer-area .newsletter-section .newsletter-grid{
	position: relative;
	max-width: 300px;
    margin: 0 0 calc(15px + 1vw) 0;
}
#footer-area .newsletter-section .newsletter-grid .mi-block {
	margin: 0;
}
#footer-area .newsletter-section .newsletter-grid .mi-block.mi-button{
	display: flex;
	position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
	cursor: pointer;
	margin: 0;
}
#footer-area .newsletter-section .mi-block input{
	color: #fff!important;
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #fff;
	padding: 0;
    box-shadow: none;
	max-width: 100%;
    margin: 0 auto;
}
#footer-area .newsletter-section .mi-block a{
	font-weight: bold;
}
.newsletter-modal{
	color: #fff;
}
.newsletter-modal h2{
	color: #fff;
	text-align: center;
}
.newsletter-modal .modal-header{
	padding: 0;
	border: none;
}
.newsletter-modal .modal-dialog{
	width: 1170px;
    max-width: calc(100% - 30px);
    margin: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.newsletter-modal .modal-body{
	padding: calc(20px + 2vw) 15px calc(20px + 2.4vw) 15px;
}
.newsletter-modal .modal-content{
	background: url('img/bg_newsletter-popup.jpg') center center no-repeat;
	width: 100%;
	background-size: cover;
}
.newsletter-modal .box-content{
	max-width: 100%;
	text-align: center;
}
.newsletter-modal .newsletter-grid{
	display: flex;
	flex-direction: column;
    flex-wrap: wrap;
}
.newsletter-modal .newsletter-grid &gt;*{
	display: block;
	width: 100%;
	max-width: 360px;
	margin: 0 auto;
}
.newsletter-modal .box-content .mi-toptext{
	margin-bottom: 25px;
}
.newsletter-modal .box-content input{
	color: #ccc;
	background-color: transparent;
	text-align: center;
	margin-bottom: 20px;
}
.newsletter-modal .modal-header .close{
	position: relative;
	top: 0;
	right: 0;
	background: #e4b357;
    color: #fff;
    padding: 2px 8px;
    font-weight: 500;
}
.footer-logo{
    text-align: center;
}
/* End footer */

/* alert */
.alert {
	padding: 8px 14px 8px 14px;
}
/* breadcrumb */
.breadcrumb {
	font-size: 12px;
	font-weight: bold;
    left: 0;
    padding: 8px 0 0 0;
    background: rgba(255,255,255,0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    border-radius: 0;
    max-width: 100%;
    text-align: center;
}
.breadcrumb li::after{
	display: none!important;
}
.breadcrumb li a{
	color: #333;
}
.breadcrumb li+li:before{
	content: '&gt;';
	display: inline-block;
	color: #333;
}
.breadcrumb i {
	font-size: 15px;
}
.breadcrumb &gt; li {
	position: relative;
	white-space: nowrap;
}
.pagination {
	margin: 0;
	padding: calc(20px + 2vw) 0;
}

/* Buttons */
.buttons {
	margin: 1em 0;
}
.btn-primary{
	font-family: 'Nunito', sans-serif;
	font-weight: bold;
	font-size: calc(14px + .21vw);
	color: #000;
    padding: calc(8px + .4vw) calc(15px + 1.5vw)!important;
    background-color: #ffb003;
    border: 2px solid #ffb003;
    border-radius: 50px!important;
    line-height: 20px;
    min-width: calc(100px + 5vw)!important;
    min-height: 0px!important;
    height: auto!important;
    text-transform: none!important;
    outline: none!important;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus, .cart-btn:hover, .btn-primary:disabled, .btn-primary.disabled{
	color: #000;
    background-color: #fff!important;
    border-color: #ffb003!important;
    box-shadow: none!important;
}
.btn-primary2{
	font-size: calc(12px + .105vw);
	color: #fff;
    padding: calc(8px + .4vw) calc(15px + 1.5vw)!important;
    background-color: transparent;
    border: 2px solid #e4b357;
    border-radius: 0px!important;
    line-height: normal;
    min-width: calc(80px + 4vw)!important;
    min-height: 0px!important;
    height: auto!important;
    text-transform: none!important;
    outline: none!important;
}
.btn-primary2:hover, .btn-primary2:active, .btn-primary2:focus{
	color: #fff;
    background-color: #e4b357!important;
    border-color: #e4b357!important;
    box-shadow: none!important;
}
.btn-primary-red{
	font-size: calc(12px + .105vw);
	color: #fff;
    padding: calc(8px + .4vw) calc(15px + 1.5vw)!important;
    background-color: #6f0004;
    border: 2px solid #6f0004;
    border-radius: 0px!important;
    line-height: normal;
    min-width: calc(80px + 4vw)!important;
    min-height: 0px!important;
    height: auto!important;
    text-transform: none!important;
    outline: none!important;
}
.btn-primary-red:hover, .btn-primary-red:active, .btn-primary-red:focus{
	color: #000;
    background-color: #fff!important;
    border-color: #6f0004!important;
    box-shadow: none!important;
}
.btn-primary-grey{
	font-size: calc(12px + .105vw);
	color: #fff;
    padding: calc(8px + .4vw) calc(15px + 1.5vw)!important;
    background-color: #d6d6d6;
    border: 2px solid #d6d6d6;
    border-radius: 0px!important;
    line-height: normal;
    min-width: calc(80px + 4vw)!important;
    min-height: 0px!important;
    height: auto!important;
    text-transform: none!important;
    outline: none!important;
}
.btn-primary-grey:hover, .btn-primary-grey:active, .btn-primary-grey:focus{
	color: #000;
    background-color: #fff!important;
    border-color: #d6d6d6!important;
    box-shadow: none!important;
}
.btn-allitem{
	font-size: calc(12px + .105vw);
	color: #fff;
    padding: calc(8px + .4vw) calc(15px + 1.5vw)!important;
    background-color: #9b111e;
    border: 2px solid #9b111e;
    border-radius: 50px!important;
    line-height: normal;
    min-width: calc(80px + 4vw)!important;
    min-height: 0px!important;
    height: auto!important;
    text-transform: none!important;
    outline: none!important;
}
.btn-allitem:hover, .btn-allitem:active, .btn-allitem:focus, .btn-allitem:disabled, .btn-allitem.disabled{
	color: #9b111e;
    background-color: #fff!important;
    border-color: #9b111e!important;
    box-shadow: none!important;
}
.btn-default:not(button){
	padding: calc(8px + .4vw) calc(15px + 1.5vw)!important;
	border: 2px solid #999999;
	border-radius: 0px!important;
    line-height: normal;
    min-width: calc(80px + 4vw)!important;
    height: auto!important;
    text-transform: none!important;
    outline: none!important;
}
#enquiry .btn-primary, #cart .btn-primary{
	color: #fff!important;
}
#cart .btn-primary:hover, #cart .btn-primary:active, #cart .btn-primary:focus{
	color: #000!important;
}
/* End Buttons */

/* list group */
.list-group a {
	border: 1px solid #DDDDDD;
	color: #888888;
	padding: 8px 12px;
}
.list-group a.active, .list-group a.active:hover, .list-group a:hover {
	color: #444444;
	background: #eeeeee;
	border: 1px solid #DDDDDD;
	text-shadow: 0 1px 0 #FFF;
}
/* carousel */
.carousel-caption {
	color: #FFFFFF;
	text-shadow: 0 1px 0 #000000;
}
.carousel-control .icon-prev:before {
	content: '\f053';
	font-family: FontAwesome;
}
.carousel-control .icon-next:before {
	content: '\f054';
	font-family: FontAwesome;
}
/* product list */
.product-thumb {
	border: 1px solid #ddd;
	margin-bottom: 20px;

}
.product-thumb .image {
	text-align: center;
}
.product-thumb .image a {
	display: block;
}
.product-thumb .image a:hover {
	opacity: 0.8;
}
.product-thumb .image img {
	margin-left: auto;
	margin-right: auto;
}
.product-grid .product-thumb .image {
	float: none;
}
@media (min-width: 767px) {
	.product-list .product-thumb .image {
		float: left;
		padding: 0 15px;
	}
}
.product-thumb h4 {
	font-weight: bold;
	padding-top: 10px;
}
.product-thumb .caption {
	padding: 0 20px;
}

@media (max-width: 767px) {
	.product-list .product-thumb .caption {
		min-height: 0;
		margin-left: 0;
		padding: 0 10px;
	}
	.product-grid .product-thumb .caption {
		min-height: 0;
	}
}
.product-thumb .rating {
	padding-bottom: 10px;
}
.rating .fa-stack {
	font-size: 8px;
}
.rating .fa-star-o {
	color: #999;
	font-size: 15px;
}
.rating .fa-star {
	color: #FC0;
	font-size: 15px;
}
.rating .fa-star + .fa-star-o {
	color: #E69500;
}
h2.price {
	margin: 0;
}
.product-thumb .price {
	color: #444;
}
.product-thumb .price-new {
	font-weight: 600;
}
.product-thumb .price-old {
	color: #999;
	text-decoration: line-through;
	margin-left: 10px;
}
.product-thumb .price-tax {
	color: #999;
	font-size: 12px;
	display: block;
}
.product-thumb .button-group {
	border-top: 1px solid #ddd;
	background-color: #eee;
	overflow: auto;
}
.product-list .product-thumb .button-group {
	border-left: 1px solid #ddd;
}
@media (max-width: 768px) {
	.product-list .product-thumb .button-group {
		border-left: none;
	}
}

.product-thumb .button-group{
	display: flex;
}

.product-thumb .button-group button {
	width: 100%;
	border: none;
	display: inline-block;
	float: left;
	background-color: #eee;
	color: #888;
	line-height: 38px;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
}
.product-thumb .button-group button + button {
	border-left: 1px solid #ddd;
}
.product-thumb .button-group button:hover {
	color: #444;
	background-color: #ddd;
	text-decoration: none;
	cursor: pointer;
}
@media (max-width: 1200px) {
	.product-thumb .button-group button, .product-thumb .button-group button + button {
		width: 33.33%;
	}
}
@media (max-width: 767px) {
	.product-thumb .button-group button, .product-thumb .button-group button + button {
		width: 33.33%;
	}
}
.thumbnails {
	overflow: auto;
	clear: both;
	list-style: none;
	padding: 0;
	margin: 0;
}

.thumbnails &gt; img {
	width: 100%;
}
@media (min-width: 1200px) {
	#content .col-lg-2:nth-child(6n+1),
	#content .col-lg-2:nth-child(6n+1),
	#content .col-lg-3:nth-child(4n+1),
	#content .col-lg-4:nth-child(3n+1),
	#content .col-lg-6:nth-child(2n+1) {
		clear:left;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	#content .col-md-2:nth-child(6n+1),
	#content .col-md-2:nth-child(6n+1),
	#content .col-md-3:nth-child(4n+1),
	#content .col-md-4:nth-child(3n+1),
	#content .col-md-6:nth-child(2n+1) {
		clear:left;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#content .col-sm-2:nth-child(6n+1),
	#content .col-sm-2:nth-child(6n+1),
	#content .col-sm-3:nth-child(4n+1),
	#content .col-sm-4:nth-child(3n+1),
	#content .col-sm-6:nth-child(2n+1) {
		clear:left;
	}
}

/* fixed colum left + content + right*/
@media (min-width: 768px) {
    #column-left  .product-layout .col-md-3 {
		width: 100%;
	}
	
	#column-left + #content .product-layout .col-md-3 {
		width: 50%;
	}
	
	#column-left + #content + #column-right .product-layout .col-md-3 {
		width: 100%;
	}
	
    #content + #column-right .product-layout .col-md-3 {
		width: 100%;
	}
}

/* fixed product layouts used in left and right columns */
#column-left .product-layout, #column-right .product-layout {
	width: 100%;
}

/* fixed mobile cart quantity input */
.input-group .form-control[name^=quantity] {
	min-width: 50px;
}

/* Missing focus and border color to overwrite bootstrap */
.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
    background-image: none;
    background-color: #df5c39;
}

.owl-nav &gt; *{
	position: absolute;
	top: 0px;
	/*display: flex;
	justify-content: center;*/
	
	width: 24px;
	height: 100%;
}

.owl-nav &gt; * &gt; i{
	align-self: center;
	font-size: 18px;
}

.owl-nav &gt; *:nth-child(1){
	left: 0px;
}
.owl-nav &gt; *:nth-child(2){
	right: 0px;
}

.owl-dots{
	text-align: center;
	width: 100%;
	position: absolute;
	bottom: 14px;
	left: 0px;
}

.owl-dots &gt; *{
	display: inline-block;
	margin:  4px;
	vertical-align: top;
	background: #e1e1e1;
	border-radius: 50%;
	width: 10px;
	height: 10px;
}

.owl-dots &gt; *:hover, 
.owl-dots &gt; *.active:hover,
.owl-dots &gt; *.active{ 
	background: #999;
}

html .live-search .result-text{ 
	line-height: 34px; 
}

html .live-search ul{
	margin-bottom: 34px;
}

.gmap &gt; div{
	height: 100% !important;
}

#ToTopHover {
	position: fixed;bottom: 20px;right: 20px;
	cursor: pointer;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADMAAABmCAYAAABm4qluAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OThENzgzMjVCNzRCMTFFM0EzRDU5MjlENjBGMTBDRUEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OThENzgzMjZCNzRCMTFFM0EzRDU5MjlENjBGMTBDRUEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5OEQ3ODMyM0I3NEIxMUUzQTNENTkyOUQ2MEYxMENFQSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5OEQ3ODMyNEI3NEIxMUUzQTNENTkyOUQ2MEYxMENFQSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pl4ggucAAAtuSURBVHjazFwLcBbVFb5ZIZDwNIYKGhigIkhCgDERFeqjNVowalWw6DhW7TiObX3X1kdja6K2tL6mtWOnRcVHrcUHKtVSRC0vDSqvIFYRTCBpi5GHRgiQhMRz5FvZuTn37u7dzePMfENm///f3W/vPed859y7ZJSXl6uUrBfhcMKRhMGEgYRsQk9CBqGN0ELYQ/iMUE+oI2zFMScrKyv7+u8eCQkcQhhJyCcMB4EoNjTw9xeELYT1hI2EJtebcSWTSRhPKMJoJLF+eBiM7YTVhFWExs4gM45wEmGQSt8OI5xGKCYsI6wktHYEmQGE7xKOiXmD++Evca7H1zoTo/UK/Cs1MuzUMyL4BDtyLRy7Hv6wD083A0GCp1UuIQ++09dyPvbDSwnzCB+lQYZH4nu4EZNVE9YSNoFAmH2If7Nxw+x/owie8F3+zoUYoXeTkCkEEc/wOd/8UkKNo4+wk78PHEGYQhgrfI+vX4oHutyFzBgLkV2ERYQ1KTr//whzCaMJZxByhO+UIHS/E4cM+8i5BiKbCS8SdqiOsQ/hc6WGYDOV8DlhgzR8uvUnXGDwkUrCEx1IxLfdhL8TXjNMufOgMkLJnInQqNsKwgJIks6ypZjOuvUmnK3PLJ1MPuasbiw3FqqusWUIELpxwJhkIsOC8NuGIZ+H5OdqOcgzrvYSpI5uUyoqKvpJZMZDTujGI7IzwY1wHrmCcHqCc+wl/COgJHzLCo6OF1C/kyzJMAmRmbjoCQitrsb3UiUcn0ijkx0kM0IQjvwU/p3g4t9E5u4dODYZ+s7VFhOatWN9/BDukykw5JPNCYiYwvvxCQjtMASDAp9MJgos3VY7XnCEhUiQ0Hcczy/dVx5NtQEeiqv+gsNtdLgQJ7LpIUR8+xamXVyrE5I2R+KhnlbCBvPKbocRuRhzOKqVOIxQCwSubsM8Q9lb6+jsptpkmxBWgyMU14e2CMcGeYaC69MYJx4FH8m0lAl/IfwzxIemxrjmduHhZHsofnT7IuJJjw5x9o8gGLnafBsFlskmQRdGFaJ6iM704Dx6zb43IpEZwu9924D6JNg6YkIvW85ZHJHQPoHMIZ6gmVot8zsOkWeECyoUVkkJtQldmwypBMgIEYVhRDZZiAQJLUxAKEMqXzxpuCzOPDqEyH8Jz4UQ8e1NwpIIhKRquKdwvMVT7fu8GWgHSRXo+SFEnlLxOpGvRyBUKBzvKzzwJg/1tG65hgj3isGf6kAkbqL1CS02fLbeoMUOFVxhL5P5RPjyUIPTrcE0atJ8xJWIb28QXtUeFGuw5w2RVbq/bT0M2X4YpLt0ovcwNWeixpibUl9gOc5bimafKSd5UBztVAGT2Yqn2kerEVhr/ccSsR6B4EuzwbEK6qPO8p0hQu3FubHWw9OX6paJIRf+P5JX2lYbkucmCP7C97LTj9XrDOJxsOpexlF2nBQoysrK2rzAtPlMyDcndzMyk7Uy3Jc264Nlc5OSO+zHION3B2NfKRKOr6NRadBbTSsNanmqQVl3pvVAlNOzfjOURLu+2R5D8uIEdXYXk+FVgSOF4ytoVHZIZPzQKFVxY1ARdoVNhKyRCrSlegLS5f98Ja/Lc60+pQuIlBr6APP11OAZSubnlLzKexq6L1md4CPTCOcgqurG9VCNJA0k22iRE9xwu9wgKdIw9o0fEI4zfL7Y0DuzLgO+i9pe6g8PQltpDTTVthRIDEBjo9hyX5UQpSouGV/8NaMV5Al1D8/pfMj0tZAicbQan5PXWcbjPLYUsNhGJAoZvwnBNc+5QvZVKJImABxhPgYp/nsXnLQN5DMhYnMg40eo8O0qLZjyq6I4WhTjRdPHUMbmWb53GFAcUBbNCCYertcrxsh9CiLVUaNGVGNlOgf9rRNVtDZspqWfENZK4qbHsohtr9hk/CFfDpV9HOZ6vxQj2R4UfytcgorrFi0WdrwK/BbUQT6mn8sotGDU/Z0anydJTklsNwQqY6A6uLlnECJTLyQ9fyfgfvjRHjx5f9PQ9rQybVrWhBvPQUIdAoJZcP5W+EIDRiIDJXtzWjeQlExPRK4S1BpDIv6uEEpYYYRWY9q+qRLs13Qlk4UwzU3BUQkfSC4eRgkUO+/LecHFd1zI8BP9oZLXQZMat7iuVgdawI9ZBG9iMtzcuEHJuzhs1hzotmTGuNbPodJnQVWkRoZD76+ho8JCdhXAN1CPiLcfQaAPIt1wqG/TrhDfjiX8mXB7sDxOQuZUwq9CMr6/5lIZIdlxY3FJQCkXwf8mG2oXjoj3E36LaedMhgukXxouopCpH0GecTF28teAsahjpNVnvv4teKCPu5A5xUKEmwh/QOmalr0PP+E909cruTl+DUL3M6Z6QjJ+SuUGIqsQzearjrElOP/rhs9vMjVXJDLfwPyUCqW/EX6i4u8TiGs88j8j/NFwzxVKaE5KZG5Wco+Zl8DvVQlePHCwRwkPCsd55ewXeqjXyZRgzuq2FhGlK2yOkjeesivMNJHhkvgq4Ue8C7BMJVuHyVPJtjXeqeTm5KUVFRW5EplpkBO6PaAObKB2tWMRTq9PcA7ugd8tSJv+wdHxAup3piUZJiFyDy56EUKrq3HrS9p/cw7vNQuSKRKEYxukhKtxr+A+ray+BPrO1WYLPYFDfb3oBZSwbquV+25AJvI7gwTiEbrR8by1hvxzhk8mW8mt0BccL1gEIraGHu9N+7Hj+aX7KqCpNpjJHIVEqTtcpcOFjoajRlmcugzTLq69JyRtjsSFnpK3c6xV8V9eKIZey4nxm2scRqgJAle3CZ6S1yyrHHzkXkttstlSMV7m4EPSezsjPUMTYlOME58Y4iMrMJ3uCfGhm2Jcc4tqv1fgq63A0uslUfdoTrGIUrbluEmuNufiuyb7PnRhFNsuhOiv9mhmCTX7rohEfqPklQG2ZahPglu25uI3JpsekVCjQKanaVtjawpEblZy0/vZFAi1qvavwBi3NXoJiFRaiAQJPZCAkHFbY7vhsvjASSFEuPS9TUVbhniS8HAEQlJ7Kku4h2YP7SGdda6hAr0zhMh1Kl4n8qEIhKTN2znCfTQyma3Cl4cLx7YhBLcasvJ1yu0twYcgICV71aDF8oRp1sAHpHeGCw1ONx/laqPmI9eqZK87/onwey13vISiUNrPM144VuMZsv1EZV4RW4hmwz5ErRtUggWigD2OabwfIbzcUN3yPR8vSTDum23AU83RaoRiS7unEu2g2pQbHLwCUI1pa7IxghtwbqzyMIxS3XJWyIU/UMl2zJqsKiTPnSX4C99LnX/wX8KPTlDdZ+OcbxxlpXdtFgW3Nb4lNC14Cl7RzchcIvjybkS9r4eL+7dSh/1U1fnbskw2GnlHtwU0KvV6q2meQS1z5BrYxURYBdwqqAFWGk9IfbMGQ/I6AvG+K417bvnC8adpVOokMv7oSFUcbwm+vIuI8P7QGYYC7VE9AelZ/i5Br7H9SB1YDOpsIrcY+gB36alBkvrVUL7SK/NXo/vSvxN8hH31diW/r8PKfaUkDSTjUD3L8Nnp8K1JHURkLLTaBYbPZ0O3tTPbMiC/u9JXyf1hbuU+COHJmqomBRK8JnQRwq9pif0pEFVxyfjij8PfT5W8rZHnNK/p8PrJy+i3xdFqHqLUNIz4AMt3Z9uIRCHjNyG45rnDoKS56isFOMK8DX1Vgy5Kozq4EzBLHdzSyG9bcFv4qAhNv1kQoSopGTZeNL0K3ZZxlu8NA6YHuij71MFNDb1VvPcKqtGeeifKl+NsN2FleqU6sI5zsYrWhs1Wbi9FNGJGzInY9opNxh9y9qMFiDalhn6BqzVAwT+tHP6XCNctWvWIZn+FGOUNOwWOo9CEUV+EQPKJ65NIunluJ0L489BwBegfjIQ47aPa/weHjRiBGkS/dUpefI1tXwowAKeGqGOaRl1lAAAAAElFTkSuQmCC) no-repeat left -51px;width: 51px;height: 51px;display: block;overflow: hidden;float: left;opacity: 0;-moz-opacity: 0;filter: alpha(opacity=0);}
	#ToTop {display: none!important;text-decoration: none;position: fixed;bottom: 20px;right: 20px;overflow: hidden;width: 51px;height: 51px;border: none;text-indent: -999px;background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADMAAABmCAYAAABm4qluAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OThENzgzMjVCNzRCMTFFM0EzRDU5MjlENjBGMTBDRUEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OThENzgzMjZCNzRCMTFFM0EzRDU5MjlENjBGMTBDRUEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5OEQ3ODMyM0I3NEIxMUUzQTNENTkyOUQ2MEYxMENFQSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5OEQ3ODMyNEI3NEIxMUUzQTNENTkyOUQ2MEYxMENFQSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pl4ggucAAAtuSURBVHjazFwLcBbV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) no-repeat left top;
}

@media (min-width: 1200px){
	.pull-lg-right{
		float: right;
	}
	.pull-lg-right{
		float: right;
	}
}

@media (min-width: 992px){
	.pull-md-right{
		float: right;
	}
	.pull-md-right{
		float: right;
	}
}

@media (min-width: 768px){
	.pull-sm-right{
		float: right;
	}
	.pull-xs-right{
		float: right;
	}
}

#product-filter-replace{
	position: relative;
}

#product-filter-replace #product-filter-loading-overlay{
	display: none;
	background: rgba(255, 255, 255, 0.8);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 3;
}


@media (max-width: 768px){
	.text-danger {
	    width: 250px;
	}
}

  .pd-5 {
	  padding: 5px;
  }

  .pd-t15 {
	padding-top: 15px;
  }
  
  .pd-b15 {
	padding-bottom: 15px;
  }
  
  .pd-l15 {
	padding-left: 15px;
  }
  
  .pd-r15 {
	padding-right: 15px;
  }
  
  .pd-30 {
	padding: 30px;
  }
  
  @media (max-width: 1300px) {
	.pd-30 {
	  padding: 20px;
	}
  }
  
  .pd-t30, .pagination {
	padding-top: 30px;
  }
  
  @media (max-width: 1300px) {
	.pd-t30, .pagination {
	  padding-top: 20px;
	}
  }
  
  .pd-b30 {
	padding-bottom: 30px;
  }
  
  @media (max-width: 1300px) {
	.pd-b30 {
	  padding-bottom: 20px;
	}
  }
  
  .pd-l30 {
	padding-left: 30px;
  }
  
  @media (max-width: 1300px) {
	.pd-l30 {
	  padding-left: 20px;
	}
  }
  
  .pd-r30 {
	padding-right: 30px;
  }
  
  @media (max-width: 1300px) {
	.pd-r30 {
	  padding-right: 20px;
	}
  }
  
  .pd-40 {
	padding: 40px;
  }
  
  @media (max-width: 1300px) {
	.pd-40 {
	  padding: 30px;
	}
  }
  
  .pd-t40 {
	padding-top: 40px;
  }
  
  @media (max-width: 1300px) {
	.pd-t40 {
	  padding-top: 30px;
	}
  }
  
  .pd-b40 {
	padding-bottom: 40px;
  }
  
  @media (max-width: 1300px) {
	.pd-b40 {
	  padding-bottom: 30px;
	}
  }

  .mg-t10 {
	  margin-top: 10px;
  }
  .mg-b10 {
	  margin-bottom: 10px;
  }

  .no-border {
		border: none !important;
	}  
	
	.z1 { 
		z-index: 1; 
	}

	.bootstrap-datetimepicker-widget .datepicker .day.disabled{
		opacity: 0.2;
	}

	.w100px {
		width: 100px;
	}

/* corner badge (currently use for gift card badge) */
.corner-badge {
	color: #fff;
}
.corner-badge::after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	top: 0;
	right: 0;
	/* border width to be changed  */
	border-width: 60px;
	border-style: solid;
	/* border color to be changed  */
	border-color: #000 #000 transparent transparent;
	z-index: 1;
}
  
@media (max-width: 1300px) {
	.corner-badge::after {
		border-width: 60px;
	}
}

@media (max-width: 767px) {
	.corner-badge::after {
		border-width: 40px;
	}
}

.corner-badge-price {
	padding-top: 30px;
	padding-right: 15px;
	/* color to be changed  */
	color: #fff;
	/* font size to be changed  */
	font-size: 20px;
}

@media (max-width: 1300px) {
	.corner-badge-price {
		padding-top: 15px;
		padding-right: 10px;
	}
}

@media (max-width: 767px) {
	.corner-badge-price {
		padding-top: 5px;
		padding-right: 5px;
	}
}

/* fix flex-group on firefox and other browser */
#coupon-content input, #voucher-content input {
    min-width: 0px;
}
/* fix flex-group on firefox and other browser */

/* quickcheckout loading UI related */
.quickcheckout-checkout .blockUI.blockMsg h1{
    margin: 15px 0;
}

@media screen and (max-width: 540px){
    .quickcheckout-checkout .blockUI.blockMsg{
        width: 80%!important;
        left: 50%!important;
        transform: translateX(-50%);
    }
    .quickcheckout-checkout .blockUI.blockMsg h1{
        margin: 5px 0;
        font-size: 24px;
    }
}
/* quickcheckout loading UI related */

/* refer bootstrap 4 */
.input-group-b4 {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}
.input-group-append {
    margin-left: -1px;
}
.input-group-prepend {
    margin-right: -1px;
}
.input-group-append, .input-group-prepend {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.input-group-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
    text-align: center;
	white-space: nowrap;
	padding: 6px 12px;
}
.input-group-b4 &gt; .form-control {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}
/* refer from bootstrap 4 */

/* recaptcha horizontal center */
#google_recaptcha{
	margin-right: 15px;
}
#google_recaptcha .g-recaptcha {
    -webkit-transform-origin: left top;
    transform-origin: left top;
}

/* for mobile */
@media (max-width: 767px) {
	#google_recaptcha {
		max-width: 300px;
		transform: none !important;
		transform-origin: 0 !important;
		margin: 0;
	}
}

/* to scale recatpcha to smaller size in bigger screen */
@media (min-width: 768px) {
	#google_recaptcha .g-recaptcha {
		transform: scale(0.75) !important;
		transform-origin: top left !important;
	}
}
/* recaptcha horizontal center */

/* remove x button of certain inputs in IE */
.form-control::-ms-clear {
    display: none;
}
/* remove x button of certain inputs in IE */

/* remove border for filters */
.list-group-item {
	border: none;
}
/* remove border for filters */

/* fix on checkout page when address too long on existing address dropdown, cause page overflow */
.quickcheckoutleft{
    overflow: hidden;
}
/* fix on checkout page when address too long on existing address dropdown, cause page overflow */

.iframe-wrap iframe {
	width: 100%;
}

/* Media Query */
@media (max-width: 1400px) {
	.enquiry-modal .modal-dialog{width:100%;padding:0 15px;margin:15px 0;}
	header #main-menu ul li{padding:0 15px;}
	header #main-menu ul{padding:20px 0;}
	.header-container-top .header-top .header-accouncement{flex:1;}
	header .header-container-top{padding:8px 15px;}
    header #main-menu ul.header-ul-container{padding:15px 3vw}
	.brand-container .item{width:20%;}
	.instagram.slick-slider .prev{right:88px;}
	.instagram.slick-slider .next{right:18px;}
	.module-instagram .instagram .item{padding:0 12px 0 0!important;}
	.featured-news-container .news-category{top:22px;left:22px;}
	.featured-news-container .news-item{padding:12px;}
	.featuredtab-product-container{margin-left:-12px;margin-right:-12px;}
	.featuredtab-product-container .product-gutter,.product-view&gt;.product-gutter,.product-related-content .item{padding:0 12px 24px 12px!important;}
	.header-menu .header-logo{max-width:150px;}
}
@media (max-width: 1200px) {
	.news-container{padding:0;}
	footer .footer-upper-content{padding:0;}
	.fcategory-container .slick-nav.left{left:calc(15px + .8vw)!important;}
	.fcategory-container .slick-nav.right{left:calc(80px + .8vw)!important;}
	.fcategory-description-box{padding-left:calc(15px + .8vw);}
	.header-container-top .header-top &gt; div+div{padding-top:4px;}
	header .header-container-top .header-top{flex-direction:column;}
	.newsletter-modal .modal-dialog{margin:15px;}
	.contact-detail form{width:65%;}
	.contact-detail .detail{width:35%;}
	.brand-container{padding:0;}
	.featuredtab-product-container .product-gutter{width:33.33%;}
	footer .footer-top{padding:calc(15px + 3vw) 0;}
	.slider-slideshow-description .slider-slidehow-title{max-width:100%;}
	.header-menu ul li a{padding:8px calc(8px + .8vw)!important;}
}
@media (max-width: 1024px) {
	.product-block .product-hover-buttons{opacity:1;position:relative;padding-top:8px;}
	.product-block .product-button{padding:6px 0;}
	.product-block .product-button a+a{margin:0;}
	.product-block .product-button .addcart-btn{background:url('img/cart.png') center center no-repeat;}
	.product-block .product-button .view-btn{background:url('img/msg.png') center center no-repeat;}
}
@media (max-width: 991px) {
	.fcategory-item-box .item .detail{top:100%;transform:translateY(-100%);max-width:100%;}
	.featured-module .featured{padding:0!important;}
	.section-space.featured{padding: calc(20px + 3vw) 0!important;}
	.testimonial-container{margin-top:0;}
	.testimonial-container{padding:calc(12px + 2vw) calc(12px + 2vw);max-width:calc(100% - 4vw);}
	.section-icon-container .item .detail,.about-us-container .section-icon .item .detail{text-align:center;}
	.section-icon-container .item,.about-us-container .section-icon .item{padding:calc(12px + 1.2vw) calc(8px + 1vw);}
	.section-icon-container .item .flex{justify-content:center;align-items:center;}
	.section-icon-container,.about-us-container .section-icon{flex-direction:column;text-align:center;}
	.section-aboutus-detail{padding:calc(15px + 1.2vw);}
	.section-aboutus-container{flex-direction:column;}
	.header-menu{padding:12px 0 8px;}
	.quickcheckoutleft,.quickcheckoutright,.extra-width{width:100%!important;}
	.quickcheckoutright{margin:0!important;}
	.product-image-main-container .sticker{left:15px;}
	.product-related-container{padding:3vw 0;}
	.sort-view-box{padding:0 0 calc(15px + 1vw) 0;}
	.product-category #column-left{width:30%;}
	.product-category #content{width:70%;}
	.contactus-container,.news-container{padding:0;}
	.about_us .box2 .box-detail-2{margin:0;}
	.about_us .box1 &gt; div+div,.about_us .box2 &gt; div+div{padding:0;}
	.about_us .box1 &gt; div, .about_us .box2 &gt; div{width:100%;margin-bottom:calc(15px + 1vw);}
	.about_us .box1, .about_us .box2{flex-direction:column;}
	.featured-brand-container,.featured-news-container{padding:0;}
	.featured_by_tab .fcategory_tab{padding:0;}
	.featured-section-box .item &gt; div+div{padding:0;}
	.featured-section-box .slick-slider .slider-dots{left:50%;transform:translateX(-50%);bottom:-20px;}
	.featured-section-box .item .detail{text-align:center;padding-bottom:50px;}
	.featured-section-box .item &gt; div{width:100%;}
	.featured-section-box .item{flex-direction:column;}
	.header-menu{justify-content:space-between;}
}
@media (max-width: 900px) {
	body:not(.common-home) #footer-area{margin-top:30px!important;}
}
@media (max-width: 800px) {
	footer .footer-upper-content{flex-direction:column;}
	footer h5{text-align:center;}
	#footer-area .newsletter-section .newsletter-grid{margin:0 auto calc(15px + 1vw) auto;}
	footer .footer-upper-content &gt; div{width:100%;text-align:center;margin-bottom:20px;}
	footer .footer-upper-content{flex-wrap:wrap;}
}
@media (max-width: 767px) {
	.news-ncategory .news-container #column-left,.news-ncategory .news-container #content{width:100%;}
	.product-product .product-enquiry-form .form-group input,.product-product .product-enquiry-form .form-group textarea{margin-bottom:12px;}
	.product-product .product-enquiry-form .form-group{margin-bottom:0;}
	.sticker-button .phone-button img{max-width:40px;}
	.enquiry-modal #google_recaptcha{transform:scale(0.8)!important;}
	.enquiry-modal .enquiry-submit-btn{flex-direction:column;}
	.enquiry-modal .modal-dialog{padding:0 6px;}
	.enquiry-modal .enquiry-modal-box{padding:calc(20px + 2vw) 0;}
	.about-us-container .content-box3 .image{margin-bottom:calc(12px + .6vw);}
	.about-us-container .content-box3 &gt; div{width:100%;}
	.about-us-container .content-box3{flex-direction:column;}
	.about-us-container .section-icon{margin:calc(15px + 4vw) 0;}
	.fcategory-container .slick-list, .fcategory-container .slick-slider{position:relative;}
	.fcategory-container .slick-nav{top:-40px;bottom:auto;}
	.fcategory-description-box{padding:0 15px 20px 15px;}
	.fcategory-description-box,.fcategory-item-box{width:100%;}
	.fcategory-container{flex-direction:column;}
	header #account{display:none;}
    header.scroll .header-container-top .header-top &gt; div{text-align:center;}
	.zoom-product-image{display:none;}
	.product-product .product-image-additional-container .slick-slide{margin:0 0 2px 0!important;}
	.product-product .product-imagebox{width:100%;}
	.product-product .product-descriptionbox{width:100%;}
	.product-category #content{width:100%;}
	.contact-footer,.contact-detail{flex-direction:column;}
	.contact-detail form{width:100%;padding:0;}
	.contact-detail .detail{width:100%;padding-bottom:25px;}
	.iframe-wrap iframe{max-height:350px;}
	.brand-container .item{width:25%;}
	.about_us .box1, .about_us .box2, .about_us .story-box, .about_us .story-box&gt;div{padding:0;}
	.instagram .slick-dots{left:50%;transform:translateX(-50%);}
	.module-instagram .instagram{padding:0 6px!important;}
	.module-instagram .instagram .item{padding:6px!important;}
	.module-instagram{flex-direction:column-reverse;}
	.module-instagram .instagram,.instagram-detail{width:100%!important;}
	.featured-news-container .news-category{top:18px;left:18px;}
	.featured-news-container .news-item{padding:8px;}
	.product-block{-webkit-box-shadow:0px 0px 5px 2px rgba(153,153,153,0.2);-moz-box-shadow:0px 0px 5px 2px rgba(153,153,153,0.2);box-shadow:0px 0px 5px 2px rgba(153,153,153,0.2);}
	.featuredtab-product-container{margin-left:-8px;margin-right:-8px;}
	.featuredtab-product-container .product-gutter,.product-related-content .item{padding:0 8px 16px 8px!important;}
	footer .footer-btm-container{flex-direction:column;text-align:center;}
	.slideshow .slideshow-thumbnail-box{display:none;}
	.header-container-top .header-top{flex-direction:column;}
	.header-container-top .header-top &gt; div+div{padding-top:4px;}
	header.scroll .header-container-top{display:none;} 
	header.scroll .header-container-top .header-top{flex-direction:row;}
	header.scroll .header-container-top .header-top &gt; div{padding:0;}
}
@media (max-width: 600px) {
	.product-block .product-hover-buttons &gt;*{max-width:25px;}
	.featured-news-container .slick-list{margin:0;}
	.featuredtab-product-container{margin:0;}
	.featuredtab-product-container .product-gutter{width:100%;}
	.featuredtab-product-container{display:none!important;}
	.featuredtab-product-container.mobile{display:block!important;}
	.product-block .more-options-text{padding:0!important;}
	.product-block .sticker, .product-image-main-container .sticker{top:0;left:0;font-size:12px;padding:2px 8px;}
	.product-view&gt;.product-gutter{width:50%!important;}
	.brand-container .item{width:33.33%;padding:5px;}
	.product-block .product-button a{background-size:40px!important;}
	.featured-news-container .news-category{top:10px;left:10px;}
	.featured-news-container .news-item{padding:0;}
	.section-space.featured_section:after{height:40px;bottom:-20px;}
	footer .footer-social-icon{justify-content:center;}
	footer .footer-contact-links.first ul{column-count:1;}
	footer .footer-upper-content &gt; div{width:100%;text-align:center;}
}
@media (max-width: 480px) {
	#product .button &gt; *:first-child{margin:0 0 15px 0;}
	#product .button-box{display:flex;flex-direction:column;align-items:flex-start;}
	.testimonial-container{padding: calc(12px + 2vw) 0;}
	.section-icon-container .item{padding:calc(12px + 1.2vw) 0;}
	header .header-container-top{padding:8px;}
	.header-container-top .header-social-icon .header-social-box &gt; .item{padding-left:10px;}
	.featuredtab-product-container .product-gutter,.product-view&gt;.product-gutter{padding:0 6px 12px 6px!important;}
	.product-related-content{flex-direction:column;}
	.product-related-content .item{width:100%;}
	.sort-view-box&gt;div{margin-bottom:5px;}
	.brand-container .item{width:50%;}
	#footer-area .newsletter-section .mi-block:first-child{margin-right:0;}
	#footer-area .newsletter-section .newsletter-grid{display:flex;flex-direction:column;}
}
#side-manufacturer {
    overflow: scroll;
    height: 600px;
}

.approval-page-order {
	margin-top: 40px;
	border: 1px solid #efefef;
	border-radius: 14px;
}

.approval-page-order .form-control {
	border: 1px solid #efefef;
	border-radius: 14px;
}

.approval-page-order .qty-border {
	border: 1px solid #dedede;
	border-radius: 14px;
	padding: 5px 14px;
}

.approval-page-order table thead td {
	text-transform: uppercase;
}

.approval-page-order .table-order-info {
	border-radius: 10px 10px 0px 0px;
	border-bottom: 1px solid #efefef;
}

.approval-page-order .table-order-info thead td, 
.approval-page-order .table-order-info tbody td 
{
	border-right: 1px solid #efefef;
	padding: 10px 15px;
}


.approval-page-order .table-order-info thead td
{
	color: #aaa;
	padding: 10px 15px;
}

.approval-page-order .table-order-info thead td:last-child,
.approval-page-order .table-order-info tbody td:last-child {
	border-right: none;
}

.approval-page-order .table-order-info .no-border td {
	border-right: none;
	padding: 0px;
}

.approval-page-order .gray {
	color: #aaa;
}

.approval-page-order .table-product-info thead td {
	background: #ddd;
}

.approval-page-order .btn-approval {
	border: 1px solid #efefef;
	color: black;
	border-radius: 18px;
	padding: 5px 50px;
}

.approval-page-order .btn-approval.btn-reject {
	background: #f58220;
	font-weight: bold;
}

.approval-page-order .btn-approval.btn-approve {
	background: #ddd;
	font-weight: bold;
}</pre></body></html>