/*! hya-theme v1.1.0 | (c) 2023 Kirill Miniaev | UNLICENSED License | 1702075531 */
@charset "UTF-8";
/**
    __ __                                 
   / //_/____ _ _____ __  __ ____   ____ _
  / ,<  / __ `// ___// / / // __ \ / __ `/
 / /| |/ /_/ // /   / /_/ // / / // /_/ / 
/_/ |_|\__,_//_/    \__,_//_/ /_/ \__,_/  

**/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*
 * Container style
 */
.ps {
	overflow: hidden !important;
	overflow-anchor: none;
	-ms-overflow-style: none;
	touch-action: auto;
	-ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
	display: none;
	opacity: 0;
	transition: background-color 0.2s linear, opacity 0.2s linear;
	-webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
	height: 15px;
	/* there must be 'bottom' or 'top' for ps__rail-x */
	bottom: 0px;
	/* please don't change 'position' */
	position: absolute;
}

.ps__rail-y {
	display: none;
	opacity: 0;
	transition: background-color 0.2s linear, opacity 0.2s linear;
	-webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
	width: 15px;
	/* there must be 'right' or 'left' for ps__rail-y */
	right: 0 !important;
	/* please don't change 'position' */
	position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
	display: block;
	background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
	opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
	background-color: #eee;
	opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
	background-color: #aaa;
	border-radius: 6px;
	transition: background-color 0.2s linear, height 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
	height: 6px;
	/* there must be 'bottom' for ps__thumb-x */
	bottom: 2px;
	/* please don't change 'position' */
	position: absolute;
}

.ps__thumb-y {
	background-color: #aaa;
	border-radius: 6px;
	transition: background-color 0.2s linear, width 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
	width: 6px;
	/* there must be 'right' for ps__thumb-y */
	right: 2px;
	/* please don't change 'position' */
	position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
	background-color: #999;
	height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
	background-color: #999;
	width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
	.ps {
		overflow: auto !important;
	}
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.ps {
		overflow: auto !important;
	}
}
/*
 * Glide Slider
 */
.glide {
	position: relative;
	width: 100%;
	box-sizing: border-box;
}

.glide * {
	box-sizing: inherit;
}

.glide__track {
	overflow: hidden;
}

.glide__slides {
	position: relative;
	width: 100%;
	list-style: none;
	backface-visibility: hidden;
	transform-style: preserve-3d;
	touch-action: pan-Y;
	overflow: hidden;
	padding: 0;
	white-space: nowrap;
	display: flex;
	flex-wrap: nowrap;
	will-change: transform;
	align-items: center;
}

.glide__slides--dragging {
	user-select: none;
}

.glide__slide {
	width: 100%;
	height: 100%;
	flex-shrink: 0;
	white-space: normal;
	user-select: none;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: transparent;
}

.glide__slide a {
	user-select: none;
	-webkit-user-drag: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.glide__arrows {
	-webkit-touch-callout: none;
	user-select: none;
}

.glide__bullets {
	-webkit-touch-callout: none;
	user-select: none;
}

.glide--rtl {
	direction: rtl;
}

/*
 * Vanilla Zoom
 */
.vanilla-zoom {
	width: 100%;
	display: flex;
}

.vanilla-zoom .sidebar {
	flex-basis: 30%;
	display: flex;
	flex-direction: column;
}

.vanilla-zoom .sidebar img.small-preview {
	width: 100%;
	margin-bottom: 5px;
	cursor: pointer;
}

.vanilla-zoom .sidebar img.small-preview:last-child {
	margin-bottom: 0;
}

.vanilla-zoom .zoomed-image {
	flex: 1;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin-left: 5px;
}

@media (max-width: 768px) {
	.vanilla-zoom .sidebar {
		flex: 1;
	}
	.vanilla-zoom .sidebar img.small-preview {
		cursor: auto;
		margin-bottom: 12px;
	}
	.vanilla-zoom .zoomed-image {
		display: none;
	}
}
/** Gradients */
/** Responsive Breakpoints */
/** Mixins */
/**
 * MS Grid
 */
.m-button, .m-coupon input[type=submit], .m-gateway__fields .button, .m-checkout__form input[type=submit], .m-updatecartitem input[type=submit], .m-comments input[type=submit], .m-login form input[type=submit],
.m-register form input[type=submit], .m-leavereview__body form input[type=submit], .m-account__addpayment form input[type=submit], .m-bb footer input[type=submit], .m-bb input[type=submit] {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	font-weight: 600;
	padding: 1rem 2rem;
	border-radius: 1.6rem;
	transition: all 250ms ease-in-out;
	position: relative;
	cursor: pointer;
	border: 0;
	line-height: 1.2;
}
@media (min-width: 768px) {
	.m-button, .m-coupon input[type=submit], .m-gateway__fields .button, .m-checkout__form input[type=submit], .m-updatecartitem input[type=submit], .m-comments input[type=submit], .m-login form input[type=submit],
	.m-register form input[type=submit], .m-leavereview__body form input[type=submit], .m-account__addpayment form input[type=submit], .m-bb footer input[type=submit], .m-bb input[type=submit] {
		font-size: 1.6rem;
		padding: 1.4rem 2.6rem;
	}
}
.m-button--small, .m-updatecartitem input[type=submit], .m-productgrid mini-product .m-button, .m-productgrid mini-product .m-coupon input[type=submit], .m-coupon .m-productgrid mini-product input[type=submit], .m-productgrid mini-product .m-gateway__fields .button, .m-gateway__fields .m-productgrid mini-product .button, .m-productgrid mini-product .m-checkout__form input[type=submit], .m-checkout__form .m-productgrid mini-product input[type=submit], .m-productgrid mini-product .m-comments input[type=submit], .m-comments .m-productgrid mini-product input[type=submit], .m-productgrid mini-product .m-bb input[type=submit], .m-bb .m-productgrid mini-product input[type=submit], .m-productgrid mini-product .m-account__addpayment form input[type=submit], .m-account__addpayment form .m-productgrid mini-product input[type=submit], .m-productgrid mini-product .m-leavereview__body form input[type=submit], .m-leavereview__body form .m-productgrid mini-product input[type=submit], .m-productgrid mini-product .m-login form input[type=submit], .m-login form .m-productgrid mini-product input[type=submit],
.m-productgrid mini-product .m-register form input[type=submit],
.m-register form .m-productgrid mini-product input[type=submit] {
	font-size: 1.4rem;
	padding: 1rem 1.6rem;
}
.m-button--xsmall {
	font-size: 1.2rem;
	padding: 0.8rem 1rem;
}
.m-button span, .m-coupon input[type=submit] span, .m-gateway__fields .button span, .m-checkout__form input[type=submit] span, .m-updatecartitem input[type=submit] span, .m-comments input[type=submit] span, .m-login form input[type=submit] span,
.m-register form input[type=submit] span, .m-leavereview__body form input[type=submit] span, .m-account__addpayment form input[type=submit] span, .m-bb input[type=submit] span {
	z-index: 3;
	pointer-events: none;
}
.m-button::before, .m-coupon input[type=submit]::before, .m-gateway__fields .button::before, .m-checkout__form input[type=submit]::before, .m-updatecartitem input[type=submit]::before, .m-comments input[type=submit]::before, .m-login form input[type=submit]::before,
.m-register form input[type=submit]::before, .m-leavereview__body form input[type=submit]::before, .m-account__addpayment form input[type=submit]::before, .m-bb input[type=submit]::before {
	content: "";
	position: absolute;
	top: -0.3rem;
	left: -0.3rem;
	right: -0.3rem;
	bottom: -0.3rem;
	border: 0.1rem solid #DCDEE0;
	border-radius: 2rem;
}
.m-button--white {
	background-color: #fff;
	color: #014675 !important;
	border: 1px solid #014675;
}
.m-button--white::before {
	content: none;
}
.m-button--white:hover {
	color: #014675 !important;
	transform: translateY(-2px);
	filter: drop-shadow(0 8px 1.5rem rgba(0, 0, 0, 0.1));
	border: 1px solid #014675;
}
.m-button--o-white, .m-leavereview__header .m-button, .m-leavereview__header .m-coupon input[type=submit], .m-coupon .m-leavereview__header input[type=submit], .m-leavereview__header .m-gateway__fields .button, .m-gateway__fields .m-leavereview__header .button, .m-leavereview__header .m-checkout__form input[type=submit], .m-checkout__form .m-leavereview__header input[type=submit], .m-leavereview__header .m-updatecartitem input[type=submit], .m-updatecartitem .m-leavereview__header input[type=submit], .m-leavereview__header .m-comments input[type=submit], .m-comments .m-leavereview__header input[type=submit], .m-leavereview__header .m-login form input[type=submit], .m-login form .m-leavereview__header input[type=submit],
.m-leavereview__header .m-register form input[type=submit],
.m-register form .m-leavereview__header input[type=submit], .m-leavereview__header .m-leavereview__body form input[type=submit], .m-leavereview__body form .m-leavereview__header input[type=submit], .m-leavereview__header .m-bb input[type=submit], .m-bb .m-leavereview__header input[type=submit], .m-leavereview__header .m-account__addpayment form input[type=submit], .m-account__addpayment form .m-leavereview__header input[type=submit] {
	background: none;
	color: #fff !important;
	border: 0.2rem solid #fff;
}
.m-button--o-white::before, .m-leavereview__header .m-button::before, .m-leavereview__header .m-coupon input[type=submit]::before, .m-coupon .m-leavereview__header input[type=submit]::before, .m-leavereview__header .m-gateway__fields .button::before, .m-gateway__fields .m-leavereview__header .button::before, .m-leavereview__header .m-checkout__form input[type=submit]::before, .m-checkout__form .m-leavereview__header input[type=submit]::before, .m-leavereview__header .m-updatecartitem input[type=submit]::before, .m-updatecartitem .m-leavereview__header input[type=submit]::before, .m-leavereview__header .m-comments input[type=submit]::before, .m-comments .m-leavereview__header input[type=submit]::before, .m-leavereview__header .m-login form input[type=submit]::before, .m-login form .m-leavereview__header input[type=submit]::before,
.m-leavereview__header .m-register form input[type=submit]::before,
.m-register form .m-leavereview__header input[type=submit]::before, .m-leavereview__header .m-leavereview__body form input[type=submit]::before, .m-leavereview__body form .m-leavereview__header input[type=submit]::before, .m-leavereview__header .m-bb input[type=submit]::before, .m-bb .m-leavereview__header input[type=submit]::before, .m-leavereview__header .m-account__addpayment form input[type=submit]::before, .m-account__addpayment form .m-leavereview__header input[type=submit]::before {
	content: none;
}
.m-button--o-white:hover, .m-leavereview__header .m-button:hover, .m-leavereview__header .m-coupon input[type=submit]:hover, .m-coupon .m-leavereview__header input[type=submit]:hover, .m-leavereview__header .m-gateway__fields .button:hover, .m-gateway__fields .m-leavereview__header .button:hover, .m-leavereview__header .m-checkout__form input[type=submit]:hover, .m-checkout__form .m-leavereview__header input[type=submit]:hover, .m-leavereview__header .m-updatecartitem input[type=submit]:hover, .m-updatecartitem .m-leavereview__header input[type=submit]:hover, .m-leavereview__header .m-comments input[type=submit]:hover, .m-comments .m-leavereview__header input[type=submit]:hover, .m-leavereview__header .m-login form input[type=submit]:hover, .m-login form .m-leavereview__header input[type=submit]:hover,
.m-leavereview__header .m-register form input[type=submit]:hover,
.m-register form .m-leavereview__header input[type=submit]:hover, .m-leavereview__header .m-leavereview__body form input[type=submit]:hover, .m-leavereview__body form .m-leavereview__header input[type=submit]:hover, .m-leavereview__header .m-bb input[type=submit]:hover, .m-bb .m-leavereview__header input[type=submit]:hover, .m-leavereview__header .m-account__addpayment form input[type=submit]:hover, .m-account__addpayment form .m-leavereview__header input[type=submit]:hover {
	color: #014675 !important;
	background: #fff;
	border: 0.2rem solid #fff;
}
.m-button--o-orange {
	background: none;
	color: #edab2f !important;
	border: 0.2rem solid #edab2f;
}
.m-button--o-orange::before {
	content: none;
}
.m-button--o-orange:hover {
	color: #fff !important;
	background: #edab2f;
	border: 0.2rem solid #edab2f;
}
.m-button--blue, .m-minicart__actions .m-button--primary {
	background: #014675;
	color: #fff !important;
}
.m-button--blue:hover, .m-minicart__actions .m-button--primary:hover {
	color: #fff !important;
	transform: translateY(-2px);
	filter: drop-shadow(0 8px 1.5rem rgba(0, 0, 0, 0.1));
}
.m-button--blue-l {
	background: #71bfff;
	color: #fff !important;
}
.m-button--blue-l:hover {
	color: #fff !important;
	transform: translateY(-2px);
	filter: drop-shadow(0 8px 1.5rem rgba(0, 0, 0, 0.1));
}
.m-button--orange, .m-coupon input[type=submit], .m-gateway__fields .button, .m-checkout__form input[type=submit], .m-updatecartitem input[type=submit], .m-comments input[type=submit], .m-login form input[type=submit],
.m-register form input[type=submit], .m-minicart__actions .m-button--secondary, .m-minipost__content .m-button-container .m-button, .m-minipost__content .m-button-container .m-coupon input[type=submit], .m-coupon .m-minipost__content .m-button-container input[type=submit], .m-minipost__content .m-button-container .m-gateway__fields .button, .m-gateway__fields .m-minipost__content .m-button-container .button, .m-minipost__content .m-button-container .m-checkout__form input[type=submit], .m-checkout__form .m-minipost__content .m-button-container input[type=submit], .m-minipost__content .m-button-container .m-updatecartitem input[type=submit], .m-updatecartitem .m-minipost__content .m-button-container input[type=submit], .m-minipost__content .m-button-container .m-comments input[type=submit], .m-comments .m-minipost__content .m-button-container input[type=submit], .m-minipost__content .m-button-container .m-login form input[type=submit], .m-login form .m-minipost__content .m-button-container input[type=submit],
.m-minipost__content .m-button-container .m-register form input[type=submit],
.m-register form .m-minipost__content .m-button-container input[type=submit], .m-minipost__content .m-button-container .m-bb input[type=submit], .m-bb .m-minipost__content .m-button-container input[type=submit], .m-minipost__content .m-button-container .m-account__addpayment form input[type=submit], .m-account__addpayment form .m-minipost__content .m-button-container input[type=submit], .m-minipost__content .m-button-container .m-leavereview__body form input[type=submit], .m-leavereview__body form .m-minipost__content .m-button-container input[type=submit], .m-reviews__action .m-button, .m-leavereview__body form input[type=submit], .m-miniprod__footer .m-button, .m-account__addpayment form input[type=submit], .m-bb input[type=submit] {
	background: #edab2f;
	color: #fff !important;
}
.m-button--orange:hover, .m-coupon input[type=submit]:hover, .m-gateway__fields .button:hover, .m-checkout__form input[type=submit]:hover, .m-updatecartitem input[type=submit]:hover, .m-comments input[type=submit]:hover, .m-login form input[type=submit]:hover,
.m-register form input[type=submit]:hover, .m-minicart__actions .m-button--secondary:hover, .m-minipost__content .m-button-container .m-button:hover, .m-reviews__action .m-button:hover, .m-leavereview__body form input[type=submit]:hover, .m-miniprod__footer .m-button:hover, .m-account__addpayment form input[type=submit]:hover, .m-bb input[type=submit]:hover {
	color: #fff !important;
	transform: translateY(-2px);
	filter: drop-shadow(0 8px 1.5rem rgba(0, 0, 0, 0.1));
}
.m-button--arrow::after {
	content: "";
	display: inline-block;
	width: 0.6rem;
	height: 0.6rem;
	transform: rotate(45deg) translate(-1px, -1px);
	border: 0.3rem solid #fff;
	border-width: 0 0.3rem 0.3rem 0;
	margin: 0 0 0 0.5rem;
}
.m-button--arrow.active::after {
	border-width: 0.3rem 0 0 0.3rem;
	transform: rotate(45deg) translateY(0px);
}
.m-button--arrow.m-button--o-orange::after {
	border-color: #edab2f;
}
.m-button--arrow.m-button--o-orange:hover::after {
	border-color: #fff;
}
.m-button__icn--play {
	margin: 0 0 0 1rem;
	position: relative;
	top: 0.1rem;
}

.m-select {
	display: block;
	width: 100%;
	cursor: pointer;
	font-size: 1.6rem;
	color: #000;
	padding: 1rem 1.5rem 1rem 1rem;
	background-color: #fff;
	font-family: "poppins", arial, sans-serif;
	border: 1px solid #847e78;
}
.m-select__parent {
	display: block;
	width: 100%;
	position: relative;
}
.m-select__parent::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 0.6rem solid #302d2b;
	border-left: 0.6rem solid transparent;
	border-right: 0.6rem solid transparent;
	border-bottom: 0rem solid transparent;
	pointer-events: none;
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	right: 1rem;
}
.m-select__parent--multi::after {
	content: none;
}
.m-select__parent--multi select {
	min-height: 10rem;
}
.m-select.invalid {
	border-color: #ef1644;
}
.m-select:focus {
	border-color: #302d2b;
}

