@import "fonts.css";

html, body {
	overflow-x: hidden;
}

html.active {
	overflow: hidden;
}

body {
	font-family: 'Proxima Nova';
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #464646;
	font-size: 16px;
	overflow-x: hidden;
}

.overlay {
    background-color: #fff;
    position: fixed;
    z-index: 5;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

body.focusing .overlay {
	visibility: visible;
	opacity: 0.5;
}

/*
****************************************************************************************************
****************************************************************************************************
	DEFAULTS
****************************************************************************************************
****************************************************************************************************
*/

h1, .h1 {
	font-family: 'Sofia Pro';
	font-weight: 900;
	font-size: 55px;
	line-height: 60px;
	/* 	color: #1CBF74; */
	color: #464646;
}

h2, .h2 {
	font-family: 'Sofia Pro';
	font-weight: 700;
	/* 	color: #1CBF74; */
	color: #464646;
	font-size: 35px;
	line-height: 45px;
}

h3, .h3 {
	font-family: 'Sofia Pro';
	font-weight: 700;
	font-size: 25px;
	/* 	color: #1CBF74; */
	color: #464646;
}

h4, .h4 {
	font-family: 'Sofia Pro';
	font-weight: 700;
	font-size: 18px;
	color: #1CBF74;	
}

h5, .h5 {
	font-size: 16px;
	font-family: 'Sofia Pro';
	font-weight: 700;
	color: #1CBF74;
}

p, .p {
	font-family: 'Proxima Nova';
	font-weight: 400;
	color: #464646;
}

a {
	color: inherit;
}

a.with_arrow {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: inherit;	
}

a.with_arrow img {
    margin-left: 25px;
    position: relative;
    top: 1px;
    transition: 0.5s;
}

.btn {
	font-family: 'Sofia Pro';
	font-size: 20px;
	font-weight: 700;
	color: #1CBF74;
	border-radius: 8px;
	transition: 0.5s;
}
.btn.small-text {
	font-size: 16px;
}

.btn.btn-danger {
	color: #fff;
}

.btn.solid,
.btn.btn-primary,
.btn.btn-success {
	background-color: #1CBF74;
	border: 2px solid #1CBF74;
	color: #fff;
}

.btn.solid:hover,
.btn.btn-primary:hover,
.btn.btn-success:hover {
	background-color: transparent;
	color: #1CBF74;
}

.btn.outline,
.btn.btn-secondary {
	border: 2px solid #1CBF74;
}

.btn.outline:hover,
.btn.btn-secondary:hover {
	background-color: #1CBF74;
	color: #ffffff !important;
}

.btn.btn_small {
	font-size: 15px;
	padding: 8px 12px;
	max-width: 180px;	
}

.btn-component {
	float: right;
	max-width: 200px;	
}

.green {
	color: #1CBF74;	
}

.red {
	color: #F0414E;
}

.bg_light {
	background-color: #F5FCF9;
}

.rounded {
	border-radius: 31px !important;
	overflow: hidden;
}


/*
****************************************************************************************************
****************************************************************************************************
	SIDECART
****************************************************************************************************
****************************************************************************************************
*/

.cart_loading {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 2;
    text-align: center;
}

.cart_loading img {
    position: absolute;
	top: calc(50% - 150px);
	left: calc(50% - 150px);
	filter: grayscale(1) brightness(1) opacity(0.2);
}

#sideCart {
    position: fixed;
    right: -100%;
    top: 0;
	width: 580px;
    height: 100%;
    z-index: 10;
    background-color: #fff;
    border-left: 4px solid #ECFAF4;
    -webkit-box-shadow: 0px 0px 15px 3px rgba(0,0,0,0.40);
    box-shadow: 0px 0px 15px 3px rgba(0,0,0,0.40);
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
}

#sideCart a.close {
	position: absolute;
	left: 0;
	top: 0;
}

#sideCart .header {
	padding: 50px 35px 25px 35px; 
}

#sideCart .header .number {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    width: 36px;
    height: 36px;
    display: flex;
    background-color: #1CBF74;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 15px;
}

#sideCart .announcement {
    background-color: #F5FCF9;
    padding: 15px 0;
}

#sideCart .announcement p {
    color: #1CBF74;
    text-align: center;
    margin: 0;
    font-size: 16px;
}

#sideCart .body {
    padding: 50px 50px;
}

#sideCart .body .sideCartItem {
	border-bottom: 2px solid #F5FCF9;
	padding: 20px 0;
}

#sideCart .body p {
	font-size: 14px;
}

#sideCart .body p.title {
	margin: 0 0 6px 0;
	font-weight: 700;
	line-height: 1.2;
}

#sideCart .footer {
    background-color: #F5FCF9;
    padding: 50px 80px;
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
}

#sideCart.active {
	visibility: visible;
    opacity: 1;
    right: 0;
}

#sideCart .message {
	font-weight: 700;
	font-size: 14px;
}


/*
****************************************************************************************************
****************************************************************************************************
	HEADER
****************************************************************************************************
****************************************************************************************************
*/

header {
	z-index: 9;
	position: relative;
	color: #fff;
}

.topbar {
	background-color: #1CBF74;
	padding: 7px 0;
}

.topbar .announcement p {
	margin: 0;
	font-size: 14px;	
	color: #fff;
}
.topbar .announcement a {
	text-decoration: underline;
}

.topbar .phone a {
	font-size: 14px;
	font-weight: 700;
	color: inherit;
}

.topbar .phone a img,
.topbar .phone a svg {
	margin-right: 20px;
	filter: invert(1) brightness(200%);
}

.mainbar {
    padding: 0;
}

.mainbar .top {
    padding: 35px 0 15px 0;
}

form.default {
	max-width: 435px;
	margin: auto;
	position: relative;
}

body.focusing form.default {
	z-index: 6;
}

form.default .input-group {
	position: relative;
}

form.default .icon {
	position: absolute;
	left: 15px;
	top: 16px;
	z-index: 4;
}

form.default input {
    border: 2px solid #1CBF74;
    color: #464646;
    font-size: 18px;
    font-family: 'Sofia Pro';
    font-weight: 500;
    padding: 12px 15px 12px 55px;
    height: auto;
    border-radius: 10px !important;
    transition: 0.5s;
}

form.default input::-webkit-input-placeholder {
	color: #464646;
	opacity: 1;
	font-size: 18px;
}

form.default input:-ms-input-placeholder {
	color: #464646;
	opacity: 1;
	font-size: 18px;
}

form.default input::placeholder {
	color: #464646;
	opacity: 1;
	font-size: 18px;
}

form.default input:hover {
	color: #A2A2A2;
}

form.default input:hover::-webkit-input-placeholder {
	color: #A2A2A2;
}

form.default input:hover:-ms-input-placeholder {
	color: #A2A2A2;
}

form.default input:hover::placeholder {
	color: #A2A2A2;
}

form.default input:focus:hover {
	color: #000000;
}

form.default input:focus:hover::-webkit-input-placeholder {
	color: #000000;
}

form.default input:focus:hover:-ms-input-placeholder {
	color: #000000;
}

form.default input:focus:hover::placeholder {
	color: #000000;
}

#stloc_selector_cysel:focus, #stloc_state_sel:focus, #suburb_sl:focus, ._itmspec_opt:focus, .form-control:focus, .n-wrapper-form-control select:focus {
    color: #495057;
    background-color: #fff;
    border-color: #1cbf74;
    outline: 0;
    box-shadow: 0 0 5px 5px rgba(0,0,0,0.1);
}

.nsearchinput-pl.well {
    margin-top: 55px !important;
    border: 1px solid #efefef;
    display: none !important;
}

.nsearchinput-pl.well li {
    border-bottom: 1px solid #efefef;
}

.nsearchinput-pl.well li a {
    display: flex;
    align-items: center;
}


