/** Fonts **/
/*@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,700&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bitter&display=swap');
/*font-family: 'Poppins', 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 + 5vw);}
}
@media (min-width: 1400px){
	.container-l {padding: 0 calc(10px + 4.5vw);}
	.container-m {padding: 0 calc(10px + 15vw);}
}
.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: 'Work Sans', serif;
	font-weight: 300;
	color: #414141;
	font-size: calc(12px + .105vw);
	line-height: calc(20px + .313vw);
	width: 100%;
	letter-spacing: 1px;
}

h1, h2, h3, h4, h5, h6 {
	color: #333;
}
/* default font size */
.fa {
	font-size: 14px;
}
/* Override the bootstrap defaults */
h1 {
	font-size: 33px;
}
h2 {
	font-size: calc(16px + .84vw);
	font-family: 'Work Sans', sans-serif;
	background: url('../../../../../image/catalog/Home1/title-bg.png') center center no-repeat;
	background-size: contain;
	font-weight: 700;
	color: #191955;
    padding: 25px 0 20px 0;
	margin-bottom: calc(10px + 1.4vw)!important;
}
h2:after{
	display: none!important;
}
h3 {
	font-size: calc(16px + .84vw);
	font-family: 'Work Sans', sans-serif;
	font-weight: 700;
	color: #191955;
	text-transform: uppercase;
}
h4 {
	font-size: calc(15px + .26vw);
	font-family: 'Work Sans', sans-serif;
	font-weight: 700;
	color: #2b3395;
	text-transform: uppercase;
}
h5 {
	font-size: calc(15px + .26vw);
	font-family: 'Work Sans', sans-serif;
	font-weight: 700;
	color: #900000;
	text-transform: uppercase;
}
h6 {
	font-size: 10.2px;
}
.p50 {
    width: 50%;
}

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

	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 > *, .slick-slider .slick-dots li > *{
    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 > *, .slick-dots li.slick-active > *{
    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 + 3vw) 0!important;
	overflow: visible!important;
	z-index: 1;
}
body:not(.common-home) .section-space{
	padding: 0!important;
}
.product-block{
	border: none!important;
	-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);
	padding-bottom: 20px!important;
	height: 100%;
}
.product-block .product-inputs {
    width: 70%;
    margin: auto;
    margin-top: 20px;
}
.product-block .product-inputs .input-number {
    height: 40px;
}
.btnPlus {
    background-color: #2b3395;
    color: #fff;
    font-size: 9px;
    width: 40px;
}
.btnMinus {
    background-color: #d6d6d6;
    color: #fff;
    font-size: 9px;
    width: 40px;
}

.product-block:hover .product-details{
	font-weight: bold;
}
.product-block .product-name{
	padding: 5px 8px 0 8px!important
}
.product-block .product-name a{
	font-size: calc(13px + .16vw);
	font-weight: 700;
	color: #191955;
	letter-spacing: 1px;
	line-height: 1.6em;
}
.product-block .product-details{
	font-size: calc(13px + .16vw);
	font-weight: 500;
	color: #333;
	padding: 0!important;
	height: 25px;
}
.product-block .product-details .price{
	font-size: calc(13px + .16vw)!important;
	color: #2b3395;
	font-weight: 700;
}
.product-block .product-button a{
	width: 50px;
	height: 50px;
	cursor: pointer;
}
.product-block .product-button a+a{
	margin-left: 20px;
}
.product-block .product-button .addcart-btn{
	background: url('../../../../../image/catalog/Home/cart.png') center center no-repeat;
}
.product-block .product-button .addcart-btn:hover{
	background: url('../../../../../image/catalog/Home/icon2.png') center center no-repeat;
}
.product-block .product-button .view-btn{
	background: url('../../../../../image/catalog/Home/mail.png') center center no-repeat;
}
.product-block .product-button .view-btn:hover{
	background: url('../../../../../image/catalog/Home/icon1.png') center center no-repeat;
}
.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>li>a, .pagination>li>span, .pagination>.active>a, .pagination>.active>span{
	font-size: calc(14px + .21vw);
	font-weight: bold;
	color: #333;
	background: transparent;
	border: none;
	padding: 6px;
    margin: 5px!important;
    border: none;
}
.pagination>li>a:focus, .pagination>li>a:hover, .pagination>li>span:focus, .pagination>li>span:hover{
	color: #3a3a3c;
	background: transparent;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover{
	color: #3a3a3c;
	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{
	font-size: calc(15px + .26vw);
	font-weight: bold;	
	text-transform: uppercase;
	padding: 5px 0!important;
	background: transparent;
    border: none;
}
#side-categories .list-group-item,
#side-manufacturer .list-group-item{
	padding-bottom: 15px;
	color:#2b3395;
	font-family: Work Sans, sans-serif;
}
#side-categories .side-categories-level-1+.side-categories-level-1{
	border: none!important;
}
#side-categories .item.level-1 a{
	font-weight: 700;
}
#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: #3a3a3c!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: #3a3a3c!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>*{
	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>* 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 .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 #3a3a3c;	
}
#side-categories .group .item.level-1 a{
	font-size: calc(13px + .16vw);
	font-weight: 700;
	color: #2b3395;
	padding: 8px 0 6px calc(8px + .8vw)!important;
}
#side-categories .group .item.level-2 a{
	color: #333;
	font-family: 'Bitter', serif;
	font-weight: 900000;
	padding: 8px 0 6px calc(15px + 1vw)!important;
}
#side-categories .group .item.level-2 a:hover, #side-categories .group .item.level-3 a:hover{
	color: #3a3a3c;
}
#side-categories .group .item.level-3 a{
	font-family: 'Bitter', serif;
	font-weight: 300;
	color: #900000;
	padding: 8px 0 6px calc(25px + 1.2vw)!important;
}
#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{
	color: #3a3a3c!important;
	background-color: transparent!important;
}
#filter-groups>div{
	margin-bottom: calc(12px + .6vw)!important;
	padding-bottom: calc(12px + .6vw)!important;
	border-bottom: 1px solid #ccc!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);
}

