/**
* 1.0 - Global Style
* ------------------------------------------------------------------------------
*/
body {
	font-size: 20px;
	font-family: 'Sanchez', serif;
	font-style: normal;
	letter-spacing: 0;
	line-height: 1.2em;
	color: #000000;
	background: #fff;
}

body.no-banner {
	padding-top: 100px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Veneer Clean', sans-serif;
	line-height: 1em;
	margin-top: 15px;
	font-weight: normal;
	font-style: normal;
}

h1,
h2,
h3 {
	margin-bottom: 20px;
	margin-top: 10px;
}

h4,
h5,
h6 {
	margin-bottom: 10px;
}


h1:first-child,
h2:first-child,
h3:first-child {
	margin-top: 0;
}


h1 {
	font-size: 125px;
}

h2 {
	font-size: 87px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 14px;
}

h6 {
	font-size: 12px;
}


p {
	margin-top: 0;
	margin-bottom: 30px;
	line-height: 1.2em;
}

img {
	max-width: 100%;
	height: auto;
	outline: none;
}

video,
audio,
iframe {
	max-width: 100%;
}


a {
	color: #f4b333;
}

a:hover {
	color: #f4b333;
	text-decoration: underline;
}

a:focus {
	text-decoration: none;
	outline: none;
}

input,
textarea,
button,
input:focus {
	outline: none;
}

::-webkit-input-placeholder {
	color: #2d2d2d;
}

::-moz-placeholder {
	color: #2d2d2d;
}

:-ms-input-placeholder {
	color: #2d2d2d;
}

::-ms-input-placeholder {
	color: #2d2d2d;
}

::placeholder {
	color: #2d2d2d;
}

ul,
ol {
	margin-bottom: 30px;
}

.mx-button {
	height: 48.5px;
	min-width: 201.5px;
	position: relative;
	display: inline-block;
	text-align: center;
	line-height: 48.5px;
	font-family: 'Veneer Clean';
	text-transform: uppercase;
	color: #fff;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	font-size: 25px;
	letter-spacing: .05em;
}

.mx-button.button-transparent-black {
	color: #000;
	min-width: 181.5px;
	background-color: transparent;
	border: none;
	outline: none;
}

.mx-button.button-transparent-black:hover {
	color: #fbae00;
}

#feature-prodcuts .mx-button {
	min-width: 181.5px;
}

.mx-button:hover {
	text-decoration: none;
}

.mx-button>svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

.mx-button>svg>path {
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.mx-button:hover>svg>path {
	stroke: #f4b333 !important;
}

.mx-button.hover-orange .text {
	position: relative;
	z-index: 2;
}

.button-transparent-white .text {
	color: #fff !important;
}

.button-transparent-black .text {
	color: #000 !important;
}

.mx-button.hover-orange:hover>svg>path {
	fill: #f4b333;
	fill-opacity: 1;
}

@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}
}

/**
* 2.0 - #header
* ------------------------------------------------------------------------------
*/
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: transparent;
	z-index: 999;
	color: #fff;
	font-family: 'Veneer Clean';
	font-size: 23px;
	-webkit-transition: background-color 1s, color .3s, border .5s;
	-o-transition: background-color 1s, color .3s, border .5s;
	transition: background-color 1s, color .3s, border .5s;
	border-bottom: 1px solid transparent;
}

@media(min-width: 1200px) {
	#header {
		padding-left: 40px;
		padding-right: 40px;
	}
}

#header.sticky {
	background-color: #fff;
	color: #000;
	border-bottom: 1px solid #f2f2f2;
}

body.page-template-template-delivery #header,
body.single-product #header,
body.no-banner #header {
	color: #000;
}

#header img {
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

#header.sticky img,
body.page-template-template-delivery #header img,
body.single-product #header img,
body.no-banner #header img {
	-webkit-filter: invert(100%);
	filter: invert(100%);
}

#header .row {
	height: 100px;
	-webkit-transition: height .6s;
	-o-transition: height .6s;
	transition: height .6s;
}

#header.sticky .row {
	height: 80px;
}

#header .menu-toggle-wrap {
	display: inline-block;
	cursor: pointer;
}

#header .menu-toggle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#header .menu-bars {
	margin-right: 20px;
}

#header .menu-bars .bar {
	width: 39px;
	height: 3px;
	background-color: rgb(255, 255, 255);
	display: block;
	margin-bottom: 5px;
	-webkit-transition: background-color .3s;
	-o-transition: background-color .3s;
	transition: background-color .3s;
}

#header.sticky .menu-bars .bar,
body.page-template-template-delivery #header .menu-bars .bar,
body.single-product #header .menu-bars .bar,
body.no-banner #header .menu-bars .bar {
	background-color: rgb(0, 0, 0);
}

#header .menu-bars .bar.bar-2 {
	margin-left: -7px;
}

#header .menu-bars .bar:last-child {
	margin-bottom: 0;
}

#header .logo {
	text-align: center;
}

#header .logo img {
	width: 320px;
}

#header .cart-admin-search {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

#header .cart-admin-search img {
	height: 26px;
	width: auto;
}

#header .cart-admin-search .search {
	margin-left: 40px;
	cursor: pointer;
}

#header .cart-admin-search .cart {
	margin-right: 13px;
	cursor: pointer;
	position: relative;
}

span.cart-item-count {
	position: absolute;
	width: 20px;
	height: 20px;
	background-color: orange;
	font-size: 12px;
	text-align: center;
	line-height: 20px;
	border-radius: 50%;
	right: 100%;
	margin-right: -10px;
	margin-top: -15px;
	bottom: 100%;
	color: #fff;
	font-family: 'Sanchez', serif;
	font-weight: bold;
}

#header .cart-admin-search .admin a {
	text-decoration: none;
	color: #fff;
	-webkit-transition: color .3s;
	-o-transition: color .3s;
	transition: color .3s;
}

#header.sticky .cart-admin-search .admin a,
body.page-template-template-delivery #header .cart-admin-search .admin a,
body.single-product #header .cart-admin-search .admin a,
body.no-banner #header .cart-admin-search .admin a {
	color: #000;
}

#header .cart-admin-search .cart img,
#header .cart-admin-search .admin img {
	margin-right: 7px;
}

#header .free-shipping-notice {
	position: absolute;
	width: 100%;
	top: 100%;
	left: 0;
	background: #fdbd3e;
	font-size: 16px;
	text-align: center;
	font-family: 'Sanchez', serif;
	font-style: normal;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: all .3s;
	color: #000 !important;
}

#header.sticky .free-shipping-notice {
	opacity: 1;
	transition-delay: .5s;
}

#header .free-shipping-notice p {
	margin-bottom: 0;
	font-size: 16px;
	letter-spacing: .025em;

}

/**
* 3.0 - #main-menu
* ------------------------------------------------------------------------------
*/
#main-menu {
	position: fixed;
	top: -100%;
	left: 0;
	z-index: 999991;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100%;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

body.no-scroll {
	overflow: hidden;
}

#main-menu.active {
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	top: 0;
}

#main-menu .menu-side {
	width: 34%;
	background-color: #402021;
	color: #fff;
}

#main-menu .menu-image-side {
	width: 67%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#main-menu .close-icon {
	position: absolute;
	top: 40px;
	left: 50px;
	cursor: pointer;
}

#main-menu .close-icon img {
	width: 29px;
	height: 29px;
}

#main-menu .logo-in-menu {
	display: inline-block;
	position: absolute;
	top: 34px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}

#main-menu .logo-in-menu img {
	max-width: 320px;
}

#main-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#main-menu #nav ul {
	font-size: 60px;
	font-family: 'Veneer Clean', sans-serif;
	line-height: 1.2em;
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
	width: 480px;
}

@media(max-width: 1600px) {
	#main-menu #nav ul {
		font-size: 40px;
		width: 300px;
	}
}

#main-menu #nav ul li a {
	display: inline-block;
	white-space: nowrap;
	color: #fff;
	-webkit-transition: color .3s;
	-o-transition: color .3s;
	transition: color .3s;
}

#main-menu #nav ul li a:hover,
#main-menu #nav ul li.current-menu-item a {
	color: #fdbd3e;
	text-decoration: none;
}

#main-menu .menu-side {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

#main-menu .social-shire {
	margin-top: 120px;
	width: 480px;
}

@media(max-width: 1600px) {
	#main-menu .social-shire {
		width: 300px;
	}
}

#main-menu .social-shire h3 {
	font-family: 'Thirsty Rough';
	font-weight: 600;
	color: #d8d2c5;
	-webkit-transform: rotate(-4deg);
	-ms-transform: rotate(-4deg);
	transform: rotate(-4deg);
	-webkit-transform-origin: 0;
	-ms-transform-origin: 0;
	transform-origin: 0;
}

#main-menu .social-shire li {
	display: inline-block;
	margin-right: 20px;
}

#main-menu .social-shire a {
	display: inline-block;
	width: 45px;
	height: 45px;
	background-color: #fff;
	font-size: 30px;
	text-align: center;
	line-height: 45px;
	color: #402021;
	-webkit-transition: color .3s;
	-o-transition: color .3s;
	transition: color .3s;
}

#main-menu .social-shire a:hover {
	color: #f4b333;
}

#main-menu #nav,
#main-menu .social-shire {
	opacity: 0;
}

#main-menu.active #nav,
#main-menu.active .social-shire {
	opacity: 1;
	-webkit-transition: all .6s;
	-o-transition: all .6s;
	transition: all .6s;
	-webkit-transition-delay: .5s;
	-o-transition-delay: .5s;
	transition-delay: .5s;
}

#main-menu .cart-admin-search-mobile {
	display: none;
}

.cart-body-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .7);
	z-index: 99999;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.cart-body-overlay.active {
	visibility: visible;
	opacity: 1;
}

/**
* 4.0 - #search-form
* ------------------------------------------------------------------------------
*/
#search-form {
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.9);
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}

#search-form .search-form-wrap {
	display: block;
	width: 100%;
}

#search-form.active {
	visibility: visible;
	opacity: 1;
}

#search-form form {
	position: relative;
}

#search-form input[type="text"] {
	border-radius: 13px;
	background-color: rgb(255, 255, 255);
	-webkit-box-shadow: 0px 17px 26px 0px rgba(43, 9, 0, 0.3);
	box-shadow: 0px 17px 26px 0px rgba(43, 9, 0, 0.3);
	width: 100%;
	height: 64px;
	border: none;
	outline: none;
	padding-left: 22px;
	padding-right: 22px;
}

#search-form input[type="submit"] {
	height: 64px;
	width: 64px;
	background-color: transparent;
	border: none;
	background-image: url(../images/icon-search-gray.png);
	background-size: 25px auto;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	font-size: 25px;
}

#search-form input[type="text"]::-webkit-input-placeholder {
	color: #a6a6a6;
}

#search-form input[type="text"]::-moz-placeholder {
	color: #a6a6a6;
}

#search-form input[type="text"]:-ms-input-placeholder {
	color: #a6a6a6;
}

#search-form input[type="text"]::-ms-input-placeholder {
	color: #a6a6a6;
}

#search-form input[type="text"]::placeholder {
	color: #a6a6a6;
}

#search-form span.seach-close {
	width: 50px;
	height: 50px;
	background: transparent;
	position: absolute;
	top: 20px;
	right: 20px;
	background-size: 30px 30px;
	background-image: url('../images/icon-close.png');
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}


/**
* 5.0 - #min-cart-wrap
* ------------------------------------------------------------------------------
*/

#min-cart-wrap {
	position: fixed;
	width: 400px;
	height: 100%;
	background-color: #fff;
	color: #000;
	font-size: 18px;
	z-index: 99999;
	top: 0;
	right: 0;
	left: auto;
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	font-family: 'Veneer Clean', sans-serif;
}

body.admin-bar #min-cart-wrap {
	top: 32px;
}

#min-cart-wrap .remove {
	font-family: 'Sanchez';
}

#min-cart-wrap .woocommerce-mini-cart__empty-message {
	padding-left: 20px;
	padding-right: 20px;
	text-align: center;
	margin-top: 20px;
}

#min-cart-wrap.active {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

#min-cart-wrap .mini-cart-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #fff;
	border-bottom: 1px solid #ddd;
	padding: 20px 15px;
}

#min-cart-wrap .mini-cart-header h3 {
	margin-bottom: 0;
}

#min-cart-wrap .mini-cart-header img {
	-webkit-filter: invert(100%);
	filter: invert(100%);
	width: 20px;
	height: auto;
	cursor: pointer;
}

#min-cart-wrap a {
	font-size: 18px;
	color: #000;
}

#min-cart-wrap ul {
	padding: 0;
	margin: 0;
	max-height: calc(100vh - 250px);
	overflow-y: scroll;
}

#min-cart-wrap ul.cart_list li {
	list-style: none;
	padding: 10px 5px;
	margin-bottom: 0;
	border-bottom: 1px solid #f1f1f1;
	padding: 10px 15px 10px 40px;
	position: relative;
	clear: both;
}

#min-cart-wrap .quantity {
	display: block;
	font-size: .8em;
}

#min-cart-wrap .attachment-woocommerce_thumbnail {
	width: 50px;
	height: auto;
	margin-left: 10px;
	float: right;
}

#min-cart-wrap .remove_from_cart_button {
	position: absolute;
	top: 50%;
	left: 15px;
	width: 16px;
	height: 16px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	display: flex;
	background-color: #f4b333;
	color: #fff;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

#min-cart-wrap .remove_from_cart_button:hover {
	text-decoration: none;
}

#min-cart-wrap .woocommerce-mini-cart__total {
	text-align: center;
	padding: 15px;
	text-transform: uppercase;
}

#min-cart-wrap .woocommerce-mini-cart__buttons {
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 0;
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;
	z-index: 11;
	background-color: #fff;
}