/* GST Toggle */
.gst_toggle {
	border: 2px solid #1CBF74;
	border-radius: 8px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	position: relative;
	max-width: 160px;
}

.gst_toggle label {
    margin: 0;
	width: 50%;
	float: left;
	text-align: center;
	position: relative;
	cursor: pointer;
}

.gst_toggle input[type="radio"] {
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
}

.gst_toggle span {
	text-transform: uppercase;
	color: #464646;
	font-size: 12px;
	font-weight: 700;
	display: block;
	transition: 0.5s;
	padding: 7px 0;
}

.gst_toggle:before {
	content: '';
	background-color: #1CBF74;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 50%;
	transition: 0.5s;
	border-radius: 5px;
}

.gst_toggle.inc:before {
	right: 50%;
}

.gst_toggle input[type="radio"]:checked + span {
	color: #fff;
}

.gst_toggle span:hover {
	opacity: 0.5;
}

.gst_toggle input[type="radio"]:checked + span:hover {
	opacity: 1;
}


/* Cart */
#cart {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    float: right;
    padding: 0 0 0 10px;
    text-decoration: none;
}

#cart img, #cart svg {
    z-index: 1;
    transition: 0.5s;
    margin: 0 10px 0 0;
}

#cart span[rel="a2c_item_count"] {
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	width: 36px;
	height: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	background-color: #1CBF74;
	border-radius: 8px;
}

#cart:before {
	content: '';
	transition: 0.5s;
	background-color: #1CBF74;
	position: absolute;
	top: 15px;
	right: 15px;
	height: 3px;
	width: 3px;
	z-index: 0;
	border-radius: 8px;
}

#cart:hover:before {
	width: 100px;
	border-radius: 0;
	height: 100px;
	right: -13px;
	top: 50%;
	margin-top: -50px;
}

#cart:hover img,
#cart:hover svg {
	filter: invert(100%) brightness(2);	
}


/* Hamburger */
#nav-icon {
	width: 50px;
	height: 36px;
	position: relative;
	margin: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}

#nav-icon span {
	display: block;
	position: absolute;
	height: 3px;
	width: 20px;
	background: #1CBF74;
	border-radius: 9px;
	opacity: 1;
	left: 12px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
	top: 10px;
}

#nav-icon span:nth-child(2) {
    top: 17px;
}

#nav-icon span:nth-child(3) {
	top: 24px;
}

.mainbar .bottom {
	background-color: transparent;	
}

.mainbar .bottom.active {
	display: block;
}

.close {
    float: none;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    text-shadow: none;
    opacity: 1;
}


/* Menu */
nav.navbar {
    border-radius: 0;
	padding: 0;
	position: relative;
}

nav.navbar.active {
	background-color: #F5FCF9;
}

.navbar, .navbar .container,
.navbar .container-fluid,
.navbar .container-lg,
.navbar .container-md,
.navbar .container-sm,
.navbar .container-xl {
    display: block;
}

.navbar-nav .mega-menu .featured {
	margin: 12px 0 0 0;
}

.navbar-nav .mega-menu .featured .top {
    background-color: #1CBF74;
    padding: 30px 20px;
    border-radius: 20px;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 165px;
}

.navbar-nav .mega-menu .featured .top p {
	margin: 0;
	color: #ffffff;
}

.navbar-nav .mega-menu .featured .bottom {
	background-color: #F5FCF9;
    padding: 30px 20px;
    border-radius: 20px;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 165px;
}

.navbar-nav .mega-menu .featured .bottom a {
    color: #1CBF74;
    min-width: 112px;
    padding: 10px 0;
}

nav ul.main_nav {
    flex-direction: row;
    margin: auto;
    max-width: 1110px;
    width: 100%;
}

nav ul.main_nav li {
	font-size: 16px;
	font-weight: 600;
	font-family: 'Sofia Pro';
	position: unset;
}

nav ul.main_nav li span.toggle {
	display: inline-block;
	position: relative;
	top: -4px;
	margin-left: 5px;
}

nav ul.main_nav > li:not(:last-child) {
	margin: 0 50px 0 0;
}

nav ul.main_nav li a {
    color: #464646;
    transition: 0.4s;
    text-decoration: none;
    display: block;
    padding: 13px 0;
}

nav ul.main_nav li a:hover {
    opacity: 0.5;
}

nav ul.main_nav li a .dropdown-toggle::after {
    display: none;
}

.navbar-nav .mega-menu {
    position: absolute;
	top: 50px;
	left: 0;
	z-index: 9999;
	float: none;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: inherit;
	color: inherit;
	text-align: left;
	list-style: none;
	background-clip: unset;
	border: 0;
	border-radius: 0;
	visibility: hidden;
	opacity: 0;
	transition: 0.5s;
	background-color: transparent;
}

.navbar-nav .mega-menu .top {
	background-color: #ffffff;
	padding: 45px 0 45px 0;
}

.navbar-nav .mega-menu .top .container {
	position: relative;	
}

.navbar-nav .dropdown-menu.active {
	visibility: visible;
	opacity: 1;
}

.navbar-nav ul.dropdown li {
    margin: 0;
    font-weight: 400;
    font-family: 'Proxima Nova';
    width: 35%;
}

.navbar-nav ul.dropdown li a {
    padding: 5px 0;
    position: relative;
}

.navbar-nav ul.dropdown li a span.toggle {
    position: absolute;
    right: 30px;
    margin: 0;
    top: 4px;
}

.navbar-nav .dropdown.level1 {
    list-style: none;
    border: 0;
/*     padding: 10px 0; */
}

.navbar-nav .dropdown.level2.active,
.navbar-nav .tile.active {
	display: block;
}

.navbar-nav .dropdown.level2 {
    position: absolute;
    left: 35.5%;
    top: 0;
    list-style: none;
    display: none;
    padding: 10px 30px;
    margin: 0;
    border: 0;
    width: 37%;
    height: 102%;
    background-color: #F5FCF9;
    border-radius: 10px;
    overflow: hidden;
}

.navbar-nav .dropdown.level2 li {
	width: 100%;
}

.navbar-nav .dropdown.level2 li:first-child {
	margin-top: 0;
}

.navbar-nav ul.dropdown li.shopall {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    margin: -58px 0 0 0;
    background-color: #f5fcf9;
    color: #1cbf74;
    font-weight: 700;
    text-decoration: underline;
    padding: 3px 30px 25px 30px;
}

.navbar-nav ul.dropdown li.shopall a {
	color: #1cbf74;
}

.tile {
    position: absolute;
    left: 83.33333%;
    width: 16.66667%;
    top: 0;
    border: 1px solid #000;
    border-radius: 20px;
    display: none;
}

.navbar-nav .mega-menu .bottom {
    background-color: rgba(245, 252, 249, 0.9);
    text-align: center;
    padding: 40px 0;
    cursor: pointer;
    transition: 0.5s;
}

.navbar-nav .mega-menu .bottom:hover {
	background-color: rgba(245, 252, 249);
}


/*
****************************************************************************************************
****************************************************************************************************
	HOME
****************************************************************************************************
****************************************************************************************************
*/
.hero.home {
	border-radius: 16px;
    height: 550px;
    overflow: hidden;
    margin: 20px 30px 60px;
}
.hero.home .slick-list {
	height: 100%;
}
.hero.home .slick-track {
	height: 100%;
}
.hero.home .slide {
	height: 100%;
	position: relative;
}
.hero.home .slide .imageHolder {
	height: 100%;
}
/*
.hero.home .slide .imageHolder:after {
	content: '';
    background-color: rgba(0, 0, 0, 0.26);
    mix-blend-mode: multiply;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
*/
.hero.home .slide .imageHolder img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.hero.home .slide .contentHolder {
	position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}
.hero.home .slide .contentHolder .h2 {
    font-weight: 700;
    font-size: 50px;
    line-height: 53px;
    margin: 0 0 45px 0;
}
.hero.home .slide .contentHolder p {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    margin: 0 0 45px 0;
    color: #fff;
}