.page-banner{
	margin-bottom: calc(20px + 2vw);
}
.page-banner .page-banner-title{
	display: none;
}
.position-right-bottom{
	right: 0;
	bottom: 0;
}
.text-red{
	color: #2b3395;
}
.text-gold{
	color: #3a3a3c;
}
.text-dark{
	color: #333;
}
.text-danger{
	font-weight: bold;
}
/*body:not(.common-home){*/
/*	background: url('img/content_bg.jpg');*/
/*}*/
.product-block .price .price-new{
	color: #df1818;
}
.product-block .price .price-old{
	text-decoration: line-through;
}
.product-block .more-options-text{
	font-size: calc(11px + .105vw)!important;
	background: #6f0004!important;
    padding: 4px!important;
    letter-spacing: 0;
	line-height: 20px;
}
.product-block .sticker, .product-image-main-container .sticker{
	font-size: calc(13px + .16vw);
	font-weight: 500;
    top: 10px;
    left: 10px;
    right: auto;
    bottom: auto;
    padding: 5px calc(8px + .5vw);
    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: #2b3395;
}
.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: #2b3395!important;
}
.swal2-content a{
	color: #333;
	font-weight: bold;
}
.event-none{
	pointer-events: none;
}
.float-img1{
	top: 1%;
    right: 0;
    transform: translateY(-1%);
	max-width: 17%;
}
.float-img2{
    top: 20%;
    left: 0;
    transform: translateY(-20%);
    max-width: 17%;
}
.float-img3{
	top: 96%;
    left: 0;
    transform: translateY(-96%);
    max-width: 20%;
}
.float-img4{
	top: 100%;
    right: 0;
    transform: translateY(-100%);
    max-width: 18%;
}
.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;
}
/* End General */

/* Header */
header{
	background-color: #353633!important;
	background-color: #fff!important;
}
header .sm-blue a, 
header .sm-blue a.highlighted, 
header .sm-blue a:active, 
header .sm-blue a:focus, 
header .sm-blue a:hover {
	color: #353633;
}
header .header-container-top{
	/*background-image: url('img/header_top_bg_navi.jpg');*/
	background-color: #2b3395;
	padding: 10px 0;
	position: relative;
	z-index: 99;
}
header .header-container-bottom{
	position: relative;
	z-index: 9;	
}
.header-container-top .header-accouncement{
	color: #fff;
}
.header-container-top .header-social-icon > .item+.item{
	padding-left: calc(15px + 1.2vw);
}
.header-social-icon img {
    filter: invert(99%) sepia(4%) saturate(290%) hue-rotate(266deg) brightness(120%) contrast(100%);
}
.header-container-top .header-icon > *+*{
	padding-left: calc(5px + 3vw);
}
.header-container-top .header-top > div{
	flex: 1;
}
.header-container-top .header-top .header-accouncement{
	flex: 3;
	font-weight:700;
	letter-spacing: 1px;
	font-size: 13px;
}
.header-menu > div{
	display: inline-block;
}
.header-menu .header-logo{
	background-color: #fff;
	margin-bottom: -15px;
    padding: 10px 20px 15px 20px;
    -webkit-box-shadow: 0px 0px 8px 2px rgba(119,119,119,0.15);
	-moz-box-shadow: 0px 0px 8px 2px rgba(119,119,119,0.15);
	box-shadow: 0px 0px 8px 2px rgba(119,119,119,0.15);
}
.header-menu ul{
	background: transparent;
	box-shadow: none;
	border: none;
}
.header-menu ul li{
	border-left: 1px solid #777777;	
}
.header-menu ul li:hover, .header-menu ul li:active, .header-menu ul li:focus{
	outline: none;
}
.header-menu ul li a{
	/*font-family: 'CammronDemo';*/
	font-family: 'Work Sans', sans-serif;
	font-size: calc(12px + .105vw);
	background: transparent!important;
	border: none;
	padding: 8px calc(12px + 1.4vw)!important;
}
.header-menu ul li a:hover, .header-menu ul li a:active, .header-menu ul li a:focus{
	color: #3a3a3c;
	background: transparent;
	background-image: none;
	padding: 8px calc(12px + 1.4vw);
}
.header-menu ul .sub-arrow{
	display: none;
}
.header-mobile-links a{
    color: #2b3395;
}
.header-mobile-links i{
	font-size: 22px;
	color: #2b3395;
}