#min-cart-wrap .woocommerce-mini-cart__buttons .button {
	display: block;
	text-align: center;
	background-color: #f2f2f2;
	padding: 10px 15px;
}

#min-cart-wrap .woocommerce-mini-cart__buttons .button:hover {
	text-decoration: none;
}


#min-cart-wrap .woocommerce-mini-cart__buttons .button.checkout {
	background-color: #f4b333;
	margin-top: 15px;
}


.add-to-cart-flash {
	display: inline-block;
	color: #fff;
	position: fixed;
	top: 50px;
	right: 50px;
	background-color: green;
	z-index: 99999;
	border-radius: 3px;
	font-size: 16px;
	padding: 12px 16px;
	letter-spacing: .04em;
	opacity: 0;
	visibility: hidden;
	transition: all 1s;
}

.add-to-cart-flash.active {
	opacity: 1;
	visibility: visible;
}

/**
* 6.0 - #home-hero-slider
* ------------------------------------------------------------------------------
*/
#home-hero-slider .single-slide {
	height: 100vh;
	max-height: 1017px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

#home-hero-slider .single-slide h1 {
	font-size: 110px;
	margin-bottom: 20px;
}

#home-hero-slider .single-slide p {
	font-size: 20px;
	margin-bottom: 45px;
}

@media(min-width: 1600px) {
	#home-hero-slider .single-slide h1 {
		font-size: 175px;
	}

	#home-hero-slider .single-slide p {
		font-size: 25px;
	}
}

#home-hero-slider .owl-dots {
	position: absolute;
	left: auto;
	bottom: 50px;
	right: 50%;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}

#home-hero-slider .owl-dots .owl-dot {
	width: 18px;
	height: 18px;
	border: 1px solid transparent;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	margin-right: 7px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

#home-hero-slider .owl-dots .owl-dot:hover,
#home-hero-slider .owl-dots .owl-dot.active {
	border-color: #fff;
}

#home-hero-slider .owl-dots .owl-dot:last-child {
	margin-right: 0;
}

#home-hero-slider .owl-dots .owl-dot span {
	text-align: center;
	line-height: 18px;
	display: inline-block;
	border-radius: 50%;
	background-color: rgb(255, 255, 255);
	width: 10px;
	height: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

/**
* 6.0 - #menu-gift-delevary
* ------------------------------------------------------------------------------
*/
#menu-gift-delevary {
	padding: 80px 0 140px;
	text-align: center;
}

#menu-gift-delevary header h3 {
	font-family: 'Thirsty Rough', sans-serif;
	font-weight: 600;
	color: #f4b333;
	margin-bottom: 25px;
	font-size: 80px;
}

#menu-gift-delevary header h2 {
	color: #402021;
	margin-bottom: 100px;
}

#menu-gift-delevary .signle-box {
	text-decoration: none;
	font-size: 30px;
	font-family: 'Veneer Clean';
	font-weight: 300;
	color: #000;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

#menu-gift-delevary .signle-box:hover {
	color: #f4b333;
}

#menu-gift-delevary .signle-box img {
	width: 100%;
	display: block;
	margin-bottom: 30px;
}

@media (min-width: 1200px) {
	#menu-gift-delevary .container {
		max-width: 1570px;
	}
}




/**
* 7.0 - #meet-max-video
* ------------------------------------------------------------------------------
*/
#meet-max-video {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#meet-max-video .left-video,
#meet-max-video .right-video {
	width: 50%;
}

#meet-max-video .left-video img {
	width: 100%;
}

#meet-max-video .right-video {
	background-color: #402021;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-left: 10%;
}

#meet-max-video h3 {
	font-size: 30px;
	font-weight: 600;
	font-family: 'Thirsty Rough';
	color: #fff;
	font-size: 30px;
}

#meet-max-video h2 {
	color: #fdbd3e;
	font-size: 120px;
}

@media(min-width: 1600px) {
	#meet-max-video h3 {
		font-size: 40px
	}

	#meet-max-video h2 {
		font-size: 175px;
	}
}

#meet-max-video .left-video a {
	display: block;
	position: relative;
}

#meet-max-video .left-video a:before {
	content: '';
	border-radius: 50%;
	background-color: rgba(0, 0, 0, .5);
	width: 113px;
	height: 113px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#meet-max-video .left-video a:hover {
	background-color: rgba(0, 0, 0, .5);
}

#meet-max-video .left-video svg {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#meet-max-video .left-video a svg path {
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}


/**
* 8.0 - #max-reviews
* ------------------------------------------------------------------------------
*/
#max-reviews {
	padding: 80px 0 100px;
	background-color: #002539;
	color: #fff;
}

#max-reviews header h3 {
	color: #d8bedc;
	font-family: 'Thirsty Rough';
	font-weight: 600;
}

#max-reviews header h2 {
	font-size: 87.5px;
	margin-bottom: 60px;
}

#max-reviews blockquote {
	position: relative;
	height: 100%;
	padding-bottom: 20px;
}

#max-reviews blockquote h3 {
	font-size: 30px;
	margin-bottom: 10px;
}

#max-reviews blockquote h4 {
	color: #92b6ba;
	font-size: 30px;
	margin-top: 0;
	margin-bottom: 20px;
}

#max-reviews blockquote .ratings {
	position: absolute;
	bottom: 0;
	left: 0;
}

#max-reviews blockquote .ratings img {
	width: 230px;
}

#max-reviews .reviews-mobile {
	display: none;
}

/**
* 9.0 - #feature-prodcuts
* ------------------------------------------------------------------------------
*/
#feature-prodcuts {
	padding: 70px 0;
	background-color: #f8f8f8;
}

#feature-prodcuts.single-relate-products {
	background-color: #fff;
}

#feature-prodcuts header h3 {
	font-size: 40px;
	color: #d8bedc;
	font-family: 'Thirsty Rough';
	font-weight: 600;
	margin-bottom: 15px;
}

#feature-prodcuts header h2 {
	font-size: 87.5px;
	color: #402021;
	margin-top: 0;
}

#feature-prodcuts .feature-prodcut-slider .related h2 {
	display: none;
}

@media(min-width: 1200px) {
	#feature-prodcuts header h2 {
		margin-bottom: 30px;
	}

	#feature-prodcuts .feature-prodcut-slider .container {
		max-width: 1570px;
	}
}

ul.products {
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.products li.product {
	padding: 20px !important;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	height: 100%;
	margin: 0;

}

#feature-prodcuts ul.products li.product {
	margin-bottom: 0 !important;
}

ul.products li.product:hover {
	background-color: rgb(255, 255, 255);
	-webkit-box-shadow: 0px 8px 29px 0px rgba(43, 9, 0, 0.1);
	box-shadow: 0px 8px 29px 0px rgba(43, 9, 0, 0.1);
}

ul.products li.product a {
	text-decoration: none;
	color: #000;
}

ul.products li.product h2.woocommerce-loop-product__title {
	font-size: 25px !important;
	color: #000000 !important;
	padding: 0 !important;
	padding-left: 10px !important;
	margin-top: 18px !important;
	margin-bottom: 0 !important;
}

@media(min-width: 1600px) {
	ul.products li.product h2.woocommerce-loop-product__title {
		font-size: 30px;
	}
}


ul.products li.product h4.product-slogan {
	font-size: 15px;
	color: #939393;
	font-family: 'Sanchez', serif;
	padding-left: 10px;
	margin-top: 5px;
}

ul.products li.product .cart-price {
	font-size: 22px;
	font-family: 'Veneer Clean', sans-serif;
	font-weight: 300;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 25px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 10px;
}

.woocommerce ul.products li.product .price {
	color: #000;
	font-size: 22px;
	font-family: 'Veneer Clean', sans-serif !important;
	font-weight: 300 !important;
	margin: 0;
	padding: 0;
	border-radius: 0 !important;
	padding: 0 !important;
	margin: 0;
}

@media(min-width: 1600px) {
	ul.products li.product .cart-price {
		font-size: 30px;
	}
}

.woocommerce ul.products li.product .button {
	margin: 0;
}

ul.products li.product .button,
ul.products li.product .added_to_cart,
.woocommerce div.product form.cart .button {
	background-color: #d8d2c5;
	font-weight: 300 !important;
	border-radius: 0 !important;
	height: 48px;
	max-width: 100%;
	width: 200px;
	color: #fff;
	text-align: center;
	line-height: 48px;
	letter-spacing: .05em;
	font-size: 18px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	font-family: 'Veneer Clean', sans-serif !important;
	padding: 0 !important;
}

.woocommerce div.product form.cart .button {
	background-color: #f4b333;
	padding-left: 15px !important;
}

ul.products li.product .button.added {
	display: none;
}

@media(min-width: 1600px) {

	ul.products li.product .button,
	.woocommerce div.product form.cart .button {
		font-size: 22px;
		width: 260px;
	}
}

ul.products li.product .button:hover,
ul.products li.product .added_to_cart,
ul.products li.product .button.loading,
.woocommerce div.product form.cart .button:hover {
	background-color: #f4b333;
}

.woocommerce a.button.loading::after {
	color: #fff;
	margin: 0;
	padding: 0;
	margin-top: -12px;
	margin-right: -15px;
}

.woocommerce a.button.loading {
	opacity: 1;
}

ul.products li.product .decrement,
ul.products li.product .increment,
.woocommerce div.product form.cart .button .increment,
.woocommerce div.product form.cart .button .decrement {
	width: 10px;
	display: inline-block;
	cursor: pointer;
	width: 25px;
}

ul.products li.product span.item-counter {
	padding-left: 7px;
}

#feature-prodcuts .shop-button {
	margin-top: 60px;
}

#feature-prodcuts .owl-nav .owl-prev,
#feature-prodcuts .owl-nav .owl-next {
	width: 40px;
	height: 40px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	display: inline-block;
	position: absolute;
	bottom: 50%;
	z-index: 999;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

#feature-prodcuts .owl-nav .owl-prev {
	background-image: url(../images/icon-nav-left.png);
	left: -10px;
}

#feature-prodcuts .owl-nav .owl-next {
	background-image: url(../images/icon-nav-right.png);
	right: -10px;
}

#feature-prodcuts {
	padding-left: 10px;
	padding-right: 10px;
}

@media(min-width: 1400px) {
	#feature-prodcuts {
		padding-left: 60px;
		padding-right: 60px;
	}

	#feature-prodcuts .owl-nav .owl-prev {
		background-image: url(../images/icon-nav-left.png);
		left: -60px;
	}

	#feature-prodcuts .owl-nav .owl-next {
		background-image: url(../images/icon-nav-right.png);
		right: -60px;
	}
}

#feature-prodcuts ul li {
	width: 100% !important;
}


/**
* 9.0 - #social-max
* ------------------------------------------------------------------------------
*/
#social-max {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: #fff;
}

#social-max .social-links,
#social-max .social-images {
	width: 50%;
}

#social-max .social-links {
	background-color: #000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#social-max .social-link-wrap {
	width: 585px;
}

#social-max .social-images {
	background-color: #451e20;
}

#social-max .social-link-wrap h2 {
	font-size: 87.5;
	margin-bottom: 0;
}

#social-max .social-link-wrap h3 {
	font-size: 45.04px;
	font-family: 'Thirsty Rough', sans-serif;
	font-weight: 600;
}

#social-max .social-link-wrap ul {
	list-style: none;
	padding: 0;
	margin-left: 0;
	margin-top: 30px;
}

#social-max .social-link-wrap ul li {
	margin-right: 20px;
	display: inline-block;
}

#social-max .social-link-wrap ul li a {
	width: 45px;
	height: 45px;
	line-height: 45px;
	color: #000;
	background-color: #fbae00;
	font-size: 34px;
	display: block;
	text-align: center;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

#social-max .social-link-wrap ul li a:hover {
	color: #402021;
	background-color: #dda31f;
}

#social-max .social-images {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

#social-max .social-images img {
	display: block;
	width: 33.333%;
	height: auto;
}

#social-max p {
	padding-right: 50px;
}

/**
* 10.0 - #max-recent-evetns
* ------------------------------------------------------------------------------
*/
#max-recent-evetns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#max-recent-evetns .left-event-img,
#max-recent-evetns .max-right-event-content {
	width: 50%;
}

#max-recent-evetns .max-right-event-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#max-recent-evetns .left-event-img img {
	width: 100%;
}


#max-recent-evetns .event-content-wrap {
	max-width: 600px;
}

#max-recent-evetns .max-right-event-content {
	padding-left: 50px;
}

#max-recent-evetns .max-right-event-content h2 {
	font-size: 60px;
	margin-bottom: 25px;
}

#max-recent-evetns .max-right-event-content h3 {
	font-size: 30px;
}

#max-recent-evetns .max-right-event-content p a {
	text-decoration: underline;
	color: #000;
}

#max-recent-evetns .max-right-event-content p a:hover {
	color: #f4b333;
}

#max-recent-evetns .max-right-event-content .view-all {
	margin-top: 30px;
}

@media(min-width: 1600px) {
	#max-recent-evetns .max-right-event-content h2 {
		margin-bottom: 60px;
		font-size: 87.5px;
	}

	#max-recent-evetns .max-right-event-content .view-all {
		margin-top: 60px;
	}

	#max-recent-evetns .max-right-event-content {
		padding-left: 70px;
	}
}


/**
* 11.0 - #max-recent-evetns
* ------------------------------------------------------------------------------
*/
#news-letter {
	background-color: #000;
	padding: 60px 0 45px;
	color: #fff;
	font-size: 18px;
}

#news-letter h2 {
	font-size: 45px;
	font-family: 'Thirsty Rough';
	font-weight: 600;
	margin-bottom: 0;
}

#news-letter header p {
	font-size: 17.5px;
	text-align: right;
	margin-bottom: 0;
}

#news-letter form .mc4wp-form-fields {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 34px;
}

#news-letter form .mc4wp-response {
	margin-top: 20px;
	text-align: center;
	font-size: 14px;
	color: #f4b333;
}