@keyframes spinner {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.gform_ajax_spinner,
.spinner,
.m-cartsummary::after,
.m-checkout__form::after,
.m-minicart__items::after,
.m-leavereview__body form::after,
.m-savedcards::after,
.m-bb::after {
	display: inline-block;
	border: 4px solid rgba(0, 0, 0, 0.2);
	border-left-color: #014675;
	border-radius: 50%;
	width: 3rem;
	height: 3rem;
	animation: spinner 1.2s linear infinite;
}

.hide {
	display: none !important;
}

html, body {
	width: 100%;
	height: 100%;
}

html {
	font-size: 62.5%;
}

body {
	box-sizing: border-box;
	font-family: "poppins", arial, sans-serif;
	font-size: 1.4rem;
	color: #302d2b;
	overflow-x: hidden;
}
@media (min-width: 768px) {
	body {
		font-size: 1.5rem;
	}
}

*, *:before, *:after {
	box-sizing: inherit;
}

.m-heading {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.m-heading h1, .m-heading h2, .m-heading h3 {
	display: block;
	width: 100%;
}
.m-heading__preheader {
	color: #edab2f;
	letter-spacing: 0.2rem;
	font-weight: 500;
	display: block;
	margin-bottom: 1.4rem;
	text-transform: uppercase;
}
.m-heading__preheader--white {
	color: #fff;
}
.m-heading__preheader--orange {
	color: #edab2f;
}
.m-heading__preheader--orange-bg {
	color: #fff;
	background-color: #edab2f;
	border-radius: 6rem;
	padding: 1.5rem 2rem;
}
.m-heading__preheader--blue {
	color: #014675;
}
.m-heading__preheader--blue-l {
	color: #71bfff;
}
.m-heading__preheader--gray {
	color: #605a55;
}
.m-heading__postheader {
	color: #edab2f;
	letter-spacing: 0.1rem;
	font-weight: 500;
	font-size: 1.3rem;
}
.m-heading__postheader--white {
	color: #fff;
}
.m-heading__postheader--orange {
	color: #edab2f;
}
.m-heading__postheader--blue {
	color: #014675;
}
.m-heading__postheader--blue-l {
	color: #71bfff;
}
.m-heading__postheader--gray {
	color: #605a55;
}
.m-heading__title {
	display: block;
}
.m-heading__title--white {
	color: #fff;
}
.m-heading__title--orange {
	color: #edab2f;
}
.m-heading__title--blue {
	color: #014675;
}
.m-heading__title--blue-l {
	color: #71bfff;
}
.m-heading__title--gray {
	color: #605a55;
}
.m-heading__title--1 {
	font-family: "epicursive", arial, sans-serif;
	margin-bottom: 0.5rem;
}
.m-heading__title--2 {
	font-weight: 300;
	letter-spacing: -0.1rem;
}
@media (min-width: 1220px) {
	.m-heading--left .m-heading__title--1 {
		margin-left: -4rem;
	}
}
@media (min-width: 1220px) {
	.m-heading--left .m-heading__postheader {
		padding-left: 4rem;
	}
}
.m-heading--center {
	justify-content: center;
}
.m-heading--right {
	justify-content: flex-end;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "poppins", arial, sans-serif;
	color: #014675;
}

h1, h2, h3 {
	margin-bottom: 1rem;
}
@media (min-width: 768px) {
	h1, h2, h3 {
		margin-bottom: 1.5rem;
	}
}
@media (min-width: 1024px) {
	h1, h2, h3 {
		margin-bottom: 2rem;
	}
}

h1 h1, h1 h2, h1 h3, h1 h4, h1 h5,
.m-heading--xl h1,
.m-heading--xl h2,
.m-heading--xl h3,
.m-heading--xl h4,
.m-heading--xl h5 {
	font-size: 3.8rem;
	line-height: 1.2;
}
@media (min-width: 768px) {
	h1 h1, h1 h2, h1 h3, h1 h4, h1 h5,
	.m-heading--xl h1,
	.m-heading--xl h2,
	.m-heading--xl h3,
	.m-heading--xl h4,
	.m-heading--xl h5 {
		font-size: 4.8rem;
	}
}
@media (min-width: 1024px) {
	h1 h1, h1 h2, h1 h3, h1 h4, h1 h5,
	.m-heading--xl h1,
	.m-heading--xl h2,
	.m-heading--xl h3,
	.m-heading--xl h4,
	.m-heading--xl h5 {
		font-size: 5.4rem;
	}
}
h1 h1 *, h1 h1 a, h1 h2 *, h1 h2 a, h1 h3 *, h1 h3 a, h1 h4 *, h1 h4 a, h1 h5 *, h1 h5 a,
.m-heading--xl h1 *,
.m-heading--xl h1 a,
.m-heading--xl h2 *,
.m-heading--xl h2 a,
.m-heading--xl h3 *,
.m-heading--xl h3 a,
.m-heading--xl h4 *,
.m-heading--xl h4 a,
.m-heading--xl h5 *,
.m-heading--xl h5 a {
	line-height: 1;
}
h1 h1 .m-heading__preheader, h1 h2 .m-heading__preheader, h1 h3 .m-heading__preheader, h1 h4 .m-heading__preheader, h1 h5 .m-heading__preheader,
.m-heading--xl h1 .m-heading__preheader,
.m-heading--xl h2 .m-heading__preheader,
.m-heading--xl h3 .m-heading__preheader,
.m-heading--xl h4 .m-heading__preheader,
.m-heading--xl h5 .m-heading__preheader {
	font-size: 1.9rem;
}
h1 h1 .m-heading__title--1, h1 h2 .m-heading__title--1, h1 h3 .m-heading__title--1, h1 h4 .m-heading__title--1, h1 h5 .m-heading__title--1,
.m-heading--xl h1 .m-heading__title--1,
.m-heading--xl h2 .m-heading__title--1,
.m-heading--xl h3 .m-heading__title--1,
.m-heading--xl h4 .m-heading__title--1,
.m-heading--xl h5 .m-heading__title--1 {
	font-size: 5.8rem;
}
@media (min-width: 768px) {
	h1 h1 .m-heading__title--1, h1 h2 .m-heading__title--1, h1 h3 .m-heading__title--1, h1 h4 .m-heading__title--1, h1 h5 .m-heading__title--1,
	.m-heading--xl h1 .m-heading__title--1,
	.m-heading--xl h2 .m-heading__title--1,
	.m-heading--xl h3 .m-heading__title--1,
	.m-heading--xl h4 .m-heading__title--1,
	.m-heading--xl h5 .m-heading__title--1 {
		font-size: 6.8rem;
	}
}
@media (min-width: 1024px) {
	h1 h1 .m-heading__title--1, h1 h2 .m-heading__title--1, h1 h3 .m-heading__title--1, h1 h4 .m-heading__title--1, h1 h5 .m-heading__title--1,
	.m-heading--xl h1 .m-heading__title--1,
	.m-heading--xl h2 .m-heading__title--1,
	.m-heading--xl h3 .m-heading__title--1,
	.m-heading--xl h4 .m-heading__title--1,
	.m-heading--xl h5 .m-heading__title--1 {
		font-size: 8.8rem;
	}
}
@media (min-width: 1024px) {
	h1 .m-heading__preheader,
	.m-heading--xl .m-heading__preheader {
		font-size: 1.8rem;
	}
}

h2,
.m-heading--lg h1,
.m-heading--lg h2,
.m-heading--lg h3,
.m-heading--lg h4,
.m-heading--lg h5 {
	font-size: 3.5rem;
	line-height: 1;
}
@media (min-width: 768px) {
	h2,
	.m-heading--lg h1,
	.m-heading--lg h2,
	.m-heading--lg h3,
	.m-heading--lg h4,
	.m-heading--lg h5 {
		font-size: 4.2rem;
	}
}
@media (min-width: 1024px) {
	h2,
	.m-heading--lg h1,
	.m-heading--lg h2,
	.m-heading--lg h3,
	.m-heading--lg h4,
	.m-heading--lg h5 {
		font-size: 4.8rem;
	}
}
h2 *, h2 a,
.m-heading--lg h1 *,
.m-heading--lg h1 a,
.m-heading--lg h2 *,
.m-heading--lg h2 a,
.m-heading--lg h3 *,
.m-heading--lg h3 a,
.m-heading--lg h4 *,
.m-heading--lg h4 a,
.m-heading--lg h5 *,
.m-heading--lg h5 a {
	line-height: 1;
}
h2 .m-heading__preheader,
.m-heading--lg h1 .m-heading__preheader,
.m-heading--lg h2 .m-heading__preheader,
.m-heading--lg h3 .m-heading__preheader,
.m-heading--lg h4 .m-heading__preheader,
.m-heading--lg h5 .m-heading__preheader {
	font-size: 1.7rem;
}
h2 .m-heading__title--1,
.m-heading--lg h1 .m-heading__title--1,
.m-heading--lg h2 .m-heading__title--1,
.m-heading--lg h3 .m-heading__title--1,
.m-heading--lg h4 .m-heading__title--1,
.m-heading--lg h5 .m-heading__title--1 {
	font-size: 4.8rem;
}
@media (min-width: 768px) {
	h2 .m-heading__title--1,
	.m-heading--lg h1 .m-heading__title--1,
	.m-heading--lg h2 .m-heading__title--1,
	.m-heading--lg h3 .m-heading__title--1,
	.m-heading--lg h4 .m-heading__title--1,
	.m-heading--lg h5 .m-heading__title--1 {
		font-size: 5.8rem;
	}
}
@media (min-width: 1024px) {
	h2 .m-heading__title--1,
	.m-heading--lg h1 .m-heading__title--1,
	.m-heading--lg h2 .m-heading__title--1,
	.m-heading--lg h3 .m-heading__title--1,
	.m-heading--lg h4 .m-heading__title--1,
	.m-heading--lg h5 .m-heading__title--1 {
		font-size: 6.8rem;
	}
}

h3,
.m-heading--md h1,
.m-heading--md h2,
.m-heading--md h3,
.m-heading--md h4,
.m-heading--md h5 {
	font-size: 2.8rem;
	line-height: 1;
}
h3 *, h3 a,
.m-heading--md h1 *,
.m-heading--md h1 a,
.m-heading--md h2 *,
.m-heading--md h2 a,
.m-heading--md h3 *,
.m-heading--md h3 a,
.m-heading--md h4 *,
.m-heading--md h4 a,
.m-heading--md h5 *,
.m-heading--md h5 a {
	line-height: 1;
}
@media (min-width: 768px) {
	h3,
	.m-heading--md h1,
	.m-heading--md h2,
	.m-heading--md h3,
	.m-heading--md h4,
	.m-heading--md h5 {
		font-size: 3rem;
	}
}
@media (min-width: 1024px) {
	h3,
	.m-heading--md h1,
	.m-heading--md h2,
	.m-heading--md h3,
	.m-heading--md h4,
	.m-heading--md h5 {
		font-size: 3.6rem;
	}
}
h3 .m-heading__preheader,
.m-heading--md h1 .m-heading__preheader,
.m-heading--md h2 .m-heading__preheader,
.m-heading--md h3 .m-heading__preheader,
.m-heading--md h4 .m-heading__preheader,
.m-heading--md h5 .m-heading__preheader {
	font-size: 1.5rem;
}
h3 .m-heading__title--1,
.m-heading--md h1 .m-heading__title--1,
.m-heading--md h2 .m-heading__title--1,
.m-heading--md h3 .m-heading__title--1,
.m-heading--md h4 .m-heading__title--1,
.m-heading--md h5 .m-heading__title--1 {
	font-size: 3.8rem;
}
@media (min-width: 768px) {
	h3 .m-heading__title--1,
	.m-heading--md h1 .m-heading__title--1,
	.m-heading--md h2 .m-heading__title--1,
	.m-heading--md h3 .m-heading__title--1,
	.m-heading--md h4 .m-heading__title--1,
	.m-heading--md h5 .m-heading__title--1 {
		font-size: 4.8rem;
	}
}
@media (min-width: 1024px) {
	h3 .m-heading__title--1,
	.m-heading--md h1 .m-heading__title--1,
	.m-heading--md h2 .m-heading__title--1,
	.m-heading--md h3 .m-heading__title--1,
	.m-heading--md h4 .m-heading__title--1,
	.m-heading--md h5 .m-heading__title--1 {
		font-size: 5.8rem;
	}
}

h4,
.m-heading--sm h1,
.m-heading--sm h2,
.m-heading--sm h3,
.m-heading--sm h4,
.m-heading--sm h5 {
	font-size: 2.4rem;
	line-height: 1.1;
	margin-bottom: 0.5rem;
}
h4 *, h4 a,
.m-heading--sm h1 *,
.m-heading--sm h1 a,
.m-heading--sm h2 *,
.m-heading--sm h2 a,
.m-heading--sm h3 *,
.m-heading--sm h3 a,
.m-heading--sm h4 *,
.m-heading--sm h4 a,
.m-heading--sm h5 *,
.m-heading--sm h5 a {
	line-height: 1.2;
}
@media (min-width: 768px) {
	h4,
	.m-heading--sm h1,
	.m-heading--sm h2,
	.m-heading--sm h3,
	.m-heading--sm h4,
	.m-heading--sm h5 {
		font-size: 2.7rem;
	}
}
@media (min-width: 1024px) {
	h4,
	.m-heading--sm h1,
	.m-heading--sm h2,
	.m-heading--sm h3,
	.m-heading--sm h4,
	.m-heading--sm h5 {
		font-size: 3rem;
	}
}
h4 .m-heading__preheader,
.m-heading--sm h1 .m-heading__preheader,
.m-heading--sm h2 .m-heading__preheader,
.m-heading--sm h3 .m-heading__preheader,
.m-heading--sm h4 .m-heading__preheader,
.m-heading--sm h5 .m-heading__preheader {
	font-size: 1.3rem;
	text-transform: uppercase;
}
h4 .m-heading__title--1,
.m-heading--sm h1 .m-heading__title--1,
.m-heading--sm h2 .m-heading__title--1,
.m-heading--sm h3 .m-heading__title--1,
.m-heading--sm h4 .m-heading__title--1,
.m-heading--sm h5 .m-heading__title--1 {
	font-size: 2.8rem;
}
@media (min-width: 768px) {
	h4 .m-heading__title--1,
	.m-heading--sm h1 .m-heading__title--1,
	.m-heading--sm h2 .m-heading__title--1,
	.m-heading--sm h3 .m-heading__title--1,
	.m-heading--sm h4 .m-heading__title--1,
	.m-heading--sm h5 .m-heading__title--1 {
		font-size: 3.8rem;
	}
}
@media (min-width: 1024px) {
	h4 .m-heading__title--1,
	.m-heading--sm h1 .m-heading__title--1,
	.m-heading--sm h2 .m-heading__title--1,
	.m-heading--sm h3 .m-heading__title--1,
	.m-heading--sm h4 .m-heading__title--1,
	.m-heading--sm h5 .m-heading__title--1 {
		font-size: 4.8rem;
	}
}

h5,
.m-heading--xs h1,
.m-heading--xs h2,
.m-heading--xs h3,
.m-heading--xs h4,
.m-heading--xs h5 {
	font-size: 2rem;
	line-height: 1.2;
}
h5 *, h5 a,
.m-heading--xs h1 *,
.m-heading--xs h1 a,
.m-heading--xs h2 *,
.m-heading--xs h2 a,
.m-heading--xs h3 *,
.m-heading--xs h3 a,
.m-heading--xs h4 *,
.m-heading--xs h4 a,
.m-heading--xs h5 *,
.m-heading--xs h5 a {
	line-height: 1.2;
}
@media (min-width: 768px) {
	h5,
	.m-heading--xs h1,
	.m-heading--xs h2,
	.m-heading--xs h3,
	.m-heading--xs h4,
	.m-heading--xs h5 {
		font-size: 2.2rem;
	}
}
@media (min-width: 1024px) {
	h5,
	.m-heading--xs h1,
	.m-heading--xs h2,
	.m-heading--xs h3,
	.m-heading--xs h4,
	.m-heading--xs h5 {
		font-size: 2.4rem;
	}
}
h5 .m-heading__preheader,
.m-heading--xs h1 .m-heading__preheader,
.m-heading--xs h2 .m-heading__preheader,
.m-heading--xs h3 .m-heading__preheader,
.m-heading--xs h4 .m-heading__preheader,
.m-heading--xs h5 .m-heading__preheader {
	font-size: 1.1rem;
}
h5 .m-heading__title--1,
.m-heading--xs h1 .m-heading__title--1,
.m-heading--xs h2 .m-heading__title--1,
.m-heading--xs h3 .m-heading__title--1,
.m-heading--xs h4 .m-heading__title--1,
.m-heading--xs h5 .m-heading__title--1 {
	font-size: 2.4rem;
}
@media (min-width: 768px) {
	h5 .m-heading__title--1,
	.m-heading--xs h1 .m-heading__title--1,
	.m-heading--xs h2 .m-heading__title--1,
	.m-heading--xs h3 .m-heading__title--1,
	.m-heading--xs h4 .m-heading__title--1,
	.m-heading--xs h5 .m-heading__title--1 {
		font-size: 3.2rem;
	}
}
@media (min-width: 1024px) {
	h5 .m-heading__title--1,
	.m-heading--xs h1 .m-heading__title--1,
	.m-heading--xs h2 .m-heading__title--1,
	.m-heading--xs h3 .m-heading__title--1,
	.m-heading--xs h4 .m-heading__title--1,
	.m-heading--xs h5 .m-heading__title--1 {
		font-size: 4rem;
	}
}

h6 {
	font-size: 1.6rem;
	line-height: 1.3;
}
h6 *, h6 a {
	line-height: 1.3;
}
@media (min-width: 768px) {
	h6 {
		font-size: 1.7rem;
	}
}
@media (min-width: 1024px) {
	h6 {
		font-size: 1.8rem;
	}
}

p + h2,
p + h3,
p + h4,
p + h5,
p + h6 {
	margin-top: 3rem;
}

div, span, p, a, ol, ul, li, dl, dd, dt, em, i, strong, b {
	line-height: 1.4;
}

a {
	text-decoration: none;
	color: #014675;
	transition: color 250ms ease-in-out;
}
a:hover, a:focus {
	outline: none;
	border: 0;
	color: #014675;
}

input, textarea {
	outline: none;
	box-shadow: none;
	font-family: "poppins", arial, sans-serif;
	padding: 8px 1rem;
}

input, textarea {
	-webkit-appearance: none;
}

input[type=radio] {
	-webkit-appearance: radio;
}

input[type=checkbox] {
	-webkit-appearance: checkbox;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

select {
	-webkit-appearance: none;
	appearance: none;
	outline: 0;
	cursor: pointer;
}

sup {
	font-size: 75%;
	position: relative;
	top: -4px;
}

sub {
	font-size: 75%;
	position: relative;
	bottom: -4px;
}

big {
	font-size: 130%;
}

small {
	font-size: 80%;
}

img {
	max-width: 100%;
	height: auto;
}
img.alignright {
	float: right;
	margin: 2rem 0 2rem 3rem;
}
img.alignleft {
	float: right;
	margin: 2rem 3rem 2rem 0;
}

strong, b {
	font-weight: 700;
}

em, i {
	font-style: italic;
}

p {
	line-height: 1.6;
	margin-bottom: 2rem;
}

.l-wrapper {
	display: block;
	width: 1140px;
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	padding: 2rem 0;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	transition: padding 250ms ease-in-out;
}
.l-wrapper--full {
	width: 100%;
}
.l-wrapper--wrapped {
	flex-wrap: wrap;
}
.l-wrapper--left {
	justify-content: flex-start;
}
.l-wrapper--right {
	justify-content: flex-end;
}
.l-wrapper--center {
	justify-content: center;
}
.l-wrapper--top {
	align-items: flex-start;
}
.l-wrapper--bottom {
	align-items: flex-end;
}
.l-wrapper--nopadding {
	padding: 0;
}
@media screen and (max-width: 1180px) {
	.l-wrapper {
		padding-left: 2rem !important;
		padding-right: 2rem !important;
	}
}
.l-wrapper--xnarrow {
	width: 800px;
}
.l-wrapper--narrow {
	width: 1000px;
}
.l-wrapper--wide {
	width: 1340px;
}
.l-wrapper--full {
	width: 100%;
	padding: 0 !important;
}

.l-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.l-row--left {
	justify-content: flex-start;
}
.l-row--right {
	justify-content: flex-end;
}
.l-row--center {
	justify-content: center;
}
.l-row--stretch {
	align-items: stretch;
}
.l-row--top {
	align-items: flex-start;
}
.l-row--bottom {
	align-items: flex-end;
}
.l-row--space {
	justify-content: space-between;
}

.l-col {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	position: relative;
}
.l-col--top {
	align-items: flex-start;
}
.l-col--bottom {
	align-items: flex-end;
}
.l-col--center {
	align-items: center;
	justify-content: center;
}
.l-col--right {
	justify-content: flex-end;
}
.l-col--vstretch {
	align-items: stretch;
}
.l-col--1 {
	width: 100%;
}
.l-col--1\.5 {
	width: 20%;
}
.l-col--5\.6 {
	width: 83.333333333%;
}
.l-col--3\.4 {
	width: 75%;
}
.l-col--2 {
	width: 50%;
}
.l-col--2\.3 {
	width: 66.666666667%;
}
.l-col--2\.5 {
	width: 40%;
}
.l-col--3 {
	width: 33.333333333%;
}
.l-col--3\.5 {
	width: 60%;
}
.l-col--4 {
	width: 25%;
}
.l-col--4\.5 {
	width: 80%;
}
.l-col--5 {
	width: 20%;
}
.l-col--6 {
	width: 16.666666667%;
}
.l-col--30 {
	width: 30%;
}
.l-col--35 {
	width: 35%;
}
.l-col--45 {
	width: 45%;
}
.l-col--55 {
	width: 55%;
}
.l-col--60 {
	width: 60%;
}
.l-col--65 {
	width: 65%;
}
.l-col--70 {
	width: 70%;
}
@media (max-width: 767px) {
	.l-col {
		width: 100% !important;
	}
	.l-col:not(:last-child()) {
		margin-bottom: 2rem;
	}
}

.l-grid {
	display: grid;
	grid-column-gap: 2rem;
	grid-row-gap: 4rem;
	width: 100%;
}
.l-grid--narrow {
	width: 75%;
	margin-left: auto;
	margin-right: auto;
}
@media (min-width: 768px) {
	.l-grid {
		grid-row-gap: 7rem;
	}
}
@media (min-width: 600px) {
	.l-grid--2 {
		grid-template-columns: 1fr 1fr;
		-ms-grid-columns: (1fr 2rem)[1] 1fr;
	}
	.l-grid--2 *:nth-child(1) {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
	}
}
@media (min-width: 600px) and (-ms-high-contrast: none) {
	.l-grid--2 *:nth-child(1) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 600px) {
	.l-grid--2 *:nth-child(2) {
		-ms-grid-row: 1;
		-ms-grid-column: 3;
	}
}
@media (min-width: 600px) and (-ms-high-contrast: none) {
	.l-grid--2 *:nth-child(2) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 600px) {
	.l-grid--2 *:nth-child(3) {
		-ms-grid-row: 2;
		-ms-grid-column: 1;
	}
}
@media (min-width: 600px) and (-ms-high-contrast: none) {
	.l-grid--2 *:nth-child(3) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 600px) {
	.l-grid--2 *:nth-child(4) {
		-ms-grid-row: 2;
		-ms-grid-column: 3;
	}
}
@media (min-width: 600px) and (-ms-high-contrast: none) {
	.l-grid--2 *:nth-child(4) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 600px) {
	.l-grid--2 *:nth-child(5) {
		-ms-grid-row: 3;
		-ms-grid-column: 1;
	}
}
@media (min-width: 600px) and (-ms-high-contrast: none) {
	.l-grid--2 *:nth-child(5) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 600px) {
	.l-grid--2 *:nth-child(6) {
		-ms-grid-row: 3;
		-ms-grid-column: 3;
	}
}
@media (min-width: 600px) and (-ms-high-contrast: none) {
	.l-grid--2 *:nth-child(6) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 600px) {
	.l-grid--2 *:nth-child(7) {
		-ms-grid-row: 4;
		-ms-grid-column: 1;
	}
}
@media (min-width: 600px) and (-ms-high-contrast: none) {
	.l-grid--2 *:nth-child(7) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 600px) {
	.l-grid--2 *:nth-child(8) {
		-ms-grid-row: 4;
		-ms-grid-column: 3;
	}
}
@media (min-width: 600px) and (-ms-high-contrast: none) {
	.l-grid--2 *:nth-child(8) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 600px) {
	.l-grid--2 *:nth-child(9) {
		-ms-grid-row: 5;
		-ms-grid-column: 1;
	}
}
@media (min-width: 600px) and (-ms-high-contrast: none) {
	.l-grid--2 *:nth-child(9) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 600px) {
	.l-grid--2 *:nth-child(10) {
		-ms-grid-row: 5;
		-ms-grid-column: 3;
	}
}
@media (min-width: 600px) and (-ms-high-contrast: none) {
	.l-grid--2 *:nth-child(10) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 600px) {
	.l-grid--2 *:nth-child(11) {
		-ms-grid-row: 6;
		-ms-grid-column: 1;
	}
}
@media (min-width: 600px) and (-ms-high-contrast: none) {
	.l-grid--2 *:nth-child(11) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 600px) {
	.l-grid--2 *:nth-child(12) {
		-ms-grid-row: 6;
		-ms-grid-column: 3;
	}
}
@media (min-width: 600px) and (-ms-high-contrast: none) {
	.l-grid--2 *:nth-child(12) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 480px) {
	.l-grid--3 {
		grid-template-columns: 1fr 1fr;
		-ms-grid-columns: (1fr 2rem)[1] 1fr;
	}
	.l-grid--3 *:nth-child(1) {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
	}
}
@media (min-width: 480px) and (-ms-high-contrast: none) {
	.l-grid--3 *:nth-child(1) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 480px) {
	.l-grid--3 *:nth-child(2) {
		-ms-grid-row: 1;
		-ms-grid-column: 3;
	}
}
@media (min-width: 480px) and (-ms-high-contrast: none) {
	.l-grid--3 *:nth-child(2) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 480px) {
	.l-grid--3 *:nth-child(3) {
		-ms-grid-row: 2;
		-ms-grid-column: 1;
	}
}
@media (min-width: 480px) and (-ms-high-contrast: none) {
	.l-grid--3 *:nth-child(3) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 480px) {
	.l-grid--3 *:nth-child(4) {
		-ms-grid-row: 2;
		-ms-grid-column: 3;
	}
}
@media (min-width: 480px) and (-ms-high-contrast: none) {
	.l-grid--3 *:nth-child(4) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 480px) {
	.l-grid--3 *:nth-child(5) {
		-ms-grid-row: 3;
		-ms-grid-column: 1;
	}
}
@media (min-width: 480px) and (-ms-high-contrast: none) {
	.l-grid--3 *:nth-child(5) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 480px) {
	.l-grid--3 *:nth-child(6) {
		-ms-grid-row: 3;
		-ms-grid-column: 3;
	}
}
@media (min-width: 480px) and (-ms-high-contrast: none) {
	.l-grid--3 *:nth-child(6) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 480px) {
	.l-grid--3 *:nth-child(7) {
		-ms-grid-row: 4;
		-ms-grid-column: 1;
	}
}
@media (min-width: 480px) and (-ms-high-contrast: none) {
	.l-grid--3 *:nth-child(7) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 480px) {
	.l-grid--3 *:nth-child(8) {
		-ms-grid-row: 4;
		-ms-grid-column: 3;
	}
}
@media (min-width: 480px) and (-ms-high-contrast: none) {
	.l-grid--3 *:nth-child(8) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 480px) {
	.l-grid--3 *:nth-child(9) {
		-ms-grid-row: 5;
		-ms-grid-column: 1;
	}
}
@media (min-width: 480px) and (-ms-high-contrast: none) {
	.l-grid--3 *:nth-child(9) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 480px) {
	.l-grid--3 *:nth-child(10) {
		-ms-grid-row: 5;
		-ms-grid-column: 3;
	}
}
@media (min-width: 480px) and (-ms-high-contrast: none) {
	.l-grid--3 *:nth-child(10) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 480px) {
	.l-grid--3 *:nth-child(11) {
		-ms-grid-row: 6;
		-ms-grid-column: 1;
	}
}
@media (min-width: 480px) and (-ms-high-contrast: none) {
	.l-grid--3 *:nth-child(11) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 480px) {
	.l-grid--3 *:nth-child(12) {
		-ms-grid-row: 6;
		-ms-grid-column: 3;
	}
}
@media (min-width: 480px) and (-ms-high-contrast: none) {
	.l-grid--3 *:nth-child(12) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 768px) {
	.l-grid--3 {
		grid-template-columns: 1fr 1fr 1fr;
		-ms-grid-columns: (1fr 2rem)[2] 1fr;
	}
	.l-grid--3 *:nth-child(1) {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
	}
}
@media (min-width: 768px) and (-ms-high-contrast: none) {
	.l-grid--3 *:nth-child(1) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 768px) {
	.l-grid--3 *:nth-child(2) {
		-ms-grid-row: 1;
		-ms-grid-column: 3;
	}
}
@media (min-width: 768px) and (-ms-high-contrast: none) {
	.l-grid--3 *:nth-child(2) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 768px) {
	.l-grid--3 *:nth-child(3) {
		-ms-grid-row: 1;
		-ms-grid-column: 5;
	}
}
@media (min-width: 768px) and (-ms-high-contrast: none) {
	.l-grid--3 *:nth-child(3) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 768px) {
	.l-grid--3 *:nth-child(4) {
		-ms-grid-row: 2;
		-ms-grid-column: 1;
	}
}
@media (min-width: 768px) and (-ms-high-contrast: none) {
	.l-grid--3 *:nth-child(4) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 768px) {
	.l-grid--3 *:nth-child(5) {
		-ms-grid-row: 2;
		-ms-grid-column: 3;
	}
}
@media (min-width: 768px) and (-ms-high-contrast: none) {
	.l-grid--3 *:nth-child(5) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 768px) {
	.l-grid--3 *:nth-child(6) {
		-ms-grid-row: 2;
		-ms-grid-column: 5;
	}
}
@media (min-width: 768px) and (-ms-high-contrast: none) {
	.l-grid--3 *:nth-child(6) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 768px) {
	.l-grid--3 *:nth-child(7) {
		-ms-grid-row: 3;
		-ms-grid-column: 1;
	}
}
@media (min-width: 768px) and (-ms-high-contrast: none) {
	.l-grid--3 *:nth-child(7) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 768px) {
	.l-grid--3 *:nth-child(8) {
		-ms-grid-row: 3;
		-ms-grid-column: 3;
	}
}
@media (min-width: 768px) and (-ms-high-contrast: none) {
	.l-grid--3 *:nth-child(8) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 768px) {
	.l-grid--3 *:nth-child(9) {
		-ms-grid-row: 3;
		-ms-grid-column: 5;
	}
}
@media (min-width: 768px) and (-ms-high-contrast: none) {
	.l-grid--3 *:nth-child(9) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 768px) {
	.l-grid--3 *:nth-child(10) {
		-ms-grid-row: 4;
		-ms-grid-column: 1;
	}
}
@media (min-width: 768px) and (-ms-high-contrast: none) {
	.l-grid--3 *:nth-child(10) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 768px) {
	.l-grid--3 *:nth-child(11) {
		-ms-grid-row: 4;
		-ms-grid-column: 3;
	}
}
@media (min-width: 768px) and (-ms-high-contrast: none) {
	.l-grid--3 *:nth-child(11) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 768px) {
	.l-grid--3 *:nth-child(12) {
		-ms-grid-row: 4;
		-ms-grid-column: 5;
	}
}
@media (min-width: 768px) and (-ms-high-contrast: none) {
	.l-grid--3 *:nth-child(12) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 600px) {
	.l-grid--4 {
		grid-template-columns: 1fr 1fr;
		-ms-grid-columns: (1fr 2rem)[1] 1fr;
	}
	.l-grid--4 *:nth-child(1) {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
	}
}
@media (min-width: 600px) and (-ms-high-contrast: none) {
	.l-grid--4 *:nth-child(1) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 600px) {
	.l-grid--4 *:nth-child(2) {
		-ms-grid-row: 1;
		-ms-grid-column: 3;
	}
}
@media (min-width: 600px) and (-ms-high-contrast: none) {
	.l-grid--4 *:nth-child(2) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 600px) {
	.l-grid--4 *:nth-child(3) {
		-ms-grid-row: 2;
		-ms-grid-column: 1;
	}
}
@media (min-width: 600px) and (-ms-high-contrast: none) {
	.l-grid--4 *:nth-child(3) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 600px) {
	.l-grid--4 *:nth-child(4) {
		-ms-grid-row: 2;
		-ms-grid-column: 3;
	}
}
@media (min-width: 600px) and (-ms-high-contrast: none) {
	.l-grid--4 *:nth-child(4) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 600px) {
	.l-grid--4 *:nth-child(5) {
		-ms-grid-row: 3;
		-ms-grid-column: 1;
	}
}
@media (min-width: 600px) and (-ms-high-contrast: none) {
	.l-grid--4 *:nth-child(5) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 600px) {
	.l-grid--4 *:nth-child(6) {
		-ms-grid-row: 3;
		-ms-grid-column: 3;
	}
}
@media (min-width: 600px) and (-ms-high-contrast: none) {
	.l-grid--4 *:nth-child(6) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 600px) {
	.l-grid--4 *:nth-child(7) {
		-ms-grid-row: 4;
		-ms-grid-column: 1;
	}
}
@media (min-width: 600px) and (-ms-high-contrast: none) {
	.l-grid--4 *:nth-child(7) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 600px) {
	.l-grid--4 *:nth-child(8) {
		-ms-grid-row: 4;
		-ms-grid-column: 3;
	}
}
@media (min-width: 600px) and (-ms-high-contrast: none) {
	.l-grid--4 *:nth-child(8) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 600px) {
	.l-grid--4 *:nth-child(9) {
		-ms-grid-row: 5;
		-ms-grid-column: 1;
	}
}
@media (min-width: 600px) and (-ms-high-contrast: none) {
	.l-grid--4 *:nth-child(9) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 600px) {
	.l-grid--4 *:nth-child(10) {
		-ms-grid-row: 5;
		-ms-grid-column: 3;
	}
}
@media (min-width: 600px) and (-ms-high-contrast: none) {
	.l-grid--4 *:nth-child(10) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 600px) {
	.l-grid--4 *:nth-child(11) {
		-ms-grid-row: 6;
		-ms-grid-column: 1;
	}
}
@media (min-width: 600px) and (-ms-high-contrast: none) {
	.l-grid--4 *:nth-child(11) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 600px) {
	.l-grid--4 *:nth-child(12) {
		-ms-grid-row: 6;
		-ms-grid-column: 3;
	}
}
@media (min-width: 600px) and (-ms-high-contrast: none) {
	.l-grid--4 *:nth-child(12) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 1024px) {
	.l-grid--4 {
		grid-template-columns: 1fr 1fr 1fr 1fr;
		-ms-grid-columns: (1fr 2rem)[3] 1fr;
	}
	.l-grid--4 *:nth-child(1) {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
	}
}
@media (min-width: 1024px) and (-ms-high-contrast: none) {
	.l-grid--4 *:nth-child(1) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 1024px) {
	.l-grid--4 *:nth-child(2) {
		-ms-grid-row: 1;
		-ms-grid-column: 3;
	}
}
@media (min-width: 1024px) and (-ms-high-contrast: none) {
	.l-grid--4 *:nth-child(2) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 1024px) {
	.l-grid--4 *:nth-child(3) {
		-ms-grid-row: 1;
		-ms-grid-column: 5;
	}
}
@media (min-width: 1024px) and (-ms-high-contrast: none) {
	.l-grid--4 *:nth-child(3) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 1024px) {
	.l-grid--4 *:nth-child(4) {
		-ms-grid-row: 1;
		-ms-grid-column: 7;
	}
}
@media (min-width: 1024px) and (-ms-high-contrast: none) {
	.l-grid--4 *:nth-child(4) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 1024px) {
	.l-grid--4 *:nth-child(5) {
		-ms-grid-row: 2;
		-ms-grid-column: 1;
	}
}
@media (min-width: 1024px) and (-ms-high-contrast: none) {
	.l-grid--4 *:nth-child(5) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 1024px) {
	.l-grid--4 *:nth-child(6) {
		-ms-grid-row: 2;
		-ms-grid-column: 3;
	}
}
@media (min-width: 1024px) and (-ms-high-contrast: none) {
	.l-grid--4 *:nth-child(6) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 1024px) {
	.l-grid--4 *:nth-child(7) {
		-ms-grid-row: 2;
		-ms-grid-column: 5;
	}
}
@media (min-width: 1024px) and (-ms-high-contrast: none) {
	.l-grid--4 *:nth-child(7) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 1024px) {
	.l-grid--4 *:nth-child(8) {
		-ms-grid-row: 2;
		-ms-grid-column: 7;
	}
}
@media (min-width: 1024px) and (-ms-high-contrast: none) {
	.l-grid--4 *:nth-child(8) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 1024px) {
	.l-grid--4 *:nth-child(9) {
		-ms-grid-row: 3;
		-ms-grid-column: 1;
	}
}
@media (min-width: 1024px) and (-ms-high-contrast: none) {
	.l-grid--4 *:nth-child(9) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 1024px) {
	.l-grid--4 *:nth-child(10) {
		-ms-grid-row: 3;
		-ms-grid-column: 3;
	}
}
@media (min-width: 1024px) and (-ms-high-contrast: none) {
	.l-grid--4 *:nth-child(10) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 1024px) {
	.l-grid--4 *:nth-child(11) {
		-ms-grid-row: 3;
		-ms-grid-column: 5;
	}
}
@media (min-width: 1024px) and (-ms-high-contrast: none) {
	.l-grid--4 *:nth-child(11) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 1024px) {
	.l-grid--4 *:nth-child(12) {
		-ms-grid-row: 3;
		-ms-grid-column: 7;
	}
}
@media (min-width: 1024px) and (-ms-high-contrast: none) {
	.l-grid--4 *:nth-child(12) {
		margin-bottom: 2rem;
	}
}
.l-grid--gap-md {
	grid-column-gap: 4rem;
}
@media (max-width: 767px) {
	.l-grid--gap-md {
		grid-row-gap: 7rem;
	}
}
.l-grid--gap-md.l-grid--2 {
	-ms-grid-columns: (1fr 4rem)[1] 1fr;
}
.l-grid--gap-md.l-grid--2 *:nth-child(1) {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--2 *:nth-child(1) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--2 *:nth-child(2) {
	-ms-grid-row: 1;
	-ms-grid-column: 3;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--2 *:nth-child(2) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--2 *:nth-child(3) {
	-ms-grid-row: 2;
	-ms-grid-column: 1;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--2 *:nth-child(3) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--2 *:nth-child(4) {
	-ms-grid-row: 2;
	-ms-grid-column: 3;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--2 *:nth-child(4) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--2 *:nth-child(5) {
	-ms-grid-row: 3;
	-ms-grid-column: 1;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--2 *:nth-child(5) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--2 *:nth-child(6) {
	-ms-grid-row: 3;
	-ms-grid-column: 3;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--2 *:nth-child(6) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--2 *:nth-child(7) {
	-ms-grid-row: 4;
	-ms-grid-column: 1;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--2 *:nth-child(7) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--2 *:nth-child(8) {
	-ms-grid-row: 4;
	-ms-grid-column: 3;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--2 *:nth-child(8) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--2 *:nth-child(9) {
	-ms-grid-row: 5;
	-ms-grid-column: 1;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--2 *:nth-child(9) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--2 *:nth-child(10) {
	-ms-grid-row: 5;
	-ms-grid-column: 3;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--2 *:nth-child(10) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--2 *:nth-child(11) {
	-ms-grid-row: 6;
	-ms-grid-column: 1;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--2 *:nth-child(11) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--2 *:nth-child(12) {
	-ms-grid-row: 6;
	-ms-grid-column: 3;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--2 *:nth-child(12) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--3 {
	-ms-grid-columns: (1fr 4rem)[2] 1fr;
}
.l-grid--gap-md.l-grid--3 *:nth-child(1) {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--3 *:nth-child(1) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--3 *:nth-child(2) {
	-ms-grid-row: 1;
	-ms-grid-column: 3;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--3 *:nth-child(2) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--3 *:nth-child(3) {
	-ms-grid-row: 1;
	-ms-grid-column: 5;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--3 *:nth-child(3) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--3 *:nth-child(4) {
	-ms-grid-row: 2;
	-ms-grid-column: 1;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--3 *:nth-child(4) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--3 *:nth-child(5) {
	-ms-grid-row: 2;
	-ms-grid-column: 3;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--3 *:nth-child(5) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--3 *:nth-child(6) {
	-ms-grid-row: 2;
	-ms-grid-column: 5;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--3 *:nth-child(6) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--3 *:nth-child(7) {
	-ms-grid-row: 3;
	-ms-grid-column: 1;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--3 *:nth-child(7) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--3 *:nth-child(8) {
	-ms-grid-row: 3;
	-ms-grid-column: 3;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--3 *:nth-child(8) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--3 *:nth-child(9) {
	-ms-grid-row: 3;
	-ms-grid-column: 5;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--3 *:nth-child(9) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--3 *:nth-child(10) {
	-ms-grid-row: 4;
	-ms-grid-column: 1;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--3 *:nth-child(10) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--3 *:nth-child(11) {
	-ms-grid-row: 4;
	-ms-grid-column: 3;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--3 *:nth-child(11) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--3 *:nth-child(12) {
	-ms-grid-row: 4;
	-ms-grid-column: 5;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--3 *:nth-child(12) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--4 {
	-ms-grid-columns: (1fr 4rem)[3] 1fr;
}
.l-grid--gap-md.l-grid--4 *:nth-child(1) {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--4 *:nth-child(1) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--4 *:nth-child(2) {
	-ms-grid-row: 1;
	-ms-grid-column: 3;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--4 *:nth-child(2) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--4 *:nth-child(3) {
	-ms-grid-row: 1;
	-ms-grid-column: 5;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--4 *:nth-child(3) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--4 *:nth-child(4) {
	-ms-grid-row: 1;
	-ms-grid-column: 7;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--4 *:nth-child(4) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--4 *:nth-child(5) {
	-ms-grid-row: 2;
	-ms-grid-column: 1;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--4 *:nth-child(5) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--4 *:nth-child(6) {
	-ms-grid-row: 2;
	-ms-grid-column: 3;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--4 *:nth-child(6) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--4 *:nth-child(7) {
	-ms-grid-row: 2;
	-ms-grid-column: 5;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--4 *:nth-child(7) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--4 *:nth-child(8) {
	-ms-grid-row: 2;
	-ms-grid-column: 7;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--4 *:nth-child(8) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--4 *:nth-child(9) {
	-ms-grid-row: 3;
	-ms-grid-column: 1;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--4 *:nth-child(9) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--4 *:nth-child(10) {
	-ms-grid-row: 3;
	-ms-grid-column: 3;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--4 *:nth-child(10) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--4 *:nth-child(11) {
	-ms-grid-row: 3;
	-ms-grid-column: 5;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--4 *:nth-child(11) {
		margin-bottom: 4rem;
	}
}
.l-grid--gap-md.l-grid--4 *:nth-child(12) {
	-ms-grid-row: 3;
	-ms-grid-column: 7;
}
@media all and (-ms-high-contrast: none) {
	.l-grid--gap-md.l-grid--4 *:nth-child(12) {
		margin-bottom: 4rem;
	}
}

/**
 * Header
 */
body > header {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: space-between;
	align-items: center;
}

body .m-header {
	transition: all 0.3s ease-in-out;
	position: relative;
}
body .m-header__notice {
	background: #014675;
	background: linear-gradient(to right, #014675 0%, #014675 100%);
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
	text-align: center;
	padding: 1rem;
}
body .m-header__notice a {
	text-decoration: underline;
	color: #fff;
}
body .m-header__phone {
	color: #edab2f;
	justify-content: flex-start;
}
@media (max-width: 899px) {
	body .m-header__phone span {
		font-size: 0;
	}
}
body .m-header__phone a {
	font-weight: 700;
	color: #edab2f;
	display: inline-flex;
	align-items: center;
}
@media (max-width: 899px) {
	body .m-header__phone a {
		letter-spacing: -0.1rem;
		color: #014675;
		font-weight: 400;
	}
}
@media (max-width: 599px) {
	body .m-header__phone a {
		font-size: 0;
		padding: 0;
	}
	body .m-header__phone a:last-child {
		display: none !important;
	}
}
@media (max-width: 899px) {
	body .m-header__phone svg {
		width: 2rem;
		height: 2.5rem;
	}
}
body .m-header__phone svg path {
	fill: #edab2f;
}
@media (max-width: 899px) {
	body .m-header__phone svg path {
		fill: #014675;
	}
}
body .m-header__middle {
	border-bottom: 1px solid #f3f0ee;
}
@media (min-width: 768px) {
	body .m-header__middle__side {
		width: calc(50% - 10.5rem);
	}
}
body .m-header__middle__center {
	width: 21rem;
}
body .m-header__middle .l-col {
	margin-bottom: 0 !important;
}
@media (max-width: 767px) {
	body .m-header__middle .l-col:nth-child(1) {
		width: 20rem !important;
	}
}
@media (max-width: 599px) {
	body .m-header__middle .l-col:nth-child(1) {
		order: 2;
		width: 3rem !important;
	}
}
@media screen and (max-width: 360px) {
	body .m-header__middle .l-col:nth-child(1) {
		display: none;
	}
}
@media (max-width: 767px) {
	body .m-header__middle .l-col:nth-child(2) {
		width: calc(100% - 40rem) !important;
	}
}
@media (max-width: 599px) {
	body .m-header__middle .l-col:nth-child(2) {
		order: 1;
		width: calc(100% - 29rem) !important;
		justify-content: flex-start;
	}
}
@media screen and (max-width: 425px) {
	body .m-header__middle .l-col:nth-child(2) {
		width: calc(100% - 21rem) !important;
	}
}
@media (max-width: 767px) {
	body .m-header__middle .l-col:nth-child(3) {
		width: 20rem !important;
	}
}
@media (max-width: 599px) {
	body .m-header__middle .l-col:nth-child(3) {
		width: 11rem !important;
		order: 3;
	}
}
body .m-header__bottom {
	border-bottom: 1px solid #f3f0ee;
}
@media (max-width: 1023px) {
	body .m-header.mobile-nav-active {
		background: #fff;
	}
}
body .m-header .l-wrapper {
	padding-bottom: 2rem;
}
@media (max-width: 899px) {
	body .m-header .l-wrapper {
		padding: 0.5rem 2rem 0.7rem 2rem;
	}
}
body .m-header .m-brand__mark {
	display: block;
	max-width: 13.2rem;
	padding-top: 7.5rem;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	font-size: 0;
}
@media (min-width: 768px) {
	body .m-header .m-brand__mark {
		max-width: 17rem;
		padding-top: 45%;
	}
}
@media (min-width: 1024px) {
	body .m-header .m-brand__mark {
		max-width: 20rem;
	}
}
@media (min-width: 600px) {
	body .m-header .m-brand__mark {
		margin: 0 auto;
	}
}
body.m-header-display--simple .m-header {
	margin-bottom: 0;
}
@media (max-width: 767px) {
	body.m-header-display--simple .m-header {
		margin-bottom: 0;
	}
}
body.m-header-display--simple .m-header .l-wrapper {
	border: 0;
}

.m-bg-image-slider,
.m-fg-image-slider {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
}
.m-bg-image-slider .glide__track,
.m-fg-image-slider .glide__track {
	height: 100%;
}
.m-bg-image-slider .glide__slides,
.m-fg-image-slider .glide__slides {
	height: 100%;
	transform: translate3d(0, 0, 0) !important;
	width: 100vw !important;
}
.m-bg-image-slider .glide__slide,
.m-fg-image-slider .glide__slide {
	opacity: 0;
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 1s ease;
	background-size: cover;
	background-position: right center;
}
.m-bg-image-slider .glide__slide.glide__slide--active,
.m-fg-image-slider .glide__slide.glide__slide--active {
	opacity: 1;
	z-index: 1;
}
.m-bg-image-slider picture,
.m-bg-image-slider img,
.m-fg-image-slider picture,
.m-fg-image-slider img {
	max-width: 350px;
	height: auto;
}
.m-bg-image-slider picture,
.m-fg-image-slider picture {
	position: absolute;
	left: 20%;
	bottom: 1rem;
	z-index: 4;
	transition: left 250ms ease-in-out;
}
@media screen and (max-width: 1300px) {
	.m-bg-image-slider picture,
	.m-fg-image-slider picture {
		left: 10%;
	}
}
@media screen and (max-width: 1000px) {
	.m-bg-image-slider picture,
	.m-fg-image-slider picture {
		left: 2%;
	}
}

.m-bg-image-slider::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0.2;
	background: #000;
	z-index: 1;
	clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 40% 97%, 0 76%);
}
@media screen and (max-width: 2058px) {
	.m-bg-image-slider::before {
		clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 40% 97%, 0 76%);
	}
}
@media screen and (max-width: 1358px) {
	.m-bg-image-slider::before {
		clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 40% 97%, 0 76%);
	}
}
@media screen and (max-width: 940px) {
	.m-bg-image-slider::before {
		clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 40% 97%, 0 85%);
	}
}
@media screen and (max-width: 768px) {
	.m-bg-image-slider::before {
		clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 40% 97%, 0 85%);
	}
}
@media screen and (max-width: 600px) {
	.m-bg-image-slider::before {
		clip-path: polygon(0% 0%, 100% 0%, 100% 86%, 40% 97%, 0 85%);
	}
}
@media screen and (max-width: 478px) {
	.m-bg-image-slider::before {
		clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 40% 97%, 0 85%);
	}
}
@media screen and (max-width: 350px) {
	.m-bg-image-slider::before {
		clip-path: polygon(0% 0%, 100% 0%, 100% 93%, 40% 97%, 0 90%);
	}
}

.swoosh-border .m-bg-image-slider::after {
	content: url("data:image/svg+xml,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1800 469.18'%3E%3Cdefs%3E%3CradialGradient id='a' cx='162.44' cy='571.85' r='100.07' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.12' stop-color='%23fff'/%3E%3Cstop offset='.78' stop-color='%23fff' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='b' cx='123.99' cy='428.38' r='260.64' xlink:href='%23a'/%3E%3ClinearGradient id='c' x1='-4.89' y1='611.99' x2='1801.78' y2='611.99' gradientTransform='rotate(3.17 874.746 550.492)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='.03' stop-color='%232c82bb'/%3E%3Cstop offset='.07' stop-color='%23318ac7'/%3E%3Cstop offset='.16' stop-color='%233898dc'/%3E%3Cstop offset='.25' stop-color='%233da0e8'/%3E%3Cstop offset='.34' stop-color='%233ea3ec'/%3E%3Cstop offset='.92' stop-color='%232c82bb'/%3E%3C/linearGradient%3E%3ClinearGradient id='d' x1='-10.4' y1='525.89' x2='1799.95' y2='525.89' gradientTransform='rotate(3.17 874.746 550.492)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='.32' stop-color='%23baddf4'/%3E%3Cstop offset='.5' stop-color='%23d3eaf8' stop-opacity='.67'/%3E%3Cstop offset='.68' stop-color='%23ebf5fc' stop-opacity='.36'/%3E%3Cstop offset='.81' stop-color='%23f9fcfe' stop-opacity='.17'/%3E%3Cstop offset='.88' stop-color='%23fff' stop-opacity='.1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg opacity='.59'%3E%3Cpath d='m204.06 526.37-.09-.25-.22-.56-57.22-10.3-1.74-.31-1.13 1.34-36.41 43.09-.57.68-.16.19-.4.47.21.58.38 1.08 19.41 53.9.1.25.21.57 59 10.6 38.12-45.1.17-.21.37-.46-20-55.54Zm-19.85 98-55.53-10-19.1-53.07 9.76-11.55L146 518.26l55.51 10 19.11 53.07Z' transform='translate(0 -256.37)' fill='url(%23a)'/%3E%3Cpath d='m239.65 328.53-.09-.25-.21-.57-59-10.6-37.2 44-55.78-10L68 297.19l-.09-.25-.22-.57-57-10.24L0 256.37v338.46l13.58 2.44 37.88-44.83.23-.27.17-.2.4-.46-.21-.59-19.59-54.39.66-.79L69 453.24l57.25 10.29 1.13-1.34 36.07-42.68L221 429.85l38.11-45.09.18-.21.39-.47ZM65.43 299.05l19.11 53.07L72.79 366l-24.66 29.21L0 386.55v-85.76l9.91-11.72Zm-57.76-12.4L0 295.73v-30.37Zm41.12 264.23L12.39 594 0 591.74v-99.27l29.68 5.34Zm7.59-87.39L30.3 494.36l-.34.4L0 489.38v-99.73l47.59 8.56 19.11 53.07Zm68.71-3.26-55.52-10-19.11-53.06 36.41-43.08 55.25 9.91 19.2 53.33Zm94.7-33.68-55.25-9.94-19.21-53.32 36.24-42.89 55.52 10 19.11 53.07Z' transform='translate(0 -256.37)' fill='url(%23b)'/%3E%3C/g%3E%3Cpath d='M0 438.21c114.26 50.93 616.94 231.36 1800 113v57.49C1031.69 779.17 326.24 744.55 0 623.51Z' transform='translate(0 -256.37)' fill='url(%23c)'/%3E%3Cpath d='M0 338.48c235.15 63.71 876.11 208.55 1800 194v43c-241.24 59.13-964.38 176.69-1800-26Z' transform='translate(0 -256.37)' opacity='.45' fill='url(%23d)'/%3E%3C/svg%3E");
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
}
.swoosh-border .m-bg-image-slider .glide__track {
	height: 100%;
	clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 40% 97%, 0 76%);
}
@media screen and (max-width: 2058px) {
	.swoosh-border .m-bg-image-slider .glide__track {
		clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 40% 97%, 0 76%);
	}
}
@media screen and (max-width: 1358px) {
	.swoosh-border .m-bg-image-slider .glide__track {
		clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 40% 97%, 0 76%);
	}
}
@media screen and (max-width: 940px) {
	.swoosh-border .m-bg-image-slider .glide__track {
		clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 40% 97%, 0 85%);
	}
}
@media screen and (max-width: 768px) {
	.swoosh-border .m-bg-image-slider .glide__track {
		clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 40% 97%, 0 85%);
	}
}
@media screen and (max-width: 600px) {
	.swoosh-border .m-bg-image-slider .glide__track {
		clip-path: polygon(0% 0%, 100% 0%, 100% 86%, 40% 97%, 0 85%);
	}
}
@media screen and (max-width: 478px) {
	.swoosh-border .m-bg-image-slider .glide__track {
		clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 40% 97%, 0 85%);
	}
}
@media screen and (max-width: 350px) {
	.swoosh-border .m-bg-image-slider .glide__track {
		clip-path: polygon(0% 0%, 100% 0%, 100% 93%, 40% 97%, 0 90%);
	}
}

.m-fg-image-slider {
	z-index: 2;
}
@media screen and (max-width: 767px) {
	.m-fg-image-slider {
		display: none;
	}
}

.m-products {
	padding-top: 1rem;
}

.m-responsive-navs {
	display: none;
}
@media (min-width: 1024px) {
	.m-responsive-navs {
		display: none !important;
	}
}

.m-popup {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	transition: opacity 250ms ease-in-out;
	pointer-events: none;
	opacity: 0;
	background-color: rgba(0, 0, 0, 0.91);
	align-items: center;
	justify-content: center;
}

.m-preheader {
	display: block;
	width: 100%;
}

.menu-pre-header-menu-container .menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-bottom: -2.5rem;
	position: relative;
	z-index: 10;
}
@media (max-width: 479px) {
	.menu-pre-header-menu-container .menu {
		justify-content: center;
		padding-bottom: 2rem;
	}
}
.menu-pre-header-menu-container .menu li:not(:last-of-type) {
	margin-right: 3rem;
}
@media (max-width: 767px) {
	.menu-pre-header-menu-container .menu li.hide-mobile {
		display: none;
	}
}
.menu-pre-header-menu-container .menu li.special a {
	font-style: italic;
	color: #edab2f;
}
.menu-pre-header-menu-container .menu a {
	color: #302d2b;
	font-size: 1.5rem;
	font-weight: 600;
}

@media (max-width: 1023px) {
	.m-header-nav {
		display: none;
	}
}

.m-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.m-header-actions a {
	display: flex;
	font-weight: 700;
	color: #014675;
	line-height: 1.7;
}
@media (max-width: 899px) {
	.m-header-actions a {
		font-size: 0;
	}
}
.m-header-actions a svg {
	margin-right: 0.7rem;
}
.m-header-actions a svg path {
	fill: #71bfff;
}
@media (max-width: 899px) {
	.m-header-actions a svg path {
		fill: #014675;
	}
}
.m-header-actions a:not(:last-child) {
	margin-right: 3.5rem;
}
@media (min-width: 1024px) {
	.m-header-actions a:not(:last-child) {
		margin-right: 2rem;
	}
}
@media screen and (max-width: 425px) {
	.m-header-actions a:not(:last-child) {
		margin-right: 2rem;
	}
}
@media (max-width: 767px) {
	.m-header-actions a.m-header-actions__search {
		display: none;
	}
}
@media (max-width: 479px) {
	.m-header-actions a.m-header-actions__wishlist {
		display: none;
	}
}

.m-mainnav__list {
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
.m-mainnav__list > li {
	transition: background 250ms ease-in-out;
}
.m-mainnav__list > li:hover, .m-mainnav__list > li.active {
	color: #fff;
	background: #014675;
}
.m-mainnav__list > li:hover > a, .m-mainnav__list > li:hover span, .m-mainnav__list > li.active > a, .m-mainnav__list > li.active span {
	color: #fff;
}
.m-mainnav__list > li:hover .m-mainnav__submenu, .m-mainnav__list > li.active .m-mainnav__submenu {
	opacity: 1;
	transition: opacity 0.2s ease-in-out;
	pointer-events: all;
	box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.15);
}
.m-mainnav__list > li > a, .m-mainnav__list > li span {
	font-weight: 700;
}
.m-mainnav__list > li.m-highlighted-link > a, .m-mainnav__list > li.m-highlighted-link span {
	color: #edab2f;
}
.m-mainnav__list > li.m-highlighted-link:hover {
	background: #edab2f;
}
.m-mainnav__list > li.m-highlighted-link:hover > a, .m-mainnav__list > li.m-highlighted-link:hover span {
	color: #fff;
}
@media (min-width: 768px) {
	.m-mainnav__item.mobile-only, .m-mainnav__item.mobile-sm-only {
		display: none;
	}
}
.m-mainnav__item--has-megamenu.active {
	color: #fff;
	background: #014675;
}
.m-mainnav__item--has-megamenu.active .m-mega {
	opacity: 1;
	pointer-events: all;
	transform: translateY(0);
}
.m-mainnav__item--has-submenu {
	position: relative;
}
.m-mainnav__item--has-submenu.active {
	color: #fff;
	background: #014675;
}
.m-mainnav__item--has-submenu.active .m-mainnav__submenu {
	opacity: 1;
	pointer-events: all;
	transform: translateY(0);
	height: auto;
}
.m-mainnav__link {
	display: inline-flex;
	font-size: 1.5rem;
	text-transform: uppercase;
	color: #014675;
	padding: 1.5rem 1.3rem;
	flex-wrap: wrap;
}
.m-mainnav__link span {
	width: 100%;
	font-size: 1.4rem;
	font-weight: 600;
	color: #edab2f;
	text-transform: uppercase;
	font-weight: 600;
}
.m-mainnav__submenu {
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	background: #fff;
}
.m-mainnav__arrow {
	width: 1rem;
	margin-left: 0.5rem;
}
.m-mainnav__arrow path {
	fill: #71bfff;
}

.m-link--decorated > a {
	position: relative;
}
.m-link--decorated > a::after {
	content: "";
	width: 100%;
	height: 3px;
	background-color: #014675;
	position: absolute;
	left: 0;
	bottom: -3px;
}

.m-minicart__icon {
	position: relative;
}
@media (max-width: 767px) {
	.m-minicart__icon {
		font-size: 0;
	}
}
.m-minicart__icon span {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 2.2rem;
	height: 2.2rem;
	background-color: #71bfff;
	border-radius: 100%;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 600;
	transform: translateX(1rem) translateY(-50%);
}
@media (max-width: 899px) {
	.m-minicart__icon span {
		background-color: #014675;
	}
}

.m-mainnav__submenu {
	border-top: 0.4rem solid #014675;
	position: absolute;
	left: 0;
	width: 24rem;
	z-index: 999;
	pointer-events: none;
	opacity: 0;
	transform: translateY(-1px);
	transition: all 350ms ease-in-out;
}
.m-mainnav__submenu a {
	text-transform: none;
	font-size: 1.4rem;
	padding: 1rem 2rem;
	display: block;
	width: 100%;
	font-weight: 400;
	color: #014675;
}
.m-mainnav__submenu a:hover {
	background: linear-gradient(-90deg, #FAFAFA, #FAFAFA 80%, #fff) !important;
}

.m-mega {
	display: flex;
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 999;
	pointer-events: none;
	opacity: 0;
	transform: translateY(-1px);
	transition: all 350ms ease-in-out;
}
.m-mega .l-wrapper {
	display: grid;
	grid-column-gap: 5rem;
	padding: 3rem 3rem 5rem;
	position: relative;
	z-index: 2;
	align-items: stretch;
	background: #fff;
	border-top: 0.4rem solid #014675;
	box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.15);
}
.m-mega--1-col .l-wrapper {
	grid-template-columns: repeat(1, 1fr);
	-ms-grid-columns: 1fr;
}
.m-mega--1-col .l-wrapper *:nth-child(1) {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}
@media all and (-ms-high-contrast: none) {
	.m-mega--1-col .l-wrapper *:nth-child(1) {
		margin-bottom: 5rem;
	}
}
.m-mega--2-col .l-wrapper {
	grid-template-columns: repeat(2, 1fr);
	-ms-grid-columns: (1fr 2rem)[1] 1fr;
}
.m-mega--2-col .l-wrapper *:nth-child(1) {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}
@media all and (-ms-high-contrast: none) {
	.m-mega--2-col .l-wrapper *:nth-child(1) {
		margin-bottom: 5rem;
	}
}
.m-mega--2-col .l-wrapper *:nth-child(2) {
	-ms-grid-row: 1;
	-ms-grid-column: 3;
}
@media all and (-ms-high-contrast: none) {
	.m-mega--2-col .l-wrapper *:nth-child(2) {
		margin-bottom: 5rem;
	}
}
.m-mega--3-col .l-wrapper {
	grid-template-columns: repeat(3, 1fr);
	-ms-grid-columns: (1fr 2rem)[2] 1fr;
}
.m-mega--3-col .l-wrapper *:nth-child(1) {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}
@media all and (-ms-high-contrast: none) {
	.m-mega--3-col .l-wrapper *:nth-child(1) {
		margin-bottom: 5rem;
	}
}
.m-mega--3-col .l-wrapper *:nth-child(2) {
	-ms-grid-row: 1;
	-ms-grid-column: 3;
}
@media all and (-ms-high-contrast: none) {
	.m-mega--3-col .l-wrapper *:nth-child(2) {
		margin-bottom: 5rem;
	}
}
.m-mega--3-col .l-wrapper *:nth-child(3) {
	-ms-grid-row: 1;
	-ms-grid-column: 5;
}
@media all and (-ms-high-contrast: none) {
	.m-mega--3-col .l-wrapper *:nth-child(3) {
		margin-bottom: 5rem;
	}
}
.m-mega--4-col .l-wrapper {
	grid-template-columns: repeat(4, 1fr);
	-ms-grid-columns: (1fr 2rem)[3] 1fr;
}
.m-mega--4-col .l-wrapper *:nth-child(1) {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}
@media all and (-ms-high-contrast: none) {
	.m-mega--4-col .l-wrapper *:nth-child(1) {
		margin-bottom: 5rem;
	}
}
.m-mega--4-col .l-wrapper *:nth-child(2) {
	-ms-grid-row: 1;
	-ms-grid-column: 3;
}
@media all and (-ms-high-contrast: none) {
	.m-mega--4-col .l-wrapper *:nth-child(2) {
		margin-bottom: 5rem;
	}
}
.m-mega--4-col .l-wrapper *:nth-child(3) {
	-ms-grid-row: 1;
	-ms-grid-column: 5;
}
@media all and (-ms-high-contrast: none) {
	.m-mega--4-col .l-wrapper *:nth-child(3) {
		margin-bottom: 5rem;
	}
}
.m-mega--4-col .l-wrapper *:nth-child(4) {
	-ms-grid-row: 1;
	-ms-grid-column: 7;
}
@media all and (-ms-high-contrast: none) {
	.m-mega--4-col .l-wrapper *:nth-child(4) {
		margin-bottom: 5rem;
	}
}
.m-mega--5-col .l-wrapper {
	grid-template-columns: repeat(5, 1fr);
	-ms-grid-columns: (1fr 2rem)[4] 1fr;
}
.m-mega--5-col .l-wrapper *:nth-child(1) {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}
@media all and (-ms-high-contrast: none) {
	.m-mega--5-col .l-wrapper *:nth-child(1) {
		margin-bottom: 5rem;
	}
}
.m-mega--5-col .l-wrapper *:nth-child(2) {
	-ms-grid-row: 1;
	-ms-grid-column: 3;
}
@media all and (-ms-high-contrast: none) {
	.m-mega--5-col .l-wrapper *:nth-child(2) {
		margin-bottom: 5rem;
	}
}
.m-mega--5-col .l-wrapper *:nth-child(3) {
	-ms-grid-row: 1;
	-ms-grid-column: 5;
}
@media all and (-ms-high-contrast: none) {
	.m-mega--5-col .l-wrapper *:nth-child(3) {
		margin-bottom: 5rem;
	}
}
.m-mega--5-col .l-wrapper *:nth-child(4) {
	-ms-grid-row: 1;
	-ms-grid-column: 7;
}
@media all and (-ms-high-contrast: none) {
	.m-mega--5-col .l-wrapper *:nth-child(4) {
		margin-bottom: 5rem;
	}
}
.m-mega--5-col .l-wrapper *:nth-child(5) {
	-ms-grid-row: 1;
	-ms-grid-column: 9;
}
@media all and (-ms-high-contrast: none) {
	.m-mega--5-col .l-wrapper *:nth-child(5) {
		margin-bottom: 5rem;
	}
}
.m-mega--1-5-col .l-wrapper {
	grid-template-columns: 1fr 4fr;
}
.m-mega--5-1-col .l-wrapper {
	grid-template-columns: 4fr 1fr;
}
.m-mega .l-col:not(:last-child) {
	border-right: 0.1rem solid #aaa8a2;
}
.m-mega .l-col .l-col {
	border: 0;
}
.m-mega\:simple_card {
	display: block;
	width: 100%;
}
.m-mega\:simple_card__image {
	display: block;
}
.m-mega\:simple_card__image picture {
	display: block;
}
.m-mega\:simple_card__image:hover + a {
	color: #014675;
}
.m-mega\:simple_card__heading {
	display: block;
	width: 100%;
	font-size: 1.8rem;
	font-weight: 600;
	color: #605a55;
	text-align: center;
	margin-top: 2rem;
}
.m-mega\:simple_card__heading:hover {
	color: #014675;
}
.m-mega\:simple_nav {
	display: block;
	width: 100%;
}
.m-mega\:simple_nav a {
	display: block;
	width: 100%;
	font-size: 1.8rem;
	color: #302d2b;
}
.m-mega\:simple_nav a:hover {
	color: #014675;
}
.m-mega\:simple_nav a:not(:last-child) {
	margin-bottom: 3rem;
}
.m-mega\:simple_nav a.m-mega\:simple_nav--secondary {
	font-size: 1.6rem;
	font-weight: 600;
	text-transform: uppercase;
	color: #014675;
}
.m-mega\:heading {
	color: #847e78;
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.1rem;
	text-transform: uppercase;
	padding: 0rem 2rem 1rem;
}
.m-mega\:highlighted a {
	color: #edab2f !important;
}
.m-mega\:submenu a {
	text-transform: none;
	font-size: 1.4rem;
	padding: 1rem 2rem;
	display: block;
	width: 100%;
	font-weight: bold;
	color: #014675;
}
.m-mega\:submenu--products {
	opacity: 0;
	height: 0;
	overflow: hidden;
	transition: opacity 0.3s ease-in-out;
}
.m-mega\:submenu--products a {
	font-weight: 400;
}
.m-mega\:submenu--products.active {
	opacity: 1;
	height: auto;
	overflow: visible;
}
.m-mega\:submenu li {
	display: block;
	width: 100%;
}
.m-mega\:submenu li.active {
	background: linear-gradient(-90deg, #FAFAFA, #FAFAFA 80%, #fff) !important;
}
.m-mega\:menu_image_set {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}
.m-mega\:menu_image_set .m-mega\:menu_image {
	opacity: 0;
	pointer-events: none;
	transition: all 250ms ease-in-out;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.m-mega\:menu_image_set .m-mega\:menu_image.active {
	opacity: 1;
	pointer-events: all;
}
.m-mega\:menu_image a, .m-mega\:menu_image defer-image, .m-mega\:menu_image picture, .m-mega\:menu_image img, .m-mega\:menu_image--initial a, .m-mega\:menu_image--initial defer-image, .m-mega\:menu_image--initial picture, .m-mega\:menu_image--initial img {
	display: block;
}
.m-mega\:menu_image defer-image, .m-mega\:menu_image picture, .m-mega\:menu_image img, .m-mega\:menu_image--initial defer-image, .m-mega\:menu_image--initial picture, .m-mega\:menu_image--initial img {
	position: relative;
	z-index: 1;
}
.m-mega\:menu_image a, .m-mega\:menu_image--initial a {
	position: relative;
}
.m-mega\:menu_image a::before, .m-mega\:menu_image--initial a::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.05) 0, rgba(0, 0, 0, 0.18) 60%, rgba(0, 0, 0, 0.3) 100%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.m-mega\:menu_image a span, .m-mega\:menu_image--initial a span {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	font-size: 6.6rem;
	font-weight: 600;
	font-family: "poppins", arial, sans-serif;
	color: #fff;
	text-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
}
.m-mega\:product_category_nav .m-card__title, .m-mega\:product_category_nav .m-card__subtitle {
	text-align: left;
}
.m-mega\:product_category_nav star-reviews {
	justify-content: left;
}
.m-mega\:product_category_nav .m-card__footer {
	justify-content: left;
}

.m-row,
.m-grid {
	position: relative;
	padding: 2rem 0;
}
.m-row .l-wrapper,
.m-grid .l-wrapper {
	position: relative;
	z-index: 12;
}

.single-product .m-row,
.single-product .m-grid {
	position: relative;
	padding: 0;
}

.m-row.top, .m-row.top > .l-wrapper {
	align-items: flex-start;
}
.m-row.middle, .m-row.middle > .l-wrapper {
	align-items: center;
}
.m-row.bottom, .m-row.bottom > .l-wrapper {
	align-items: flex-end;
}
.m-row.stretch, .m-row.stretch > .l-wrapper {
	align-items: stretch;
}
.m-row.left, .m-row.left > .l-wrapper {
	justify-content: flex-start;
}
.m-row.center, .m-row.center > .l-wrapper {
	justify-content: center;
}
.m-row.right, .m-row.right > .l-wrapper {
	justify-content: flex-end;
}

.m-grid.top > .l-wrapper > .l-grid {
	align-items: start;
}
.m-grid.middle > .l-wrapper > .l-grid {
	align-items: center;
}
.m-grid.bottom > .l-wrapper > .l-grid {
	align-items: end;
}
.m-grid.stretch > .l-wrapper > .l-grid {
	align-items: stretch;
}
.m-grid.left > .l-wrapper > .l-grid {
	justify-content: start;
}
.m-grid.center > .l-wrapper > .l-grid {
	justify-content: center;
}
.m-grid.right > .l-wrapper > .l-grid {
	justify-content: end;
}
.m-grid.stretch > .l-wrapper > .l-grid {
	justify-content: stretch;
}

.m-row--c-nopadding > .l-wrapper {
	padding-top: 0;
	padding-bottom: 0;
}

.m-row--nopadding {
	padding-top: 0;
	padding-bottom: 0;
}

.m-row--space > .l-wrapper {
	align-items: space-between;
}

@media (min-width: 900px) {
	.m-relprods {
		grid-row-gap: 7rem;
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
}
@media (min-width: 480px) and (max-width: 899px) {
	.m-relprods {
		grid-template-columns: 1fr 1fr;
		-ms-grid-columns: (1fr 2rem)[1] 1fr;
	}
	.m-relprods *:nth-child(1) {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
	}
}
@media (min-width: 480px) and (max-width: 899px) and (-ms-high-contrast: none) {
	.m-relprods *:nth-child(1) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 480px) and (max-width: 899px) {
	.m-relprods *:nth-child(2) {
		-ms-grid-row: 1;
		-ms-grid-column: 3;
	}
}
@media (min-width: 480px) and (max-width: 899px) and (-ms-high-contrast: none) {
	.m-relprods *:nth-child(2) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 480px) and (max-width: 899px) {
	.m-relprods *:nth-child(3) {
		-ms-grid-row: 2;
		-ms-grid-column: 1;
	}
}
@media (min-width: 480px) and (max-width: 899px) and (-ms-high-contrast: none) {
	.m-relprods *:nth-child(3) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 480px) and (max-width: 899px) {
	.m-relprods *:nth-child(4) {
		-ms-grid-row: 2;
		-ms-grid-column: 3;
	}
}
@media (min-width: 480px) and (max-width: 899px) and (-ms-high-contrast: none) {
	.m-relprods *:nth-child(4) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 480px) and (max-width: 899px) {
	.m-relprods *:nth-child(5) {
		-ms-grid-row: 3;
		-ms-grid-column: 1;
	}
}
@media (min-width: 480px) and (max-width: 899px) and (-ms-high-contrast: none) {
	.m-relprods *:nth-child(5) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 480px) and (max-width: 899px) {
	.m-relprods *:nth-child(6) {
		-ms-grid-row: 3;
		-ms-grid-column: 3;
	}
}
@media (min-width: 480px) and (max-width: 899px) and (-ms-high-contrast: none) {
	.m-relprods *:nth-child(6) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 480px) and (max-width: 899px) {
	.m-relprods *:nth-child(7) {
		-ms-grid-row: 4;
		-ms-grid-column: 1;
	}
}
@media (min-width: 480px) and (max-width: 899px) and (-ms-high-contrast: none) {
	.m-relprods *:nth-child(7) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 480px) and (max-width: 899px) {
	.m-relprods *:nth-child(8) {
		-ms-grid-row: 4;
		-ms-grid-column: 3;
	}
}
@media (min-width: 480px) and (max-width: 899px) and (-ms-high-contrast: none) {
	.m-relprods *:nth-child(8) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 480px) and (max-width: 899px) {
	.m-relprods *:nth-child(9) {
		-ms-grid-row: 5;
		-ms-grid-column: 1;
	}
}
@media (min-width: 480px) and (max-width: 899px) and (-ms-high-contrast: none) {
	.m-relprods *:nth-child(9) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 480px) and (max-width: 899px) {
	.m-relprods *:nth-child(10) {
		-ms-grid-row: 5;
		-ms-grid-column: 3;
	}
}
@media (min-width: 480px) and (max-width: 899px) and (-ms-high-contrast: none) {
	.m-relprods *:nth-child(10) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 480px) and (max-width: 899px) {
	.m-relprods *:nth-child(11) {
		-ms-grid-row: 6;
		-ms-grid-column: 1;
	}
}
@media (min-width: 480px) and (max-width: 899px) and (-ms-high-contrast: none) {
	.m-relprods *:nth-child(11) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 480px) and (max-width: 899px) {
	.m-relprods *:nth-child(12) {
		-ms-grid-row: 6;
		-ms-grid-column: 3;
	}
}
@media (min-width: 480px) and (max-width: 899px) and (-ms-high-contrast: none) {
	.m-relprods *:nth-child(12) {
		margin-bottom: 2rem;
	}
}
@media (min-width: 480px) and (max-width: 1219px) {
	.m-relprods mini-product img {
		max-height: 21vw;
		width: auto;
		margin: 0 auto;
	}
}

.m-product__crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 2rem;
}
.m-product__crumbs\:link, .m-product__crumbs\:final {
	color: #aaa8a2;
	font-size: 1.2rem;
}
@media (max-width: 767px) {
	.m-product__crumbs\:link, .m-product__crumbs\:final {
		display: inline-block;
		padding: 0.5rem 0;
	}
}
@media (min-width: 768px) {
	.m-product__crumbs\:link, .m-product__crumbs\:final {
		font-size: 1.6rem;
	}
}
.m-product__crumbs\:link::after {
	content: "/";
	margin: 0 0.5rem;
}
.m-product__crumbs\:final {
	font-weight: 600;
}
.m-product__atf {
	position: relative !important;
	z-index: 99;
}
.m-product__atf > .l-wrapper {
	padding-top: 2rem;
}
@media (min-width: 1024px) {
	.m-product__atf > .l-wrapper {
		padding-top: 6rem;
	}
}
.m-product__atf\:grid {
	width: 100%;
}
@media (min-width: 1024px) {
	.m-product__atf\:grid {
		display: flex;
		align-items: flex-start;
		justify-content: center;
	}
}
@media (max-width: 599px) {
	.m-product__gallery {
		margin: 0 auto 3rem;
		max-width: 30rem;
	}
}
@media (min-width: 600px) and (max-width: 1023px) {
	.m-product__gallery {
		float: right;
		position: sticky;
		top: 2rem;
	}
}
@media (min-width: 600px) and (max-width: 1023px) {
	.m-product__gallery--full {
		width: 46%;
	}
}
@media (min-width: 1024px) {
	.m-product__gallery--full {
		width: 40%;
	}
}
.m-product__gallery--narrow {
	width: 30%;
}
.m-product__gallery__slider {
	display: block;
	position: relative;
}
.m-product__gallery__slider:hover .m-prodslider__nav {
	opacity: 1;
}
.m-product__gallery__slider .m-prodslider__nav {
	height: 0;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}
.m-product__gallery__slider .m-prodslider__nav button {
	position: absolute;
	background: none;
	border: 0;
	padding: 0;
	font-size: 0;
	top: calc(50% - 3rem);
	outline: 0;
	background: #000;
	border-radius: 1.5rem;
	cursor: pointer;
}
.m-product__gallery__slider .m-prodslider__nav button polygon {
	fill: #fff;
}
.m-product__gallery__slider .m-prodslider__nav button:nth-child(1) {
	left: 0;
}
.m-product__gallery__slider .m-prodslider__nav button:nth-child(2) {
	right: 0;
}
.m-product__gallery__slider .m-slide {
	/*height: 0;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0ms ease-in-out;*/
}
.m-product__gallery__slider .m-slide .m-zoom-image {
	background-size: contain !important;
	background-repeat: no-repeat;
}
@media (max-width: 767px) {
	.m-product__gallery__slider .m-slide .m-zoom-image {
		background-image: none !important;
	}
}
.m-product__gallery__slider .m-slide:not(:hover) .m-zoom-image {
	background-position: center top !important;
}
.m-product__gallery__slider .m-slide:hover .m-zoom-image {
	background-size: 200% !important;
}
@media (min-width: 768px) {
	.m-product__gallery__slider .m-slide:hover picture {
		opacity: 0;
	}
}
.m-product__gallery__slider .m-slide.active {
	/*height: auto;
	opacity: 1;
	transition: opacity .4s ease-in-out;*/
}
.m-product__gallery__slider .m-slide picture {
	display: block;
}
.m-product__gallery__thumbs {
	width: calc(100% - 12rem);
}
.m-product__gallery__thumbs .glide__track {
	width: calc(100% + 12rem);
}
.m-product__gallery__thumbs .m-slide {
	opacity: 0.5;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}
.m-product__gallery__thumbs .m-slide.glide__slide--active {
	opacity: 1;
}
.m-product__gallery__thumbs .m-slide:hover {
	opacity: 1;
}
.m-product__about {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}
@media (min-width: 600px) and (max-width: 1023px) {
	.m-product__about {
		width: 50%;
		float: left;
	}
}
@media (min-width: 1024px) {
	.m-product__about {
		position: sticky;
		padding: 0 2rem;
	}
	.m-product__about--full {
		width: 40%;
	}
	.m-product__about--narrow {
		width: 50%;
	}
}
.m-product__about\:title {
	font-weight: 100;
	display: block;
	margin-bottom: 2.5rem;
	width: 100%;
}
.m-product__about\:reviews {
	display: flex;
	justify-content: flex-start;
	margin-bottom: 3rem;
	width: 100%;
	padding-bottom: 3rem;
	border-bottom: 1px solid #d3d2cd;
}
.m-product__about\:reviews:hover {
	border-bottom: 1px solid #d3d2cd;
}
@media (max-width: 767px) {
	.m-product__about\:reviews {
		flex-direction: column;
	}
}
.m-product__about\:reviews > span {
	display: block;
	color: #edab2f;
	line-height: 1;
	position: relative;
	top: 1px;
	font-weight: 600;
}
@media (min-width: 768px) {
	.m-product__about\:reviews > span {
		margin-left: 2.5rem;
	}
}
.m-product__about\:description {
	width: 55%;
	font-size: 1.6rem;
	color: #000;
}
.m-product__about\:description--full {
	width: 100%;
}
.m-product__about\:description--narrow {
	width: 55%;
}
@media (max-width: 1023px) {
	.m-product__about\:description {
		width: 100%;
	}
}
.m-product__about\:description p:not(:last-child), .m-product__about\:description ul:not(:last-child), .m-product__about\:description ol:not(:last-child) {
	margin-bottom: 1.5rem;
}
.m-product__about\:description ul {
	list-style-type: disc;
	padding-left: 3rem;
}
.m-product__about\:description li:not(:last-child) {
	margin-bottom: 1rem;
}
.m-product__about\:description:not(:last-child) {
	margin-bottom: 1.5rem;
}
.m-product__about\:description img {
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.m-product__about\:description img:not(:last-child) {
	margin-right: 1rem;
}
.m-product__about\:ingredients {
	display: block;
	width: 45%;
	padding-left: 1.5rem;
}
@media (max-width: 1023px) {
	.m-product__about\:ingredients {
		width: 100%;
		padding-left: 0;
		margin-top: 3rem;
	}
}
.m-product__about\:ingredients > h3 {
	font-size: 3.4rem;
	display: block;
	width: 100%;
	text-align: center;
}
.m-product__about\:ingredients ingredient-box {
	margin-bottom: 2rem;
}
.m-product__tags {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	border-top: 1px solid #847e78;
	border-bottom: 1px solid #847e78;
	padding: 1.5rem 0;
	font-size: 1.5rem;
	color: #605a55;
	font-weight: 500;
	margin: 1.5rem 0 2rem;
	width: 100%;
}
@media (min-width: 768px) {
	.m-product__tags {
		padding: 0.5rem 2rem;
	}
}
.m-product__tag:not(:last-child)::after {
	content: "•";
	padding: 0 1.2rem;
}
@media (min-width: 600px) and (max-width: 1023px) {
	.m-product__purchase {
		width: 50%;
		float: left;
		padding-top: 4rem;
		clear: left;
	}
}
@media (min-width: 1024px) {
	.m-product__purchase {
		width: 20%;
		position: sticky;
		top: 2rem;
		margin-left: 2rem;
	}
}

star-reviews {
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (max-width: 767px) {
	star-reviews {
		justify-content: left;
	}
}

@media (max-width: 767px) {
	.m-stars {
		flex-direction: column;
	}
}
.m-stars, .m-stars__stars {
	display: flex;
	align-items: center;
	justify-content: center;
}
.m-stars__stars li {
	display: block;
	width: 2.2rem;
	height: 2rem;
	background-image: url("/wp-content/themes/hyalogic/assets/images/m-star--gray.svg");
	background-repeat: no-repeat;
	background-position: 0 center;
	background-size: auto 100%;
}
@media (max-width: 767px) {
	.m-stars__stars {
		margin-bottom: 1rem;
	}
}
@media (min-width: 768px) {
	.m-stars__stars {
		margin-right: 0.2rem;
	}
}
.m-stars__reviews {
	line-height: 1;
	position: relative;
	top: 1px;
	font-weight: 600;
}
.m-stars--summary .m-stars__reviews {
	font-size: 1.5rem;
	font-weight: 600;
}
@media (max-width: 767px) {
	.m-stars--summary .m-stars__reviews {
		margin-bottom: 2rem;
	}
}
@media (min-width: 768px) {
	.m-stars--summary .m-stars__reviews {
		margin-left: 1rem;
	}
}

.m-star {
	color: #edab2f;
	font-size: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-image: url("/wp-content/themes/hyalogic/assets/images/m-star--orange.svg");
	background-repeat: no-repeat;
	background-position: 0 center;
	background-size: auto 100%;
}

fs-tracker {
	display: block;
	margin-bottom: 2rem;
}
fs-tracker > span {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 600;
	color: #014675;
	margin-bottom: 1rem;
}
fs-tracker .bar {
	display: block;
	width: 100%;
	position: relative;
	height: 1.5rem;
	border-radius: 3rem;
	background-color: #f3f0ee;
}
fs-tracker .icon {
	display: block;
	width: 3.5rem;
	height: 3.5rem;
	background-color: #fff;
	background-size: 60%;
	background-position: center;
	background-repeat: no-repeat;
	border: 1px solid #847e78;
	filter: drop-shadow(0 5px 1rem rgba(0, 0, 0, 0.1));
	z-index: 3;
	position: absolute;
	top: 0;
	border-radius: 100%;
	transform: translateX(-50%) translateY(-25%);
	transition: left 750ms ease-in-out;
}
fs-tracker .fill {
	display: block;
	height: 100%;
	border-radius: 3rem;
	background: #014675;
	background: linear-gradient(to right, #014675 0%, #014675 100%);
	transition: width 750ms ease-in-out;
}

ingredient-box {
	display: block;
}

.m-igbox {
	display: block;
	padding: 2rem;
	border-radius: 3px;
	background-color: #f3f0ee;
	position: relative;
}
@media (min-width: 768px) {
	.m-igbox {
		padding: 2rem 3rem;
	}
}
.m-igbox--slim {
	padding: 1.5rem;
}
.m-igbox--slim .m-igbox__name {
	font-size: 2rem;
}
.m-igbox--slim .m-igbox__weight {
	font-size: 1.5rem;
}
.m-igbox__name {
	display: block;
	font-size: 2rem;
	font-weight: 600;
	font-family: "poppins", arial, sans-serif;
	margin-bottom: 1.5rem;
	color: #302d2b;
	position: relative;
	z-index: 2;
}
@media (min-width: 768px) {
	.m-igbox__name {
		font-size: 2.8rem;
	}
}
.m-igbox__description {
	display: block;
	font-size: 1.4rem;
	color: #000;
	margin-bottom: 2rem;
	position: relative;
	z-index: 2;
}
@media (min-width: 600px) {
	.m-igbox__description {
		min-height: 8rem;
		width: 75%;
	}
}
@media (min-width: 768px) {
	.m-igbox__description {
		font-size: 1.8rem;
	}
}
.m-igbox__weight {
	font-size: 1.8rem;
	color: #000;
	font-weight: 600;
	position: relative;
	z-index: 2;
}
@media (min-width: 768px) {
	.m-igbox__weight {
		font-size: 1.8rem;
	}
}
.m-igbox__image {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 3px;
	background-size: 35% auto;
	background-repeat: no-repeat;
	background-position: right top;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

buy-box {
	display: block;
	background-color: #f3f0ee;
	border-radius: 3px;
	padding: 2rem;
}
buy-box.hidden {
	top: -15rem !important;
}
buy-box.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
	filter: drop-shadow(0 1rem 1rem rgba(0, 0, 0, 0.1));
	border-radius: 0;
	transition: top 250ms ease-in-out;
}
@media (max-width: 767px) {
	buy-box.sticky {
		display: none;
	}
}
@media (min-width: 768px) {
	buy-box.sticky {
		height: 8rem;
	}
}
@media (min-width: 1220px) {
	buy-box.sticky {
		height: 11rem;
	}
}
buy-box.sticky .m-flashmsgs {
	position: fixed;
	top: 13rem;
	left: 20%;
	width: 60%;
	z-index: 9999999;
}
buy-box.sticky .m-flashmsg {
	filter: drop-shadow(0 1rem 1rem rgba(0, 0, 0, 0.1));
}
buy-box.sticky .m-bb {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0;
}
@media (min-width: 768px) {
	buy-box.sticky .m-bb {
		padding: 0 3rem;
	}
}
buy-box.sticky .m-bb__options {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
buy-box.sticky .m-bb__title, buy-box.sticky .m-bb__stock {
	width: auto;
}
buy-box.sticky .m-bb__title {
	margin-bottom: 0;
	border-bottom: 0;
	margin-right: 1rem;
	border-right: 1px solid #d3d2cd;
	padding: 3rem 2rem 3rem 0;
}
@media (max-width: 767px) {
	buy-box.sticky .m-bb__title {
		display: none;
	}
}
buy-box.sticky .m-bb__price {
	margin-bottom: 0;
}
buy-box.sticky .m-bb__qty {
	margin-bottom: 0;
}
buy-box.sticky .m-bb__stock--in-stock {
	display: none;
}
buy-box.sticky .m-bb buy-box-options {
	border-bottom: 0;
}
buy-box.sticky .m-bb buy-box-option {
	margin: 0 2rem;
	max-width: 25rem;
}
buy-box.sticky .m-bb buy-box-option:last-of-type {
	padding-bottom: 0;
}
buy-box.sticky .m-bb input[type=radio] + label, buy-box.sticky .m-bb input[type=checkbox] + label {
	margin-bottom: 0;
}

buy-box-options {
	display: block;
	border-bottom: 1px solid #d3d2cd;
}

buy-box-option {
	display: block;
}
buy-box-option:last-of-type {
	padding-bottom: 2rem;
}

.m-bb {
	position: relative;
}
.m-bb label {
	cursor: pointer;
}
.m-bb input[type=radio],
.m-bb input[type=checkbox] {
	display: none;
}
.m-bb input[type=radio] + label,
.m-bb input[type=checkbox] + label {
	display: block;
	width: 100%;
	padding-left: 2.5rem;
	position: relative;
	line-height: 1;
	margin-bottom: 1rem;
	font-size: 1.6rem;
}
.m-bb input[type=radio] + label *,
.m-bb input[type=checkbox] + label * {
	line-height: 1;
}
.m-bb input[type=radio] + label::before, .m-bb input[type=radio] + label::after,
.m-bb input[type=checkbox] + label::before,
.m-bb input[type=checkbox] + label::after {
	content: "";
	display: block;
	border-radius: 100%;
	position: absolute;
	transition: all 250ms ease-in-out;
}
.m-bb input[type=radio] + label::before,
.m-bb input[type=checkbox] + label::before {
	width: 1.5rem;
	height: 1.5rem;
	border: 1px solid #847e78;
	background-color: #fff;
	z-index: 1;
	top: 0;
	left: 0;
}
.m-bb input[type=radio] + label::after,
.m-bb input[type=checkbox] + label::after {
	width: 0.7rem;
	height: 0.7rem;
	background-color: #014675;
	top: 4px;
	left: 4px;
	z-index: 3;
	opacity: 0;
	transform: scale(0.8);
}
.m-bb input[type=radio] + label:focus::before,
.m-bb input[type=checkbox] + label:focus::before {
	border-color: #302d2b;
}
.m-bb input[type=radio]:checked + label,
.m-bb input[type=checkbox]:checked + label {
	font-weight: 600;
}
.m-bb input[type=radio]:checked + label::before,
.m-bb input[type=checkbox]:checked + label::before {
	border-color: #014675;
}
.m-bb input[type=radio]:checked + label::after,
.m-bb input[type=checkbox]:checked + label::after {
	opacity: 1;
	transform: scale(1);
}
.m-bb input[type=checkbox] + label::before, .m-bb input[type=checkbox] + label::after {
	border-radius: 0;
}
.m-bb .payment_methods input[type=radio] + label::before,
.m-bb .payment_methods input[type=checkbox] + label::before {
	top: 4px;
}
.m-bb .payment_methods input[type=radio] + label::after,
.m-bb .payment_methods input[type=checkbox] + label::after {
	top: 8px;
}
.m-bb > p {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.m-bb label {
	display: block;
	width: 100%;
	font-weight: 600;
	font-size: 1.4rem;
	margin-bottom: 1rem;
}
.m-bb input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.m-bb textarea {
	width: 100%;
	border: 0;
	border-bottom: 1px solid #d3d2cd;
	font-family: "poppins", arial, sans-serif;
	font-size: 1.6rem;
	padding: 5px 0;
	margin-bottom: 4rem;
}
.m-bb input:not([type=submit]):not([type=radio]):not([type=checkbox])::placeholder,
.m-bb textarea::placeholder {
	color: #aaa8a2;
	font-size: 1.4rem;
}
.m-bb input:not([type=submit]):not([type=radio]):not([type=checkbox]).invalid,
.m-bb textarea.invalid {
	border-color: #ef1644;
}
.m-bb input:not([type=submit]):not([type=radio]):not([type=checkbox]):focus,
.m-bb textarea:focus {
	border-color: #302d2b;
}
.m-bb textarea {
	min-height: 10rem;
	resize: vertical;
	width: 100%;
	padding: 1rem;
	border: 1px solid #d3d2cd;
}
.m-bb .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.m-bb .alternate textarea {
	border: 1px solid #847e78;
	font-family: "poppins", arial, sans-serif;
	font-size: 1.6rem;
	padding: 1rem;
	margin-bottom: 4rem;
}
.m-bb .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]):placeholder,
.m-bb .alternate textarea:placeholder {
	color: #aaa8a2;
	font-size: 1.4rem;
}
.m-bb .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]).invalid,
.m-bb .alternate textarea.invalid {
	border-color: #ef1644;
}
.m-bb .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]):focus,
.m-bb .alternate textarea:focus {
	border-color: #302d2b;
}
.m-bb .alternate .m-select {
	display: block;
	width: 100%;
	cursor: pointer;
	font-size: 1.6rem;
	color: #000;
	padding: 1rem 1.5rem 1rem 1rem;
	background-color: #fff;
	font-family: "poppins", arial, sans-serif;
	border: 1px solid #d3d2cd;
}
.m-bb .alternate .m-select__parent {
	display: block;
	width: inherit;
	position: relative;
	margin-bottom: 4rem;
}
.m-bb .alternate .m-select__parent::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 0.6rem solid #302d2b;
	border-left: 0.6rem solid transparent;
	border-right: 0.6rem solid transparent;
	border-bottom: 0rem solid transparent;
	pointer-events: none;
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	right: 1rem;
}
.m-bb .alternate .m-select__parent--multi::after {
	content: none;
}
.m-bb .alternate .m-select__parent--multi select {
	min-height: 10rem;
}
.m-bb .alternate .m-select__parent.invalid {
	border-color: #ef1644;
}
.m-bb .alternate .m-select__parent:focus {
	border-color: #302d2b;
}
.m-bb .no-main-label > label {
	display: none !important;
}
.m-bb .ginput_complex {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
.m-bb .ginput_complex > * {
	width: 48%;
}
.m-bb .ginput_complex label {
	font-size: 1.2rem;
	display: block;
	margin-top: 1rem;
	color: #aaa8a2;
	text-transform: uppercase;
	font-weight: 500;
	padding-left: 1rem;
}
.m-bb .field_sublabel_above .ginput_complex label {
	display: block;
	width: 100%;
	font-weight: 600;
	font-size: 1.4rem;
	margin-top: 0;
	margin-bottom: 1rem;
	text-transform: none;
	padding-left: 0;
	color: #302d2b;
}
.m-bb .gform_footer {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.m-bb .gform_footer input {
	margin-right: 2rem;
}
.m-bb .validation_error {
	display: block;
	color: #fff;
	background-color: #ef1644;
	padding: 5px 1rem;
	margin-bottom: 2rem;
	border-radius: 3px;
	font-size: 1.4rem;
}
.m-bb .gfield_description.validation_message {
	display: block;
	color: #ef1644;
	padding: 5px 0;
	margin-top: -3rem;
	margin-bottom: 3rem;
	font-size: 1.4rem;
}
.m-bb select {
	border-radius: 0;
}
.m-bb .m-select {
	display: block;
	width: 100%;
	cursor: pointer;
	font-size: 1.7rem;
	color: #000;
	padding: 5px;
	background-color: #fff;
	font-family: "poppins", arial, sans-serif;
	border: 0;
	border-bottom: 1px solid #d3d2cd;
}
.m-bb .m-select__parent {
	display: block;
	width: 100%;
	position: relative;
	margin-bottom: 4rem;
}
.m-bb .m-select__parent::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 0.6rem solid #302d2b;
	border-left: 0.6rem solid transparent;
	border-right: 0.6rem solid transparent;
	border-bottom: 0rem solid transparent;
	pointer-events: none;
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	right: 1rem;
}
.m-bb .m-select__parent--multi::after {
	content: none;
}
.m-bb .m-select__parent--multi select {
	min-height: 10rem;
}
.m-bb .m-select.invalid {
	border-color: #ef1644;
}
.m-bb .m-select:focus {
	border-color: #302d2b;
}
.m-bb::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.85);
	opacity: 0;
	transition: opacity 250ms ease-in-out;
	position: absolute;
	z-index: 5;
	pointer-events: none;
}
.m-bb::after {
	content: "";
	position: absolute;
	z-index: 6;
	top: calc(50% - 1.5rem);
	left: calc(50% - 1.5rem);
	opacity: 0;
	transition: opacity 250ms ease-in-out;
	pointer-events: none;
}
.m-bb.loading::before, .m-bb.loading::after {
	opacity: 1;
	pointer-events: all;
}
.m-bb__title {
	display: block;
	width: 100%;
	font-size: 1.8rem;
	text-transform: uppercase;
	font-family: "poppins", arial, sans-serif;
	color: #302d2b;
	font-weight: 600;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid #d3d2cd;
}
.m-bb__price {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	margin-bottom: 1.5rem;
}
.m-bb__price--normal {
	font-size: 2.4rem;
	font-weight: 600;
	color: #014675;
	margin-right: 1rem;
	text-decoration: none;
}
@media (min-width: 768px) {
	.m-bb__price--normal {
		font-size: 3.6rem;
	}
}
.m-bb__price--old {
	font-size: 1.8rem;
	font-weight: 600;
	color: #ef1644;
	text-decoration: none;
	display: block;
	padding: 0.5rem;
	position: relative;
}
.m-bb__price--old::after {
	content: "";
	width: 100%;
	height: 1px;
	background-color: #ef1644;
	position: absolute;
	left: 0;
	top: 50%;
	transform: rotate(-15deg);
}
.m-bb label[for=bb-opt-recurring] {
	color: #014675;
}
.m-bb label[for=bb-opt-recurring] a {
	color: #014675;
	font-weight: 600;
	font-style: italic;
	text-decoration: underline;
}
.m-bb .alternate .m-select__parent,
.m-bb .m-select__parent {
	width: calc(100% - 2.5rem);
	margin-left: 2.5rem;
	margin-bottom: 0;
}
.m-bb .m-bb__variation {
	display: block;
	width: 100%;
	margin-bottom: 1.5rem;
}
.m-bb .m-bb__variation .alternate .m-select__parent,
.m-bb .m-bb__variation .m-select__parent {
	margin-left: 0;
	width: 100%;
}
.m-bb__stock {
	margin-top: 1.5rem;
	font-size: 1.4rem;
	text-transform: uppercase;
	font-weight: 600;
	display: block;
	width: 100%;
	margin-bottom: 2rem;
	padding-left: 1.5rem;
	position: relative;
}
.m-bb__stock::before {
	content: "";
	display: block;
	position: absolute;
	top: 6px;
	width: 1rem;
	height: 1rem;
	border-radius: 100%;
	left: 0;
	background-color: #000;
}
.m-bb__stock--in-stock {
	color: #81b91b;
}
.m-bb__stock--in-stock::before {
	background-color: #81b91b;
}
.m-bb__stock--out-of-stock {
	color: #ef1644;
}
.m-bb__stock--out-of-stock::before {
	background-color: #ef1644;
}
.m-bb__qty {
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	margin-bottom: 1.5rem;
}
.m-bb__qty button {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #d8d7d2;
	border: 1px solid #d3d2cd;
	font-size: 1.8rem;
	font-weight: 600;
	cursor: pointer;
	width: 3rem;
	outline: 0;
}
.m-bb__qty button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
.m-bb__qty\:decrement {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}
.m-bb__qty input {
	display: block;
	width: 6rem !important;
	font-size: 2rem !important;
	border-left: 0 !important;
	border-right: 0 !important;
	border-top: 1px solid #d3d2cd !important;
	border-bottom: 1px solid #d3d2cd !important;
	color: #000;
	padding: 0.5rem;
	text-align: center;
	font-weight: 600;
	transition: border-color 250ms ease-in-out;
	margin-bottom: 0 !important;
}
.m-bb__qty input.invalid {
	border-color: #ef1644;
}
.m-bb__qty\:increment {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}
.m-bb footer {
	display: flex;
	align-items: center;
	justify-content: center;
}
.m-bb footer input[type=submit]:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.m-notices span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 4rem;
	background: #edab2f;
	padding: 0.5rem 1rem;
	color: #fff;
	font-weight: 600;
	font-size: 1.6rem;
}
.m-notices span.error {
	background-color: #ef1644;
}
.m-notices span.success {
	background-color: #014675;
}

body > .m-notice a {
	color: #fff;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
body > .m-notice a span {
	display: block;
	width: 100%;
}
body > .m-notice a::after {
	content: "";
	display: block;
	height: 1px;
	background-color: #fff;
	transition: width 250ms ease-in-out;
	width: 0;
}
body > .m-notice a:hover::after {
	width: 100%;
}

.m-notice {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 4rem;
	background: #edab2f;
	padding: 0.5rem 1rem;
}
.m-notice--error {
	background-color: #ef1644;
}
.m-notice--success {
	background-color: #014675;
}
.m-notice__text {
	color: #fff;
	font-size: 1.2rem;
	text-align: center;
}
@media (min-width: 768px) {
	.m-notice__text {
		font-size: 1.6rem;
	}
}

.woocommerce-success,
.woocommerce-warning,
.woocommerce-error {
	display: block;
	width: 100%;
	height: auto;
}
.woocommerce-success li,
.woocommerce-warning li,
.woocommerce-error li {
	display: block;
	width: 100%;
	padding: 5px 1rem;
	color: #fff;
	font-weight: 500;
	font-size: 1.4rem;
	margin-bottom: 1rem;
	border-radius: 3px;
}
.woocommerce-success li a,
.woocommerce-warning li a,
.woocommerce-error li a {
	color: #fff;
	text-decoration: underline;
	font-weight: 600;
	font-style: italic;
}

.woocommerce-success li {
	background-color: #014675;
}

.woocommerce-warning li {
	background-color: #edab2f;
}

.woocommerce-error li {
	background-color: #ef1644;
}

.m-flashmsgs {
	display: block;
	width: 100%;
	height: auto;
}
.m-flashmsgs .error,
.m-flashmsgs .notice,
.m-flashmsgs .success {
	display: block;
	width: 100%;
	padding: 5px 1rem;
	color: #fff;
	font-weight: 500;
	font-size: 1.4rem;
	margin-bottom: 1rem;
	border-radius: 3px;
}
.m-flashmsgs .error a,
.m-flashmsgs .notice a,
.m-flashmsgs .success a {
	color: #fff;
	text-decoration: underline;
	font-weight: 600;
	font-style: italic;
}
.m-flashmsgs .error {
	background-color: #ef1644;
}
.m-flashmsgs .notice {
	background-color: #edab2f;
}
.m-flashmsgs .success {
	background-color: #014675;
}

.m-flashmsg--error, .m-flashmsg--warning, .m-flashmsg--success {
	display: block;
	width: 100%;
	padding: 5px 1rem;
	color: #fff;
	font-weight: 500;
	font-size: 1.4rem;
	margin-bottom: 1rem;
	border-radius: 3px;
}
.m-flashmsg--error a, .m-flashmsg--warning a, .m-flashmsg--success a {
	color: #fff;
	text-decoration: underline;
	font-weight: 600;
	font-style: italic;
}
.m-flashmsg--error {
	background-color: #ef1644 !important;
}
.m-flashmsg--warning {
	background-color: #edab2f !important;
}
.m-flashmsg--success {
	background-color: #014675 !important;
}

defer-image picture {
	opacity: 0;
	transition: opacity 500ms ease-in-out;
}

@media (max-width: 1023px) {
	.m-prod-grid-section .l-col--70 {
		width: 100% !important;
		padding-bottom: 5rem;
	}
}
@media (max-width: 1023px) {
	.m-prod-grid-section .m-sidebar {
		width: 100% !important;
		border-left: 0;
		padding-left: 0;
	}
}

.m-grid-title-bar {
	display: flex;
	width: 100%;
	margin-bottom: 2rem;
}
@media (max-width: 1023px) {
	.m-grid-title-bar {
		flex-wrap: wrap;
	}
}
.m-grid-title-bar__right {
	display: inline-flex;
	align-items: center;
	margin-bottom: 2.5rem;
}
@media (max-width: 479px) {
	.m-grid-title-bar__right {
		flex-wrap: wrap;
	}
}
@media (max-width: 1023px) {
	.m-grid-title-bar__right {
		width: 100%;
		justify-content: space-between;
	}
}
.m-grid-title-bar .m-prod-count {
	white-space: nowrap;
	padding-right: 3rem;
}
@media (max-width: 479px) {
	.m-grid-title-bar .m-prod-count {
		width: 100%;
		padding-bottom: 2rem;
	}
}
.m-grid-title-bar .m-prod-sort {
	display: inline-flex;
	align-items: center;
}
.m-grid-title-bar .m-prod-sort span {
	white-space: nowrap;
	padding-right: 1.2rem;
}
.m-grid-title-bar .m-prod-sort label {
	font-weight: 700;
	display: inline-flex;
	align-items: center;
}
.m-grid-title-bar .m-prod-sort .m-select__parent {
	min-width: 17rem;
}
.m-grid-title-bar .m-prod-sort .m-select__parent .m-select {
	padding-right: 3rem;
}

@media (min-width: 768px) {
	.m-sidebar {
		border-left: 0.1rem solid #9e9c95;
		padding-left: 5%;
	}
}
.m-sidebar__title {
	font-family: "poppins", arial, sans-serif;
	border-bottom: 0.1rem solid #847e78;
	font-size: 1.8rem;
	font-weight: bold;
	padding: 2rem 0;
	margin-bottom: 2rem;
}

.m-sidebar-nav {
	padding-bottom: 3rem;
}
@media (min-width: 768px) {
	.m-sidebar-nav {
		padding-bottom: 7rem;
	}
}
.m-sidebar-nav ul a,
.m-sidebar-nav ul span {
	color: #000;
	font-size: 1.8rem;
	display: block;
	padding: 1rem 0;
}
.m-sidebar-nav ul span {
	color: #014675;
}

.m-account > .l-wrapper {
	padding-top: 6rem;
	padding-bottom: 6rem;
}
.m-account__dashboard > h2 {
	display: block;
	width: 100%;
	margin-bottom: 2rem;
	font-size: 6rem;
	font-weight: 400;
	font-family: "epicursive", arial, sans-serif;
}
.m-account__dashboard > footer {
	margin-top: 2rem;
}
.m-account__nav {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	flex-wrap: wrap;
	position: relative;
}
.m-account__nav\:wrapper {
	width: 25%;
	position: sticky;
	top: 2rem;
}
@media screen and (max-width: 1024px) {
	.m-account__nav\:wrapper {
		width: 100%;
		top: 0;
	}
	.m-account__nav\:wrapper.start::before {
		opacity: 0;
	}
	.m-account__nav\:wrapper.start::after {
		opacity: 1;
	}
	.m-account__nav\:wrapper.end::before {
		opacity: 1;
	}
	.m-account__nav\:wrapper.end::after {
		opacity: 0;
	}
	.m-account__nav\:wrapper::before, .m-account__nav\:wrapper::after {
		content: "";
		width: 3rem;
		height: 100%;
		display: block;
		position: absolute;
		top: 0;
		z-index: 5;
		pointer-events: none;
		transition: opacity 250ms ease-in-out;
	}
	.m-account__nav\:wrapper::before {
		left: 0;
		background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
	}
	.m-account__nav\:wrapper::after {
		right: 0;
		background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
	}
}
@media screen and (max-width: 1024px) {
	.m-account__nav {
		flex-wrap: initial;
		justify-content: flex-start;
		overflow: hidden;
		z-index: 1;
		margin-bottom: 3rem;
	}
}
.m-account__nav .ps__rail-x {
	z-index: 99;
}
.m-account__nav\:item {
	display: flex;
	width: 60%;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	background-color: #fff;
	border: 1px solid #f3f0ee;
	transition: background-color 250ms ease-in-out, color 250ms ease-in-out, border-color 250ms ease-in-out;
	position: relative;
	white-space: nowrap;
}
@media screen and (max-width: 1024px) {
	.m-account__nav\:item {
		width: auto;
		min-width: 22%;
	}
}
@media screen and (max-width: 768px) {
	.m-account__nav\:item {
		width: auto;
		min-width: 28%;
	}
}
@media screen and (max-width: 520px) {
	.m-account__nav\:item {
		width: auto;
		min-width: 40%;
	}
}
@media screen and (max-width: 375px) {
	.m-account__nav\:item {
		width: auto;
		min-width: 55%;
	}
}
.m-account__nav\:item:hover {
	border: 1px solid #d3d2cd;
	background-color: #f3f0ee;
	z-index: 4;
}
.m-account__nav\:item:not(:first-of-type) {
	margin-top: -1px;
}
@media screen and (max-width: 1024px) {
	.m-account__nav\:item:not(:first-of-type) {
		margin-top: 0;
		margin-left: -1px;
	}
}
.m-account__nav\:item--active {
	width: 80%;
	background-color: #71bfff;
	color: #fff;
	border: 1px solid #71bfff;
	z-index: 5;
}
@media screen and (max-width: 1024px) {
	.m-account__nav\:item--active {
		width: auto;
	}
}
.m-account__nav\:item--active:hover {
	border: 1px solid #014675;
	background-color: #71bfff;
	color: #fff;
}
.m-account__content {
	width: 75%;
	padding: 0 3rem;
}
.m-account__content .m-notices span:last-child {
	margin-bottom: 3rem;
}
@media screen and (max-width: 1024px) {
	.m-account__content {
		width: 100%;
		padding: 0;
	}
}
.m-account__tab {
	width: 100%;
}
.m-account__orders {
	width: 100%;
}
.m-account__order {
	display: block;
	width: 100%;
	background-color: #fff;
}
.m-account__order:not(:last-of-type) {
	margin-bottom: 5rem;
}
.m-account__order header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #d3d2cd;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	background-color: #f3f0ee;
}
@media screen and (max-width: 768px) {
	.m-account__order header {
		flex-wrap: wrap;
	}
}
.m-account__order header dl {
	flex: 1;
	padding: 1.5rem 2rem;
}
@media screen and (max-width: 768px) {
	.m-account__order header dl {
		flex: auto;
	}
	.m-account__order header dl:last-of-type, .m-account__order header dl:nth-last-child(2) {
		border-top: 1px solid #d3d2cd;
		width: 50%;
	}
	.m-account__order header dl:nth-last-child(3) {
		border-right: 0 !important;
	}
}
.m-account__order header dl:not(:last-of-type) {
	border-right: 1px solid #d3d2cd;
}
@media screen and (max-width: 520px) {
	.m-account__order header dl {
		width: 100%;
	}
	.m-account__order header dl:first-of-type, .m-account__order header dl:nth-child(2) {
		border-right: 0 !important;
		border-bottom: 1px solid #d3d2cd;
	}
}
.m-account__order header dl dt {
	text-transform: uppercase;
	font-size: 1.4rem;
	line-height: 1.1;
	font-weight: 600;
	margin-bottom: 0.5rem;
}
.m-account__order header dl dd {
	font-size: 1.6rem;
	font-weight: 400;
	white-space: nowrap;
}
.m-account__order header dl.status dd {
	text-transform: uppercase;
}
.m-account__order\:content {
	display: block;
	width: 100%;
	border-left: 1px solid #d3d2cd;
	border-right: 1px solid #d3d2cd;
	border-top: 0;
}
.m-account__order\:content__product {
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #d3d2cd;
}
@media (min-width: 480px) {
	.m-account__order\:content__product {
		flex-wrap: wrap;
	}
}
.m-account__order\:content__product\:about {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
@media (min-width: 480px) {
	.m-account__order\:content__product\:about {
		width: 100%;
	}
}
.m-account__order\:content__product\:about img {
	max-width: 15rem;
}
@media (min-width: 480px) {
	.m-account__order\:content__product\:about img {
		max-width: 9rem;
	}
}
.m-account__order\:content__product\:about div {
	padding-left: 2rem;
}
.m-account__order\:content__product\:about div h3 {
	font-size: 3.2rem;
	font-weight: 400;
	margin-bottom: 0;
	color: #302d2b;
}
.m-account__order\:content__product\:about div span {
	display: block;
	margin-top: 5px;
}
.m-account__order\:content__product\:price {
	margin-top: 2rem;
	font-size: 1.8rem;
	font-weight: 600;
	color: #014675;
}
@media (min-width: 480px) {
	.m-account__order\:content__product\:price {
		width: 100%;
		text-align: center;
		padding: 2rem 1rem 1rem;
		border-top: 1px solid #f3f0ee;
	}
}
.m-account__order footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 1.5rem;
	border: 1px solid #d3d2cd;
	border-top: 0;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	background-color: #f9f8f7;
}
.m-account__addresses h2 {
	display: block;
	width: 100%;
	margin-bottom: 2rem;
	font-size: 6rem;
	font-family: "epicursive", arial, sans-serif;
	font-weight: 400;
}
.m-account__addresses > .l-row > .l-col:first-of-type {
	padding-right: 1.5rem;
}
@media screen and (max-width: 520px) {
	.m-account__addresses > .l-row > .l-col:first-of-type {
		padding-right: 0;
		margin-bottom: 2.5rem;
	}
}
.m-account__addresses > .l-row > .l-col:last-of-type {
	padding-left: 1.5rem;
}
@media screen and (max-width: 520px) {
	.m-account__addresses > .l-row > .l-col:last-of-type {
		padding-left: 0;
	}
}
.m-account__addresses .m-address {
	position: relative;
	display: block;
	width: 100%;
	border: 1px solid #d3d2cd !important;
	border-radius: 0 !important;
}
.m-account__addresses .m-address a.m-button, .m-account__addresses .m-address .m-gateway__fields a.button, .m-gateway__fields .m-account__addresses .m-address a.button {
	position: absolute;
	top: 1rem;
	right: 1rem;
}
.m-account .m-accountfields form,
.m-account .m-addressfields form {
	padding: 2.5rem;
	background-color: #fff;
	border: 1px solid #d3d2cd;
	border-radius: 5px;
}
.m-account .m-accountfields form .m-select,
.m-account .m-addressfields form .m-select {
	border-radius: 0;
	border-left: 0;
	border-right: 0;
	border-top: 0;
	padding-left: 0;
	padding-right: 0;
	border-color: #d3d2cd;
}
.m-account .m-accountfields form .m-select:focus,
.m-account .m-addressfields form .m-select:focus {
	border-color: #605a55;
}
.m-account .m-accountfields .l-col--2:first-child,
.m-account .m-addressfields .l-col--2:first-child {
	padding-right: 2rem;
}
.m-account .m-accountfields .l-col--2:last-child,
.m-account .m-addressfields .l-col--2:last-child {
	padding-left: 2rem;
}
.m-account .m-accountfields label,
.m-account .m-addressfields label {
	font-weight: 700;
}
.m-account .m-accountfields input:not([type=submit]),
.m-account .m-addressfields input:not([type=submit]) {
	margin-bottom: 4rem;
}
.m-account .m-accountfields input:not([type=submit]).invalid,
.m-account .m-addressfields input:not([type=submit]).invalid {
	border-color: #ef1644 !important;
}
.m-account .m-accountfields select.invalid,
.m-account .m-addressfields select.invalid {
	border-color: #ef1644 !important;
}
.m-account__payments > h2 {
	display: block;
	width: 100%;
	margin-bottom: 2rem;
	font-size: 6rem;
	font-family: "epicursive", arial, sans-serif;
	font-weight: 400;
}
.m-account__payments > footer {
	margin-top: 2rem;
}
.m-account__addpayment .woocommerce-paytrace-SavedPaymentMethods-wrapper {
	background-color: transparent !important;
	padding: 0 !important;
	margin-bottom: 0 !important;
}
.m-account__addpayment form {
	position: relative;
}
.m-account__addpayment form label {
	cursor: pointer;
}
.m-account__addpayment form input[type=radio],
.m-account__addpayment form input[type=checkbox] {
	display: none;
}
.m-account__addpayment form input[type=radio] + label,
.m-account__addpayment form input[type=checkbox] + label {
	display: block;
	width: 100%;
	padding-left: 2.5rem;
	position: relative;
	line-height: 1;
	margin-bottom: 1rem;
	font-size: 1.6rem;
}
.m-account__addpayment form input[type=radio] + label *,
.m-account__addpayment form input[type=checkbox] + label * {
	line-height: 1;
}
.m-account__addpayment form input[type=radio] + label::before, .m-account__addpayment form input[type=radio] + label::after,
.m-account__addpayment form input[type=checkbox] + label::before,
.m-account__addpayment form input[type=checkbox] + label::after {
	content: "";
	display: block;
	border-radius: 100%;
	position: absolute;
	transition: all 250ms ease-in-out;
}
.m-account__addpayment form input[type=radio] + label::before,
.m-account__addpayment form input[type=checkbox] + label::before {
	width: 1.5rem;
	height: 1.5rem;
	border: 1px solid #847e78;
	background-color: #fff;
	z-index: 1;
	top: 0;
	left: 0;
}
.m-account__addpayment form input[type=radio] + label::after,
.m-account__addpayment form input[type=checkbox] + label::after {
	width: 0.7rem;
	height: 0.7rem;
	background-color: #014675;
	top: 4px;
	left: 4px;
	z-index: 3;
	opacity: 0;
	transform: scale(0.8);
}
.m-account__addpayment form input[type=radio] + label:focus::before,
.m-account__addpayment form input[type=checkbox] + label:focus::before {
	border-color: #302d2b;
}
.m-account__addpayment form input[type=radio]:checked + label,
.m-account__addpayment form input[type=checkbox]:checked + label {
	font-weight: 600;
}
.m-account__addpayment form input[type=radio]:checked + label::before,
.m-account__addpayment form input[type=checkbox]:checked + label::before {
	border-color: #014675;
}
.m-account__addpayment form input[type=radio]:checked + label::after,
.m-account__addpayment form input[type=checkbox]:checked + label::after {
	opacity: 1;
	transform: scale(1);
}
.m-account__addpayment form input[type=checkbox] + label::before, .m-account__addpayment form input[type=checkbox] + label::after {
	border-radius: 0;
}
.m-account__addpayment form .payment_methods input[type=radio] + label::before,
.m-account__addpayment form .payment_methods input[type=checkbox] + label::before {
	top: 4px;
}
.m-account__addpayment form .payment_methods input[type=radio] + label::after,
.m-account__addpayment form .payment_methods input[type=checkbox] + label::after {
	top: 8px;
}
.m-account__addpayment form > p {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.m-account__addpayment form label {
	display: block;
	width: 100%;
	font-weight: 600;
	font-size: 1.4rem;
	margin-bottom: 1rem;
}
.m-account__addpayment form input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.m-account__addpayment form textarea {
	width: 100%;
	border: 0;
	border-bottom: 1px solid #d3d2cd;
	font-family: "poppins", arial, sans-serif;
	font-size: 1.6rem;
	padding: 5px 0;
	margin-bottom: 4rem;
}
.m-account__addpayment form input:not([type=submit]):not([type=radio]):not([type=checkbox])::placeholder,
.m-account__addpayment form textarea::placeholder {
	color: #aaa8a2;
	font-size: 1.4rem;
}
.m-account__addpayment form input:not([type=submit]):not([type=radio]):not([type=checkbox]).invalid,
.m-account__addpayment form textarea.invalid {
	border-color: #ef1644;
}
.m-account__addpayment form input:not([type=submit]):not([type=radio]):not([type=checkbox]):focus,
.m-account__addpayment form textarea:focus {
	border-color: #302d2b;
}
.m-account__addpayment form textarea {
	min-height: 10rem;
	resize: vertical;
	width: 100%;
	padding: 1rem;
	border: 1px solid #d3d2cd;
}
.m-account__addpayment form .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.m-account__addpayment form .alternate textarea {
	border: 1px solid #847e78;
	font-family: "poppins", arial, sans-serif;
	font-size: 1.6rem;
	padding: 1rem;
	margin-bottom: 4rem;
}
.m-account__addpayment form .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]):placeholder,
.m-account__addpayment form .alternate textarea:placeholder {
	color: #aaa8a2;
	font-size: 1.4rem;
}
.m-account__addpayment form .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]).invalid,
.m-account__addpayment form .alternate textarea.invalid {
	border-color: #ef1644;
}
.m-account__addpayment form .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]):focus,
.m-account__addpayment form .alternate textarea:focus {
	border-color: #302d2b;
}
.m-account__addpayment form .alternate .m-select {
	display: block;
	width: 100%;
	cursor: pointer;
	font-size: 1.6rem;
	color: #000;
	padding: 1rem 1.5rem 1rem 1rem;
	background-color: #fff;
	font-family: "poppins", arial, sans-serif;
	border: 1px solid #d3d2cd;
}
.m-account__addpayment form .alternate .m-select__parent {
	display: block;
	width: inherit;
	position: relative;
	margin-bottom: 4rem;
}
.m-account__addpayment form .alternate .m-select__parent::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 0.6rem solid #302d2b;
	border-left: 0.6rem solid transparent;
	border-right: 0.6rem solid transparent;
	border-bottom: 0rem solid transparent;
	pointer-events: none;
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	right: 1rem;
}
.m-account__addpayment form .alternate .m-select__parent--multi::after {
	content: none;
}
.m-account__addpayment form .alternate .m-select__parent--multi select {
	min-height: 10rem;
}
.m-account__addpayment form .alternate .m-select__parent.invalid {
	border-color: #ef1644;
}
.m-account__addpayment form .alternate .m-select__parent:focus {
	border-color: #302d2b;
}
.m-account__addpayment form .no-main-label > label {
	display: none !important;
}
.m-account__addpayment form .ginput_complex {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
.m-account__addpayment form .ginput_complex > * {
	width: 48%;
}
.m-account__addpayment form .ginput_complex label {
	font-size: 1.2rem;
	display: block;
	margin-top: 1rem;
	color: #aaa8a2;
	text-transform: uppercase;
	font-weight: 500;
	padding-left: 1rem;
}
.m-account__addpayment form .field_sublabel_above .ginput_complex label {
	display: block;
	width: 100%;
	font-weight: 600;
	font-size: 1.4rem;
	margin-top: 0;
	margin-bottom: 1rem;
	text-transform: none;
	padding-left: 0;
	color: #302d2b;
}
.m-account__addpayment form .gform_footer {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.m-account__addpayment form .gform_footer input {
	margin-right: 2rem;
}
.m-account__addpayment form .validation_error {
	display: block;
	color: #fff;
	background-color: #ef1644;
	padding: 5px 1rem;
	margin-bottom: 2rem;
	border-radius: 3px;
	font-size: 1.4rem;
}
.m-account__addpayment form .gfield_description.validation_message {
	display: block;
	color: #ef1644;
	padding: 5px 0;
	margin-top: -3rem;
	margin-bottom: 3rem;
	font-size: 1.4rem;
}
.m-account__addpayment form select {
	border-radius: 0;
}
.m-account__addpayment form .m-select {
	display: block;
	width: 100%;
	cursor: pointer;
	font-size: 1.7rem;
	color: #000;
	padding: 5px;
	background-color: #fff;
	font-family: "poppins", arial, sans-serif;
	border: 0;
	border-bottom: 1px solid #d3d2cd;
}
.m-account__addpayment form .m-select__parent {
	display: block;
	width: 100%;
	position: relative;
	margin-bottom: 4rem;
}
.m-account__addpayment form .m-select__parent::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 0.6rem solid #302d2b;
	border-left: 0.6rem solid transparent;
	border-right: 0.6rem solid transparent;
	border-bottom: 0rem solid transparent;
	pointer-events: none;
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	right: 1rem;
}
.m-account__addpayment form .m-select__parent--multi::after {
	content: none;
}
.m-account__addpayment form .m-select__parent--multi select {
	min-height: 10rem;
}
.m-account__addpayment form .m-select.invalid {
	border-color: #ef1644;
}
.m-account__addpayment form .m-select:focus {
	border-color: #302d2b;
}
.m-account__addpayment form::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 5px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 250ms ease-in-out;
	z-index: 10;
}
.m-account__addpayment form::after {
	content: "";
	display: block;
	width: 3.5rem;
	height: 3.5rem;
	border: 4px solid rgba(0, 0, 0, 0.2);
	border-left-color: #014675;
	border-radius: 50%;
	animation: spinner 800ms linear infinite;
	position: absolute;
	top: 20%;
	left: calc(50% - 1.75rem);
	position: absolute;
	z-index: 9;
	opacity: 0;
	pointer-events: none;
	transition: opacity 250ms ease-in-out;
	z-index: 10;
}
.m-account__addpayment form.loading::before, .m-account__addpayment form.loading::after {
	opacity: 1;
	pointer-events: all;
}
.m-account__addpayment form > footer {
	margin-top: 2rem;
}
.m-account .m-accountfields h2 {
	margin-bottom: 2rem;
	font-size: 6rem;
	font-family: "epicursive", arial, sans-serif;
	font-weight: 400;
}

.m-savedcards {
	display: block;
	position: relative;
}
.m-savedcards::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.85);
	opacity: 0;
	transition: opacity 250ms ease-in-out;
	position: absolute;
	z-index: 5;
	pointer-events: none;
}
.m-savedcards::after {
	content: "";
	position: absolute;
	z-index: 6;
	top: calc(50% - 1.5rem);
	left: calc(50% - 1.5rem);
	opacity: 0;
	transition: opacity 250ms ease-in-out;
	pointer-events: none;
}
.m-savedcards.loading::before, .m-savedcards.loading::after {
	opacity: 1;
	pointer-events: all;
}

.m-savedcard {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	flex-wrap: wrap;
	border: 1px solid #847e78;
	background-color: #fff;
}
.m-savedcard:not(:first-of-type) {
	margin-top: -1px;
}
@media screen and (max-width: 768px) {
	.m-savedcard:not(:first-of-type) {
		margin-top: 2rem;
	}
}
.m-savedcard dl {
	padding: 1rem 2rem;
}
.m-savedcard dl:not(:last-of-type) {
	border-right: 1px solid #847e78;
}
.m-savedcard dl dt {
	text-transform: uppercase;
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 5px;
}
.m-savedcard dl dd {
	font-size: 1.6rem;
	font-weight: 600;
	white-space: nowrap;
}
.m-savedcard dl.card {
	width: 50%;
}
@media screen and (max-width: 768px) {
	.m-savedcard dl.card {
		border-right: 0;
		width: 100%;
	}
}
.m-savedcard dl.card dd {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
}
.m-savedcard dl.card dd::before {
	content: "";
	display: block;
	width: 3.5rem;
	height: 3rem;
	margin-right: 1rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
}
.m-savedcard dl.card dd.mastercard::before, .m-savedcard dl.card dd.mc::before {
	background-image: url(/wp-content/themes/hyalogic/assets/images/mastercard.svg);
}
.m-savedcard dl.card dd.visa::before {
	background-image: url(/wp-content/themes/hyalogic/assets/images/visa.svg);
}
.m-savedcard dl.card dd.amex::before {
	background-image: url(/wp-content/themes/hyalogic/assets/images/amex.svg);
}
.m-savedcard dl.card dd.disc::before, .m-savedcard dl.card dd.discover::before {
	background-image: url(/wp-content/themes/hyalogic/assets/images/discover.svg);
}
.m-savedcard dl.card dd.jcb::before {
	background-image: url(/wp-content/themes/hyalogic/assets/images/jcb.svg);
}
.m-savedcard dl.card dd.diners::before {
	background-image: url(/wp-content/themes/hyalogic/assets/images/diners.svg);
}
.m-savedcard dl.expiration {
	width: 20%;
}
@media screen and (max-width: 768px) {
	.m-savedcard dl.expiration {
		border-top: 1px solid #847e78;
		width: 50%;
	}
}
@media screen and (max-width: 520px) {
	.m-savedcard dl.expiration {
		width: 100%;
		border-right: 0;
	}
}
.m-savedcard dl.actions {
	width: 30%;
}
@media screen and (max-width: 768px) {
	.m-savedcard dl.actions {
		border-top: 1px solid #847e78;
		width: 50%;
	}
}
@media screen and (max-width: 520px) {
	.m-savedcard dl.actions {
		width: 100%;
	}
}
.m-savedcard dl.actions dt {
	text-align: center;
}
.m-savedcard dl.actions dd {
	display: flex;
	align-items: center;
	justify-content: center;
}
.m-savedcard dl.actions dd a {
	margin: 5px;
}

.m-product-features-callout {
	display: flex;
	align-items: center;
}
@media (max-width: 479px) {
	.m-product-features-callout {
		flex-direction: column-reverse;
	}
}
@media (max-width: 767px) {
	.m-product-features-callout {
		justify-content: center;
		width: 100%;
	}
}
.m-product-features-callout .m-product-features {
	transform: skewX(12deg);
}
@media (min-width: 480px) {
	.m-product-features-callout .m-product-features {
		width: 28rem;
	}
}
@media (min-width: 768px) {
	.m-product-features-callout .m-product-features {
		width: 80%;
	}
}
.m-product-features-callout .m-product-features li {
	padding: 1rem 3rem;
	background: linear-gradient(135deg, #014675, #edab2f) !important;
	margin-bottom: 1rem;
}
.m-product-features-callout .m-product-features li .m-product-features__content {
	transform: skewX(-12deg);
	color: #fff;
}
.m-product-features-callout .m-product-features li .m-product-features__content p {
	font-size: 1.2rem;
}
.m-product-features-callout .m-product-features li h4 {
	margin: 0;
}
@media (min-width: 1024px) {
	.m-product-features-callout .m-product-features li h4 {
		font-size: 3.3rem;
	}
}
.m-product-features-callout .m-product-image {
	z-index: 2;
}
@media (min-width: 480px) and (max-width: 767px) {
	.m-product-features-callout .m-product-image {
		width: 28rem;
		margin-left: -6rem;
	}
}
@media (min-width: 768px) {
	.m-product-features-callout .m-product-image {
		width: 20%;
	}
}
@media (max-width: 767px) {
	.m-product-features-callout .m-product-image img {
		max-width: 23rem;
	}
}
@media (min-width: 768px) {
	.m-product-features-callout .m-product-image img {
		margin: 0 -80%;
		width: 300%;
		max-width: 300%;
	}
}
@media (min-width: 1024px) {
	.m-product-features-callout .m-product-image img {
		margin: 0 -10rem;
		width: 330%;
		max-width: 330%;
	}
}

@media (max-width: 767px) {
	body .m-hero--home {
		padding-bottom: 20vw !important;
		padding-top: 5vw !important;
	}
}
@media (max-width: 479px) {
	body .m-hero--home {
		padding-bottom: 28vw !important;
		padding-top: 10vw !important;
	}
}

/**
 * Overall
 */
.gform_wrapper .gform_validation_container {
	display: none !important;
}

.m-form {
	padding: 2rem 0;
}
.m-form--nolabels_wrapper label {
	display: none;
}
.m-form\:col {
	clear: none !important;
	clear: none;
}
.m-form\:colli {
	clear: none;
}
@media (min-width: 768px) {
	.m-form\:col__2 {
		width: 50%;
		float: left;
	}
}
@media (min-width: 768px) {
	.m-form\:col__4 {
		width: 25%;
		float: left;
	}
}
.m-form\:col__first {
	clear: left;
}
.m-form ul {
	margin: 0 calc(4rem * -1) 0 0 !important;
	padding: 0 !important;
}
.m-form li {
	list-style: none;
	margin-bottom: 2rem;
	padding-right: 4rem;
}
.m-form li:not(.m-form\:col) {
	clear: left;
}
.m-form input,
.m-form select,
.m-form textarea {
	width: 100%;
	background: none;
	cursor: pointer;
}
.m-form input::-webkit-input-placeholder,
.m-form select::-webkit-input-placeholder,
.m-form textarea::-webkit-input-placeholder { /* WebKit browsers */
	color: #605a55;
}
.m-form input:-moz-placeholder,
.m-form select:-moz-placeholder,
.m-form textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	color: #605a55;
}
.m-form input::-moz-placeholder,
.m-form select::-moz-placeholder,
.m-form textarea::-moz-placeholder { /* Mozilla Firefox 19+ */
	color: #605a55;
}
.m-form input:-ms-input-placeholder,
.m-form select:-ms-input-placeholder,
.m-form textarea:-ms-input-placeholder { /* Internet Explorer 10+ */
	color: #605a55;
}
.m-form input:not([type=submit]) {
	border: 1px solid #d3d2cd;
	border-width: 0 0 0.1rem 0;
	height: 4rem;
	padding: 0;
	font-size: 1.6rem;
}
.m-form input:not([type=submit]):focus {
	border-color: #000;
}
.m-form input[type=submit] {
	border: 0;
	border-radius: 2.2rem;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	width: auto;
	padding: 1rem 1.5rem;
	height: auto;
	background: #edab2f;
	transition: all 0.3s ease-in-out;
}
@media (min-width: 480px) {
	.m-form input[type=submit] {
		padding: 1.5rem 5rem;
		font-size: 1.8rem;
	}
}
.m-form input[type=submit]:hover {
	background: #efb446;
}
.m-form select:not(.m-select) {
	height: 5rem;
	padding: 0 2rem;
	font-size: 1.6rem;
	margin-top: 0.5rem;
	background-image: url(../images/icn_select_arrow.svg);
	background-repeat: no-repeat;
	background-position: calc(100% - 2rem) calc(50% - 0.1rem);
	background-size: 1rem auto;
	cursor: pointer;
	border-radius: 0;
	border: 0;
	border-bottom: 1px solid #d3d2cd;
	font-family: "poppins", arial, sans-serif;
}
.m-form select:not(.m-select):focus {
	border-color: #302d2b;
}
.m-form textarea {
	border-radius: 0;
	margin-top: 0.5rem;
	font-size: 1.6rem;
	min-height: 100px;
	resize: vertical;
	border: 1px solid #d3d2cd;
}
.m-form textarea:focus {
	border-color: #000;
}
.m-form .gform_body {
	overflow: hidden;
}
.m-form .gfield_label {
	font-weight: 700;
}
.m-form .hidden_label .gfield_label {
	display: none;
}
.m-form .gform_footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.m-form .gform_footer .gform_ajax_spinner {
	margin-left: 1rem;
}
.m-form\:address {
	clear: both;
}
.m-form\:address .gfield_label {
	display: none;
}
.m-form\:address .ginput_complex > span {
	display: flex;
	flex-direction: column-reverse;
	margin-bottom: 4rem;
}
.m-form .ginput_complex label {
	font-size: 1.2rem;
	display: block;
	margin-top: 1rem;
	color: #aaa8a2;
	text-transform: uppercase;
	font-weight: 500;
	padding-left: 1rem;
}
.m-form .validation_error {
	background: #ef1644;
	border-radius: 0.4rem;
	margin-bottom: 2rem;
	padding: 1rem;
	color: #fff;
}
.m-form .validation_message {
	color: #ef1644;
}
.m-form--dark input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #fff;
}
.m-form--dark input::-moz-placeholder { /* Firefox 19+ */
	color: #fff;
}
.m-form--dark input:-ms-input-placeholder { /* IE 10+ */
	color: #fff;
}
.m-form--dark input:-moz-placeholder { /* Firefox 18- */
	color: #fff;
}
.m-form--inline .gform_wrapper form {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media (max-width: 767px) {
	.m-form--inline .gform_wrapper form {
		flex-direction: column;
	}
}
.m-form--inline .gform_wrapper .gform_fields {
	display: flex;
}
@media (max-width: 599px) {
	.m-form--inline .gform_wrapper .gform_fields {
		flex-direction: column;
	}
}
@media (min-width: 600px) {
	.m-form--inline .gform_wrapper .gform_fields .gfield {
		width: 50%;
	}
}
.m-form--inline .gform_wrapper .gform_body {
	width: 66.66%;
}
@media (max-width: 767px) {
	.m-form--inline .gform_wrapper .gform_body {
		width: 100%;
	}
}
.m-form--inline .gform_wrapper .gform_footer {
	width: 30%;
	align-items: flex-start;
}
@media (max-width: 767px) {
	.m-form--inline .gform_wrapper .gform_footer {
		width: 100%;
	}
}
.m-form--inline .gform_wrapper .gform_footer input.button,
.m-form--inline .gform_wrapper .gform_footer input[type=submit] {
	width: 100%;
}
.m-form--inline .gform_wrapper li input {
	width: 100%;
}
.m-form--inline .gform_wrapper .validation_message {
	background: #ef1644;
	border-radius: 0.4rem;
	padding: 0.2rem;
	color: #fff;
}
.m-form--inline .gform_wrapper .validation_error {
	order: 5;
	margin-top: 1.5rem;
	width: 100%;
}

.m-shortcode {
	width: 100%;
}

.m-component.m-form .gform_confirmation_message {
	background-color: #014675;
	padding: 0.5rem 1rem;
	color: #fff;
	font-weight: 600;
}

/**
 * Header
 */
body {
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center top;
}

.m-burger {
	font-size: 0;
	display: block;
	width: 3rem;
	height: 1.7rem;
	transition: transform 500ms ease-in-out, color 250ms ease-in-out;
}
@media (min-width: 1024px) {
	.m-burger {
		display: none !important;
	}
}
.m-burger--active:hover__lines {
	background: transparent;
}
.m-burger--active .m-burger__lines {
	background: transparent;
}
.m-burger--active .m-burger__lines::before, .m-burger--active .m-burger__lines::after {
	top: 0;
	left: 0;
	width: 2.4rem;
	transform-origin: 50% 50%;
	background: #014675;
}
.m-burger--active .m-burger__lines::before {
	transform: rotate3d(0, 0, 1, 45deg);
}
.m-burger--active .m-burger__lines::after {
	transform: rotate3d(0, 0, 1, -45deg);
}
.m-burger__lines {
	position: relative;
	top: 0;
	display: inline-block;
	width: 2.4rem;
	height: 0.2rem;
	transition: all 250ms ease-in-out;
	background: #014675;
	top: 0.6rem;
}
.m-burger__lines::before, .m-burger__lines::after {
	position: absolute;
	right: 0;
	display: block;
	width: 2.4rem;
	height: 0.2rem;
	content: "";
	transition: all 250ms ease-in-out;
	transform-origin: 0 center;
	background: #014675;
}
.m-burger__lines::before {
	top: 0.6rem;
}
.m-burger__lines::after {
	top: -0.6rem;
}

.m-responsive-navs {
	width: 100%;
	padding: 1rem 0 0;
	background: #014675;
}
.m-responsive-navs li {
	text-align: center;
}
@media screen and (min-width: 1024px) {
	.m-responsive-navs li.mobile-only {
		display: none;
	}
}
@media (min-width: 480px) {
	.m-responsive-navs li.mobile-sm-only {
		display: none;
	}
}
.m-responsive-navs li.m-highlighted-link a {
	background: #edab2f;
}
.m-responsive-navs li a {
	font-size: 1.6rem;
	display: inline-block;
	padding: 1.3rem 1rem;
	color: #fff;
	position: relative;
	width: 100%;
	cursor: pointer;
}
.m-responsive-navs li:not(:last-child)::after {
	display: block;
	content: "";
	width: 90%;
	margin-left: 5%;
	height: 0.1rem;
	background: #01558e;
}
.m-responsive-navs li.menu-item-has-children > a {
	position: relative;
}
.m-responsive-navs li.menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	height: 1rem;
	width: 1rem;
	background: url(../images/icn_mobile_dropdown.svg) center/contain no-repeat;
	opacity: 0.5;
	right: 8rem;
	margin: 0 -0.9rem 0 0.5rem;
}
.m-responsive-navs li.menu-item-has-children.active > a::after {
	transform: rotate(-180deg);
}
.m-responsive-navs li .sub-menu {
	display: none;
	background: #01375c;
}
.m-responsive-navs li .sub-menu li:not(:last-child)::after {
	background: #014675;
}
.m-responsive-navs li .sub-menu li a {
	font-size: 1.4rem;
}
.m-responsive-navs .menu-header-menu-container .m-shop-link > a:before {
	font-size: 0.9rem;
	font-weight: bold;
	color: #014675;
	text-transform: uppercase;
	display: block;
	line-height: 0.7;
}
.m-responsive-navs .menu-header-menu-container .m-support-link > a:after {
	display: inline-block;
	padding-left: 0.5rem;
}

.menu-main-menu-container {
	position: relative;
}
.menu-main-menu-container .m-location-link a svg {
	content: "";
	display: inline-block;
	height: 3rem;
	width: 2rem;
	margin-right: 0.5rem;
	transform: translateY(-0.5rem);
	margin-bottom: -2rem;
}
.menu-main-menu-container .m-location-link a svg path {
	fill: #edab2f;
}
.menu-main-menu-container .m-location-link:hover a svg path {
	fill: #fff;
}

.m-heading {
	width: 100%;
}
.m-heading sup {
	font-size: 40%;
	position: relative;
	top: -26px;
}
.m-heading--center {
	text-align: center;
}
.m-heading__secondary {
	display: block;
	width: 100%;
	font-size: 14rem;
	font-weight: 200;
	color: rgba(0, 0, 0, 0.3);
	font-family: "poppins", arial, sans-serif;
	margin-bottom: -6rem;
	line-height: 1;
}
.m-heading__primary {
	display: block;
	width: 100%;
	font-size: 14rem;
	font-weight: 600;
	font-family: "poppins", arial, sans-serif;
	padding-left: 3rem;
	line-height: 1;
	margin-bottom: 3rem;
}
.m-heading__primary--green {
	color: #014675;
}
.m-heading__primary--yellow {
	color: #edab2f;
}
.m-heading__primary--orange {
	color: #edab2f;
}
.m-heading__primary--purple {
	color: #014675;
}
.m-heading__primary--blue {
	color: #014675;
}
.m-heading > p {
	font-size: 1.7rem;
}
.m-heading > p.-white {
	color: #fff;
}

hr-fancy {
	display: block;
	width: 100%;
}

.m-hr__line {
	display: block;
	height: 2px;
	background-color: #d3d2cd;
}
.m-hr__line--smline {
	width: 6rem;
}
.m-hr__line--mdline {
	width: 45rem;
}
.m-hr__line--lgline {
	width: 100%;
	background-color: transparent;
	background: linear-gradient(to right, rgba(1, 70, 117, 0) 0%, #014675 30%, #014675 60%, rgba(1, 70, 117, 0) 100%);
}

.m-inglist {
	margin: 0 auto 3rem auto;
}
@media (max-width: 767px) {
	.m-inglist {
		grid-row-gap: 2rem;
	}
}

@media (max-width: 1219px) {
	.m-products--carousel {
		margin-left: -2rem;
		margin-right: -2rem;
		width: calc(100% + 4rem) !important;
		padding-bottom: 4rem;
	}
}
.m-products--carousel .m-card__body {
	padding: 0 2rem;
}
.m-products--carousel .glide__track {
	width: 100%;
}
.m-products--carousel .m-image {
	text-align: center;
}
.m-products--carousel .m-image img {
	max-height: 28rem;
	width: auto;
}
.m-products--grid {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	gap: 3rem;
}
.m-products--grid--2 > * {
	width: calc(50% - 8rem);
}
@media screen and (max-width: 500px) {
	.m-products--grid--2 {
		width: calc(100% - 8rem);
	}
}
.m-products--grid--3 > * {
	width: calc(33.33333% - 2rem);
}
@media screen and (max-width: 768px) {
	.m-products--grid--3 > * {
		width: calc(50% - 8rem);
	}
}
@media screen and (max-width: 500px) {
	.m-products--grid--3 > * {
		width: calc(100% - 8rem);
	}
}
.m-products--grid--4 > * {
	width: calc(25% - 2rem);
}
@media screen and (max-width: 960px) {
	.m-products--grid--4 {
		width: calc(33.33333% - 2rem);
	}
}
@media screen and (max-width: 768px) {
	.m-products--grid--4 {
		width: calc(50% - 8rem);
	}
}
@media screen and (max-width: 500px) {
	.m-products--grid--4 {
		width: calc(100% - 8rem);
	}
}

.m-product {
	background-color: transparent !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	z-index: 0 !important;
}
.m-product__section {
	margin: 4rem 0;
}
@media (min-width: 768px) {
	.m-product__section {
		margin: 7rem 0;
	}
}
@media (min-width: 1024px) {
	.m-product__section {
		margin: 10rem 0;
	}
}
.m-product__section .l-col:not(.l-col--overflowchildren) {
	border-radius: 3px;
	padding: 4rem;
}
@media (max-width: 767px) {
	.m-product__section .l-col:not(.l-col--overflowchildren) {
		padding: 4rem 3rem !important;
	}
}
.m-product__section .l-col:not(.l-col--overflowchildren) .m-bgimage {
	top: 3rem;
	right: 3rem;
}
.m-product__section .l-col:not(.l-col--overflowchildren) .m-heading,
.m-product__section .l-col:not(.l-col--overflowchildren) .m-contentblock {
	position: relative;
	z-index: 3;
}
.m-product__section .l-col.l-col--overflowchildren {
	display: block;
	position: relative;
	z-index: 5;
}
.m-product__reviews {
	position: relative;
}
@media (min-width: 768px) {
	.m-product__reviews {
		margin: 5rem 0 0;
		padding-bottom: 5rem;
	}
}
@media (min-width: 1024px) {
	.m-product__reviews {
		margin: 10rem 0 0;
		padding-bottom: 10rem;
	}
}
.m-product__posts {
	margin-top: 25rem;
}
.m-product__posts .l-wrapper {
	position: relative;
	top: -20rem;
	margin-bottom: -15rem;
}
.m-product__posts\:title {
	display: block;
	width: 100%;
	font-size: 6.6rem;
	font-weight: 600;
	color: #000;
	margin-bottom: 3.5rem;
	text-align: center;
}
@media (min-width: 768px) {
	.m-product__posts\:title {
		font-size: 6.6rem;
	}
}

.m-bgimage {
	display: block;
	width: 100%;
	min-height: 24rem;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: -2;
}

.m-contentblock {
	font-weight: 400;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 768px) {
	.m-contentblock {
		width: 100% !important;
	}
}
.m-contentblock--narrow {
	width: 65%;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 1024px) {
	.m-contentblock--narrow {
		width: 100%;
	}
}
.m-contentblock p, .m-contentblock ul, .m-contentblock ol {
	font-size: 1.8rem;
}
.m-contentblock p:not(:last-child), .m-contentblock ul:not(:last-child), .m-contentblock ol:not(:last-child) {
	margin-bottom: 1.5rem;
}
.m-contentblock ul {
	list-style-type: disc;
	padding-left: 3rem;
}
.m-contentblock li:not(:last-child) {
	margin-bottom: 1rem;
}
.m-contentblock ol {
	counter-reset: ol-list-counter;
	list-style: none;
	margin: 2rem 0;
}
.m-contentblock ol li {
	counter-increment: ol-list-counter;
	position: relative;
	color: #014675;
	padding: 0rem 0rem 0rem 5rem;
	border-radius: 2.7rem;
}
.m-contentblock ol li:not(:last-child) {
	margin-bottom: 1.5rem;
}
.m-contentblock ol li:not(:last-child)::after {
	display: block;
	content: "";
	width: 100%;
	height: 0.2rem;
	background: linear-gradient(90deg, rgba(204, 227, 250, 0), #CCE3FA 15%, #CCE3FA 60%, rgba(204, 227, 250, 0)) !important;
	margin: 2rem 0 0 -7rem;
}
.m-contentblock ol li::before {
	content: counter(ol-list-counter);
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	font-family: "poppins", arial, sans-serif;
	position: absolute;
	left: 1rem;
	width: 3rem;
	height: 3rem;
	top: -0.5rem;
	background: #014675;
	border-radius: 50%;
	text-align: center;
	line-height: 1.5;
}
.m-contentblock hr {
	border: 0;
	border-top: 1px solid #E6E6E6;
	margin: 2.5rem 0;
}
.m-contentblock blockquote {
	margin-top: 7rem;
}
.m-contentblock blockquote p {
	position: relative;
}
.m-contentblock blockquote p:first-of-type::before {
	content: "“";
	font-family: "epicursive", arial, sans-serif;
	font-size: 61rem;
	color: #b5d6f8;
	position: absolute;
	top: -32rem;
	left: -4rem;
	z-index: -1;
}
@media screen and (max-width: 767px) {
	.m-contentblock blockquote p:first-of-type::before {
		left: 1rem;
	}
}
.m-contentblock blockquote p:last-of-type::before {
	content: "”";
	font-family: "epicursive", arial, sans-serif;
	font-size: 61rem;
	color: #b5d6f8;
	position: absolute;
	top: -28rem;
	right: -4rem;
	z-index: -1;
}
@media screen and (max-width: 767px) {
	.m-contentblock blockquote p:last-of-type::before {
		right: 1rem;
	}
}
.m-contentblock blockquote cite {
	color: #edab2f;
	font-family: "epicursive", arial, sans-serif;
	font-size: 6rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
}
.m-contentblock blockquote cite em {
	width: 100%;
	font-style: normal;
}
.m-contentblock blockquote cite em b {
	color: #014675;
	font-weight: 400;
}
.m-contentblock blockquote cite span {
	font-size: 1.7rem;
	color: #edab2f;
	display: block;
}
.m-contentblock blockquote cite small {
	display: block;
	padding-top: 2rem;
	border-top: 2px solid #edab2f;
	color: #014675;
	font-family: "poppins", arial, sans-serif;
	font-weight: 400;
	font-size: 2rem;
	padding-right: 4rem;
	margin-left: 3rem;
}
.m-contentblock blockquote cite small b {
	display: block;
	font-weight: 600;
}
.m-contentblock h6 {
	font-size: 2.6rem;
	font-weight: 600;
	color: #71bfff;
	margin-bottom: 1rem;
	position: relative;
}
.m-contentblock h6::before {
	content: "";
	width: 100%;
	display: block;
	height: 1px;
	background: linear-gradient(to right, #d3d2cd 0%, #d3d2cd calc(50% - 12rem), #fff calc(50% - 10rem), #fff calc(50% + 10rem), #d3d2cd calc(50% + 12rem), #d3d2cd 100%);
	position: absolute;
	top: 45%;
	z-index: -1;
}
.m-contentblock .m-form_wrapper {
	display: block;
	background-color: #fff;
	padding: 3rem 4rem;
	border-radius: 3rem;
	filter: drop-shadow(0 1rem 2rem rgba(0, 0, 0, 0.1));
}
.m-contentblock .m-form_wrapper .gform_submission_error {
	font-size: 2.2rem !important;
	color: #ef1644;
}
.m-contentblock .m-form .gfield_required {
	color: #aaa8a2;
	font-size: 95%;
	margin-left: 2px;
}
.m-contentblock .m-form .gform_footer {
	margin-top: 2rem;
	justify-content: center;
}
.m-contentblock .m-form .gfield_validation_message {
	margin-top: 1rem;
	color: #ef1644;
}

.large-content .m-contentblock {
	font-size: 2.2rem;
}

@media (max-width: 767px) {
	.l-overflow {
		width: 100% !important;
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
}
.m-image {
	display: block;
}
.m-image picture {
	display: block;
	width: 100%;
	height: auto;
}
.m-image--circle {
	box-shadow: 1rem 2rem 2rem rgba(0, 0, 0, 0.1);
	border-radius: 50%;
}
@media (max-width: 767px) {
	.m-image--circle {
		max-width: 56rem;
		margin: 0 auto 2rem;
	}
}
.m-image--circle picture img {
	float: left;
	border-radius: 50%;
}

.m-video {
	display: block;
	width: 100%;
	cursor: pointer;
	margin-bottom: 1rem;
}
.m-video__thumb {
	position: relative;
	display: flex;
}
.m-video__overlay {
	position: absolute;
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 0, 0.3);
}
.m-video__overlay svg {
	width: 7rem;
	margin-bottom: 1rem;
}
.m-video__overlay svg path {
	fill: #fff;
}
.m-video .m-video__header {
	max-width: 40rem;
	color: #fff;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 300;
	margin-top: 2rem;
	line-height: 1.3;
}
@media (min-width: 768px) {
	.m-video .m-video__header {
		font-size: 2.6rem;
	}
}
.m-video .m-video__header--below {
	margin-top: 1rem;
	color: #014675;
}
.m-video img {
	float: left;
}

mini-product {
	display: block;
	transition: opacity 250ms ease-in-out;
}

.m-miniprod__header .m-image {
	text-align: center;
}
.m-miniprod__header .m-image img {
	max-height: 20rem;
	width: auto;
}
.m-miniprod__header a, .m-miniprod__content a {
	display: block;
}
.m-miniprod__content {
	margin-top: 2rem;
	margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
	.m-miniprod__content {
		min-height: 9rem;
	}
}
.m-miniprod__content star-reviews {
	justify-content: center;
	margin-bottom: 1.5rem;
}
.m-miniprod__content .m-stars__stars li {
	width: 1.8rem;
	height: 1.4rem;
}
.m-miniprod__content .m-stars__reviews {
	font-size: 1.6rem;
	color: #edab2f;
}
.m-miniprod__content p {
	text-align: center;
	font-size: 1.6rem;
}
.m-miniprod__title {
	display: block;
	width: 100%;
	font-size: 2.7rem;
	color: #014675;
	font-family: "poppins", arial, sans-serif;
	font-weight: 400;
	margin-bottom: 1rem;
	text-align: center;
	padding: 0 1rem;
}
.m-miniprod__price--normal {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 2rem;
	color: #71bfff;
	font-weight: 600;
}
.m-miniprod__footer {
	display: flex;
	align-items: center;
	justify-content: center;
}
.m-htimage {
	position: relative;
}

.m-hotspots {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
}

.m-hs {
	display: flex;
	position: absolute;
}
.m-hs__button {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: absolute;
	top: -1.5rem;
	left: -1.5rem;
	width: 3rem;
	height: 3rem;
	font-size: 2.5rem;
	font-weight: 600;
	color: #014675;
	background-color: #fff;
	border-radius: 100%;
	transition: all 250ms ease-in-out;
	line-height: 1.2;
}
.m-hs__button:hover {
	transform: scale(1.1);
}
.m-hs__button.on {
	transform: rotate(-135deg);
}
.m-hs__button.on:hover {
	transform: scale(1.1) rotate(-135deg);
}
.m-hs__content {
	display: block;
	position: absolute;
	top: 2.5rem;
	left: -2rem;
	background-color: #fff;
	border-radius: 3px;
	padding: 1.5rem 2rem;
	transition: opacity 250ms ease-in-out;
	pointer-events: all;
	opacity: 1;
	width: 20rem;
}
.m-hs__content * {
	line-height: 1.2;
}
.m-hs__content.hidden {
	opacity: 0;
	pointer-events: none;
}

.m-igfeed {
	display: block;
	width: 100%;
}
@media (min-width: 600px) and (max-width: 767px) {
	.m-igfeed {
		margin-top: 5rem;
	}
}
.m-igfeed__row {
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
}

ig-tile {
	display: block;
	width: 48%;
}
@media (max-width: 599px) {
	ig-tile {
		width: calc(50% - 3rem);
		margin: 1rem;
	}
}
@media (min-width: 600px) {
	ig-tile {
		width: 23%;
	}
	ig-tile:first-of-type {
		transform: translateX(-70%) translateY(40%);
	}
	ig-tile:last-of-type {
		transform: translateX(70%) translateY(-60%);
	}
	ig-tile:nth-child(2) {
		transform: translateX(-60%) translateY(-40%);
	}
	ig-tile:nth-child(3) {
		transform: translateX(-50%) translateY(5%);
	}
	ig-tile:nth-child(4) {
		transform: translateX(-40%) translateY(-50%);
	}
	ig-tile:nth-child(5) {
		transform: translateX(40%) translateY(-30%);
	}
	ig-tile:nth-child(6) {
		transform: translateX(50%) translateY(15%);
	}
	ig-tile:nth-child(7) {
		transform: translateX(60%) translateY(-40%);
	}
}
ig-tile a {
	display: block;
	width: 100%;
	padding-bottom: 100%;
	font-size: 0;
	position: relative;
}
ig-tile a::before {
	content: "";
	width: 100%;
	height: 100%;
	box-shadow: inset 0 0 15rem rgba(0, 0, 0, 0.65);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all 250ms ease-in-out;
}
ig-tile a svg {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	transition: opacity 250ms ease-in-out;
	opacity: 0;
}
ig-tile a:hover::before,
ig-tile a:hover svg {
	opacity: 1;
}

@media (min-width: 768px) {
	rating-summary {
		width: 33.3333333333%;
		padding-right: 2rem;
		position: sticky;
		top: 13rem;
	}
}

@media (max-width: 767px) {
	review-timeline {
		padding-top: 2rem;
		width: 100%;
	}
}
@media (min-width: 768px) {
	review-timeline {
		width: 66.6666666667%;
		padding-left: 2rem;
	}
}

.m-revsummary {
	padding: 2rem 3rem;
	background-color: #f3f0ee;
	border-radius: 3px;
	color: #302d2b;
}
.m-revsummary__title {
	font-weight: 500;
	color: #014675;
	margin-bottom: 2.5rem;
	margin-bottom: 2rem;
}
@media (min-width: 768px) {
	.m-revsummary__title {
		font-size: 3.8rem;
	}
}
.m-revsummary .m-stars {
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 2rem;
	color: #014675;
}
.m-revsummary .m-stars__average {
	display: block;
	font-size: 3.4rem;
	font-weight: 600;
	margin-right: 1.5rem;
}
.m-revsummary .m-stars__stars li {
	width: 2.6rem;
	height: 2.2rem;
}
.m-revsummary .m-stars__reviews {
	width: 100%;
	margin-top: 0.5rem;
	font-size: 2rem;
	top: 0;
}

.m-ratingcounters {
	border-top: 1px solid #d3d2cd;
	padding-top: 2rem;
}

.m-ratingcounter {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 1rem 0;
}
.m-ratingcounter__rating, .m-ratingcounter__total {
	font-size: 1.8rem;
	font-weight: 600;
}
.m-ratingcounter__rating {
	width: 7rem;
}
.m-ratingcounter__counter {
	display: block;
	width: calc(100% - 10rem);
	height: 2.2rem;
	border-radius: 3rem;
	background-color: #d3d2cd;
}
.m-ratingcounter__bar {
	display: block;
	width: 0;
	transition: all 500ms ease-in-out;
	height: 100%;
	border-radius: 3rem;
	background-color: #014675;
}
.m-ratingcounter__total {
	width: 3rem;
	text-align: right;
}

@media (max-width: 767px) {
	rating-summary {
		width: 100%;
	}
}

leave-review {
	display: block;
	background-color: #014675;
	border-radius: 3px;
	padding: 2rem 4rem;
	overflow: hidden;
	margin-bottom: 4rem;
}

.m-leavereview.active .m-leavereview__body {
	max-height: 1200rem;
}
.m-leavereview__header {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	position: relative;
}
.m-leavereview__header::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: -6rem;
	right: -6rem;
	background-image: url(../images/green-hex.svg);
	background-size: auto;
	background-position: right bottom;
	background-repeat: no-repeat;
}
.m-leavereview__header .m-button, .m-leavereview__header .m-coupon input[type=submit], .m-coupon .m-leavereview__header input[type=submit], .m-leavereview__header .m-gateway__fields .button, .m-gateway__fields .m-leavereview__header .button, .m-leavereview__header .m-checkout__form input[type=submit], .m-checkout__form .m-leavereview__header input[type=submit], .m-leavereview__header .m-updatecartitem input[type=submit], .m-updatecartitem .m-leavereview__header input[type=submit], .m-leavereview__header .m-comments input[type=submit], .m-comments .m-leavereview__header input[type=submit], .m-leavereview__header .m-login form input[type=submit], .m-login form .m-leavereview__header input[type=submit],
.m-leavereview__header .m-register form input[type=submit],
.m-register form .m-leavereview__header input[type=submit], .m-leavereview__header .m-leavereview__body form input[type=submit], .m-leavereview__body form .m-leavereview__header input[type=submit], .m-leavereview__header .m-bb input[type=submit], .m-bb .m-leavereview__header input[type=submit], .m-leavereview__header .m-account__addpayment form input[type=submit], .m-account__addpayment form .m-leavereview__header input[type=submit] {
	position: relative;
	z-index: 2;
}
.m-leavereview__title {
	color: #fff;
	font-weight: 600;
	width: 100%;
	margin-bottom: 1rem;
	position: relative;
	z-index: 2;
}
.m-leavereview__subtitle {
	font-size: 1.8rem;
	font-weight: 400;
	font-family: "poppins", arial, sans-serif;
	color: #fff;
	display: block;
	width: 100%;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 2;
}
.m-leavereview__body {
	margin-top: 2rem;
	max-height: 0;
	overflow: hidden;
	transition: max-height 500ms ease-in-out;
	background-color: #fff;
	width: 100%;
	margin-top: 3rem;
}
.m-leavereview__body .m-flashmsgs {
	width: calc(100% - 4rem);
	margin: 2rem;
}
.m-leavereview__body form {
	padding: 2rem;
	position: relative;
}
.m-leavereview__body form label {
	cursor: pointer;
}
.m-leavereview__body form input[type=radio],
.m-leavereview__body form input[type=checkbox] {
	display: none;
}
.m-leavereview__body form input[type=radio] + label,
.m-leavereview__body form input[type=checkbox] + label {
	display: block;
	width: 100%;
	padding-left: 2.5rem;
	position: relative;
	line-height: 1;
	margin-bottom: 1rem;
	font-size: 1.6rem;
}
.m-leavereview__body form input[type=radio] + label *,
.m-leavereview__body form input[type=checkbox] + label * {
	line-height: 1;
}
.m-leavereview__body form input[type=radio] + label::before, .m-leavereview__body form input[type=radio] + label::after,
.m-leavereview__body form input[type=checkbox] + label::before,
.m-leavereview__body form input[type=checkbox] + label::after {
	content: "";
	display: block;
	border-radius: 100%;
	position: absolute;
	transition: all 250ms ease-in-out;
}
.m-leavereview__body form input[type=radio] + label::before,
.m-leavereview__body form input[type=checkbox] + label::before {
	width: 1.5rem;
	height: 1.5rem;
	border: 1px solid #847e78;
	background-color: #fff;
	z-index: 1;
	top: 0;
	left: 0;
}
.m-leavereview__body form input[type=radio] + label::after,
.m-leavereview__body form input[type=checkbox] + label::after {
	width: 0.7rem;
	height: 0.7rem;
	background-color: #014675;
	top: 4px;
	left: 4px;
	z-index: 3;
	opacity: 0;
	transform: scale(0.8);
}
.m-leavereview__body form input[type=radio] + label:focus::before,
.m-leavereview__body form input[type=checkbox] + label:focus::before {
	border-color: #302d2b;
}
.m-leavereview__body form input[type=radio]:checked + label,
.m-leavereview__body form input[type=checkbox]:checked + label {
	font-weight: 600;
}
.m-leavereview__body form input[type=radio]:checked + label::before,
.m-leavereview__body form input[type=checkbox]:checked + label::before {
	border-color: #014675;
}
.m-leavereview__body form input[type=radio]:checked + label::after,
.m-leavereview__body form input[type=checkbox]:checked + label::after {
	opacity: 1;
	transform: scale(1);
}
.m-leavereview__body form input[type=checkbox] + label::before, .m-leavereview__body form input[type=checkbox] + label::after {
	border-radius: 0;
}
.m-leavereview__body form .payment_methods input[type=radio] + label::before,
.m-leavereview__body form .payment_methods input[type=checkbox] + label::before {
	top: 4px;
}
.m-leavereview__body form .payment_methods input[type=radio] + label::after,
.m-leavereview__body form .payment_methods input[type=checkbox] + label::after {
	top: 8px;
}
.m-leavereview__body form > p {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.m-leavereview__body form label {
	display: block;
	width: 100%;
	font-weight: 600;
	font-size: 1.4rem;
	margin-bottom: 1rem;
}
.m-leavereview__body form input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.m-leavereview__body form textarea {
	width: 100%;
	border: 0;
	border-bottom: 1px solid #d3d2cd;
	font-family: "poppins", arial, sans-serif;
	font-size: 1.6rem;
	padding: 5px 0;
	margin-bottom: 4rem;
}
.m-leavereview__body form input:not([type=submit]):not([type=radio]):not([type=checkbox])::placeholder,
.m-leavereview__body form textarea::placeholder {
	color: #aaa8a2;
	font-size: 1.4rem;
}
.m-leavereview__body form input:not([type=submit]):not([type=radio]):not([type=checkbox]).invalid,
.m-leavereview__body form textarea.invalid {
	border-color: #ef1644;
}
.m-leavereview__body form input:not([type=submit]):not([type=radio]):not([type=checkbox]):focus,
.m-leavereview__body form textarea:focus {
	border-color: #302d2b;
}
.m-leavereview__body form textarea {
	min-height: 10rem;
	resize: vertical;
	width: 100%;
	padding: 1rem;
	border: 1px solid #d3d2cd;
}
.m-leavereview__body form .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.m-leavereview__body form .alternate textarea {
	border: 1px solid #847e78;
	font-family: "poppins", arial, sans-serif;
	font-size: 1.6rem;
	padding: 1rem;
	margin-bottom: 4rem;
}
.m-leavereview__body form .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]):placeholder,
.m-leavereview__body form .alternate textarea:placeholder {
	color: #aaa8a2;
	font-size: 1.4rem;
}
.m-leavereview__body form .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]).invalid,
.m-leavereview__body form .alternate textarea.invalid {
	border-color: #ef1644;
}
.m-leavereview__body form .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]):focus,
.m-leavereview__body form .alternate textarea:focus {
	border-color: #302d2b;
}
.m-leavereview__body form .alternate .m-select {
	display: block;
	width: 100%;
	cursor: pointer;
	font-size: 1.6rem;
	color: #000;
	padding: 1rem 1.5rem 1rem 1rem;
	background-color: #fff;
	font-family: "poppins", arial, sans-serif;
	border: 1px solid #d3d2cd;
}
.m-leavereview__body form .alternate .m-select__parent {
	display: block;
	width: inherit;
	position: relative;
	margin-bottom: 4rem;
}
.m-leavereview__body form .alternate .m-select__parent::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 0.6rem solid #302d2b;
	border-left: 0.6rem solid transparent;
	border-right: 0.6rem solid transparent;
	border-bottom: 0rem solid transparent;
	pointer-events: none;
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	right: 1rem;
}
.m-leavereview__body form .alternate .m-select__parent--multi::after {
	content: none;
}
.m-leavereview__body form .alternate .m-select__parent--multi select {
	min-height: 10rem;
}
.m-leavereview__body form .alternate .m-select__parent.invalid {
	border-color: #ef1644;
}
.m-leavereview__body form .alternate .m-select__parent:focus {
	border-color: #302d2b;
}
.m-leavereview__body form .no-main-label > label {
	display: none !important;
}
.m-leavereview__body form .ginput_complex {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
.m-leavereview__body form .ginput_complex > * {
	width: 48%;
}
.m-leavereview__body form .ginput_complex label {
	font-size: 1.2rem;
	display: block;
	margin-top: 1rem;
	color: #aaa8a2;
	text-transform: uppercase;
	font-weight: 500;
	padding-left: 1rem;
}
.m-leavereview__body form .field_sublabel_above .ginput_complex label {
	display: block;
	width: 100%;
	font-weight: 600;
	font-size: 1.4rem;
	margin-top: 0;
	margin-bottom: 1rem;
	text-transform: none;
	padding-left: 0;
	color: #302d2b;
}
.m-leavereview__body form .gform_footer {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.m-leavereview__body form .gform_footer input {
	margin-right: 2rem;
}
.m-leavereview__body form .validation_error {
	display: block;
	color: #fff;
	background-color: #ef1644;
	padding: 5px 1rem;
	margin-bottom: 2rem;
	border-radius: 3px;
	font-size: 1.4rem;
}
.m-leavereview__body form .gfield_description.validation_message {
	display: block;
	color: #ef1644;
	padding: 5px 0;
	margin-top: -3rem;
	margin-bottom: 3rem;
	font-size: 1.4rem;
}
.m-leavereview__body form select {
	border-radius: 0;
}
.m-leavereview__body form .m-select {
	display: block;
	width: 100%;
	cursor: pointer;
	font-size: 1.7rem;
	color: #000;
	padding: 5px;
	background-color: #fff;
	font-family: "poppins", arial, sans-serif;
	border: 0;
	border-bottom: 1px solid #d3d2cd;
}
.m-leavereview__body form .m-select__parent {
	display: block;
	width: 100%;
	position: relative;
	margin-bottom: 4rem;
}
.m-leavereview__body form .m-select__parent::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 0.6rem solid #302d2b;
	border-left: 0.6rem solid transparent;
	border-right: 0.6rem solid transparent;
	border-bottom: 0rem solid transparent;
	pointer-events: none;
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	right: 1rem;
}
.m-leavereview__body form .m-select__parent--multi::after {
	content: none;
}
.m-leavereview__body form .m-select__parent--multi select {
	min-height: 10rem;
}
.m-leavereview__body form .m-select.invalid {
	border-color: #ef1644;
}
.m-leavereview__body form .m-select:focus {
	border-color: #302d2b;
}
.m-leavereview__body form::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.85);
	opacity: 0;
	transition: opacity 250ms ease-in-out;
	position: absolute;
	z-index: 5;
	pointer-events: none;
}
.m-leavereview__body form::after {
	content: "";
	position: absolute;
	z-index: 6;
	top: calc(50% - 1.5rem);
	left: calc(50% - 1.5rem);
	opacity: 0;
	transition: opacity 250ms ease-in-out;
	pointer-events: none;
}
.m-leavereview__body form.loading::before, .m-leavereview__body form.loading::after {
	opacity: 1;
	pointer-events: all;
}
.m-leavereview__body fieldset {
	margin-bottom: 2rem;
}
.m-leavereview__body fieldset span {
	display: block;
	width: 100%;
	margin-top: -3rem;
	font-size: 1.4rem;
	font-style: italic;
	color: #605a55;
	margin-bottom: 1rem;
}

review-item {
	display: block;
	width: 100%;
	padding: 3rem 0;
	border-bottom: 1px solid #d3d2cd;
}

.m-product-reviews .m-reviews__action {
	display: none;
}
.m-product-reviews review-item {
	padding: 3rem 0 1rem;
}

.m-reviews.loaded .m-reviews__end {
	display: block;
}
.m-reviews.loaded .m-reviews__action {
	display: none;
}
.m-reviews.empty .m-reviews__empty {
	display: flex;
}
.m-reviews.empty .m-reviews__end {
	display: none;
}
.m-reviews.empty .m-reviews__action {
	display: none;
}
.m-reviews__action {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 3rem;
}
.m-reviews__end {
	display: none;
	width: 100%;
	text-align: center;
	color: #aaa8a2;
	margin-top: 2rem;
}
.m-reviews__empty {
	display: none;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	color: #605a55;
	font-weight: 600;
}

.m-review__meta {
	display: flex;
	width: 100%;
	align-items: center;
	margin-bottom: 2rem;
}
@media (max-width: 767px) {
	.m-review__meta {
		flex-wrap: wrap;
	}
}
.m-review__author {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 1.8rem;
	font-family: "poppins", arial, sans-serif;
	margin: 0 5px 0 1rem;
	position: relative;
	top: 1px;
}
@media (max-width: 767px) {
	.m-review__author {
		margin-left: 0;
	}
}
.m-review__date {
	font-size: 1.8rem;
	position: relative;
	top: 1px;
}
@media (min-width: 768px) {
	.m-review__body, .m-review__footer {
		padding-left: 12.2rem;
	}
}
.m-review__body {
	color: #302d2b;
	margin-bottom: 2rem;
}
@media (min-width: 768px) {
	.m-review__body {
		font-size: 2rem;
	}
}
.m-review__body--nostars, .m-review__body--nostars + .m-review__footer {
	padding-left: 1rem;
}
.m-review__footer {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.m-review__footer\:label {
	font-weight: 600;
	color: #605a55;
	margin-right: 2rem;
	font-size: 1.6rem;
}
.m-review__counter {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-weight: 600;
}
.m-review__counter--empty svg {
	opacity: 0.5;
}
.m-review__counter svg {
	position: relative;
	top: -4px;
	margin-right: 0.75rem;
}
.m-review__counter svg * {
	fill: #014675;
}
@media (max-width: 767px) {
	.m-review star-reviews {
		width: 100%;
	}
}

.m-postgrid {
	grid-column-gap: 4rem;
	grid-row-gap: 3rem;
}
@media (max-width: 1023px) {
	.m-postgrid {
		grid-template-columns: 1fr;
	}
}

mini-post {
	display: block;
	background-color: #fff;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	position: relative;
	background: #f3f0ee;
	border-radius: 0.6rem;
	overflow: hidden;
}
@media (min-width: 600px) and (max-width: 1023px) {
	mini-post {
		display: flex;
	}
	mini-post:nth-of-type(even) {
		flex-direction: row-reverse;
	}
}

.m-minipost__header {
	display: block;
	position: relative;
}
@media (min-width: 600px) and (max-width: 1023px) {
	.m-minipost__header {
		width: 50%;
		min-height: 32vw;
	}
}
.m-minipost__header__overlay {
	height: 100%;
	position: relative;
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	align-content: flex-end;
	justify-content: flex-end;
	text-align: center;
	z-index: 5;
	background: linear-gradient(0deg, rgba(48, 45, 43, 0.4), rgba(48, 45, 43, 0)) !important;
}
.m-minipost__header a {
	display: block;
	height: 40vw;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}
@media (min-width: 768px) {
	.m-minipost__header a {
		height: 23vw;
	}
}
@media (min-width: 1024px) {
	.m-minipost__header a {
		height: 22rem;
	}
}
.m-minipost__header a defer-image {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
}
.m-minipost__header a defer-image,
.m-minipost__header a picture {
	display: block;
}
.m-minipost__header a picture {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.m-minipost__header a picture img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.m-minipost__content {
	padding: 2.5rem 2rem 10rem;
	text-align: center;
	position: relative;
}
@media (min-width: 600px) and (max-width: 1023px) {
	.m-minipost__content {
		width: 50%;
		text-align: left;
		padding: 2.5rem 3rem 3rem;
		justify-content: center;
		display: flex;
		flex-direction: column;
	}
}
.m-minipost__content .m-button-container {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 4.5rem;
	left: 0;
	width: 100%;
}
@media (min-width: 600px) and (max-width: 1023px) {
	.m-minipost__content .m-button-container {
		justify-content: flex-start;
		position: relative;
		bottom: 0;
	}
}
.m-minipost__title {
	font-size: 2.6rem;
	font-weight: 300;
	width: 100%;
	margin-bottom: 1rem;
	line-height: 1.2;
}
.m-minipost__date {
	font-size: 1rem;
	letter-spacing: 0.2rem;
	width: 100%;
	color: #605a55;
	margin-bottom: 2rem;
	font-weight: 600;
	display: block;
	text-transform: uppercase;
}
.m-minipost__excerpt {
	color: #605a55;
	font-size: 1.6rem;
	line-height: 1.5;
	margin-bottom: 1rem;
}

plax-wrapper {
	display: block;
}

.m-plax {
	display: block;
	width: 100%;
	position: absolute;
	z-index: 10;
	max-width: 45%;
}
.m-plax + .l-wrapper {
	z-index: 20;
	position: relative;
}
@media (max-width: 767px) {
	.m-plax {
		display: none;
	}
}
.m-plax--top,
.m-plax--top .m-plax__wrapper {
	top: 0;
}
.m-plax--middle,
.m-plax--middle .m-plax__wrapper {
	top: 50%;
}
.m-plax--left,
.m-plax--left .m-plax__wrapper {
	left: 0;
}
.m-plax--bottom,
.m-plax--bottom .m-plax__wrapper {
	bottom: 0;
}
.m-plax--right,
.m-plax--right .m-plax__wrapper {
	right: 0;
}
.m-plax__wrapper {
	display: block;
	position: absolute;
}
.m-plax__wrapper picture {
	display: block;
}
.m-plax__wrapper picture img {
	max-height: 30rem;
	width: 100%;
}

.m-fda {
	display: block;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center top;
}
.m-fda p {
	display: block;
	background-color: #fff;
	padding: 3rem 1rem 1rem;
	font-weight: 600;
	font-size: 1.4rem;
	border-top: 1px solid #f3f0ee;
}

.m-nsl {
	position: relative;
	padding: 5rem 0 3rem 0;
	background-size: cover;
}
.m-nsl::after {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(0, 0, 0, 0.3);
	top: 0;
	left: 0;
	z-index: 1;
	position: absolute;
}
.m-nsl .l-wrapper {
	z-index: 2;
	position: relative;
}
@media (min-width: 768px) {
	.m-nsl {
		padding: 7rem 0 4rem 0;
	}
}
@media (min-width: 1024px) {
	.m-nsl {
		padding: 11rem 0 6rem 0;
	}
}
.m-nsl .l-wrapper {
	width: 82rem;
}
.m-nsl .m-form_wrapper {
	width: 100%;
}
@media (min-width: 1024px) {
	.m-nsl .m-form_wrapper {
		width: calc(100% - 62rem);
	}
}

.l-col__bgimage {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 0;
	bottom: 0;
	overflow: hidden;
}
.l-col__bgimage defer-image picture img {
	object-fit: cover;
	max-width: none;
	object-position: center;
	height: 100%;
	width: 100%;
}
.l-col__bgimage ~ * {
	position: relative;
	z-index: 3;
}
.m-card {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
}
.m-card--decorated::before {
	content: "";
	width: 100%;
	height: 1px;
	background: #edab2f;
	background: linear-gradient(to right, #edab2f 0%, #f1be5e 100%);
	display: block;
	position: absolute;
	z-index: 1;
	left: 0;
	top: 3rem;
	z-index: -1;
}
.m-card--decorated .m-card__footer {
	position: relative;
}
.m-card--decorated .m-card__footer::before {
	content: "";
	width: calc(50% - 10rem);
	height: 1px;
	background: #edab2f;
	background: linear-gradient(to right, #edab2f 0%, #f1be5e 100%);
	display: block;
	position: absolute;
	z-index: 1;
	left: 0;
	top: 50%;
	z-index: -1;
}
.m-card--decorated .m-card__footer::after {
	content: "";
	width: calc(50% - 10rem);
	height: 1px;
	background: #edab2f;
	background: linear-gradient(to right, #edab2f 0%, #f1be5e 100%);
	display: block;
	position: absolute;
	z-index: 1;
	right: 0;
	top: 50%;
	z-index: -1;
}
.m-card__header {
	display: block;
	width: 100%;
	padding: 0 3rem;
	position: relative;
}
.m-card__header defer-image,
.m-card__header picture {
	display: block;
}
.m-card__header img {
	width: 100%;
	height: auto;
}
.m-card__body {
	display: block;
	width: 100%;
	margin: 3rem 0;
}
.m-card__title, .m-card__subtitle {
	display: block;
	width: 100%;
	text-align: center;
}
.m-card__title {
	font-size: 2.4rem;
	color: #605a55;
	margin-bottom: 1rem;
}
.m-card__title a {
	color: #605a55;
}
.m-card__subtitle {
	font-size: 1.8rem;
	font-family: "poppins", arial, sans-serif;
	color: #71bfff;
}
.m-card__footer {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
}

/**
 * Breadcrumbs
 */
.m-breadcrumbs .current {
	font-weight: 600;
}
.m-breadcrumbs a {
	color: #000;
}
.m-breadcrumbs a:hover {
	text-decoration: underline;
}
.m-breadcrumbs + .m-row {
	padding-top: 0rem;
}
@media (min-width: 768px) {
	.m-breadcrumbs + .m-row {
		padding-top: 3rem;
	}
}

/**
 * Testimonials
 */
.m-testimonial {
	text-align: center;
	padding: 3rem 5%;
	width: 100%;
}
.m-testimonial__content {
	font-size: 2.1rem;
	padding: 0 0 3rem;
	max-width: 80rem;
	margin: 0 auto;
}
.m-testimonial__content:before {
	content: "“";
	font-size: 16.3rem;
	font-weight: 600;
	line-height: 1rem;
	color: #000;
	display: block;
	margin: 6rem auto 1rem;
	opacity: 0.06;
}
.m-testimonial__thumb {
	margin: 0 auto;
	width: 9rem;
	border-radius: 5rem;
}
.m-testimonial__thumb img {
	border-radius: 5rem;
}
.m-testimonial__title {
	font-size: 2rem;
	font-weight: 700;
	font-style: italic;
}

/**
 * Sliders
 */
.glide .glide__arrow {
	padding: 2rem 0;
	background: none;
	border-radius: 4rem;
	border: 0.3rem solid #aaa8a2;
	height: 5rem;
	width: 5rem;
	text-align: center;
	position: absolute;
	bottom: -2rem;
	font-size: 0;
	outline: 0;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}
@media (min-width: 1220px) {
	.glide .glide__arrow {
		top: calc(50% - 4rem);
	}
}
.glide .glide__arrow:hover {
	background: #edab2f;
}
.glide .glide__arrow:hover:before {
	border-color: #fff;
}
.glide .glide__arrow:before {
	content: "";
	border: 0.5rem solid #edab2f;
	transform: rotate(45deg);
	height: 1.6rem;
	width: 1.6rem;
	display: block;
	position: absolute;
	top: calc(50% - 0.9rem);
	left: calc(50% - 1.1rem);
}
.glide .glide__arrow.glide__arrow--right {
	right: calc(50% - 6rem);
}
@media (min-width: 1220px) {
	.glide .glide__arrow.glide__arrow--right {
		right: -6rem;
	}
}
.glide .glide__arrow.glide__arrow--right:before {
	border-width: 0.4rem 0.4rem 0 0;
}
.glide .glide__arrow.glide__arrow--left {
	left: calc(50% - 6rem);
}
@media (min-width: 1220px) {
	.glide .glide__arrow.glide__arrow--left {
		left: -6rem;
	}
}
.glide .glide__arrow.glide__arrow--left:before {
	left: calc(50% - 0.5rem);
	border-width: 0 0 0.4rem 0.4rem;
}

.m-testimonial-slider {
	margin-bottom: 5rem;
}
.m-testimonial-slider .m-testimonial {
	padding: 2rem 10rem;
}
@media screen and (max-width: 600px) {
	.m-testimonial-slider .m-testimonial {
		padding: 2rem;
	}
}

/**
 * Featured Product
 */
.m-feat-prod--image {
	z-index: 2;
}
.m-feat-prod--img-left .m-feat-prod__thumb {
	right: -15rem;
}
.m-feat-prod--img-left .m-feat-prod__cta {
	right: 0;
}
.m-feat-prod--img-left .m-feat-prod__cta .m-button, .m-feat-prod--img-left .m-feat-prod__cta .m-coupon input[type=submit], .m-coupon .m-feat-prod--img-left .m-feat-prod__cta input[type=submit], .m-feat-prod--img-left .m-feat-prod__cta .m-gateway__fields .button, .m-gateway__fields .m-feat-prod--img-left .m-feat-prod__cta .button, .m-feat-prod--img-left .m-feat-prod__cta .m-checkout__form input[type=submit], .m-checkout__form .m-feat-prod--img-left .m-feat-prod__cta input[type=submit], .m-feat-prod--img-left .m-feat-prod__cta .m-updatecartitem input[type=submit], .m-updatecartitem .m-feat-prod--img-left .m-feat-prod__cta input[type=submit], .m-feat-prod--img-left .m-feat-prod__cta .m-comments input[type=submit], .m-comments .m-feat-prod--img-left .m-feat-prod__cta input[type=submit], .m-feat-prod--img-left .m-feat-prod__cta .m-login form input[type=submit], .m-login form .m-feat-prod--img-left .m-feat-prod__cta input[type=submit],
.m-feat-prod--img-left .m-feat-prod__cta .m-register form input[type=submit],
.m-register form .m-feat-prod--img-left .m-feat-prod__cta input[type=submit], .m-feat-prod--img-left .m-feat-prod__cta .m-bb input[type=submit], .m-bb .m-feat-prod--img-left .m-feat-prod__cta input[type=submit], .m-feat-prod--img-left .m-feat-prod__cta .m-account__addpayment form input[type=submit], .m-account__addpayment form .m-feat-prod--img-left .m-feat-prod__cta input[type=submit], .m-feat-prod--img-left .m-feat-prod__cta .m-leavereview__body form input[type=submit], .m-leavereview__body form .m-feat-prod--img-left .m-feat-prod__cta input[type=submit] {
	transform: translateX(50%);
}
.m-feat-prod--img-right {
	order: 2;
}
.m-feat-prod--img-right .m-feat-prod__thumb {
	left: -15rem;
}
.m-feat-prod--img-right .m-feat-prod__cta {
	left: 0;
}
.m-feat-prod--img-right .m-feat-prod__cta .m-button, .m-feat-prod--img-right .m-feat-prod__cta .m-coupon input[type=submit], .m-coupon .m-feat-prod--img-right .m-feat-prod__cta input[type=submit], .m-feat-prod--img-right .m-feat-prod__cta .m-gateway__fields .button, .m-gateway__fields .m-feat-prod--img-right .m-feat-prod__cta .button, .m-feat-prod--img-right .m-feat-prod__cta .m-checkout__form input[type=submit], .m-checkout__form .m-feat-prod--img-right .m-feat-prod__cta input[type=submit], .m-feat-prod--img-right .m-feat-prod__cta .m-updatecartitem input[type=submit], .m-updatecartitem .m-feat-prod--img-right .m-feat-prod__cta input[type=submit], .m-feat-prod--img-right .m-feat-prod__cta .m-comments input[type=submit], .m-comments .m-feat-prod--img-right .m-feat-prod__cta input[type=submit], .m-feat-prod--img-right .m-feat-prod__cta .m-login form input[type=submit], .m-login form .m-feat-prod--img-right .m-feat-prod__cta input[type=submit],
.m-feat-prod--img-right .m-feat-prod__cta .m-register form input[type=submit],
.m-register form .m-feat-prod--img-right .m-feat-prod__cta input[type=submit], .m-feat-prod--img-right .m-feat-prod__cta .m-bb input[type=submit], .m-bb .m-feat-prod--img-right .m-feat-prod__cta input[type=submit], .m-feat-prod--img-right .m-feat-prod__cta .m-account__addpayment form input[type=submit], .m-account__addpayment form .m-feat-prod--img-right .m-feat-prod__cta input[type=submit], .m-feat-prod--img-right .m-feat-prod__cta .m-leavereview__body form input[type=submit], .m-leavereview__body form .m-feat-prod--img-right .m-feat-prod__cta input[type=submit] {
	transform: translateX(-50%);
}
.m-feat-prod--img-right .m-feat-prod--content {
	padding-left: 7rem;
	padding-right: 19rem;
}
.m-feat-prod--content {
	transform: translateY(5rem);
	background-color: #aaa8a2;
	background: linear-gradient(0deg, #fff, #aaa8a2 50%) !important;
	align-items: center;
	padding: 5rem 7rem 5rem 19rem;
}
.m-feat-prod__thumb {
	position: absolute;
	width: 30rem;
	top: 50%;
	transform: translateY(-45%);
}
.m-feat-prod__cta {
	position: absolute;
	bottom: -2rem;
}
.m-feat-prod__content {
	margin-bottom: 3rem;
}
.m-feat-prod__review {
	padding: 3rem 4rem;
	background-color: #aaa8a2;
}
.m-feat-prod__review__content {
	margin-bottom: 1rem;
}
.m-feat-prod__review__author {
	text-transform: uppercase;
	font-weight: 700;
	text-align: right;
}
.m-feat-prod h6 {
	font-family: "poppins", arial, sans-serif;
	letter-spacing: 0.2rem;
	color: #014675;
}
.m-feat-prod h3 {
	font-size: 4.8rem;
	margin-bottom: 2rem;
}
.m-feat-prod h3 a:not(:hover) {
	color: #000;
}

/*
Video Embeds
*/
.m-embed-container {
	position: relative;
	padding-bottom: 56.25%;
	overflow: hidden;
	max-width: 100%;
	height: auto;
	width: 100%;
	overflow: hidden;
}
.m-embed-container iframe,
.m-embed-container object,
.m-embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*
Popups
*/
@media (min-width: 1220px) {
	.m-popup {
		display: flex;
	}
}
.m-popup * {
	pointer-events: none;
}
.m-popup.active {
	pointer-events: all;
	opacity: 1;
	display: flex;
}
.m-popup.active * {
	pointer-events: all;
}
.m-popup__wrapper {
	position: relative;
	width: 100%;
	height: auto;
	max-width: 70rem;
	max-height: 96vh;
	overflow: scroll;
	background: #fff;
}
.m-popup__wrapper__inner {
	padding: 9rem 3rem;
}
@media (min-width: 768px) {
	.m-popup__wrapper__inner {
		padding: 9rem 7rem;
	}
}
.m-popup__close {
	position: absolute;
	top: 0;
	color: #fff;
	font-size: 3.5rem;
	display: block;
	height: 7rem;
	width: 7rem;
	line-height: 1.9;
	opacity: 1;
	right: 0;
	transition: all 0.3s ease-in-out;
	text-align: center;
	background: #014675;
	z-index: 999999;
}
.m-popup__close:hover {
	background: #014675;
	color: #fff;
}
.m-popup__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.m-popup__content, .m-popup--content {
	width: 100%;
	transition: all 0.3s ease-in-out;
}
.m-popup__content.hidden, .m-popup--content.hidden {
	opacity: 0;
}
.m-popup__content ul, .m-popup--content ul {
	margin: 1.5rem 0 1rem 2rem;
}
.m-popup__content ul li, .m-popup--content ul li {
	margin-bottom: 0.5rem;
	font-weight: 900;
}
.m-popup__content ul li::before, .m-popup--content ul li::before {
	color: #014675;
}
.m-popup__content h3, .m-popup--content h3 {
	font-size: 3.5rem;
}
.m-popup__content .m-popup__wrapper, .m-popup--content .m-popup__wrapper {
	max-width: 62rem;
}
@media (min-width: 768px) {
	.m-popup--form .m-popup__wrapper__inner {
		padding: 7rem 7rem 7rem;
	}
}
.m-popup--form .m-form textarea {
	height: 18rem;
}
.m-popup--video .m-popup__wrapper {
	max-width: 80vw;
	max-height: 200vh;
	position: static;
	background: none;
}
@media (min-width: 1024px) {
	.m-popup--video .m-popup__wrapper {
		max-width: 70vw;
	}
}
.m-popup--video .m-popup__wrapper__inner {
	position: relative;
	padding: 0 0 56.25%;
	overflow: hidden;
	max-width: 100%;
	height: 0;
	width: auto;
}
.m-popup--video .m-popup__wrapper__inner iframe, .m-popup--video .m-popup__wrapper__inner object, .m-popup--video .m-popup__wrapper__inner embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.m-popup__nav {
	position: absolute;
	font-size: 0;
	transition: all 0.3s ease-in-out;
	border: 0.1rem solid #fff;
	height: 5rem;
	width: 5rem;
	top: calc(50% - 6rem);
	transform: none;
	z-index: 99;
	padding: 0.7rem;
	opacity: 1;
	font-size: 0;
	border-radius: 5rem;
	outline: none;
	cursor: pointer;
	position: absolute;
	transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
	.m-popup__nav {
		display: none;
	}
}
@media (min-width: 768px) {
	.m-popup__nav {
		bottom: 5rem;
	}
}
.m-popup__nav:hover {
	background: #014675;
	border-color: #014675;
}
.m-popup__prev {
	left: 2rem;
}
@media (min-width: 768px) {
	.m-popup__prev {
		left: 5rem;
	}
}
.m-popup__prev::before {
	content: "";
	display: block;
	border: 0.2rem solid #fff;
	width: 1.4rem;
	height: 1.4rem;
	left: 1.2rem;
	position: relative;
	border-width: 0.2rem 0 0 0.2rem;
	transform: rotate(-45deg);
	top: 0.8rem;
}
.m-popup__next {
	right: 2rem;
}
@media (min-width: 768px) {
	.m-popup__next {
		right: 5rem;
	}
}
.m-popup__next::before {
	content: "";
	display: block;
	border: 0.2rem solid #fff;
	width: 1.4rem;
	height: 1.4rem;
	left: 0.8rem;
	position: relative;
	border-width: 0 0.2rem 0.2rem 0;
	transform: rotate(-45deg);
	top: 0.8rem;
}

/**
 * Split Sections with Media / Content
 */
.m-split--content-r .l-col:last-child {
	padding: 5rem 8rem 5rem 10rem;
}
.m-split--content-l .l-col:first-child {
	padding: 5rem 10rem 5rem 8rem;
}

/**
 * Split Column Section
 */
.m-split-cols {
	justify-content: space-between;
	padding: 1rem 0;
}
.m-split-cols > .l-col {
	align-content: center;
}
@media (max-width: 767px) {
	.m-split-cols > .l-col:not(:last-child()) {
		margin-bottom: 1rem;
	}
}
@media (min-width: 768px) {
	.m-split-cols > .l-col {
		width: calc(50% - 0.5rem);
	}
}

/**
 * Mini Cart
 */
mini-cart {
	display: block;
	width: 100vw;
	height: 100vh;
	background-color: transparent;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	transition: all 500ms ease-in-out;
	pointer-events: none;
}
mini-cart.active {
	background-color: rgba(0, 0, 0, 0.3);
	pointer-events: all;
}
mini-cart.active .m-minicart {
	right: 0;
}

.m-minicart {
	display: block;
	width: 34rem;
	max-width: calc(100% - 6rem);
	height: 100vh;
	position: fixed;
	top: 0;
	right: -37rem;
	z-index: 9999;
	background-color: #fff;
	filter: drop-shadow(-1rem 0 1rem rgba(0, 0, 0, 0.2));
	background-repeat: no-repeat;
	background-size: 105% auto;
	background-position: center top;
	transition: all 500ms ease-in-out;
	opacity: 1 !important;
}
.m-minicart.loading .m-minicart__items::before, .m-minicart.loading .m-minicart__items::after {
	opacity: 1;
	pointer-events: all;
}
.m-minicart__header {
	padding: 0 2rem;
}
.m-minicart__title {
	font-family: "epicursive", arial, sans-serif;
	font-size: 5rem;
	font-weight: 400;
	color: #edab2f;
	padding: 2rem 0 0;
	text-align: center;
	position: relative;
}
.m-minicart__empty {
	display: block;
	width: 100%;
	margin: 2rem 0;
	padding: 1.5rem;
	color: #aaa8a2;
	border-top: 1px solid #f3f0ee;
	border-bottom: 1px solid #f3f0ee;
	line-height: 1;
	text-align: center;
}
.m-minicart__items {
	display: block;
	width: 100%;
	height: calc(100% - 19.3rem);
	overflow: hidden;
	position: relative;
	padding: 0 2rem;
}
.m-minicart__items::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.85);
	opacity: 0;
	transition: opacity 250ms ease-in-out;
	position: absolute;
	z-index: 5;
	pointer-events: none;
}
.m-minicart__items::after {
	content: "";
	position: absolute;
	z-index: 6;
	top: calc(50% - 1.5rem);
	left: calc(50% - 1.5rem);
	opacity: 0;
	transition: opacity 250ms ease-in-out;
	pointer-events: none;
}
.m-minicart__item {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 2rem 0;
	border-bottom: 1px solid #f3f0ee;
}
.m-minicart__item\:image {
	width: 12rem;
	margin-right: 2rem;
}
@media (max-width: 479px) {
	.m-minicart__item\:image {
		width: 6rem;
		margin-right: 1.5rem;
	}
}
.m-minicart__item\:image, .m-minicart__item\:image a, .m-minicart__item\:image defer-image, .m-minicart__item\:image picture, .m-minicart__item\:image img {
	display: block;
}
.m-minicart__item\:details {
	width: calc(100% - 14rem);
	display: flex;
	flex-wrap: wrap;
	line-height: 2;
}
@media (max-width: 479px) {
	.m-minicart__item\:details {
		width: calc(100% - 9rem);
	}
}
.m-minicart__item\:details a:not([href="#remove"]) {
	width: 100%;
	color: #302d2b;
}
.m-minicart__item\:details a:not([href="#remove"]):hover {
	color: #014675;
}
.m-minicart__item\:details a[href="#remove"] {
	display: block;
	font-weight: bold;
	font-size: 1.4rem;
	text-transform: uppercase;
	margin-top: 2rem;
}
.m-minicart__item\:name {
	font-family: "poppins", arial, sans-serif;
	font-size: 1.8rem;
	font-weight: 600;
}
.m-minicart__item\:price, .m-minicart__item\:quantity {
	color: #605a55;
	font-size: 1.6rem;
	display: block;
	width: 100%;
	margin-top: 0.5rem;
}
.m-minicart__item\:price b, .m-minicart__item\:quantity b {
	color: #014675;
}
.m-minicart__autoship {
	display: block;
	width: 100%;
	padding: 0.5rem 1rem;
	border-radius: 3rem;
	text-align: center;
	background-color: #014675;
	text-transform: uppercase;
	margin-top: 1rem;
	font-size: 1.2rem;
	font-weight: 600;
	color: #fff;
}
.m-minicart__footer {
	display: block;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
}
.m-minicart__totals {
	padding: 1rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #014675;
}
.m-minicart__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 2rem;
	background-color: #f3f0ee;
}
mini-cart-item {
	display: block;
}

.m-loginregister {
	margin-top: 0;
	margin-bottom: 0;
}

.m-login,
.m-register {
	display: block;
	background-color: #fff;
	border-radius: 3px;
	filter: drop-shadow(0 1rem 1rem rgba(0, 0, 0, 0.1));
	width: 100%;
	padding: 4rem;
}
.m-login__title,
.m-register__title {
	font-size: 8rem;
	margin-bottom: 1rem;
	font-family: "epicursive", arial, sans-serif;
}
.m-login form label,
.m-register form label {
	cursor: pointer;
}
.m-login form input[type=radio],
.m-login form input[type=checkbox],
.m-register form input[type=radio],
.m-register form input[type=checkbox] {
	display: none;
}
.m-login form input[type=radio] + label,
.m-login form input[type=checkbox] + label,
.m-register form input[type=radio] + label,
.m-register form input[type=checkbox] + label {
	display: block;
	width: 100%;
	padding-left: 2.5rem;
	position: relative;
	line-height: 1;
	margin-bottom: 1rem;
	font-size: 1.6rem;
}
.m-login form input[type=radio] + label *,
.m-login form input[type=checkbox] + label *,
.m-register form input[type=radio] + label *,
.m-register form input[type=checkbox] + label * {
	line-height: 1;
}
.m-login form input[type=radio] + label::before, .m-login form input[type=radio] + label::after,
.m-login form input[type=checkbox] + label::before,
.m-login form input[type=checkbox] + label::after,
.m-register form input[type=radio] + label::before,
.m-register form input[type=radio] + label::after,
.m-register form input[type=checkbox] + label::before,
.m-register form input[type=checkbox] + label::after {
	content: "";
	display: block;
	border-radius: 100%;
	position: absolute;
	transition: all 250ms ease-in-out;
}
.m-login form input[type=radio] + label::before,
.m-login form input[type=checkbox] + label::before,
.m-register form input[type=radio] + label::before,
.m-register form input[type=checkbox] + label::before {
	width: 1.5rem;
	height: 1.5rem;
	border: 1px solid #847e78;
	background-color: #fff;
	z-index: 1;
	top: 0;
	left: 0;
}
.m-login form input[type=radio] + label::after,
.m-login form input[type=checkbox] + label::after,
.m-register form input[type=radio] + label::after,
.m-register form input[type=checkbox] + label::after {
	width: 0.7rem;
	height: 0.7rem;
	background-color: #014675;
	top: 4px;
	left: 4px;
	z-index: 3;
	opacity: 0;
	transform: scale(0.8);
}
.m-login form input[type=radio] + label:focus::before,
.m-login form input[type=checkbox] + label:focus::before,
.m-register form input[type=radio] + label:focus::before,
.m-register form input[type=checkbox] + label:focus::before {
	border-color: #302d2b;
}
.m-login form input[type=radio]:checked + label,
.m-login form input[type=checkbox]:checked + label,
.m-register form input[type=radio]:checked + label,
.m-register form input[type=checkbox]:checked + label {
	font-weight: 600;
}
.m-login form input[type=radio]:checked + label::before,
.m-login form input[type=checkbox]:checked + label::before,
.m-register form input[type=radio]:checked + label::before,
.m-register form input[type=checkbox]:checked + label::before {
	border-color: #014675;
}
.m-login form input[type=radio]:checked + label::after,
.m-login form input[type=checkbox]:checked + label::after,
.m-register form input[type=radio]:checked + label::after,
.m-register form input[type=checkbox]:checked + label::after {
	opacity: 1;
	transform: scale(1);
}
.m-login form input[type=checkbox] + label::before, .m-login form input[type=checkbox] + label::after,
.m-register form input[type=checkbox] + label::before,
.m-register form input[type=checkbox] + label::after {
	border-radius: 0;
}
.m-login form .payment_methods input[type=radio] + label::before,
.m-login form .payment_methods input[type=checkbox] + label::before,
.m-register form .payment_methods input[type=radio] + label::before,
.m-register form .payment_methods input[type=checkbox] + label::before {
	top: 4px;
}
.m-login form .payment_methods input[type=radio] + label::after,
.m-login form .payment_methods input[type=checkbox] + label::after,
.m-register form .payment_methods input[type=radio] + label::after,
.m-register form .payment_methods input[type=checkbox] + label::after {
	top: 8px;
}
.m-login form > p,
.m-register form > p {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.m-login form label,
.m-register form label {
	display: block;
	width: 100%;
	font-weight: 600;
	font-size: 1.4rem;
	margin-bottom: 1rem;
}
.m-login form input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.m-login form textarea,
.m-register form input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.m-register form textarea {
	width: 100%;
	border: 0;
	border-bottom: 1px solid #d3d2cd;
	font-family: "poppins", arial, sans-serif;
	font-size: 1.6rem;
	padding: 5px 0;
	margin-bottom: 4rem;
}
.m-login form input:not([type=submit]):not([type=radio]):not([type=checkbox])::placeholder,
.m-login form textarea::placeholder,
.m-register form input:not([type=submit]):not([type=radio]):not([type=checkbox])::placeholder,
.m-register form textarea::placeholder {
	color: #aaa8a2;
	font-size: 1.4rem;
}
.m-login form input:not([type=submit]):not([type=radio]):not([type=checkbox]).invalid,
.m-login form textarea.invalid,
.m-register form input:not([type=submit]):not([type=radio]):not([type=checkbox]).invalid,
.m-register form textarea.invalid {
	border-color: #ef1644;
}
.m-login form input:not([type=submit]):not([type=radio]):not([type=checkbox]):focus,
.m-login form textarea:focus,
.m-register form input:not([type=submit]):not([type=radio]):not([type=checkbox]):focus,
.m-register form textarea:focus {
	border-color: #302d2b;
}
.m-login form textarea,
.m-register form textarea {
	min-height: 10rem;
	resize: vertical;
	width: 100%;
	padding: 1rem;
	border: 1px solid #d3d2cd;
}
.m-login form .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.m-login form .alternate textarea,
.m-register form .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.m-register form .alternate textarea {
	border: 1px solid #847e78;
	font-family: "poppins", arial, sans-serif;
	font-size: 1.6rem;
	padding: 1rem;
	margin-bottom: 4rem;
}
.m-login form .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]):placeholder,
.m-login form .alternate textarea:placeholder,
.m-register form .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]):placeholder,
.m-register form .alternate textarea:placeholder {
	color: #aaa8a2;
	font-size: 1.4rem;
}
.m-login form .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]).invalid,
.m-login form .alternate textarea.invalid,
.m-register form .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]).invalid,
.m-register form .alternate textarea.invalid {
	border-color: #ef1644;
}
.m-login form .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]):focus,
.m-login form .alternate textarea:focus,
.m-register form .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]):focus,
.m-register form .alternate textarea:focus {
	border-color: #302d2b;
}
.m-login form .alternate .m-select,
.m-register form .alternate .m-select {
	display: block;
	width: 100%;
	cursor: pointer;
	font-size: 1.6rem;
	color: #000;
	padding: 1rem 1.5rem 1rem 1rem;
	background-color: #fff;
	font-family: "poppins", arial, sans-serif;
	border: 1px solid #d3d2cd;
}
.m-login form .alternate .m-select__parent,
.m-register form .alternate .m-select__parent {
	display: block;
	width: inherit;
	position: relative;
	margin-bottom: 4rem;
}
.m-login form .alternate .m-select__parent::after,
.m-register form .alternate .m-select__parent::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 0.6rem solid #302d2b;
	border-left: 0.6rem solid transparent;
	border-right: 0.6rem solid transparent;
	border-bottom: 0rem solid transparent;
	pointer-events: none;
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	right: 1rem;
}
.m-login form .alternate .m-select__parent--multi::after,
.m-register form .alternate .m-select__parent--multi::after {
	content: none;
}
.m-login form .alternate .m-select__parent--multi select,
.m-register form .alternate .m-select__parent--multi select {
	min-height: 10rem;
}
.m-login form .alternate .m-select__parent.invalid,
.m-register form .alternate .m-select__parent.invalid {
	border-color: #ef1644;
}
.m-login form .alternate .m-select__parent:focus,
.m-register form .alternate .m-select__parent:focus {
	border-color: #302d2b;
}
.m-login form .no-main-label > label,
.m-register form .no-main-label > label {
	display: none !important;
}
.m-login form .ginput_complex,
.m-register form .ginput_complex {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
.m-login form .ginput_complex > *,
.m-register form .ginput_complex > * {
	width: 48%;
}
.m-login form .ginput_complex label,
.m-register form .ginput_complex label {
	font-size: 1.2rem;
	display: block;
	margin-top: 1rem;
	color: #aaa8a2;
	text-transform: uppercase;
	font-weight: 500;
	padding-left: 1rem;
}
.m-login form .field_sublabel_above .ginput_complex label,
.m-register form .field_sublabel_above .ginput_complex label {
	display: block;
	width: 100%;
	font-weight: 600;
	font-size: 1.4rem;
	margin-top: 0;
	margin-bottom: 1rem;
	text-transform: none;
	padding-left: 0;
	color: #302d2b;
}
.m-login form .gform_footer,
.m-register form .gform_footer {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.m-login form .gform_footer input,
.m-register form .gform_footer input {
	margin-right: 2rem;
}
.m-login form .validation_error,
.m-register form .validation_error {
	display: block;
	color: #fff;
	background-color: #ef1644;
	padding: 5px 1rem;
	margin-bottom: 2rem;
	border-radius: 3px;
	font-size: 1.4rem;
}
.m-login form .gfield_description.validation_message,
.m-register form .gfield_description.validation_message {
	display: block;
	color: #ef1644;
	padding: 5px 0;
	margin-top: -3rem;
	margin-bottom: 3rem;
	font-size: 1.4rem;
}
.m-login form select,
.m-register form select {
	border-radius: 0;
}
.m-login form .m-select,
.m-register form .m-select {
	display: block;
	width: 100%;
	cursor: pointer;
	font-size: 1.7rem;
	color: #000;
	padding: 5px;
	background-color: #fff;
	font-family: "poppins", arial, sans-serif;
	border: 0;
	border-bottom: 1px solid #d3d2cd;
}
.m-login form .m-select__parent,
.m-register form .m-select__parent {
	display: block;
	width: 100%;
	position: relative;
	margin-bottom: 4rem;
}
.m-login form .m-select__parent::after,
.m-register form .m-select__parent::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 0.6rem solid #302d2b;
	border-left: 0.6rem solid transparent;
	border-right: 0.6rem solid transparent;
	border-bottom: 0rem solid transparent;
	pointer-events: none;
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	right: 1rem;
}
.m-login form .m-select__parent--multi::after,
.m-register form .m-select__parent--multi::after {
	content: none;
}
.m-login form .m-select__parent--multi select,
.m-register form .m-select__parent--multi select {
	min-height: 10rem;
}
.m-login form .m-select.invalid,
.m-register form .m-select.invalid {
	border-color: #ef1644;
}
.m-login form .m-select:focus,
.m-register form .m-select:focus {
	border-color: #302d2b;
}

#forgot-password-link {
	display: block;
	margin-top: 2rem;
}