header #main-menu ul{
	position: fixed;
    flex-wrap: wrap;
    left: 0;
    background-color: #ffffff;
    border: none;
    max-width: 100%!important;
    width: 100%!important;
    padding: 15px;
}
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: 140px;
	padding: 0 5px;
	vertical-align: top;
	margin-bottom: 20px;
}
header #main-menu ul .category li{
	width: 160px;
}
header #main-menu ul li >*{
	width: 100%;
}
#main-menu a span {
    color: #191955;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
}
#main-menu a span::after {
    display: block;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #191955;
    margin: 4px 0px 0px;
    transform: scale(0);
    transition: all 0.3s;
}
#main-menu a span:hover::after{
    transform: scale(1);
}
.header-menu .menu:first-child {
    width: 47%;
    display: flex;
    justify-content: flex-end;
    padding-right: 15px;
}
.header-menu div:nth-child(3) {
    width: 47%;
    padding-left: 15px;
}
.header-menu .header-logo {
    width: 15%;
}
header #main-menu ul li a{
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	font-weight: 500;
	color: #000;
	padding: 10px 0!important;
	text-shadow: none;
	white-space: normal;
}
header #main-menu ul li a.title{
	font-family: 'SnellRoundhandBold';
	font-size: calc(15px + .26vw);
	color: #3a3a3c;
}
header #main-menu ul li a:hover{
	color: #3a3a3c;
}
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 #3a3a3c;
	margin-bottom: 6px;
}
header #main-menu ul li .brand-logo{
	max-width: 80px;
}
header #main-menu li:hover > 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;
}
.search-content > button{
    background-color: #3a3a3c;
    border: 1px solid #3a3a3c;
    color: #fff;
}
#enquiry_dropdown_icon {
    display: flex;
    align-items: center;
}
#enquiry_dropdown_icon img {
    filter: invert(100%) sepia(5%) saturate(2%) hue-rotate(48deg) brightness(105%) contrast(100%);
    width: 25px;
}

header #cart > a{
	display: flex;
	justify-content: center;
	align-items: center;
}
header #cart > a .badge2, #enquiry_dropdown_icon .badge2{
	color: #fff;
	padding-left: 8px;
}
/* End Header */

/* Home */
.section-space.slideshow{
	padding: 0!important;
}
.slideshow .slick-list .slick-slide{
	padding: 0;
}
.slideshow .slideshow-thumbnail-box{
	display: none;
	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 #3a3a3c;	
}
.slideshow .slideshow-thumbnail-box .slick-slide{
	width: auto!important;
}
.slider-slideshow-description{
	top: 35%!important;
    transform: translate(-50%, -35%)!important;
    max-width: 85%;
}
.slider-slideshow-description .slider-slidehow-title{
	font-family: 'Work Sans', sans-serif;
    font-size: calc(26px + 1.5vw);
    color: #2b3395;
    line-height: calc(35px + 1.2vw);
    margin-left: auto;
    font-weight: 800;
    text-transform: uppercase;
}
.bannerPromo {
    color: #000000;
    font-weight: 700;
    text-decoration: underline;
    font-size: 16px;
    margin-bottom: 25px;
    padding-right: 6%;
}
.slider-slideshow-description .slider-slidehow-title div{
	color: #191955;
}


.slider-slideshow-description .slider-slideshow-description-texts{
	padding: calc(10px + .8vw) 0 0 0!important;
	font-weight: 400;
	color: #000;
}
.slider-slideshow-description .slider-slideshow-description-texts > span{
	font-size: calc(12px + .105vw)!important;
	line-height: calc(20px + .313vw);
}
.slider-slideshow-description .slider-slideshow-description-link{
	padding-top: calc(10px + 1.5vw)!important;
}