#news-letter form input[type="text"],
#news-letter form input[type="email"] {
	background-color: rgb(64, 32, 33);
	height: 60px;
	color: #fff;
	border: none;
	outline: none;
}

#news-letter form input[type="text"] {
	width: 429px;
}


#news-letter form input[type="text"]::placeholder,
#news-letter form input[type="email"]::placeholder {
	color: #fff;
}

#news-letter form input[type="email"]:focus,
#news-letter form input[type="text"]:focus {
	background-color: #fff;
	height: 60px;
	color: #000;
	border: none;
	outline: none;
}

#news-letter form input[type="email"] {
	width: 572px;
}

#news-letter form input[type="text"],
#news-letter form input[type="email"] {
	padding-left: 20px;
	padding-right: 20px;
}

#news-letter form input[type="submit"] {
	background-image: url(../images/newsletter-submit-bg.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	width: 163px;
	height: 60px;
	border: none;
	background-color: transparent;
	font-size: 28px;
	text-align: center;
	font-family: 'Veneer Clean';
	letter-spacing: .05em;
	cursor: pointer;
	transition: all .3s;

}

#news-letter form input[type="submit"]:hover {
	color: #fff;
}


/**
* 12.0 - #max-recent-evetns
* ------------------------------------------------------------------------------
*/

#footer .main-footer {
	background-color: #002539;
	color: #fff;
	padding: 60px 0 100px;
}

#footer .main-footer ul {
	list-style: none;
	margin-bottom: 0;
	padding: 0;
}

#footer .main-footer ul li {
	margin-bottom: 4px;
}

#footer .main-footer .footer-menu a {
	color: #fff;
	font-size: 20px;
	font-family: 'Veneer Clean';
}

#footer .main-footer .footer-menu a:hover {
	text-decoration: none;
	color: #f4b333;
}

#footer .fooer-logo img {
	width: 300px;
}

#footer .footer-social-link {
	text-align: right;
}

#footer .footer-social-link li {
	display: inline-block;
	margin-right: 10px;
}

#footer .footer-social-link li a {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	font-size: 20px;
	color: #002539;
	background-color: #fff;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

#footer .footer-social-link li a:hover {
	background-color: #f4b333;
}

#footer .top-footer {
	padding-bottom: 55px;
	border-bottom: 2px solid #505050;
}

#footer .bottom-footer {
	padding-top: 70px;
}

#footer .bottom-footer h3 {
	font-size: 18px;
	margin-bottom: 0;
	margin-right: 30px;
}

#footer .accepted-cart,
#footer .download-app,
#footer .supporters {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#footer .download-app {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

#footer .supporters {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

#footer .accepted-cart li {
	display: inline-block;
	margin-right: 8px;
}

#footer .accepted-cart li:last-child {
	margin-right: 0;
}

#footer .accepted-cart img {
	width: 55px;
	display: inline-block;
}

#footer .download-app img {
	width: 124px;
}

#footer .supporters img {
	width: 180px;
}

#footer .copyright {
	background-color: #000000;
	color: #fff;
	font-size: 16px;
	padding: 26px 0;
}

#footer .copyright p {
	margin-bottom: 0;
	font-family: 'Veneer Clean', sans-serif;
}

#footer .copyright p a {
	color: #000;
}

#footer .delevary-partner {
	text-align: center;
	margin-bottom: 30px;
	border-bottom: 1px solid #234659;
	padding-bottom: 30px;
	display: none;
}

#footer .delevary-partner ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#footer .delevary-partner h3 {
	margin-bottom: 15px;
}

#footer .delevary-partner ul li {
	margin-right: 18px;
}

#footer .delevary-partner ul li:last-child {
	margin-right: 0;
}

/**
* 13.0 - #page-banner
* ------------------------------------------------------------------------------
*/
#page-banner {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-color: #402021;
}

#page-banner .container {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-height: 1050px;
}

#page-banner:not(.blog-banner) .container {
	height: 100vh;
}

#page-banner h2 {
	font-size: 40px;
	color: #f4b333;
	font-family: 'Thirsty Rough';
	font-weight: bold;
}

#page-banner h1 {
	font-size: 130px;
	color: #fff;
	line-height: 1em;
}

#page-banner .banner-content {
	padding-top: 50px;
	width: 100%;
}

#page-banner .banner-content> :last-child {
	margin-bottom: 0;
}

#page-banner.location-page-banner {
	background-position: center bottom;
	position: relative;
}

#page-banner.location-page-banner .container {
	text-align: center;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	height: 75vh;
}

#page-banner.location-page-banner .banner-content {
	padding-bottom: 30px;
}

#page-banner.location-page-banner .container h1 {
	color: #402021;
}

#page-banner.location-page-banner .banner-images .banner-location {
	position: absolute;
	width: 250px;
	bottom: -60px;
	left: calc(50% - 610px);
}

#page-banner.location-page-banner .banner-images .banner-car {
	position: absolute;
	width: 350px;
	bottom: -40px;
	right: calc(50% - 610px);
}

@media(min-width: 1600px) {
	#page-banner.location-page-banner .banner-content {
		padding-bottom: 100px;
	}
}

@media(min-width: 2400px) {
	#page-banner.location-page-banner .banner-content {
		padding-bottom: 17vh;
	}
}

/**
* 14.0 - #meaning-chocolate
* ------------------------------------------------------------------------------
*/
#meaning-chocolate {
	padding: 120px 0;
}

#meaning-chocolate h3 {
	font-size: 40px;
	font-family: 'Thirsty Rough', sans-serif;
	color: #f4b333;
	margin-bottom: 40px;
}

#meaning-chocolate h2 {
	font-size: 100px;
	color: #402021;
	margin-bottom: 30px;
}

#meaning-chocolate .mx-button {
	margin-top: 30px;
}

@media(min-width: 1200px) {
	#meaning-chocolate .container {
		max-width: 1400px;
	}
}

/**
* 15.0 - #about-video
* ------------------------------------------------------------------------------
*/
@media(min-width: 1200px) {
	#about-video .container {
		max-width: 1600px;
	}
}


#about-video a {
	display: block;
	position: relative;
}

#about-video a:before {
	content: '';
	border-radius: 50%;
	background-color: rgba(0, 0, 0, .5);
	width: 113px;
	height: 113px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

#about-video a:hover:before {
	background-color: rgba(0, 0, 0, .7);
}

#about-video svg {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#about-video a svg path {
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}


/**
* 15.0 - #about-chocolate
* ------------------------------------------------------------------------------
*/
#about-chocolate {
	padding: 120px 0;
}

@media(min-width: 1200px) {
	#about-chocolate .container {
		max-width: 1600px;
	}
}

#about-chocolate .right-image {
	text-align: right;
}

@media(min-width: 1600px) {
	#about-chocolate .left-content {
		padding-left: 60px;
	}

	#about-chocolate .mx-button {
		margin-top: 20px;
	}
}

#about-chocolate h2 {
	font-size: 100px;
	color: #f4b333;
	margin-bottom: 30px;
}

#about-chocolate .left-content .mx-button>svg {
	transform: scale(1.15, 1);
	transform-origin: left;
}

#about-chocolate .left-content .mx-button.button-transparent-black {
	min-width: 210px;
}

/**
* 16.0 - #delevary-informatino
* ------------------------------------------------------------------------------
*/
#delevary-informatino {
	padding: 80px 0;
	text-align: center;
}

#delevary-informatino h2 {
	font-size: 100px;
	color: #402021;
	margin-bottom: 30px;
}

#delevary-informatino .information-wrap {
	display: inline-block;
	text-align: left;
}

#delevary-informatino .single-process {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 23px;
}

#delevary-informatino .single-process p {
	margin-bottom: 0;
}

#delevary-informatino .single-process .count {
	margin-right: 35px;
	position: relative;
}

#delevary-informatino .single-process .count span {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-size: 23px;
	font-family: 'Veneer Clean', sans-serif;
}

#delevary-informatino .mx-button {
	margin-top: 25px;
}

#delevary-informatino .app-information {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 140px;
}

#delevary-informatino .app-information h3 {
	color: #402021;
	font-size: 40px;
	margin-bottom: 0;
	margin-right: 30px;
}

#delevary-informatino .app-information ul {
	list-style: none;
	margin-bottom: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#delevary-informatino .app-information ul li:first-child {
	margin-right: 30px;
}

#delevary-informatino .app-information img {
	width: 270px;
}

#delivary-partners {
	background: #002539;
	padding: 70px 100px;
	color: #fff;
}

#delivary-partners ul {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
}

#delivary-partners .delivary-partners-list ul li {
	margin: 0 10px
}

/**
* 15.0 - #faq-sections
* ------------------------------------------------------------------------------
*/
#faq-section {
	padding: 85px 0 120px;
}

@media(min-width: 1200px) {
	#faq-section .containe {
		max-width: 1600px;
	}
}

#faq-section .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

@media(min-width: 1200px) {
	#faq-section .container {
		max-width: 100%;
	}
}

@media(min-width: 1400px) {
	#faq-section .container {
		padding-left: 50px;
		padding-right: 50px;
	}
}

#faq-section .faq-sidebar {
	width: 365px;
	background-color: #f8f8f8;
}

#faq-section .faq-areas {
	width: calc(100% - 365px);
	padding-left: 60px;
}

@media(min-width: 1600px) {
	#faq-section .faq-areas {
		padding-left: 90px;
	}
}

#faq-section .faq-sidebar ul {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid #e1e1e1;
}

#faq-section .faq-sidebar ul li a {
	background-repeat: no-repeat;
	background-position: top left;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: block;
	border-bottom: 1px solid #e1e1e1;
	border-left: 1px solid #e1e1e1;
	border-right: 1px solid #e1e1e1;
	padding: 30px 26px 30px 16px;
	font-size: 25px;
	color: #000;
	font-family: 'Veneer Clean', sans-serif;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
	background-position: center right 17px;
}

#faq-section .faq-sidebar ul li a:hover,
#faq-section .faq-sidebar ul li.active a {
	text-decoration: none;
	background-color: #f4b333;
	border-color: #f4b333;
	background-image: url(../images/icon-check.png);
	background-repeat: no-repeat;
	background-size: 21px auto;
}

#faq-section .faq-areas .faq-set h2 {
	display: none;
}

#faq-section .faq-areas .faq-set h3 {
	font-size: 25px;
	margin-top: 0;
	margin-bottom: 0;
	position: relative;
}

#faq-section .faq-areas .faq-set h3:before {
	content: '';
	width: 16px;
	height: 16px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	display: inline-block;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-image: url(../images/icon-angle-down.png);
	background-position: center;
	transition: all .2s;
}

#faq-section .faq-areas .faq-set .opened h3:before {
	transform: rotate(-180deg);
}



#faq-section .faq-areas .single-qa {
	/*border-bottom: 1px solid #000000;*/
	background-image: url(../images/question-border-bottom.png);
	background-repeat: repeat-x;
	background-position: bottom left;
	background-size: 1183px auto;
	padding-bottom: 28px;
	margin-bottom: 30px;
	padding-left: 20px;
	padding-right: 20px;
}

#faq-section .faq-areas .faq-set .ans {
	padding-top: 30px;
	padding-bottom: 20px;
}

#faq-section .faq-areas .faq-set .ans> :last-child {
	margin-bottom: 0;
}

#faq-section .faq-areas .single-qa {
	cursor: pointer;
}

#faq-section .faq-areas .single-qa .ans {
	display: none;
}

#faq-section .faq-areas .faq-set {
	display: none;
}

#faq-section .faq-areas .faq-set:first-child {
	display: block;
}


/**
* 16.0 - #event-banner-slider
* ------------------------------------------------------------------------------
*/

#event-banner-slider {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-size: cover;
	background-position: center;
	height: 80vh;
	max-height: 850px;
	background-repeat: no-repeat;
	font-size: 25px;
	color: #fff;
}

#event-banner-slider h1 {
	font-size: 70px;
	color: #fff;
	line-height: 1em;
}

#event-banner-slider .event-time,
#event-banner-slider .time-seats {
	display: block;
}

#event-banner-slider .event-time {
	margin-bottom: 20px;
}

#event-banner-slider .time-seats {
	margin-top: 30px;
}

#event-banner-slider .mx-button {
	margin-top: 30px;
}

@media(min-width: 1600px) {
	#event-banner-slider h1 {
		font-size: 100px;
	}

	#event-banner-slider .mx-button {
		margin-top: 50px;
	}

	#event-banner-slider .event-time {
		margin-bottom: 30px;
	}

	#event-banner-slider .mx-button {
		margin-top: 70px;
	}
}

@media(min-width: 1900px) {
	#event-banner-slider h1 {
		font-size: 130px;
	}
}


#event-banner-slider .owl-carousel .owl-nav .owl-next,
#event-banner-slider .owl-carousel .owl-nav .owl-prev {
	position: absolute;
	display: inline-block;
	width: 42px;
	height: 42px;
	cursor: pointer;
	top: 50%;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
}

#event-banner-slider .owl-carousel .owl-nav .owl-next:hover,
#event-banner-slider .owl-carousel .owl-nav .owl-prev:hover {
	-webkit-filter: drop-shadow(4px 4px 6px #fff);
	filter: drop-shadow(4px 4px 6px #fff);
}

#event-banner-slider .owl-carousel .owl-nav .owl-next {
	right: -55px;
	background-image: url(../images/icon-event-slide-right.png);
}

#event-banner-slider .owl-carousel .owl-nav .owl-prev {
	left: -55px;
	background-image: url(../images/icon-event-slide-left.png);
}

#event-banner-slider .single-event-slide {
	padding-left: 50px;
}

@media(min-width: 1400px) {
	#event-banner-slider .single-event-slide {
		padding-left: 0;
	}

	#event-banner-slider .owl-carousel .owl-nav .owl-next {
		right: -100px;
	}

	#event-banner-slider .owl-carousel .owl-nav .owl-prev {
		left: -100px;
	}
}