ul.slick-dots {
	position: absolute;
    bottom: 25px;
    left: 0;
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: 100%;
}
ul.slick-dots li {
	margin: 0 8px;
}	
ul.slick-dots li button {
	background-color: transparent;
    font-size: 0;
    border: 1px solid #fff;
    border-radius: 100%;
    width: 13px;
    aspect-ratio: 1;
    padding: 0;	
}
ul.slick-dots li.slick-active button {
	background-color: #fff;
}




/* Categories */
.categories .contain {
	display: block;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
/*
.categories .contain:after {
	content: '';
    background-color: rgba(0, 0, 0, 0.26);
    mix-blend-mode: multiply;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
*/
.categories .contain img {
	transform: scale(1);
	transition: 0.5s;
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;	
}
.categories .contain:hover img {
	transform: scale(1.1);
}
.categories .contain .p {
/* 	position: absolute; */
    bottom: 0;
    left: 0;
    margin: 0;
/*     color: #fff; */
    z-index: 1;
    font-size: 20px;
    font-weight: 700;
    width: 100%;
    padding: 15px 25px 0;
    text-align: center;
}


/*
.categories_one .item:nth-child(1),
.categories_one .item:nth-child(2) {
	margin-bottom: 40px;
}

.categories_one .item .contain {
    padding: 0 15px;
}

.categories_one .item .imageHolder {
    -webkit-box-shadow:inset 0px 0px 0px 2px #dcf5ea;
    -moz-box-shadow:inset 0px 0px 0px 2px #dcf5ea;
    box-shadow:inset 0px 0px 0px 2px #dcf5ea; 
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 10px;
    margin: 0 0 15px 0;
}

.categories_one .item .imageHolder img {
    max-height: 125px;
    width: auto;
}

.categories_one .item .p {
	color: #1cbf74;
	font-weight: 800;
	font-size: 18px;
	margin: 0;
}

.categories_one .item a.with_arrow {
    justify-content: center;
}

.categories_one .item:hover .imageHolder {
    -webkit-box-shadow:inset 0px 0px 0px 4px #dcf5ea;
    -moz-box-shadow:inset 0px 0px 0px 4px #dcf5ea;
    box-shadow:inset 0px 0px 0px 4px #dcf5ea; 
}

.categories_one .item:hover .p {
	color: #1cbf74;
	text-decoration: none;
}

.categories_one .item:hover a.with_arrow svg,
.categories_one .item:hover a.with_arrow img {
    margin-left: 35px;
}
*/


/* Categories Two */
/*
.categories_two {
    padding: 60px 0;
}

.categories_two ul {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin: 0;
	border-radius: 25px;
	overflow: hidden;
}

.categories_two ul li {
    width: 25%;
	position: relative;
	background-color: #f5fcf9;
}

.categories_two ul li .p {
	color: #1CBF74;
	font-weight: 800;
	font-size: 18px;
	margin: 0;
}

.categories_two ul li a.with_arrow {
    justify-content: center;
    padding: 45px 10px;
}

.categories_two ul li:not(:last-child)::after {
    content: '';
    background-color: #fff;
    width: 4px;
    display: block;
    bottom: 20px;
    position: absolute;
    right: -2px;
    top: 20px;
}

.categories_two ul li:hover {
	background-color: #DEF6EC;
}

.categories_two ul li:hover a.with_arrow img,
.categories_two ul li:hover a.with_arrow svg {
	margin-left: 35px;	
}
*/
	

/* Intro */
.intro.home {
	padding: 160px 0;
}

.intro.home h2 {
	margin: 0 0 35px 0;
}

.coaster {
    padding: 45px;
    overflow: hidden;
    position: relative;
}

.coaster .h1 {
    color: #ffffff;
    max-width: 300px;
    margin: 0 0 25px 0;
}

.coaster p {
    color: #ffffff;
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
    max-width: 260px;
    margin-bottom: 30px;
}

.coaster .imageHolder {
    position: absolute;
	width: 180px;
    height: 210px;
	right: 0;
	bottom: 0;
	transform: translateX(20%) translateY(20%);
}


/* Specials */
.specials > .container > .row > .items {
	position: relative;
}

.specials .row .items::before {
    content: '';
	background: linear-gradient(270deg, rgba(255,255,255,0.8) 0%, rgb(255, 255, 255) 20%);
	position: absolute;
	right: 100%;
	top: 0;
	height: 100%;
	width: 100%;
	margin-right: -10px;
	z-index: 2;
}

.specials .row .items::after {
    content: '';
	background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, rgb(255, 255, 255) 20%);
	position: absolute;
	left: 100%;
	top: 0;
	height: 100%;
	width: 100%;
	margin-left: -10px;
	z-index: 2;
}

.specials .slick-list {
    overflow: visible;
}

.specials .items .item {
    padding: 7px;
}

.specials .items .item:nth-child(odd) .wrapper {
	background-color: #464646;
}

.specials .items .item:nth-child(odd) .btn.outline {
	border: 2px solid #fff;
	color: #ffffff;
}

.specials .items .item:nth-child(odd) .btn.outline:hover {
	background-color: #fff;
	color: #464646;
}

.specials .items .item:nth-child(even) .wrapper {
	background-color: #F5FCF9;
}

.specials .items .item:nth-child(even) .h1 {
	color: #1CBF74;
}

.specials .items .item:nth-child(even) p {
	color: #1CBF74;
}

.slick-arrow {
    background-color: #1CBF74;
	position: absolute;
	top: 50%;
	z-index: 4;
	display: flex;
	align-items: center;
	height: 37px;
	width: 37px;
	padding: 0;
	justify-content: center;
}

.slick-arrow.slick-disabled {
	display: none !important;
}

.slick-arrow:hover {
	opacity: 0.7;
}

.slick-arrow.slick-prev {
	left: -94px;
}

.slick-arrow.slick-next {
	right: -94px;
}


/* About */
.about.home {
	padding: 100px 0;
	background-color: #F5FCF9;
}

.about.home h2 {
	margin-bottom: 30px;
}

.about.home .btn {
	margin-top: 40px;	
}


/* Trusted */
.trusted {
	padding: 130px 0 0;
/* 	background-color: #F5FCF9; */
}

.trusted .content h2 {
/*
    flex: 0 0 25%;
    max-width: 25%;
    margin-right: 50px;
*/
}

/*.trusted .content p {*/

/*	flex: 0 0 25%;*/
/*    max-width: 25%;*/

/*}*/

.trusted .imageholder {
	margin-top: 90px;
}

.trusted .imageholder p {
	color: #1CBF74;
	font-weight: 600;
}

.trusted .images {
/* 	display: flex; */
}
.trusted .images p {
   width: 25%;
text-align: center; 
}
    

/*
.trusted .images img {
    max-width: 150px;
    max-height: 50px;
}
*/

/*
.trusted .images p:nth-child(1),
.trusted .images p:nth-child(5) {
	justify-content: start;
}

.trusted .images p:nth-child(4),
.trusted .images p:nth-child(8) {
	justify-content: end;
}

.trusted .images p:nth-child(1),
.trusted .images p:nth-child(2),
.trusted .images p:nth-child(3),
.trusted .images p:nth-child(4) {
	margin-bottom: 50px;
}
*/


/* Custom Boxes */
.custom_boxes {
	padding: 140px 0;
}

.custom_boxes .items .item:first-child .wrapper {
	background-color: #1CBF74;
}

.custom_boxes .items .item:last-child .wrapper {
	background-color: #464646;
}

.custom_boxes .items .item .btn {
	border-color: #ffffff;
	color: #ffffff;
}

.custom_boxes .items .item .btn:hover {
	background-color: #ffffff;
}

.custom_boxes .items .item:first-child .btn:hover {
	color: #1CBF74;
}