/**
 * FOOTER
 */
body .m-footer {
	background-color: #fff;
	z-index: 999;
}
body .m-footer .l-wrapper {
	padding: 6rem 0rem 4rem;
	width: 1240px;
}
body .m-footer .l-col {
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
body .m-footer .l-col .menu {
	text-align: center;
}
body .m-footer .l-col .menu li {
	margin-bottom: 1rem;
}
body .m-footer .l-col .menu a {
	font-size: 1.6rem;
	color: #014675;
}
body .m-footer__heading {
	color: #edab2f;
	font-size: 1.9rem;
	letter-spacing: 0.2rem;
	margin: 2rem 0 1rem;
}
@media (min-width: 768px) {
	body .m-footer__heading {
		margin: 3rem 0 2rem;
	}
}
@media (max-width: 767px) {
	body .m-footer__col-md {
		margin-bottom: 1rem;
	}
}
@media (max-width: 1023px) {
	body .m-footer__col-md {
		order: 2;
	}
}
@media (min-width: 600px) {
	body .m-footer__col-md {
		width: 50%;
	}
}
@media (min-width: 900px) {
	body .m-footer__col-md {
		width: 25%;
	}
}
@media (min-width: 1024px) {
	body .m-footer__col-md {
		width: 17%;
	}
}
body .m-footer__col-lg {
	width: 100%;
}
@media (max-width: 767px) {
	body .m-footer__col-lg {
		margin-bottom: 2rem;
	}
}
@media (max-width: 1023px) {
	body .m-footer__col-lg {
		order: 1;
	}
}
@media (min-width: 1024px) {
	body .m-footer__col-lg {
		width: 26%;
	}
}
@media (max-width: 1023px) {
	body .m-footer .m-brand {
		width: 100%;
	}
}
@media (max-width: 1023px) {
	body .m-footer .m-brand__link {
		display: block;
		text-align: center;
	}
}
body .m-footer .m-brand__mark {
	display: block;
	width: 15.2rem;
	height: 8rem;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	font-size: 0;
}
@media (max-width: 1023px) {
	body .m-footer .m-brand__mark {
		margin: 0 auto;
	}
}
body .m-footer .menu-footer-menu-container {
	margin-top: 2.8rem;
}
@media (max-width: 1023px) {
	body .m-footer .menu-footer-menu-container {
		width: 100%;
	}
}
body .m-footer .menu-footer-menu-container .menu {
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (max-width: 767px) {
	body .m-footer .menu-footer-menu-container .menu {
		flex-direction: column;
	}
}
@media (min-width: 768px) {
	body .m-footer .menu-footer-menu-container .menu li:not(:last-child) {
		border-right: 1px solid #302d2b;
		padding-right: 1.5rem;
		margin-right: 1.5rem;
	}
}
body .m-footer .menu-footer-menu-container .menu a {
	color: #302d2b;
	font-size: 1.6rem;
	font-weight: 600;
}
@media (max-width: 767px) {
	body .m-footer .menu-footer-menu-container .menu a {
		display: block;
		padding: 1rem;
	}
}
body .m-footer .m-social {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
	margin-top: 2.4rem;
	width: 100%;
}
@media (max-width: 1023px) {
	body .m-footer .m-social {
		width: 100%;
	}
}
body .m-footer .m-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: all 0.3s ease-in-out;
	background: none !important;
}
body .m-footer .m-social a div {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1rem;
	width: 3rem;
	aspect-ratio: 1;
	background-color: #edab2f;
	border-radius: 5rem;
}
body .m-footer .m-social a:hover {
	transform: translateY(-0.5rem);
}
body .m-footer .m-social a svg {
	position: relative;
	z-index: 3;
	width: auto;
	height: 2rem;
	max-width: 2.2rem;
}
body .m-footer .m-social a svg path {
	fill: #fff;
}
body .m-footer .m-social a span {
	font-size: 1.6rem;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}
body .m-footer .m-social a:not(:last-child) {
	margin-right: 1.5rem;
}
body .m-footer__bottom {
	padding: 5rem 0;
}
body .m-footer__bottom .menu {
	padding: 0 0 3rem;
	display: flex;
}
@media (max-width: 767px) {
	body .m-footer__bottom .menu {
		flex-direction: column;
	}
}
@media (min-width: 768px) {
	body .m-footer__bottom .menu {
		margin-left: 2rem;
	}
}
body .m-footer__bottom .menu li {
	line-height: 0.1;
}
@media (max-width: 767px) {
	body .m-footer__bottom .menu li {
		padding: 1rem 0;
		text-align: center;
	}
}
@media (min-width: 768px) {
	body .m-footer__bottom .menu li:not(:last-child) {
		border-right: 0.1rem solid #605a55;
		padding: 0 1rem 0 0;
		margin-right: 1rem;
	}
}
body .m-footer__bottom .menu a {
	font-size: 1.3rem;
	color: #605a55;
	line-height: 0.9;
}
body .m-footer .m-button--blue, body .m-footer .m-minicart__actions .m-button--primary, .m-minicart__actions body .m-footer .m-button--primary {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.m-footertext {
	text-align: center;
	font-size: 1.2rem;
	color: #605a55;
	padding: 3rem 0;
}
.m-footertext p:not(:last-child) {
	margin-bottom: 0.75rem;
}

.m-copy {
	text-align: center;
	font-size: 1.3rem;
	color: #605a55;
	padding: 0 0 3rem;
	line-height: 1;
}
@media (max-width: 767px) {
	.m-copy {
		width: 100%;
	}
}

.m-map {
	background: url(../images/map.svg) center/contain no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5rem 0;
}
.m-faq-accordion__item {
	padding: 1rem 0;
}
.m-faq-accordion__item:not(:last-of-type()) {
	border-bottom: 0.1rem solid #847e78;
}
.m-faq-accordion__title {
	padding: 1rem 2rem 1rem 4rem;
	position: relative;
	font-size: 2rem;
	font-weight: 700;
	cursor: pointer;
	line-height: 1.2;
}
@media (min-width: 768px) {
	.m-faq-accordion__title {
		font-size: 2.4rem;
	}
}
.m-faq-accordion__title:before {
	content: "+";
	position: absolute;
	border-radius: 5rem;
	background-color: #014675;
	left: 0;
	top: 1.3rem;
	width: 2.6rem;
	height: 2.6rem;
	display: block;
	color: #fff;
	text-align: center;
	line-height: 1.2;
}
.m-faq-accordion__title.open:before {
	content: "–";
	line-height: 1;
}
.m-faq-accordion__content {
	display: none;
	padding: 0 2rem 2rem 4rem;
}

@media (min-width: 768px) {
	.m-compliance-info .l-col--4 {
		width: 25%;
	}
}
@media (max-width: 1023px) {
	.m-compliance-info .l-col--4 img {
		width: 30rem;
	}
}
@media (min-width: 768px) and (max-width: 1023px) {
	.m-compliance-info .l-col--2\.5 {
		width: 70%;
	}
}
@media (max-width: 767px) {
	.m-compliance-info__details .l-col--4 {
		width: 50%;
		margin-bottom: 2rem !important;
	}
}
@media (min-width: 768px) and (max-width: 1023px) {
	.m-compliance-info__details .l-col--4 {
		width: 25%;
		margin-bottom: 2rem !important;
	}
}

.m-border {
	position: absolute;
	z-index: 9;
	left: 0;
	width: 100%;
	overflow: hidden;
}
.m-border--top {
	top: -0.7rem;
	transform: rotate(180deg);
}
.m-border--bottom {
	bottom: -1rem;
}
@media (max-width: 767px) {
	.m-border svg {
		width: 300%;
		margin-left: -100%;
	}
}
.m-border svg path {
	fill: #fff;
}

.m-circle-callout {
	position: relative;
}
.m-circle-callout__thumb {
	display: flex;
	border-radius: 50%;
	border: 0.5rem solid #edab2f;
	background: #fff;
}
@media (min-width: 600px) {
	.m-circle-callout__thumb {
		width: 17rem;
	}
}
@media (min-width: 768px) and (max-width: 899px) {
	.m-circle-callout__thumb {
		width: 11rem;
	}
}
@media (min-width: 900px) and (max-width: 1023px) {
	.m-circle-callout__thumb {
		width: 12.5rem;
	}
}
@media (min-width: 1024px) and (max-width: 1219px) {
	.m-circle-callout__thumb {
		width: 14rem;
	}
}
.m-circle-callout__thumb img {
	float: left;
	border-radius: 50%;
}
.m-circle-callout__product {
	position: absolute;
	bottom: -3rem;
	right: -26%;
	z-index: 5;
	width: 36%;
}
.m-circle-callout__title {
	position: absolute !important;
	bottom: -1rem;
	color: #fff;
	padding: 1.5rem 1rem 1rem;
	width: 100%;
	text-align: center;
	font-size: 1.6rem;
	z-index: 3;
}

.m-circle-splash-callouts {
	position: relative;
}
@media (min-width: 600px) {
	.m-circle-splash-callouts {
		padding: 10%;
	}
}
@media (min-width: 600px) and (max-width: 899px) {
	.m-circle-splash-callouts {
		max-width: 60rem;
		margin: 0 auto;
	}
}
@media (min-width: 600px) and (max-width: 1219px) {
	.m-circle-splash-callouts {
		margin-right: 10%;
	}
}
.m-circle-splash-callouts__bg {
	position: absolute;
	top: -14%;
	right: -19%;
	left: -16%;
	z-index: 0;
}
@media (max-width: 599px) {
	.m-circle-splash-callouts__bg {
		display: none;
	}
}
@media (min-width: 600px) {
	.m-circle-splash-callouts .m-circle {
		padding-bottom: 100%;
		width: 100%;
		border-radius: 50%;
		border: 0.5rem solid #edab2f;
		z-index: 1;
		position: relative;
	}
}
@media (max-width: 599px) {
	.m-circle-splash-callouts .m-circle-callout {
		display: inline-block;
		float: left;
		width: calc(50% - 11vw);
		margin-right: 11vw;
		margin-bottom: 5rem;
	}
}
@media (min-width: 600px) {
	.m-circle-splash-callouts .m-circle-callout {
		position: absolute;
		z-index: 3;
		max-width: 16rem;
	}
}
@media (min-width: 480px) and (max-width: 599px) {
	.m-circle-splash-callouts .m-circle-callout:nth-of-type(odd) {
		clear: left;
	}
}
@media (min-width: 480px) and (max-width: 599px) {
	.m-circle-splash-callouts .m-circle-callout:nth-of-type(even) {
		float: right;
		margin-top: -3vw;
	}
}
@media (min-width: 600px) {
	.m-circle-splash-callouts .m-circle-callout:nth-of-type(1) {
		top: -1%;
		left: calc(50% - 7.5rem);
	}
}
@media (min-width: 600px) {
	.m-circle-splash-callouts .m-circle-callout:nth-of-type(2) {
		top: 25%;
		right: calc(15% - 7.5rem);
	}
}
@media (min-width: 600px) {
	.m-circle-splash-callouts .m-circle-callout:nth-of-type(3) {
		top: 64%;
		right: calc(26% - 7.5rem);
	}
}
@media (min-width: 600px) {
	.m-circle-splash-callouts .m-circle-callout:nth-of-type(4) {
		top: 64%;
		left: calc(26% - 7.5rem);
	}
}
@media (min-width: 600px) {
	.m-circle-splash-callouts .m-circle-callout:nth-of-type(5) {
		top: 25%;
		left: calc(15% - 7.5rem);
	}
}

.m-awards.l-grid {
	gap: 6rem 7rem;
}

.m-award {
	position: relative;
	text-align: center;
}
.m-award__award {
	width: 50%;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
	position: absolute;
}
.m-award__title {
	color: #605a55;
	text-align: center;
	transition: all 0.3s ease-in-out;
}
.m-award__prod-thumb {
	transition: all 0.3s ease-in-out;
	max-height: 32rem;
}
.m-award:hover .m-award__title {
	color: #edab2f;
}
.m-award:hover .m-award__award {
	transform: translateY(-40%);
}
.m-award:hover .m-award__prod-thumb {
	transform: translateY(-1rem);
}

.m-hyalock {
	text-align: center;
	padding: 1rem;
	border-radius: 3rem;
	background: #fff;
	max-width: 40rem;
	margin-bottom: 2rem;
}
@media (max-width: 767px) {
	.m-hyalock {
		margin: 0 auto 2rem;
	}
}
@media (min-width: 768px) {
	.m-hyalock {
		padding: 5rem;
	}
}
.m-hyalock__logo {
	width: 80%;
	margin-top: -28%;
	max-width: 22rem;
	margin-bottom: 1.5rem;
}
.m-hyalock__description {
	color: #223f7f;
	margin-bottom: 2rem;
}
.m-hyalock__description::after {
	content: "";
	display: block;
	height: 0.2rem;
	width: 100%;
	background: linear-gradient(90deg, #fff, #f3f0ee, #f3f0ee, #fff) !important;
	margin-top: 2rem;
}
.m-hyalock__tagline {
	color: #014675;
	font-size: 1.5rem;
	font-weight: 700;
}
@media (min-width: 768px) {
	.m-hyalock__tagline {
		font-size: 2rem;
	}
}
.m-hyalock__tagline .u-orange {
	color: #edab2f;
}

.m-hyalock-list {
	text-align: left;
	padding: 1rem 0 1rem 5rem;
	margin: 0 auto 2rem;
	max-width: 30rem;
}
.m-hyalock-list li {
	counter-increment: ol-list-counter;
	position: relative;
	font-weight: 400;
	color: #014675;
	padding: 0;
	box-shadow: none;
	border-radius: 0;
}
.m-hyalock-list li:not(:last-child) {
	margin-bottom: 1.5rem;
}
.m-hyalock-list li::before {
	content: counter(ol-list-counter);
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	font-family: "poppins", arial, sans-serif;
	position: absolute;
	left: -3.7rem;
	width: 3rem;
	height: 3rem;
	top: -0.5rem;
	background: url(../images/hyalock-list.svg) center/contain no-repeat;
	text-align: center;
	line-height: 1.5;
}

@media (max-width: 1219px) {
	.m-store-locator-section .l-col {
		width: 100% !important;
	}
}

.m-store-locator {
	border: 0.2rem solid #f3f0ee;
	border-radius: 1rem;
}
.m-store-locator #wpsl-wrap {
	margin: 0;
}
.m-store-locator #wpsl-wrap #wpsl-result-list li {
	padding: 1.2rem 2rem 0.5rem;
	display: flex;
}
.m-store-locator #wpsl-wrap #wpsl-result-list li .wpsl-store-location {
	width: calc(100% - 9rem);
}
.m-store-locator .wpsl-search {
	border-radius: 1rem 1rem 0 0rem;
	background: #f3f0ee;
	margin: 0;
	padding: 1.5rem 2rem 0.5rem;
}
.m-store-locator #wpsl-search-wrap input,
.m-store-locator #wpsl-search-wrap select,
.m-store-locator .wpsl-dropdown {
	height: auto;
	padding: 0.9rem 1.4rem 1rem;
	border-radius: 1rem;
	border: 0;
	display: block;
}
.m-store-locator .wpsl-dropdown {
	padding: 0.1rem 0 0.2rem 0;
}
.m-store-locator #wpsl-search-wrap input#wpsl-search-btn {
	border: 0;
	border-radius: 1.4rem;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
	width: auto;
	padding: 0.5rem 2rem 0.8rem;
	height: auto;
	background: #edab2f;
	transition: all 0.3s ease-in-out;
}
.m-store-locator #wpsl-search-wrap input#wpsl-search-btn:hover {
	background: #efb446;
}