@media(min-width: 1400px) {
	#event-banner-slider .owl-carousel .owl-nav .owl-next {
		right: -120px;
	}

	#event-banner-slider .owl-carousel .owl-nav .owl-prev {
		left: -120px;
	}
}

#event-banner-slider .owl-dots {
	position: absolute;
	left: auto;
	right: 20px;
	bottom: 15px;
}

#event-banner-slider .owl-dots .owl-dot {
	width: 18px;
	height: 18px;
	border: 1px solid transparent;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	margin-right: 7px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

#event-banner-slider .owl-dots .owl-dot:hover,
#event-banner-slider .owl-dots .owl-dot.active {
	border-color: #fff;
}

#event-banner-slider .owl-dots .owl-dot:last-child {
	margin-right: 0;
}

#event-banner-slider .owl-dots .owl-dot span {
	text-align: center;
	line-height: 18px;
	display: inline-block;
	border-radius: 50%;
	background-color: rgb(255, 255, 255);
	width: 10px;
	height: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}


/**
* 16.0 - .mx-events-blogs
* ------------------------------------------------------------------------------
*/

.mx-events-blogs {
	padding: 100px 0 50px;
}


@media(min-width: 1200px) {
	.mx-events-blogs .container {
		max-width: 1550px;
	}
}


.mx-events-blogs header {
	font-size: 87.5px;
	color: #402021;
	text-align: center;
	margin-bottom: 60px;
}

.mx-events-blogs .single-events {
	margin-bottom: 50px;
}

.mx-events-blogs .single-events .event-thumb {
	position: relative;
}

.mx-events-blogs .single-events .event-thumb:before {
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #3a0200;
	opacity: 0;
	position: absolute;
	display: block;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}

.mx-events-blogs .single-events .event-readmore {
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
	font-size: 30px;
	color: #f4b333;
	opacity: 0;
	-webkit-transition: all .6s;
	-o-transition: all .6s;
	transition: all .6s;
	padding-top: 30px;
}


.mx-events-blogs .single-events .event-thumb:hover .event-readmore {
	padding-top: 0;
}

.mx-events-blogs .single-events .event-readmore .text {
	display: block;
	white-space: nowrap;
	font-family: 'Veneer Clean';
	margin-top: 30px;
}

.mx-events-blogs .single-events .event-readmore img {
	width: 40px;
}

.mx-events-blogs .single-events:hover .event-thumb:before,
.mx-events-blogs .single-events:hover .event-readmore {
	opacity: 1 !important;
}

.mx-events-blogs .single-events img.event-image {
	width: 100%;
	display: block;
	margin-bottom: 23px;
}

.mx-events-blogs .single-events,
.mx-events-blogs .single-events a:hover {
	text-decoration: none;
}

.mx-events-blogs .single-events h3 {
	font-size: 26px;
	color: #000;
	margin-bottom: 0;
	transition: all .3s;
}

.mx-events-blogs .single-events:hover h3 {
	color: #f4b333;
}

.mx-events-blogs h2 {
	font-size: 87.5px;
}

@media(min-width: 1400px) {
	.mx-events-blogs .single-events h3 {
		font-size: 26px;
	}
}

.mx-events-blogs .single-events h3,
.mx-events-blogs .single-events .date-time {
	padding-left: 10px;
	padding-right: 10px;
}

.mx-events-blogs .single-events .date-time {
	font-size: 15px;
	color: #939393;
	display: block;
}

.banner-content p {
	color: #fff;
	font-size: 25px;
	max-width: 650px;
}

@media(min-width: 1400px) {

	body.page-template-template-career #page-banner .container {
		max-width: 1350px;
	}
}

@media(min-width: 1600px) {
	body.page-template-template-career #page-banner .container {
		max-width: 1450px;
	}
}



/**
* 17.0 - .contact-map
* ------------------------------------------------------------------------------
*/

.contact-map {
	text-align: center;
}

.contact-map .image-mobile {
	display: none;
}

.contact-form-information .container {
	display: flex;
}

@media(min-width: 1200px) {
	.contact-form-information .container {
		max-width: 1600px;
	}
}

.contact-form-information {
	padding-bottom: 100px;
}

.contact-form-information select option:first-child {
	display: none;
}

.contact-form-information .contact-form-wrap {
	width: 515px;
	max-width: 100%;
	color: #fff;
	background-color: #402021;
	padding: 60px 75px 30px 60px;
	margin-top: -50px;
	z-index: 9;
	position: relative;
}

@media(min-width: 1400px) {
	.contact-form-information .contact-form-wrap {
		margin-top: -75px;
	}
}

@media(min-width: 1600px) {
	.contact-form-information .contact-form-wrap {
		margin-top: -100px;
	}
}

@media(min-width: 1900px) {
	.contact-form-information .contact-form-wrap {
		margin-top: -170px;
	}
}

.contact-form-information .contact-form-wrap h2 {
	font-size: 30px;
	color: #f4b333;
	margin-bottom: 30px;
}

.contact-form-information .contact-form-wrap input[type="text"],
.contact-form-information .contact-form-wrap input[type="email"],
.contact-form-information .contact-form-wrap select,
.contact-form-information .contact-form-wrap textarea {
	border: none;
	border-bottom: 1px solid #f4b333;
	padding-left: 10px;
	padding-right: 10px;
	height: 50px;
	background-color: transparent;
	color: #fff;
	width: 100%;
	outline: none;
	font-size: 15px;
	display: block;
}

.contact-form-information .contact-form-wrap textarea {
	height: 190px;
	background-image: url(../images/textarea-bg.png);
	background-repeat: repeat-x;
	background-position: bottom -10px left;
	border: none;
	line-height: 3.2em;
	resize: none;
}

.contact-form-information .contact-form-wrap input[type="text"]::-webkit-input-placeholder,
.contact-form-information .contact-form-wrap input[type="email"]::-webkit-input-placeholder,
.contact-form-information .contact-form-wrap textarea::-webkit-input-placeholder {
	color: rgba(255, 255, 255, .25);
}

.contact-form-information .contact-form-wrap input[type="text"]::-moz-placeholder,
.contact-form-information .contact-form-wrap input[type="email"]::-moz-placeholder,
.contact-form-information .contact-form-wrap textarea::-moz-placeholder {
	color: rgba(255, 255, 255, .25);
}

.contact-form-information .contact-form-wrap input[type="text"]:-ms-input-placeholder,
.contact-form-information .contact-form-wrap input[type="email"]:-ms-input-placeholder,
.contact-form-information .contact-form-wrap textarea:-ms-input-placeholder {
	color: rgba(255, 255, 255, .25);
}

.contact-form-information .contact-form-wrap input[type="text"]::-ms-input-placeholder,
.contact-form-information .contact-form-wrap input[type="email"]::-ms-input-placeholder,
.contact-form-information .contact-form-wrap textarea::-ms-input-placeholder {
	color: rgba(255, 255, 255, .25);
}

.contact-form-information .contact-form-wrap input[type="text"]::placeholder,
.contact-form-information .contact-form-wrap input[type="email"]::placeholder,
.contact-form-information .contact-form-wrap textarea::placeholder {
	color: rgba(255, 255, 255, .25);
}

.contact-form-information .contact-form-wrap p {
	margin-bottom: 14px;
}

.contact-form-information .submit-form {
	margin-top: 40px;
}

.contact-form-information .submit-form input[type="submit"] {
	display: block;
	width: 140px;
	height: 45px;
	font-size: 24px;
	font-family: 'Veneer Clean', sans-serif;
	background-color: transparent;
	background-image: url(../images/input-button-bg.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	border: none;
	margin-left: auto;
	cursor: pointer;
	color: #fff;
}

.contact-form-information .submit-form input[type="submit"]:hover {
	background-image: url(../images/updated-input-button-bg-hover.png);
}


.contact-form-information .form-bottom-informaton {
	padding-left: 50px;
	margin-top: 70px;
	width: calc(100% - 512px);
}

@media(min-width: 1600px) {
	.contact-form-information .form-bottom-informaton {
		padding-left: 100px;
	}
}

.contact-form-information .form-bottom-informaton h3 {
	font-size: 30px;
	line-height: 1.2em;
}

.contact-form-information .location h3 {
	margin-bottom: 15px;
}

.contact-form-information .week-time {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	font-size: 14px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 78px;
}

.contact-form-information .email-information {
	padding-top: 40px;
	position: relative;
}

.contact-form-information .email-information:before {
	content: '';
	position: absolute;
	width: 75px;
	height: 1px;
	border-top: 1px solid #000;
	left: 0;
	top: 0;
}

.contact-form-information .opening-information {
	margin-top: 40px;
}

@media(min-width: 1400px) {
	.contact-form-information .week-time {
		font-size: 15px;
	}
}


/**
* 18.0 - #blog-article
* ------------------------------------------------------------------------------
*/

#page-banner.blog-banner .container {
	min-height: 80vh;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	padding-bottom: 20vh;
	padding-top: 100px;
}

@media(min-height: 1200px) {
	#page-banner.blog-banner .container {
		min-height: 1000px;
		padding-bottom: 250px;
	}
}

@media(min-width: 1400px) {

	#page-banner.blog-banner .container,
	#blog-article .container {
		min-width: 1350px;
	}
}

@media(min-width: 1600) {

	#page-banner.blog-banner .container,
	#blog-article .container {
		min-width: 1450px;
	}
}

#blog-article {
	padding-top: 100px;
	padding-bottom: 100px;
}

#blog-article header h2 {
	font-size: 85.5px;
	color: #f4b333;
}


@media(min-width: 1400px) {
	#blog-article header h2 {
		font-size: 87.5px;
	}
}

#blog-article .share-post h3 {
	font-size: 50px;
	color: #402021;
}

#blog-article .share-post ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#blog-article .share-post ul li {
	display: inline-block;
	margin-right: 10px;
}

#blog-article .share-post a,
#career-article .share-post a {
	margin-right: 15px;
}

#blog-article .share-post a span,
#career-article .share-post a span {
	background: #f4b333 !important;
	display: inline-block;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

#blog-article .share-post a:hover span,
#career-article .share-post a:hover span {
	text-decoration: none;
	background: #d5910a !important;
}

#heateor_sss_sharing_more_providers .all-services ul li a {
	line-height: 1em !important;
	overflow: inherit !important;
}


#blog-article .event-box {
	background-color: #f4b333;
	color: #fff;
	padding: 40px;
	padding-right: 50px;
}

#blog-article .event-box h2 {
	font-size: 50px;
	margin-bottom: 10px;
}

#blog-article .event-box span {
	font-size: 15px;
}

#blog-article .event-box p {
	color: #000;
	line-height: 1.2em;
}

#blog-article .event-box p:last-child {
	margin-bottom: 0;
}

#blog-article .set-ducartion {
	display: block;
	margin-bottom: 30px;
}

#blog-article .set-ducartion>span {
	margin-right: 12px;
}

#blog-article .img-full-width.container-fluid {
	margin-top: 40px;
	margin-bottom: 70px;
	display: block;
}


.mx-events-blogs.related-blog {
	padding-bottom: 100px;
}

@media(min-width: 1200px) {
	.mx-events-blogs.related-blog header {
		max-width: 1170px;
		margin-left: auto;
		margin-right: auto;
	}
}

.mx-events-blogs.related-blog header {
	text-align: left;
}

.mx-events-blogs.related-blog header h3 {
	color: #f4b333;
	font-size: 40px;
	font-family: 'Thirsty Rough';
	font-weight: 600;
}


/**
* 19.0 - #career-article
* ------------------------------------------------------------------------------
*/
#career-article {
	padding: 80px 0 300px;
	background-color: #f8f8f8;
}

@media(min-width: 1400px) {
	#career-article .container {
		max-width: 1350px;
	}
}

@media(min-width: 1600px) {
	#career-article .container {
		max-width: 1450px;
	}
}

#career-article h2 {
	color: #f4b333;
	font-size: 87.5px;
	margin-bottom: 10px;
}

#career-article p {
	margin-bottom: 20px;
}

#career-article .left-top-article {
	margin-bottom: 60px;
}

#career-article .left-top-article p {
	line-height: 2em;
}

#career-article .single-para {
	margin-top: 50px;
}

#career-article .share-post {
	margin-bottom: 100px;
}

#career-article .share-post h3 {
	font-size: 50px;
	color: #402021;
	margin-bottom: 35px;
}

#career-article .share-post ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#career-article .share-post ul li {
	display: inline-block;
	margin-right: 10px;
}

#career-article .share-post ul li a {
	font-size: 30px;
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	color: #fff;
	background-color: #f4b333;
	display: inline-block;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

#career-article .share-post ul li a:hover {
	text-decoration: none;
	background-color: #d5910a;
}

#career-article .apply-box {
	padding: 40px 13px 30px 13px;
	background-color: #f4b333;
	color: #000000;
	text-align: center;
}

#career-article .apply-box h3 {
	font-size: 30px;
	display: inline-block;
	text-align: left;
	margin-bottom: 25px;
	line-height: 1.2em;
}

#career-article .apply-box .mx-button {
	min-width: 343px;
	height: 63px;
	line-height: 63px;
}

#career-article .apply-box .mx-button:hover {
	color: #000;
}

#career-article .apply-box .mx-button:hover>svg>path {
	stroke: #000 !important;
}


/**
* 20.0 - #vacancies-apply
* ------------------------------------------------------------------------------
*/
#vacancies-apply {
	padding-bottom: 130px;
}

@media(min-width: 1200px) {
	#vacancies-apply .container {
		max-width: 1717px;
	}
}

#vacancies-apply .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: -170px;
}

#vacancies-apply .article {
	width: 40%;
	background-color: #f4b333;
	color: #fff;
	padding: 60px 40px;
}