.custom_boxes .items .item:last-child .btn:hover {
	color: #464646;
}


/* Points */
.points {
	padding: 100px 0 120px;
}
.points img {
	margin-right: 30px;
}
.points p {
	margin: 0;
	font-weight: 700;
	font-family: 'Sofia Pro', sans-serif;
	font-size: 18px;
	line-height: 27px;
	max-width: 120px;
	position: relative;
}
.points em {
	display: block;
	font-style: normal;
	font-weight: 400;
	font-size: 11px;
	line-height: 1.4;
	position: absolute;
	left: 0;
	bottom: -20px;
	width: 145px;
	color: #838383;
}


/* Testimonials */
.testimonials .content {
	background-color: #F5FCF9;
    border-radius: 16px;
    padding: 65px 45px;
}
.testimonials .quote {
	line-height: 1.6;
}
.testimonials .author {
	font-weight: 600;
}
.testimonials .location {
	font-weight: 400;
	font-style: italic;
	opacity: 0.5;
}




/*
****************************************************************************************************
****************************************************************************************************
	FOOTER
****************************************************************************************************
****************************************************************************************************
*/

footer .top {
    background-color: #F5FCF9;
    padding: 70px 0;
}

.logo_address img {
	margin-bottom: 20px;
}

.logo_address p,
.logo_address a {
    color: #1CBF74;
    font-weight: 500;
    margin: 0;
    max-width: 200px;
    line-height: 26px;
}

footer .h3 {
/* 	max-width: 100px; */
	margin-bottom: 15px;
}

footer ul li a {
	padding: 5px 0;
	display: block;	
}

/*
nav.footer > div:first-child .h3 {
	max-width: 100%;
}
*/

.list-social li {
	margin-right: 25px;
}

footer .bottom {
    background-color: #464646;
    padding: 18px 0;
}

footer .bottom p {
    color: #ffffff;
    margin: 0;
    font-size: 12px;
    font-weight: 500;
}

ul.payments {
	margin: 0;
}

ul.payments .payment-icon-container {
    padding: 5px;
    height: 32px;
    display: block;
}

ul.payments .payment-icon {
    width: 45px;
    background-size: 45px;
    height: 22px;
}


/*
****************************************************************************************************
****************************************************************************************************
	CATEGORY
****************************************************************************************************
****************************************************************************************************
*/

.intro.shop {
	padding: 100px 0 100px 0;
}



/*
****************************************************************************************************
****************************************************************************************************
	CATEGORY
****************************************************************************************************
****************************************************************************************************
*/

.breadcrumbs {
    padding: 20px 0;
    margin: 25px 0 0 2px;
}

.breadcrumb {
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border-radius: 0;
}

.breadcrumb li {
	font-weight: 500;
	font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '';
    border: 2px solid #464646;
		border-left: 0;
		border-top: 0; 
	width: 8px;
	height: 8px;
	transform: rotate(-45deg);
	float: none;
	display: inline-block;
	padding: 0;
	margin-right: 5px;
}

.breadcrumb li a {
	color: #464646;
}

.breadcrumb li:last-child a {
	opacity: 0.5;
}


/* Sidebar */
.sidebar .top .row {
	position: relative;
}

.sidebar .top .row:before {
	content: '';
	background-color: #F5FCF9;
	position: absolute;
	left: 15px;
	right: 15px;
	top: 0;
	height: 100%;
	border-radius: 10px;
}

.sidebar .top .h3 {
	margin: 0 0 0 25px;
}

.toggle_filter {
    position: relative;
	margin: 0;
	float: right;
	font-size: 16px;
	font-weight: 700;
	color: #1CBF74;
	padding: 18px 50px 18px 25px;
	cursor: pointer;
}

.toggle_filter:after {
	content: '';
	border: 2px solid #1CBF74;
		border-left: 0;
		border-top: 0;
	width: 7px;
	height: 7px;
	position: absolute;
	top: calc(50% - 5px);
	right: 25px;
	transition: 0.5s;
	transform: rotate(45deg);
}

.toggle_filter.active:after {
	transform: rotate(-135deg);
	top: calc(50% - 1px);
}

.sidebar .bottom {
	display: none;
}

.sidebar .bottom > .container {
	padding: 35px 41px 0 41px;	
}

.sidebar .bottom .h5 {
	margin: 0 30px 0 0;
}

.sidebar .bottom ul {
    padding: 0;
    list-style: none;
    margin: 3px 0 0 0;
    align-content: flex-start;
}

.sidebar .bottom ul li {
    width: 20%;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    padding: 0 10px 0 0;
    margin: 0 0 15px 0;
}

.sidebar .bottom ul li i {
    position: relative;
    top: 1px;
    margin: 0 8px 0 0;
}

.filter-title {
	width: 100%;	
}

#price-range {
	border: 0;
	margin: 4px 0 0 0;
}

#price-range::after {
    content: '';
    background: #464646;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    top: 3px;
}

#price-range-text {
    margin: 0 0 15px 0;
    font-size: 14px;
}

#price-range .ui-slider-range {
	top: 3px;
    height: 3px;
    background: #464646 !important;
}

#price-range .ui-slider-handle {
    border: 0;
    background: #464646;
    font-weight: normal;
    color: #464646;
    border-radius: 5px;
}

#price-range .ui-slider-handle:hover,
#price-range .ui-slider-handle:focus {
    background: #1CBF74 !important;
	color: #1CBF74 !important;
}

.price-range-holder .btn-sm {
	font-size: 12px;
}


/* Sorters */
.sorters {
	margin: 60px 0 30px 0;
}

.sorters p.number_products {
	margin: 0;
	color: #1CBF74;
	font-size: 14px;
	font-weight: 600;
}

.sorters label {
    color: #1CBF74;
    font-size: 14px;
    font-weight: 600;
    min-width: 64px;
    margin: 0;
}

.sorters select {
	border: 2px solid #DCF5EA;
}


/* Listings */
.component_box {
	display: none;	
}

.card {
    border: 2px solid #DCF5EA;
    border-radius: 20px;
    padding: 20px !important;
}

.card.thumbnail img {
	max-width: 200px;
	margin: 25px auto;
	display: block;	
}

.card:hover {
	border: 2px solid #BAECD5;
}

.card-title {
    color: #464646;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 5px;
}

.sku {
	font-size: 12px;
	margin: 0;
}

.keepitseperated {
	border: 1px solid #dcf5ea;
	margin-top: 10px;
	margin-bottom: 10px;
}

.card table.bulk_pricing tbody {
    border: 0;
}

.card table.bulk_pricing tbody:before {
	display: none;
}

.card table.bulk_pricing tbody tr:after {
    display: none;
}

.card table.bulk_pricing tbody tr td {
    padding: 10px 0;
}

.fixed_width {
	width: 60px;
	display: inline-block;
}

.price_wrapper {
    margin: 30px 0 5px 0;
}

.qty_holder {
    width: 100%;
    position: relative;
    border: 2px solid #DCF5EA;
    border-radius: 10px;
    padding: 0 3px 0 20px;
	text-align: left;
	height: auto;
	max-width: 139px;
	background-color: #fff;
}

.qty_holder .qty {
	text-align: left;
	padding: 10px 10px;
}

.qty_holder .qty-decrease {
    position: absolute;
	left: 3px;
	top: 4px;
	bottom: 4px;
	width: 21px;
	background-color: #fff;
	text-decoration: none;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.2s;
}

.qty_holder .qty-decrease:hover {
    font-size: 15px;
    color: #1CBF74;
    font-weight: 700;
}

.qty_holder input {
    border: 0;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    box-shadow: none;
	outline: none;
}

.qty_holder .qty-increase {
    position: absolute;
    right: 3px;
    top: 4px;
    bottom: 4px;
    width: 21px;
    background-color: #fff;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.qty_holder .qty-increase:hover {
    font-size: 26px;
    color: #1CBF74;
    font-weight: 700;
}