.m-shop {
	padding: 2rem 2rem 4rem;
}
@media (min-width: 768px) {
	.m-shop {
		padding: 4rem 2rem;
	}
}
.m-shop .l-row > aside {
	display: block;
	top: 0;
}
@media (min-width: 768px) {
	.m-shop .l-row > aside {
		position: sticky;
		padding: 0 8rem 0 4rem;
	}
}
.m-shop .m-empty {
	display: block;
	width: 100%;
	margin: 2rem 0;
	padding: 1.5rem;
	color: #aaa8a2;
	border-top: 1px solid #f3f0ee;
	border-bottom: 1px solid #f3f0ee;
	line-height: 1;
	text-align: center;
}

@media (min-width: 768px) {
	.m-filter-toggle {
		display: none;
	}
}

@media (max-width: 767px) {
	.m-filter-container {
		display: none;
	}
}
@media (min-width: 768px) {
	.m-filter-container {
		display: block !important;
	}
}

filter-nav {
	display: block;
	margin-top: 2rem;
}
filter-nav:not(:last-of-type) {
	margin-bottom: 3rem;
}
@media (min-width: 768px) {
	filter-nav:not(:last-of-type) {
		margin-bottom: 4rem;
	}
}
filter-nav h3 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #605a55;
	text-transform: uppercase;
	display: block;
	margin: 0;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid #d3d2cd;
}
@media (min-width: 768px) {
	filter-nav h3 {
		font-size: 1.3rem;
	}
}
filter-nav ul {
	padding: 0 1rem;
}
filter-nav li {
	display: block;
	padding: 0.3rem 0;
}
filter-nav a {
	display: block;
	width: 100%;
	position: relative;
	color: #605a55;
	transition: padding-left 175ms ease-in-out, margin-left 175ms ease-in-out;
}
filter-nav a:focus {
	color: #605a55;
}
filter-nav a:hover::before {
	background-color: #014675;
	color: #fff;
}
filter-nav a.selected {
	font-weight: 600;
	color: #014675;
	padding-left: 0.3rem;
}
filter-nav a.selected::before {
	opacity: 1;
	transform: scale(1);
	left: -1.4rem;
}
filter-nav a::before {
	content: "✕";
	display: block;
	position: absolute;
	top: 4px;
	left: -1.2rem;
	padding: 1px 2px;
	border: 1px solid #014675;
	border-radius: 1px;
	line-height: 1;
	font-size: 8px;
	font-weight: 600;
	opacity: 0;
	transform: scale(0.9);
	transition: opacity 250ms ease-in-out, background-color 250ms ease-in-out, color 250ms ease-in-out, transform 250ms ease-in-out, left 250ms ease-in-out;
}