#vacancies-apply .article .mx-button {
	margin-top: 40px;
}

#vacancies-apply .article .mx-button:hover {
	color: #fff;
}

#vacancies-apply .article .mx-button:hover>svg>path {
	stroke: #fff !important;
}

#vacancies-apply .article h2 {
	font-size: 50px;
	color: #402021;
	margin-bottom: 20px;
	margin-bottom: 65px;
}

#vacancies-apply .article h3 {
	font-size: 50px;
}

#vacancies-apply .right-image {
	width: 60%;
}

#vacancies-apply .right-image {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

@media(min-width: 1600px) {
	#vacancies-apply .article {
		width: 38%;
		padding: 80px;
	}

	#vacancies-apply .right-image {
		width: 62%;
	}
}

@media(min-width: 1900px) {
	#vacancies-apply .article {
		width: 37%;
		padding: 100px;
	}

	#vacancies-apply .right-image {
		width: 63%;
	}
}


/**
* 21.0 - #mx-locations
* ------------------------------------------------------------------------------
*/
#mx-locations {
	padding: 100px 0;
}

#mx-locations header {
	text-align: center;
}

#mx-locations header h3 {
	font-size: 30px;
	color: #f4b333;
	font-family: 'Thirsty Rough', sans-serif;
	font-weight: bold;
	margin-bottom: 40px;
}

#mx-locations header h2 {
	font-size: 100px;
	color: #402021;
	margin-top: 0;
}

@media(min-width: 1200px) {
	#mx-locations .container {
		max-width: 1760px;
	}
}

#mx-locations .locaiton-search-filter {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 80px;
	margin-bottom: 50px;
}

#mx-locations .locaiton-search-filter li a,
#mx-locations .locaiton-search-filter h3 {
	font-size: 30px;
	font-family: 'Veneer Clean', sans-serif;
	color: #402021;
}

#mx-locations .locaiton-search-filter ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#mx-locations .locaiton-search-filter li a {
	display: block;
	position: relative;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

#mx-locations .locaiton-search-filter li a:before {
	content: '';
	display: block;
	position: absolute;
	top: 20px;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/location-tab-border.png);
	background-repeat: repeat-x;
	background-position: bottom left;
	opacity: 0;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

#mx-locations .locaiton-search-filter li.active a,
#mx-locations .locaiton-search-filter li a:hover {
	color: #f4b333;
	text-decoration: none;
}

#mx-locations .locaiton-search-filter li.active a:before,
#mx-locations .locaiton-search-filter li a:hover:before {
	opacity: 1;
}

#mx-locations .locaiton-search-filter ul li {
	margin-right: 90px;
}

#mx-locations .locaiton-search-filter ul li:last-child {
	margin-right: 0;
}

#mx-locations .seaerch-location,
#mx-locations .seaerch-location-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#mx-locations .seaerch-location h3 {
	margin-bottom: 0;
	margin-right: 30px;
}

#mx-locations .seaerch-location input[type="text"]::-webkit-input-placeholder {
	color: #c8c8c8;
}

#mx-locations .seaerch-location input[type="text"]::-moz-placeholder {
	color: #c8c8c8;
}

#mx-locations .seaerch-location input[type="text"]:-ms-input-placeholder {
	color: #c8c8c8;
}

#mx-locations .seaerch-location input[type="text"]::-ms-input-placeholder {
	color: #c8c8c8;
}

#mx-locations .seaerch-location input[type="text"]::placeholder {
	color: #c8c8c8;
}

#mx-locations .seaerch-location input[type="text"] {
	font-family: 'Veneer Clean', sans-serif;
	width: 300px;
	background-color: transparent;
	border: 1px solid rgba(0, 0, 0, 0.149);
	height: 60px;
	padding-left: 20px;
	padding-right: 20px;
}

#mx-locations .seaerch-location button[type="submit"] {
	width: 60px;
	height: 60px;
	border: none;
	background-color: #402021;
	display: inline-block;
	margin-left: 8px;
	background-image: url(../images/icon-location-searchpng.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 25px 25px;
	cursor: pointer;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

#mx-locations .seaerch-location button[type="submit"]:hover {
	background-color: #f4b333;
}

@media(min-width: 1400px) {
	#mx-locations .seaerch-location input[type="text"] {
		width: 400px;
	}
}


@media(min-width: 1600px) {
	#mx-locations .seaerch-location input[type="text"] {
		width: 500px;
	}
}

#mx-locations .locatoin-map {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#mx-locations .locatoin-map .locations-wrap {
	width: 450px;
}

#mx-locations .locatoin-map .locations-wrap .location-list {
	display: none;
}

#mx-locations .locatoin-map .locations-wrap .location-list:first-child {
	display: block;
}

#mx-locations .locatoin-map .mx-location-map {
	width: calc(100% - 450px);
}

#mx-locations .locatoin-map .location-information {
	display: none;
	background-color: #402021;
	font-size: 15px;
	padding: 70px 60px;
	color: #fff;
	position: relative;
}

#mx-locations .locatoin-map .location-information p {
	margin-bottom: 30px;
	line-height: 1.7em;
}

#mx-locations .locatoin-map .location-information .email-info {
	position: relative;
	padding-top: 50px;
	margin-top: 50px;
}

#mx-locations .locatoin-map .location-information .email-info:before {
	content: '';
	width: 2;
	border-top: 2px solid rgb(244, 179, 51);
	width: 76px;
	position: absolute;
	top: 0;
	left: 0;
}

#mx-locations .locatoin-map .location-information .opening-times {
	position: absolute;
	background-color: #002539;
	top: 0;
	left: 100%;
	padding: 60px 60px;
	z-index: 99;
}

#mx-locations .locatoin-map .location-information .opening-times .single-open-time {
	white-space: nowrap;
	line-height: 1.6em;
	margin-bottom: 25px;
}

#mx-locations .locatoin-map .location-information .opening-times .single-open-time:last-child {
	margin-bottom: 0;
}

#mx-locations .locatoin-map .location-information h3 {
	font-size: 30px;
	color: #f4b333;
}

#mx-locations .locatoin-map :first-child>.location-information {
	display: block;
}

#mx-locations .locatoin-map .location-title {
	font-size: 30px;
	margin-bottom: 0;
	line-height: 1.2em;
	border-bottom: 1px solid #bababa;
	margin-left: 50px;
	margin-right: 50px;
	padding-bottom: 25px;
	padding-top: 25px;
	cursor: pointer;
	padding-right: 50px;
	background-image: url(../images/icon-location-expand.png);
	background-repeat: no-repeat;
	background-position: right 20px center;
}

#mx-locations .locatoin-map .single-locatin.active .location-title {
	display: none;
}

#mx-map {
	width: 100%;
	height: 700px;
}

/**
* 22.0 - #menu-page-banner
* ------------------------------------------------------------------------------
*/

#menu-page-banner {
	border-bottom: 15px solid rgb(244, 179, 51);
}

#menu-page-banner .single-slide {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: calc(100vh - 15px);
	max-height: 1050px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: #fff;
	padding-bottom: 50px;
}

#menu-page-banner .single-slide h1 {
	font-size: 125px;
	color: #f4b333;
	margin-bottom: 5px;
}

#menu-page-banner .single-slide p {
	font-size: 25px;
	max-width: 560px;
}

@media(min-width: 768px) {
	#menu-page-banner .single-slide .scroll-down {
		font-size: 24px;
		font-family: 'Veneer Clean', sans-serif;
		font-weight: normal;
		letter-spacing: .05em;
		display: inline-block;
		padding-left: 60px;
		margin-top: 30px;
		color: #fff;
		position: relative;
	}

	#menu-page-banner .single-slide .scroll-down:hover {
		text-decoration: none;
	}

	#menu-page-banner .single-slide .scroll-down:before {
		content: '';
		position: absolute;
		left: 0;
		top: 50%;
		-webkit-transform: translate(0, -50%);
		-ms-transform: translate(0, -50%);
		transform: translate(0, -50%);
		width: 42px;
		height: 42px;
		display: inline-block;
		background-image: url(../images/icon-scroll-down.png);
		background-size: 100% auto;
		background-repeat: no-repeat;
		background-position: center;
		-webkit-transition: all .3s;
		-o-transition: all .3s;
		transition: all .3s;
	}

	#menu-page-banner .single-slide .scroll-down:hover:before {
		-webkit-filter: drop-shadow(4px 4px 6px #fff);
		filter: drop-shadow(4px 4px 6px #fff);
	}
}

@media(max-width: 1400px) {
	#menu-page-banner .single-slide {
		padding-left: 100px;
		padding-right: 100px;
	}
}

#menu-page-banner .owl-carousel .owl-nav .owl-next,
#menu-page-banner .owl-carousel .owl-nav .owl-prev {
	position: absolute;
	display: inline-block;
	width: 42px;
	height: 42px;
	cursor: pointer;
	bottom: 74px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	z-index: 10;
}

#menu-page-banner .owl-carousel .owl-nav .owl-next:hover,
#menu-page-banner .owl-carousel .owl-nav .owl-prev:hover {
	-webkit-filter: drop-shadow(4px 4px 6px #fff);
	filter: drop-shadow(4px 4px 6px #fff);
}

#menu-page-banner .owl-carousel .owl-nav .owl-next {
	right: 10px;
	background-image: url(../images/icon-event-slide-right.png);
}

#menu-page-banner .owl-carousel .owl-nav .owl-prev {
	left: 10px;
	background-image: url(../images/icon-event-slide-left.png);
}

#menu-page-banner .single-event-slide {
	padding-left: 50px;
}

@media(min-width: 1600px) {
	#menu-page-banner .single-event-slide {
		padding-left: 0;
	}

	#menu-page-banner .owl-carousel .owl-nav .owl-next {
		right: 100px;
	}

	#menu-page-banner .owl-carousel .owl-nav .owl-prev {
		left: 100px;
	}
}


#menu-page-banner .owl-dots {
	position: absolute;
	left: 50%;
	bottom: 80px;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}

#menu-page-banner .owl-dots .owl-dot {
	width: 18px;
	height: 18px;
	border: 1px solid transparent;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	margin-right: 7px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

#menu-page-banner .owl-dots .owl-dot:hover,
#menu-page-banner .owl-dots .owl-dot.active {
	border-color: #fff;
}

#menu-page-banner .owl-dots .owl-dot:last-child {
	margin-right: 0;
}

#menu-page-banner .owl-dots .owl-dot span {
	text-align: center;
	line-height: 18px;
	display: inline-block;
	border-radius: 50%;
	background-color: rgb(255, 255, 255);
	width: 10px;
	height: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

/**
* 23.0 - #max-menus
* ------------------------------------------------------------------------------
*/

.single-menu-info {
	margin-top: 30px;
}

.single-menu-info .menu-price {
	font-size: 40px;
	margin-bottom: 20px;
	font-family: 'Veneer Clean', sans-serif;
}


.single-menu-info .mobile-tagline {
	font-size: 24px;
}

#max-menus {
	background-image: -o-linear-gradient(left, #fff 50%, #f8f8f8 50%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #fff), color-stop(50%, #f8f8f8));
	background-image: linear-gradient(to right, #fff 50%, #f8f8f8 50%);
}

#max-menus .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

@media(min-width: 1200px) {
	#max-menus .container {
		max-width: 100%;
	}
}

@media(min-width: 1400px) {
	#max-menus .container {
		padding-left: 70px;
		padding-right: 70px;
	}
}

#max-menus .container .menu-sidebar {
	width: 400px;
	padding-top: 80px;
	padding-bottom: 100px;
}

#max-menus .container .max-menus-list {
	width: calc(100% - 400px);
	background-color: #f8f8f8;
	padding-top: 80px;
	padding-bottom: 100px;
}

@media(min-width: 1600px) {
	#max-menus .container .menu-sidebar {
		width: 470px;
	}

	#max-menus .container .max-menus-list {
		width: calc(100% - 470px);
	}
}

#max-menus .menu-sidebar .mx-button {
	min-width: 355.5px;
	height: 91.5px;
	font-size: 24px;
	line-height: 91.5px;
	margin-bottom: 40px;
}

#max-menus .menu-sidebar .menu-nav {
	width: 355.5px;
}

#max-menus .menu-sidebar .menu-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

#max-menus .menu-sidebar .menu-nav ul li:first-child img {
	height: auto;
	width: 32px;
}

#max-menus .menu-sidebar .menu-nav ul li:nth-child(2) img {
	height: auto;
	width: 30px;
}

#max-menus .menu-sidebar .menu-nav ul li:last-child img {
	height: auto;
	width: 42px;
}



#max-menus .menu-sidebar .menu-nav li a {
	width: 109px;
	height: 148.5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	background-image: url(../images/menu-category-bg.png);
	background-size: 100% auto;
	background-position: center;
	background-repeat: no-repeat;
	color: #000;
	text-decoration: none;
	font-size: 25px;
	font-family: 'Veneer Clean', sans-serif;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	text-align: center;
}

#max-menus .menu-sidebar .menu-nav li a>div {
	padding-bottom: 19px;
}

#max-menus .menu-sidebar .menu-nav li a>div span {
	margin-top: 20px;
}

#max-menus .menu-sidebar .menu-nav li a span {
	display: block;
}

#max-menus .menu-sidebar .menu-nav li.active a,
#max-menus .menu-sidebar .menu-nav li:hover a {
	background-image: url(../images/menu-category-bg-active.png);
	text-decoration: none;
}

#max-menus .menu-sidebar .menu-categories ul {
	list-style: none;
	margin: 0;
	padding: 0;
	border-bottom: 2px solid #e5e5e5;
	width: 355.5px;
	margin-top: 15px;
	display: none;
}

#max-menus .menu-sidebar .menu-categories ul:first-child {
	display: block;
}