.card button.addtocart {
	height: 100%;
	box-shadow: none;
	outline: none;	
}

button.addtocart svg.plus_icon line {
	transition: 0.5s;
}

button.addtocart svg.cart_icon path {
	transition: 0.5s;
}

button.addtocart:hover svg.plus_icon line {
	stroke: #1CBF74;
}

button.addtocart:hover svg.cart_icon path {
	stroke: #1CBF74;
	fill: #1CBF74;
}


/* Pagination */
section.pagination {
	margin: 70px 0 100px 0;
}

ul.pagination {
    margin: 0;
}

ul.pagination li {
    font-family: 'Proxima Nova';
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    margin: 0 4px !important;
    width: 40px;
    text-align: center;
}

ul.pagination li a {
	background-color: #F5FCF9;
	border: 0;
	color: #1CBF74;
	border: 2px solid #F5FCF9 !important;
	transition: 0.5s;
	border-radius: 10px !important;
}

ul.pagination li:not(.active) a:hover {
	background-color: #ffffff !important;
	border: 2px solid #1CBF74 !important;
	color: #1CBF74 !important;
}

ul.pagination li a:focus {
    box-shadow: none !important;
}

ul.pagination li.page-item.active a.page-link {
	background-color: #1CBF74;	
}

/* Empty Category */
section.empty .col-12 {
    padding: 0;
    min-height: 500px;
}



/*
****************************************************************************************************
****************************************************************************************************
	PRODUCT
****************************************************************************************************
****************************************************************************************************
*/

.main-image {
    border: 2px solid #DCF5EA;
	border-radius: 20px;
	overflow: hidden;
}

.product_name {
    color: #464646;
    margin: 0;
}

.sub_title {
	margin: 0;
}

#n_product .sku {
    margin: 15px 0 0 0;
}

#n_product .price_wrapper {
    margin: 30px 0 5px 0;
}

#n_product #total_price {
	display: block;
	font-size: 22px;
}

.badgeHolder {
	margin-bottom: 10px;
}

.badge {
    padding: 0;
    font-size: 12px;
    border-radius: 0;
    background-color: transparent !important;
    text-transform: uppercase;
}

.badge-success {
	color: #1cbf74;
}

.badge-warning {
    color: #ffc107;
}

.badge-danger {
	color: #dc3545;
}

.availability_description {
    padding: 0 0 0 31px;
    margin: 0 0 0 0;
    position: relative;
}

.availability_description img {
    position: absolute;
    left: 0;
    top: 3px;
    opacity: 0.5;
}

.availability_description p {
    font-size: 15px;
}

table.bulk_pricing {
    width: 100%;
    margin: 0 0 35px;
}

table.bulk_pricing thead th {
    font-weight: 500;
}

table.bulk_pricing tbody {
	position: relative;
}

table.bulk_pricing tbody:before {
    content: '';
    border: 2px solid #DCF5EA;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

table.bulk_pricing tbody tr {
	position: relative;
}

table.bulk_pricing tbody tr:not(:first-child):after {
	content: '';
	background-color: #DCF5EA;
	height: 1px;
	left: 21px;
	right: 10px;
	position: absolute;
}

table.bulk_pricing tbody tr td {
	font-weight: 500;
	padding: 15px 25px;
}

table.bulk_pricing tbody tr td:first-child {
	text-align: left;
	width: 80%;
	max-width: 80%;
}

table.bulk_pricing tbody tr td:last-child {
	color: #1CBF74;
	text-align: right;
	width: 20%;
	max-width: 20%;
}

span.from {
	color: #464646;
	font-size: 12px;
	margin: 0 10px 0 0;
}

.label.customise {
    margin: 15px 0 20px 0;
    font-weight: 500;
    text-align: center;
}

.childrenHolder,
.componentsHolder {
	margin-top: 80px;
}

.components {
	border: 2px solid #e8f8f1;
	border-radius: 20px;
	margin-top: 35px;
	width: 100%;
	
	border-spacing: 0;
    border-collapse: separate;
}



.components tr td {
	padding: 22px 15px;
	position: relative;
}

.component {
	position: relative;
	padding: 15px 0;
	min-height: 90px;
}

/*
.component.headings {
	position: absolute;
	top: 0;
	left: 15px;
	right: 15px;
	padding: 0;
	min-height: 0;
}
.component.headings:after {
	display: none;
}
*/
.components .component:not(:last-child):after {
	content: '';
	background-color: #e8f8f1;
	position: absolute;
	left: 10px;
	bottom: 0;
	height: 1px;
	right: 10px;
}

/*
.skuHolder {
	width: 10%;
	position: relative;
	text-align: center;
	padding: 0 20px;
}
*/

.component:not(.headings) > td:not(:last-child):after {
	content: '';
	background-color: #e8f8f1;
	position: absolute;
	right: 0;
	top: 14px;
	width: 1px;
	bottom: 14px;
}


.skuHolder p {
	font-size: 16px;
}

/*
.titleHolder {
	width: 10%;
	padding: 0 20px;
	position: relative;
	flex-grow: 1;
}
*/

.titleHolder .card-title {
	font-weight: 400;
}

/*
.numberHolder {
	width: 10%;
	padding: 0 20px;
	position: relative;
	text-align: center;
}
*/


td.numberHolder {
	text-align: center;
}

.numberHolder .number {
	font-size: 12px;
}

/*
.priceHolder {
	width: 10%;
	text-align: center;
	padding: 0 20px;
	position: relative;
}
*/

td.priceHolder {
	text-align: center;
}

.priceHolder .price {
	color: #1CBF74;
}

/*
.bulkHolder {
	width: 10%;
	text-align: center;
	padding: 0 20px;
	position: relative;
}
*/

/*
.bulkHolder .numberHolder {
	flex-grow: 1;
    max-width: unset;
    padding: 0 10px;
}
*/

/*
.bulkHolder .numberHolder:before {
	display: none;
}
.bulkHolder .numberHolder:after {
	display: none;
}
*/


td.bulkHolder {
	text-align: center;
}

.bulkHolder .d-flex {
	justify-content: space-around;
}


.bulkHolder .price {
	color: #1CBF74;
}

/*
.quantityHolder {
	width: 10%;
	text-align: center;
	padding: 0 20px;
	position: relative;
}
*/

td.quantityHolder {
	text-align: center;
	width: 100px;
}

.quantityHolder input {
	max-width: 70px;
}


.variation label {
	margin: 0;
	font-size: 12px;
}

.variation select {
	height: auto;
	padding: 15px 15px;	
}

.dynamic_price {
    margin: 0 0 5px 0;
}

.dynamic_price small {
	color: #464646;
	font-size: 14px;
	margin: 0;
}

.dynamic_price #total_price {
	color: #1CBF74;
	font-size: 16px;
	font-weight: 700;
	margin: 0;
}

.btn-stack .btn {
	max-width: 225px;
}


/* Product Information */
.tabbable {
	margin-top: 90px;	
}

.tabbable .nav-tabs {
	border: 0;
	justify-content: space-between;
	display: flex;
}

.tabbable .tab-pane:not(.active) {
    display: none;
}

.tabbable .nav-tabs li {
	width: 49%;
} 

.tabbable .nav-tabs li a {
	color: #1CBF74;
	font-size: 16px;
	font-weight: 700;
	border: 2px solid #eefaf5 !important;
	border-radius: 12px;
	padding: 20px 20px;
}

.tabbable .nav-tabs li a.active {
	background-color: #eefaf5;	
	color: #1CBF74;
}

.tab-pane p:last-child {
	margin: 0;
}

.tab-pane .wrapper {
	background-color: #eefaf5;
    padding: 20px 20px;
    border-radius: 10px; 
    min-height: 170px; 
}