.featured-section-box .item{
	display: flex!important;
}
.featured-section-box .item > div{
	width: 50%;
}
.featured-section-box .item > 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 > *, .instagram.slick-slider .slick-dots li > *{
    color: transparent;
    width: 10px!important;
    height: 10px;
    border: 2px solid #cfcfcf;
    border-radius: 50%;
    background-color: #ffffff;
    position: relative;
    z-index: 2;
}
.instagram.slick-slider .slick-dots li > * {
       border: 2px solid #414141;
}
.featured-section-box .slider-dots li.slick-active > *, .instagram .slick-dots li.slick-active > *{
	width: 12px!important;
    height: 12px;
    border: 2px solid #2b3395;
}
.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;
}
.instagram.slick-slider .slick-dots li:after {
    background-color: #414141;
}
.instagram.slick-slider .slick-dots li:after {
    top: 75%;
}
.featured-section-box .slick-slider .slider-dots li:last-child:after, .instagram.slick-slider .slick-dots li:last-child:after{
	display: none;
}
.featuredBanner::before {
    content: '';
    display: block;
    height: 45px;
    width: 2px;
    background-color: #2b3395;
    margin: auto;
    position: absolute;
    left: 50%;
    top: -1%;
}
.featured-banner-bg {
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	min-height: 500px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.featured-banner-title {
	color:#191955;
	font-size: calc(26px + 1.5vw);
	line-height: calc(35px + 1.2vw);
	font-weight: 800;
	text-transform: uppercase;
	text-align: center;
}
.featured-banner-title2 {
	color:#2b3395;
	text-align: center;
}
.featured-banner-desc {
    color: #000;
    font-size: 13px;
    width: 70%;
    margin: auto;
    letter-spacing: 1px;
    line-height: 1.8em;
    text-align:center;
    font-family: 'Bitter', serif;
    font-weight: 400;
}
.featured_by_tab > .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-family: 'Work Sans', sans-serif;
	color: #414141;
	padding: 8px calc(12px + .6vw);
	transition: all 0.3s;
}
.featured_by_tab .fcategory_tab ul li.active a{
	color: #191955;
	display: flex;
	align-items: center;
	font-weight: 700;
}
.featured_by_tab .fcategory_tab ul li.active a::before {
    content: '';
    background-color: #191955;
    width: 6px;
    height: 2.5px;
    display: inline-block;
    margin-right: 5px;
}
.featured_by_tab .fcategory_tab ul li.active a::after {
    content: '';
    background-color: #191955;
    width: 6px;
    height: 2.5px;
    display: inline-block;
    margin-left: 5px;
}
.featured_by_tab .nav>li>a:focus, .featured_by_tab .nav>li>a:hover {
    background-color: transparent;
    color: #191955;
	display: flex;
	align-items: center;
	font-weight: 700;
}

.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 .slick-slide img{
	margin: 0 auto;
	max-width: 100%;
	height: 100%;
}
.section-space.featured_brand {
    background-color: #191955;
}
.featured_brand h2 {
    color: #fff;
}
.featured-brand-container .slick-track {
    display: flex;
    align-items: stretch;
}
.featured-brand-container .slick-slide {
    height: inherit;
}
.section-space.featured_banner{
	padding: 20px 0!important;
}
.featured_banner img{
	margin: 0 auto;
}
.featured-brand-container{
	padding: 0 60px;
}
.featured-news-container{
	padding: 0 80px;	
}
.featured-news-container.slick-no-slide .slick-track{
    flex-wrap: nowrap; 
}
.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: 20px;
}
.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: #3a3a3c;
}
.featured-news-container .news-item:hover .news-category a{
	color: #fff;
}
.featured-news-container .image{
	padding: 40%;
	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{
	color: #2b3395;
	text-decoration: underline;
	font-weight: 700;
}
.featured-news-container .news-item:hover .news-view{
	text-decoration: none;
}
.featured-news-container .news-description{
	padding-bottom: calc(12px + .6vw);
	letter-spacing: 1px;
	color: #000;
	line-height: 1.8em;
	font-size: 12px;
}
.latest_news_4_mh .news-title h3 {
	font-size: calc(12px + .84vw);
	text-transform: none;
	color: #2b3395;
}



.instagram .slick-list .slick-slide{
	padding: 0;
	height: inherit;
}
.instagram .slick-dots{
	position: absolute!important;
	width: auto;
	left: 5vw;
	bottom: 6px;
}
.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;
}
/* End Home */

/*Referral Page*/
.p20 {
    width : 20%;
}
.p80 {
    width: 80%;
    color: #000;
}
#referImgSlider .slick-slide img {
    width: 100%;
}
#referImgSlider .slick-nav.left.prev {
    z-index: 2;
}
.refer-container {
    width: 90%;
    margin: auto;
    padding-bottom: 75px;
    align-items: center;
}
.refer-container .p50:first-child {
    padding-right: 30px;
}

.refer-img.p20 {
    text-align: center;
}
.refer-number {
    background-color: #2b3395;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: #fff;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.refer-item {
    margin-bottom: 20px;
}
/*End Referral Page*/

/* Account */
.account-account .account-container h4{
	color: #333;
	font-weight: bold;
}
.account-register #input_zone_id {
    display: none;
}
/* Account */