#max-menus .menu-sidebar .menu-categories ul li a {
	display: block;
	color: #000;
	font-size: 25px;
	padding: 25px 35px 25px 25px;
	text-decoration: none;
	text-decoration: none;
	border-top: 2px solid #e5e5e5;
	border-left: 2px solid #e5e5e5;
	border-right: 2px solid #e5e5e5;
	font-family: 'Veneer Clean', sans-serif;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center right 10px;
	background-size: 21px auto;
}

#max-menus .menu-sidebar .menu-categories>ul>li>a:hover,
#max-menus .menu-sidebar .menu-categories>ul>li.active>a {
	background-image: url(../images/icon-check.png);
}


#max-menus .allergy-advice {
	width: 355.5px;
	margin-top: 60px;
	font-size: 15px;
}

#max-menus .allergy-advice p {
	line-height: 1.7em;
}

#max-menus .allergy-advice ul {
	margin: 0;
	padding: 0;
	margin-top: -25px;
	list-style: none;
}

#max-menus .button-order-delevary a {
	width: 355.5px;
	display: inline-block;
	width: 364px;
	height: 61px;
	line-height: 61px;
	text-decoration: none;
	text-align: center;
	color: #000;
	font-size: 28px;
	font-family: 'Veneer Clean', sans-serif;
	background-image: url(../images/order-delevary-btn-bg.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	margin-top: 60px;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}

#max-menus .button-order-delevary a:hover {
	color: #fff;
}

#max-menus .max-menus-list {
	padding-left: 40px;
}

@media(min-width: 1600px) {
	#max-menus .max-menus-list {
		padding-left: 70px;
	}
}

#max-menus .menu-cat-title {
	font-size: 24px;
	font-family: 'Veneer Clean', sans-serif;
	margin-bottom: 24px;
}

#max-menus .max-menus-list ul.max-menus {
	list-style: none;
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -12px;
	margin-right: -12px;
}

#max-menus .max-menus-list ul.max-menus .max-single-menu {
	width: 33.333%;
	padding-left: 12px;
	padding-right: 12px;
	margin-bottom: 40px;
}

@media(min-width: 1600px) {
	#max-menus .max-menus-list ul.max-menus .max-single-menu {
		margin-bottom: 60px;
	}
}

#max-menus .max-menus-list ul.max-menus .max-single-menu .menu-thumb {
	margin-bottom: 25px;
}

#max-menus .max-menus-list ul.max-menus .max-single-menu .menu-thumb img {
	width: 100%;
	height: auto;
}

#max-menus .max-menus-list ul.max-menus .max-single-menu h3 {
	font-size: 30px;
	margin-bottom: 5px;
}

#max-menus .max-menus-list ul.max-menus .max-single-menu p {
	font-size: 15px;
	color: #939393;
	margin-top: 0;
	margin-bottom: 0;
}

#max-menus .max-menus-list ul.max-menus .max-single-menu .menu-price {
	font-size: 30px;
	font-family: 'Veneer Clean', sans-serif;
}

#max-menus .max-menus-list ul.max-menus .max-single-menu .menu-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}


#max-menus .max-menus-list .owl-carousel .owl-nav .owl-next,
#max-menus .max-menus-list .owl-carousel .owl-nav .owl-prev {
	position: absolute;
	display: inline-block;
	width: 42px;
	height: 42px;
	cursor: pointer;
	bottom: 50%;
	-webkit-transform: translate(0, 50%);
	-ms-transform: translate(0, 50%);
	transform: translate(0, 50%);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	z-index: 10;
	opacity: 0;
	transition: all .3s;
}

#max-menus .max-menus-list .owl-carousel .owl-nav .owl-next:hover,
#max-menus .max-menus-list .owl-carousel .owl-nav .owl-prev:hover {
	-webkit-filter: drop-shadow(4px 4px 6px #fff);
	filter: drop-shadow(4px 4px 6px #fff);
}

#max-menus .max-menus-list .owl-carousel .owl-nav .owl-next {
	right: 15px;
	background-image: url(../images/icon-event-slide-right.png);
}

#max-menus .max-menus-list .owl-carousel .owl-nav .owl-prev {
	left: 15px;
	background-image: url(../images/icon-event-slide-left.png);
}

#max-menus .max-menus-list .owl-dots {
	position: absolute;
	opacity: 0;
	left: 50%;
	bottom: 20px;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}

#max-menus .max-menus-list .owl-dots .owl-dot {
	width: 18px;
	height: 18px;
	border: 1px solid transparent;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	margin-right: 7px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

#max-menus .max-menus-list .owl-dots .owl-dot:hover,
#max-menus .max-menus-list .owl-dots .owl-dot.active {
	border-color: #fff;
}

#max-menus .max-menus-list .owl-dots .owl-dot:last-child {
	margin-right: 0;
}

#max-menus .max-menus-list .owl-dots .owl-dot span {
	text-align: center;
	line-height: 18px;
	display: inline-block;
	border-radius: 50%;
	background-color: rgb(255, 255, 255);
	width: 10px;
	height: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#max-menus .max-menus-list .max-single-menu:hover .owl-dots,
#max-menus .max-menus-list .max-single-menu:hover .owl-carousel .owl-nav .owl-next,
#max-menus .max-menus-list .max-single-menu:hover .owl-carousel .owl-nav .owl-prev {
	opacity: 1;
}


#max-menus .show-hide-filter-mobile,
#mobile-allergy-advice,
#max-menus .mobile-load-more-menu-btn,
#max-menus .mobile-button-order-delevary,
#max-menus .mobile-pick-options,
#max-menus .mobile-tagline,
#menu-page-banner .single-slide .scroll-down.scroll-down-mobile,
#max-menus .download-menu-mobile {
	display: none;
}


/**
* 24.0 - woocommerce shop
* ------------------------------------------------------------------------------
*/
.shop-announcement {
	padding: 20px;
	font-family: 'Veneer Clean', sans-serif;
	background-color: #fdbd3e;
	color: #000;
}

.shop-announcement img {
	margin-bottom: 10px;
	border: 1px solid #ddd;
}

.shop-announcement p {
	margin-bottom: 0;
}

#shop-sections {
	background-color: #f8f8f8;
	padding: 80px 0;
}

#shop-sections .max-woocommerce-header .heading h3 {
	font-size: 40px;
	color: #d8bedc;
	font-family: 'Thirsty Rough', sans-serif;
	font-weight: 600;
	margin-top: 0;
}

#shop-sections .max-woocommerce-header .heading h2 {
	font-size: 87.5px;
	color: #402021;
}

ul.products.columns-3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;

}

.woocommerce ul.products.columns-3 li.product {
	width: 33.333%;
}

.max-woocommerce-main {
	padding-top: 50px;
}

.max-woocommerce-main .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

@media(min-width: 1200px) {

	.max-woocommerce-main .container,
	#shop-sections .max-woocommerce-header .container {
		max-width: 100%;
	}
}

@media(min-width: 1920px) {

	.max-woocommerce-main .container,
	#shop-sections .max-woocommerce-header .container {
		padding-left: 50px;
		padding-right: 50px;
	}
}

.max-woocommerce-main .container .shop-sidebar {
	width: 25%;
}

.max-woocommerce-main .container .shop-products {
	width: 75%;
	margin-top: -44px;
}

@media(max-width: 1400px) {
	.max-woocommerce-main .container .shop-products {
		padding-left: 30px;
	}
}

@media(min-width: 1600px) {
	.max-woocommerce-main .container .shop-sidebar {
		width: 420px;
	}

	.max-woocommerce-main .container .shop-products {
		width: calc(100% - 420px);
		margin-top: -44px;
	}
}

#shop-sections .max-sorting {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.max-woocommerce-main .shop-sidebar .sort-filter {
	margin: 0;
	padding: 0;
	border: 2px solid #d5d5d5;
	list-style: none;
}

.max-woocommerce-main .shop-sidebar .sort-filter a {
	font-size: 25px;
	color: #000000;
	font-family: 'Veneer Clean', sans-serif;
	padding-left: 23px;
	padding-right: 70px;
	padding-top: 25px;
	padding-bottom: 25px;
	display: block;
	background-color: #fff;
	border-bottom: 1px solid #d5d5d5;
	text-decoration: none;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}

.max-woocommerce-main .shop-sidebar .sort-filter>li>a {
	position: relative;
}

.max-woocommerce-main .shop-sidebar .sort-filter>li>a:before {
	content: '';
	background-image: url(../images/icon-angle-down.png);
	width: 18px;
	height: 10px;
	background-size: 100% auto;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	right: 20px;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.max-woocommerce-main .shop-sidebar .sort-filter>li.active>a:before {
	-webkit-transform: translate(0, -50%) rotate(180deg);
	-ms-transform: translate(0, -50%) rotate(180deg);
	transform: translate(0, -50%) rotate(180deg);
}

.max-woocommerce-main .shop-sidebar .sort-filter a:hover {
	text-decoration: none;
}


.max-woocommerce-main .shop-sidebar .sort-filter li.active a {
	background-color: #f4b333;
	color: #fff;
}

.max-woocommerce-main .shop-sidebar .sort-filter ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: none;
}

.max-woocommerce-main .shop-sidebar .sort-filter ul li a {
	color: #000 !important;
	background-color: #f4b333;
	display: block;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-size: 21px auto;
	background-position: center right 20px;
}

.max-woocommerce-main .shop-sidebar .sort-filter ul li a.active-sub-item {
	background-image: url(../images/icon-check.png);
}

.shop-widget .allergy-advice {
	margin-top: 60px;
}

.shop-widget .allergy-advice h3 {
	font-size: 30px;
}

.shop-widget .allergy-advice p,
.shop-widget .allergy-advice ul {
	font-size: 15px;
	line-height: 15px;
	color: #939393;
	line-height: 1.6em;
}

.shop-widget .allergy-advice p {
	margin-bottom: 20px;
}

.shop-widget .allergy-advice ul {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-top: -18px;
}

.max-woocommerce-main .shop-sidebar .sort-filter,
.shop-widget .allergy-advice {
	max-width: 340px;
}


/**
* 25.0 - #accepted-payment
* ------------------------------------------------------------------------------
*/
#accepted-payment {
	background-color: #fff;
}

#accepted-payment .container {
	padding: 100px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#accepted-payment ul {
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#accepted-payment h2 {
	font-size: 50px;
	margin-right: 55px;
	margin-bottom: 0;
}

#accepted-payment ul li img {
	display: inline-block;
}

#accepted-payment ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border: 1px solid #ece8e8;
	border-radius: 5px;
	height: 70px;
	width: 130px;
	text-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 30px;
}

#accepted-payment ul li:last-child {
	margin-right: 0;
}

#accepted-payment ul li:nth-child(1) img {
	width: 57px;
}

#accepted-payment ul li:nth-child(2) img {
	width: 45px;
}

#accepted-payment ul li:nth-child(3) img {
	width: 74px;
}

#feature-prodcuts.shop-page-best-sellers header h3 {
	color: #f4b333;
}

#max-reviews.review-in-shop-page .thumbnail {
	margin-bottom: 50px;
}

#max-reviews.review-in-shop-page blockquote h3 {
	color: #f4b333;
}

#max-reviews.review-in-shop-page blockquote h4 {
	color: #fff;
}

.max-woocommerce-header .mobile-filter {
	display: none;
}

/**
 * WordPress Related CSS
 */
.numaric-pagination {
	display: block;
	width: 1000%;
	margin-top: 50px;
	margin-bottom: 50px;
}

.numaric-pagination ul {
	list-style: none;
	margin: 0;
	padding: 0;
	padding-left: 15px;
	padding-right: 15px;
	display: flex;
}

.numaric-pagination ul li {
	display: inline-block;
	margin-right: 10px;
}

.numaric-pagination ul li:last-child {
	margin-right: 10px;
}

.numaric-pagination ul li a,
.numaric-pagination ul li span {
	display: block;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	text-decoration: none;
	font-family: 'Veneer Clean';
	border: 1px solid #000;
	color: #000;
}

.numaric-pagination ul li span.current {
	color: #f4b333;
	border-color: #f4b333;
}

.numaric-pagination ul li a.next,
.numaric-pagination ul li a.prev {
	background-position: center;
	background-repeat: no-repeat;
	background-size: 40px;
	border: none;
}

.numaric-pagination ul li a.next {
	margin-left: 30px;
	background-image: url(../images/icon-nav-right.png);
}

.numaric-pagination ul li a.prev {
	margin-right: 30px;
	background-image: url(../images/icon-nav-left.png);
}

.page-content input[type="search"] {
	height: 60px;
	border: 1px solid #000;
	padding: 0 10px;
}

.page-content input[type="submit"] {
	height: 60px;
	background-color: #f4b333;
	border-radius: 0;
	border: none;
	color: #fff;
	font-family: 'Veneer Clean';
	font-size: 22px;
	padding-left: 25px;
	padding-right: 25px;
	cursor: pointer;
}

.page-content {
	padding-bottom: 50px;
}

.woocommerce-info,
.woocommerce-info::before {
	color: #f4b333;
}

.woocommerce-info {
	border-top-color: #f4b333;
	;
}

.woocommerce-page .woocommerce-info .button,
.woocommerce-page .woocommerce-message .button,
.woocommerce .cart .button,
.woocommerce button.button.alt {
	border-radius: 0;
	background-color: #f4b333;
	;
	color: #000;
	font-family: 'Veneer Clean', sans-serif;
	letter-spacing: .05em;
	font-weight: 300;
	transition: all .3s;
	border: none;
	outline: none;
}

.woocommerce-page .woocommerce-info .button:hover,
.woocommerce-page .woocommerce-message .button:hover,
.woocommerce button.button.alt:hover,
.woocommerce .cart .button:hover {
	color: #000;
	background-color: #eba823;
}

.woocommerce-checkout #payment ul.payment_methods li {
	line-height: 1.3em;
}