.tab-pane .wrapper a {
	font-weight: 700;
	text-decoration: underline;
	color: inherit;
	font-size: 11px;
}

.tab-pane .wrapper.note {
	background-color: #FFF9F9;
}

.tab-pane .wrapper.note p {
	color: #F0414E;	
}


/* Recommended Products */
.recommended {
	padding: 70px 0;
}

.recommended .heading .h3 {
    margin: 0 0 50px 0;
    font-size: 22px;
    background-color: #eefaf5;
    padding: 20px 20px;
    border-radius: 10px;
}


/*
****************************************************************************************************
****************************************************************************************************
	ABOUT
****************************************************************************************************
****************************************************************************************************
*/

.imageHolder.feature {
	border-radius: 50px;
	overflow: hidden;
}

.imageHolder.feature img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.intro.about {
    padding: 35px 0 0 0;
}

.intro.about .h2 {
	max-width: 400px;
	margin: 0 0 30px 0;
}

.about_markets {
	padding: 80px 0;
}

.about_markets .icons {
	margin: 40px 0 60px 0;
}

.about_markets .icons .icon {
	margin: 30px 0;
}

.iconHolder {
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 6px 0;
}

.about_markets .icon h3 {
	max-width: 200px;
	margin: auto;
}

.about_markets p {
    max-width: 745px;
    margin-left: auto;
    margin-right: auto;
}

.about_points {
	padding: 80px 0;
}

.about_points table {
	border: 0;
	margin: 0 0 55px 0;
}

.about_points table tr td {
    padding: 0 45px;
	vertical-align: top;
	border: 0;
	width: 33.3333%;
}

.about_points h2 {
    margin: 0 auto 70px auto;
    max-width: 700px;
}

.about_points p {
    max-width: 590px;
    margin: auto;
}

.contacts.about {
    padding: 80px 0 60px 0;
}

.contacts.about a:hover {
	color: #1CBF74;
	opacity: 0.8;
	text-decoration: none;
}


/*
****************************************************************************************************
****************************************************************************************************
	DEFAULT CONTENT PAGE
****************************************************************************************************
****************************************************************************************************
*/

.default_content {
	padding: 80px 0;
}

.default_content h1 {
	margin: 0 0 15px 0;
}

.default_content h2 {
	margin: 35px 0 15px 0;
}

.default_content a {
	color: #1CBF74;
}


/*
****************************************************************************************************
****************************************************************************************************
	CART
****************************************************************************************************
****************************************************************************************************
*/
#n_checkout .page-heading .row {
    position: relative;
    padding: 18px 0 18px 0;
    margin: 40px 0 35px 0;
}

#n_checkout .page-heading .row::before {
    content: '';
    background-color: #F5FCF9;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    border-radius: 10px;
}

#n_checkout .page-heading .h3 {
	margin: 0;
}

table.cartTable {
	border: 0;
}

table.cartTable thead td,
table.cartTable thead th {
	border: 0;
}

table.cartTable tbody {
	position: relative;
}

table.cartTable tbody:before {
    content: '';
    border: 2px solid #DCF5EA;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

table.cartTable td,
table.cartTable th {
    border-top: 0;
}

table.cartTable tbody tr {
	position: relative;
}

table.cartTable tbody tr:not(:first-child)::after {
    content: '';
    background-color: #DCF5EA;
    height: 1px;
    left: 20px;
	right: 20px;
    position: absolute;
}

#n_checkout td.price_column {
    min-width: 170px;
}

.components-list {
	margin: 0;
	background-color: #f5fcf9;
	padding: 3px 12px;
}
.components-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 10px 0;
}
.components-list li label {
	font-size: 12px;
}
.components-list li input {
	max-width: 100px;
	appearance: textfield;
}
.no-touch {
	padding: 0 !important;
	border: 0 !important;
	background-color: transparent !important;
	width: auto !important;
	font-size: 12px;
}
.delete_holder a {
	position: relative;
	top: 9px;
}


.components-cart {
	
}
.components-cart li {
	font-size: 12px;
	padding: 3px 0;
	border-top: 1px solid #efefef;
}
.components-cart li:first-child {
	border-top: 0;
}

.component-qty {
	padding: 10px 10px;
	max-width: 80px;
	width: 80px;
}


/* Empty Cart */
.empty_cart .col-12 {
	padding: 0;
	min-height: 500px;
}


/* Contact */
.form-control, .n-wrapper-form-control select {
    height: auto;
    padding: 10px 10px;
}

label {
    font-weight: 600;
    margin-bottom: 5px;
}

span.required {
	color: #f27b7b;
}



/* Custom Products */
.custom_products_table table {
	width: 100% !important;
    border: 0 !important;
    border-collapse: collapse !important;
}
.custom_products_table table tr {
	
}
.custom_products_table table tr td {
	border: 0 !important;
    text-align: left;
    padding: 25px 40px;
    width: 50%;
}
.custom_products_table table tr td img {
	width: 100% !important;
	height: auto !important;
}

.custom_products_cta p {
	font-size: 40px;
}


@media screen and (max-width: 768px) {
	
	.custom_products_table table tbody {
		display: block;
	}	
	
	.custom_products_table table tr {
	    display: flex;
	    flex-direction: column;
	    width: 100%;
	}
	
	.custom_products_table table tr td {
		width: 100%;	
		display: block;	
		padding-left: 0;
		padding-right: 0;
	}
	.custom_products_table table tr:nth-child(even) {
		flex-direction: column-reverse;
	}

	.custom_products_cta p {
    	font-size: 18px;
	}

}

@media screen and (min-width: 1600px) {

	.container, .container-lg, .container-md, .container-sm, .container-xl {
	    max-width: 1400px;
	}
	
	nav ul.main_nav {
	    max-width: 1370px;
	}
	
	nav ul.main_nav > li:not(:last-child) {
	    margin: 0 85px 0 0;
	}
	
	.navbar-nav .mega-menu .featured .top {
	    height: 218px;
	}

	.navbar-nav .mega-menu .featured .bottom {
	    height: 218px;
	}
	
	.hero.home .content .contain {
		padding: 60px 100px 60px 100px;
	}
	
	.hero.home .content .h2 {
		font-size: 55px;
		line-height: 60px;
	}
		
/*
	.categories_one .item .imageHolder {
		padding: 50px 10px;
	}
*/
		
	.coaster .imageHolder {
	   	width: 350px;
        height: 360px;
	}
	
/*
	.trusted .content h2 {
	    max-width: 260px;
	}
*/
	
}



@media screen and (max-width: 1200px) {
		
	nav ul.main_nav {
	    max-width: 930px;
	}
	
	nav ul.main_nav > li:not(:last-child) {
	    margin: 0 25px 0 0;
	}
	
	.hero.home .content .contain {
	    padding: 60px 40px 60px 40px;
	}
	
	.hero.home .content .h2 {
	    font-size: 40px;
	    line-height: 45px;
	}
	
	
	.intro.home {
	    padding: 100px 0;
	}
	
	
/*
	.categories_one .item .contain {
	    padding: 0;
	}
	
	.categories_one .item .imageHolder {
	    padding: 30px 10px;
	    margin: 0 0 10px 0;
	}
	
	.categories_one .item .imageHolder img {
	    max-height: 100px;
	}	
*/
	
}