/* Information */
.information-information p{
	margin-bottom: calc(8px + .6vw);
}
body:not(.common-home) .section-space.about_us {
    padding-top: 75px !important;
}
.about_us .box1, .about_us .box2{
	padding: 0 4vw;
}
.about_us .box1 > div, .about_us .box2 > div{
	width: 50%;
}
.about_us .box1 > 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: center;
}
.about_us .box2 > 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);
	filter: drop-shadow(0 0 5px rgba(0,0,0,0.15));
}
.about_us .story-content h3 {
    text-align: center;
}
.about_us .flex.box1 {
    margin-bottom: 20px;
    align-items: center;
}
.about_us h3 span {
    color: #2b3395;
}
/* End Information */

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

/* Contact Us */
.contactus-container{
	padding: 0 3vw;
}
.contactus-container .text-divider{
	padding: calc(10px + 2vw) 0;
}
.contact-detail .detail{
	width: 25%;

}
.contact-detail form{
	width: 75%;
	padding-left: calc(20px + 1.5vw);
}
.contact-detail .detail .title{
	font-size: calc(14px + .21vw);
	font-weight: bold;
	color: #2b3395;
	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;
}
/* End Contact Us */

/* News/Article */
.news-container{
	padding: 0 3vw;
}
.news-container .title{
	font-size: calc(15px + .47vw);
	font-weight: bold;
	line-height: normal;
}
.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;
}
.bnews-list .artblock .article-meta{
	color: #333!important;
}
.bnews-list .artblock .article-image{
	margin-bottom: calc(8px + .8vw)!important;
}
.news-container .button{
	padding-top: calc(10px + 1vw);
}
.bnews-list .artblock{
	border-bottom: 1px solid #ddd;
    padding: calc(12px + .8vw) 0!important;
}
.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;
}
.recent-newsbox .name a{
	color: #333;
	font-weight: bold;
}
.recent-newsbox .name a:hover{
	color: #3a3a3c;
}
.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 + .26vw);
	letter-spacing: 0;
}
.news-category-container .title{
	padding-bottom: 6px;
}
.news-category-container .list-group a{
	font-weight: 500;
	padding: 6px 0;
	background: transparent;
	color: #333;
	border: none;
}
.news-category-container .list-group a:hover{
	background: transparent;
	color: #3a3a3c;
	border: none;	
}
/* End News/Article */

/* Category */
.product-category #column-left{
	width: 20%;
}
.product-category #content{
	width: 80%;
}

.sort-view-box{
	padding: 0 calc(20px + 1.5vw) calc(15px + 1vw) calc(20px + 1.5vw);
}
.sort-view-box select{
	border: none;
}
.sort-view-box>div+div{
	padding-left: 40px;
}
.product-view>.product-gutter{
	padding: 0 20px 40px 20px!important;
}
#filter_group_tigger_open{
	font-weight: bold;
}
/* End Category */