.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale {
	background-color: transparent;
	color: #fff;
	right: inherit;
	left: 30px;
	top: 30px;
	border-radius: 0;
	font-family: 'Veneer Clean';
	color: #402021;
	font-size: 30px;
	margin: 0;
	padding: 0;
	text-align: center;
	font-weight: 300;
	height: 110.5px;
	line-height: 110px;
	min-width: 99px;
	background-image: url(../images/on-sell-bg.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
}

@media(max-width: 1400px) {

	.woocommerce span.onsale,
	.woocommerce ul.products li.product .onsale {
		transform: scale(.6);
		transform-origin: top left;
	}
}

body.single-product {
	padding-top: 200px;
	background-color: #f8f8f8;
}

.woocommerce-message {
	border-top-color: #eba823;
}

body.single-product .woocommerce-message {
	background-color: #fff;
}

.woocommerce-message::before {
	color: #eba823;
}


@media(min-width: 1200px) {
	#primary .content-area {
		max-width: 1500px;
		padding-left: 15px;
		padding-right: 15px;
		margin: auto;
	}
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	border-radius: 0 !important;
	color: #000;
	background-color: #f4b333;
	font-family: 'Veneer Clean', sans-serif;
	font-weight: 300;
	transition: all .3s;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
	background-color: #eba823;
	color: #000;
}

.woocommerce #respond input#submit.alt.disabled,
.woocommerce #respond input#submit.alt.disabled:hover,
.woocommerce #respond input#submit.alt:disabled,
.woocommerce #respond input#submit.alt:disabled:hover,
.woocommerce #respond input#submit.alt:disabled[disabled],
.woocommerce #respond input#submit.alt:disabled[disabled]:hover,
.woocommerce a.button.alt.disabled,
.woocommerce a.button.alt.disabled:hover,
.woocommerce a.button.alt:disabled,
.woocommerce a.button.alt:disabled:hover,
.woocommerce a.button.alt:disabled[disabled],
.woocommerce a.button.alt:disabled[disabled]:hover,
.woocommerce button.button.alt.disabled,
.woocommerce button.button.alt.disabled:hover,
.woocommerce button.button.alt:disabled,
.woocommerce button.button.alt:disabled:hover,
.woocommerce button.button.alt:disabled[disabled],
.woocommerce button.button.alt:disabled[disabled]:hover,
.woocommerce input.button.alt.disabled,
.woocommerce input.button.alt.disabled:hover,
.woocommerce input.button.alt:disabled,
.woocommerce input.button.alt:disabled:hover,
.woocommerce input.button.alt:disabled[disabled],
.woocommerce input.button.alt:disabled[disabled]:hover {
	color: #000;
	background-color: #f4b333;
	font-family: 'Veneer Clean', sans-serif;
	font-weight: 300;
}

.woocommerce .woocommerce-breadcrumb a,
.woocommerce .woocommerce-breadcrumb {
	color: #000;
	font-family: 'Veneer Clean', sans-serif;
	font-weight: 300;
	font-size: 15px;
	margin-bottom: 50px;
}

.woocommerce div.product h1.product_title {
	font-size: 50px;
}


.woocommerce div.product p.price,
.woocommerce div.product span.price {
	font-size: 50px;
	font-family: 'Veneer Clean', sans-serif;
	font-weight: 300;
	color: #f4b333;
	;
}

.woocommerce div.product .max-product-price {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.woocommerce div.product .max-product-price .after-pay-text {
	display: inline-flex;
	align-items: center;
	font-size: 15px;
	color: #000;
	font-family: 'Veneer Clean', sans-serif;
	font-weight: 300;
	margin-left: 30px;
}

.woocommerce div.product .max-product-price .after-pay-text img {
	width: 32px;
	margin-right: 15px;
}

.woocommerce div.product form.cart div.quantity {
	display: none !important;
}

.woocommerce-mini-cart a.remove {
	color: #fff !important;
}

.woocommerce div.product form.cart {
	margin-bottom: 20px;
}

div.product .free-delevary-message {
	font-size: 14px;
	color: #000;
	margin-top: 30px;
}

div.product .free-delevary-message img {
	width: 30px;
	margin-right: 10px;
}

.woocommerce-product-details__short-description,
body.single-product .nutritional-values {
	margin-top: 60px;
}

.woocommerce div.product form.cart .button {
	width: 273px;
	height: 65px;
	line-height: 56px;
	font-size: 25px;
	font-weight: 300;
	letter-spacing: .05em;
}

.woocommerce div.product form.cart .button:hover {
	background-color: #eba823;
}

.woocommerce div.product form.cart .button .item-counter {
	margin-left: 20px;
}

.woocommerce div.product form.cart .button .item-counter .decrement {
	margin-left: 10px;
}

.woocommerce div.product h3 {
	margin-bottom: 30px;
}

.nutritional-values .table td:first-child {
	padding-left: 0;
}


.single-shop-payments {
	display: flex;
	align-items: center;
	margin-top: 70px;
	margin-bottom: 80px;
}

.single-shop-payments h3 {
	font-size: 15px;
	margin-bottom: 0 !important;
	margin-right: 30px;
}

.single-shop-payments ul {
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.single-shop-payments ul li img {
	display: inline-block;
}

.single-shop-payments ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border: 1px solid #ece8e8;
	border-radius: 5px;
	height: 50px;
	width: 88px;
	text-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 10px;
}

.single-shop-payments ul li:last-child {
	margin-right: 0;
}

.single-shop-payments ul li:nth-child(1) img {
	width: 38px;
}

.single-shop-payments ul li:nth-child(2) img {
	width: 33px;
}

.single-shop-payments ul li:nth-child(3) img {
	width: 52px;
}

body.single-product a.wpgis-popup {
	right: auto;
	left: 13px;
}

body.single-product a.wpgis-popup.fa-expand:before {
	content: "\f00e" !important;
	color: #000;
}

body.single-product .a.wpgis-popup img {
	display: none;
}

.single-product.woocommerce span.onsale {
	display: none;
}

body.single-product a.wpgis-popup {
	right: auto;
	left: 13px;
	width: 70px;
	height: 70px;
	background: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #e5e5e5;
	text-decoration: none;
	opacity: 1;
	transition: all .5s;
}

body.single-product a.wpgis-popup:hover {
	font-size: 27px;
}

.wpgis-slider-for .btn-prev,
.wpgis-slider-for .btn-next {
	z-index: 910;
}


@media(min-width: 1200px) {
	#primary .container {
		max-width: 1540px;
	}
}

body.woocommerce-cart {
	font-family: 'Veneer Clean', sans-serif;
	font-weight: 300;
}

.woocommerce table.shop_table {
	border-radius: 0;
}

.woocommerce #content table.cart td.actions .input-text,
.woocommerce table.cart td.actions .input-text,
.woocommerce-page #content table.cart td.actions .input-text,
.woocommerce-page table.cart td.actions .input-text {
	min-width: 100px;
}


.woocommerce-cart table.cart td.actions .coupon .input-text {
	width: 130px;
}

#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
	width: 100px;
	height: auto;
}

body.woocommerce-cart .woocommerce a.remove {
	color: #fff !important;
	background-color: #000;
	border-radius: 0;
	font-size: 16px;
	padding: 15px;
	font-weight: normal;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .3s;
}

body.woocommerce-cart .woocommerce a.remove:hover {
	background-color: #242323;
}


body.woocommerce-cart div.woocommerce .woocommerce-notices-wrapper {
	width: 100%;
}

body.woocommerce-cart div.woocommerce .woocommerce-cart-form {
	display: flex;
	flex-wrap: wrap;
}

body.woocommerce-cart .woocommerce table.shop_table {
	margin-right: 50px;
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
	font-weight: 300 !important;
}


body.woocommerce-cart div.woocommerce .woocommerce-cart-form .cart-table {
	width: 65%
}

body.woocommerce-cart div.woocommerce .cart-collaterals {
	width: 35%;
	padding-left: 50px;
}

@media(min-width: 1600px) {
	body.woocommerce-cart div.woocommerce .cart-collaterals {
		padding-left: 90px;
	}
}

body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals,
body.woocommerce-cart .woocommerce-page .cart-collaterals .cart_totals {
	float: none;
	width: 100%;
	border: 1px solid #dfdfdf;
}

body.woocommerce-cart .woocommerce .cart-collaterals table td,
body.woocommerce-cart .woocommerce .cart-collaterals table th {
	display: table-row;
	font-size: 25px;
	font-weight: 300;
	padding: 0;
	border: none;
	padding: 0;
	margin: 0;
	line-height: 1.2em;
	width: 100%;
}

body.woocommerce-cart .woocommerce .cart-collaterals table td {
	color: #f4b333;
}

body.woocommerce-cart .woocommerce .cart-collaterals table.shop_table {
	border: none;
}

body.woocommerce-cart .woocommerce .cart-collaterals table th label {
	line-height: 1.2em;
}

body.woocommerce-cart .woocommerce .cart-collaterals ul#shipping_method li:last-child {
	margin-bottom: 0 !important;
}


body.woocommerce-cart .woocommerce .cart-collaterals table tr {
	padding: 20px 30px;
	display: block;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

body.woocommerce-cart .woocommerce .cart-collaterals table tr.order-total {
	border-bottom: none;
}

body.woocommerce-cart .cart_totals h2 {
	font-size: 30px;
	padding-top: 26px;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	margin-bottom: 0;
	font-size: 1em;
}

body.woocommerce-cart h1 {
	margin-bottom: 50px;
	margin-left: 40px;
}


.woocommerce .col2-set,
.woocommerce-page .col2-set {
	display: flex;
	justify-content: space-between;
}


.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2,
.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1 {
	float: none;
	width: 50%;
	flex: 0 0 50%;
	max-width: 50%;
	margin-left: 0;
	margin-right: 0;
	display: block;
	position: static;
}

.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
	width: 45%;
	flex: 0 0 45%;
	max-width: 45%;
}

body.woocommerce-checkout .woocommerce form .form-row {
	float: none;
}



body.woocommerce-checkout .woocommerce .col2-set {
	flex-wrap: wrap;
}

body.woocommerce-checkout .woocommerce .col2-set .col-2,
body.woocommerce-checkout .woocommerce .col2-set .col-1 {
	width: 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

body.woocommerce-checkout .woocommerce .col2-set .col-1 {
	margin-bottom: 80px;
}

body.woocommerce-checkout .woocommerce .col2-set .col-2 {
	max-width: 800px;
}

form.woocommerce-checkout label,
body.woocommerce-account label,
.woocommerce-form-login label {
	display: block;
	width: 100%;
	margin-bottom: 5px;
	font-family: 'Veneer Clean', sans-serif;
	font-weight: 300;
}

form.woocommerce-checkout input[type="text"],
form.woocommerce-checkout input[type="email"],
form.woocommerce-checkout input[type="number"],
form.woocommerce-checkout input[type="password"],
form.woocommerce-checkout input[type="tel"],
form.woocommerce-checkout textarea,
form.woocommerce-checkout select,
body.woocommerce-account input[type="text"],
body.woocommerce-account input[type="email"],
body.woocommerce-account input[type="number"],
body.woocommerce-account input[type="password"],
body.woocommerce-account input[type="textarea"],
.woocommerce-form-register input[type="text"],
.woocommerce-form-register input[type="email"],
.woocommerce-form-register input[type="number"],
.woocommerce-form-register input[type="password"],
.woocommerce-form-register input[type="textarea"],
.woocommerce-form-login input[type="text"],
.woocommerce-form-login input[type="email"],
.woocommerce-form-login input[type="number"],
.woocommerce-form-login input[type="password"],
.woocommerce-form-login input[type="textarea"],
.woocommerce-form-coupon input[type="text"],
.woocommerce-form-coupon input[type="email"],
.woocommerce-form-coupon input[type="number"],
.woocommerce-form-coupon input[type="password"],
.woocommerce-form-coupon input[type="textarea"] {
	width: 100%;
	display: block;
	border: none;
	border-bottom: 1px solid #7c7c7c;
	height: 60px;
	padding-left: 15px;
	padding-right: 15px;
	color: #000;
	border-top: none;
	border-left: none;
	border-right: none;
}

form.woocommerce-checkout input[type="text"]::placeholder,
form.woocommerce-checkout input[type="email"]::placeholder,
form.woocommerce-checkout input[type="number"]::placeholder,
form.woocommerce-checkout input[type="password"]::placeholder,
form.woocommerce-checkout input[type="tel"]::placeholder,
form.woocommerce-checkout textarea::placeholder,
body.woocommerce-account input[type="text"]::placeholder,
body.woocommerce-account input[type="email"]::placeholder,
body.woocommerce-account input[type="number"]::placeholder,
body.woocommerce-account input[type="password"]::placeholder,
body.woocommerce-account input[type="textarea"]::placeholder,
.woocommerce-form-login input[type="text"]::placeholder,
.woocommerce-form-login input[type="email"]::placeholder,
.woocommerce-form-login input[type="number"]::placeholder,
.woocommerce-form-login input[type="password"]::placeholder,
.woocommerce-form-login input[type="textarea"]::placeholder,
.woocommerce-form-coupon input[type="text"]::placeholder,
.woocommerce-form-coupon input[type="email"]::placeholder,
.woocommerce-form-coupon input[type="number"]::placeholder,
.woocommerce-form-coupon input[type="password"]::placeholder,
.woocommerce-form-coupon input[type="textarea"]::placeholder,
.woocommerce-form-register input[type="text"]::placeholder,
.woocommerce-form-register input[type="email"]::placeholder,
.woocommerce-form-register input[type="number"]::placeholder,
.woocommerce-form-register input[type="password"]::placeholder,
.woocommerce-form-register input[type="textarea"]::placeholder {
	color: #e5e5e5;
}

.woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	margin-left: -15px;
	margin-right: -15px;
	margin-bottom: 30px;
}

.woocommerce-billing-fields h3 {
	font-size: 50px;
	margin-bottom: 50px;
}