.m-productactions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: sticky;
	top: 0;
	background-color: #fff;
	padding: 0 0 2rem;
	width: 100%;
	z-index: 10;
	margin-bottom: 1rem;
}
@media (min-width: 768px) {
	.m-productactions {
		padding: 1rem 1.5rem;
	}
}

.m-productgrid mini-product {
	opacity: 0;
	background-color: #fff;
	transition: opacity 250ms ease-in-out, filter 250ms ease-in-out, transform 250ms ease-in-out;
}
@media (min-width: 768px) {
	.m-productgrid mini-product {
		padding: 2rem;
	}
}
@media (min-width: 768px) {
	.m-productgrid mini-product:hover {
		transform: translateY(-3px);
		filter: drop-shadow(0 0.7rem 1rem rgba(0, 0, 0, 0.1));
	}
}
.m-productgrid mini-product.show {
	opacity: 1;
}
.m-productgrid .m-miniprod__title {
	font-size: 2rem;
}
.m-productgrid .m-miniprod__price--normal {
	font-size: 1.6rem;
}
.m-productgrid .m-miniprod__content .m-stars__stars li {
	width: 1.9rem;
	height: 1.6rem;
}
.m-productgrid .m-miniprod__content .m-stars__reviews {
	font-size: 1.4rem;
}
.m-productsort,
.m-productsearch {
	display: flex;
	align-items: center;
}
@media (max-width: 767px) {
	.m-productsort,
	.m-productsearch {
		width: 48%;
		flex-direction: column;
		align-items: flex-start;
	}
}
.m-productsort label,
.m-productsearch label {
	display: block;
	font-size: 1.1rem;
	font-weight: 600;
	color: #605a55;
	text-transform: uppercase;
	display: block;
	margin-right: 1rem;
	white-space: nowrap;
}
@media (max-width: 767px) {
	.m-productsort label,
	.m-productsearch label {
		margin-bottom: 0.5rem;
	}
}
@media (min-width: 768px) {
	.m-productsort label,
	.m-productsearch label {
		font-size: 1.3rem;
	}
}
.m-productsort .m-select,
.m-productsearch .m-select {
	border-radius: 0.5rem;
	padding: 5px;
	padding-right: 2.5rem;
	font-size: 1.5rem;
	border: 1px solid #d3d2cd;
}
.m-productsort .m-select__parent::after,
.m-productsearch .m-select__parent::after {
	border-top: 0.4rem solid #302d2b;
	border-left: 0.4rem solid transparent;
	border-right: 0.4rem solid transparent;
	border-bottom: 0rem solid transparent;
}
.m-productsort .m-select:focus,
.m-productsearch .m-select:focus {
	border: 1px solid #847e78;
}
.m-productsort input,
.m-productsearch input {
	border-radius: 0.5rem;
	padding: 5px;
	font-size: 1.5rem;
	border: 1px solid #d3d2cd;
}
@media (max-width: 767px) {
	.m-productsort input,
	.m-productsearch input {
		width: 100%;
	}
}
.m-productsort input:focus,
.m-productsearch input:focus {
	border: 1px solid #847e78;
}