/* Product */
.product-product .product-imagebox{
	width: 55%;
}
.product-product .product-descriptionbox{
	width: 45%;
}
.product-product .product-description{
	padding-bottom: calc(10px + .6vw);
}
.product-product .product-title{
	font-size: calc(16px + 1.25vw);
	font-weight: bold;
	line-height: normal;
}
.product-product .product-price{
	font-size: calc(16px + 1.3vw);
	font-weight: 500;
	color: #3a3a3c;
	line-height: normal;
}
.product-product .old-prices{
	font-size: calc(16px + .9vw);
	color: #c4c4c4;
	padding-right: 15px;
}
.product-product .new-prices{
	font-size: calc(16px + 1.3vw);
	color: #df1818;
}
.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{
	max-width: 100%!important;
}
#product label{
	font-weight: 500;
}
#product .input-group-flex{
	font-weight: 500;
	margin: calc(10px + .4vw) 0;
}
#product .button > *: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: #df1818;
}
#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;
	text-align:left;
}
.input-group-flex>span {
    width: 23%;
}
#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: #2b3395;
	color: #fff;
}
#product .product-qtybox button:hover{
	color: #000;
	background: #ddd;
}
.product-product .product-image-main-container{
	width: 82%;
}
.product-product .product-image-additional-container{
	width: 18%;
	padding: 0!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: 0;
}
.product-product .product-image-additional-container .slick-no-slide{
	margin: 0!important;
}
.product-product .product-image-additional-container img{
	border: none!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>li.active>a, .product-product .product-tab>li.active>a:focus, .product-product .product-tab>li.active>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: calc(12px + 1vw) calc(12px + .6vw)!important;
	border: 1px solid #900000!important;
	border-radius:15px;
	background: #f0e1e2;
}
.waiting_list_container .waiting_list_description{
	font-size: calc(13px + .16vw);
	font-weight: bold;
	letter-spacing: 0;
}
.waiting_list_container .flex-group>*{
	margin: 0!important;
}
.waiting_list_container .flex-group input{
	padding: 8px 18px;
	border: 1px solid #ddd;
	height: 50px;
}
.packsize{
    padding-bottom: 8px;
}
/* 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: #6f0004;
}
.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: 30px 0px 0;
	color: #fff;
	background-color: #fff;
	/*background: url('img/bg_hp-footer.jpg') center center no-repeat;*/
 /*   background-size: cover;*/
 letter-spacing: 0px;
}
footer .footer-top{
	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 > div{
	padding: 0 8px;
	flex : 1;
}
footer .footer-upper-content > div:first-child{
	flex: 1.5;
}
footer .footer-social-icon > .item+.item{
	padding-left: calc(15px + 1.2vw);
}

footer .footer-upper-content > div:last-child {
    flex: 1.5;
}
.footer-logo {
    margin-bottom: 20px;
}
.footer-contact-links a {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 400;
}
.whatsappFixed {
    position: fixed;
    right: 1%;
    top: 87%;
    z-index: 2;
}
.whatsappFixed img {
    width: 72px;
}
/*footer .footer-contact-links.first ul{*/
/*	column-count: 2;*/
/*}*/
footer .footer-contact-links ul li{
	padding: 1px 0;
}
footer .footer-comment{
	font-style: italic;
	font-size: calc(10px + .21vw);
	color: #7b7b7b;
	padding-top: calc(10px + .8vw);
	text-align: center;
}
footer h5{
	padding-bottom: calc(10px + .6vw);
	margin: 0;
}
footer a {
	color: #000;
}
footer a:hover {
	text-decoration: underline;
	color: #2b3395;
}
footer .footer-btm {
	background-color: #2b3395;	
	padding: 12px 0;
	color: #fffefe;
    font-weight: 700;
}
footer .footer-btm a{
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}
body #footer-area{
	z-index: 1;
}
#footer-area .newsletter-section {
    display: none;
    background: url('../../../../../image/catalog/Home/200304050.jpg') center center no-repeat;
    background-size: cover;
    color: #fff;
    padding: calc(30px + 3vw) 15px!important;
    margin-bottom: calc(-20px - 2.4vw);
    position: relative;
    z-index: 12;
}
.footerNewsletters {
    background: url('../../../../../image/catalog/Home/200304050.jpg') center center no-repeat;
    background-size: cover;
    width: 85%;
    margin-top: 40px;
}
.footerNewsletters .newsletter-section {
    padding: 75px 0px;
    color: #fff;
}
.footerNewsletters h3 {
    color: #fff;
    margin-bottom: 40px;
}
.footerNewsletters h5, .footerNewsletters .newsletterDesc {
    display: none;
}
body.common-home #footer-area .newsletter-section{
	display: block;
}
#footer-area .newsletter-section h2{
	color: #fff;
}
.newsletterDesc {
    color: #000;
}
.newsletter-module {
    margin-bottom: 20px;
}
#footer-area .newsletterInput input {
    border: none;
    background-color: transparent;
    box-shadow: inset 0 0px 0px rgb(0 0 0 / 0%);
    font-size: 13px;
    -webkit-box-shadow: inset 0 0px 0px rgb(0 0 0 / 0%);
}
#footer-area .newsletterInput input::placeholder {
    color: #000;
}
#footer-area .newsletterInput .btn-primary { 
    text-transform: uppercase !important;   
}
#footer-area .newsletterInput {
    background-color: #fff;
    border: 1px solid #2b3395;
    align-items: center;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