#billing_email_field,
#billing_first_name_field,
#billing_last_name_field,
#billing_company_field,
#billing_country_field,
#billing_postcode_field,
#billing_city_field,
#billing_phone_field,
#billing_state_field {
	width: 33.33% !important;
	;
	float: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 15px;
	padding-right: 15px;
}

#billing_address_1_field {
	width: 66.66% !important;
	;
	padding-left: 20px;
	padding-right: 20px;
}

form.woocommerce-checkout textarea {
	padding-top: 10px;
	padding-bottom: 10px;
}

form.woocommerce-checkout .woocommerce-input-wrapper {
	display: block;
	width: 100%;
}

form.woocommerce-checkout .select2-container .select2-selection--single {
	height: 45px !important;
	border-radius: 0 !important;
	border-color: #7c7c7c;
	border-top: none;
	border-left: none;
	border-right: none;
}

form.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 45px !important;
}

form.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 45px !important;
}

form.woocommerce-checkout .col-2 .woocommerce-additional-fields {
	margin-bottom: 100px;
}

.woocommerce-checkout #payment {
	border-radius: 0;
}

.woocommerce-privacy-policy-text {
	font-size: 14px;
}

#add_payment_method #payment ul.payment_methods .stripe-card-group,
.woocommerce-checkout #payment ul.payment_methods .stripe-card-group,
.wc-stripe-elements-field,
.wc-stripe-iban-element-field {
	width: 100%;
}

.woocommerce-checkout #payment div.payment_box .form-row {
	margin-bottom: 0;
}

.woocommerce table.shop_table {
	font-family: 'Veneer Clean', sans-serif;
	font-weight: 300;
}

form.woocommerce-checkout label {
	display: inline-block;
	width: auto;
}

.woocommerce-SavedPaymentMethods-saveNew {
	font-size: 16px;
	line-height: 1em;
	display: flex;
	align-items: flex-start;
}

.woocommerce-SavedPaymentMethods-saveNew label {
	line-height: 1em;
	margin-bottom: 0;
	margin-top: -5px;
}

nav.woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	border-bottom: 2px solid #e5e5e5;
	max-width: 355.5px;
	width: 100%;
	margin-top: 0;
	display: none;
}

nav.woocommerce-MyAccount-navigation ul:first-child {
	display: block;
}

nav.woocommerce-MyAccount-navigation ul li a {
	display: block;
	color: #000;
	font-size: 20px;
	padding: 20px 35px 20px 25px;
	text-decoration: none;
	text-decoration: none;
	border-top: 2px solid #e5e5e5;
	border-left: 2px solid #e5e5e5;
	border-right: 2px solid #e5e5e5;
	font-family: 'Veneer Clean', sans-serif;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center right 10px;
	background-size: 21px auto;
	transition: all .3s;
}

nav.woocommerce-MyAccount-navigation ul li a:hover,
nav.woocommerce-MyAccount-navigation ul li.is-active a {
	background-image: url(../images/icon-check.png);
	background-color: #f4b333;
	color: #fff;
}

/* popup */

body #pum-635 {
	background-color: rgba(0, 0, 0, .9);
}

body .pum-theme-626 .pum-title,
body .pum-theme-default-theme .pum-title {
	font-size: 75px !important;
	font-family: 'Veneer Clean', sans-serif;
	font-weight: 300;
	text-align: center;
	line-height: 1em;
}

body .pum-theme-626 .pum-content,
body .pum-theme-default-theme .pum-content {
	color: #000;
	font-size: 20px;
	line-height: 1.5em;
}

body .pum-theme-626 .pum-container,
body .pum-theme-default-theme .pum-container {
	padding: 40px;
	font-size: 20px;
	color: #000;
	outline: none !important;
}

.pum-theme-626 .pum-container .mc4wp-form-fields input,
.pum-theme-default-theme .pum-container .mc4wp-form-fields input {
	width: 100%;
	display: block;
	height: 50px;
	margin-bottom: 15px;
	border-radius: 0;
	border: none;
	padding: 0 15px
}

.pum-theme-626 .pum-container .mc4wp-form-fields input[type="text"],
.pum-theme-626 .pum-container .mc4wp-form-fields input[type="email"] {
	background-color: rgba(0, 0, 0, .05);
}

.pum-theme-626 .pum-container .mc4wp-form-fields input[type="submit"] {
	background-color: #f4b333;
	font-family: 'Veneer Clean', sans-serif;
	font-size: 25px;
	letter-spacing: .05em;
	cursor: pointer;
	transition: all .3s;
}

.pum-theme-626 .pum-container .mc4wp-form-fields input[type="submit"]:hover {
	background-color: #eba823;
}

.pum-theme-626 .pum-content,
.pum-theme-default-theme .pum-content {
	outline: none !important;
}


.pum-theme-626 button.pum-close.popmake-close {
	background-color: transparent;
	color: #000;
	box-shadow: none;
	height: auto;
	width: auto;
	font-family: sans-serif;
	font-size: 18px;
	line-height: 1em;
	margin-top: 5px;
	margin-right: 5px;
	outline: none !important;
}

.pum-theme-626 .mc4wp-alert {
	font-size: 16px;
	text-align: center;
}

.pum-theme-626 .mc4wp-alert.mc4wp-error {
	color: red;
}

.woocommerce-product-details__short-description,
.nutritional-values,
.single-shop-payments {
	display: none;
}


.woocommerce div.product div.summary .woocommerce-product-details__short-description,
.woocommerce div.product div.summary .nutritional-values {
	display: block;
}

.woocommerce div.product div.summary .single-shop-payments {
	display: flex;
}

.woocommerce button[name="update_cart"],
.woocommerce input[name="update_cart"] {
	display: none;
}

.woocommerce-shipping-destination,
.woocommerce-shipping-calculator,
.shipping-calculator-button {
	display: none !important;
}

body.woocommerce-cart .woocommerce table.shop_table {
	border-left: none;
	border-right: none;
	border-bottom: none;
}

body.woocommerce-cart {
	background-color: #f8f8f8;
}

body.woocommerce-cart .product-name a,
body.woocommerce-cart .product-name {
	font-weight: 300;
	font-family: 'Veneer Clean', sans-serif;
	font-size: 25px;
	color: #000;
}

body.woocommerce-cart .product-name a:hover {
	text-decoration: none;
	color: #f4b333;
}

body.woocommerce-cart .product-name .woocommerce-Price-amount {
	display: block;
	color: #939393;
	font-weight: 300;
	font-family: 'Veneer Clean', sans-serif;
	font-size: 25px;
	line-height: 1em;
}

body.woocommerce-cart .woocommerce-cart-form__cart-item {
	padding-top: 30px;
	padding-bottom: 30px;
}

body.woocommerce-cart .woocommerce-cart-form__cart-item .variation {
	font-size: .7em;
	margin-bottom: 5px;
}

.woocommerce td.product-name dl.variation {
	overflow: hidden;
	line-height: 1em;
}

#min-cart-wrap dl p {
	margin-bottom: 0;
}

#min-cart-wrap dl dt {
	float: left;
	margin-right: 10px;
}

body.woocommerce-cart .cart-increment-decrement {
	width: 130px;
	background: #fff;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

body.woocommerce-cart .cart-increment-decrement .decrement,
body.woocommerce-cart .cart-increment-decrement .increment {
	cursor: pointer;
}

body.woocommerce-cart .cart-increment-decrement .decrement,
body.woocommerce-cart .cart-increment-decrement .increment,
body.woocommerce-cart .cart-increment-decrement .cart-items-numbers {
	display: inline-block;
	padding: 20px;
	line-height: 0;
	user-select: none;
}

body.woocommerce-cart .woocommerce {
	user-select: none;
}

body.woocommerce-cart .product-quantity .quantity {
	display: none;
}

body.woocommerce-cart table.cart td.actions {
	display: none;
}

body.woocommerce-cart .cart-table .cart-subtotal {
	background-color: #fff;
	height: 80px;
}

@media (min-width: 1200px) {
	body.woocommerce-cart .container {
		max-width: 1500px;
	}
}

body.woocommerce-cart #pwgc-redeem-gift-card-container br {
	display: none;
}

body.woocommerce-cart .max-coupon label,
body.woocommerce-cart #pwgc-redeem-gift-card-container label {
	display: block;
}

body.woocommerce-cart .max-coupon {
	border-top: 1px solid rgba(0, 0, 0, .1);
}

body.woocommerce-cart .max-coupon,
body.woocommerce-cart #pwgc-redeem-gift-card-container {
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	margin-left: 20px;
	margin-right: 20px;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 20px;
	padding-bottom: 20px;
}

body.woocommerce-cart .max-coupon:not(.active) *,
body.woocommerce-cart #pwgc-redeem-gift-card-container:not(.active) * {
	display: none;
}

body.woocommerce-cart .max-coupon label,
body.woocommerce-cart #pwgc-redeem-gift-card-container label {
	display: block !important;
	margin-bottom: 0;
	position: relative;
	cursor: pointer;
}

body.woocommerce-cart .max-coupon label:before,
body.woocommerce-cart #pwgc-redeem-gift-card-container label:before {
	content: '+';
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translate(0, -50%);
}



body.woocommerce-cart .max-coupon.active label,
body.woocommerce-cart #pwgc-redeem-gift-card-container.active label {
	margin-bottom: 25px;
}


body.woocommerce-cart .max-coupon.active label:before,
body.woocommerce-cart #pwgc-redeem-gift-card-container.active label:before {
	content: '-';
}


.woocommerce-cart .wc-proceed-to-checkout {
	padding-top: 0;
	padding-bottom: 30px;
}

body.woocommerce-cart .woocommerce .cart-collaterals input[type="text"] {
	height: 45px !important;
	border-radius: 0 !important;
	border: 1px solid rgba(0, 0, 0, .1);
	padding: 0 10px;
}

body.woocommerce-cart .woocommerce .cart-collaterals input[type="text"]::placeholder {
	color: #939393;
}

body.woocommerce-cart .woocommerce .cart-collaterals .checkout-button {
	margin-left: 30px;
	margin-right: 30px;
	margin-top: 40px;
}

body.woocommerce-cart .cart-collaterals .product-recommendtations {
	background-color: #fff;
	display: flex;
	align-items: center;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 25px;
	padding-bottom: 25px;
	color: #000;
	text-decoration: none;
}

body.woocommerce-cart .cart-collaterals .product-recommendtations h3 {
	font-size: 20px;
	margin-bottom: 0;
	margin-top: 0;
}

body.woocommerce-cart .cart-collaterals .product-recommendtations img {
	max-width: 70px;
	margin-right: 5px;
}


/*Login*/
body.page-id-754 h1,
body.page-id-756 h1 {
	color: #402021;
	margin-bottom: 50px;
}


.woocommerce-form-login .form-row-first,
.woocommerce-form-register .form-row-first {
	width: calc(50% - 25px);
	float: left;
	margin-right: 25px;
}

.woocommerce-form-login .form-row-last,
.woocommerce-form-register .form-row-last {
	width: calc(50% - 25px);
	float: right;
	margin-right: 25px;
}

.woocommerce-form-register .mx-button.button-transparent-black {
	min-width: 366px;
}

.submit-forgot-password {
	display: flex;
	align-items: center;
}

.submit-forgot-password p {
	margin-bottom: 0;
	font-size: 15px;
}


.submit-forgot-password .lost_password a {
	color: #000;
	margin-left: 30px;
}

.woocommerce-form-login__rememberme {
	font-size: 18px;
}

.woocommerce-form-login__rememberme span {
	margin-left: 4px;
	font-family: 'Sanchez', serif;
}

body.page-id-754 .create-account-link,
body.page-id-756 .login-account-link {
	margin-top: 70px;
	font-size: 30px;
	position: relative;
	padding-top: 24px;
	text-decoration: none;
}

body.page-id-754 .create-account-link:before,
body.page-id-756 .login-account-link:before {
	content: '';
	width: 125px;
	height: 1px;
	border-top: 1px solid #f4b333;
	position: absolute;
	top: 0;
	left: 0;
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle {
	display: none;
}

.mc4wp-checkbox {
	font-family: 'Veneer Clean', sans-serif;
}

.mc4wp-checkbox input[type="checkbox"],
form.woocommerce-checkout input[type="checkbox"] {
	border: 2px solid #f4b333;
	border-radius: 2px;
	background: #fff;
	color: #50575e;
	clear: none;
	cursor: pointer;
	display: inline-block;
	line-height: 0;
	outline: 0;
	padding: 0 !important;
	text-align: center;
	vertical-align: middle;
	height: 20px !important;
	width: 20px !important;
	display: inline-block !important;
	-webkit-appearance: none;
	transition: .05s background ease-in-out;
	position: relative;
	margin-left: 0 !important;
	margin-bottom: 0 !important;
	margin-right: 7px !important;
	;
	margin-top: -1px !important;
	;
}


.mc4wp-checkbox input[type=checkbox]:checked,
form.woocommerce-checkout input[type="checkbox"]:checked {
	background-color: #f4b333;
}

.mc4wp-checkbox input[type=checkbox]::before,
form.woocommerce-checkout input[type="checkbox"]::before {
	content: '';
	width: 20px;
	height: 20px;
	background-image: url(../images/checkbox-check.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px auto;
	position: absolute;
	display: inline-block;
	top: 2;
	left: 2;
	z-index: 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
}

.mc4wp-checkbox input[type=checkbox]:checked::before,
form.woocommerce-checkout input[type="checkbox"]:checked::before {
	opacity: 1;
}

.woocommerce form.checkout .woocommerce-billing-fields label,
.woocommerce form.checkout .woocommerce-additional-fields {
	display: none;
}

.woocommerce form.checkout .woocommerce-billing-fields .mc4wp-checkbox-woocommerce label {
	display: block;
}

.woocommerce-pagination,
.woocommerce-tabs.wc-tabs-wrapper {
	display: none;
}