.m-comments .comment-form-comment {
	display: flex;
	flex-direction: column;
}
.m-pagination {
	width: 100%;
	text-align: center;
	margin-top: 5rem;
}
.m-pagination li {
	display: inline-block;
	margin: 0 0.5rem;
}
.m-pagination li span,
.m-pagination li a {
	display: block;
	width: 4rem;
	height: 4rem;
	padding: 0.3rem 0;
	border-radius: 5rem;
	border: 0.2rem solid transparent;
	color: #edab2f;
	font-weight: 700;
	text-align: center;
	line-height: 2;
	transition: all 0.3s ease-in-out;
}
.m-pagination li span.current,
.m-pagination li a.current {
	border-color: #edab2f;
	background: #edab2f;
	color: #fff;
}
.m-pagination li span:hover,
.m-pagination li a:hover {
	border-color: #edab2f;
}

.pum-container {
	transform: skewY(-5deg) translateZ(0);
	-webkit-font-smoothing: subpixel-antialiased;
}
@media (max-width: 599px) {
	.pum-container {
		padding: 3rem !important;
	}
}
.pum-container::before, .pum-container::after {
	content: "";
	background-image: url(https://hyalogic.com/wp-content/uploads/2019/08/hexagons.svg);
	background-size: 100% auto;
	background-position: center;
	background-repeat: none;
	width: 140px;
	height: 208px;
	display: block;
	position: absolute;
}
.pum-container::before {
	left: 0;
	bottom: 4rem;
	transform: translateX(-60%);
}
.pum-container::after {
	right: 0;
	top: 6rem;
	transform: translateX(60%);
}
.pum-container .pum-title,
.pum-container .pum-content,
.pum-container .pum-close {
	transform: skewY(5deg) translateZ(0);
}
.pum-container .pum-title {
	font-family: "epicursive", arial, sans-serif;
	font-size: 6rem;
}
.pum-container .pum-content p {
	font-size: 1.7rem;
}
.pum-container .gform_wrapper .hidden_label > label {
	display: none !important;
}
.pum-container .gform_wrapper form {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.pum-container .gform_wrapper .gform_body {
	width: calc(100% - 15rem);
}
@media (max-width: 599px) {
	.pum-container .gform_wrapper .gform_body {
		width: 100%;
	}
}
.pum-container .gform_wrapper .gform_footer {
	width: 15rem;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
@media (max-width: 599px) {
	.pum-container .gform_wrapper .gform_footer {
		width: 100%;
		justify-content: center;
	}
}
.pum-container .gform_wrapper .gform_footer input {
	display: block;
	margin-right: 1rem;
	padding: 1.5rem 2rem;
	color: #fff;
	background-color: #edab2f;
	border-radius: 1.6rem;
	font-size: 1.6rem;
	border: 0;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
}
.pum-container .gform_wrapper .gform_fields {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
.pum-container .gform_wrapper .gform_fields li {
	width: 48%;
}
@media (max-width: 599px) {
	.pum-container .gform_wrapper .gform_fields li {
		width: 100%;
		margin-bottom: 2rem;
	}
}
.pum-container .gform_wrapper .validation_error,
.pum-container .gform_wrapper .validation_message {
	color: #ef1644;
	padding: 1rem 2rem;
	background-color: #fff;
	margin: 1rem 0;
	font-weight: 600;
	border-radius: 5px;
}
.pum-container .gform_wrapper input:not([type=submit]) {
	outline: 0;
	border: 0;
	background-color: transparent;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 400;
	border-bottom: 2px solid #fff;
	padding: 1rem;
	width: 100%;
	border-radius: 0;
}
.pum-container .gform_wrapper input:not([type=submit])::placeholder {
	color: rgba(255, 255, 255, 0.8);
}

.m-cart.m-cart--empty .m-grid {
	display: block;
	width: 60%;
	margin: 0 auto;
	background-color: #fff;
	border-radius: 3px;
	filter: drop-shadow(0 1rem 1rem rgba(0, 0, 0, 0.1));
	padding: 3rem;
}

.m-emptycart__message {
	display: block;
	width: 100%;
	text-align: center;
	margin-bottom: 3rem;
}

.m-cart .m-grid {
	width: 100%;
	grid-template-columns: 1fr;
	grid-template-areas: "carthead carthead" "cartsummary carttotals";
	padding: 0;
	align-items: start;
}
@media (min-width: 1024px) {
	.m-cart .m-grid {
		display: grid;
		grid-template-columns: 2fr 1fr;
		grid-column-gap: 4rem;
	}
}
.m-cart .m-grid h1 {
	grid-area: carthead;
	margin-bottom: 3rem;
}

.m-totals {
	grid-area: cartsummary;
	background-color: #fff;
	border-radius: 3px;
	filter: drop-shadow(0 1rem 1rem rgba(0, 0, 0, 0.1));
	padding: 2rem;
}
@media (min-width: 768px) {
	.m-totals {
		padding: 3rem;
	}
}
.m-totals header ul,
.m-totals section li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.m-totals header {
	padding-bottom: 1rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid #f3f0ee;
	color: #302d2b;
}
@media (max-width: 767px) {
	.m-totals header {
		display: none;
	}
}
.m-totals section li:not(:first-of-type) {
	margin-top: 3rem;
	padding-top: 3rem;
	border-top: 1px solid #f3f0ee;
}
.m-totals header li {
	display: flex;
	align-items: center;
	justify-content: center;
}
.m-totals > footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 1rem 2rem;
	background-color: #f3f0ee;
	margin-top: 3rem;
}
.m-totals__product {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media (min-width: 768px) {
	.m-totals__product {
		width: 57%;
	}
}
.m-totals__product dl {
	display: flex;
	width: 100%;
	justify-content: flex-start;
}
.m-totals__product dl dd {
	font-weight: 600;
}
.m-totals__product\:image {
	width: 45%;
}
@media (min-width: 768px) {
	.m-totals__product\:image {
		width: 30%;
	}
}
.m-totals__product\:data {
	width: 45%;
}
@media (min-width: 768px) {
	.m-totals__product\:data {
		width: 66%;
	}
}
.m-totals__product\:data h3 {
	font-size: 2rem;
}
@media (min-width: 768px) {
	.m-totals__product\:data h3 {
		font-size: 2.6rem;
	}
}
.m-totals__product\:data h3 a {
	color: #014675;
	line-height: 1;
	display: block;
}
.m-totals__product\:data a.remove {
	display: block;
	font-weight: bold;
	font-size: 1.4rem;
	text-transform: uppercase;
	margin-top: 1rem;
}
.m-totals__price, .m-totals__quantity, .m-totals__autoship,
.m-totals cart-item-update {
	width: 100%;
}
@media (max-width: 767px) {
	.m-totals__price, .m-totals__quantity, .m-totals__autoship,
	.m-totals cart-item-update {
		padding: 1rem 0;
	}
}
@media (min-width: 768px) {
	.m-totals__price, .m-totals__quantity, .m-totals__autoship,
	.m-totals cart-item-update {
		width: 20%;
	}
}
.m-totals__autoship .m-select {
	padding-top: 0.7rem;
	padding-bottom: 0.7rem;
	border-radius: 3px;
}
.m-totals__price {
	text-align: center;
}
.m-totals section .m-totals__price {
	font-size: 2rem;
}

.m-cart__extras {
	grid-area: carttotals;
}

.m-gotocheckout {
	background-color: #fff;
	border-radius: 3px;
	filter: drop-shadow(0 1rem 1rem rgba(0, 0, 0, 0.1));
	padding: 2rem;
	margin-bottom: 3rem;
}
@media (min-width: 768px) {
	.m-gotocheckout {
		padding: 3rem;
	}
}
.m-gotocheckout__title {
	display: block;
	width: 100%;
	font-size: 2.2rem;
	font-family: "poppins", arial, sans-serif;
	color: #014675;
	font-weight: 600;
	padding-bottom: 1rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid #d3d2cd;
}
.m-gotocheckout__subtotal, .m-gotocheckout__tax, .m-gotocheckout__coupons, .m-gotocheckout__shipping, .m-gotocheckout__summary {
	display: block;
	width: 100%;
	line-height: 1.6;
	font-size: 1.6rem;
	margin-bottom: 0.5rem;
}
.m-gotocheckout__subtotal.hide, .m-gotocheckout__tax.hide, .m-gotocheckout__coupons.hide, .m-gotocheckout__shipping.hide, .m-gotocheckout__summary.hide {
	display: none;
}
.m-gotocheckout .m-button, .m-gotocheckout .m-coupon input[type=submit], .m-coupon .m-gotocheckout input[type=submit], .m-gotocheckout .m-gateway__fields .button, .m-gateway__fields .m-gotocheckout .button, .m-gotocheckout .m-checkout__form input[type=submit], .m-checkout__form .m-gotocheckout input[type=submit], .m-gotocheckout .m-updatecartitem input[type=submit], .m-updatecartitem .m-gotocheckout input[type=submit], .m-gotocheckout .m-bb input[type=submit], .m-bb .m-gotocheckout input[type=submit], .m-gotocheckout .m-account__addpayment form input[type=submit], .m-account__addpayment form .m-gotocheckout input[type=submit], .m-gotocheckout .m-leavereview__body form input[type=submit], .m-leavereview__body form .m-gotocheckout input[type=submit], .m-gotocheckout .m-login form input[type=submit], .m-login form .m-gotocheckout input[type=submit],
.m-gotocheckout .m-register form input[type=submit],
.m-register form .m-gotocheckout input[type=submit], .m-gotocheckout .m-comments input[type=submit], .m-comments .m-gotocheckout input[type=submit] {
	margin-top: 2rem;
}

cart-item-update {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
cart-item-update footer {
	opacity: 0;
	pointer-events: none;
	transition: opacity 250ms ease-in-out;
	position: relative;
	width: 100%;
}
cart-item-update footer.active {
	opacity: 1;
	pointer-events: all;
}
cart-item-update .spinner, cart-item-update .m-cartsummary::after, cart-item-update .m-checkout__form::after, cart-item-update .m-bb::after, cart-item-update .m-savedcards::after, cart-item-update .m-leavereview__body form::after, .m-leavereview__body cart-item-update form::after, cart-item-update .m-minicart__items::after {
	position: absolute;
	top: 1.5rem;
	right: -4rem;
	opacity: 1;
	pointer-events: all;
	transition: opacity 250ms ease-in-out;
}
cart-item-update .spinner.hide, cart-item-update .hide.m-cartsummary::after, cart-item-update .hide.m-checkout__form::after, cart-item-update .hide.m-bb::after, cart-item-update .hide.m-savedcards::after, cart-item-update .m-leavereview__body form.hide::after, .m-leavereview__body cart-item-update form.hide::after, cart-item-update .hide.m-minicart__items::after {
	opacity: 0;
	pointer-events: none;
}

.m-updatecartitem {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
}
.m-updatecartitem__qty {
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	width: 100%;
}
.m-updatecartitem__qty button {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f3f0ee;
	border: 1px solid #d3d2cd;
	font-size: 1.8rem;
	font-weight: 600;
	cursor: pointer;
	width: 3rem;
	outline: 0;
}
.m-updatecartitem__qty button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
.m-updatecartitem__qty\:decrement {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}
.m-updatecartitem__qty input {
	display: block;
	width: 6rem !important;
	font-size: 2rem !important;
	border-left: 0 !important;
	border-right: 0 !important;
	border-top: 1px solid #d3d2cd !important;
	border-bottom: 1px solid #d3d2cd !important;
	color: #000;
	padding: 0.5rem;
	text-align: center;
	font-weight: 600;
	transition: border-color 250ms ease-in-out;
	margin-bottom: 0 !important;
}
.m-updatecartitem__qty input.invalid {
	border-color: #ef1644;
}
.m-updatecartitem__qty\:increment {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}
.m-updatecartitem input[type=submit] {
	display: block;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: -5rem;
}

coupon-code {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #014675;
	padding: 5px 10px;
	border-radius: 2px;
	color: #fff;
	font-style: normal;
	font-size: 1.4rem;
	font-weight: 600;
	margin: 5px;
}
coupon-code input[type=submit] {
	padding: 0;
	background-color: transparent;
	font-weight: 600;
	margin-left: 5px;
	color: #fff;
	border: 0;
	cursor: pointer;
}

.m-checkout .m-grid {
	width: 100%;
	display: grid;
	grid-column-gap: 0;
	grid-template-areas: "checkoutnav" "checkoutnav" "checkoutsummary" "checkoutflow" "footcheckoutnav" "footcheckoutnav";
	padding: 0;
}
@media (min-width: 1024px) {
	.m-checkout .m-grid {
		grid-template-columns: 2fr 1fr;
		grid-column-gap: 4rem;
		grid-template-areas: "checkoutnav checkoutnav" "checkoutflow checkoutsummary" "footcheckoutnav footcheckoutnav";
	}
}

.m-summarycart + .m-checkout__nav {
	grid-area: footcheckoutnav;
	margin-top: 5rem;
	margin-bottom: 1rem;
}
@media (max-width: 479px) {
	.m-summarycart + .m-checkout__nav {
		font-size: 1.2rem;
	}
}

.m-checkout__nav {
	grid-area: checkoutnav;
	margin-bottom: 4rem;
	margin-top: 2rem;
	padding: 0 3.3rem;
}
@media (max-width: 479px) {
	.m-checkout__nav {
		font-size: 1.2rem;
	}
}
.m-checkout__nav > div {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.m-checkout__nav a {
	margin: 0 1rem;
}
.m-checkout__nav a:first-of-type {
	margin-left: 0;
}
.m-checkout__nav a:last-of-type {
	margin-left: 1rem;
}
.m-checkout__nav a.active {
	font-weight: bold;
}
.m-checkout__nav .hide {
	display: none;
}
.m-checkout__nav .only-with-shipping {
	display: flex;
	align-items: center;
}
.m-checkout__left {
	grid-area: checkoutflow;
}
.m-checkout__promo {
	background-color: #fff;
	border-radius: 3px;
	filter: drop-shadow(0 1rem 1rem rgba(0, 0, 0, 0.1));
	margin-bottom: 4rem;
	overflow: hidden;
}
.m-checkout__promo__message {
	padding: 1rem 2rem 3rem;
}
@media (min-width: 768px) {
	.m-checkout__promo__message {
		padding: 2rem 3rem 4rem;
	}
}
.m-checkout__form {
	background-color: #fff;
	border-radius: 3px;
	filter: drop-shadow(0 1rem 1rem rgba(0, 0, 0, 0.1));
	padding: 2rem;
	position: relative;
}
.m-checkout__form label {
	cursor: pointer;
}
.m-checkout__form input[type=radio],
.m-checkout__form input[type=checkbox] {
	display: none;
}
.m-checkout__form input[type=radio] + label,
.m-checkout__form input[type=checkbox] + label {
	display: block;
	width: 100%;
	padding-left: 2.5rem;
	position: relative;
	line-height: 1;
	margin-bottom: 1rem;
	font-size: 1.6rem;
}
.m-checkout__form input[type=radio] + label *,
.m-checkout__form input[type=checkbox] + label * {
	line-height: 1;
}
.m-checkout__form input[type=radio] + label::before, .m-checkout__form input[type=radio] + label::after,
.m-checkout__form input[type=checkbox] + label::before,
.m-checkout__form input[type=checkbox] + label::after {
	content: "";
	display: block;
	border-radius: 100%;
	position: absolute;
	transition: all 250ms ease-in-out;
}
.m-checkout__form input[type=radio] + label::before,
.m-checkout__form input[type=checkbox] + label::before {
	width: 1.5rem;
	height: 1.5rem;
	border: 1px solid #847e78;
	background-color: #fff;
	z-index: 1;
	top: 0;
	left: 0;
}
.m-checkout__form input[type=radio] + label::after,
.m-checkout__form input[type=checkbox] + label::after {
	width: 0.7rem;
	height: 0.7rem;
	background-color: #014675;
	top: 4px;
	left: 4px;
	z-index: 3;
	opacity: 0;
	transform: scale(0.8);
}
.m-checkout__form input[type=radio] + label:focus::before,
.m-checkout__form input[type=checkbox] + label:focus::before {
	border-color: #302d2b;
}
.m-checkout__form input[type=radio]:checked + label,
.m-checkout__form input[type=checkbox]:checked + label {
	font-weight: 600;
}
.m-checkout__form input[type=radio]:checked + label::before,
.m-checkout__form input[type=checkbox]:checked + label::before {
	border-color: #014675;
}
.m-checkout__form input[type=radio]:checked + label::after,
.m-checkout__form input[type=checkbox]:checked + label::after {
	opacity: 1;
	transform: scale(1);
}
.m-checkout__form input[type=checkbox] + label::before, .m-checkout__form input[type=checkbox] + label::after {
	border-radius: 0;
}
.m-checkout__form .payment_methods input[type=radio] + label::before,
.m-checkout__form .payment_methods input[type=checkbox] + label::before {
	top: 4px;
}
.m-checkout__form .payment_methods input[type=radio] + label::after,
.m-checkout__form .payment_methods input[type=checkbox] + label::after {
	top: 8px;
}
.m-checkout__form > p {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.m-checkout__form label {
	display: block;
	width: 100%;
	font-weight: 600;
	font-size: 1.4rem;
	margin-bottom: 1rem;
}
.m-checkout__form input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.m-checkout__form textarea {
	width: 100%;
	border: 0;
	border-bottom: 1px solid #d3d2cd;
	font-family: "poppins", arial, sans-serif;
	font-size: 1.6rem;
	padding: 5px 0;
	margin-bottom: 4rem;
}
.m-checkout__form input:not([type=submit]):not([type=radio]):not([type=checkbox])::placeholder,
.m-checkout__form textarea::placeholder {
	color: #aaa8a2;
	font-size: 1.4rem;
}
.m-checkout__form input:not([type=submit]):not([type=radio]):not([type=checkbox]).invalid,
.m-checkout__form textarea.invalid {
	border-color: #ef1644;
}
.m-checkout__form input:not([type=submit]):not([type=radio]):not([type=checkbox]):focus,
.m-checkout__form textarea:focus {
	border-color: #302d2b;
}
.m-checkout__form textarea {
	min-height: 10rem;
	resize: vertical;
	width: 100%;
	padding: 1rem;
	border: 1px solid #d3d2cd;
}
.m-checkout__form .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.m-checkout__form .alternate textarea {
	border: 1px solid #847e78;
	font-family: "poppins", arial, sans-serif;
	font-size: 1.6rem;
	padding: 1rem;
	margin-bottom: 4rem;
}
.m-checkout__form .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]):placeholder,
.m-checkout__form .alternate textarea:placeholder {
	color: #aaa8a2;
	font-size: 1.4rem;
}
.m-checkout__form .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]).invalid,
.m-checkout__form .alternate textarea.invalid {
	border-color: #ef1644;
}
.m-checkout__form .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]):focus,
.m-checkout__form .alternate textarea:focus {
	border-color: #302d2b;
}
.m-checkout__form .alternate .m-select {
	display: block;
	width: 100%;
	cursor: pointer;
	font-size: 1.6rem;
	color: #000;
	padding: 1rem 1.5rem 1rem 1rem;
	background-color: #fff;
	font-family: "poppins", arial, sans-serif;
	border: 1px solid #d3d2cd;
}
.m-checkout__form .alternate .m-select__parent {
	display: block;
	width: inherit;
	position: relative;
	margin-bottom: 4rem;
}
.m-checkout__form .alternate .m-select__parent::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 0.6rem solid #302d2b;
	border-left: 0.6rem solid transparent;
	border-right: 0.6rem solid transparent;
	border-bottom: 0rem solid transparent;
	pointer-events: none;
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	right: 1rem;
}
.m-checkout__form .alternate .m-select__parent--multi::after {
	content: none;
}
.m-checkout__form .alternate .m-select__parent--multi select {
	min-height: 10rem;
}
.m-checkout__form .alternate .m-select__parent.invalid {
	border-color: #ef1644;
}
.m-checkout__form .alternate .m-select__parent:focus {
	border-color: #302d2b;
}
.m-checkout__form .no-main-label > label {
	display: none !important;
}
.m-checkout__form .ginput_complex {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
.m-checkout__form .ginput_complex > * {
	width: 48%;
}
.m-checkout__form .ginput_complex label {
	font-size: 1.2rem;
	display: block;
	margin-top: 1rem;
	color: #aaa8a2;
	text-transform: uppercase;
	font-weight: 500;
	padding-left: 1rem;
}
.m-checkout__form .field_sublabel_above .ginput_complex label {
	display: block;
	width: 100%;
	font-weight: 600;
	font-size: 1.4rem;
	margin-top: 0;
	margin-bottom: 1rem;
	text-transform: none;
	padding-left: 0;
	color: #302d2b;
}
.m-checkout__form .gform_footer {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.m-checkout__form .gform_footer input {
	margin-right: 2rem;
}
.m-checkout__form .validation_error {
	display: block;
	color: #fff;
	background-color: #ef1644;
	padding: 5px 1rem;
	margin-bottom: 2rem;
	border-radius: 3px;
	font-size: 1.4rem;
}
.m-checkout__form .gfield_description.validation_message {
	display: block;
	color: #ef1644;
	padding: 5px 0;
	margin-top: -3rem;
	margin-bottom: 3rem;
	font-size: 1.4rem;
}
.m-checkout__form select {
	border-radius: 0;
}
.m-checkout__form .m-select {
	display: block;
	width: 100%;
	cursor: pointer;
	font-size: 1.7rem;
	color: #000;
	padding: 5px;
	background-color: #fff;
	font-family: "poppins", arial, sans-serif;
	border: 0;
	border-bottom: 1px solid #d3d2cd;
}
.m-checkout__form .m-select__parent {
	display: block;
	width: 100%;
	position: relative;
	margin-bottom: 4rem;
}
.m-checkout__form .m-select__parent::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 0.6rem solid #302d2b;
	border-left: 0.6rem solid transparent;
	border-right: 0.6rem solid transparent;
	border-bottom: 0rem solid transparent;
	pointer-events: none;
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	right: 1rem;
}
.m-checkout__form .m-select__parent--multi::after {
	content: none;
}
.m-checkout__form .m-select__parent--multi select {
	min-height: 10rem;
}
.m-checkout__form .m-select.invalid {
	border-color: #ef1644;
}
.m-checkout__form .m-select:focus {
	border-color: #302d2b;
}
.m-checkout__form::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.85);
	opacity: 0;
	transition: opacity 250ms ease-in-out;
	position: absolute;
	z-index: 5;
	pointer-events: none;
	top: 0;
	left: 0;
}
.m-checkout__form::after {
	content: "";
	position: absolute;
	z-index: 6;
	top: calc(50% - 1.5rem);
	left: calc(50% - 1.5rem);
	opacity: 0;
	transition: opacity 250ms ease-in-out;
	pointer-events: none;
}
.m-checkout__form.loading::before, .m-checkout__form.loading::after {
	opacity: 1;
	pointer-events: all;
}
@media (min-width: 768px) {
	.m-checkout__form {
		padding: 3rem;
	}
}
.m-checkout__form .hide {
	display: none;
}
.m-checkout__form .l-col {
	margin-bottom: 0 !important;
}
@media (min-width: 768px) {
	.m-checkout__form .l-col--2:first-of-type {
		padding-right: 2rem;
	}
}
@media (min-width: 768px) {
	.m-checkout__form .l-col--2:last-of-type {
		padding-left: 2rem;
	}
}
.m-checkout__form--one-step .m-checkout__step {
	display: block !important;
	opacity: 1;
}
.m-checkout__form--one-step .m-checkout__step:not(:last-child) .m-checkout__actions {
	display: none;
}
.m-checkout__form--one-step .m-checkout__step:last-child .m-checkout__actions {
	justify-content: flex-end;
}
.m-checkout__form--one-step .m-checkout__actions a.m-button, .m-checkout__form--one-step .m-checkout__actions .m-gateway__fields a.button, .m-gateway__fields .m-checkout__form--one-step .m-checkout__actions a.button {
	display: none;
}
.m-checkout__step {
	display: none;
	pointer-events: 0;
	opacity: 0;
	transition: opacity 250ms ease-in-out;
}
.m-checkout__step.active {
	display: block;
	opacity: 1;
	pointer-events: all;
}
.m-checkout__step p {
	margin-bottom: 2rem;
}
@media (max-width: 767px) {
	.m-checkout__actions {
		flex-direction: column-reverse;
	}
}
@media (max-width: 767px) {
	.m-checkout__actions a, .m-checkout__actions input {
		margin-bottom: 3rem;
	}
}