#footer-area .newsletter-module h3, #footer-area .newsletterDesc2 {
    display: none;
}
.newsletter-modal .box-heading h2, 
#footer-area .newsletter-section .box-heading h2{
	background-image: none;
}
#footer-area .newsletter-section .box-heading h2{
	color:#fff;
}
#footer-area .newsletter-section .mi-block a {
	color: #191955;
	background-color: #ffffff!important;
	border-color: #ffffff!important;
	box-shadow: none!important;
	font-family: 'Work Sans', sans-serif;
	font-weight: 700;
}
#footer-area h5 {
	color:#191955;
	font-weight: 700;
}
#footer-area .newsletter-section .box-content{
	max-width: 100%!important;
}
#footer-area .newsletter-section .newsletter-grid{
	max-width: 550px;
    margin: 0 auto;
    padding-top: 15px;
}
#footer-area .newsletter-section .mi-block input{
	color: #fff;
	background-color: transparent;
	height: 40px;
	border: 1px solid #fff;
	max-width: 360px;
    margin: 0 auto;
}
#footer-area .newsletter-section .mi-block input::placeholder {
    color: #fff;
}
#footer-area .newsletter-section .mi-block:first-child{
	margin-right: 18px;
}
.footerBottom {
    width: 90%;
    margin: auto;
}
.newsletter-modal{
	color: #fff;
}
.newsletter-modal h2{
	color: #fff;
	text-align: center;
}
.section-space.instagram {
    padding: 75px 0px 0px !important;
}
.newsletter-modal h5, .newsletter-modal .newsletterDesc {
    display: none;
}
.newsletter-modal h3{
    text-align:center;
    color: #fff;
    margin-bottom: 35px;
}
.newsletter-modal .newsletterInput, .footerNewsletters .newsletterInput {
    width: 50%;
    margin: auto;
    align-items: center;
}
.newsletter-modal .newsletterInput input, .footerNewsletters .newsletterInput input {
    background-color: transparent;
    border-color: #fff;
    height: 38px;
}
.newsletter-modal .newsletterInput input::placeholder, .footerNewsletters .newsletterInput input::placeholder {
    color: #fff;
}
.newsletter-modal .newsletterInput .btn-primary, .footerNewsletters .newsletterInput .btn-primary {
    margin-left: 10px;
    background-color: #fff;
    color: #2b3395;
    text-transform: uppercase !important;
}
.newsletter-modal .newsletterInput .btn-primary:hover, .footerNewsletters .newsletterInput .btn-primary:hover {
    color: #fff;
    background-color: #2b3395;
}
.newsletterDesc2 {
    text-align: center;
    margin-bottom: 25px;
}
.newsletter-modal .newsletter-module {
    padding: 75px 50px;
}
.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('../../../../../image/catalog/Home/200304050.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 >*{
	display: block;
	width: 100%;
	max-width: 360px;
	margin: 0 auto;
}
.newsletter-modal .box-content .mi-toptext{
	margin-bottom: 25px;
}
.newsletter-modal .box-content .btn-mi{
	background-color: #fff;
	border-color: #fff;
	color: #900000;
}
.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: transparent;
    color: #fff;
    padding: 2px 8px;
    font-weight: 500;
}
.footer-contact-info {
    color: #000;
}
/* End footer */

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

/* Buttons */
.buttons {
	margin: 1em 0;
}
.btn-primary{
	font-size: calc(12px + .105vw);
	color: #fff;
    padding: 10px calc(15px + 1.5vw)!important;
    background-color: #2b3395;
    border: 2px solid #2b3395;
    border-radius: 4px!important;
    line-height: normal;
    min-width: calc(80px + 4vw)!important;
    min-height: 0px!important;
    height: auto!important;
    text-transform: none!important;
    outline: none!important;
    font-weight: 700;
    transition: all 0.3s;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus, .cart-btn:hover, .btn-primary:disabled, .btn-primary.disabled{
	color: #2b3395;
    background-color: transparent;
    border-color: #2b3395!important;
    box-shadow: none!important;
}
.btn-primary2{
	font-size: calc(12px + .105vw);
	color: #fff;
	font-weight: 700;
    padding: 10px calc(15px + 1.5vw)!important;
    background-color: #2b3395;
    border: 2px solid #2b3395;
    border-radius: 4px!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: #d43425!important;
    border-color: #900000!important;
    box-shadow: none!important;
}
.btn-primary-red{
	font-size: calc(12px + .105vw);
	color: #fff;
    padding: 8px calc(15px + 1.5vw)!important;
    background-color: #900000;
    border: 2px solid #900000;
    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: #d43425!important;
    border-color: #900000!important;
    box-shadow: none!important;
}
.btn-default:not(button){
	padding: 8px 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;
}
.btn-back.btn-default:not(button) {
	font-size: calc(12px + .105vw);
	color: #fff;
    padding: 8px 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-back.btn-default:not(button):hover {
	color: #333;
    background-color: #d4d4d4;
    border-color: #8c8c8c;
}
#enquiry .btn-primary, #cart .btn-primary{
	color: #fff!important;
}
#cart .btn-primary:hover, #cart .btn-primary:active, #cart .btn-primary:focus{
	color: #000!important;
}
#waiting_list_submit {
	border-top-right-radius: 13px !important;
	border-bottom-right-radius: 13px !important;
}
.waiting_list_container input{
	border-top-left-radius: 13px !important;
	border-bottom-left-radius: 13px !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: 1367px) {
    #product .input-group-flex>span {
        width: 16%;
    }
}

@media (max-width: 1281px) {
    #product .input-group-flex>span {
        width: 19%;
    }
}

@media (max-width: 1025px) {
    #product .input-group-flex>span {
        width: 31%;
    }
}

@media (max-width: 992px) {
    #product .input-group-flex>span {
        width: 33%;
    }
}

@media (max-width:769px) {
    #product .input-group-flex>span {
        width: 28%;
    }
}