@media screen and (max-width: 992px) {

	.container, .container-md, .container-sm {
	    max-width: 100%;
	}
	
	
	/*
	****************************************************************************************************
	****************************************************************************************************
		HEADER
	****************************************************************************************************
	****************************************************************************************************
	*/
	
	.mainbar .top {
	    padding: 35px 15px 15px 15px;
	}
	
	.mainbar .bottom {
	    display: none;
	    right: 0;
	    position: fixed;
	    top: 0;
	    z-index: 99;
	    height: 100%;
	    width: 100%;
	    background-color: #fff;
	    overflow: scroll;
	}

	.mainbar .bottom.active {
	    display: block;  
	}

	#cart {
	    margin-right: 45px;
	}
	
	#nav-icon {
	    position: absolute;
	    right: 0;
	    top: 0;
	}

	form.default {
	    max-width: 100%;
	}
	
	
	/* Menu */
	.mobile_menu_header {
	    width: 100%;
	    padding: 25px 0 25px 0;
	}
	
	.mobile_menu_header a.close {
	    position: absolute;
	    left: 20px;
	    top: 26px;
	}
	
	.mobile_menu_header .logo {
	    max-width: 120px;
	}

	.navbar-nav .dropdown.level1 li:hover > .dropdown.level2, .navbar-nav .dropdown.level1 li:hover > .tile {
    	display: none;
	}

	nav ul.main_nav {
	    display: block;
	}
	
	nav ul.main_nav > li {
	    margin: 0 !important;
	    width: 100%;;
	}
	
	nav ul.main_nav > li > a span.toggle img {
		filter: grayscale(1) brightness(0);
		transform: rotate(-90deg);	
	}

	.navbar-nav .active_menu_item {
	    background-color: #f5fcf9;
	    text-align: center;
	    border: 0;
	    min-height: 53px;
	    margin: 0 0 25px 0 !important;
	    font-weight: 700 !important;
	}
	
	.navbar-nav .active_menu_item > a {
		color: #1CBF74;
	}

	.navbar-nav .active_menu_item span.toggle.back {
		right: auto !important;
		left: 25px;
	}
	
	.navbar-nav .active_menu_item span.toggle.back img {
		transform: rotate(90deg);
	}
	
	nav ul.main_nav ul {
	    position: fixed !important;
	    top: 89px !important;
	    left: 0 !important;
	    width: 100% !important;
	    height: calc(100% - 175px) !important;
	    background-color: #fff !important;
	    display: none;
	    overflow: scroll !important;
	    padding: 0 !important;
	}
	
	nav ul.main_nav ul.active {
		display: block !important;	
	}

	nav ul.main_nav li {
	    font-size: 18px;
	    font-weight: 600 !important;
	    font-family: 'Proxima Nova' !important;
	    width: 100% !important;
	    border-bottom: 2px solid #f5fcf9;
	}
	
	nav ul.main_nav li a {
	    padding: 13px 30px !important;
		position: relative;
	}
	
	nav ul.main_nav li span.toggle {
	    display: block;
	    position: absolute !important;
	    top: 13px !important;
	    margin-left: 0 !important;
	    right: 15px !important;
	    width: 30px;
	    height: 30px;
	    text-align: center;
	}
	
	.navbar-nav li.shopall {
	    left: 0;
	    top: auto;
	    text-decoration: none;
	    padding: 20px 30px 20px 30px;
	    bottom: 0;
	    text-align: center;
	    border: 0;
	    background-color: #f5fcf9;
	    position: fixed;
	    bottom: 0;
	    left: 0;
	    width: 100%;
	}
	
	.navbar-nav ul.dropdown li.shopall {
		  position: fixed;
		  left: 0;
		  top: auto;
		  margin: 0;
		  padding: 19px 30px;
		  bottom: 0;
		}
	
	.navbar-nav li.shopall a {
	    color: #1cbf74;
	    border: 2px solid #1cbf74;
	    border-radius: 8px;
	    display: inline-block;
	    padding: 8px 20px !important;
	}
	
	.navbar-nav .dropdown.level1 {
	    z-index: 1;
	}
	
	.navbar-nav .dropdown.level2 {
	    z-index: 1;
	}
	
	
	
	.hero.home {
	    margin: 20px 15px 60px;
	}
	
	.specials .row .items::before,
	.specials .row .items::after {
	  display: none;
	}

}


@media screen and (max-width: 768px) {
	
	
	h1, .h1 {
		font-size: 30px;
		line-height: 33px;
	}
		
	h2, .h2 {
		font-size: 20px;
		line-height: 24px;
	}
	
	h3, .h3 {
	    font-size: 18px;
	}
	
	.btn {
	    font-size: 18px;
	}
	
	.rounded {
	    border-radius: 25px !important;
	}
	
	section > .container > .row > .col-12 {
		padding: 0 30px;
	}
	
		
	/*
	****************************************************************************************************
	****************************************************************************************************
		SIDECART
	****************************************************************************************************
	****************************************************************************************************
	*/
	
	#sideCart {
		width: 100%;
		box-shadow: none;
		border: 0;
	}
	
	#sideCart .body {
		padding: 30px 30px;
	}
	
	#sideCart .footer {
	    padding: 30px 15px;
	}
	
	
	/*
	****************************************************************************************************
	****************************************************************************************************
		HEADER
	****************************************************************************************************
	****************************************************************************************************
	*/
	
	.mainbar .top {
    	padding: 25px 15px 35px 15px;
	}
	
	.wrapper-search {
	    padding-top: 30px;
	}
	
	
	/*
	****************************************************************************************************
	****************************************************************************************************
		HOME
	****************************************************************************************************
	****************************************************************************************************
	*/
	.hero.home {
        margin: 0 15px 15px;
        height: 476px;
    }
    
    .hero.home .slide .imageHolder img {
	    object-position: left center;
	}
	
/*
	.hero.home .content .contain {
	    padding: 30px 30px 30px 30px;
	}
*/
		
	.hero.home .slide .contentHolder .h2 {
	    font-size: 30px;
	    line-height: 33px;
	    margin: 0 0 20px 0;
	}
	
	.hero.home .slide .contentHolder p {
	    font-size: 16px;
	    line-height: 22px;
	    margin: 0 0 30px 0;
	}
	
	
	/* Cateogories */
	.categories .contain .p {
	    font-size: 13px;
	    padding: 18px 15px;
	}
	
/*
	.categories_one {
		margin: 35px 0 0 0;
	}
	
	.categories_one .item:nth-child(1),
	.categories_one .item:nth-child(2) {
	    margin-bottom: 0;
	}

	.categories_one .item .contain {
	    position: relative;
	    padding: 0;
	}

	.categories_one .item .imageHolder {
	    padding: 11px 10px;
	    align-items: start;
	    justify-content: flex-start;
	    border-radius: 14px;
	}
	
	.categories_one .item .imageHolder img {
	    max-height: 40px;
	    margin: 0 0 0 20px;
	}
		
	.categories_one .item .p {
	    position: absolute;
	    top: calc(50% - 10px);
	    left: 0;
	    right: 0;
	    width: auto;
	    font-size: 16px;
	}
	
	.categories_one .item a.with_arrow {
	    justify-content: start;
	    margin: 0 0 0 115px;
	}
	
	.categories_one .item a.with_arrow img {
	    margin-left: 0;
	    position: absolute;
	    right: 40px;
	    top: 5px;
	}
*/
	
	
	/* Categories Two */