#shippingaddress .m-addressfields__address {
	margin-top: 3rem;
}

#shippingaddress > .m-checkbox {
	padding-bottom: 1.5rem;
	margin-bottom: 3rem;
	border-bottom: 1px solid #d3d2cd;
}

.m-addressfields__title,
.m-delivery__title,
.m-survey__title,
.m-payment__title {
	font-size: 3.6rem;
	margin-bottom: 3rem;
}

.m-delivery__note,
.m-survey__note,
.m-payment__note {
	display: block;
	margin-bottom: 1rem;
}

.m-createaccount {
	background-color: #f3f0ee;
	padding: 2rem 3rem;
	margin-bottom: 2rem;
}
.m-createaccount input {
	margin-bottom: 0 !important;
	display: none;
}
.m-createaccount input.active {
	display: block;
}

.woocommerce-password-strength {
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-weight: 600;
	color: #81b91b;
}
.woocommerce-password-strength.short, .woocommerce-password-strength.bad {
	color: #ef1644;
}
.woocommerce-password-strength.good {
	color: #edab2f;
}

.m-payment__options,
.m-delivery__options {
	display: block;
	width: 100%;
	border-radius: 3px;
	margin-bottom: 3rem;
}
@media (min-width: 768px) {
	.m-payment__options,
	.m-delivery__options {
		border: 1px solid #f3f0ee;
	}
}
.m-payment__options li,
.m-delivery__options li {
	display: block;
	padding: 2rem 0;
	margin: 0;
}
@media (min-width: 768px) {
	.m-payment__options li,
	.m-delivery__options li {
		padding: 2rem 2.5rem;
	}
}
.m-payment__options li:not(:first-of-type),
.m-delivery__options li:not(:first-of-type) {
	border-top: 1px solid #f3f0ee;
}
.m-payment__options--none,
.m-delivery__options--none {
	font-size: 1.4rem;
	background-color: #f3f0ee;
	padding: 0.5rem 1rem;
	margin: 0.5rem;
	display: block;
	width: calc(100% - 1rem);
}