@media (max-width: 541px) { #product .input-group-flex>span { width: 15.5%; } .header-menu .header-logo {width: auto;} .refer-container .p50 { width: 100%;} .refer-container {flex-wrap: wrap;} .refer-container .p50:first-child { padding-right: 0px; margin-bottom: 20px;}}
@media (max-width: 415px) { #product .input-group-flex>span { width: 20.5%; } }
@media (max-width: 376px) { #product .product-qtybox { width: 80%; } #product .input-group-flex>span { width: 22.5%; } }
@media (max-width: 361px) { #product .input-group-flex>span { width: 23.5%; } }
@media (max-width: 321px) { #product .product-qtybox { width: 85%; } #product .input-group-flex>span { width: 26.5%; }}

@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 > 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 > *{
	position: absolute;
	top: 0px;
	/*display: flex;
	justify-content: center;*/
	
	width: 24px;
	height: 100%;
}

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

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

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

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

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

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

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

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

#ToTopHover {
	position: fixed;bottom: 20px;right: 20px;
	cursor: pointer;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADMAAABmCAYAAABm4qluAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OThENzgzMjVCNzRCMTFFM0EzRDU5MjlENjBGMTBDRUEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OThENzgzMjZCNzRCMTFFM0EzRDU5MjlENjBGMTBDRUEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5OEQ3ODMyM0I3NEIxMUUzQTNENTkyOUQ2MEYxMENFQSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5OEQ3ODMyNEI3NEIxMUUzQTNENTkyOUQ2MEYxMENFQSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pl4ggucAAAtuSURBVHjazFwLcBbV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) 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;
    }
    .featured-banner-bg{ 
    	background-size: cover;
	    min-height: 350px;
    }
}
/* 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 > .form-control {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}
strong{
    font-weight: bold !important;
}
/* 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 right !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 (min-width: 541px) {
    .fTabSlider {
        display:none !important;
    }
}
@media (max-width: 1636px) {
	.header-menu ul li a{padding:8px calc(8px + .8vw)!important;}
}
@media (max-width: 1400px) {
    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;}
	.featured-news-container{padding:0 50px;}
	.featuredtab-product-container{margin-left:-12px;margin-right:-12px;}
	.featuredtab-product-container .product-gutter,.product-view>.product-gutter,.product-related-content .item{padding:0 12px 24px 12px!important;}
	.header-menu .header-logo{max-width:120px;padding:10px;}
}
@media (max-width: 1200px) {
	.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-button{padding:6px 0;}
	.product-block .product-button a+a{margin:0;}
	.product-block .product-button .addcart-btn{background:url('../../../../../image/catalog/Home/icon2.png') center center no-repeat;}
	.product-block .product-button .view-btn{background:url('../../../../../image/catalog/Home/mail.png') center center no-repeat;}
}
@media (max-width: 991px) {
	.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 > div+div,.about_us .box2 > div+div{padding:0;}
	.about_us .box1 > div, .about_us .box2 > 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 > 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 > div{width:100%;}
	.featured-section-box .item{flex-direction:column;}
	.header-menu .header-mobile-links{float:right;padding-top:15px;}
	.header-menu .header-logo{display:inline-block;}
	.header-menu{display:block!important;text-align:center;}
}
@media (max-width: 767px) {
    header.scroll .header-container-top .header-top > div{text-align:center;}
	.zoom-product-image{display:none;}
	.product-product .product-image-main-container{margin-bottom:0!important;}
	.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>div{padding:0;}
	.instagram .slick-dots{left:50%;transform:translateX(-50%);}
	.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;}
	footer .footer-upper-content > div{flex:auto!important;width:50%;padding-bottom:20px;}
	.slideshow .slideshow-thumbnail-box{display:none;}
	.header-container-top .header-top{flex-direction:column;}
	.header-container-top .header-top > div+div{padding-top:4px;}
	header.scroll .header-accouncement{display:none;}
	header.scroll .header-container-top .header-top{flex-direction:row;}
	header.scroll .header-container-top .header-top > div{padding:0;}
}
@media (max-width: 600px) {
	.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>.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 > div{width:100%;text-align:center;}
}
@media (max-width: 541px) {
    .tabSliderBig { display: none !important;}
    .fTabSlider { width: 80%; margin: auto;}
    .fTabSlider .slick-nav.left.prev { left: -9%; }
    .fTabSlider .slick-nav.right.next { right: -9%;}
    .featured_by_tab .fcategory_tab ul li.active a { text-align: center; justify-content: center;}
    .featured_by_tab .fcategory_tab ul li {text-align: center;}
}
@media (max-width: 480px) {
	.featuredtab-product-container .product-gutter,.product-view>.product-gutter{padding:0 6px 12px 6px!important;}
	.product-related-content{flex-direction:column;}
	.product-related-content .item{width:100%;}
	.sort-view-box>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;}
}

@media (max-width: 361px) {
    .product-view>.product-gutter { width: 100% !important;}
}




.sidr {
	background-color: #2b3395 !important;
}
.sidr .header-mobile .mobile-account>a {
	color:#fff !important;
}
.sidr .header-mobile .mobile-account>a+a {
    border-left: 1px solid #333;
}
.sidr .header-mobile .mobile-account {
    border-bottom: 1px solid #333;
}

.sidr .cd-accordion-menu a, .cd-accordion-menu label{
	background-color: #2b3395 !important;
	color:#fff !important;
}