/*
	.categories_two {
	    padding: 25px 0;
	}
	
	.categories_two ul {
	    border-radius: 0;
	}
	
	.categories_two a.with_arrow img {
		display: none;
	}
	
	.categories_two ul {
	    flex-wrap: wrap;
	    justify-content: space-between;
	}
	
	.categories_two ul li {
	    width: 48%;
	    border-radius: 14px;
	    margin: 7px 0;
	}
	
	.categories_two ul li:not(:last-child)::after {
	    display: none;
	}
	
	.categories_two ul li a.with_arrow {
	    padding: 10px 10px;
	}
	
	.categories_two ul li .p {
	    font-size: 16px;
	}
*/
		
		
	/* Intro */
	.intro.home {
	    padding: 50px 0 45px 0;
	}
	
	
	/* Specials */
	.specials .container {
		padding: 0;
	}

	.coaster {
	    padding: 35px 30px 35px 30px;
	}

	.coaster .h1 {
	    margin: 0 0 15px 0;
	}
	
	.coaster p {
	    font-size: 16px;
	    line-height: 22px;
	    margin-bottom: 40px;
	    max-width: 175px;
	}
	
	.coaster .imageHolder {
	    width: 190px;
	    height: 190px;
	}
	
	
	/* About */
	.about.home {
	    padding: 65px 0;
	}
	
	.about.home h2 {
	    margin-bottom: 20px;
	    margin-top: 45px;
	}
		

	/* Trusted */	
	.trusted {
	    padding: 60px 0 20px 0;
	}
	
	.trusted .content h2 {
	    flex: 0 0 100%;
	    max-width: 100%;
	    margin: 0 0 20px 0;
	}
	
	.trusted .content p {
	    flex: 0 0 100%;
	    max-width: 100%;
	}
	
	.trusted .imageholder {
	    margin-top: 30px;
	}
	
	.trusted .images {
		justify-content: space-between;	
		gap: 20px 0;
	}
	
	.trusted .images p {
	    flex: 0 0 50%;
	    max-width: 47%;
	    height: 90px;
	    margin: 0 !important;
	    position: relative;
	    justify-content: center !important;
	    align-items: center;
	    text-align: center;
	}
	
	.trusted .images img {
        max-width: 96px;
        height: auto !important;
        max-height: 40px;
        width: auto !important;
    }
	
	
	/* Custom Boxes */
	.custom_boxes {
		padding: 0 0 80px;
	}
	
	.custom_boxes .row > .item:not(:last-child) {
		margin-bottom: 20px;
	}
	
	
	/* Testimonials */
	.testimonials .content {
	    padding: 30px 30px;
	    margin: 10px 0;
	}
	.testimonials .slick-slide {
		padding-right: 0;
	}
	
	
	/* Points */
	.points {
	    padding: 0 0 35px 0;
	}
	
	section.points > .container > .row > .col-12 {
	    padding-top: 30px;
	    padding-bottom: 30px;
	}
	
	
	/*
	****************************************************************************************************
	****************************************************************************************************
		FOOTER
	****************************************************************************************************
	****************************************************************************************************
	*/
	
	footer .top {
	    padding: 50px 0 25px 0;
	}
	
	footer .logo_address {
		margin-bottom: 30px;
	}
	
	footer .h3 {
		font-size: 25px;
		max-width: 100%;
		margin-bottom: 5px;
	}
	
	footer ul.nav {
	    margin: 0 0 25px 0;
	}
		
	
	/*
	****************************************************************************************************
	****************************************************************************************************
		DEFAULT CONTENT PAGE
	****************************************************************************************************
	****************************************************************************************************
	*/

	.default_content {
	    padding: 40px 0;
	}
	
	
		
		
	/*
	****************************************************************************************************
	****************************************************************************************************
		CATEGORY
	****************************************************************************************************
	****************************************************************************************************
	*/
	section.categories {
		margin: 30px 10px 0 10px;
	}
	section.categories .items > div {
		padding: 5px;
	}
		
	.thumbnail.card-body .card-title {
	    min-height: 0;
	}

		
		
	/* Sorters*/
	.sorters {
	    margin: 15px 0 20px 0;
	    padding: 0 16px;
	}
	
	.sorters p.number_products {
	    font-size: 11px;
	}
	
	.sorters select {
	    border: 0;
	    color: #1CBF74;
	    font-weight: 700;
	    font-size: 12px;
	}
		
	.toggle_filter {
	    position: relative;
		float: none;
		padding: 0;
		font-size: 12px;
	}
		
	.toggle_filter::after {
	    position: relative;
	    top: -3px;
	    right: auto;
	    display: inline-block;
	    margin: 0 0 0 9px;
	}


	/* Sidebar */
	.sidebar .top .row::before {
	    display: none;
	}
	
	.sidebar .top .h3 {
	    margin: 0 13px;
	    background-color: #F5FCF9;
	    border-radius: 10px;
	    padding: 18px 20px;
	}
	
	.sidebar .bottom > .container {
	    padding: 35px 30px 0 30px;
	}
	
	.sidebar .bottom .h5 {
	    margin: 0;
	}
	
	.sidebar .bottom ul li {
	    width: 50%;
	}
	
		
	/* Listing */
	.products {
		padding: 0 15px;
	}
	
	
	/* Product Information */
	.tabbable {
	    margin-top: 70px;
	}

	
	
	.components {
		display: block;
	}
	.components tbody {
		width: 100%;
		display: block;
	}
	.component {
/* 		flex-direction: column; */
        display: block;
		padding: 30px 0;
		border-bottom: 1px solid #e8f8f1;
	}
	.components tr td {
		width: 100%;
        display: block;
        text-align: left;
		padding: 5px 20px !important;
		margin: 0;
	}
	.component:not(.headings) > td:not(:last-child):after {
		display: none;
	}
	
	
	
	.skuHolder {
		flex: 0 0 100%;
		max-width: 100%;
		text-align: left;
		width: 100%;
	}
	.skuHolder p {
		font-size: 12px;
	}
	
	.titleHolder {
		flex: 0 0 100%;
		max-width: 100%;
		width: 100%;
	}
	
	.numberHolder {
		flex: 0 0 100%;
		max-width: 100%;
		width: 100%;
		text-align: left;
	}
	
	.priceHolder {
		flex: 0 0 100%;
		max-width: 100%;
		width: 100%;
		text-align: left;
	}
	
	.bulkHolder {
		flex: 0 0 100%;
		max-width: 100%;
		width: 100%;
		padding: 0;
		margin: 15px 0;
	}
	
	.bulkHolder > .d-flex {
		flex-direction: column;
	}
	
	.bulkHolder .numberHolder {
		flex: 0 0 100%;
		max-width: 100%;
		width: 100%;
		text-align: left !important;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding-top: 5px;
		padding-bottom: 5px;
	}
	
	.bulkHolder .numberHolder .number {
		width: 65px;
	}
	
	.component:first-child .skuHolder:before,
	.component:first-child .titleHolder:before,
	.component:first-child .numberHolder:before,
	.component:first-child .priceHolder:before,
	.component:first-child .bulkHolder:before,
	.component:first-child .quantityHolder:before {
		display: none;
	}
	
	.quantityHolder {
		flex: 0 0 100%;
		max-width: 100%;
		width: 100%;
	}
	.quantityHolder input {
	    max-width: 100%;
	}
	.component.headings {
		display: none !important;
	}
	.components .component:not(:last-child):after {
		display: none;
	}
	
	
	
	
		
	
	/* Recommended */
	.products.recommended {
	    padding: 70px 0 0 15px;
	}
	
	.recommended .heading .h3 {
    	margin: 0 0 35px 0;
    }
	
	section.recommended > .container > .row.heading > .col-12 {
		padding: 0 15px;
	}
	
	
	
	/*
	****************************************************************************************************
	****************************************************************************************************
		ABOUT
	****************************************************************************************************
	****************************************************************************************************
	*/
	.imageHolder.feature {
	    border-radius: 35px;
	    margin-bottom: 50px;
	}
	
	.intro.about .h2 {
	    max-width: 200px;
	    margin: 0 auto 20px auto;
	}
	
	.about_markets .icon h3 {
	    font-size: 16px;
	}
	
	.iconHolder img {
	    max-width: 65px;
	}
	
	.about_points table tr td:not(:last-child) {
		margin-bottom: 40px;	
	}
	
	.about_points table tr td {
	    padding: 0;
	    width: 100%;
	    display: block;
	}	
	
}


@media screen and (max-width: 450px) {
	
	.topbar {
	    padding: 10px 0;
	}
	
	.topbar .announcement {
		padding: 0 10px !important;
	}
	
	.topbar .announcement p {
	    font-size: 11px;
	}
	
	.coaster .imageHolder {
	    width: 130px;
	    height: 130px;
	}
	
	.coaster .h1 {
	    max-width: 175px;
	}
	
}