.m-delivery__option label {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	margin: 0 !important;
}

.m-payment__option > label {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
}
@media (max-width: 767px) {
	.m-payment__option > label {
		flex-direction: column;
	}
}
@media (max-width: 767px) {
	.m-payment__option span.title {
		line-height: 1.4 !important;
		width: 100%;
	}
}

.m-gateway__fields > p {
	display: block;
	background-color: #f3f0ee;
	padding: 1rem;
	margin-bottom: 2rem;
}
.m-gateway__fields > p:first-child {
	margin-top: 2rem;
}
.m-gateway__fields .woocommerce-paytrace-SavedPaymentMethods-wrapper {
	background-color: #f3f0ee;
	padding: 2rem 2.5rem;
	margin-bottom: 2rem;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}
.m-gateway__fields .woocommerce-paytrace-SavedPaymentMethods-wrapper li {
	padding: 0;
	border: 0;
}
.m-gateway__fields .woocommerce-paytrace-SavedPaymentMethods-wrapper div.clear {
	display: none;
}
.m-gateway__fields fieldset {
	display: block;
}
@media (min-width: 768px) {
	.m-gateway__fields fieldset {
		background-color: #fff;
		padding: 0;
	}
}
.m-gateway__fields fieldset > div {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media (min-width: 768px) {
	.m-gateway__fields fieldset > div {
		margin: 2rem 0;
		width: calc(100% - 6rem);
		margin-left: 3rem;
	}
}
.m-gateway__fields fieldset > div.clear {
	display: none;
}
.m-gateway__fields fieldset .form-row {
	display: inline-block;
	padding: 0;
}
.m-gateway__fields input {
	margin-bottom: 0rem !important;
}
.m-gateway__fields input[type=radio] + label::before,
.m-gateway__fields input[type=checkbox] + label::before {
	top: 0 !important;
}
.m-gateway__fields input[type=radio] + label::after,
.m-gateway__fields input[type=checkbox] + label::after {
	top: 4px !important;
}
.m-gateway__fields .form-row:not(:last-of-type) {
	margin-bottom: 3rem;
}
.m-gateway__fields .form-row {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.m-gateway__fields .form-row label {
	width: 100%;
	margin-bottom: 1rem !important;
}
.m-gateway__fields .form-row-wide {
	width: 100%;
}
@media (min-width: 768px) {
	.m-gateway__fields .form-row-first,
	.m-gateway__fields .form-row-last {
		width: 50%;
	}
}
.m-gateway__fields .form-row-first input,
.m-gateway__fields .form-row-last input {
	margin-bottom: 0 !important;
}
@media (min-width: 768px) {
	.m-gateway__fields .form-row-first {
		padding-right: 2rem !important;
	}
}
@media (min-width: 768px) {
	.m-gateway__fields .form-row-last {
		padding-left: 2rem !important;
	}
}

.m-cccards {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
@media (max-width: 767px) {
	.m-cccards {
		width: 100%;
		justify-content: flex-start;
	}
}

.m-cccard {
	margin-left: 1rem !important;
	display: block !important;
	width: 2.5rem;
	height: 2.5rem;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	font-size: 0;
	padding: 0 !important;
	border: 0 !important;
}
@media (max-width: 767px) {
	.m-cccard:first-of-type {
		margin-left: 0 !important;
	}
}
@media (min-width: 480px) {
	.m-cccard {
		width: 3.5rem;
	}
}
@media (min-width: 768px) {
	.m-cccard {
		width: 4.5rem;
		background-size: auto 100%;
	}
}
.m-cccard--VISA, .m-cccard--visa {
	background-image: url(../images/visa.svg);
}
.m-cccard--MC, .m-cccard--mc {
	background-image: url(../images/mastercard.svg);
}
.m-cccard--AMEX, .m-cccard--amex {
	background-image: url(../images/amex.svg);
}
.m-cccard--DISCOVER, .m-cccard--discover, .m-cccard--DISC, .m-cccard--disc {
	background-image: url(../images/discover.svg);
}
.m-cccard--DINERS, .m-cccard--diners {
	background-image: url(../images/diners.svg);
}
.m-cccard--JCB, .m-cccard--jcb {
	background-image: url(../images/jcb.svg);
}

.m-summarycart {
	grid-area: checkoutsummary;
	margin-bottom: 2rem;
}

.m-cartsummary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	background-color: #fff;
	border-radius: 3px;
	filter: drop-shadow(0 1rem 1rem rgba(0, 0, 0, 0.1));
	padding: 2rem;
	margin-bottom: 2rem;
	position: relative;
}
@media (min-width: 768px) {
	.m-cartsummary {
		padding: 3rem;
		margin-bottom: 4rem;
	}
}
.m-cartsummary::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.85);
	opacity: 0;
	transition: opacity 250ms ease-in-out;
	position: absolute;
	z-index: 5;
	pointer-events: none;
	top: 0;
	left: 0;
}
.m-cartsummary::after {
	content: "";
	position: absolute;
	z-index: 6;
	top: calc(50% - 1.5rem);
	left: calc(50% - 1.5rem);
	opacity: 0;
	transition: opacity 250ms ease-in-out;
	pointer-events: none;
}
.m-cartsummary.loading::before, .m-cartsummary.loading::after {
	opacity: 1;
	pointer-events: all;
}
.m-cartsummary__items {
	display: block;
	width: 100%;
}
.m-cartsummary__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #f3f0ee;
}
.m-cartsummary__autoship {
	display: block;
	width: 100%;
	padding: 0.5rem 1rem;
	border-radius: 3rem;
	text-align: center;
	background-color: #014675;
	text-transform: uppercase;
	margin-top: 1rem;
	font-size: 1.2rem;
	font-weight: 600;
	color: #fff;
}
.m-cartsummary__product {
	width: 30%;
}
.m-cartsummary__product\:name {
	font-size: 2rem;
}
.m-cartsummary__product\:data {
	width: 65%;
}
.m-cartsummary__product\:data dl {
	display: flex;
	width: 100%;
	justify-content: flex-start;
}
.m-cartsummary__product\:data dl dd {
	font-weight: 600;
}
.m-cartsummary__totals {
	display: block;
	width: 100%;
}
.m-cartsummary__totals li:not(:last-of-type) {
	margin-bottom: 1rem;
}
.m-cartsummary__totals dl {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 1.6rem;
}
.m-cartsummary__totals dd {
	font-weight: 600;
}
.m-cartsummary__totals .hide {
	display: none;
}
.m-cartsummary__totals .total {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #d3d2cd;
}
.m-cartsummary__totals .total dt {
	font-size: 1.8rem;
}
.m-cartsummary__totals .total dd {
	font-size: 2.4rem;
}

.m-coupon {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
	border-radius: 3px;
	filter: drop-shadow(0 1rem 1rem rgba(0, 0, 0, 0.1));
	padding: 2rem;
}
.m-coupon label {
	cursor: pointer;
}
.m-coupon input[type=radio],
.m-coupon input[type=checkbox] {
	display: none;
}
.m-coupon input[type=radio] + label,
.m-coupon input[type=checkbox] + label {
	display: block;
	width: 100%;
	padding-left: 2.5rem;
	position: relative;
	line-height: 1;
	margin-bottom: 1rem;
	font-size: 1.6rem;
}
.m-coupon input[type=radio] + label *,
.m-coupon input[type=checkbox] + label * {
	line-height: 1;
}
.m-coupon input[type=radio] + label::before, .m-coupon input[type=radio] + label::after,
.m-coupon input[type=checkbox] + label::before,
.m-coupon input[type=checkbox] + label::after {
	content: "";
	display: block;
	border-radius: 100%;
	position: absolute;
	transition: all 250ms ease-in-out;
}
.m-coupon input[type=radio] + label::before,
.m-coupon input[type=checkbox] + label::before {
	width: 1.5rem;
	height: 1.5rem;
	border: 1px solid #847e78;
	background-color: #fff;
	z-index: 1;
	top: 0;
	left: 0;
}
.m-coupon input[type=radio] + label::after,
.m-coupon input[type=checkbox] + label::after {
	width: 0.7rem;
	height: 0.7rem;
	background-color: #014675;
	top: 4px;
	left: 4px;
	z-index: 3;
	opacity: 0;
	transform: scale(0.8);
}
.m-coupon input[type=radio] + label:focus::before,
.m-coupon input[type=checkbox] + label:focus::before {
	border-color: #302d2b;
}
.m-coupon input[type=radio]:checked + label,
.m-coupon input[type=checkbox]:checked + label {
	font-weight: 600;
}
.m-coupon input[type=radio]:checked + label::before,
.m-coupon input[type=checkbox]:checked + label::before {
	border-color: #014675;
}
.m-coupon input[type=radio]:checked + label::after,
.m-coupon input[type=checkbox]:checked + label::after {
	opacity: 1;
	transform: scale(1);
}
.m-coupon input[type=checkbox] + label::before, .m-coupon input[type=checkbox] + label::after {
	border-radius: 0;
}
.m-coupon .payment_methods input[type=radio] + label::before,
.m-coupon .payment_methods input[type=checkbox] + label::before {
	top: 4px;
}
.m-coupon .payment_methods input[type=radio] + label::after,
.m-coupon .payment_methods input[type=checkbox] + label::after {
	top: 8px;
}
.m-coupon > p {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.m-coupon label {
	display: block;
	width: 100%;
	font-weight: 600;
	font-size: 1.4rem;
	margin-bottom: 1rem;
}
.m-coupon input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.m-coupon textarea {
	width: 100%;
	border: 0;
	border-bottom: 1px solid #d3d2cd;
	font-family: "poppins", arial, sans-serif;
	font-size: 1.6rem;
	padding: 5px 0;
	margin-bottom: 4rem;
}
.m-coupon input:not([type=submit]):not([type=radio]):not([type=checkbox])::placeholder,
.m-coupon textarea::placeholder {
	color: #aaa8a2;
	font-size: 1.4rem;
}
.m-coupon input:not([type=submit]):not([type=radio]):not([type=checkbox]).invalid,
.m-coupon textarea.invalid {
	border-color: #ef1644;
}
.m-coupon input:not([type=submit]):not([type=radio]):not([type=checkbox]):focus,
.m-coupon textarea:focus {
	border-color: #302d2b;
}
.m-coupon textarea {
	min-height: 10rem;
	resize: vertical;
	width: 100%;
	padding: 1rem;
	border: 1px solid #d3d2cd;
}
.m-coupon .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.m-coupon .alternate textarea {
	border: 1px solid #847e78;
	font-family: "poppins", arial, sans-serif;
	font-size: 1.6rem;
	padding: 1rem;
	margin-bottom: 4rem;
}
.m-coupon .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]):placeholder,
.m-coupon .alternate textarea:placeholder {
	color: #aaa8a2;
	font-size: 1.4rem;
}
.m-coupon .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]).invalid,
.m-coupon .alternate textarea.invalid {
	border-color: #ef1644;
}
.m-coupon .alternate input:not([type=submit]):not([type=radio]):not([type=checkbox]):focus,
.m-coupon .alternate textarea:focus {
	border-color: #302d2b;
}
.m-coupon .alternate .m-select {
	display: block;
	width: 100%;
	cursor: pointer;
	font-size: 1.6rem;
	color: #000;
	padding: 1rem 1.5rem 1rem 1rem;
	background-color: #fff;
	font-family: "poppins", arial, sans-serif;
	border: 1px solid #d3d2cd;
}
.m-coupon .alternate .m-select__parent {
	display: block;
	width: inherit;
	position: relative;
	margin-bottom: 4rem;
}
.m-coupon .alternate .m-select__parent::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 0.6rem solid #302d2b;
	border-left: 0.6rem solid transparent;
	border-right: 0.6rem solid transparent;
	border-bottom: 0rem solid transparent;
	pointer-events: none;
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	right: 1rem;
}
.m-coupon .alternate .m-select__parent--multi::after {
	content: none;
}
.m-coupon .alternate .m-select__parent--multi select {
	min-height: 10rem;
}
.m-coupon .alternate .m-select__parent.invalid {
	border-color: #ef1644;
}
.m-coupon .alternate .m-select__parent:focus {
	border-color: #302d2b;
}
.m-coupon .no-main-label > label {
	display: none !important;
}
.m-coupon .ginput_complex {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
.m-coupon .ginput_complex > * {
	width: 48%;
}
.m-coupon .ginput_complex label {
	font-size: 1.2rem;
	display: block;
	margin-top: 1rem;
	color: #aaa8a2;
	text-transform: uppercase;
	font-weight: 500;
	padding-left: 1rem;
}
.m-coupon .field_sublabel_above .ginput_complex label {
	display: block;
	width: 100%;
	font-weight: 600;
	font-size: 1.4rem;
	margin-top: 0;
	margin-bottom: 1rem;
	text-transform: none;
	padding-left: 0;
	color: #302d2b;
}
.m-coupon .gform_footer {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.m-coupon .gform_footer input {
	margin-right: 2rem;
}
.m-coupon .validation_error {
	display: block;
	color: #fff;
	background-color: #ef1644;
	padding: 5px 1rem;
	margin-bottom: 2rem;
	border-radius: 3px;
	font-size: 1.4rem;
}
.m-coupon .gfield_description.validation_message {
	display: block;
	color: #ef1644;
	padding: 5px 0;
	margin-top: -3rem;
	margin-bottom: 3rem;
	font-size: 1.4rem;
}
.m-coupon select {
	border-radius: 0;
}
.m-coupon .m-select {
	display: block;
	width: 100%;
	cursor: pointer;
	font-size: 1.7rem;
	color: #000;
	padding: 5px;
	background-color: #fff;
	font-family: "poppins", arial, sans-serif;
	border: 0;
	border-bottom: 1px solid #d3d2cd;
}
.m-coupon .m-select__parent {
	display: block;
	width: 100%;
	position: relative;
	margin-bottom: 4rem;
}
.m-coupon .m-select__parent::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 0.6rem solid #302d2b;
	border-left: 0.6rem solid transparent;
	border-right: 0.6rem solid transparent;
	border-bottom: 0rem solid transparent;
	pointer-events: none;
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	right: 1rem;
}
.m-coupon .m-select__parent--multi::after {
	content: none;
}
.m-coupon .m-select__parent--multi select {
	min-height: 10rem;
}
.m-coupon .m-select.invalid {
	border-color: #ef1644;
}
.m-coupon .m-select:focus {
	border-color: #302d2b;
}
@media (max-width: 479px) {
	.m-coupon {
		flex-direction: column;
	}
}
@media (min-width: 768px) {
	.m-coupon {
		padding: 3rem;
	}
}
.m-coupon .entry {
	width: calc(100% - 10rem);
}
@media (max-width: 479px) {
	.m-coupon .entry {
		width: 100%;
		margin-bottom: 1rem;
	}
}
.m-coupon .entry input {
	margin-bottom: 0 !important;
}
.m-coupon input[type=submit] {
	width: 8rem !important;
}
@media (max-width: 479px) {
	.m-coupon input[type=submit] {
		width: 100% !important;
	}
}

.m-confirmation {
	display: block;
}
.m-confirmation header,
.m-confirmation footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}
.m-confirmation footer .l-row {
	align-items: stretch;
}
.m-confirmation__status {
	display: block;
	width: 100%;
	text-align: center;
	margin-top: 3rem;
}
.m-confirmation__status b {
	text-transform: uppercase;
	background-color: #014675;
	color: #fff;
	padding: 0.5rem;
}
.m-confirmation__status--processing b {
	background-color: #edab2f;
}
.m-confirmation__status--on-hold b {
	background-color: #edab2f;
}
.m-confirmation__status--failed b, .m-confirmation__status--pending-payment b {
	background-color: #ef1644;
}
.m-confirmation__overview {
	display: flex;
	align-items: stretch;
	justify-content: center;
	margin: 2rem auto 6rem;
	border: 1px solid #d3d2cd;
	border-radius: 3px;
	background-color: #fff;
}
@media (max-width: 767px) {
	.m-confirmation__overview {
		flex-direction: column;
		width: 100%;
		padding: 1rem 0;
	}
}
.m-confirmation__overview dl {
	padding: 0.7rem 2rem;
}
@media (min-width: 768px) {
	.m-confirmation__overview dl {
		padding: 2rem;
	}
}
@media (min-width: 768px) {
	.m-confirmation__overview dl:not(:last-of-type) {
		border-right: 1px solid #d3d2cd;
	}
}
.m-confirmation__overview dl dt {
	font-weight: 600;
	text-transform: uppercase;
}
.m-confirmation__details {
	display: block;
	background-color: #fff;
}
@media (max-width: 767px) {
	.m-confirmation__details {
		width: 100%;
	}
}
@media (min-width: 768px) {
	.m-confirmation__details {
		margin-bottom: 6rem;
	}
}
.m-confirmation__details h2 {
	font-size: 8rem;
	text-align: center;
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-family: "epicursive", arial, sans-serif;
}
.m-confirmation__details li {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	border-top: 1px solid #d3d2cd;
	border-left: 1px solid #d3d2cd;
	border-right: 1px solid #d3d2cd;
}
.m-confirmation__details li:first-of-type {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}
.m-confirmation__details li:last-of-type {
	border-bottom: 1px solid #d3d2cd;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}
.m-confirmation__details\:product {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 2.5rem;
}
.m-confirmation__details\:product picture, .m-confirmation__details\:product img {
	width: 20%;
}
.m-confirmation__details\:product picture img {
	width: 100%;
}
.m-confirmation__details\:product__data {
	width: 80%;
	padding-left: 2rem;
}
.m-confirmation__details\:product__data h3 {
	display: block;
	width: 100%;
	font-size: 2.6rem;
	margin-bottom: 1rem;
}
@media (min-width: 768px) {
	.m-confirmation__details\:product__data h3 {
		font-size: 2.8rem;
	}
}
.m-confirmation__details\:product__price {
	display: block;
	width: 100%;
	font-size: 1.8rem;
	font-weight: 600;
}
.m-confirmation__details\:product__autoship {
	display: block;
	width: 100%;
}
.m-confirmation__details li:not(.product) {
	justify-content: center;
	background-color: #f3f0ee;
}
@media (max-width: 767px) {
	.m-confirmation__details li:not(.product) {
		flex-direction: column;
		padding: 1rem 0;
	}
}
.m-confirmation__details li:not(.product) dl {
	width: 100%;
	padding: 0.7rem 2rem;
}
@media (min-width: 768px) {
	.m-confirmation__details li:not(.product) dl {
		width: 25%;
		padding: 2rem;
	}
}
@media (min-width: 768px) {
	.m-confirmation__details li:not(.product) dl:not(:last-of-type) {
		border-right: 1px solid #d3d2cd;
	}
}
.m-confirmation__details li:not(.product) dl dt {
	font-weight: 600;
	text-transform: uppercase;
}

.m-address {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	border: 1px solid #d3d2cd;
	padding: 1.5rem;
	background-color: #fff;
}
.m-address:nth-child(1) {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}
.m-address:nth-child(2) {
	border-left: 0;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}
.m-address h2 {
	width: 100%;
	margin-bottom: 1rem;
	font-size: 6rem;
	font-family: "epicursive", arial, sans-serif;
}
.m-address address {
	width: 100%;
}
.m-address span {
	display: block;
	width: 100%;
}

.u-col--border-right {
	border-right: 0.1rem solid #9e9c95;
	padding-right: 5%;
}

.u-p-t--none {
	padding-top: 0 !important;
}
.u-p-t--sm {
	padding-top: 2.5rem !important;
}
@media (min-width: 768px) {
	.u-p-t--sm {
		padding-top: 5rem !important;
	}
}
.u-p-t--md {
	padding-top: 5rem !important;
}
@media (min-width: 768px) {
	.u-p-t--md {
		padding-top: 10rem !important;
	}
}
.u-p-t--lg {
	padding-top: 8rem !important;
}
@media (min-width: 768px) {
	.u-p-t--lg {
		padding-top: 16rem !important;
	}
}
.u-p-t--xl {
	padding-top: 11rem !important;
}
@media (min-width: 768px) {
	.u-p-t--xl {
		padding-top: 22rem !important;
	}
}

.u-p-b--none {
	padding-bottom: 0 !important;
}
.u-p-b--sm {
	padding-bottom: 2.5rem !important;
}
@media (min-width: 768px) {
	.u-p-b--sm {
		padding-bottom: 5rem !important;
	}
}
.u-p-b--md {
	padding-bottom: 5rem !important;
}
@media (min-width: 768px) {
	.u-p-b--md {
		padding-bottom: 10rem !important;
	}
}
.u-p-b--lg {
	padding-bottom: 8rem !important;
}
@media (min-width: 768px) {
	.u-p-b--lg {
		padding-bottom: 16rem !important;
	}
}
.u-p-b--xl {
	padding-bottom: 11rem !important;
}
@media (min-width: 768px) {
	.u-p-b--xl {
		padding-bottom: 35rem !important;
	}
}

@media (min-width: 768px) {
	.u-o-t--sm {
		margin-top: -4rem;
	}
}
.u-o-t--md {
	margin-top: -2rem;
}
@media (min-width: 768px) {
	.u-o-t--md {
		margin-top: -8rem;
	}
}
.u-o-t--lg {
	margin-top: -4rem;
}
@media (min-width: 768px) {
	.u-o-t--lg {
		margin-top: -12rem;
	}
}
.u-o-t--xl {
	margin-top: -9rem;
}
@media (min-width: 768px) {
	.u-o-t--xl {
		margin-top: -16rem;
	}
}
.u-o-t--sxl {
	margin-top: -2rem;
}
@media (min-width: 768px) {
	.u-o-t--sxl {
		margin-top: -50rem;
	}
}

.u-angled-bg {
	position: relative;
}
.u-angled-bg:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #014675, #014675) !important;
	transform: skew(0, -3deg) translate(-50%, -50%);
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
}

.u-warning {
	color: #ef1644;
}

.u-white {
	color: #fff;
}
.u-white h1,
.u-white h2,
.u-white h3,
.u-white h4,
.u-white h5,
.u-white h6,
.u-white p {
	color: #fff;
}

.u-100 {
	width: 100%;
}

.u-bg-img--top {
	background-position: center top;
}

.u-bg-img {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
@media (max-width: 767px) {
	.u-bg-img {
		background-size: 165% auto;
		background-position: right top;
		padding-top: 56vw !important;
	}
}
@media (max-width: 1023px) {
	.u-bg-img {
		background-size: 237vw auto;
		background-position: 67% top;
		padding-top: 0;
	}
}
.u-bg-img::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vw;
	background: linear-gradient(0deg, #fff, #fff 30%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0)) !important;
}
@media (max-width: 1023px) {
	.u-bg-img::before {
		height: 100vw;
	}
}
@media (min-width: 1024px) {
	.u-bg-img::before {
		display: none;
	}
}

.u-bg--g-blue-d-angled {
	z-index: 10;
}
.u-bg--g-blue-d-angled .m-plax img {
	width: 20rem;
	height: 40rem;
	max-width: none;
	max-height: none;
	display: block;
}
.u-bg--g-blue-d-angled .m-plax--left {
	left: calc(50% - 570px - 10rem);
	z-index: 40;
}
.u-bg--g-blue-d-angled .m-plax--right {
	right: calc(50% - 570px - 10rem);
	z-index: 40;
}
.u-bg--g-blue-d-angled .l-wrapper {
	position: relative;
	color: #fff;
	background: linear-gradient(135deg, #014675, #014675) !important;
	padding: 8rem 0;
	clip-path: polygon(0 11%, 100% 0%, 100% 90%, 0% 100%);
}
@media screen and (max-width: 767px) {
	.u-bg--g-blue-d-angled .l-wrapper {
		padding-bottom: 50%;
	}
}
@media screen and (max-width: 630px) {
	.u-bg--g-blue-d-angled .l-wrapper {
		padding-bottom: 120%;
	}
}
.u-bg--g-blue-d-angled .l-wrapper.bg-image--right::after {
	content: "";
	background-image: var(--bg-image);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 50%;
	display: block;
	z-index: 2;
	background-size: cover;
	background-position: center right;
	mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 10%);
}
@media screen and (max-width: 767px) {
	.u-bg--g-blue-d-angled .l-wrapper.bg-image--right::after {
		width: 100%;
		height: 50%;
		top: inherit;
		left: 0;
		mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 10%);
		background-position: bottom center;
	}
}
.u-bg--g-blue-d-angled .l-wrapper .l-row {
	position: relative;
	z-index: 1;
}
@media (min-width: 768px) {
	.u-bg--g-blue-d-angled .l-wrapper .l-row {
		padding: 2rem 9%;
	}
}
.u-bg--g-blue-d-angled .l-wrapper big strong {
	color: #edab2f;
}
.u-bg--l-blue {
	background-color: #CCE3FA;
}
.u-bg--blue-d-angled::before {
	content: "";
	width: 100%;
	height: 100%;
	transform: skewY(-5deg);
	background-color: #014675;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.u-bg--blue-d-angled .m-contentblock {
	color: #fff;
}
.u-bg--l-blue-d-angled::before {
	content: "";
	width: 100%;
	height: 100%;
	transform: skewY(-5deg);
	background-color: #e8f0ff;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.u-bg--l-blue-d-angled .m-contentblock {
	color: #302d2b;
}

.u-5-pillars {
	color: #edab2f;
	align-items: center;
}
@media (min-width: 768px) {
	.u-5-pillars {
		font-size: 5rem;
		display: flex;
	}
}
.u-5-pillars span {
	margin-right: 0.5rem;
	display: inline-block;
}
@media (min-width: 768px) {
	.u-5-pillars span {
		margin-right: 1rem;
		line-height: 0.7;
		font-size: 12rem;
		font-weight: 300;
	}
}

.u-circle-image-collage .m-image {
	position: absolute;
}
.u-circle-image-collage .m-image:nth-of-type(1) {
	width: 100%;
	position: relative;
	margin-top: 10%;
	z-index: 5;
}
.u-circle-image-collage .m-image:nth-of-type(2) {
	width: 46%;
	left: -7%;
	top: 73%;
	z-index: 7;
}
.u-circle-image-collage .m-image:nth-of-type(3) {
	width: 28%;
	left: -4%;
	top: 2%;
	z-index: 3;
}
.u-circle-image-collage .m-image:nth-of-type(4) {
	width: 31%;
	left: 75%;
	top: 73%;
	z-index: 8;
}
.u-circle-image-collage .m-image:nth-of-type(5) {
	width: 18%;
	left: 83%;
	top: -3%;
	z-index: 8;
}

.u-content-below .l-wrapper {
	z-index: 2;
}

.u-notice {
	border-radius: 0.5rem;
	padding: 1.4rem 2rem;
	line-height: 1.4;
	background: #f3f0ee;
	color: #014675;
}

@media (max-width: 767px) {
	.u-p-col--0 .l-col:not(:last-child) {
		margin-bottom: 0.2rem;
	}
}

@media (max-width: 767px) {
	.u-reverse .l-row {
		flex-direction: column-reverse;
	}
}
@media (max-width: 767px) {
	.u-reverse .l-row .l-col {
		margin-bottom: 0;
	}
}

.z--1 {
	z-index: 1;
}
.z--2 {
	z-index: 2;
}
.z--3 {
	z-index: 3;
}
.z--4 {
	z-index: 4;
}
.z--5 {
	z-index: 5;
}
.z--6 {
	z-index: 6;
}
.z--7 {
	z-index: 7;
}
.z--8 {
	z-index: 8;
}
.z--9 {
	z-index: 9;
}
.z--10 {
	z-index: 10;
}

/*# sourceMappingURL=core.css.map */