/*
|--------------------------------------------------------------------------
| Global
|--------------------------------------------------------------------------
*/
body {
	background-color: #DFEFDB;
}

main {
    background: #FFF;
}

.main-inner {
    border-top: 1px solid #DFEFDB;
}

.font-primary {
	font-family: "hanken-grotesk", sans-serif;
}

.font-secondary {
	font-family: 'Arial', sans-serif;
}

.font-tertiary {
	font-family: 'Arial', sans-serif;
}

.bg-primary {
	background-color: #006845;
}

.bg-secondary {
	background-color: #DFEFDB;
}

.bg-tertiary {
	background-color: #00AF66;
}

.bg-illustration {
	background: url(/images/style/basic/bg-plants-01.png) no-repeat 110% 50%;
}
.bg-img-primary, .bg-img-secondary {
	background-position: center;
	background-size: cover; 
}
.bg-img-primary {
	background-image: url(/images/style/basic/bg-image-primary.jpg);
}
.bg-img-secondary {
	background-image: url(/images/style/basic/bg-image-secondary.jpg);
}

.bg-primary-yellow {
	background-color: #F1EFB7;
}
.bg-primary-green {
	background-color: #DFEFDB;
}
.bg-secondary-pink {
	background-color: #F7CED7;
}
.bg-secondary-pink-light {
	background-color: #FCEAF3;
}
.bg-secondary-blue {
	background-color: #D5EBEE;
}
.bg-secondary-yellow {
	background-color: #FCEEA8;
}

.font-accent-primary,
.font-accent-primary.content,
.font-accent-primary.content p,
.font-accent-primary .content,
.font-accent-primary .content p { 
	color: #000;
}

.font-accent-secondary,
.font-accent-secondary.content,
.font-accent-secondary.content p,
.font-accent-secondary .content,
.font-accent-secondary .content p {
	color: #fff;
}

.category-heading .content a {
	text-decoration: underline;
	color: #fff;
}

.hidden-image img {
	display: block;
	width: 100%;
	visibility: hidden;
}

/*
|--------------------------------------------------------------------------
| Global > Typography
|--------------------------------------------------------------------------
*/
body, input, textarea {
	font-family: "hanken-grotesk", sans-serif;
	font-size: 16px;
	line-height: 1.2;
	color: #3D3935;
}

h1, h2, h3, h4, h5, h6, .h1-style {
	font-family: "larken", serif;
	margin: 0 0 10px 0;
	font-weight: 400;
	color: #3D3935;
}

h1, .h1-style {
	font-size: 48px;
}

h2 {
	font-size: 42px;
}

h3 {
	font-size: 36px;
}

h4 {
	font-size: 30px;
}

h5 {
	font-size: 24px;
}

h6 {
	font-size: 18px;
}

p, ul, ol {
	line-height: 20px;
	margin: 0 0 15px 0;
}

ul, ol {
	margin-left:20px;
}
ul {
	list-style-type: square;
}

li {
	margin:0 0 2px 0;
}

/*
|--------------------------------------------------------------------------
| Global > Links
|--------------------------------------------------------------------------
*/
a {
	color: #3D3935;
	display: inline-block;
	-webkit-transition: background .3s ease, border .3s ease, opacity .3s ease, color .3s ease;
	transition: background .3s ease, border .3s ease, opacity .3s ease, color .3s ease;
	text-decoration: none;
}

a:hover {
	color: #006845;
}

/*
|--------------------------------------------------------------------------
| Global > Inputs
|--------------------------------------------------------------------------
*/
.input-grid {
	margin: 0 -3px 0 0;
}
.input-grid:not(:last-child) {
    margin-bottom: 22px;
}

.input-grid .input {
	padding: 0 3px 0 0;
}

.input {
	position: relative;
    clear: both;
	margin: 0 0 3px 0;
}

.input-grid.inputs-space-10 {
	margin: 0 -10px 0 0;
}
.input-grid.inputs-space-10 .input {
	padding: 0 10px 0 0;
}
.input-grid.inputs-space-10 .input {
	padding: 0 10px 0 0;
	margin: 0 0 10px 0;
}

.input-label {
	position: absolute;
	top: 9px;
	left: 10px;
	font-size: 12px;
	pointer-events: none;
}

.input input[type="text"],
.input input[type="email"],
.input input[type="search"],
.input input[type="tel"],
.input input[type="password"],
.input input[type="number"],
.input textarea,
.input-file-dummy,
.input-text-dummy {
	width: 100%;
	padding: 25px 8px 5px 8px;
	color: #2b2b2b;
	border: 1px solid #DFEFDB;
	resize: none;
	font-family: "hanken-grotesk", sans-serif;
}

.input.input-rounded input[type="text"],
.input.input-rounded input[type="email"],
.input.input-rounded input[type="search"],
.input.input-rounded input[type="tel"],
.input.input-rounded input[type="password"],
.input.input-rounded input[type="number"],
.input.input-rounded textarea {
	border-radius: 4px;
}

.input.input-roundish input[type="text"],
.input.input-roundish input[type="email"],
.input.input-roundish input[type="search"],
.input.input-roundish input[type="tel"],
.input.input-roundish input[type="password"],
.input.input-roundish input[type="number"],
.input.input-roundish textarea {
	border-radius: 12px 1px 12px 1px;
}

.input-text-dummy {
	padding: 0;
    height: 48px;
    background: #fff;
}

#card-element {
	padding: 12px 8px;
	height: auto;
}

.input-borderless .input-label{
	left:8px;
}

.input-borderless input[type="text"],
.input-borderless input[type="email"],
.input-borderless input[type="search"],
.input-borderless input[type="tel"],
.input-borderless input[type="number"],
.input-borderless input[type="password"],
.input-borderless textarea {
	border-color: #FFF;
	background-color: #fff;
}

.input-borderless select {
	border: 0;
}

.input textarea {
	min-height: 120px;
}

.input input[type="text"]:focus,
.input input[type="email"]:focus,
.input input[type="search"]:focus,
.input input[type="tel"]:focus,
.input input[type="number"]:focus,
.input input[type="password"]:focus,
.input textarea:focus,
.input .braintree-hosted-fields-focused,
.input .stripe-hosted-fields-focused,
.input .truevo-hosted-field-isFocused,
.input input[type="text"]:focus.validate-border,
.input input[type="email"]:focus.validate-border,
.input input[type="search"]:focus.validate-border,
.input input[type="tel"]:focus.validate-border,
.input input[type="number"]:focus.validate-border,
.input input[type="password"]:focus.validate-border,
.input textarea:focus.validate-border {
	border-color: #006845!important;
}

.input input[type="text"]:focus ~ label,
.input input[type="email"]:focus ~ label,
.input input[type="search"]:focus ~ label,
.input input[type="tel"]:focus ~ label,
.input input[type="number"]:focus ~ label,
.input input[type="password"]:focus ~ label,
.input textarea:focus ~ label,
.input .braintree-hosted-fields-focused ~ label,
.input .truevo-hosted-field-isFocused ~ label {
	color: #006845;
}

.input .braintree-hosted-fields-invalid {
	border-color: #b62f3f!important;
}
.input .braintree-hosted-fields-invalid ~ label {
	color: #b62f3f;
}

.input.button-inline {
	display: flex;
}

.input.button-inline > input:not(input[type="submit"]) {
	flex: 1;
}

.input.button-inline .button {
	display: flex;
    align-items: center;
	padding: 13px 16px 11px;
	border-radius: 0 4px 4px 0;
}

.input.label-inline {
    display: flex;
}
.label-inline *:not(.input-label) {
    order: 2;
}
.label-inline .input-label {
	order: 1;
    position: relative;
    top: unset; left: unset;
    font-size: 16px;
    font-weight: 500;
    min-width: max-content;
    color: #3D3935;
    background-color: #DFEFDB;
    padding: 13px 12px 10px;
}
.label-inline.input-rounded .input-label {
	border-radius: 8px 0 0 0;
}
.label-inline > input {
    order: 2;
}

.input.label-inline input[type="text"],
.input.label-inline input[type="email"],
.input.label-inline input[type="search"],
.input.label-inline input[type="tel"],
.input.label-inline input[type="number"],
.input.label-inline input[type="password"],
.input.label-inline textarea {
	padding: 13px 12px 9px;
}

.input.label-inline.input-rounded input[type="text"],
.input.label-inline.input-rounded input[type="email"],
.input.label-inline.input-rounded input[type="search"],
.input.label-inline.input-rounded input[type="tel"],
.input.label-inline.input-rounded input[type="number"],
.input.label-inline.input-rounded input[type="password"],
.input.label-inline.input-rounded textarea {
	padding: 13px 12px 9px;
	border-radius: 0 0 12px 0;
}
.input.input-roundish input[type="text"],
.input.input-roundish input[type="email"],
.input.input-roundish input[type="search"],
.input.input-roundish input[type="tel"],
.input.input-roundish input[type="number"],
.input.input-roundish input[type="password"],
.input.input-roundish textarea {
	padding: 13px 12px 9px;
	border-radius: 12px 0;
}
.input.input-roundish .select2-selection--single {
	border-radius: 12px 0;
}
.input.input-roundish .select2-selection--single .select2-selection__rendered {
	padding: 13px 12px 9px;
}
.input.label-inline.input-roundish .select2-selection--single {
	border-radius: 0 0 12px 0;
}

.input-qty {
	min-width:110px;
	margin-bottom: 25px;
}
.label-inline.input-roundish > label {
    border-radius: 8px 0 0 0!important;
}
.label-inline.input-roundish > input {
    border-radius: 0 0 8px 0!important;
}

.input-group-label {
	width: 100%;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.input-time-selects {
    display: flex;
    flex-wrap: wrap;
	margin-bottom: -5px;
}
.input + .input-time-selects {
    margin-top: 14px;
}
.input-time-selects + .input {
    margin-top: 12px;
}
.input-time {
    width: max-content;
	margin-bottom: 5px;
}
.input-time:not(:last-child) {
    margin-right: 10px;
}
.select-arrow-border .select2-container--default .select2-selection--single .select2-selection__arrow {
    border-left: 1px solid #EDEDED;
}
.select-group.input .select2-container--default .select2-selection--single .select2-selection__rendered, 
.input .input-time .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding: 12px 50px 8px 10px;
} 

.input-grid-bg {
    padding: 30px;
    background-color: #DFEFDB;
    border-radius: 12px 0;
}

.input-w-sm, .input-w-md, .input-w-lg {
	max-width: 100%;
}
.input-w-sm {
	width: 235px;
}
.input-w-md {
	width: 500px;
}
.input-w-lg {
	width: 800px;
}
.input-sm {
    width: max-content;
    max-width: 100%;
}
.input.input-sm input[type="text"],
.input.input-sm input[type="email"],
.input.input-sm input[type="search"],
.input.input-sm input[type="tel"],
.input.input-sm input[type="number"],
.input.input-sm input[type="password"] {
    min-height: 38px;
    padding: 8px 10px 5px;
}

.input-grid--text {
    font-size: 14px;
}
.input-grid--text:not(:first-child) {
    margin-top: 13px;
}
.input-grid--text > * {
	line-height: 1.2;
}
.input-grid--text > *:not(:last-child) {
	margin-bottom: 10px;
}

.form-submit {
    margin-top: 14px;
}
.form-submit > .button {
	width: 100%;
	padding: 17px 20px 13px;
}

.textarea {
	position: relative;
}

.input textarea {
	padding-top: 30px;
}



.input textarea:focus ~ .input-label {
	border-color: #2ab6f7;
}

.input textarea.validate-border ~ .input-label {
	border-color: #b62f3f;
    -webkit-animation-name: shake;
    animation-name: shake;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.input textarea.validate-border:focus {
	border-color: #b62f3f!important;
}

.required-fields {
	color: #b5121b;
}

.select2-basic--container {
	border: 1px solid #e7e7e7!important;
}

.select2-container--open .select2-basic--container {
	border: 1px solid #006845!important;
}

.select2-basic--borderless,
.select2-basic--borderless.select2-basic--container,
.select2-basic--borderless.select2-basic--dropdown {
	border: 0 !important;
}

.select2-basic--container.select2-selection--single .select2-selection__rendered {
	padding: 22px 8px 6px 8px;
}

.select2-basic--dropdown {
	border: 1px solid #006845!important;
	border-top: none!important;
}

.select2-dropdown--above {
	border-bottom: none!important;
	border-top: 1px solid #006845!important;
}

.select2-container--open ~ label {
	color: #006845;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
	width:12px; height: 7px;
	background-image: url('data:image/svg+xml,<svg width="12" height="7" viewBox="0 0 12 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 6.37502C5.92623 6.37592 5.85308 6.36137 5.78527 6.33231C5.71746 6.30325 5.65648 6.26031 5.60625 6.20627L0.54375 1.14377C0.31875 0.91877 0.31875 0.57002 0.54375 0.34502C0.76875 0.12002 1.1175 0.12002 1.3425 0.34502L6.01125 5.01377L10.6687 0.35627C10.8937 0.13127 11.2425 0.13127 11.4675 0.35627C11.6925 0.58127 11.6925 0.93002 11.4675 1.15502L6.405 6.21752C6.2925 6.33002 6.14625 6.38627 6.01125 6.38627L6 6.37502Z" fill="%233D3935"/></svg>');
	background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    top: unset; left: unset;
    border: 0 !important;
}

.label-inline .select2-basic--container.select2-selection--single .select2-selection__rendered {
	padding: 8px 30px 8px 60px;
}

.label-inline .select2-basic--container {
	height:36px;
}

.input .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000000;
    font-size: 16px;
	padding: 25px 50px 5px 10px;
}

.input.label-inline .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 12px 42px 12px 12px;
}

.select2.validate-border + .select2-container--default .select2-selection--single, 
.select2.validate-border + .select2-container--default .select2-selection--single .select2-selection__arrow {
    border-color: #b62f3f !important;
	-webkit-animation-name: shake;
	animation-name: shake;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.input-qty.label-inline .input-label {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
}

/* File upload input */
.no-js .input-file > input[type="file"] {
	display: block;
}

.input-file > input[type="file"] {
	display: none;
}

/* No labels */
.input.label-none input[type="text"],
.input.label-none input[type="email"],
.input.label-none input[type="search"],
.input.label-none input[type="tel"],
.input.label-none input[type="number"],
.input.label-none input[type="password"],
.input.label-none textarea {
	padding: 9px 8px;
}
.label-none .select2-basic--container.select2-selection--single .select2-selection__rendered {
	padding: 11px 8px 8px;
}
.input-grid .input.label-none {
	padding: 0 3px 0 0;
}
.input.label-none {
	margin: 0 0 12px 0;
}
.input.label-none label {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.input-placeholder input {
	flex: 1;
	border-left: 0!important;
}
.input-placeholder--text {
    align-content: center;
    padding: 5px 0 5px 8px;
    background-color: #FFF;
    border: 1px solid #EAEAEA;
    border-right: 0;
    font-size: 13px;
}
.input input[type="text"]:focus ~ .input-placeholder--text,
.input input[type="email"]:focus ~ .input-placeholder--text,
.input input[type="search"]:focus ~ .input-placeholder--text,
.input input[type="tel"]:focus ~ .input-placeholder--text,
.input input[type="number"]:focus ~ .input-placeholder--text,
.input input[type="password"]:focus ~ .input-placeholder--text,
.input textarea:focus ~ .input-placeholder--text,
.input .braintree-hosted-fields-focused ~ .input-placeholder--text,
.input .truevo-hosted-field-isFocused ~ .input-placeholder--text {
	color: #006845;
	border-color: #006845;
}

/*Input Placeholders*/
::-webkit-input-placeholder { /* WebKit browsers */
	/* replace this with desired color */
	opacity: 1;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	/* replace this with desired color */
	opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    /* replace this with desired color */
	opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
    /* replace this with desired color */
	opacity: 1;
}

.input-grid--labelled {
    margin: 0 -3px 0 0;
}
.input-grid.input-grid--labelled:not(:last-child) {
	margin-bottom: 0;
}
.input-grid--labelled + .input-grid--labelled {
    margin-top: 24px;
}

/*
|--------------------------------------------------------------------------
| Global > Checkboxes
|--------------------------------------------------------------------------
*/
.input-checkbox {
	margin-top: 10px;
}
.checkbox {
	display: inline-block;
	position: relative;
	background-color: #fff;
	width: 18px;
	height: 18px;
	border: 2px solid #c0bfbf;
	border-radius: 2px;
	margin-bottom:-4px;
	cursor: pointer;
}

.checkbox:after {
	content: '';
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background: url(/images/style/basic/icon-tick-black.png) no-repeat 1px 2px #fff;
	background-position: center;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: transform 150ms ease;
	transition: transform 150ms ease;
}

.checked .checkbox:after {
	-webkit-transform: scale(1);
	transform: scale(1);
	transition: transform 300ms ease;
}

.checkbox-label {
	color: #2d2d2d;
	font-size: 13px;
	cursor: pointer;
	padding: 0 0 0 6px;
  -webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	 -khtml-user-select: none; /* Konqueror HTML */
	   -moz-user-select: none; /* Firefox */
		-ms-user-select: none; /* Internet Explorer/Edge */
			user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}

.checkbox-label .form-note {
	display:initial;
}

.checkbox-with--icon {
	display: flex;
	align-items: center;
}

.checkbox-with--icon.input {
	margin-bottom: 0;
}

.checkbox-with--icon .checkbox-label {
	font-size: 18px;
	line-height: 1;
}

.checkout-gifts {
	background-color: #f6f6f6;
	padding: 20px;
}

.gift-order--icon {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}

.gift-order--icon svg {
	width: 22px;height: 22px;
	fill: #69aa64;
}

.checkout-gifts #gift-form {
	margin-top: 10px;
}

/*
|--------------------------------------------------------------------------
| Global > Buttons
|--------------------------------------------------------------------------
*/
.button {
	display: inline-block;
	padding: 13px 20px 9px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.08em;
	color: #fff;
	text-transform: uppercase;
	background-color: #006845;
	-webkit-transition: .3s all ease-out;
	transition: .3s all ease-out;
	cursor: pointer;
	outline: none;
	text-align:center;
	line-height: inherit;
	border-radius: 4px 0 4px 0;
	font-family: "hanken-grotesk", sans-serif;
}
.button:hover {
	background-color: #014c33;
	color: #fff;
}

.button-secondary {
	background-color: #00AF66;
}
.button-secondary:hover {
	background-color: #009959;
}
.button-light {
	background-color: #DFEFDB;
	color: #006845!important;
}
.button-light:hover {
	background-color: #cad8c7;
}

.button-outline {
    background-color: transparent;
    color: #006845;
    border: 1px solid #006845;
    padding: 8px 16px 4px;
    width: max-content; max-width: 100%;
    min-height: 39px;
}
.button-outline:hover {
	background-color: #006845;
	color: #FFF;
}
.button-outline:hover svg path {
	fill: #FFF;
}

.button-outline.button-secondary {
	color: #00AF66;
	border-color: #00AF66;
}
.button-outline.button-secondary:hover {
	background-color: #00AF66;
	color: #FFF;
}

.button-yellow {
	background-color: #F1EFB7;
	color: #3D3935!important;
}
.button-yellow:hover {
	background-color: #d2d09b;
}

.button-secondary-yellow {
	background-color: #E1E000;
	color: #3D3935!important;
}
.button-secondary-yellow:hover {
	background-color: #c2c101;
}
.button-secondary-yellow svg path {
	fill: #3D3935!important;
}

.button-dark {
	background-color: #3D3935;
}
.button-dark:hover {
	background-color: #014c33;
}

.button-icon {
	display: flex;
    align-items: center;
}
.button-icon svg {
	margin: -5px 10px 0 0;
}
.button-icon svg path {
	-webkit-transition: ease-in-out .2s;
	transition: ease-in-out .2s;
}
.button svg {
    margin-right: 5px;
}

.button-white {
	background-color: #FFF;
	color: #006845;
}

/* Button size modifiers */
.button-small {
    padding: 8px 12px 6px 12px;
	font-size: 12px;
}
.button-small svg {
	margin-bottom: -1px;
}

.button-xsmall,
.button-xsmall-wide {
	padding: 10px 12px 8px;
	font-size: 11px;
	font-weight: normal;
	line-height: normal;
}

.button-xsmall-wide {
	padding: 8px 20px;
}

.button-large {
	padding: 16px 40px 13px 40px; 
	font-size: 18px;
}

.button-block {
	display: block;
	/* <buttons> need width: 100% to actually fill all the space */
    width: 100%;
}

.button-rounded {
	border-radius: 4px;
}

/* Disabled Button */
.button:disabled {
    background: #8C8C8C;
    cursor: not-allowed;
}

/* Buttons displaying a spinner */
.button-loading {
	position: relative;
    cursor: wait;
}

.button-loading,
.button-loading span {
    color: transparent !important;
	-webkit-transition: 0;
	-moz-transition: 0;
	transition: 0;
}


.button-loading svg {
	display: none;
}

.button-loading::before {
	content: "";
	position: absolute;
	top: calc(50% - 8px);
	left: calc(50% - 8px);
	border: 2px solid #fff;
	border-left-color: #dcdcdc;
	border-radius: 50%;
	-webkit-animation: load8 1.1s infinite linear;
	animation: load8 1.1s infinite linear;
	height: 16px;
	width: 16px;
}

.button-green {
	background-color: #249a4b;
}

.button-green:hover {
	background-color: #1a803b;
}

.button-grey {
	background-color: #B6B6B6;
}

.button-grey:hover {
	background-color: #B6B6B6;
}

.button.button-paypal:hover {
	box-shadow: inset 0 0 100px 100px rgba(0, 0, 0, 0.05);
}

.button.button-paypal-gold {
	background-color: #ffc439;
}

.button.button-paypal-silver {
	background-color: #eee;
}

.button-border {
    border-radius: 4px;
}

.button-text-unset {
	text-transform: unset;
}

/*
|--------------------------------------------------------------------------
| Global > Form Styles
|--------------------------------------------------------------------------
*/
.form-border {
    padding: 35px;
    border: 1px solid #006845;
    border-radius: 12px 0;
}
.form-title {
    font-size: 24px;
    color: #006845;
    font-family: 'larken', serif;
    margin-bottom: 20px;
}
.input-grid--title {
	color: #006845;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}
.input-grid + .input-grid .input-grid--title {
    margin-top: 35px;
}

/*
|--------------------------------------------------------------------------
| Global > Magnific Override
|--------------------------------------------------------------------------
*/
.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
    border: none;
}
.mfp-arrow {
	background-position: center!important;
	background-repeat: no-repeat!important;
}
.mfp-arrow-left {
	background-image: url('data:image/svg+xml,<svg width="40" height="22" viewBox="0 0 40 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.264365 11.6408L9.35507 20.7315C9.68162 21.1129 10.2555 21.1573 10.6368 20.8307C11.0182 20.5041 11.0626 19.9302 10.736 19.5489C10.7055 19.5134 10.6724 19.4802 10.6368 19.4498L3.10064 11.9044L39.091 11.9044C39.593 11.9044 40 11.4974 40 10.9953C40 10.4932 39.593 10.0863 39.091 10.0863L3.10064 10.0863L10.6368 2.55006C11.0182 2.22351 11.0626 1.64961 10.736 1.26829C10.4093 0.886965 9.83552 0.842515 9.4542 1.16915C9.41866 1.19962 9.38545 1.23274 9.35506 1.26829L0.264285 10.3591C-0.0881319 10.7135 -0.088128 11.2862 0.264365 11.6408Z" fill="white"/></svg>')!important;
}
.mfp-arrow-right {
	background-image: url('data:image/svg+xml,<svg width="40" height="22" viewBox="0 0 40 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M39.7356 10.3592L30.6449 1.26846C30.3184 0.887141 29.7445 0.842689 29.3632 1.16932C28.9818 1.49588 28.9374 2.06978 29.264 2.4511C29.2945 2.48664 29.3276 2.51985 29.3632 2.55024L36.8994 10.0956H0.909047C0.407024 10.0956 0 10.5026 0 11.0047C0 11.5068 0.407024 11.9137 0.909047 11.9137H36.8994L29.3632 19.4499C28.9818 19.7765 28.9374 20.3504 29.264 20.7317C29.5907 21.113 30.1645 21.1575 30.5458 20.8309C30.5813 20.8004 30.6145 20.7673 30.6449 20.7317L39.7357 11.6409C40.0881 11.2865 40.0881 10.7138 39.7356 10.3592Z" fill="white"/></svg>')!important;
}

/*
|--------------------------------------------------------------------------
| Global > Stock Statuses
|--------------------------------------------------------------------------
*/
.stock-status {
	padding: 2px 0 0 22px;
	background-size: 18px 14px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	background-repeat: no-repeat;
	background-position: left center;
}

.in-stock {
	background-image: url('data:image/svg+xml,<svg width="11" height="15" viewBox="0 0 11 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.70085 9.20237C8.34238 9.4755 9.89471 8.36591 10.168 6.72332L10.2629 6.1505L8.43157 5.84702C7.19805 5.64217 6.01577 6.21878 5.38763 7.21268V5.24196L6.70085 5.46008C8.34238 5.73322 9.89471 4.62362 10.168 2.98103L10.2629 2.40821L8.43157 2.10473C7.19805 1.89988 6.01577 2.47649 5.38763 3.47039V3.36797V3.35469V3.31106H5.38004L5.30033 2.83688C5.04983 1.31568 3.61136 0.285746 2.08939 0.538014L0.392828 0.818733L0.480123 1.34982C0.73252 2.87102 2.17099 3.90095 3.69486 3.64869L4.85437 3.45522V4.87968C4.63423 5.17367 4.41979 4.46239 4.41979 4.46239L4.20535 4.64827C4.06302 4.30686 3.65691 4.00717 3.65691 4.00717C3.47852 4.52688 3.75938 5.35007 3.75938 5.35007C3.59618 5.30265 3.15022 4.5743 3.15022 4.5743L3.06861 4.73173C3.06861 4.73173 2.78016 4.24806 2.47652 4.01476C2.17289 3.78146 2.26778 4.11908 2.26778 4.11908L2.29245 4.62741C1.59219 3.96165 1.51628 4.07356 1.51628 4.07356L1.46314 4.31255C0.489612 4.20633 0.296044 4.43963 0.296044 4.43963C0.296044 4.43963 0.364362 4.78105 1.05703 5.49043L0.776167 5.62131C0.776167 5.62131 0.86536 5.81288 1.82371 5.94186L1.4119 6.24154C1.4119 6.24154 1.08929 6.37811 1.46124 6.46915C1.8332 6.5602 2.39113 6.48243 2.39113 6.48243L2.31901 6.64366C2.31901 6.64366 3.04015 6.47484 3.17868 6.57158C3.17868 6.57158 2.36076 6.86747 2.06662 7.33218C2.06662 7.33218 2.68338 7.52185 3.03825 7.41943L3.02686 7.70394C3.02686 7.70394 3.81821 7.28096 3.67778 7.68308L4.85627 7.17475V9.22513C4.22433 8.24831 3.05343 7.68497 1.8313 7.88792L0 8.1914L0.094886 8.76422C0.368158 10.4049 1.92049 11.5145 3.56202 11.2433L4.85627 11.0289V14.5H5.39142V12.8138L6.70465 13.0319C8.34617 13.305 9.89851 12.1954 10.1718 10.5529L10.2667 9.98004L8.43537 9.67656C7.20185 9.47171 6.01957 10.0483 5.39142 11.0422V10.9398V10.9265V8.98804L6.70465 9.20617L6.70085 9.20237Z" fill="%23006845"/></svg>');
	color: #006845;
}

.out-of-stock {
	background-image: url('data:image/svg+xml,<svg width="11" height="15" viewBox="0 0 11 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.70085 9.20237C8.34238 9.4755 9.89471 8.36591 10.168 6.72332L10.2629 6.1505L8.43157 5.84702C7.19805 5.64217 6.01577 6.21878 5.38763 7.21268V5.24196L6.70085 5.46008C8.34238 5.73322 9.89471 4.62362 10.168 2.98103L10.2629 2.40821L8.43157 2.10473C7.19805 1.89988 6.01577 2.47649 5.38763 3.47039V3.36797V3.35469V3.31106H5.38004L5.30033 2.83688C5.04983 1.31568 3.61136 0.285746 2.08939 0.538014L0.392828 0.818733L0.480123 1.34982C0.73252 2.87102 2.17099 3.90095 3.69486 3.64869L4.85437 3.45522V4.87968C4.63423 5.17367 4.41979 4.46239 4.41979 4.46239L4.20535 4.64827C4.06302 4.30686 3.65691 4.00717 3.65691 4.00717C3.47852 4.52688 3.75938 5.35007 3.75938 5.35007C3.59618 5.30265 3.15022 4.5743 3.15022 4.5743L3.06861 4.73173C3.06861 4.73173 2.78016 4.24806 2.47652 4.01476C2.17289 3.78146 2.26778 4.11908 2.26778 4.11908L2.29245 4.62741C1.59219 3.96165 1.51628 4.07356 1.51628 4.07356L1.46314 4.31255C0.489612 4.20633 0.296044 4.43963 0.296044 4.43963C0.296044 4.43963 0.364362 4.78105 1.05703 5.49043L0.776167 5.62131C0.776167 5.62131 0.86536 5.81288 1.82371 5.94186L1.4119 6.24154C1.4119 6.24154 1.08929 6.37811 1.46124 6.46915C1.8332 6.5602 2.39113 6.48243 2.39113 6.48243L2.31901 6.64366C2.31901 6.64366 3.04015 6.47484 3.17868 6.57158C3.17868 6.57158 2.36076 6.86747 2.06662 7.33218C2.06662 7.33218 2.68338 7.52185 3.03825 7.41943L3.02686 7.70394C3.02686 7.70394 3.81821 7.28096 3.67778 7.68308L4.85627 7.17475V9.22513C4.22433 8.24831 3.05343 7.68497 1.8313 7.88792L0 8.1914L0.094886 8.76422C0.368158 10.4049 1.92049 11.5145 3.56202 11.2433L4.85627 11.0289V14.5H5.39142V12.8138L6.70465 13.0319C8.34617 13.305 9.89851 12.1954 10.1718 10.5529L10.2667 9.98004L8.43537 9.67656C7.20185 9.47171 6.01957 10.0483 5.39142 11.0422V10.9398V10.9265V8.98804L6.70465 9.20617L6.70085 9.20237Z" fill="%23006845"/></svg>');
	color: #006845;
	background-size: 15px 15px;
	padding: 2px 0 0 20px;
}

.stock-pending {
	background-image:url('data:image/svg+xml,<svg width="11" height="15" viewBox="0 0 11 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.70085 9.20237C8.34238 9.4755 9.89471 8.36591 10.168 6.72332L10.2629 6.1505L8.43157 5.84702C7.19805 5.64217 6.01577 6.21878 5.38763 7.21268V5.24196L6.70085 5.46008C8.34238 5.73322 9.89471 4.62362 10.168 2.98103L10.2629 2.40821L8.43157 2.10473C7.19805 1.89988 6.01577 2.47649 5.38763 3.47039V3.36797V3.35469V3.31106H5.38004L5.30033 2.83688C5.04983 1.31568 3.61136 0.285746 2.08939 0.538014L0.392828 0.818733L0.480123 1.34982C0.73252 2.87102 2.17099 3.90095 3.69486 3.64869L4.85437 3.45522V4.87968C4.63423 5.17367 4.41979 4.46239 4.41979 4.46239L4.20535 4.64827C4.06302 4.30686 3.65691 4.00717 3.65691 4.00717C3.47852 4.52688 3.75938 5.35007 3.75938 5.35007C3.59618 5.30265 3.15022 4.5743 3.15022 4.5743L3.06861 4.73173C3.06861 4.73173 2.78016 4.24806 2.47652 4.01476C2.17289 3.78146 2.26778 4.11908 2.26778 4.11908L2.29245 4.62741C1.59219 3.96165 1.51628 4.07356 1.51628 4.07356L1.46314 4.31255C0.489612 4.20633 0.296044 4.43963 0.296044 4.43963C0.296044 4.43963 0.364362 4.78105 1.05703 5.49043L0.776167 5.62131C0.776167 5.62131 0.86536 5.81288 1.82371 5.94186L1.4119 6.24154C1.4119 6.24154 1.08929 6.37811 1.46124 6.46915C1.8332 6.5602 2.39113 6.48243 2.39113 6.48243L2.31901 6.64366C2.31901 6.64366 3.04015 6.47484 3.17868 6.57158C3.17868 6.57158 2.36076 6.86747 2.06662 7.33218C2.06662 7.33218 2.68338 7.52185 3.03825 7.41943L3.02686 7.70394C3.02686 7.70394 3.81821 7.28096 3.67778 7.68308L4.85627 7.17475V9.22513C4.22433 8.24831 3.05343 7.68497 1.8313 7.88792L0 8.1914L0.094886 8.76422C0.368158 10.4049 1.92049 11.5145 3.56202 11.2433L4.85627 11.0289V14.5H5.39142V12.8138L6.70465 13.0319C8.34617 13.305 9.89851 12.1954 10.1718 10.5529L10.2667 9.98004L8.43537 9.67656C7.20185 9.47171 6.01957 10.0483 5.39142 11.0422V10.9398V10.9265V8.98804L6.70465 9.20617L6.70085 9.20237Z" fill="%23006845"/></svg>');
	color: #006845;
}

.stock-status.no-icon {
    background-image: none !important;
    padding-left: 0;
}

/*
|--------------------------------------------------------------------------
| Global > Jumbotron
|--------------------------------------------------------------------------
*/
.jumbotron {
    position: relative;
    min-height: 195px;
    text-align: center;
    overflow: hidden;
    padding: 25px 0;
    display: table;
    width: 100%;
	background-color: #DFEFDB;
}
.jumbotron-small {
	height: 184px;
}

.jumbotron--title {
	margin: 0;
	font-size: 52px;
	font-weight: 400;
}

.jumbotron--content {
	width: 100%;
	padding: 10px 0 0 0;
	margin: 0 auto;
	max-width: 700px;
	font-size: 16px;
	text-align: center;
}

.jumbotron--inner {
	padding: 0 30px;
	display: table-cell;
	vertical-align: middle;
}

.title-plain {
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 40px;
}
.panel--padding-70 .title-plain {
    margin-bottom: 60px;
}

.main-inner .jumbotron {
	padding-top: 0;
	min-height: unset;
}


.archive-side {
    width: 455px;
    margin-right: 36px;
}
.archive-side > * {
	margin-bottom: 36px;
}
.archive-side--image {
    display: flex;
}
.archive-side--image img {
    width: 100%;
}
.archive-side--inner {
    padding: 36px;
    border-radius: 12px 0;
}
.archive-side--inner > *:not(:last-child) {
	margin-bottom: 36px;
}
.archive-side--title {
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    max-width: 300px;
}
.archive-downloads--title {
    font-weight: 700;
}
.archive-downloads > *:not(:last-child) {
	margin-bottom: 8px;
}
.archive-downloads a {
	display: flex;
	align-items: center;
	color: #006845;
	font-weight: 500;
}
.archive-downloads a > svg {
	margin-right: 8px;
}
.archive-main {
    padding: 36px;
}


/*
|--------------------------------------------------------------------------
| Global > UI Elements
|--------------------------------------------------------------------------
*/
.spinner {
	margin: 0 auto;
	font-size: 10px;
	position: relative;
	text-indent: -9999em;
	border-top: 1.1em solid rgba(255, 255, 255, 0.2);
	border-right: 1.1em solid rgba(255, 255, 255, 0.2);
	border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
	border-left: 1.1em solid #ffffff;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: load8 1.1s infinite linear;
	animation: load8 1.1s infinite linear;
}
.spinner,
.spinner:after {
	border-radius: 50%;
	width: 10em;
	height: 10em;
}

/*
|--------------------------------------------------------------------------
| Global > Messages
|--------------------------------------------------------------------------
*/
.message {
	position: relative;
	padding: 15px;
	margin: 0 0 10px;
	color: #fff;
	text-align: center;
	font-size: 12px;
	background: #006845;
	border-radius: 12px 1px 12px 1px;
}

.message a {
	color:#fff;
	text-decoration:underline;
}

.message-error {
	background: #b12525;
}

.message-success {
	background: #37af56;
}

.message-warn {
	background: #caa53a;
}

.message-close {
	position: absolute;
	top: 0; right: 0;
	height: 30px;
	width: 30px;
	text-align: center;
	line-height: 30px;
	color: #fff;
	font-size: 10px;
	cursor: pointer;
	z-index: 1;
}

.message-float {
	position: absolute;
	top: 0; right: 0; left: 0;
}

.flash-message {
	position: fixed;
	left: 10px;
	top: 10px;
	right: 10px;
	z-index: 99999;
	pointer-events: none;
}

.flash-message .message {
	max-width: 400px;
	margin: 0 auto;
	display: none;
	pointer-events: auto;
}

.js-message {
    position: fixed;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
}

/*
|--------------------------------------------------------------------------
| Global > Tooltip
|--------------------------------------------------------------------------
*/
.core-tooltip {
	position: absolute;
	padding: 8px;
	background-color: #006845;
	color: #fff;
	font-size: 12px;
	text-align: center;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	max-width: 400px;
	border-radius: 3px;
}

.core-tooltip:after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 5px 0 5px;
	border-color: #006845 transparent transparent transparent;
	left: 50%;
	bottom: -5px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.core-tooltip__black {
	background-color: rgba(0,0,0,0.8);
	max-width: 220px;
	font-size: 11px;
	line-height: 11px;
	padding: 8px 10px 10px;
}

.core-tooltip__black:after {
	border-color: rgba(0,0,0,0.8) transparent transparent transparent;
}

/*
|--------------------------------------------------------------------------
| Global > Navtrail
|--------------------------------------------------------------------------
*/
.breadcrumb-trail, .breadcrumb-trail a, .breadcrumb-trail a:hover {
	color: #006845;
}

.breadcrumb-trail a,
.breadcrumb-trail span {
	margin: 0 6px;
}

.breadcrumb-trail > :first-child {
	margin-left: 0;
}

.mobile-breadcrumb-trail {
	display: none;
}

/*
|--------------------------------------------------------------------------
| Global > Content
|--------------------------------------------------------------------------
*/
.content-title {
    display: flex;
    align-items: center;
	font-family: "larken", serif;
	font-size: 32px;
	font-weight: 400;
	margin-bottom: 30px;
}

.content-default > h1, .content-default > h2, .content-default > h3, .content-default > h4, .content-default > h5, .content-default > h6 {
	font-weight: 400;
	font-family: "hanken-grotesk", sans-serif;
	color: #006845;
	letter-spacing: 0.06em;
	margin-bottom: 15px;
}
.content > h1 {
	font-size: 36px;
}
.content > h2 {
	font-size: 32px;
}
.content > h3 {
	font-size: 28px;
}
.content > h4 {
	font-size: 24px;
}
.content > h5 {
	font-size: 20px;
}
.content > h6 {
	font-size: 18px;
}

.content-title > span {
	margin: 0 30px 0 0;
}

.content-default p {
    line-height: 1.4;
}

.content-ul-sm ul {
    font-size: 13px;
    font-weight: 600;
	line-height: 1.2;
}
.content-ul-sm ul > li:not(:last-child), 
.content-ul-styled ul > li:not(:last-child) {
    margin-bottom: 12px;
}

.content-ul-styled ul {
	list-style-type: none;
	margin-left: 25px;
}
.content-ul-styled ul li {
	position: relative;
}
.content-ul-styled ul li::before {
	content: '';
	position: absolute;
	top: -2px; left: -25px;
	width: 18px; height: 18px;
	background-image: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.5248 2.475C15.5248 2.475 14.4748 2.25 12.8998 2.25C8.77476 2.25 1.19976 3.825 2.39976 15.6C3.22476 15.675 4.04976 15.75 4.79976 15.75C18.2248 15.75 15.5248 2.475 15.5248 2.475ZM5.24976 12.75C5.24976 12.75 5.24976 5.25 12.7498 5.25C12.7498 5.25 8.24975 6.75 5.24976 12.75Z" fill="%23006845"/></svg>');
	background-position: center;
	background-repeat: no-repeat;
}

/*
|--------------------------------------------------------------------------
| Global > Countdown Timer
|--------------------------------------------------------------------------
*/
.countdown-timer--doughnut {
	position: relative;
	width: 60px;
	height: 60px;
	float: left;
	transition: transform 1s ease;
	margin: 0 0 0 10px;
}

.countdown-timer--doughnut-inner {
	content: '';
	position: absolute;
	left: 50%;top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	background-color: #fff;
	border-radius: 50px;
	text-align: center;
	font-weight: 700;
	color: #1e1e1e;
}

.countdown-timer--doughnut strong,
.countdown-timer--doughnut strong span {
	font-size: 21px;
	top: 0;
}

.countdown-timer--doughnut strong {
	position: relative;
	top: 8px;
	display: block;
	color: #1e1e1e;
}

.countdown-timer--doughnut span {
	display: block;
	font-size: 11px;
	position: relative;
	top: 4px;
}

.countdown-timer--doughnut svg {
	width: 60px;
	height: 60px;
	-webkit-transform: rotate(-89.9deg);
	background: #dde2e5;
	border-radius: 50%;
}

.countdown-timer--doughnut circle {
	position: relative;
	fill: #006845;
	stroke: #dde2e5;
	stroke-width: 6px;
	stroke-dasharray: 38 100;
	transition: stroke-dasharray 1s ease;
}

.quote-side .ui-datepicker-inline {
	background-color: #fff;
}

/*
|--------------------------------------------------------------------------
| Template > JS Read More 
|--------------------------------------------------------------------------
*/
.js-rm {
	position: relative;
}
.js-rm--dummy {
	position: absolute;
	left: 0; right: 0;
	visibility: hidden; 
	pointer-events: none;
}
.js-rm--content {
	transition: ease-in-out .2s;
}
.js-rm--content, .dummy-test .js-rm--dummy {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-webkit-line-clamp: 4;
	text-overflow: ellipsis;
}
.clamp-2 .js-rm--content, .dummy-test.clamp-2 .js-rm--dummy {
	-webkit-line-clamp: 2;
}
.clamp-6 .js-rm--content, .dummy-test.clamp-6 .js-rm--dummy {
	-webkit-line-clamp: 6;
}
.clamp-8 .js-rm--content, .dummy-test.clamp-8 .js-rm--dummy {
	-webkit-line-clamp: 8;
}
.clamp-10 .js-rm--content, .dummy-test.clamp-10 .js-rm--dummy {
	-webkit-line-clamp: 10;
}
.clamp-11 .js-rm--content, .dummy-test.clamp-11 .js-rm--dummy {
	-webkit-line-clamp: 11;
}
.no-clamp .js-rm--content {
	-webkit-line-clamp: unset!important; 
	text-overflow: unset!important;
}
.js-rm:not(.active) .js-rm--toggle {
	display: none;
}
.js-rm--toggle {
    display: inline-block;
    font-size: 16px;
    text-decoration: underline;
    font-weight: 600;
    margin-top: 20px;
	cursor: pointer;
	max-width: max-content;
}
.js-rm--toggle:not(.button) {
	color: #006845;
}
.js-rm--toggle::before {
	content: 'Read More';
	position: relative;
}
.js-rm.open .js-rm--toggle::before {
	content: 'Read Less';
	position: relative;
}

.js-rm--toggle.button {
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
}
.js-rm--toggle.button::after {
	content: '';
	position: relative;
	margin: -4px 0 0 10px;
	width: 12px; height: 12px;
	background: url('data:image/svg+xml,<svg width="12" height="7" viewBox="0 0 12 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 6.87502C5.92623 6.87592 5.85308 6.86137 5.78527 6.83231C5.71746 6.80325 5.65648 6.76031 5.60625 6.70627L0.54375 1.64377C0.31875 1.41877 0.31875 1.07002 0.54375 0.84502C0.76875 0.62002 1.1175 0.62002 1.3425 0.84502L6.01125 5.51377L10.6687 0.85627C10.8937 0.63127 11.2425 0.63127 11.4675 0.85627C11.6925 1.08127 11.6925 1.43002 11.4675 1.65502L6.405 6.71752C6.2925 6.83002 6.14625 6.88627 6.01125 6.88627L6 6.87502Z" fill="white"/></svg>') no-repeat center / contain;
	-webkit-transition: ease-in-out .2s;
	transition: ease-in-out .2s;
}
.js-rm.open .js-rm--toggle.button::after {
	transform: rotate(180deg);
}


/*
|--------------------------------------------------------------------------
| Template > Cookie Notification
|--------------------------------------------------------------------------
*/
.cookie-pref-overlay {
    position: absolute;
    background-color: #FFF;
    width: 400px;
    left: 100%;
    height: 100%;
    transition: ease-in-out .5s;
	padding: 30px;
	font-size: 15px;
	z-index: 100;
}
.cookie-pref--top {
    font-size: 18px;
    color: #222;
    margin-bottom: 15px;
}
.cookie-pref--top .title {
    flex: 1;
}
.cookie-pref--close {
    position: relative;
    margin-left: 20px;
    margin-top: 2px;
    width: 30px;
	cursor: pointer;
}
.cookie-pref--close::before, .cookie-pref--close::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 3px;
    height: 15px;
    background-color: #222;
    border-radius: 3px;
}
.cookie-pref--close::before {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.cookie-pref--close::after {
	transform: translate(-50%, -50%) rotate(45deg);
}
.cookie-pref--text {
    margin-bottom: 15px;
}
.cookie-pref--text * {
    line-height: 1.5;
}
.cookie-pref-overlay .cookie-bar--submit, .cookie-pref-save {
	width: 100%;
	margin-top: 20px;
}
.cookie-pref-overlay--actions {
    flex: 1;
}
.show-pref .cookie-pref-overlay {
    margin-left: -400px;
}
.show-pref .cookie-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 65%);
}
.cookie-pref-form {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgb(0 0 0 / 65%);
    z-index: 9999999999999999;
	overflow: hidden;
}
.cookie-bar {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #FFF;
    display: flex;
    align-items: center;
	padding: 25px 30px;
}
.cookie-bar--inner {
    position: absolute;
    max-width: 550px;
    padding: 20px !important;
    background-color: #fff;
    width: 90%;
    margin: 0 auto;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    color: #222;
	font-size: 14px;
}
.cookie-bar--text {
    flex: 1;
    margin-right: 30px;
    font-size: 14px;
}
.cookie-bar--text * {
	line-height: 1.5;
}
.cookie-bar--action {
    display: flex;
    align-items: center;
}
.show-cookie-pref, .cookie-bar--submit, .cookie-pref-save {
    text-align: center;
    cursor: pointer;
    transition: ease-in-out .2s;
    color: #FFF;
    padding: 12px 15px 8;
    border-radius: 4px;
    font-size: 14px;
}
.show-cookie-pref {
	background-color: #878787;
}
.show-cookie-pref:hover {
	background-color: #5d5d5d;
}
.cookie-pref-save {
	background-color: #878787;
}
.cookie-pref-save:hover {
	background-color: #5d5d5d;
}
.cookie-bar--action .button:not(:first-child) {
	margin-left: 10px;
}
.cookie-bar .toggle-switch {
	margin-top: -3px;
}


.toggle-switch {
	position: relative;
	display: inline-block;
	width: 50px;
    height: 25px;
	padding: 0;
}
.toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.toggle-switch--slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
	border-radius: 34px;
}
.toggle-switch--slider:before {
	position: absolute;
	content: "";
	height: 17px;
    width: 17px;
    left: 4px;
    bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
	border-radius: 50%;
}
input:checked + .toggle-switch--slider {
	background-color: #006845;
}
input:focus + .toggle-switch--slider {
	box-shadow: 0 0 1px #006845;
}
input:checked + .toggle-switch--slider:before {
	-webkit-transform: translateX(25px);
	-ms-transform: translateX(25px);
	transform: translateX(25px);
}
.cookie-bar--pref-table {
    border: 1px solid #e0dede;
	margin-top: 30px;
	font-size: 14px;
}

.cookie-bar--table {
	display: none;
	margin-bottom: 15px;
}

.cookie-bar--table > .title {
	margin-bottom: 5px;
}
.cookie-settings {
	text-decoration: underline;
	cursor: pointer;
}


.cookie-bar--action__table {
    width: 100%;
}
.cookie-bar--action__table .title {
    font-size: 14px;
    font-weight: 600;
}
.cookie-bar--pref-table > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px 6px;
    height: 45px;
	line-height: 1.1;
}
.cookie-bar--pref-table > div > span {
    font-weight: 600;
    color: #006845;
	text-align: right;
}
.cookie-bar--pref-table > div:not(:last-child) {
	border-bottom: 1px solid #e0dede;
}

.cookie-bar--text > p {
	color: #222;
}

.cookie-bar--text > p:last-child {
	margin-bottom: 0;
}

.cookie-bar--text a {
	text-decoration: underline;
}
.cookie-bar--text a:hover {
	color: #006845;
}
.cookie-bar--text > .title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #006845;
	margin-bottom: 5px;
}

/*
|--------------------------------------------------------------------------
| Template > Header
|--------------------------------------------------------------------------
*/
header {
	background-color: #fff;
}

.mobile-cart--btn-cont {
	display: none;
	position: absolute;
	top: 0; bottom: 0; left: 0;
	height: 90px;
	width: 90px;
	border-right: 2px solid #e7e7e7;
}
.mobile-menu--btn, .mobile-search--btn {
    display: none;
}

.mobile-cart--btn-cont {
	width: auto;
	min-width: 90px;
	padding: 0 15px;
}

.mobile-menu--btn, .sym-mobile-menu--toggle > div {
	-webkit-transition: -webkit-transform 300ms ease, opacity 300ms ease, color 300ms ease;
	transition: transform 300ms ease, opacity 300ms ease, color 300ms ease;
}
.mobile-menu--btn.open, .show > .sym-mobile-menu--toggle > div {
	transform: rotate(90deg);
}
.mobile-menu--btn svg, .sym-mobile-menu--toggle > div svg {
	width: 32px;
	height: 32px;
}


.mobile-cart--btn-cont {
	left: auto;
	right: 0;
	border-left: 2px solid #e7e7e7;
	border-right: none;
	line-height: 90px;
}

.mobile-cart--btn-cont a {
	display: block;
	font-size: 33px;
	color: #006845;
	font-weight: 700;
}

.mobile-search--btn svg {
    width: 28px;
	height: 28px;
}

/*
|--------------------------------------------------------------------------
| Template > Header > Top Bar
|--------------------------------------------------------------------------
*/
.header-top {
	height: 30px;
	background-color: #2d2d2d;
	line-height: 30px;
}

/*
|--------------------------------------------------------------------------
| Template > Header > Main
|--------------------------------------------------------------------------
*/
.header-main {
	
}
.header-main--inner {
	position: relative;
	height: 110px;
	padding: 20px 40px;
}
.header-main--inner > *:not(:last-child) {
	margin-right: 50px;
}

header .logo {
    min-width: 200px;
	display: grid;
}

header .search-form {
    max-width: 500px;
    min-width: 200px;
    flex: 1;
}
header .search-form .input {
    margin: 0;
}
header .search-form--submit {
	position: absolute;
	display: flex;
	left: 15px; top: 50%;
	transform: translateY(-50%);
	background: transparent;
}
header .search-form .input input[type="text"] {
	padding: 14px 10px 11px 45px;
	border-radius: 8px 0;
}

.header-main--nav {
    flex: 1 0 auto;
    min-width: max-content;
    max-width: 660px;
}
.header-main--nav > a {
    padding: 5px 8px 3px;
    font-size: 16px;
    font-weight: 400;
    color: #3D3935;
    font-family: 'larken', serif;
}
.header-main--nav > a:hover {
	color: #006845;
}

.header-main--actions > div:not(:first-child) {
	margin-left: 60px;
}
.header-main--action {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
	font-size: 12px;
	color: #006845;
}
.header-main--action > svg {
    margin-bottom: 8px;
}
.header-main--action > svg path {
	-webkit-transition: ease-in-out .2s;
	transition: ease-in-out .2s;
}
.header-main--action:hover {
	color: #453E37;
}
.header-main--action:hover > svg path {
	fill: #453E37;
}

.header-message {
    background-color: #D5EBEE;
    padding: 15px 25px 12px;
}
.header-message > svg {
	min-width: 20px;
    margin: -4px 10px 0 0;
}

.search-form--close {
	display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -2px;
    right: 30px;
    height: 15px;
    width: 15px;
}

/*
|--------------------------------------------------------------------------
| Template > Header > Search Dropdown
|--------------------------------------------------------------------------
*/
.changed_search,
.original_search {
	padding-left: 50px;
}

.changed_search a,
.original_search a {
	text-transform: none;
}

.search-form .spinner {
    position: absolute;
    top: 8px;
    right: 61px;
    height: 30px;
    width: 30px;
    border: 0 !important;
}

.search_dropdown {
    position: absolute;
    top: 100%;
    /* left: 0; */
    right: 0;
   	width: 750px;
    padding: 0;
    margin: 10px 0 0 0;
    opacity: 0;
	z-index: -1;
    transition: .3s ease;
    background: #fff;
    border: 2px solid #e7e7e7;
    box-shadow: 0px 13px 22px 0px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.search_dropdown .container {
	width: auto;
}

.focus ~ .search_dropdown, .focus .search_dropdown {
	opacity: 1;
	transition-delay: 0s;
    z-index: 999;
}

a.search_item_title, a.search_cat_title, a.search_suggestion_title {
	text-transform: none;
	width: 78%;
    display: inline-block;
	overflow: hidden;
}

.search_prod_title {
	color: #5a5a5a;
	font-weight: 700;
}

a.search_item_title .inner_title {
	width: 500px;
}

a.search_cat_title {
	max-width: 100%;
}

a.search_cat_title .full_cat {
	color: #a0a0a0;
}

.search_section_left, .search_section_right {
	text-align: left;
	width: 50%;
	height: 100%;
}

.search_section_left .search_section, .search_section_right .search_section {
	padding: 15px 15px 20px;
}

.search_section_right {
	float: right;
}

.search_section_left .search_section {
	border-right: 2px solid #e7e7e7;
	height: 100%;
}

.search_section_right .search_section:nth-child(2) {
	border-top: 2px solid #e7e7e7;
}

.search_dropdown, .search_dropdown a {
	color: #2d2d2d;
}

a.search_item_title, .search_cat_title, .search_suggestion_title {
	white-space: nowrap;
	position: relative;
	font-weight: 700;
}

a.search_item_title, a.search_suggestion_title {
	padding-left: 7px;
}

a.search_suggestion_title {
	font-weight: 400;
}

.search_section_title.search_suggestion_title {
	padding: 0;
    margin: 0;
    margin-top: -3px;
    margin-bottom: 8px;
}

a.search_cat_title, a.search_suggestion_title {
	width: 95%;
}

a.search_item_title span {
	color: #a0a0a0;
}

.search-changed {
	margin-bottom: 20px;
}

.search_dropdown .search_price {
	float: right;
    color: #666666;
	position: relative;
	font-weight: 700;
}

.search_dropdown .light {
	color: #a0a0a0;
}

.search_section_left.no_result .search_section {
	border-right: none;
}

.search_item_cont, .search_cat_cont, .search_suggestion_cont, .search_section_title {
	margin-top: 5px;
}

.search_section_title {
	padding-bottom: 4px;
}

.search_cat_cont {
	padding-left: 7px;
}

.search-suggestion {
	text-align: left;
	margin-top: 20px;
}

.mobile-search--input .spinner {
	right: 75px;
	height: 32px;
	width: 32px;
	top: 20px;
}

.mobile-search .search_dropdown, .search-inputs .spinner {
	display: none;
}

.original_search.no_prod {
	margin-bottom: 30px;
}

.changed_search, .original_search {
	padding-left: 50px;
}

.changed_search {
	margin-top: 15px;
}

a.dropdown_show_all {
	color: #fff;
	display: inline-block;
	background: #3479b1;
    box-shadow: 0 1px 1px #175e8e,0 2px 1px #175e8e;
    height: 24px;
	line-height: 24px;
	margin-top: 13px;
    padding: 0 15px;
}

.search_item_cont, .search_cat_cont {
	position: relative;
}

.search_section_left .last::after, .search_section_right .last::after {
    content: "";
    height: 100%;
    width: 100%;
    background: -moz-linear-gradient(top, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 1%, rgba(255,255,255,0.8) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0.8) 0%,rgba(255,255,255,0) 1%,rgba(255,255,255,0.8) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0.8) 0%,rgba(255,255,255,0) 1%,rgba(255,255,255,0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 );
    display: block;
    position: absolute;
    bottom: 0;
}

a.search_item_title::before, .search_cat_title::before, .search_suggestion_title::before {
	content: "";
    height: 100%;
    width: 20px;
	background: -moz-linear-gradient(left, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 1%, rgba(255,255,255,0.7) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(255,255,255,0.7) 0%,rgba(255,255,255,0) 1%,rgba(255,255,255,0.7) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(255,255,255,0.7) 0%,rgba(255,255,255,0) 1%,rgba(255,255,255,0.7) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
    display: block;
    position: absolute;
    right: 0;
}

/*
|--------------------------------------------------------------------------
| Template > Footer
|--------------------------------------------------------------------------
*/
footer {
	background-color: #DFEFDB;
}
.footer-main {
	padding: 80px 0;
} 
.footer-main--inner {
    justify-content: space-between;
}
.footer-main--inner > * {
    width: 50%;
}
.footer-main--inner > *:first-child:last-child {
	width: 100%;
}

.footer-menu > div:not(:last-child) {
    margin-right: 80px;
}
.footer-menu a {
	font-weight: 300;
	font-size: 18px;
	font-family: 'larken', serif;
}
.footer-menu a:not(:last-child) {
    margin-bottom: 15px;
}

.footer-right {
    max-width: 450px;
}
/* .footer-right > div {
    width: 50%;
} */
.footer-right > div {
    margin-right: 80px;
}

.footer-newsletter {
    max-width: 265px;
}
.footer-title {
    font-size: 22px;
    font-weight: 700;
    font-family: 'larken', serif;
    margin-bottom: 10px;
}
.footer-newsletter > .content {
    font-size: 16px;
	line-height: 1.4;
	margin-bottom: 20px;
}

.footer-newsletter-banner {
	padding: 20px 0;
	color: #FFF;
	background-color: #00AF66;
}
.footer-newsletter--inner > *:not(:last-child) {
	margin: 0 24px 0 0;
}
.footer-newsletter--inner > .footer-title {
	margin-bottom: 0;
	font-size: 24px;
}
.footer-newsletter--inner > .content {
    max-width: max-content;
	margin-top: 2px;
	font-size: 18px;
}

footer .trustpilot-widget {
    padding: 10px;
    background-color: #ffffff;
    border-top: 1px solid #F1F1F1;
}


/*
|--------------------------------------------------------------------------
| Template > Contact Details
|--------------------------------------------------------------------------
*/
.contact-details {
	font-family: 'larken', serif;
	font-weight: 300;
	font-size: 18px;
    line-height: 1.3;
}
.contact-details > *:not(:last-child) {
    margin-bottom: 25px;
}
.contact-detail > a {
    display: flex;
    align-items: center;
}
.contact-detail > a > svg {
    margin: -2px 8px 0px 0;
}
.contact-detail > a > span {
    flex: 1;
}

.icon-links--title {
    margin-right: 12px;
}

/*
|--------------------------------------------------------------------------
| Template > Footer > Bottom
|--------------------------------------------------------------------------
*/
.footer-bottom {
    border-top: 1px solid #FFF;
    padding: 20px 0;
}

.footer-bottom-links {
    font-size: 12px;
    line-height: 1.4;
	margin-right: 20px;
}
.footer-bottom-links a {
    text-decoration: underline;
}

.footer-payment img {
	width: 260px;
	height: 23px;
}
.footer-bottom--imgs > *:not(:last-child) {
    margin-right: 15px;
}

.cdsROW.narrow.border {
    padding: 4px 11px 0!important;
    width: 130px!important;
}
.cdsROW.narrow .cdsLocName {
    padding-bottom: 5px!important;
}
.cdsROW .cdsLocName a {
    font-size: 11px !important;
}
.cdsROW .cdsRating {
    font-size: 10px!important;
}
.cdsROW.narrow .logo {
    padding-bottom: 0px!important;
}
.cdsROW.cx_brand_refresh .logo img {
    width: 95px!important;
}


/*
|--------------------------------------------------------------------------
| Template > Mobile Menu
|--------------------------------------------------------------------------
*/
@-webkit-keyframes mobileMenuOpen {
	from  {
		-webkit-transform: translate(0px, 0px);
		transform: translate(0px, 0px);
	}
	to {
		-webkit-transform: translateX(390px);
		transform: translateX(390px);
	}
}

@keyframes mobileMenuOpen {
	from {
		-webkit-transform: translate(0px, 0px);
		transform: translate(0px, 0px);
	}
	to {
		-webkit-transform: translateX(390px);
		transform: translateX(390px);
	}
}

@-webkit-keyframes mobileMenuClose {
	from  {
		-webkit-transform: translateX(390px);
		transform: translateX(390px);
	}
	to {
		-webkit-transform: translate(0px, 0px);
		transform: translate(0px, 0px);
	}
}

@keyframes mobileMenuClose {
	from  {
		-webkit-transform: translateX(390px);
		transform: translateX(390px);
	}
	to {
		-webkit-transform: translate(0px, 0px);
		transform: translate(0px, 0px);
	}
}

.page-slide-container {
	overflow: hidden;
}

.page-slide {
	position: relative;
	/* transform: translate(0, 0);
	-webkit-transform: translate(0, 0); */
}

.mobile-menu {
	position: absolute;
	top: 100px; left: -390px; bottom: 0;
	display: none;
	width: 390px;
	-webkit-transition: ease-in-out .5s;
	transition: ease-in-out .25;
	background:#DFEFDB;
	background-size: 515.5px 511.5px;
	z-index: 999;
}
.page-slide.open .mobile-menu {
	margin-left: 390px;
}
.mobile-menu--backdrop {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 100%;
    width: 1000px;
    background-color: rgba(0, 0, 0, .5);
    pointer-events: none;
    opacity: 0;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}
.page-slide.open .mobile-menu--backdrop {
    pointer-events: all;
    opacity: 1;
}

.mobileMenuItemFade {
	-webkit-animation: mobileMenuItemFade 1s ease forwards; /* Safari 4+ */
	-moz-animation:    mobileMenuItemFade 1s ease forwards; /* Fx 5+ */
	-o-animation:      mobileMenuItemFade 1s ease forwards; /* Opera 12+ */
	animation:         mobileMenuItemFade 1s ease forwards; /* IE 10+, Fx 29+ */
}

.mobile-menu--inner {
	min-height: calc(100vh - 100px);
}

.mobile-menu .contact-details {
    padding: 20px 30px;
}

.mobile-search {
	background-color: #1e1e1e;
	position: relative;
}

.mobile-search--input {
	overflow: hidden;
}

.mobile-search--submit {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20px" height="20px"><path fill-rule="evenodd" d="M13.349,2.279 C10.297,-0.772 5.331,-0.772 2.280,2.279 C-0.771,5.331 -0.771,10.297 2.280,13.349 C4.997,16.065 9.229,16.356 12.279,14.235 C12.343,14.538 12.490,14.828 12.726,15.064 L17.170,19.507 C17.816,20.153 18.863,20.153 19.508,19.507 C20.154,18.861 20.154,17.814 19.508,17.168 L15.064,12.725 C14.829,12.489 14.539,12.342 14.235,12.279 C16.358,9.229 16.067,4.999 13.349,2.279 ZM11.946,11.946 C9.668,14.223 5.961,14.223 3.683,11.946 C1.406,9.667 1.406,5.962 3.683,3.683 C5.961,1.405 9.668,1.405 11.946,3.683 C14.224,5.962 14.224,9.667 11.946,11.946 Z" fill="%23c0bfbf"></path></svg>') no-repeat center;
    background-size: contain;
	z-index: 1;
}

.mobile-menu--dropdown > a {
    position: relative;
}
.mobile-menu--dropdown > a::after {
    position: absolute;
	content: '';
	right: 30px; top: 50%;
	transform: translateY(-50%); 
	transition: ease-in-out .2s;
	background: url('data:image/svg+xml,<svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_142_2)"><path d="M6.99996 11.8371C6.74905 11.8371 6.49818 11.7413 6.30688 11.5501L0.287198 5.53039C-0.0957326 5.14746 -0.0957326 4.52661 0.287198 4.14383C0.669973 3.76106 1.29071 3.76106 1.67367 4.14383L6.99996 9.47044L12.3263 4.14402C12.7092 3.76124 13.3299 3.76124 13.7126 4.14402C14.0957 4.52679 14.0957 5.14765 13.7126 5.53058L7.69304 11.5503C7.50165 11.7416 7.25078 11.8371 6.99996 11.8371Z" fill="white"></path></g><defs><clipPath id="clip0_142_2"><rect width="14" height="14" fill="white" transform="translate(0 0.846985)"></rect></clipPath></defs></svg>') no-repeat center;
	background-size: contain;
	width: 20px; height: 20px;
}
.mobile-menu--dropdown.open > a::after {
	transform: translateY(-50%) rotate(180deg);
}
.mobile-menu--dropdown--inner {
	display: none;
}
.open > .mobile-menu--dropdown--inner {
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, .1);
    padding: 10px 0;
}
.mobile-menu--dropdown--inner > a {
	font-size: 22px;
}

.mobile-search--input > input {
	width: 100%;
	color: #c0bfbf;
	font-size: 21px;
	background: none;
	padding: 15px 30px;
}

.onpage-search__input {
	width: 100%;
	font-size: 16px;
	background: none;
	padding: 14px 16px 11px;
}

.onpage-search__submit {
	height: 48px;
	width: 60px;
	background-color: transparent!important;
}

.onpage-search__submit svg {
    width: 24px;
    height: 24px;
}

.mobile-action {
	padding: 18px 30px;
	border-bottom: 2px solid #1e1e1e;
}

.mobile-menu--actions {
    display: none;
}
.mobile-menu--actions > a {
    background-color: #006845;
    padding: 17px 20px 13px;
	margin-bottom: 1px;
    color: #FFF;
}
.mobile-menu--actions > a > svg {
	margin: -2px 8px 0 0;
}

.mobile-nav {
    padding: 20px 0;
}
.mobile-nav a {
    font-size: 20px;
    text-transform: none;
    width: 100%;
    padding: 12px 30px;
    font-family: 'larken';
}

.mobile-action a {
	display: block;
	color: #c0bfbf;
	margin: 0 0 10px 0;
}

.mobile-action a:last-child {
	margin: 0;
}

.mobile-action a[href^="tel:"] {
	color: #37af56;
}

.mobile-action .icon {
	padding: 0 0 0 34px;
}

.mobile-action .icon-user {
	background: url(/images/style/basic/mbl-icon-user.png) no-repeat center left;
	background-size: 20px 20px;
}

.mobile-action .icon-box {
	background: url(/images/style/basic/mbl-icon-box.png) no-repeat center left;
	background-size: 20px 20px;
}

.mobile-action .icon-phone {
	background: url(/images/style/basic/mbl-icon-phone.png) no-repeat center left;
	background-size: 18px 18px;
}

.mobile-social-title {
	font-size:24px;
	color:#fff;
	text-align:center;
	padding-bottom:15px;
}

.mobile-social {
	background-color: #1e1e1e;
	padding: 14px 30px 5px 30px;
	text-align: justify;
}

.mobile-social a {
	width: 40px;
	float: none;
	display: inline-block;
	background-position: center center;
}

.mobile-social:after {
	content: '';
	width: 100%;
	display: inline-block;
}

#page_numbers {
	text-align: center;
}

.page_numbers_inner {
	display: flex;
    justify-content: center;
	padding: 32px;
}

.page_number_sel,
.previous_page,
.page_number,
.next_page {
	display: inline-block;
}

#page_numbers a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 8px 10px;
    font-size: 14px;
}

#page_numbers .page_number_sel a {
	color: #00AF66;
	font-weight: 600;
}
#page_numbers .page_number_sel > a, #page_numbers .page_number > a {
    padding: 8px 16px 6px;
}

.lazy-load {
	clear: both;
	padding: 15px 0;
	width: 100%;
	text-align: center;
}

.lazy-load .spinner {
	border-top: 1.1em solid rgba(0, 0, 0, 0.2);
    border-right: 1.1em solid rgba(0, 0, 0, 0.2);
    border-bottom: 1.1em solid rgba(0, 0, 0, 0.2);
    border-left: 1.1em solid #000000;
	max-width: 150px;
}

.onpage-search {
	background-color: #fff;
	position: relative;
	border-radius: 12px 0;
    overflow: hidden;
	display: flex;
}

#mbl-filters-sub {
	display:block;
}

/*
|--------------------------------------------------------------------------
| Template > Overlay
|--------------------------------------------------------------------------
*/
#olay {
	display: none;
}

#olay_back {
	background: #000;
	position: fixed;
	top: 0; bottom: 0; left: 0; right: 0;
	z-index: 200;
	filter: alpha(opacity=70);
	opacity: .7;
	width: 100%;
}

#olay_box_container {
	width: 90%;
	max-width: 720px;
	position: absolute;
	top: 10%; left: 50%;
	z-index: 201;
    transform: translateX(-50%);
}

#olay_box {
	background: #fff;
	width: 100%;
	padding: 30px;
	/* margin: 0 0 0 -50%; */
	border-radius:10px;
    -webkit-box-shadow: 0px 0px 12px #333;
    box-shadow: 0px 0px 12px #333;
	left: auto;
}

#olay_close,
#search_results_close {
	background:url(/images/style/basic/olay_close.jpg) no-repeat;
	width:26px;
	height:25px;
	float: right;
	cursor: pointer;
}

.subs-olay {
    padding: 20px;
}
.subs-olay h2 {
	margin-bottom: 20px;
}

.subs-olay--row {
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.subs-olay--row.border-fix {
	border-bottom: 0;
}

.subs-olay-btns > .button {
	margin-right: 10px;
}

.subs-olay--list-item {
	padding: 0 5px 5px 0;
}

.subs-olay--list-item > input {
	margin-right: 5px;
}

.subs-olay--list {
	margin: 0 -5px -5px 0;
}


/*
|--------------------------------------------------------------------------
| Template > Content Tiles
|--------------------------------------------------------------------------
*/
.content-tiles {
    padding: 2px;
}
.content-tiles.no-border {
	padding: 0;
}
.content-tiles.lg .tile-row {
	min-height: 600px;
}
.content-tiles.md .tile-row {
	min-height: 435px;
}
.content-tiles:not(.rev) .tile-row:nth-child(odd),
.content-tiles.rev .tile-row:nth-child(even) {
	flex-direction: row-reverse;
}
.tile-row.default-bg:nth-child(6n+1) {
	background-color: #F1EFB7;
}
.tile-row.default-bg:nth-child(6n+2) {
	background-color: #DFEFDB;
}
.tile-row.default-bg:nth-child(6n+3) {
	background-color: #FCEAF3;
}
.tile-row.default-bg:nth-child(6n+4) {
	background-color: #D5EBEE;
}
.tile-row.default-bg:nth-child(6n+5) {
	background-color: #FCEEA8;
}
.tile-row.default-bg:nth-child(6n+6) {
	background-color: #F7CED7;
}
.tile-row > * {
	border: 2px solid #FFF;
}
.content-tiles.no-border .tile-row > * {
	border: 0;
}
.tile-row--image {
	position: relative;
    width: 50%;
	overflow: hidden;
}
.tile-row--image > div {
    padding: 85px;
}
.tile-row--image--link {
	display: block;
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	height: 100%; width: 100%;
}
.tile-content--image {
    width: 100px;
}
.tile-row .article-grid > div {
    width: 33.3333333%;
}

.content-tiles:not(.rev) .tile-row:nth-child(even) .tile-row--content,
.content-tiles.rev .tile-row:nth-child(odd) .tile-row--content, 
.content-tiles:not(.rev) .tile-row:nth-child(even) .tile-content--inner,
.content-tiles.rev .tile-row:nth-child(odd) .tile-content--inner {
	flex-direction: row-reverse;
}
.tile-content--inner {
    align-items: center;
	justify-content: flex-end;
	padding: 60px;
}
.tile-row--content:first-child > .tile-content--inner {
	justify-content: center;
	text-align: center;
}
.tile-content--inner > div {
	width: 100%;
	max-width: unset;
}
.tile-row--content:first-child > .tile-content--inner > div {
	max-width: 800px!important;
}
.pad-md > .tile-content--inner {
    padding: 85px;
}
.pad-md > .tile-content--inner > div {
	max-width: 370px;
}
.pad-lg > .tile-content--inner {
    padding: 125px;
}
.pad-lg > .tile-content--inner > div {
	max-width: 465px;
}
.pos-bottom > .tile-content--inner {
	align-items: flex-end;
}
.pos-center > .tile-content--inner {
	justify-content: flex-end;
	text-align: center;
}

.tile-content--title {
    font-family: 'larken', serif;
    font-size: 58px;
    font-weight: 500;
	letter-spacing: -0.04em;
	color: #3D3935!important;
}
.tile-content--title:hover {
	opacity: 0.8;
}
.tile-content--title:not(:last-child) {
	margin-bottom: 12px;
}
.title-md .tile-content--title {
    font-size: 52px;
}
.title-sm .tile-content--title {
    font-size: 32px;
	letter-spacing: 0;
}
.tile-content--subtitle {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.tile-content--inner .content {
    font-size: 16px;
	font-weight: 300;
	letter-spacing: -0.02em;
}
.tile-content--inner .content:not(:last-child) {
    margin-bottom: 40px;
}
.tile-content--inner .content > * {
	line-height: 1.4;
}

.tile-content--buttons {
    margin: 0 -20px -20px 0;
}
.tile-content--buttons > a {
    margin: 0 20px 20px 0;
}
.tile-content--buttons > a:not(.button) {
	color: #3D3935;
	padding-bottom: 5px;
    border-bottom: 1px solid #3D3935;
	text-transform: uppercase;
    letter-spacing: 0.09em;
}
.tile-content--buttons > a:not(.button):hover {
	color: #006845;
	border-color: #006845;
}
.tile-row.default-bg:nth-child(6n+1) .tile-row--content .button,
.tile-row.bg-primary-yellow .tile-row--content .button {
	background-color: #E1E000;
	color: #3D3935!important;
}
.tile-row.default-bg:nth-child(6n+1) .tile-row--content .button:hover,
.tile-row.bg-primary-yellow .tile-row--content .button:hover {
	background-color: #c2c102;
	color: #3D3935!important;
}
.tile-row.default-bg:nth-child(6n+2) .tile-row--content .button, 
.tile-row.bg-primary-green .tile-row--content .button {
	background-color: #00AF66;
}
.tile-row.default-bg:nth-child(6n+2) .tile-row--content .button:hover, 
.tile-row.bg-primary-green .tile-row--content .button:hover {
	background-color: #029155;
}
.tile-row.default-bg:nth-child(6n+3) .tile-row--content .button, 
.tile-row.bg-secondary-pink .tile-row--content .button {
	background-color: #CE0037;
}
.tile-row.default-bg:nth-child(6n+3) .tile-row--content .button:hover, 
.tile-row.bg-secondary-pink .tile-row--content .button:hover {
	background-color: #a5002c;
}
.tile-row.default-bg:nth-child(6n+4) .tile-row--content .button, 
.tile-row.bg-secondary-blue .tile-row--content .button {
	background-color: #74D1EA;
	color: #3D3935!important;
}
.tile-row.default-bg:nth-child(6n+4) .tile-row--content .button:hover, 
.tile-row.bg-secondary-blue .tile-row--content .button:hover {
	background-color: #5db0c7;
	color: #3D3935!important;
}
.tile-row.default-bg:nth-child(6n+5) .tile-row--content .button, 
.tile-row.bg-secondary-yellow .tile-row--content .button {
	background-color: #FFC600;
	color: #3D3935!important;
}
.tile-row.default-bg:nth-child(6n+5) .tile-row--content .button:hover, 
.tile-row.bg-secondary-yellow .tile-row--content .button:hover {
	background-color: #d6a700;
	color: #3D3935!important;
}
.tile-row.default-bg:nth-child(6n+6) .tile-row--content .button, 
.tile-row.bg-secondary-pink-light .tile-row--content .button {
	background-color: #C6579A;
}
.tile-row.default-bg:nth-child(6n+6) .tile-row--content .button:hover, 
.tile-row.bg-secondary-pink-light .tile-row--content .button:hover {
	background-color: #963d73;
}

.tile-links:not(:first-child) {
    margin-top: 40px;
}
.tile-links > *:not(:last-child) {
    margin-bottom: 18px;
}
.tile-links > a {
	display: flex;
	align-items: center;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.tile-links > a svg {
	margin: -5px 10px 0 0;
}

.image-tiles {
	margin-top: -2px;
}
.image-tiles, .image-tiles > * {
    border: 2px solid #FFF;
}
.main-inner .image-tiles {
    border-top: unset;
    margin-top: 1px;
}
.image-tile {
	display: flex;
	flex-direction: column;
    width: 50%;
}
.image-tile-intro {
    padding: 125px;
    flex: 1;
    min-width: 50%;
}
.image-tile-intro > *:last-child {
	margin-bottom: 0!important;
}
h1.image-tile-into--title {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
}
.image-tile-intro--inner {
	width: 100%;
}
.image-tile-intro--inner .content {
    font-size: 16px;
}
.image-tile-intro--inner .content:not(:last-child) {
	margin-bottom: 35px;
}
.image-tile-intro--inner .content > * {
	line-height: 1.4;
}

.image-tile--image {
	flex: 1;
}
.image-tile--image img {
    width: 100%;
    visibility: hidden;
}
.image-tile--content {
	position: relative;
    min-height: 62px;
    padding: 8px 50px 6px 18px;
}
.image-tile--title {
    font-size: 18px;
    font-weight: 500;
    font-family: 'larken';
}
.image-tile--title > svg {
	margin-left: 8px;
}
.bg-secondary .image-tile--title {
	color: #006845;
}
.bg-yellow .image-tile--title {
	color: #3D3935;
}

.image-tile--subtitle {
    font-weight: 500;
    margin-top: 2px;
}
.image-tile--content.has-arrow::after {
	content: '';
	position: absolute;
	right: 18px; top: 50%;
	transform: translateY(-50%);
	width: 24px; height: 13px;
	background-image: url('data:image/svg+xml,<svg width="24" height="14" viewBox="0 0 24 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M23.8414 6.61535L18.387 1.16088C18.191 0.932089 17.8467 0.905418 17.6179 1.1014C17.3891 1.29733 17.3624 1.64167 17.5584 1.87046C17.5767 1.89179 17.5966 1.91171 17.6179 1.92995L22.1396 6.45715H0.545428C0.244214 6.45715 0 6.70136 0 7.00262C0 7.30388 0.244214 7.54805 0.545428 7.54805H22.1396L17.6179 12.0698C17.3891 12.2657 17.3624 12.61 17.5584 12.8388C17.7544 13.0676 18.0987 13.0943 18.3275 12.8983C18.3488 12.88 18.3687 12.8602 18.387 12.8388L23.8414 7.38437C24.0529 7.1717 24.0529 6.82811 23.8414 6.61535Z" fill="%23006845"/></svg>'); 
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
.image-tile--text {
	font-size: 14px;
	line-height: 1.6;
	font-weight: 500;
}

.image-tile.lg .image-tile--content {
	padding: 24px;
}
.image-tile.lg .image-tile--title {
	font-size: 24px;
	font-weight: 400;
}
.image-tile.lg .image-tile--title:not(:last-child) {
	margin-bottom: 5px;
}
.image-tile--buttons > *:not(:last-child) {
	margin-bottom: 8px;
}
.image-tile--buttons .button {
    width: max-content;
    max-width: 100%;
}



/*
|--------------------------------------------------------------------------
| Template > Content Images
|--------------------------------------------------------------------------
*/
h1.gallery-content--title {
    font-size: 52px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 18px;
}
.gallery-content > .content {
    margin-bottom: 15px;
}
.gallery-grid-container:not(:first-child) {
    margin-top: 70px;
    padding-top: 40px;
    border-top: 1px solid #DFEFDB;
}
.gallery-grid--title {
    letter-spacing: 0.08em;
    margin-bottom: 35px;
}
.gallery-grid--title > svg {
    margin: -4px 8px 0 0;
}
.gallery-grid > div {
    width: 33.333333%;
}
.gallery-grid a {
	width: 100%;
}
.gallery-grid a > div {
	padding: 66.5% 0 0 0;
}

/*
|--------------------------------------------------------------------------
| Template > Content Images
|--------------------------------------------------------------------------
*/
.content-images-page.grid--36 {
    margin-bottom: 0;
}
.content-images-page > div {
    flex: 1;
    min-width: min-content;
}
.content-images-main {
	min-width: 600px;
	height: 100%;
    padding: 70px 60px;
    border-radius: 12px 0;
    background-color: #DFEFDB;
}
.content-images-main > svg {
    margin-bottom: 12px;
}
.content-titles > h1 {
    font-size: 42px;
    font-weight: 400;
	margin-bottom: 8px;
}
.content-titles > h1:last-child {
	margin-bottom: 0;
}
.content-titles .subtitle {
    font-size: 18px;
    font-weight: 500;
}
.content-titles:not(:last-child) {
	margin-bottom: 32px;
}

.content.content-style {
    font-size: 16px;
}
.content.content-style > p {
	line-height: 1.5;
	margin-bottom: 28px;
}
.content.content-style > p:last-child {
	margin-bottom: 0;
}
.content-style h1, .content-style h2, .content-style h3, .content-style h4, .content-style h5 {
	letter-spacing: 0.08em;
	font-weight: 400;
	text-transform: uppercase;
	font-family: 'hanken-grotesk', sans-serif;
	color: #006845;
}
.content-style h1 {
	font-size: 26px;
}
.content-style h2 {
	font-size: 22px;
}
.content-style h3 {
	font-size: 18px; 
}
.content-style h4 {
	font-size: 16px;
}
.content-style h5 {
	font-size: 14px;
}

.content-images-side, .content-images-side--item {
	height: 100%;
}
.content-images-side > div {
    flex: 1;
}
.content-images-side > div:not(:last-child) {
    margin-bottom: 35px;
}
.content-images-side--item {
    border-radius: 12px 0;
    min-height: 275px;
}
.content-images-side--item > img {
	visibility: hidden;
}


/*
|--------------------------------------------------------------------------
| Template > Content Bottom CTA
|--------------------------------------------------------------------------
*/
.friend-banner {
	padding: 18px 35px;
    color: #FFF;
}
.friend-banner > div {
    min-height: 62px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
.friend-banner--usps {
    display: flex;
    align-items: center;
	padding: 0 20px;
}
.friend-banner--usps > span {
    display: flex;
    align-items: center;
    padding: 10px 17.5px;
    font-size: 18px;
    font-weight: 500;
}
.friend-banner--usps > span::before {
    content: '';
    position: relative;
	background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.2502 2.75C17.2502 2.75 16.0835 2.5 14.3335 2.5C9.75016 2.5 1.3335 4.25 2.66683 17.3333C3.5835 17.4167 4.50016 17.5 5.3335 17.5C20.2502 17.5 17.2502 2.75 17.2502 2.75ZM5.8335 14.1667C5.8335 14.1667 5.8335 5.83333 14.1668 5.83333C14.1668 5.83333 9.16683 7.5 5.8335 14.1667Z" fill="white"/></svg>') no-repeat center;
	background-size: contain;
    height: 20px; width: 20px; min-width: 20px;
    margin: -2px 8px 0 0;
}

.bottom-cta-links {
    background-color: #00AF66;
    border-bottom: 1px solid #006845;
}
.bottom-cta-links--inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
.bottom-cta-links--inner > div {
    min-width: 33.33333%;
    flex: 1;
}
.bottom-cta-links--inner > div:not(:last-child) {
	border-right: 1px solid #006845;
}
.bottom-cta-links .button {
    width: 100%; height: 100%;
	border-radius: 0;
	font-size: 18px;
    font-weight: 500;
    align-content: center;
}

.main-inner .friend-banner {
	border-radius: 12px 0;
}
.main-inner .friend-banner:not(:last-child) {
    margin-bottom: 35px;
}
.main-inner .friend-banner > div {
    min-height: 46px;
}
.main-inner .bottom-cta-links {
    background-color: transparent;
}
.main-inner .bottom-cta-links--inner {
	margin: 0 -35px -35px 0;
	width: calc(100% + 35px);
	max-width: 1435px;
}
.main-inner .bottom-cta-links--inner > div {
    padding: 0 35px 35px 0;
	border: 0!important;
}
.main-inner .bottom-cta-links .button {
    border-radius: 4px 0;
}

/*
|--------------------------------------------------------------------------
| Template > Article Items
|--------------------------------------------------------------------------
*/
.blog-grid {
	display: flex;
	flex-wrap: wrap;
}
.blog-grid:not(:last-child) {
	padding-bottom: 70px;
}
.blog-grid > div:not(.article-item-featured) {
    width: 33.3333333%;
}

.article-item {
	min-height: 100%;
    background-color: #FFF;
    overflow: hidden;
    border-radius: 12px 0;
    border: 4px solid #FFF;
	display: flex;
	flex-direction: column;
}
.article-item--image, .article-item--main {
    width: 100%;
}
.article-item--image {
    min-height: 100%;
	padding: 77% 0 0 0;
}
.article-item--main {
	padding: 14px;
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: max-content;
}
.article-item--title {
    font-size: 20px;
    font-family: 'larken', serif;
	margin-bottom: 6px;
}
.article-item--title:not(:last-child) {
	margin-bottom: 6px;
}
.article-item--main > .content {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-webkit-line-clamp: 4;
	text-overflow: ellipsis;
	flex: 1;
	font-size: 16px;
	font-weight: 300;
	margin-bottom: 20px;
}
.article-item--main > .content, .article-item--main > .content > * {
	line-height: 1.4;
}
.article-item--main > .content > p {
    margin-bottom: 5px;
}
.article-item--date {
    font-size: 12px;
    font-weight: 300;
}
.default > .article-item .article-item--date {
	text-align: right;
}

.article-item-featured {
	width: 100%;
}
.article-item-featured > .article-item {
	flex-direction: row;
    padding: 8px;
}
.article-item-featured .article-item--image {
	border-radius: 12px 0 0 0;
    max-width: 445px;
	padding: 24.3% 0 0 0;
}
.article-item-featured .article-item--main {
    padding: 15px 40px;
}
.article-item-featured .article-item--main > *:not(:last-child) {
    margin-bottom: 26px;
}
.article-item-featured .article-item--title {
    font-size: 32px;
}
.article-item-featured .article-item--main > .article-item--title:not(:last-child) {
	margin-bottom: 20px;
}
.article-item-featured .article-item--main > .content {
	font-size: 16px;
}
.article-item--bottom > .button {
    margin-right: 15px;
}

.article-mini {
	height: 100%;
    background-color: #FFF;
    border-radius: 12px 0 12px 0;
	padding: 4px;
    overflow: hidden;
}
.article-mini--image {
    border-radius: 12px 0 0 0;
    width: 100%;
    padding-top: 100%;
}
.article-mini--inner {
    padding: 14px 12px 12px;
}
.article-mini--content:not(:last-child) {
    margin-bottom: 15px;
}
.article-mini--title {
    font-size: 20px;
    font-family: 'larken', sans-serif;
    line-height: 1.1;
    color: #3D3935;
}
.article-mini--title:not(:last-child) {
	margin-bottom: 6px;
}
.article-mini--content > .content {
    font-size: 16px;
    color: #006845;
    font-weight: 300;
    letter-spacing: 0.01em;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
}
.tile-row .article-mini--title {
	font-size: 18px;
}
.tile-row .article-mini--content > .content {
    font-size: 14px;
}
.tile-row .article-grid {
    max-width: 1100px;
}
.tile-row .article-mini--image {
	padding-top: 70%;
}
/*
|--------------------------------------------------------------------------
| Home > Slider
|--------------------------------------------------------------------------
*/
.home-slide {
	min-height: 420px;
}

.home-slider .slick-list {
	width: 100%;
}

.home-slider .home-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.no-js .home-slider .home-slide {
	display: none;
}

.no-js .home-slider .home-slide:first-child {
	display: flex;
}

/* Home Slick Slider arrows */
.home-slider .slick-arrow {}
.home-slider .slick-next {}
.home-slider .slick-arrow:after {}
.home-slider .slick-next:after {}
.home-slider .slick-disabled {}

/* Home Slick Slider dots */
.home-slider .slick-dots {}
.home-slider .slick-dots li {}
.home-slider .slick-dots .slick-active button {}
.home-slider .slick-dots button {}

/*
|--------------------------------------------------------------------------
| Home > Bottom
|--------------------------------------------------------------------------
*/
.home-welcome {}

.home-welcome__title {
	font-size: 32px;
}

.home-welcome__action {
	margin: 12px 0 0 0;
}

/*
|--------------------------------------------------------------------------
| CMS > Template >
|--------------------------------------------------------------------------
*/
.category-list {
	text-align: center;
	font-size: 21px;
	background-color: #006845;
	border-radius: 12px 0;
	overflow: hidden;
}
.category-list__item {
	
}
.category-list__item:not(:last-child) {
	border-bottom: 1px solid #FFF;
}
.category-list__item > a {
	color: #FFF;
	font-size: 16px;
	padding: 16px 0 14px;
	width: 100%;
}
.category-list__item > a:hover {
	background-color: #014c33;
}

.category.search-page .category-main {
    width: 1480px;
    margin: 0 auto;
    flex: unset;
}

/*
|--------------------------------------------------------------------------
| CMS > Contact Us
|--------------------------------------------------------------------------
*/
.cms-sidebar {
    padding: 30px;
    width: 335px;
    margin-right: 36px;
    border-radius: 12px 0;
}
.cms-sidebar__title {
    display: flex;
    align-items: center;
	justify-content: space-between;
    font-size: 32px;
    margin-bottom: 18px;
}
.cms-sidebar__title svg {
    display: none;
}
.cms-page-list li:not(:last-child) {
	margin-bottom: 18px;
}
.cms-page-list a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.cms-page-list a svg {
	margin: -4px 10px 0 0;
}

.help-heading {
    border-radius: 12px 0;
    overflow: hidden;
    border: 1px solid #F1EFB7;
	min-height: 160px;
}
.help-heading:not(:last-child) {
	margin-bottom: 36px;
}
.help-heading--main {
    padding: 36px;
}
.help-heading--main h1 {
	font-size: 52px;
}
.help-heading--main h1:last-child {
	margin-bottom: 0;
}
.help-heading--image img {
	visibility: hidden;
}
.help-contact--form {
	height: 100%;
    padding: 36px;
    border: 1px solid #F1EFB7;
    border-radius: 12px 0;
}
.help-contact--form .form-title {
    margin-bottom: 30px;
    color: #3D3935;
}
.help-contact > * {
    flex: 1;
}
.help-contact--details {
    height: 100%;
	display: flex;
	flex-direction: column;
}
.help-contact--details > * {
	min-height: max-content;
	flex: 1;
}
.help-contact--location {
	padding: 36px;
}
.help-contact--location > *:not(:last-child) {
    margin-bottom: 36px;
}
.help-details--title {
    font-size: 24px;
    font-family: 'larken', serif;
}
.help-contact--location .content {
    line-height: 1.6;
    font-weight: 500;
}
.help-contact--details > .contact-map iframe {
	min-height: 360px;
	width: 100%;
}

/*
|--------------------------------------------------------------------------
| CMS > Downloads
|--------------------------------------------------------------------------
*/
.download-block {
    padding: 18px;
    border: 1px solid #EAEAEA;
}
.download-block:not(:last-child) {
	border-bottom: 0;
}
.download-block__title {
    font-weight: 600;
}
.download-block__title, .download-block__description {
	margin-bottom: 8px;
}
.download-block__main > .button {
	margin-top: 10px;
}
.download-block__image {
    margin-left: 15px;
}

/*
|--------------------------------------------------------------------------
| CMS > Story
|--------------------------------------------------------------------------
*/
.timeline-cont:not(:first-child) {
    margin-top: 100px;
}
.timeline-heading {
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: 44px;
}
.timeline-heading__date {
    font-size: 84px;
    font-family: 'larken', serif;
    letter-spacing: 0.03em;
    margin-top: 10px;
}

.timeline--inner {
    position: relative;
}
.timeline--inner::before {
	content: '';
	top: 0; left: 50%; bottom: 0;
	transform: translateX(-50%);
	position: absolute;
	width: 1px;
	background-color: #E1E000;
}
.timeline-item {
	display: flex;
	justify-content: space-between;
	background-color: #FFF;
	border: 1px solid #E1E000;
	width: calc(50% - 20px);
}
.timeline-item:nth-child(odd) {
	margin: -20px 0 0 auto;
}
.timeline-item:nth-child(even) {
	margin: -20px auto 0 0;
}
.timeline-item:first-child {
	margin-top: 0;
}
.timeline-item__main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
    padding: 30px;
}
.timeline-item__title {
    font-size: 58px;
    font-family: 'larken';
    font-weight: 300;
    letter-spacing: 0.03em;
}
.timeline-item__image {
    min-height: 150px;
    width: 245px;
}

/*
|--------------------------------------------------------------------------
| CMS > Garden Subs
|--------------------------------------------------------------------------
*/
.inner-nav--toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 20px 16px;
	background-color: #00AF66;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600; 
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #FFF;
}
.inner-nav--toggle svg {
	-webkit-transition: ease-in-out .2s;
	transition: ease-in-out .2s;
}
.inner-nav--toggle.open svg {
	transform: rotate(180deg);
}
.inner-nav--toggle {
	display: none;
}
.inner-nav {
    border-bottom: 1px solid #DFEFDB;
}
.inner-nav > div {
    padding: 4px 20px 2px;
}
.inner-nav a {
	font-size: 14px;
	position: relative;
    padding: 10px 10px 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
	color: #006845;
}
.inner-nav a.sel::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 10px;
    width: calc(100% - 20px);
    height: 1px;
    background-color: #006845;
}
.inner-nav a:not(.sel):hover {
	opacity: 0.8;
}

.content-w-side > div:not(:last-child) {
	margin-bottom: 70px;
}
.content-side {
    width: 455px;
    margin-right: 35px;
}
.content-side > div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
    padding: 30px;
    background-color: #DFEFDB;
    border-radius: 12px 0;
}
.content-side > div:not(:last-child) {
	margin-bottom: 35px;
}

.content-side-links {
    background-color: unset !important;
    padding: 0 !important;
	overflow: hidden;
	border-radius: 12px 0;
}
.content-side-links > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #006845;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 15px 15px 12px;
}
.content-side-links > a:not(:last-child) {
	margin-bottom: 1px;
}
.content-side-links > a > svg {
    margin: -4px 10px 0 0;
}
.content-side-links > a:hover {
	background-color: #014c33;
}

.content-side--title {
	text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
}
.content-side--title:not(:last-child) {
	margin-bottom: 16px;
}
.content-side--text, .content-side--text > * {
    line-height: 1.4;
}
.content-side--text:not(:last-child) {
    margin-bottom: 18px;
}
.content-side--text strong {
    font-weight: 600;
}
.content-side--logo:not(:last-child) {
    margin-bottom: 18px;
}

.gallery-row-img {
	display: block;
    min-height: 100%;
    padding: 71% 0 0 0;
}

.content-main > .content:not(:last-child) {
    margin-bottom: 70px;
}

.content-links > div:not(:last-child) {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #DFEFDB;
}
.content-link--title {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #006845;
}
.content-link--title:not(:last-child) {
	margin-bottom: 6px;
}
.content-links > div > div:not(:last-child) {
    margin-right: 40px;
}

.content-gallery {
	
}

/*
|--------------------------------------------------------------------------
| CMS > FAQ
|--------------------------------------------------------------------------
*/
.dd-section {
	
}


.dd-section--title {
    font-size: 18px;
    font-weight: 400;
    color: #006845;
    letter-spacing: 0.02em;
}

li.dd-block {
	margin: 0 0 4px;
}
li.dd-block:not(:last-child) {
	border-bottom: 1px solid #DFEFDB;
}

.dd-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 19px 18px 17px;
    cursor: pointer;
}
.dd-title > svg {
    margin: -2px 8px 0 0;
}

.dd-title:not(.dd-plus):after {
	content: '';
	position: relative;
	height: 8px; width: 18px;
	-webkit-transition: .5s all ease-out;
	transition: .5s all ease-out;
	background-image: url('data:image/svg+xml,<svg width="18" height="8" viewBox="0 0 18 8" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_216_6611)"><path d="M9 7.37499C8.92623 7.37589 8.85308 7.36134 8.78527 7.33228C8.71746 7.30321 8.65648 7.26028 8.60625 7.20624L3.54375 2.14374C3.31875 1.91874 3.31875 1.56999 3.54375 1.34499C3.76875 1.11999 4.1175 1.11999 4.3425 1.34499L9.01125 6.01374L13.6687 1.35624C13.8937 1.13124 14.2425 1.13124 14.4675 1.35624C14.6925 1.58124 14.6925 1.92999 14.4675 2.15499L9.405 7.21749C9.2925 7.32999 9.14625 7.38624 9.01125 7.38624L9 7.37499Z" fill="%233D3935"/></g><defs><clipPath id="clip0_216_6611"><rect width="18" height="7.875" fill="white" transform="translate(0 0.0625)"/></clipPath></defs></svg>');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.dd-grouped:not(:last-child) {
	margin-bottom:25px;
}
.dd-block-content {
    padding: 26px 18px;
    border: 1px solid #DFEFDB;
}
.dd-block-content:not(:last-child) {
	border-bottom: 0;
}
.dd-grouped .dd-block {
    margin: 0;
	border: 1px solid #EAEAEA;
}
.dd-grouped .dd-block:not(:last-child) {
	border-bottom: 0;
}
.dd-title.dd-title-bold {
    font-weight: 700;
    letter-spacing: 0;
    text-transform: capitalize;
}
.dd-grouped .dd-text {
	padding: 0 18px 18px;
}

.dd-open:after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.dd-text {
	padding: 0 24px 24px;
}

.dd-title span {
	flex: 1;
	padding: 0 18px 0 0;
}
.dd-text a {
    color: #006845;
    text-decoration: underline;
}
.dd-text a:hover {
	color: #014c33;
}
.bg-secondary li.dd-block, 
.listing-dd li.dd-block, 
.bg-secondary .dd-section, 
.listing-dd .dd-section {
	border-color: #FFF;
}

.dd-block.bg-secondary {
	margin-bottom: 1px;
	border-bottom: unset;
}
.dd-plus::before, .dd-plus::after {
	content: '';
	position: absolute;
	top: 50%; right: 25px;
	transform: translateY(-50%);
	width: 12px; height: 2px;
	border-radius: 10px;
	background-color: #3D3935;
	-webkit-transition: ease-in-out .2s;
	transition: ease-in-out .2s;
}
.dd-plus::after {
	transform: translateY(-50%) rotate(90deg);
}
.dd-plus.dd-open::after {
	transform: translateY(-50%) rotate(0deg);
}

/*
|--------------------------------------------------------------------------
| CMS > Page Search Forms
|--------------------------------------------------------------------------
*/
.search-form--input, .search-form--input::placeholder {
	font-size: 14px;
	color: #3D3935;
}

.faq-search-form, 
.blog-search-form {
    position: relative;
}
.faq-search .search-form--submit, 
.blog-search .search-form--submit {
	display: flex;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    background-color: transparent !important;
}
#faqFormNoResultsError, #blogFormNoResultsError { 
    display: none;
    margin: 10px 0 0;
}

.faq-search {
    padding: 30px;
    border: 1px solid #EAEAEA;
    margin-bottom: 25px;
}
.faq-search .search-form--input {
	width: 100%;
	border: 1px solid #EAEAEA;
	border-radius: 12px 0;
	padding: 11px 10px 5px 50px;
	min-height: 46px;
}
.faq-search .search-form--input, .faq-search .search-form--input::placeholder {
	letter-spacing: 0.08em;
}
.faq-search .search-form--input::placeholder {
	text-transform: uppercase;
}

.blog-search {
    width: 100%;
    max-width: 700px;
    border-radius: 12px 0;
    margin: 0 auto;
    padding: 16px 8px 11px 16px;
    /* background-color: #00AF66; */
    color: #3D3935;
}
.blog-search:not(:last-child) {
	margin-bottom: 70px;
}
.blog-search > * {
	margin: 0 18px 15px 0;
}
.blog-search > span {
	text-transform: uppercase;
	/* color: #FFF; */
	letter-spacing: 0.08em;
	margin-top: 4px;
}
.blog-search .search-form--input {
    border-radius: 12px 0 0 0;
    padding: 10px 20px 8px 50px;
}
.search-form--submit-inline {
    border-radius: 0 0 12px 0;
}

.blog-page--return {
    margin: -35px 0 35px;
}
.return-link {
    display: flex;
    align-items: center;
    padding: 3px 0 0;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #006845;
}
.return-link svg {
    margin: -4px 8px 0 0;
}

.article {
    background-color: #FFF;
    padding: 60px;
    margin-bottom: 36px;
}
.article--title {
    margin: 0;
    font-size: 36px;
    font-weight: 400;
    padding: 35px 0 35px;
    border-bottom: 1px solid #3D3935;
}
.article-content--date {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 20px 0 19px;
    border-bottom: 1px solid #222;
}
.article-content {
    padding-top: 40px;
}
.article-content > * {
    line-height: 1.5;
}
.article-content .image {
    display: flex;
    justify-content: center;
}
.article-content a {
	text-decoration: underline;
}

.comments-title {
    color: #006845;
    font-family: 'hanken-grotesk', sans-serif;
    font-weight: 300;
    font-size: 24px;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}
.comment-list {
    margin-bottom: 18px;
}
.comment-list .comment {
    border: 1px solid #006845;
    padding: 35px;
    margin-bottom: 8px;
	font-weight: 300;
	color: #3D3935;
}
.comment-list .comment .comment-list--info {
    margin-top: 18px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.comment-list .comment .comment--reply {
    margin-top: 20px;
    padding-left: 20px;
    border-left: 1px solid #006845;
}
.comment-list .comment .comment--reply div {
    font-weight: 600;
    margin-bottom: 5px;
}
.comment-overflow {
	display: none;
}
.comments-form {
    padding: 35px;
    background-color: #FFF;
}
.comments-form .input-grid {
    margin: 0 -18px -18px 0;
}
.comments-form .input-grid > .input {
    margin-bottom: 18px;
	padding: 0 18px 0 0;
}
.form-bottom {
    margin-top: 18px;
}
.form-bottom > small {
    font-size: 12px;
    font-weight: 300;
}
.form-bottom--note {
    font-size: 15px;
}
.blog-related--title {
    margin-bottom: 25px;
}
.blog-related > *:not(:last-child) {
    margin-bottom: 35px;
}
.blog-related .article-item {
    border: 1px solid #EAEAEA;
}

/*
|--------------------------------------------------------------------------
| Shop > Category
|--------------------------------------------------------------------------
*/
.category {
	position: relative;
}
.category-main {
	flex: 1;
	padding: 35px;
}

.cat-grid-alt > div {
    width: 16.66666%;
}
.cat-grid-alt > div:nth-child(6n+1) > a {
	background-color: #F1EFB7;
}
.cat-grid-alt > div:nth-child(6n+2) > a {
	background-color: #F7CED7;
}
.cat-grid-alt > div:nth-child(6n+3) > a {
	background-color: #D5EBEE;
}
.cat-grid-alt > div:nth-child(6n+4) > a {
	background-color: #FCEEA8;
}
.cat-grid-alt > div:nth-child(6n+5) > a {
	background-color: #DFEFDB;
}
.cat-grid-alt > div:nth-child(6n+6) > a {
	background-color: #FCEAF3;
}
.cat-grid-alt a {
    display: flex;
    justify-content: center;
    align-items: center;
	text-align: center;
    width: 100%; height: 100%;
    min-height: 120px;
    padding: 15px 20px 10px;
    font-size: 40px;
    font-family: 'larken';
}

.category-heading {
    padding: 70px;
	margin-bottom: 35px;
	border-radius: 12px 0;
	color: #FFF;
}
.category-heading > h1 {
	font-size: 32px;
	font-weight: 400;
	margin-bottom: 18px;
	color: #FFF;
}
.category-heading > .content {
    font-size: 16px;
}
.category-heading > .content > p {
	line-height: 1.4;
}
.category-heading-navtrail {
	margin-bottom: 10px;
}
.category-heading-navtrail, .category-heading-navtrail a {
    color: #FFF;
}
.category-heading-navtrail > span {
	display: none;
}

.category-search-heading {
    max-width: 660px;
    margin: 37px auto 72px;
}
.category-search-heading h1 {
	text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
}
.category-search-heading .onpage-search {
	border: 1px solid #DFEFDB;
}

.search-page-results {
	position: relative;
}
.search-page-results > .message {
    width: 100%;
}
.search-page-results.has-articles .product-grid--item.segment-20 {
    width: 25%;
}

.search-page-results.has-articles .category-inner {
    padding-right: 295px;
}


.search-articles {
	display: flex;
	margin-top: 30px;
}
.search-article {
    width: 25%;
}

.category-inner + .search-articles {
    position: absolute;
    right: 0;
    top: 0;
    width: 280px;
    height: 100%;
    margin-left: 15px;
	margin-top: 0;
    padding-left: 15px;
    border-left: 1px solid #DFEFDB;
}
.category-inner + .search-articles .search-article {
	width: 100%;
}
.search-articles .article-grid {
    max-height: 100%;
	height: 100%;
}

.search-articles--inner {
    overflow-y: auto;
    margin-bottom: 0;
}
.category-inner + .search-articles .search-articles--inner {
    flex-direction: column;
    flex-wrap: unset !important;
}
.search-articles--inner::-webkit-scrollbar {
	width: 10px;
}
.search-articles--inner::-webkit-scrollbar-track {
	background-color: #F1F1F1;
}
.search-articles--inner::-webkit-scrollbar-thumb {
	background-color: #006845;
	border-radius: 10px;
}

.search-article .article-item {
    border: 1px solid #DFEFDB;
    padding: 4px;
	min-height: 100%;
}
.category-inner + .search-articles .search-article .article-item {
	min-height: unset;
}
.search-articles--title {
    font-size: 20px;
    font-family: 'larken', serif;
    text-align: center;
    width: 100%;
	margin-bottom: 15px;
}
.category-inner + .search-articles .article-item--bottom {
	flex-direction: column-reverse;
	align-items: flex-start;
}
.search-article .article-item--date {
	margin-bottom: 6px;
}
.search-article .article-item--bottom > .button {
	max-width: max-content;
}

.category--sort-bar {
    margin-bottom: 10px;
}

.open-filters {
	background-color: #006845;
    padding: 13px 12px 10px;
    border-radius: 8px 0;
    margin-bottom: 10px;
	cursor: pointer;
	-webkit-transition: ease-in-out .2s;
	transition: ease-in-out .2s;
	font-size: 16px;
    color: #FFF;
}
.open-filters svg {
	margin-right: 4px;
}
.open-filters:hover {
	background-color: #014c33;
}

.filter-sidebar {
    position: absolute;
	display: flex;
    right: 0; top: 0; bottom: 0;
    background-color: #FFF;
    width: 295px;
    max-width: 100%;
	-webkit-transition: ease-in-out .5s;
	transition: ease-in-out .5s;
	margin-right: -295px;
    z-index: 100;
}
.category.filters-open .filter-sidebar {
	margin-right: 0;
}
.filter-sidebar--inner {
    width: 100%; 
    overflow-y: auto;
}
.filter-sidebar--inner::-webkit-scrollbar {
	width: 10px;
}
.filter-sidebar--inner::-webkit-scrollbar-track {
	background-color: #F1F1F1;
}
.filter-sidebar--inner::-webkit-scrollbar-thumb {
	background-color: #006845;
	border-radius: 10px;
}
.filter-sidebar--backdrop {
	position: absolute;
	right: 100%; top: 0; bottom: 0;
	width: 3000px;
	-webkit-transition: ease-in-out .2s;
	transition: ease-in-out .2s;
	background-color: rgba(0,0,0,0.4);
	opacity: 0;
	pointer-events: none;
}
.category.filters-open .filter-sidebar--backdrop {
	opacity: 1;
	pointer-events: all;
}
.filter-sidebar--close {
    position: absolute;
    top: 15px; right: 100%; 
	width: 0; height: 32px;
    background-color: #006845;
    border-radius: 8px 0 0 8px;
	background-image: url('data:image/svg+xml,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 11L11 1M11 11L1 1" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	background-position: center;
	background-repeat: no-repeat;
	-webkit-transition: ease-in-out .2s;
	transition: ease-in-out .2s;
	overflow: hidden;
    cursor: pointer;
}
.category.filters-open .filter-sidebar--close {
	width: 32px;
}
.filter-sidebar--close:hover {
	background-color: #014c33;
}

.sidebar {
	width: 310px;
	flex-shrink: 0;
	background-color: #006845;
}

.sidebar__segment {
	/*border-bottom: 1px solid #DFEFDB;*/
}

.sidebar-content {
	overflow: hidden;
	width: 100%;
}

.category--inner {
    width: 100%;
}

/* Category grid */
.category-grid {
	margin-bottom: 30px;
}
.category-grid > div {
	width: 20%;
}
.category-grid > div > a {
	display: flex;
    flex-direction: column;
    background-color: #DFEFDB;
    width: 100%;
    height: 100%;
    border-radius: 12px 0;
	overflow: hidden;
}
.category-grid--item--image {
    width: 100%;
    padding: 68% 0 0;
}
.category-grid--item--text {
    font-size: 18px;
    font-family: 'larken';
    font-weight: 500;
    padding: 13px 12px 10px;
    text-align: center;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.category-item {}

.page-counter {
    padding-bottom: 10px;
    margin: 20px 0 20px 15px;
    font-size: 24px;
    border-bottom: 1px solid #2d2d2d;
	width: 100%;
}

.sidebar__categories--title {
	display: flex;
	align-items: center;
	justify-content: space-between;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    padding: 20px 20px 16px;
    background-color: #00AF66;
    color: #FFF;
}
.sidebar__categories--title::after {
	content: '';
	position: relative;
	display: none;
	width: 30px; height: 14px;
	margin: -2px 0 0 15px;
	-webkit-transition: ease-in-out .2s;
	transition: ease-in-out .2s;
	background-image: url('data:image/svg+xml,<svg width="22" height="10" viewBox="0 0 22 10" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_394_2)"><mask id="mask0_394_2" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="22" height="10"><path d="M22 0.0761719H0V9.70117H22V0.0761719Z" fill="white"/></mask><g mask="url(%23mask0_394_2)"><path d="M11 9.01375C10.9098 9.01485 10.8204 8.99707 10.7376 8.96155C10.6547 8.92603 10.5801 8.87355 10.5187 8.8075L4.33125 2.62C4.05625 2.345 4.05625 1.91875 4.33125 1.64375C4.60625 1.36875 5.0325 1.36875 5.3075 1.64375L11.0137 7.35L16.7062 1.6575C16.9812 1.3825 17.4075 1.3825 17.6825 1.6575C17.9575 1.9325 17.9575 2.35875 17.6825 2.63375L11.495 8.82125C11.3575 8.95875 11.1787 9.0275 11.0137 9.0275L11 9.01375Z" fill="%23FFFFFF"/></g></g><defs><clipPath id="clip0_394_2"><rect width="22" height="9.77778" fill="white"/></clipPath></defs></svg>'); 
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.sidebar__categories--title.open::after {
	transform: rotate(180deg);
}
.sidebar__categories--title + ul {
	display: none;
}
.sidebar__categories > ul {
    padding: 16px 0;
}
.sidebar__categories > ul > li:not(:last-child) {
    margin-bottom: 8px;
}
.sidebar__categories a {
	color: #FFF;
	font-weight: 400;
	padding: 5px 20px 1px;
	width: 100%;
}
.sidebar__categories a.sel {
    font-weight: 500;
}
.sidebar__categories a:not(.sel):hover {
	opacity: 0.8;
}
.sidebar__categories > ul > li > a {
    font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 400;
}
.sidebar__categories > ul li ul {
	display: none;
}
.sidebar__categories > ul li.open > ul:not(.sidebar-list-overflow), 
.sidebar__categories > ul li > a.sel + ul {
	display: block;
}

.sidebar-list-overflow {
    display: none;
}
.sidebar-list-overflow-btn {
    display: flex;
	align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #FFF;
    font-size: 14px;
    padding: 15px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    -webkit-transition: ease-in-out .2s;
    transition: ease-in-out .2s;
}
.sidebar__categories > ul li:not(.open) .sidebar-list-overflow-btn {
	display: none;
}
.sidebar-list-overflow-btn::before {
	content: 'More Categories';
	position: relative;
}
.sidebar-list-overflow-btn.open::before {
	content: 'Less Categories';
}
.sidebar-list-overflow-btn::after {
	content: '';
	position: relative;
	width: 12px; height: 7px;
	-webkit-transition: ease-in-out .2s;
	transition: ease-in-out .2s;
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url('data:image/svg+xml,<svg width="12" height="7" viewBox="0 0 12 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 6.37502C5.92623 6.37592 5.85308 6.36137 5.78527 6.33231C5.71746 6.30325 5.65648 6.26031 5.60625 6.20627L0.54375 1.14377C0.31875 0.91877 0.31875 0.57002 0.54375 0.34502C0.76875 0.12002 1.1175 0.12002 1.3425 0.34502L6.01125 5.01377L10.6687 0.35627C10.8937 0.13127 11.2425 0.13127 11.4675 0.35627C11.6925 0.58127 11.6925 0.93002 11.4675 1.15502L6.405 6.21752C6.2925 6.33002 6.14625 6.38627 6.01125 6.38627L6 6.37502Z" fill="%23FFFFFF"/></svg>');
}
.sidebar-list-overflow-btn.open::after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}


/*
|--------------------------------------------------------------------------
| Shop > Filters
|--------------------------------------------------------------------------
*/
.filter-subcategories .filter-title, #sidebar--mbl-filters {
	display: none;
}

.grid-filters-subcategories {
	display: block;
}

.filter-subcategories {
	display: none;
}

.filters .sidebar__segment {
	padding: 0;
	border-top: 1px solid #DFEFDB;
}
.filters .sidebar__segment:first-child {
	border-top: 0;
}

.filters-bottom {
	padding: 20px 18px;
}
.filters-selected {
    font-size: 14px;
    font-weight: 500;
    color: #006845;
    margin-bottom: 10px;
}

.filters__title {
	height: 64px;
	padding: 0 15px;
}

.filters__title svg {
	display: none;
	flex-shrink: 0;
	fill: #666;
	width: 11px;
	height: 7px;
}

#mbl-filters, .filter-title {
    padding: 21px 18px 17px;
    cursor: pointer;
}

#mbl-filters span, .filter-title span {
    display: block;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    color: #006845;
    flex: 1;
}

.filter-title svg {
	width: 12px;
	height: 7px;
	flex-shrink: 0;
	margin-top: -2px;
}

.filter-open .filter-title svg {
	transform: rotate(-180deg)
}

.filter ul {
	padding: 0 15px 15px 15px;
}

.filter--links a {
	position: relative;
	padding: 1px 0 1px 25px;
	font-size: 14px;
}

.filter--links a:before {
	content: '';
	position: absolute;
	height: 14px;
	width: 14px;
	top: 2px;
	left: 0;
	background-color: #fff;
	border: 1px solid #DFEFDB;
    border-radius: 10px;
}

.filter--links .filter-selected a {
	color: #1e1e1e;
}

.filter--links .filter-selected a:before {
    background-color: #006845;
    border: none;
}

.filter-products-count {
	margin-left: 5px;
	padding-right: .6em;
	padding-left: .6em;
	border-radius: 10rem;
	font-weight: 700;
	font-size: 75%;
	vertical-align: baseline;
	background-color: #014c33;
	color: #fff;
	float: right;
}

#slider-range.ui-widget-content {
	background-color: #ffffff;
	height: 8px;
	border: 1px solid #e7e7e7;
	margin: 0 8px;
}

#slider-range .ui-widget-header {
	background-color: #e7e7e7;
	/*transition: left 300ms ease, width 300ms ease;*/
}

#slider-range .ui-slider-handle {
	height: 14px;
	width: 14px;
	border-radius: 14px;
	background-color: #006845;
	border: none;
	color: #666666;
	font-weight: 700;
	cursor: pointer;
	/*transition: left 300ms ease;*/
}

#slider-range .ui-slider-handle:last-of-type .tooltip {
	right:0!important;
}

#price_filter {
	padding: 14px 0 0 0;
}

#price_filter .tooltip {
	float: left;
	font-weight: 700;
	margin-bottom: 5px;
}

#price_filter #range-tooltip-2 {
	float: right;
}

#price_submit {
	clear: both;
}

.filter-swatch {
	padding: 0 2px 2px 0;
}

.filter-swatch--inner {
	position: relative;
	border: 1px solid #dde2e5;
	padding: 1px;
	height: 30px;
	border-radius: 3px;
	transition: background 300ms ease;
	background: url(/images/style/basic/icon-swatch-tick.png) no-repeat center right 8px;
}

.filter-swatch.sel .filter-swatch--inner {
	background-color: #1e1e1e;
	background: url(/images/style/basic/icon-swatch-tick.png) no-repeat center right 8px #1e1e1e;
	border: none;
}

.filter-swatch.sel .filter-swatch--swatch {
	top: 3px; left: 3px; bottom: 3px;
}

.filter-swatch--swatch {
	position: absolute;
	top: 2px;
	left: 2px;
	bottom: 2px;
	width: 24px;
	background-color: #e7e7e7;
	border-radius: 3px;
	border: 2px solid rgba(0,0,0,.2);
}

.filter--loading {
	clear: both;
}

.filter--loading .spinner {
	border-top: 0.35em solid rgba(0, 0, 0, 0.2);
    border-right: 0.35em solid rgba(0, 0, 0, 0.2);
    border-bottom: 0.35em solid rgba(0, 0, 0, 0.2);
    border-left: 0.35em solid #000000;
	width: 2em;
	height: 2em;
}
.category-main .spinner {
	border-top: 1.1em solid rgba(0, 0, 0, 0.2);
    border-right: 1.1em solid rgba(0, 0, 0, 0.2);
    border-bottom: 1.1em solid rgba(0, 0, 0, 0.2);
    border-left: 1.1em solid #000000;
	width: 10em;
	height: 10em;
}

/*
|--------------------------------------------------------------------------
| Shop > Navtrail
|--------------------------------------------------------------------------
*/
.shop--navtrail {
}

.shop--navtrail .breadcrumb-trail {
	max-width: 60%;
}

.sort-by-container {
	display: flex;
}
.sort-by-container .sort-by:last-child {
    margin-right: 0;
}

.sort-by {
	position: relative;
	border-radius: 2px;
	margin:0 10px 10px 0;
}
.sort-by .input {
	margin-bottom: 0;
}

.sort-by .select2-container--default .select2-selection--single .select2-selection__rendered,
.sort-by .select2-container .select2-selection--single {
	
}

.sort-by .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 40px;
	background: url(/images/style/basic/icon-arrow-double-white.png) no-repeat center center;
}

.sort-by .select2-container--default .select2-selection--single .select2-selection__rendered {
	height: 40px;
}

.sort-by .select2-container--default .select2-selection--single {
	background-color: transparent;
}

/*
|--------------------------------------------------------------------------
| Shop > Category Page > Category Display
|--------------------------------------------------------------------------
*/
.product-grid {
	margin-left:-15px;
	display: flex;
	flex-wrap: wrap;
}

.product-grid--item {
	padding: 0 0 15px 15px;
}

.product-inner--image {
	padding-bottom: 15px;
}

.product-image__link,
.product-inner--image img {
	display: block;
	width: 100%;
}
.product-inner--image {
    padding: 5px;
}
.product-image__link {
    display: flex;
    border-radius: 12px 0;
    overflow: hidden;
}
.product-grid--item-inner {
	position: relative;
	display: flex;
	flex-direction: column;
    background-color: #fff;
    border: 1px solid #DFEFDB;
    border-radius: 12px 0;
    overflow: hidden;
}
.product-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
	padding: 12px;
}
.product-inner--info {
    flex: 1;
}
.product-inner--titles {
	padding-bottom: 10px;
}

.product-inner--title,
.product-inner--subtitle,
.product-inner--row {
	padding: 0 0 8px 0;
}
.product-inner--title {
    font-size: 18px;
    font-weight: 500;
    font-family: 'larken';
}
.product-inner--subtitle {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.product--option-names {
	display: block;
	color: #444;
}

.product--option-name {
	margin: 0 8px 0 0;
}

.product-inner--swatches {
	float: right;
	width: 50%;
}

.product-inner--swatch {
	float: right;
	height: 18px;
	width: 18px;
	margin: 1px 1px 0 0;
	border-radius: 2px;
	border: 2px solid #e7e7e7;
}

.product-price {
	min-height:26px;
	font-weight: 500;
}
.product-price-web {
    font-size: 18px;
    color: #00AF66;
}
.product-price-rrp {
	font-size: 12px;
	line-height: 26px;
	text-transform: uppercase;
}

.on-offer-badge {
	position: absolute;
	top: 10px; left: 10px;
	width: 56px;
	height: 56px;
	border-radius: 28px;
	background-color: #006845;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 11px;
	letter-spacing: 0.1em;
	font-weight: 700;
	text-align: center;
	pointer-events: none;
}

.comparison-bar {
	display: none;
	position: fixed;
	right: 0; bottom: 0; left: 0;
	background-color: #666666;
	padding: 10px 30px;
	z-index: 60;
	color: #fff;
}

.comparison-bar--title {
	display: block;
	margin: 11px 50px 0 0;
	width: 160px;
	font-weight: 700;
	font-size: 16px;
	line-height: 14px;
	float: left;
}

.animate .comparison-bar--product:last-child {
    -webkit-animation: comparisionProductEntrance .5s;
	animation: comparisionProductEntrance .5s;
}

@-webkit-keyframes comparisionProductEntrance {
	0%   { opacity: 0;transform: translateX(10px); }
	100% { opacity: 1;transform: translateX(0px); }
}
@-moz-keyframes comparisionProductEntrance {
	0%   { opacity: 0;transform: translateX(10px); }
	100% { opacity: 1;transform: translateX(0px); }
}
@-o-keyframes comparisionProductEntrance {
	0%   { opacity: 0;transform: translateX(10px); }
	100% { opacity: 1;transform: translateX(0px); }
}
@keyframes comparisionProductEntrance {
	0%   { opacity: 0;transform: translateX(10px); }
	100% { opacity: 1;transform: translateX(0px); }
}

.comparison-bar--products {
	overflow: hidden;
}

.comparison-bar--product {
	padding: 0 4px 0 0;
}

.comparison-bar--product-inner {
	position: relative;
	background-color: rgba(0,0,0,0.3);
	height: 50px;
}

.comparison-bar--product-image {
	float: left;
}

.comparison-bar--product-title-cont {
	display: block;
	padding: 10px 14px;
	font-weight: 700;
	float: none;
	overflow: hidden;
}

.comparison-bar--product-title {
	margin: 0 4px 0 0;
	float: left;
	height: 20px;
}

.comparison-bar--product-option-name {
	display: none;
	opacity: 1;
	font-size: 11px;
	padding: 2px 6px;
	margin: 0 4px 0 0;
	background: rgba(0,0,0,0.2);
	border-radius: 2px;
	white-space: nowrap;
	float: left;
}

.comparison-bar--product-option-name:empty {
	display: none;
}

.comparison-bar--product-overlay {
	display: none;
	cursor: pointer;
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background-color: rgba(30, 30, 30, 0.9);
	z-index: 10;
}

.comparison-bar--product-inner:hover .comparison-bar--product-overlay {
	display: block;
}

.comparison-bar--product-overlay-inner {
	display: table;
    width: 100%;
    height: 100%;
	text-align: center;
}

.comparison-bar--product-overlay-inner .dblc {
	vertical-align: middle;
	font-weight: 700;
	font-size: 12px;
}


.comparison-bar--product-overlay-inner span {
	padding: 2px 0 0 20px;
}

.comparison-bar--loading {
	display: none;
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background-color: rgba(30, 30, 30, 0.9);
	color: #fff;
	text-align: center;
}

.comparison-bar.loading .comparison-bar--loading {
	display: block;
}

/*
|--------------------------------------------------------------------------
| Shop > Category Page > Category Display Hover
|--------------------------------------------------------------------------
*/
@-webkit-keyframes fadeIn {
	0%   { opacity: 0; }
	100% { opacity: 1; }
}
@-moz-keyframes fadeIn {
	0%   { opacity: 0; }
	100% { opacity: 1; }
}
@-o-keyframes fadeIn {
	0%   { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes fadeIn {
	0%   { opacity: 0; }
	100% { opacity: 1; }
}

.product-grid--item-inner:hover .product-overlay {
	animation: 300ms fadeIn forwards;
}

.product-overlay {
	position: absolute;
	top: 0; right: 0; left: 0;
	min-height: 42px;
	overflow: hidden;
	z-index: 20;
	opacity: 0;
	transition: transform 300ms ease;
}

.product-overlay-top {
	position: absolute;
	color: #c0bfbf;
	height: 34px;
	padding: 10px;
	top: 0;	right: 0; left: 0;
	z-index: 999;
}

.product-overlay-top--button {
	float: left;
	background-color: #006845;
	border-radius: 5px;
	padding: 4px 5px 3px;
	font-size: 11px;
	color: #fff;
	cursor: pointer;
	transition: background .3s ease;
}

.product-overlay-top--button:last-child {
	float: right;
}

.product-overlay-top--button:hover {
	background-color: #02a1c7;
}

.product-overlay-content {
	position: absolute;
	top: 34px; right: 0; bottom: 80px; left: 0;
}

.product-overlay-content-inner {
	padding: 20px;
	text-align: center;
}

.product-overlay--title {
	padding: 6px 0 0 0;
}

.product-overlay--title a {
	color: #fff;
	text-align: center;
	font-size: 15px;
}

.product-overlay-bottom {
	position: absolute;
	bottom: 0; left: 0; right: 0;
}

/*
|--------------------------------------------------------------------------
| Category Model
|--------------------------------------------------------------------------
*/
.listing--info {
	padding: 30px 30px 30px 30px;
	border: 4px solid #e7e7e7;
	border-top: 0;
	border-bottom: none;
	background: rgb(238,238,238);
	background: -moz-linear-gradient(top, rgba(238,238,238,1) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(top, rgba(238,238,238,1) 0%,rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom, rgba(238,238,238,1) 0%,rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e7e7e7', endColorstr='#ffffff',GradientType=0 );
}

.listing--other {
	float: right;
}

.listing--review {
	text-align: right;
	padding: 8px 0;
}

.listing--price {
	float: left;
}

.listing--price strong {
	display: block;
	font-weight: 700;
	font-size: 30px;
	color: #1e1e1e;
}

.listing--price span {
	display: block;
	font-weight: 700;
	font-size: 13px;
	color: #666666;
}

.listing--points {
	color: #006845;
	font-weight: 700;
	font-size: 13px;
}

.listing--points span {
	color: #1e1e1e;
}

.listing-pricebreaks table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
	margin-bottom: 20px;
}

.listing-pricebreaks th,
.listing-pricebreaks td {
	border: 1px solid #aaa;
	padding: 5px;
}

.listing-pricebreaks th {
	text-align: left;
}

.listing-pp-messaging > span {
    padding-bottom: 10px;
    display: inline-block;
    width: 100%
}

/*
|--------------------------------------------------------------------------
| Listing
|--------------------------------------------------------------------------
*/

.listing-page .breadcrumb-trail {
    font-weight: 500;
    margin-bottom: 18px;
}
.listing-side {
    position: relative;
    flex: 1;
    z-index: 2;
}

.listing-main {
	position: relative;
	width: 615px;
    padding-right: 35px;
	float: left;
	z-index: 2;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.listing-side--inner {
	position: relative;
	width: 100%;
	float: right;
}

.listing-main--inner {
    width: 100%;
}

.listing-overview {
	margin-bottom: 35px;
    border: 1px solid #DFEFDB;
    border-radius: 12px 0;
    overflow: hidden;
}
.listing-overview--msg {
    background-color: #006845;
    padding: 14px 20px 12px;
    font-weight: 600;
    font-size: 15px;
    color: #FFF;
    border-radius: 4px;
    text-align: center;
}
.listing-overview--top {
    background-color: #DFEFDB;
    padding: 18px 25px;
}
.listing-overview--top > h1 {
    font-size: 34px;
    font-weight: 400;
	margin-bottom: 0;
}
.listing-overview--top > h2 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}
.listing-overview--top--details {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
	text-transform: uppercase;
}
.listing-overview--main > .content:not(:last-child) {
    margin-bottom: 20px;
}
.listing-overview .stock {
    padding: 0;
}
.listing-overview--top--img {
	max-width: 400px;
	width: 100%;
}

.tt-widget__cont {
    padding: 15px;
}

.listing-overview--main {
    padding: 30px;
}

.listing-overview--img {
	width: 100%;
	max-inline-size: 100%;
	block-size: auto;
	aspect-ratio: 1/1;
	object-fit: contain;
}

.listing-overview--top--options .listing-pricebreaks {
	margin: 0 0 10px 0;
}

.listing-details {
	margin: 0;
}

.form-options {
	position: relative;
	z-index: 1;
}

.prodlist-buy {
    font-size: 18px;
    padding: 12px 20px 8px;
}
.listing-overview .prodlist-buy[disabled="true"] {
    display: none;
}
.listing-action-buttons {
	margin-bottom: -10px;
}
.listing-action-buttons > * {
	margin-bottom: 10px;
}
.listing-action-button-row > *:not(:first-child):not(.heart) {
    margin-left: 20px;
}

.listing-archived .listing-purchase-actions, 
.listing-archived .listing-msg-banners, 
.listing-archived .listing-pricebreaks, 
.listing-archived .form-options {
    display: none!important;
}

.listing-price {
    display: block;
    font-weight: 400;
    font-family: 'larken';
    font-size: 32px;
    margin-right: 20px;
}
.listing-price > div {
    font-size: 16px;
}
.listing-rrp, .listing-save {
    display: inline-block;
    font-weight: 700;
    font-size: 13px;
    font-family: 'hanken-grotesk', sans-serif;
}

.listing-rrp > span {
	text-decoration: line-through;
}

.listing-rrp-cont {
    width: max-content;
}

.listing-save {
	color: #006845;
	text-decoration: none;
}

.listing-msg-banners {
    margin-top: 25px;
}
.listing-click-collect {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #006845;
    padding: 13px 15px 11px;
    font-size: 14px;
    line-height: 1.3;
    height: 100%;
    border: 1px solid #DFEFDB;
}
.listing-click-collect__icon {
    margin-right: 18px;
}

.listing-methods {
    margin-top: 35px;
	margin-bottom: 10px;
}
.listing-methods > span {
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-right: 15px;
}

.rating-star {
	width: 20px;
	height: 18px;
	display: inline-block;
	margin: 0 1px;
}

.rating-star svg {
	width: 20px;height: 18px;
}

.rating-star svg {
	fill: #51ac5c;
}

.rating-star--empty svg {
	fill: #bbbbbb;
}

.listing-personalise {
	text-align: center;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 700;
	color: #1e1e1e;
	background-color: #dde2e5;
	line-height: 24px;
	padding: 3px 0px;
	cursor: pointer;
	transition: background 300ms ease;
}

.listing-personalise:hover {
	background-color: #e7e7e7;
}

.listing-personalise.disabled {
	opacity: 0.4;
}

.listing-subscribe {
    background-color: rgba(0,0,0,0.05)
}

.listing-subscribe__bottom {
	background: rgba(0,0,0,0.1);
	padding: 6px 10px;
}

.listing-subscribe__inner {
    padding: 22px 22px 18px 22px
}

.listing-subscribe .percent {
    opacity: 0.4;
    font-size: 13px;
    padding: 3px 0 0 0
}

.listing-subscribe__button.open {
    background-color: #fa5400;
    color: #fff;
	border-radius: 0px;
	border: 1px solid #fa5400;
}

.listing-subscribe__button span {
	padding: 0 0 0 18px;
}

.listing-subscribe__button.open span {
	background: url(/images/style/basic/icons/refresh@2x.png) center left / 12px 12px no-repeat;
}

.listing-offer {
	padding: 20px;
	margin: 10px 0 0 0;
	background: #37af56;
	background-size: 515.5px 511.5px;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	border-radius: 2px;
}

.listing-offer-product {
	position: relative;
	margin: 15px 0 0 0;
	background-color: rgba(0,0,0,0.1);
}

.listing-offer-details {
	padding: 10px;
	overflow: hidden;
}

.listing-offer--image {
	float: left;
}

.listing-offer--image img {
	display: block;
}

.listing-offer--price {
	position: absolute;
	bottom: 10px;
	left: 92px;
	font-size: 18px;
	opacity: 0.8;
}

.listing-deadline {
	margin: 0 0 5px 0;
}

.dispatch_countdown--inner > * {
    padding: 0 20px 20px 0;
}

.listing-deadline--details {
	text-align: center;
	float: left;
}

.listing-deadline--title ~ .listing-deadline-doughnuts {
	padding-top: 8px;
}

.listing-deadline--title {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
}

.listing-deadline--subtitle {
	color: #006845;
}

.listing-deadline--date {
	font-size: 19px;
	color: #1e1e1e;
}

.listing-deadline-doughnuts {
	float: right;
}

.listing-deadline-doughnut {
	position: relative;
	width: 60px; height: 60px;
	float: left;
	transition: transform 1s ease;
	margin: 0 0 0 10px;
}

.listing-deadline-doughnut--inner {
	content: '';
	position: absolute;
	top: 50%; left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	background-color: #fff;
	border-radius: 50px;
	text-align: center;
	font-weight: 700;
	color: #1e1e1e;
}

.listing-deadline-doughnut strong {
	display: block;
	font-size: 21px;
	position: relative;
	top: 8px;
	color: #1e1e1e;
}

.listing-deadline-doughnut span {
	display: block;
	font-size: 11px;
	position: relative;
	top: 4px;
}

.listing-deadline-doughnuts svg {
  width: 60px; height: 60px;
  -webkit-transform: rotate(-89.9deg);
  transform: rotate(-89.9deg);
  background: #dde2e5;
  border-radius: 50%;
}

.listing-deadline-doughnuts circle {
	position: relative;
	fill: #006845;
	stroke: #dde2e5;
	stroke-width: 6px;
	stroke-dasharray: 38 100; /* for 38% */
	transition: stroke-dasharray 1s ease;
}

.listing-deadline-doughnut:hover circle {
	stroke-dasharray: 100 100; /* for 100% */
}

.listing-share {
	padding: 10px;
	background-color: rgba(0,0,0,.2);
}

.listing-share .addthis_inline_share_toolbox {
	margin-bottom: -5px;
}

.listing-image {
	position: relative;
}

.listing-image-slider-container .slick-track {
  display: flex !important;
  align-items: stretch;
}
.listing-image-slider-container .slick-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}
.listing-image--slide > a {
	display: flex;
	align-items: center;
	height: 100%;
}

.listing-image__brand {
	position: absolute;
	top: 15px;
	right: 15px;
}

.listing-image__link {
	display: block;
	position: relative;
}

.listing-image__img {
	display: block;
	width: 100%;
}

.listing-image__link:hover .listing-image__zoom__svg {
	height: 40px;
	width: 40px;
}

.listing-image__zoom {
	position: absolute;
	height: 50px;
	width: 50px;
	bottom: 30px;
	left: 30px;
}

.listing-image__zoom__svg {
	fill: #006845;
	position: absolute;
	top: 50%;
	left: 50%;
	height: 35px;
	width: 35px;
	transition: height 200ms ease, width 200ms ease;
	transform: translate(-50%, -50%);
}

.listing-image--link {
    width: 100%;
    display: flex;
	justify-content: center;
}

.slick-arrows-1 .slick-arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-indent: -1000px;
    overflow: hidden;
    height: 42px; width: 48px;
    background-color: #006845;
	background-position: center;
	background-repeat: no-repeat;
}
.slick-arrows-1 .slick-arrow.slick-prev {
	left: 0;
	background-image: url('data:image/svg+xml,<svg width="28" height="22" viewBox="0 0 28 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M26 11H2M2 11L11 2M2 11L11 20" stroke="white" stroke-width="2.25" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.slick-arrows-1 .slick-arrow.slick-next {
	right: 0;
	background-image: url('data:image/svg+xml,<svg width="28" height="22" viewBox="0 0 28 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 11H26M26 11L17 2M26 11L17 20" stroke="white" stroke-width="2.25" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.slick-arrows-1 .slick-arrow:hover {
	background-color: #006141;
}

.stock {
	width:64%;
	text-align: right;
	padding:12px 0 24px 0;
}

.options-loading {
	display: none;
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background: rgba(0,0,0, 0.6);
	z-index: 9999;
}

.options-loading > .dbl {
	height: 100%;
}

.options-loading .dblc {
	vertical-align: middle;
}

.options_container_radio {
	padding:0 0 20px 0;
	display: flex;
	flex-wrap: wrap;
}
.options_container_radio:last-child {
	margin-bottom: 5px;
}

.options-radios .cf {
	display: flex;
	padding: 10px 0 0 0;
	margin: 0 0 10px;
	background-color: #121212;
	flex-wrap: wrap;
}

.option-radio {
	flex: 1 0 220px;
}

.option-radio:hover .option-radio__inner {
	background: #c5d3c1;
}

.option-radio.checked .option-radio__inner {
    background: #006845;
	color: #fff;
}

.option-radio__inner {
	background: #DFEFDB;
    border-radius: 4px;
    padding: 15px 15px 13px;
    text-align: center;
    display: block;
    cursor: pointer;
	-webkit-transition: ease-in-out .2s;
	transition: ease-in-out .2s;
}

.option-radio__inner input {
	display: none;
}

.opt_radio {
	width:initial;
	vertical-align: middle;
    margin: 0 6px .25em 10px;
}

.options_container_radio .options_text, 
.options_container_radio .opt_desc {
    width: 100%;
	font-size: 15px;
	padding: 0 0 6px;
	font-weight: 600;
}

.listing-options-required {
	width:100%;
	background:#414141;
	padding:15px 20px;
	color:#fff;
	border-radius:3px;
    font-weight: 700;
	text-align: center;
	position: absolute;
	margin-bottom:15px;
	z-index:1000;
	top:-60px;
}

.listing-options-required:after {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(136, 183, 213, 0);
	border-top-color: #414141;
	border-width: 10px;
	margin-left: -10px;
}

.button.heart {
	display: block;
	width: 41px;
	height: 41px;
	padding: 15px;
	background-image: url(/images/style/basic/icon-heart-white-2x.png);
	background-size: 23px 18px;
	cursor: pointer;
	transition: transform 300ms cubic-bezier(0.25, 0, 0.25, 1.75);
}

.button.heart:hover {
	transform: scale(1.1);
}

.listing-swatches {
	display: flex;
	flex-wrap: wrap;
}

.listing-swatch {
	padding: 0 2px 2px 0;
	width: 10%
}

.listing-swatch__inner {
	position: relative;
	height: 0;
	padding: 0 0 100% 0;
	cursor: pointer;
	overflow: hidden;
}

.listing-swatch__content {
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	border: 2px solid rgba(0,0,0,0.2);
	background-repeat: no-repeat;
	background-size: cover;
}

.listing-swatch.sel .listing-swatch__content,
.listing-swatch__inner:hover .listing-swatch__content {
	border: 3px solid #2d2d2d;
}

.listing-comments-response {
	background-color: #e7e7e7;
	margin: 15px 0 0 0;
	padding: 20px;
}

.listing-dd {
    background: #DFEFDB;
    border-radius: 12px 0;
    overflow: hidden;
}
.listing-dd:not(:last-child) {
	margin-bottom: 10px;
}
.listing-dd--title, .listing-dd--title > span {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: -3px;
}
.listing-dd--title {
	cursor: pointer;
	-webkit-transition: ease-in-out .2s;
	transition: ease-in-out .2s;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 27px 25px 23px;
}
.listing-dd--title > span {
	position: relative;
	height: 12px; width: 12px;
}
.listing-dd--title > span::before, .listing-dd--title > span::after {
	content: '';
	position: absolute;
	width: 12px; height: 2px;
	background-color: #3D3935;
	border-radius: 5px;
	-webkit-transition: ease-in-out .2s;
	transition: ease-in-out .2s;
}
.listing-dd--title:not(.open) > span::before {
	transform: rotate(90deg);
}
.listing-dd--text {
	display: none;
	padding: 0 25px 23px;
}
.listing-dd--text > *:not(:last-child) {
	margin-bottom: 20px;
}
.listing-dd--text > .dd-section {
	padding: 0;
}


.table-style {
    border: 1px solid #DFEFDB;
    width: 100%;
}
.table-style td {
    padding: 19px 20px 19px;
}
.table-style tr:not(:last-child) td {
	border-bottom: 1px solid #DFEFDB;
}

.bg-primary .table-style, 
.listing-dd .table-style, 
.bg-primary .table-style tr:not(:last-child) td, 
.listing-dd .table-style tr:not(:last-child) td {
    border-color: #FFF;
}


.listing-dd--text .listing-comments-form {
    padding: 0;
	margin: 0;
    background-color: transparent;
}
.listing-dd--text .listing-comments-title {
    display: none;
}

.listing-main-alt {
    padding-right: 0 !important;
    padding-left: 40px;
    order: 2;
}
.booking-info-blocks__title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: 'larken', serif;
}

/*
|--------------------------------------------------------------------------
| Listing > Thumbnails
|--------------------------------------------------------------------------
*/
.listing-thumbnails {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	padding: 10px 0 0 0;
	margin: 0 -5px;
}

.listing-thumbnails.has-arrows .listing-thumbnails--slider {
	padding: 0 44px;
}
.listing-thumbnail {
	margin: 0 5px;
    width: calc(25% - 10px);
}

.listing-thumbnail--link {
	display: block;
}

.listing-thumbnails .slick-arrow {
	position: absolute;
	right: 0;
	bottom: 0;
	top: 0;
	width: 40px;
	background: #006845;
	font-size: 0;
	line-height: 0;
	cursor: pointer;
	color: transparent;
	transition: background 300ms ease;
}

.listing-thumbnails .slick-prev {
	right: auto;
	left: 0;
}

.listing-thumbnails .slick-arrow:after {
	content: '';
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background: url(/images/style/basic/icon-chevron-right.png) no-repeat center center;
	transition: opacity 300ms ease;
}

.listing-thumbnails .slick-prev:after {
	background: url(/images/style/basic/icon-chevron-left.png) no-repeat center center;
}

.listing-thumbnails .slick-disabled {
	background-color: #777777;
	cursor: not-allowed;
}

.listing-thumbnails .slick-disabled:after {
	opacity: 0.4;
}

.listing-titles-mob {
	display: none;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 20px 0;
    overflow: hidden;
}

/*
|--------------------------------------------------------------------------
| Listing > Tabs
|--------------------------------------------------------------------------
*/
.listing-tabs {
	margin: 20px 0 0 0;
}

.listing-tabs-buttons {
	display: table;
    table-layout:fixed;
	width: 100%;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(238,238,238,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(238,238,238,1) 100%);
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(238,238,238,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e7e7e7',GradientType=0 );
}

.listing-tabs-button {
	position: relative;
	display: table-cell;
	color: #666666;
	font-weight: 700;
	font-size: 18px;
	cursor: pointer;
	transition: color 300ms ease;
	padding: 19px 6px;
	text-align: center;
	width: 1px;
	border-right: 1px solid rgba(0,0,0,0.1);
	border-bottom: 1px solid rgba(0,0,0,0.04);
}

.listing-tabs-button:last-child {
	border-right: none;
}

.listing-tabs-button.sel {
	color: #2d2d2d;
}

.listing-tabs-button.sel::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -1px;
	margin-left: -3px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 7px 8px 7px;
	border-color: transparent transparent #ffffff transparent;
	z-index: 99;
}

.listing-tab {
	display: none;
	padding: 25px 20px;
	background-color: #fff;
}

.listing-tab:first-child {
	display: block;
}

.mobile-tab-title {
	padding: 15px 25px;
	color: #fff;
	font-weight: 700;
	margin: 14px 0 0 0;
}

.mobile-tab-title {
	display: none;
}

/*
|--------------------------------------------------------------------------
| Listing > Tabs > Comments
|--------------------------------------------------------------------------
*/
.listing-comments-form {
	padding: 20px;
	margin: 20px 0 0 0;
	background-color: #666666;
}

.listing-comments-title {
	font-weight: 700;
	font-size: 21px;
	color: #fff;
	float: left;
}

.listing-comment:first-child {
	border-top: 2px solid #e7e7e7;
}

.listing-comment {
	padding: 20px;
	border: 2px solid #e7e7e7;
	border-top: none;
}

.listing-comment-title {
	text-transform: uppercase;
	font-weight: 700;
	padding: 0 0 6px 0;
}

.listing-comments-stars {
	float: right;
}

.listing-comments-stars .rating-star {
	float: right;
	cursor: pointer;
}

.listing-comments-stars .rating-star:hover svg,
.listing-comments-stars .rating-star:hover + .rating-star svg,
.listing-comments-stars .rating-star:hover + .rating-star + .rating-star svg,
.listing-comments-stars .rating-star:hover + .rating-star + .rating-star + .rating-star svg,
.listing-comments-stars .rating-star:hover + .rating-star + .rating-star + .rating-star + .rating-star svg {
	fill: rgba(81, 172, 92, 0.47);
}

.listing-comment-author {
	float: left;
	font-weight: 700;
	text-transform: uppercase;
}

.listing-review-stars {
	float: right;
}

/*
|-------------------------------------------------------------------------
| Listing > Catalogue
|--------------------------------------------------------------------------
*/

.listing-catalogue--title {
	font-size: 30px;
}

.listing-catalogue--row {
	width: 100%;
	text-align: center;
    padding: 10px;
    background-color: #f4f4f4;
    margin: 10px 0 0;
    font-size: 13px;
    color: #006845;
    text-transform: uppercase;
    letter-spacing: -0.045em;
}

.listing-catalogue--row-title {
	padding-right: 5px;
}

/*
|--------------------------------------------------------------------------
| Listing > Related
|--------------------------------------------------------------------------
*/
.listing-related {
	padding: 65px 0 0 0;
}

.listing-upsells--title,
.listing-related--title {
	display: block;
	text-align: center;
}

.listing-related--products {
	padding-top: 20px;
}

/*
|--------------------------------------------------------------------------
| Listing > Price Breaks
|--------------------------------------------------------------------------
*/
.price-bands {
	display: none;
	background-color: #2d2d2d;
	margin: 20px 0 0 0;
	color: #fff;
}

.price-bands--table-cont {
	padding: 10px;
}

.price-bands--table {
	border-spacing: 16px 10px;
}

.price-bands--header {
	color: #abadae;
}

/*
|--------------------------------------------------------------------------
| Listing > Overlay
|--------------------------------------------------------------------------
*/
.overlay {
	display: none;
	position: fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: 100;
}

.overlay--inner {
	width: 95%;
	max-width: 1100px;
	padding: 20px;
	position: absolute;
	top: 50%;left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: -webkit-transform 0.4s ease;
	transition: transform 0.4s ease;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
	background-color: #fff;
}

.overlay.overlay-thin .overlay--inner {
	max-width: 476px;
}
.overlay.overlay-subscription .overlay--inner {
	max-width: 900px;
}
.overlay-message .overlay--inner, .overlay-add-to-basket .overlay--inner {
	max-width: 630px;
}
.overlay-rounded .overlay--inner {
    border-radius: 10px;
}
.overlay--open .overlay--inner {
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.overlay--close {
	position: absolute;
	top: -15px;
	right: 20px;
	color: #fff;
	font-weight: 700;
	font-size: 12px;
	cursor: pointer;
	-webkit-transform: translateY(30px);
	-moz-transform: translateY(30px);
	transform: translateY(30px);
	transition: transform 0.4s cubic-bezier(0.25, 0, 0.25, 1.75) 1s;
	z-index: 2;
}

.overlay--open .overlay--close {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	transform: translateY(0);
}

.overlay--backdrop {
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background-color: rgba(0, 0, 0, 0.45);
	transition: background-color 300ms ease;
}

.overlay--backdrop:hover {
	cursor: pointer;
}

.overlay--inner {
	transition: opacity 300ms ease;
}

.overlay--content {
	overflow: hidden;
}

.overlay--image {
	float: right;
}

.overlay--image img {
	width: 100%;
	max-width: 446px;
	padding: 20px 20px 0 20px;
	background-color: #fff;
	transition: all 1s cubic-bezier(0.25, 0, 0.25, 1.75);
	border-radius: 2px;
	max-height: 90vh;
}

.overlay--inner-large {
	max-width: 90vw;
	width: 900px;
}

.overlay__blue .overlay--inner {
	background-color: #006845;
}

.overlay.open .overlay--inner {
	-webkit-animation: overlayEntrance 1s forwards;
	-moz-animation: overlayEntrance 1s forwards;
	-o-animation: overlayEntrance 1s forwards;
	animation: overlayEntrance 1s forwards;
}

.overlay-personalise .overlay--inner {
	background-color: #c0bfbf;
	padding: 5px 5px 0 5px;
}

.overlay-basket--right {
	min-width: 50%;
}

.overlay--title {
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.overlay-personalise .overlay--title {
	color: #1e1e1e;
	padding: 14px 0 14px;
}

.overlay--input-group {
	padding: 0 0 4px;
}

.overlay--input-group-padded {
	padding: 10px 0 4px;
}

.overlay--submit-group {
	text-align: center;
	padding: 4px 0 0 0;
}

.overlay--input {
	width: 100%;
	padding: 6px 8px;
	border-radius: 2px;
	border: 1px solid rgba(0,0,0,0.2);
	background-color: #fff;
	text-align: left;
	font-size: 13px;
	color: #1e1e1e;
}

.overlay--text-input {
	height: 120px;
}

.overlay--form {
	padding: 20px 0 0 0;
}
.overlay--button {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 18px;
}

.overlay--button-details {
	background-color: #b34834;
	font-size: 12px;
}

.overlay-overview--cont {
	padding: 30px 30px 0;
}

.overlay-overview {
	height: 510px;
	width: 420px;
	padding: 0 0 124px 0;
	overflow: scroll;
}

.overlay-action {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 420px;
}

.overlay--view-full-details {
	display: block;
	width: 100%;
	background-color: #01a4cd;
	color: #424242;
	padding: 11px 10px;
	font-weight: 700;
	font-size: 12px;
	text-align: center;
}

.overlay--view-full-details:hover {
	background-color: #0284a5;
	color: #424242;
}

#ask-a-question,
#bulk {
	cursor: pointer;
}

.overlay--text {
	text-align: center;
	color: #424242;
	font-size: 12px;
	padding: 10px 0 0 0;
	margin: 0;
}

.addthis_sharing_toolbox {
	padding-top:4px;
	float: right;
}

#product_add_content h2 {
	font-size: 16px;
}

#product_add_content,
#product_add_upsell {
	padding: 4px 0 10px;
	text-align: center;
}

#engraving_img_container {
	text-align: center;
	padding-top: 14px;
}

#add-new-address-overlay .overlay--inner {
	background-color: #fff;
	padding: 40px;
	max-width: 460px;
}

#add-new-address-overlay .overlay--title {
	color: #2d2d2d;
	padding: 0 0 20px 0;
	display: block;
}

#add-new-address-overlay .checkout-form--has-button {
	padding: 10px 0 20px 0;
}

#click-and-collect-overlay .overlay--inner {
	background-color: #fff;
	padding: 20px;
	max-width: 980px;
}

/*
|--------------------------------------------------------------------------
| Overlay > Basket > Basic
|--------------------------------------------------------------------------
*/
.overlay-basket-basic .overlay--close {
	background-color: #fff;
	height: 36px;
	width: 36px;
	border-radius: 18px;
	text-indent:  -999px;
	overflow: hidden;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16px' height='16px'%3E%3Cpath fill-rule='evenodd' fill='rgb(0, 0, 0)' d='M15.071,2.343 L9.408,8.006 L15.008,13.607 L13.607,15.008 L8.006,9.408 L2.343,15.071 L0.929,13.657 L6.592,7.994 L0.992,2.393 L2.393,0.991 L7.994,6.592 L13.657,0.929 L15.071,2.343 Z'/%3E%3C/svg%3E");
	background-position: center center;
	background-repeat: no-repeat;
	top: -50px
}

.overlay-basket-basic .overlay--inner {
	max-width: 845px;
	/* overflow-y: visible; */
	padding: 0;
}

.overlay-basket--right .form-options {
	background-color: transparent;
}

.overlay-basket.overlay--inner {
	max-width: 845px;
}

.overlay-basket-basic--title {

}

.basket-modal-action {
	margin: 10px 0 0 0 ;
}

.overlay-basket {
	max-height: 75%;
	display: flex;
	flex-direction: column;
	max-width: 600px;
	padding: 30px;
}

#basket-modal-contents {
	overflow-y: auto;
}

#basketOverlayContents {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.overlay-basket-options .overlay-basket-basic--main {
	display: flex;
}

.overlay--inner .cart-item-right .remove {
	position: relative;
	bottom: auto;
    margin: 0 0 0 auto;
}

.overlay-basket-basic--main {
	display: flex;
	align-items: stretch;
	justify-content: center;
}

.overlay-basket-basic--svg {
	width: 64px;
	margin-right: 30px;
	flex-shrink: 0;
}

.overlay-basket-basic--svg svg {
    fill: #37af56;
    width: 100%;
}

.overlay-basket-basic--bottom {
	padding: 0 0 20px 0;
	display: flex;
}

.overlay-basket-basic--bottom .button {
	flex: 1 0 auto;
}

/*
|--------------------------------------------------------------------------
| Overlay > Options
|--------------------------------------------------------------------------
*/
.overlay-basket-basic--main form {
	width: 100%;
}

.overlay-basket--left {
	border-right: 1px solid #e7e7e7;
}

.overlay-basket--right {
	flex: 1 0 auto;
}

.overlay-basket--right {
	padding:  32px 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.overlay-basket--title {
	font-size: 21px;
	color: #000;
	font-weight: 600;
}

.overlay-basket--right .form-options {
	margin: 20px 0 0 0;
	padding: 0;
}

.overlay-basket--right .listing-price {
	font-size: 24px;
	font-weight: 700;
}

/*
|--------------------------------------------------------------------------
| Compare
|--------------------------------------------------------------------------
*/
.compare-table--row {
	display: table-row;
	position: relative;
	font-weight: 700;
	color: #fff;
}

.compare-table--cell {
	display: table-cell;
	padding: 15px;
	background-color: #006845;
	font-weight: 700;
	color: #fff;
	text-align: center;
	width: 20.83333333333333%;
	box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.compare-table--cell:nth-child(3),
.compare-table--cell:nth-child(5) {
	background-color: #cc523b;
}

.compare-table--row-header {
	width: 16.66666666666667%;
	background-color: #666666;
	text-align: right;
}

.compare-table--head-cell-first {
	width: 16.66666666666667%;
}

.compare-listing--image {
	display: block;
}

.compare-listing--image img {
	display: block;
    width: 100%;
}

.compare-table--title-cont {
	padding: 5px;
	text-align: center;
}

.compare-table--title {
	font-size: 36px;
	color: #fff;
	margin: 0;
	padding: 60px 10px;
}

.compare-table--head {
	display: table-row;
}

.compare-table--head .compare-table--cell {
	padding: 0;
	text-align: left;
	vertical-align: top;
	background-color: #dde2e5;
}

.compare-table--head .compare-table--cell:first-child {
	padding: 10px;
	vertical-align: middle;
}

.compare-table--cell.compare-table--head-cell-empty {
	text-align: center;
	vertical-align: middle;
}

.compare-table--head-cell-empty i {
	font-size: 270px;
	font-style: normal;
}

.compare-undo--form {
	display: inline-block;
}

/*
|--------------------------------------------------------------------------
| Basket
|--------------------------------------------------------------------------
*/
.cart--heading {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 18px;
	color: #666666;
	padding: 0 0 15px 0;
}

.cart-segment {
	border: 2px solid #e7e7e7;
	background-color: #fff;
	margin-bottom:20px;
}

.cart-main .cart-segment:last-child {
	margin-bottom:0;
}

.cart-side .cart-segment {
	margin-bottom:0;
}

.cart-segment--inner {
	padding: 15px;
}

.cart-main {
	width: 62%;
	float: left;
}

.bags-selector,
.multibags-selector {
	margin: 0 -10px -10px 0;
}

.bags-selector > *,
.multibags-selector > * {
	padding: 0 10px 10px 0;
}

.multibags-selector .button {
	display: block;	
}

.bag-selector--title {
	font-size: 16px;
	margin-bottom: 10px;
}

#bag-selector {
	padding-top: 25px;
}

.basket-option--images-cont {
}

.basket-option--image-cont {
    position: relative;
    display: inline-block;
	padding-left: 12px;
	background-image: url(/images/style/basic/plus.png);
	background-position: center left;
	background-repeat: no-repeat;
	background-size: 8px 8px;
}

.basket-option--image {
    border: 1px solid #efefef;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
}

.basket-option--image img {
	max-height: 100%;
}

.basket-option--image-text {
    display: none;
    position: absolute;
	bottom: calc(100% + 10px);
	text-align: center;
	width: 250px;
	left: -88px;
	color: #fff;
}

.basket-option--image-text::after {
	content: "";
	position: absolute;
	bottom: -7px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 7px 0 7px;
	border-color: #2d2d2d transparent transparent transparent;
}

.basket-option--image-text-inner {
    padding: 7px 15px 5px;
	font-size: 13px;
	display: inline-block;
	background: #2d2d2d;
}

.basket-option--image-text span {
    display: block;
	padding-bottom: 3px;
	color: #fec800;
}

.basket-option--image-cont:hover .basket-option--image-text {
    display: block;
}

.basket-option--image-qty {
    position: absolute;
    background: #006845;
	color: #fff;
    font-size: 10px;
    height: 17px;
    width: 17px;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    right: 0;
}

/*
|--------------------------------------------------------------------------
| Basket > Listing Overlay
|--------------------------------------------------------------------------
*/
#basket-add-overlay > .overlay--inner {
	max-width: 580px;
}

.overlay--header--text.overlay--basket-header {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	padding: 10px 5px 15px;
}

.overlay--basket-title {
	font-size: 18px;
	flex-direction: column;
	padding-right: 20px;
	padding-left: 30px;
	font-family: 'Sentinel', sans-serif;
	font-weight: 700;
}

.overlay--basket-title > span {
	color: #006845;
}

.overlay--header-action > *:first-child {
	margin-right: 10px;
}

.overlay--header-action > * {
	flex: 1;
}

.overlay--header-action {
	display: flex;
	padding-top: 15px;
	border-top: 1px solid #d1d1d1;
}

/*
|--------------------------------------------------------------------------
| Basket > Side
|--------------------------------------------------------------------------
*/
.cart-side {
	float: right;
	width: 38%;
	padding: 0 0 0 40px;
}

.cart-side--option {
	font-size: 13px;
	font-weight: 700;
	border: 2px solid #e7e7e7;
	margin-top:15px;
}

.cart-side--option span {
	display: block;
	padding: 12px;
}

.cart-side--option-trigger {
	padding: 0 15px;
}

.cart-side--option__gift {
	color: #51ac5c;
}

.cart-side--option__gift.sel {
	background: #51ac5c;
	color: #fff;
	border: 2px solid #3F9649;
}

.cart-side--option__gift.sel span {
	background-image: url(/images/style/basic/icon-gift-white.png);
}

.cart-side--option-inner {
	display: none;
	padding: 0 20px 20px 20px;
}

.cart-delivery-lead {
	padding: 0 0 10px 0;
	margin: 0 0 10px 0;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

/*
|--------------------------------------------------------------------------
| Basket > Totals
|--------------------------------------------------------------------------
*/
.cart-total--price {
	text-align: right;
}

.cart-total {
	color: #1e1e1e;
	font-weight: 600;
	font-size: 21px;
}

.cart-total .dblc {
	padding-bottom: 15px;
}

.cart-side--delivery-option {
	position: relative;
	background-color: #f3f3f3;
	color: #1e1e1e;
	padding: 10px 12px;
	padding-right: 50px;
	transition: padding 300ms ease;
	min-height: 48px;
	cursor: pointer;
	margin-top: -1px;
	border-left: 1px solid #EAEAEA;
	border-right: 1px solid #EAEAEA;
	border-top: 1px solid #EAEAEA;
	border-bottom: 1px solid #EAEAEA;
	transition: background 300ms ease, border 300ms ease;
}

.cart-side--delivery-option:hover {
	background-color: #EAEAEA;
}

.cart-side--delivery-option:after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
	height: 28px;
	width: 28px;
	background-color: #fff;
}

.cart-side--delivery-option.sel:after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
	height: 28px;
	width: 28px;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='15px' height='13px'%3E%3Cpath fill-rule='evenodd' fill='rgb(36, 154, 75)' d='M12.904,0.505 L5.247,8.223 L2.95,5.76 L0.6,7.174 L5.247,12.494 L15.6,2.678 L12.904,0.505 Z'/%3E%3C/svg%3E");
}

#delivery-selection {
	border-radius: 3px;
}

#delivery-selection > .message {
	border-radius: 0 0 8px 8px;
}

.cart-side--delivery-option:hover {
}

.cart-side--delivery-option.sel, 
.cart-side--delivery-option.sel a {
	background-color: #249a4b;
	border-color: #249a4b;
	color: #fff;
}

.cart-side--delivery-option.sel a:hover {
	color: #dcf1e2;
}

.cart-side--delivery-option.sel span {
	color: #fff;
}

.cart-side--delivery-option strong {
	font-size: 13px;
	display: block;
	font-weight: 600;
}

.cart-side--delivery-option span {
	display: block;
	font-size: 11px;
}

.cart-side--delivery-option span {
	color: #666666;
}

span.cart-side--delivery-cost {
	font-size: 13px;
	font-weight: 600;
}

span.cart-side--delivery-cost,
span.cart-side--delivery-cost--original {
	float: right;
	color: #1e1e1e;
}

span.cart-side--delivery-cost--original {
	text-decoration: line-through;
	padding-right: 8px;
	font-weight: normal;
}

.cart-side--delivery-option-method__inner {
    display: none;
    font-weight: 400;
    font-size: 14px;
    position: absolute;
    padding: 20px;
    background-color: #b6b070;
    color: #FFF;
    text-align: center;
    top: calc(100% + 10px);
    z-index: 10000;
    width: 100%;
}

.cart-side--delivery-option-method__inner::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 5px 10px 5px;
	border-color: transparent transparent #b6b070 transparent;
	top: -7px;
	right: 50%;
}

.cart-side--delivery-option.sel .cart-side--delivery-option-method--text > svg {
    fill: #FFF;
}

.cart-side--delivery-option-method-tooltip__text:not(:last-child) {
    margin-right: 5px;
}

.cart-side--delivery-option-method-tooltip__text {
    font-weight: 300;
    font-size: 12px !important;
}

.cart-side--delivery-option-method__inner:hover,
.cart-side--delivery-option-method--text svg:hover ~ .cart-side--delivery-option-method__inner {
	display: block;
}


/*
|--------------------------------------------------------------------------
| Basket > Items
|--------------------------------------------------------------------------
*/
.cart-item {
	position: relative;
	margin: 0 0 15px 0;
	border-bottom: 2px solid #e7e7e7;
	display: flex;
}

.cart-item:last-child {
	border-bottom: 0;
	margin:0;
	padding:0;
}

.cart-item-image {
	width: 130px;
	margin: 0 0 15px 0;
}

.cart-item-image a {
	border: 2px solid #e7e7e7;
}

.cart-item:last-child .cart-item-image {
	margin:0;
}

.cart-item-content {
	padding: 0 90px 0 15px;
}

.cart-item-title a {
	font-weight: 700;
	font-size: 16px;
	color: #414141
}

.cart-item-content .label-inline {
	width:104px;
	margin: 0 0 10px 0;
}

.cart-item-right {
	width:110px;
	position: absolute;
	top: 0; right: 0; bottom: 0;
	float: right;
	text-align: right;
}

.cart-item-price {
	font-weight: 700;
	font-size: 21px;
	color: #414141;
}

.cart-item-stock-cont {
	padding-top: 7px;
}

.cart-item-unitprice, .cart-item-option, .basket-item-stock {
	display: block;
	color: #666666;
	font-size: 12px;
}

.basket-item-stock.stock-status {
	background-size: 14px auto;
}

.basket-item-stock {
	margin-top: 3px;
	padding: 0 0 0 20px;
    background-repeat: no-repeat;
    background-position: left center;
}

.basket-item-stock-cross-amber {
	background-image: url(/images/style/basic/icon-cross-amber.png);
}

.basket-item-stock-van-green {
	background-image: url(/images/style/basic/icon-dispatch-van-green.png);
}

.basket-item-stock-warning {
	background-image: url(/images/style/basic/icon-cart-warning.png);
}

.basket-item-stock-van-orange {
	background-image: url(/images/style/basic/icon-dispatch-van-orange.png);
}

.basket-item-stock-box {
	background-image: url(/images/style/basic/icon-dispatch-box-orange.png);
}

#cart--vat-declaration-details {
	display:none;
}

.remove {
	background: url(/images/style/basic/cart-remove.png) left center no-repeat;
	padding: 0 0 0 15px;
	cursor: pointer;
	font-size: 12px;
	text-transform: uppercase;
	color: #b52025;
	font-weight: 700;
}

.cart-item-right .remove, .cart-item-right .button-small {
	position: absolute;
	bottom: 15px;
	right: 0;
}

.cart-item:last-child .cart-item-right .button-small {
	bottom:0;
}

.cart-item--stock {
	padding: 0 0 0 10px;
}

.cart-free-item .cart-item-image {
	width: 80px;
	margin-bottom: 0;
}

.basket-free-items-title {
	padding: 10px 8px;
	background-color: #51ac5c;
	color: #fff;
	font-size: 13px;
}

.cart-free-items-block {
	margin: 0 0 15px;
}

.cart-free-item {
	padding: 4px;
	border: 2px solid #e7e7e7;
	border-top: 0;
}

.cart-free-item-inner {
	display: flex;
	align-items: center;
}

.cart-free-item-inner .cart-overview--item-inner {
	width: 100%;
}

.cart-free-item .cart-item-price {
	font-size: 16px;
}

.cart-free-item-right {
	margin-left: auto;
	text-align: right;
	padding-right: 10px;
}

.cart-free-item .cart-item-variant,
.cart-free-item .cart-item-price {
	display: block;
	margin-bottom: 5px;
}

.cart-free-item .cart-item-variant {
	font-size: 12px;
}

.cart-overview--item.cart-free-item-inner {
	border: 0;
	padding: 0;
	margin-bottom: 0;
}

/*
|--------------------------------------------------------------------------
| Basket > Datepicker
|--------------------------------------------------------------------------
*/
 .ui-datepicker-inline {
    margin: 30px auto 0 auto;
    border-radius: 0;
    border-color: #e7e7e7;
    padding: 4px;
}
 .ui-datepicker-title {
	color: #006845;
}
 .ui-widget-header,
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
	border-color: #006845;
}
 .ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-datepicker-title {
	color: #006845;
}
 .ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
    border: 1px solid #014c33;
	background-color: #014c33;
    font-weight: bold;
    color: #fff;
}
 .ui-datepicker td a {
	text-align: center;
}
 .ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	background-color: #006845;
	width: 28px;height: 28px;
	cursor: pointer;
	top: 2px !important;
}
 .ui-datepicker .ui-datepicker-prev {
	left: 2px !important;
}
 .ui-datepicker .ui-datepicker-next {
	right: 2px !important;
}
 .ui-datepicker .ui-datepicker-prev .ui-icon,
.ui-datepicker .ui-datepicker-next .ui-icon {
	position: absolute;
	top: 50%;left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: url(/images/style/basic/icon-chevron-left.png) no-repeat center center;
	margin: 0;
}
 .ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border-color: #014c33;
}
 .ui-datepicker .ui-datepicker-next .ui-icon {
	background-image: url(/images/style/basic/icon-chevron-right.png);
}

.ui-datepicker {
	background-color: #ffffff;
}

/*
|--------------------------------------------------------------------------
| Brands
|--------------------------------------------------------------------------
*/
.brand-letters--grid {
	margin: 0 -1px 0 0;
	padding: 14px 0;
}

.brand-letter {
	text-align: center;
	width: 3.703703703703704%;
	float: left;
	padding: 0 1px 0 0;
}

.brand-letter.disabled {
	opacity: 0.4;
}

.brand-letter.disabled .brand-letter--inner {
	cursor: not-allowed;
}

.brand-letter.disabled .brand-letter--inner:hover {
	border: 2px solid #e7e7e7;
	color: #006845;
	background-color: #fff;
}

.brand-letter--inner {
	display: block;
	border: 2px solid #e7e7e7;
	color: #006845;
	font-weight: 700;
	font-size: 21px;
	padding: 4px 0;
	cursor: pointer;
}

.brand-letter--inner.sel,
.brand-letter--inner:hover {
	background-color: #006845;
	color: #fff;
	border: 2px solid rgba(0,0,0,0.2);
}

.brands-list--item {
	text-align: center;
	width: 16.6666666666666666666%;
	float: left;
	padding: 0 4px 4px 0;
}

.brands-list--letter {
	position: relative;
	color: #ffffff;
	font-weight: 700;
	font-size: 60px;
}

.brands-list--letter .brands-list--inner {
	background-color: #1e1e1e;
}

.brands-list--letter span {
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	top: 50%;
	bottom: 0;
	left: 50%;
	right: 0;
	height: 60px;
	line-height: 60px;
}

.brands-list--inner {
	position: relative;
	height: 0;
	padding: 0 0 100% 0;
}

.brands-list--image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 34px;
	background-size: 60%;
	background-color: #fff;
}

.brands-list--image img {
	display: none;
}

.brands-list--text {
	position: absolute;
	right: 0; bottom: 0; left: 0;
	background-color: #e7e7e7;
	font-weight: 700;
	font-size: 12px;
	color: #006845;
	padding: 10px 0;
}

/*
|--------------------------------------------------------------------------
| Checkout
|--------------------------------------------------------------------------
*/
.checkout-header {
	border-bottom: 1px solid #DFEFDB;
	min-height: auto;
	padding: 31px 0;
}

.checkout {
	position: relative;
	overflow:hidden;
	background-color: #fff;
}

.checkout-main {
	width: 60%;
	padding: 45px 70px 0 0;
	background-color: #fff;
	float: left;
	border-right: 1px solid #DFEFDB;
}

#checkout-container, #confirm-container {
	max-width:1400px;
}

#checkout-container {
	padding:0 100px 0 120px;
}

#confirm-container {
	padding:0 100px 0 170px;
}

.payment-methods {
	margin: 0 0 15px 0;
}

.checkout-segment {
	padding: 0 0 15px 0;
}

.checkout-title {
	font-size: 20px;
	padding: 0 0 10px 0;
	margin: 0 0 15px 0;
	border-bottom: 1px solid #e7e7e7;
}

.checkout-subtitle {
	font-size: 18px;
	padding: 0 0 15px 0;
	margin: 0;
}

.checkout-breadcrumbs {
	display:none;
}

.checkout-breadcrumb {
	position: relative;
	padding: 0 20px 0 0;
	font-size: 16px;
	color: #2d2d2d;
}

.checkout-breadcrumb:after {
	position: absolute;
	top: 50%;
	right: 8px;
	margin: -4px 0 0 0;
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 0 4px 4px;
	border-color: transparent transparent transparent #2d2d2d;
}

.checkout-breadcrumb:last-child:after {
	display: none;
}

.checkout-breadcrumb__green {
	color: #51ac5c;
}

.checkout-breadcrumb__green:after {
	border-color: transparent transparent transparent #51ac5c;
}

.checkout-breadcrumb__grey {
	color: #666666;
}

.checkout-breadcrumb__grey:after {
	border-color: transparent transparent transparent #666666;
}

.checkout-side {
	width: 40%;
	float: right;
	position: relative;
	z-index: 1;
}

.checkout-side:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    width: 300%;
    background: #f6f6f6;
    z-index: -1;
}

.checkout-action {
	border-top: 1px solid #e7e7e7;
	padding: 24px 0;
}

.google-address-lookup {
	width: 100%;
	min-height: 10px;
}
.google-address-lookup-results {
	max-height: 240px;
	overflow-y: auto;
}
.google-address-lookup-address {
	border: 2px solid #e7e7e7;
	border-top: 0;
	padding-left: 5px;
}
.google-address-lookup-address:hover {
	color: #3D3935;
	background:#DFEFDB;
	cursor: pointer;
}

.return-to-basket {
	background-color: #fff;
	color: #2d2d2d;
	text-transform: none;
	padding: 12px 25px 11px 15px;
	background: url(/images/style/basic/icon-chevron-left-black.png) no-repeat center left;
	font-size: 15px;
}

.checkout-addressbook .input {
	display: none;
}

.checkout-addressbook-button {
	color: #006845;
	font-size: 13px;
	margin-bottom: 15px;
	cursor: pointer;
}

/*
|--------------------------------------------------------------------------
| Checkout > Delivery Address
|--------------------------------------------------------------------------
*/
.delivery-address {
	display: block;
	width: 100%;
	margin: 0 0 4px 0;
	border: 2px solid #e7e7e7;
	cursor: pointer;
}

.delivery-address:hover {
	background-color: #019dc3;
}

.delivery-address.sel {
	border: 2px solid #019dc3;
}

.delivery-address:hover .delivery-address--title,
.delivery-address:hover .delivery-address--location {
	color: #fff;
}

.delivery-address.sel .delivery-address--checkbox:after {
	background-color: #2d2d2d;
	border: 4px solid #fff;
	transition: background 300ms ease;
}

.delivery-address.sel .delivery-address--title,
.delivery-address.sel .delivery-address--location {

}

.delivery-address--checkbox {
	float: left;
	position: relative;
	height: 46px;
	width: 46px;
}

.delivery-address--checkbox:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	height: 20px;
	width: 20px;
	-webkit-transform: translate(-10px, -10px);
	transform: translate(-10px, -10px);
	background-color: #e7e7e7;
	border-radius: 20px;
}

.delivery-address--content {
	padding: 7px;
	overflow: hidden;
}

.delivery-address--title {
	display: block;
	font-weight: 700;
	font-size: 15px;
	color: #2d2d2d;
}

.delivery-address--location {
	display: block;
	font-size: 12px;
	color: #666666;
}

.button-locate {
	background-image: url(/images/style/basic/icon-zoom-white.png);
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position:center center;
	width: 42px;
}

.button-locate.loading {
	background-image: url(/images/style/basic/gps.svg);
}

.no-js .button-locate,
.no-js #postcode_lookup_results_container_del {
	display: none;
}

.no-js .billing-address-form {
	display: block !important;
}

/*
|--------------------------------------------------------------------------
| Basket > Sidebar
|--------------------------------------------------------------------------
*/
.cart-overview.fixed {
	position: fixed;
	top: 0;
}

.cart-overview.absolute {
	position: absolute;
	bottom: 0;
	top: auto;
}

.checkout-side {
	padding: 45px 0 0 60px;
}

.cart-overview--item {
	padding: 0 0 10px 0;
	margin: 0 0 10px 0;
	font-weight: 700;
	color: #2d2d2d;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.cart-overview--item-image {
	position: relative;
	max-width: 70px;
	float: left;
}

.cart-overview--item-image__subscription {
	display: none;
	position: absolute;
	height: 13px;
	width: 13px;
	left: 10px;
	top: 10px;
	background: url(/images/style/basic/icon-calendar-blue.png) no-repeat center center;
	background-size: 13px 13px;
}
.sub-sel {
	font-weight: 750;
}

.cart-overview--item-inner {
	padding: 0 14px 14px 14px;
	overflow: hidden;
}

.checkout-side-invoice .cart-overview--item-inner {
	padding: 0;
}

.cart-overview--item-content {
	overflow: hidden;
	padding: 0 20px 0 0;
}

.cart-overview--item-info {
	float: right;
	text-align: right;
}

.cart-overview--item-qty,
.cart-overview--item-options {
	color: #666;
	font-size: 11px;
}

.cart-overview--item-options i {
	font-style: normal;
}

.cart-overview--item-options i:last-child {
	display: none;
}

.cart-overview--item-option__blue {
	color: #019dc3;
}

.cart-overview--item-option__blue span {
	padding: 0 4px 0;
}

.cart-overview--item-qty {
	display: block;
}

.cart-promo {
	padding: 10px 0 20px 0;
	margin: 0 0 20px 0;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.cart-promo--button {
	position: relative;
	display: block;
	color: #b12525;
	background-color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	padding: 16px;
	cursor: pointer;
}

.cart-promo--button span {
	position: relative;
	padding: 0 0 0 26px;
}

.cart-promo--button span:after {
	content: '';
	position: absolute;
	left: 0;
	height: 16px;
	width: 16px;
	background: url(/images/style/basic/icon-tag.png) no-repeat center center;
	transform-origin: top right;
}

@keyframes tagWiggle {
  0%   { transform: rotate(0); }
  25%   { transform: rotate(15deg); }
  50%   { transform: rotate(-15deg); }
  75%   { transform: rotate(5deg); }
  100% { transform: rotate(0deg); }
}

.cart-promo--button:hover span:after {
	-webkit-animation: tagWiggle 1s;
	-moz-animation: tagWiggle 1s;
	-o-animation: tagWiggle 1s;
	animation: tagWiggle 1s;
	background: url(/images/style/basic/icon-tag-white.png) no-repeat center center;
}

.cart-promo--button:hover {
	background-color: #b12525;
	color: #fff;
}

.cart-promo--button:active {
	top: 1px;
}

.cart-promo--form {
	padding: 10px 15px 0 15px;
}

.cart-overview-totals {
	background: none;
}

.cart-overview--item-gift {
	padding: 10px 0 0 0;
}

.cart-overview--item-checkbox label {
	display: inline-block;
	font-size: 11px;
	color: #666666;
}

.checkout-login--inner {
	padding:30px 0;
	border-bottom: 1px solid #e7e7e7;
}

.cart-overview--item-option {
	display: block;
}

.checkout-login--btn {
	padding-bottom: 10px;
	transition: opacity 300ms ease;
	color: #666;
}

#checkout-hide-login-form {
	font-size: 12px;
	opacity: 1;
	transition: color 300ms ease;
	padding-top: 12px;
	color: #666;
	font-weight: 700;
}

#checkout-hide-login-form:hover {
	color: #444;
}

/*
|--------------------------------------------------------------------------
| Basket > Overlay
|--------------------------------------------------------------------------
*/
.overlay-title--basket {
	font-size: 24px;
	color: #2d2d2d;
	display: flex;
	justify-content: space-between;
}

.cart-item.cart-item--small {
	display: flex;
    border: 1px solid #e7e7e7;
    margin: 0;
}

.cart-item.cart-item--small:not(:first-child) {
	border-top: none;
}

.cart-item--small .cart-item-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    flex-grow: 1;
    padding: 20px;
}

.cart-item--small .cart-item-right {
	display: flex;
    flex-direction: column;
    position: relative;
    width: auto;
}

.overlay-basket .cart-item-image {
	width: 69px;
	margin: 0;
}

.overlay-basket .cart-item-image a {
	border-width: 1px;
}

.overlay-basket .cart-item.cart-item--small {
	padding: 10px 0;
	border-left: none;
	border-right: none;
}

.overlay-basket .cart-item--small .cart-item-content {
	padding: 2px 10px;
}

.overlay-basket .cart-item-price {
	font-size: 14px;
}

.overlay-basket .overlay-title--basket {
	font-weight: 700;
}

.overlay-basket--view-basket {
	margin-top: 10px;
}

.overlay-basket--view-basket--btn {
	display: block;
}

.small-qty-toggle {
	display: flex;
	border: 1px solid #EAEAEA;
	border-radius: 3px;
	margin: 10px 0 0 0;
}

.small-qty-toggle--button {
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	width: 25px;
	text-align: center;
	height: 21px;
}

.small-qty-toggle--button:first-child {
	border-right: 1px solid #EAEAEA;
	margin-right: 0;
}

.small-qty-toggle--button:last-child {
	border-left: 1px solid #EAEAEA;
	margin-left: 0;
}

.small-qty-toggle--input {
	text-align: center;
	height: 21px;
    width: 36px;
}

/*
|--------------------------------------------------------------------------
| Confirm v2
|--------------------------------------------------------------------------
*/
.payment-method {
}

.payment-method--button {
	position: relative;
	padding: 21px 20px 21px 50px;
	font-weight: 700;
	font-size: 18px;
	color: #2d2d2d;
	border: 1px solid #e7e7e7;
	margin-top: -2px;
	cursor: pointer;
}

.payment-method--title {
	padding: 3px 0;
}

.payment-method--button:before {
	content: '';
	position: absolute;
	top: 22px;
	left: 20px;
	width: 18px;
	height: 18px;
	background-color: #e7e7e7;
	border-radius: 18px;
}

.payment-method.open .payment-method--button:after {
	content: '';
	position: absolute;
	top: 26px;
	left: 24px;
	width: 10px;
	height: 10px;
	background-color: #2d2d2d;
	border-radius: 18px;
}

.payment-method--content {
	display: none;
}

.payment-method__card .payment-method--title {
	background: url(/images/style/basic/payment-methods.png) no-repeat center right / contain;
}

.payment-method__paypal .payment-method--title,
.payment-method__paypal-paylater .payment-method--title,
.payment-method__paypal-credit .payment-method--title {
	background: url(/images/style/basic/paypal-logo-color.png) no-repeat center right / contain;
}

.payment-method__klarna .payment-method--title {
	background: url(/images/style/basic/klarna.png) no-repeat center right;
	background-size: auto 100%;
}

.payment-method__googlepay .payment-method--title {
	background: url(/images/style/basic/google-pay.svg) no-repeat center right;
	background-size: auto 100%;
}

.payment-method__applepay .payment-method--title {
	background: url(/images/style/basic/apple-pay.svg) no-repeat center right;
	background-size: auto 100%;
}

.payment-method--klarna iframe,
.payment-method--klarna div[data-cid] {
	min-width: 240px !important;
}

.payment-method--content {
	background-color: #e7e7e7;
	padding: 40px;
	text-align: center;
	font-size: 18px;
}

.payment-method--content .input:last-child,
.payment-method--content .input-grid:last-child .input {
	margin-bottom: 0;
}

#form_stripe {
	width:100%;
	max-width: 400px;
	margin: 0 auto;
	text-align:center;
	padding: 50px 0;
}

#form_stripe #card-errors {
	text-align: left;
    margin-bottom: 15px;
}

.button-stripe {
	width: 100%;
}

.button-stripe:disabled {
	opacity: .5;
}

.button-stripe:disabled,
.button-stripe:disabled:hover {
	background-color: #006845;
}

.button-stripe .spinner {
	font-size: 2px;
	margin-top: -2px;
	margin-bottom: -2px;
	display: none;
}

.button-stripe:disabled .spinner {
	display: block;
}

.button-stripe span {
	line-height: 16px;
}

.button-stripe:disabled span {
	display: none;
}

.stripe-cancel {
	text-align: left;
	padding: 25px 0 0;
	margin-bottom: -8px;
}

.stripe-cancel a {
	color: #000;
	padding-top: 0;
	padding-bottom: 0;
	opacity: 0.5;
}

.stripe-cancel a:hover {
	opacity: 0.8;
}

#braintree-paypal-loggedin,
#braintree-paypal-credit-loggedin,
#braintree-card-stored,
#ppchkout-paypal-loggedin,
#ppchkout-paypal-paylater-loggedin,
#truevo-card-stored {
	display: none;
	max-width: 500px;
	overflow: hidden;
	padding: 16px;
	margin: 0 auto;
	border-top: 1px solid #d1d4d6;
	border-bottom: 1px solid #d1d4d6;
	text-align: left;
}

.basket-pp-messaging iframe {
	margin-bottom: 10px;
	float: left;
}

.bb-pp-container,
.bb-card-container {
	display: table;
	width: 100%;
}

.bb-pp-container > div,
.bb-card-container > div {
	display: table-cell;
	vertical-align: middle;
	font-family: "hanken-grotesk", sans-serif;
	-webkit-font-smoothing: antialiased;
}

.bt-pp-name,
.bt-pp-cancel,
.bt-card-cancel {
	width: 1px;
}

.bt-pp-name {
	padding-left: 36px;
	background-image: url("/images/style/basic/paypal-small.svg"), none;
	background-size: 13px 15px;
	background-position: 4px center;
	background-repeat: no-repeat;
	color: #283036;
	font-size: 13px;
	font-weight: 800;
}

.bt-pp-email,
.bt-card-details {
	padding: 0 10px;
	color: #6e787f;
	font-size: 13px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 0;
}

.bt-card-details {
	padding-left: 0;
}

.bt-pp-cancel button,
.bt-pp-cancel a,
.bt-card-cancel a {
	float: right;
	color: #3d95ce;
	font-size: 11px;
	line-height: 20px;
	padding: 0px;
	margin: 0;
	border: 0px;
	cursor: pointer;
	text-decoration: underline;
	background-color: transparent;
}

.bt-pp-cancel button:hover,
.bt-pp-cancel a:hover,
.bt-card-cancel a:hover {
	color: #215b83;
}

.braintree-change-method {
	padding: 20px 0 0;
	font-size: 11px;
	color: #666;
}

.braintree-change-method a {
	color: #666;
	padding-bottom: 1px;
}

.braintree-change-method a:hover {
	color: #333;
}

.nochex-logo {
	display: block;
	float:left;
}

.nochex-label {
    clear: both;
    width: 100%;
    text-align: right;
    margin: 5px auto;
}

.wpwl-form {
	padding: 0 10px;
	margin-top: 24px;
}

.wpwl-wrapper-billing .wpwl-control-country {
	margin-top: 0;
}

/*
|--------------------------------------------------------------------------
| Checkout > Success > Order Summary
|--------------------------------------------------------------------------
*/
.order-summary {
	border: 2px solid #e7e7e7;
}

.order-summary .cart-overview--item {
	padding: 0;
	margin: 0;
}

.order-summary .cart-overview--item-gift {
	background-color: #e7e7e7;
	padding: 0;
}

.order-summary .cart-overview--item-checkbox {
	padding: 5px 10px;
	background: #e7e7e7;
}

.order-summary .cart-overview--item {
	padding: 10px;
}

.order-summary .cart-overview--item:last-child {
	border-bottom: none;
}

.order-delivery {
	padding: 18px 24px;
	font-weight: 700;
	border-bottom: 2px solid #e7e7e7;
}

.order-delivery--title {
	font-size: 18px;
	color: #666;
	display: block;
}

.order-delivery--address {
	font-size: 12px;
	color: #abadae;
	display: block;
}

.order-details {
	padding: 18px 24px;
	font-weight: 700;
	color: #666;
	border-top: 2px solid #e7e7e7;
}

.order-detail {
	padding: 4px 0;
}

.order-detail--title {
	color: #abadae;
	text-transform: uppercase;
	font-size: 12px;
}

.order-detail__green {
	color: #51ac5c;
}

.order-detail__red {
	color: #006845;
}

/*
|--------------------------------------------------------------------------
| Checkout > Stages
|--------------------------------------------------------------------------
*/
.checkout-stages {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	font-weight: 700;
}

.checkout-stage {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 50px;
	color: #666666;
	background:#fff;
	border-right:1px solid #DFEFDB;
}

.checkout-stage span {
	display: block;
	padding: 0 20px 0 0;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	font-weight: 500;
    letter-spacing: 0.03em;
	height: 50px;
	width: 300px;
	text-transform: uppercase;
	position: absolute;
	left: -126px;
	top: 126px;
	line-height: 50px;
	text-align: right;
}

.checkout-stage.dark,
.checkout-stage.darker,
.checkout-stage.darkest,
.checkout-stage.failed {
	color: #fff;
}

.checkout-stage.dark {
	background: #006845;
	border-right:2px solid #006845;
}

.checkout-stage.darker {
	background: #015237;
	border-right:2px solid #015237;
}

.checkout-stage.darkest {
	background: #01402b;
	border-right:2px solid #01402b;
}

.checkout-stage.failed {
	background: #006845;
	border-right:2px solid #006845;
}

.checkout-stage:nth-child(2) {
	left: 50px;
}

.checkout-stage:nth-child(3) {
	left: 100px;
}

.checkout-stage:nth-child(4) {
	left: 150px;
}

.account-overlay-form {
	padding: 20px 0;
}

/*
|--------------------------------------------------------------------------
| Account > Sections
|--------------------------------------------------------------------------
*/
.account-section--row {
	border-bottom: 1px solid #e7e7e7;
	padding: 10px;
}

.account-subs {
	margin: -30px;
}

.account-section--row:last-child {
	border-bottom: none;
}

.account-section--title {
	font-size: 18px;
	font-weight: 700;
	display: block;
	color: #2d2d2d;
	margin-bottom: 10px;
}

.account-section--image {
	width: 130px;
}

.account-section--image > img {
	display: block;
	width: 100%;
}

.account-subs--prod-details {
	padding-left: 20px;
}

.account-section--sub {
	font-weight: 600;
	font-size: 13px;
	padding-right: 3px;
}

.account-section--value {
	font-size: 13px;
}

.opt-label {
	color: #adadad;
	margin-right: 4px;
}

.account-subs--prod-opts {
	margin: 0 -20px -5px 0;
}

.account-subs--prod-opt {
	padding: 0 20px 5px 0;
	font-size: 13px;
}

.preferred > span {
	display: none;
}

.preferred {
	margin: 0 -10px -5px 0;
}

.preferred > .sub-sel {
	display: block;
	font-weight: 400;
	padding: 0 10px 5px 0;
}

.order-row {
	margin-bottom: 15px;
}

/*
|--------------------------------------------------------------------------
| Account > Subscriptions
|--------------------------------------------------------------------------
*/
.account-subs--prod {
	padding-right: 20px;
}

.account-subs--details {
	padding-left: 40px;
}

.account-subs--row {
	padding: 0 0 4px;
}

.account-subs--row:last-child {
	padding-bottom: 0;
}

.account-subs--action > .button {
	margin-right: 5px;
}

/*
|--------------------------------------------------------------------------
| Account > Forms
|--------------------------------------------------------------------------
*/
.account-box.full {
	width: 100%;
}

.account-box-centered {
	max-width:580px;
	margin:0 auto;
	padding:0;
}

.account-box h2 {
	font-size: 18px;
}

.account-box h3, #account-box-trade h3 {
	font-size: 16px;
}

.account-box.fl {
	padding-right:10px;
}

.account-box.fr {
	padding-left:10px;
}

.newacc-intro {
	text-align: center;
	margin: 0 0 30px;
}

.newacc-title {
	margin: 20px 0 10px 0;
	font-size: 30px;
}

.form-note {
	display: block;
	padding: 8px 0 0;
	font-size: 11px;
	color: #7a7a7a;
}

.account a.form-note:hover {
	color: #7a7a7a;
	text-decoration: underline;
}

.account-box .uppercase {
	max-width: 150px;
}

/*
|--------------------------------------------------------------------------
| Account > Wishlist
|--------------------------------------------------------------------------
*/
.select2-account .select2-results {
	border: 1px solid #019dc3;
}

.select2-options-dropdown {
	border: 2px solid #019dc3;
}

.select2-account:before {
	display: none;
}

.wishlist {
	background-color: #DFEFDB;
	margin: 0 0 4px;
	padding: 20px;
}

.wishlist .dbl {
	table-layout: auto;
}

.wishlist .dblc:first-child {
	vertical-align: top;
	width: 100%;
}

.wishlist .dblc:nth-child(2) {
	vertical-align: middle;
	white-space: nowrap;
}

.wishlist-title a {
	text-transform: none;
}

.wishlist .wishlist-title a:hover {
	color: #006845;
	text-decoration: underline;
}

.wishlist-desc {
	font-size: 12px;
}

.wishlist-desc {
	font-size: 12px;
	color: #fff;
}

.wishlist-items,
.wishlist-del {
	padding-left: 10px;
	display: inline-block;
	line-height: 20px;
}

.wishlist-del,
.wishlist-prod-del-button span {
	cursor:pointer;
	color: #006845;
	font-weight: 700;
}

.wishlist-del:hover,
.wishlist-prod-del-button span:hover {
	color: #014c33;
}

.wishlist-del {
	padding-left: 10px;
}

.wishlist-prod-del-button span {
	float: right;
}

.wishlist-items {
	font-size: 11px;
	text-transform: uppercase;
	opacity: 0.4;
}

.wishlist-top {
	width: 100%;
	table-layout: auto;
	margin-bottom: 40px;
}

.wishlist-top .wishlist-top-left h1 {
	margin: 0; padding: 0;
	float: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.wishlist-top-right .button {
	margin-right: 10px;
}

.wishlist-top-right .button:last-child {
	margin-right: 0;
}

.wishlists p {
	margin-bottom: 30px;
}

.account-wishlist .message-error {
	margin-bottom: 0
}

.account a:not(.button):hover {
	color: #2d2d2d;
}

.address-blocks--grid {
	margin: 0 -10px 0 0;
}

.wishlist-stock {
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 700;
	color: #2d2d2d;
	padding-top: 8px;
	display: block;
}

.wishlist-stock img {
	width: 15px;
}

.cart_customfield {
	font-size: 12px;
	font-weight: 700;
	color: #666666;
}

.create-wishlist {
	float: right;
}

.wishlist-prod td {
	padding: 20px;
	background: #fff;
	border-bottom: 1px solid #DFEFDB;
}

.wishlist-prod .wishlist-prod-image {
	padding-right: 0;
	width: 100px;
}

.wishlist-prod-image a,
.wishlist-prod-image img {
	display: block;
}

.wishlist-prod-image img {
	border: 1px solid #EAEAEA;
}

.wishlist-prod a {
	font-weight: 600;
	font-size: 16px;
	color: #006845;
}

.wishlist-prod a:hover {
	text-decoration: underline;
	color: #006845;
}

.wishlist-prod-move-button {
	width: 1px;
}

.wishlist-prod-move-button span {
	cursor: pointer;
	color: #006845;
}

.wishlist-prod-move-button span:hover {
	text-decoration: underline;
}

.wishlist-prod .wishlist-prod-add-button {
	width: 1px;
	padding-left: 0;
	padding-right: 0;
}

.wishlist-prod-add-button button {
	letter-spacing: -0.025em;
	line-height: 1;
	white-space: nowrap;
}

.wishlist-prod-del-button {
	width: 1px;
}

.wishlist-choose-container {
	max-height: 300px;
	overflow-y: auto;
}

.wishlist-choose-selected {
	background-color: #006845;
}
.in-wishlist {
	background-color: #1a803b;
}
.wishlist-choose {
	margin: 4px 0;
	padding: 15px;
	cursor: pointer;
	line-height: 1.3;
	color: #fff;
	background-color: #006845;
	-webkit-transition: .3s all ease-out;
	transition: .3s all ease-out;
}

.wishlist-choose:hover {
	background-color: #014c33;
}

.wishlist-choose:first-child {
	margin-top: 0;
}

.wishlist-choose:last-child {
	margin-bottom: 0;
}

.wishlist-choose-title {
	font-size: 15px;
}

.wishlist-choose-desc {
	font-size: 12px;
	opacity: .5;
}

.wishlist-all {
	padding-top: 20px;
	width: 100%;
}

/*
|--------------------------------------------------------------------------
| Offer Overlay
|--------------------------------------------------------------------------
*/
.offer-overlay {
	position: fixed;
	top: 0;right: 0;bottom: 0;left: 0;
	z-index: 999;
}

.offer-overlay--bg {
	position: absolute;
	top: 0;right: 0;bottom: 0;left: 0;
	background-color: rgba(0, 0, 0, 0.6);
}

.offer-overlay--block {
	position: absolute;
	top: 50%;left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	max-width: 620px;
	width: 95%;
	border: 10px solid #fff;
	border-radius: 2px;
	z-index: 1;
}

.offer-overlay--upper {
	background-color: #006845;
	padding: 60px 50px;
	position: relative;
	z-index: 1;
}

.offer-overlay--action {
	display: block;
	border-top: 10px solid #fff;
	background-color: #5e9732;
	padding: 10px;
	text-align: center;
	font-size: 21px;
	color: #fff;
	cursor: pointer;
}

.offer-overlay--title {
	display: block;
	text-align: center;
	font-size: 48px;
	line-height: 50px;
	color: #fff;
	margin-bottom: 25px;
}

.offer-overlay--sub {
	display: block;
	font-size: 17px;
	color: #fffcd9;
	margin-bottom: 30px;
	text-align: center;
}

.no-js .offer-overlay {
	display: none;
}

.overlay-offer--input {
	width: calc(100% - 98px);height: 50px;
	border: 1px solid #e6e6e6;
	padding: 0 12px;
}

.offer-overlay--upper .message {
	position: absolute;
	top: 20px;right: 50px;left: 50px;
}

/*
|--------------------------------------------------------------------------
| Account > Order History
|--------------------------------------------------------------------------
*/
.order-history {
	width: 100%;
	margin: 0 0 30px;
	background-color: #fff;
}

.order-history th {
	background: #006845;
	color: #ffffff;
	padding: 15px;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 700;
}

.order-history td {
	padding: 15px;
	color: #444;
}

.order-history tr:nth-child(even) {
	background-color: #e7e7e7;
}

.order-history .button {
	float: right;
}

.order-history-stock-error {
	margin-bottom: 20px;
}

.account-back-link {
	display: flex;
	align-items: center;
	width: max-content;
	margin-bottom: 20px;
}

.account-back-link::before {
	content: '';
	height: 17px;
	width: 17px;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 17 17" fill="none"><path d="M6.37504 9.91666L2.83337 6.37499L6.37504 2.83333" stroke="%234677AF" style="stroke:%234677AF;stroke:color(display-p3 0.2745 0.4667 0.6863);stroke-opacity:1;" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M14.1667 14.1667V9.20833C14.1667 8.45689 13.8682 7.73622 13.3368 7.20486C12.8055 6.67351 12.0848 6.375 11.3334 6.375H2.83337" stroke="%234677AF" style="stroke:%234677AF;stroke:color(display-p3 0.2745 0.4667 0.6863);stroke-opacity:1;" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 5px;
}

.filter-rows {
    margin: 0 20px 30px 0;
}

.filter-row {
    display: flex;
    align-items: center;
	margin: 0 -15px -15px 0;
}

.filter-row:not(:last-child) {
    margin-bottom: 5px;
}

.filter-row > * {
    margin: 0 15px 15px 0;
}

.filter-row--title {
    font-weight: 600;
    margin-right: 15px;
}

.filter-row > .input {
    display: flex;
    align-items: center;
}

.filter-row .checkbox {
	margin-bottom: 0;
	border-width: 1px;
	border-radius: 0;
}

.filter-row .checkbox:after {
	background: url(/images/style/basic/icon-tick-black.png) no-repeat 2px 3px #fff;
}

.filter-row .checkbox-label {
	font-size: 14px;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #DFEFDB !important;
}
.input-rounded .select2-container--default .select2-selection--single {
	border-radius:  0 0 8px 0;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #006845;
}

.filter-row .select2-basic--container.select2-selection--single .select2-selection__rendered {
    padding: 12px 55px 12px 12px;
}

.filter-row .select2-container--default .select2-selection--single .select2-selection__arrow {
   	background-image: url(/images/style/basic/select-arrow-black@2x.png);
}

.account-table--titles {
    margin: 18px 0 8px;
}

.account-table--titles > * {
	margin-bottom: 10px;
}

.account-table--title {
    font-size: 18px;
    color: #3379B4;
    font-weight: 600;
	margin-right: 20px;
}

.account-search-input {
	position: relative;
}

.account-search-input::before {
	content: '';
	position: absolute;
	left: 12px; top: 9px;
    width: 21px; height: 21px;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="19" height="20" viewBox="0 0 19 20" fill="none"><path d="M8.70833 15.5417C12.2061 15.5417 15.0417 12.7061 15.0417 9.20833C15.0417 5.71053 12.2061 2.875 8.70833 2.875C5.21053 2.875 2.375 5.71053 2.375 9.20833C2.375 12.7061 5.21053 15.5417 8.70833 15.5417Z" stroke="%234677AF" style="stroke:%234677AF;stroke:color(display-p3 0.2745 0.4667 0.6863);stroke-opacity:1;" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M16.625 17.125L13.1813 13.6812" stroke="%234677AF" style="stroke:%234677AF;stroke:color(display-p3 0.2745 0.4667 0.6863);stroke-opacity:1;" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.account-search-input input[type="text"] {
    padding: 12px 12px 12px 42px;
    height: unset;
}

.account-pagination .page_numbers_inner {
	padding: 10px;
}

#page_numbers.account-pagination a {
    padding: 5px;
	font-weight: 400;
}

#page_numbers.account-pagination .page_number_sel a {
    background: transparent; 
	color: #4778B0;
	font-weight: 600;
}

/*
|--------------------------------------------------------------------------
| Account > Order Info
|--------------------------------------------------------------------------
*/
.order-address {
	margin: 0 0 30px;
	overflow: hidden;
}

.oa-del,
.oa-bil {
	width: 50%;
	float: left;
}

.oa-del {
	padding: 0 20px 0 0;
}

.order-sub {
	text-align: right;
}

.order-total {
	float: right;
}

/*
|--------------------------------------------------------------------------
| Account > Order Tracking
|--------------------------------------------------------------------------
*/
.tracked-order {
	width: 100%;
	max-width: 800px;
	margin: 30px 0;
}

.tracked-qty {
	width: 95px;
	text-align: center;
}

.tracked-date {
	text-align: right;
}

.track-again {
	margin: 30px auto 0;
}

/*
|--------------------------------------------------------------------------
| Sitemap
|--------------------------------------------------------------------------
*/
.sitemap-page {
	font-size: 11px;
}

.sitemap-left,
.sitemap-right {
	width: 50%;
	max-width: 450px;
	padding: 0 15px;
	float: left;
}

.sitemap-right {
	padding-right: 0;
}

.shop-sitemap .sitemap-cat {
	margin: 15px 0 0;
}

.shop-sitemap h2 {
	margin-top: 30px;
}

/*
|--------------------------------------------------------------------------
| Account v2
|--------------------------------------------------------------------------
*/
.account-heading {
    margin: -40px -40px 30px -40px;
    padding: 38px 36px;
	display: flex;
	justify-content: space-between;
	align-items: center;
    border-bottom: 1px solid #EAEAEA;
}

.account-heading h1,
.account-heading h2 {
    font-size: 30px;
    font-weight: 600;
    color: #2b2b2b;
	margin: 0;
}

.account > .container {
	display: flex;
	align-items: flex-start;
}

.account-login > .container {
	flex-wrap: wrap;
}

.account-subtitle {
	font-size: 18px;
	padding: 0 0 20px;
	color: #2d2d2d;
}

.account-subtitle.invoice-subtitle {
	padding-bottom: 0;
}
.account-subheading {
	font-size: 16px;
	padding: 0 0 16px;
	color: #2d2d2d;
}

.account-sidebar--mobile-title {
	display: none;
	position: relative;
	padding: 20px;
	font-size: 16px;
	color: #707070;
}

.account-sidebar--mobile-title svg {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 16px;
	transform-origin: center;
}

.account-sidebar--mobile-title svg path {
	fill: #707070;
}

.account-sidebar--mobile-title.open svg {
	transform: rotate(-180deg) translateY(4px);
}

.account-sidebar {
    width: 280px;
    background-color: #fff;
    float: left;
    margin: 0 20px 0 0;
	border: 1px solid #EAEAEA
}

.account-sidebar nav {
	
}

.account-sidebar-btm.mobile {
	display: none;
}

.loyalty-points-dblc {
	display: none;
}

.account-sidebar nav li a {
	display: block;
    font-size: 15px;
    color: #006845;
    padding: 14px 20px;
    border-bottom: 1px solid #EAEAEA;
}

.account-sidebar a {
	font-size: 16px;
	color: #707070;
	border-bottom: 1px solid transparent;
}

.account-sidebar a:hover,
.account-sidebar .sel {
	color: #2d2d2d;
}

.account-sidebar nav .sel {
    font-weight: 600;
    color: #2b2b2b;
}

.account-sidebar-btm {
    background-color: #f9f9f9;
    padding: 18px 24px;
}

.account-sidebar-btm div {
	font-size: 14px;
	padding: 0 0 4px;
	color: #2d2d2d;
}

.account-sidebar-btm a {
	text-transform: uppercase;
	font-size: 11px;
}

.account-main {
    background-color: #fff;
    border: 1px solid #EAEAEA;
    flex: 1;
    padding: 40px;
    color: #2d2d2d;
}

.account-main--upper {
	padding: 0 30px;
}

.account-main-filter {
	float: right;
	height: 40px;
	color: #2d2d2d;
	padding: 0 20px;
	background-color: transparent;
	border: 1px solid #EAEAEA;
}

.account-main .input input:focus ~ label {
	color: #2d2d2d;
}

.account-main .input input:focus {
	border-color: #e7e7e7 !important;
}

.account-panels {
	padding: 0 0 20px;
}

.account-panels--grid {
	margin: 0 -10px 0 0;
}

.account-panel {
	width: 33.3333333333%;
	float: left;
	padding: 0 10px 10px 0;
}

.account-panel--inner {
	display: block;
	border: 1px solid #EAEAEA;
	padding: 12px 15px;
	color: #2d2d2d;
}

.account-panel--inner:hover {
	text-decoration: none;
}

.account-panel--label {
	font-size: 12px;
	color: #707070;
	padding: 0 0 5px;
	text-transform: uppercase;
	display: block;
}

.account-panel:hover .account-panel--svg {
	background: #555;
}

.account-panel--svg {
	width: 20px;
	height: 20px;
	float: right;
	text-align: center;
	background-color: #666;
	border-radius: 10px;
	line-height: 22px;
	transition: .3s ease;
	display: flex;
	align-items: center;justify-content: center;
}

.account-panel--svg svg path {
	fill: #fff;
}

.account-panels--wide .account-panel {
	width: 25%;
}

.account-table {
	width: 100%;
	border: 1px solid #EAEAEA;
	table-layout: auto;
	margin: 0 0 30px;
}

.account-table .dblc {
	padding: 12px 15px;
	color: #2d2d2d;
	font-size: 12px;
	border-bottom: 1px solid #EAEAEA;
}

.account-table .dblr:last-child .dblc {
	border-bottom: none;
}

.account-table .dblc.small {
	width: 1px;
}

.account-table .dblc.full {
	width: 100%;
}

.account-table .dblr:first-child .dblc, .dblr-title .dblc {
	color: #707070;
	text-transform: uppercase;
    white-space: nowrap;
}

.account-table--label {
	color: #707070;
	font-size: 12px;
	text-transform: uppercase;
}

.account-table--value {
	color: #2d2d2d;
	line-height: 15px;
	padding: 4px 0 0;
	font-size: 12px;
}

.account-table--image {
	border: 1px solid #EAEAEA;
	width: 151px;height: 151px;
	margin-bottom: 10px;
	padding-top: 0;
}

.account-table--image img {
	display: block;
	width: 100%;
}

.account-invoices h1 {
	margin: 0;
}

.account-invoices .message-error {
	margin: 0;
}

.account-invoices-outstanding {
	padding-bottom: 10px;
}

.account-invoices-outstanding .account-table-invoices {
	margin: 15px 0;
}

.account-invoices-outstanding .pay-btn {
	margin: 15px 0;
}

.account-table-invoices .dblc:first-child {
	padding-right: 0;
	vertical-align: middle;
}

.account-table-invoices [type="checkbox"] {
	display: block;
}

.account-invoices-section + .account-invoices-section {
	margin-top: 20px;
}

.account-latest-orders {
	border: 1px solid #EAEAEA;
	font-size: 11px;
	color: #006845;
	text-align: center;
	padding: 12px;
	border-top: none;
}

.order-totals {
	border: 1px solid #EAEAEA;
	padding: 15px 24px;
	text-align: right;
	font-size: 13px;
	color: #707070;
	text-transform: uppercase;
	margin: 0 0 30px;
	border-top: 0;
}

.order-totals .dbl {
	width: 140px;
	float: right;
}

.order-totals .dblc {
	padding: 5px 0;
}

.order-totals .dblc:first-child {
	text-align: left;
}

.order-totals .dblr:last-child {
	color: #2d2d2d;
	font-weight: 600;
}

.order-buttons {
	margin: 30px 0 0;
}

.order-panels {
	padding: 0 0 30px;
}

.order-panels--grid {
	margin: 0 -10px 0 0;
}

.order-panels .message-error {
	margin: -10px 0 30px;
}

.order-panel {
	width: 33.3333333%;
	padding: 0 10px 0 0;
	font-size: 12px;
	float: left;
}

.order-panel--inner {
	border: 1px solid #EAEAEA;
	padding: 12px 15px;
}

.order-panel--data {
	padding: 0 0 10px;
}

.order-panel--data:last-child {
	padding: 0;
}

.order-panel--label {
	font-weight: 700;
}

.order-btns {
	margin: 30px 0 0 0;
}

.account-mini-title {
    font-size: 18px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000000;
    font-weight: 500;
    font-family: 'Arvo', sans-serif;
    margin-bottom: 10px;
}

.account-loyalty--blocks {
	margin: 0 -20px -20px 0;
}

.account-loyalty--blocks > .segment-33 {
	display: flex;
	padding: 0 20px 20px 0;
}

.account-loyalty--block {
	width: 100%;
	padding: 10px;
	border: 1px solid #EAEAEA;
	color: #249a4b;
	text-align: center;
	font-size: 15px;
}

.account-loyalty--strong {
	font-size: 18px;
	font-weight: 600;
}

.account-title {
	font-size: 30px;
	font-weight: 600;
	color: #2b2b2b;
}

.account-loyalty--blocks {
	padding: 0 0 20px;
}

.account-loyalty--current {
	font-size: 21px;
	color: #006845;
}

.account-loyalty--next {
	font-size: 15px;
	color: #006845;
}

.points-table--row {
	border-bottom: 1px solid #EAEAEA;
	padding: 16px 0;
	align-items: center;
}

.points-table--row:last-child {
	border-bottom: none;
}

.points-table--earned {
	width: 186px;
	text-align: center;
	color: #249a4b;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.points-table--earned strong {
	font-weight: 600;
	font-size: 21px;
	letter-spacing: 0;
}

.points-table--earned.points-spent {
	color: #4b88b1;
}

.points-table--details-item,
.points-table--label {
	font-size: 13px;
	font-weight: 600;
	color: #2b2b2b;
	margin-bottom: 8px;
}

.points-table--details-item {
	margin-bottom: 0;
	font-weight: 400;
	padding: 0 40px 20px 0;
}

.points-table--details-row {
	margin: 0 -40px -20px 0;
}

.points-table--details {
	border-left: 1px solid #EAEAEA;
	padding: 0 0 0 40px;
}

.points-table--history {
	background-color: #f9f9f9;
	border: 1px solid #EAEAEA;
	border-top: 0;
}

.account-loyalty--overview {
    width: 100%;
    text-align: center;
    font-size: 16px;
	line-height: 1.4;
    background-color: #F7F7F7;
    padding: 35px 30px 30px;
}
.account-loyalty--overview:not(:last-child) {
	margin-bottom: 60px;
}
.account-loyalty--overview--total {
    font-size: 46px;
	font-weight: 600;
	margin: 6px 0 8px;
}
.account-loyalty-section .account-mini-title {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.02em;
    margin-bottom: 15px;
}
.account-loyalty-section .account-content {
    font-size: 16px;
}
.loyalty-referral-code {
    display: flex;
    align-items: center;
    color: #222;
	font-weight: 500;
    margin: 20px 0;
}
.loyalty-referral-code > span {
    background-color: #fff;
    padding: 13px 15px;
    margin-left: 10px;
    margin-top: -4px;
    border: 1px solid #000;
    font-weight: 600;
    word-break: break-all;
}
.account-loyalty-section + .account-loyalty-section {
    margin-top: 60px;
}

.loyalty-table-cont {
	overflow: hidden;
}

.loyalty-table {
	table-layout: auto;
	margin-bottom: 20px;
	border: 1px solid #EAEAEA;
}

.loyalty-table .dblc {
	padding: 12px 15px;
	font-size: 12px;
}

.loyalty-table .dblc:not(:last-child) {
	border-right: 1px solid #EAEAEA;
}

.loyalty-table .full {
	width: 100%;
}

.loyalty-table .small {
    white-space: nowrap;
}

.loyalty-point--cont {
	width: 160px;
	float: left;
	text-align: center;
}

.loyalty-point {
    width: 70px;
    font-weight: 600;
}
.loyalty-point span {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	height: 14px; width: 14px;
	margin-right: 8px;
}
.loyalty-point span::before, .loyalty-point span::after {
	content: '';
	position: absolute;
	background-color: #FFF;
	border-radius: 2px;
}
.loyalty-point span::before {
	height: 100%; width: 2px;
}
.loyalty-point span::after {
	height: 2px; width: 100%;
}
.loyalty-dec .loyalty-point span::before {
	display: none;
}
.loyalty-overflow {
	display: none;
}
.loyalty-overflow--toggle {
	margin-top: 12px;
}
.loyalty-overflow--toggle::before {
	content: 'View Full Points History'; 
	position: relative;
}
.loyalty-overflow--toggle.toggled::before {
	content: 'Show Less Points History'; 
}

.top-loyalty {
	position: relative;
	padding: 0 0 40px;
	z-index: 1;
}

.loyalty {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 18px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: #FFF;
}
.loyalty:not(:last-child) {
    margin-bottom: 5px;
}
.loyalty.loyalty-dec {
    background-color: #D43133;
}
.loyalty.loyalty-inc {
    background-color: #40B80D;
}
.loyalty > *:not(:last-child) {
    margin-right: 25px;
}

.copy-toast {
	display: none;
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 30px;
    z-index: 1002;
    background-color: #40B80D;
    color: #FFF; 
	text-align: center;
}

.top-loyalty--text {
	border: 1px solid #EAEAEA;
	overflow: hidden;
	font-size: 13px;
    padding: 12px 15px;
	color: #707070;
}

.top-loyalty--text span {
	color: #2d2d2d;
}

.top-loyalty .loyalty-point {
	font-size: 14px;
	color: #2d2d2d;
	margin: 0;
}

.account-login--checkbox-cont span {
	display: block;
	font-size: 11px;
	padding: 8px 0 0;
}

.account-details--title-text {
	font-size: 12px;
	padding: 0 0 20px;
	clear: both;
}

.account-details--block {
	border: 1px solid #EAEAEA;
	padding: 12px 15px;
	margin: 0 0 10px;
}

.account-details--block .dblc {
	padding: 5px;
}

.account-details--block-action {
	padding: 5px 0 5px 0;
}

.account-login .container {
	max-width: 620px;
}

.account-login--block {
	width: 100%;
	padding: 30px 40px 35px;
	background: #DFEFDB;
	margin-bottom: 30px;
	border-radius: 12px 0;
}

.account-login--block h3 {
	font-size: 24px;
	font-weight: normal;
	padding-bottom: 8px;
	color: #2d2d2d;
}

.account-login--block p {
	font-size: 13px;
	margin-bottom: 20px;
}

.account-login--section {
	margin-bottom: 20px;
}

.account-login--block .form-note {
	padding: 8px 0;
}

.account-login--buttons {
	margin-top: 10px;
}

.account-login--buttons .form-note {
	text-transform: uppercase;
}

.account-login--trade {
	margin: 15px 0 -2px;
}

.account-comms--preferences-subtitle {
	margin-bottom: 8px;
}

.account-comms--preferences {
	padding: 20px;
}

.account-comms--preferences .input-grid {
	padding-left: 8px;
}

.account-comms--preferences-inner {
	padding: 0 0 10px 10px;
}

.quote-side {
	width: 50%;
	float: right;
}

.quote-side .cart-segment {
	margin-bottom: 20px;
	background: none;
}

.quote-side .cart--heading {
	
}

.quote-side .basket-segment {
	margin-bottom: 0;
	border: 1px solid #EAEAEA;
}

.payments-subtitle {
    font-size: 18px;
    margin: 20px 0 10px;
    color: #2d2d2d;
}

/*
|--------------------------------------------------------------------------
| Account v2 > Overlays
|--------------------------------------------------------------------------
*/

.account-overlay {
	
}

.account-overlay .checkbox-label {
	color: #1e1e1e;
}

.account-overlay .input {
	margin: 0 0 4px;
}

.account-overlay--title {
	font-size: 21px;
	color: #1e1e1e;
	padding: 0 0 20px;
}

.account-overlay--action {
	text-align: right;
	padding: 5px 0 0 0;
}

.account-overlay--action .button {
	font-size: 14px;
}

.address-block--grid {
	margin: 0 -10px 0 0;
}

.address-block,
.address-block--add {
	float: left;
	padding: 0 10px 10px 0;
	color: #2d2d2d;
}

.address-block--title {
	font-size: 11px;
	color: #707070;
	padding: 0 0 4px;
}

.address-block--inner {
	border: 1px solid #EAEAEA;
	padding: 12px 15px;
}

.address-block__primary .address-block--inner {
	border-color: #2d2d2d;
}

.address-block--address {
	font-size: 12px;
}

.address-block--action {
	padding: 20px 0 0 0;
}

.address-block--action a,
.address-block--action button,
.address-block--action {
	font-size: 10px;
	color: #707070;
}

.address-block--action button {
	background: 0;
	font-family: inherit;
	text-align: left;
}

.address-block--action button:hover {
	text-decoration: underline;
}

.account-overlay--checkboxes {
	padding: 14px 0 0 0;
}

.account-overlay--checkboxes-title {
	font-size: 11px;
	color: #707070;
	text-transform: uppercase;
	padding: 0 0 4px;
}

.address-block--add-inner {
	position: relative;
	border: 1px solid #EAEAEA;
	text-align: center;
	height: 100px;
	cursor: pointer;
}

.address-block--add-wrap {
	position: absolute;
	top: 50%;
	left: 0; right: 0;
	transform: translateY(-50%);
}

.address-block--add-wrap,
.address-block--add-wrap svg path {
	transition: .3s ease;
}

.address-block--add-title {
	font-size: 14px;
	color: #666;
}

.address-block--add-wrap svg path {
	fill: #666;
}

.address-block--add-inner:hover {
	border-color: #999;
}

.address-block--add-inner:hover .address-block--add-title {
	color: #555;
}

.address-block--add-inner:hover svg path {
	fill: #555;
}

.mobile-cats {
	display: none;
	padding: 0 0 20px;
}

.mobile-cats--title {
	position: relative;
	font-size: 24px;
	padding: 10px 16px;
	background-color: #2d2d2d;
	margin: 0 0 10px;
}

.mobile-cats--title svg {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 16px;
	transform-origin: center;
}

.mobile-cats a {
	padding: 10px;
	color: #fff;
}

.mobile-cats a.sel {
	color: #006845;
}

.mobile-cats--cats {
	display: none;
}

.mobile-cats--title.open {
	color: #006845;
}

.mobile-cats--title.open svg {
	transform: rotate(-180deg);
}

.mobile-cats--title.open ~ .mobile-cats--cats {
	display: block;
}

/*
|--------------------------------------------------------------------------
| Account v2 > Vouchers
|--------------------------------------------------------------------------
*/
 .button.voucher_remove {
	border-radius: 0;
	padding: 12px 12px;
	visibility: middle;
	background-image: url(/images/style/basic/cross-white.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 12px 12px;
	background-color: #707070;
}

.button.voucher_remove:hover {
	background-color: #2f2f2f;
}

.voucher.dblr .dblc {
	vertical-align: middle;
}

.voucher.dblr .dblc:last-child {
	text-align: right;
}

.vouchers-wrapper {
	padding-top: 20px;
}

.voucher_add {
	height: 50px;
}

.input #voucher_add {
	right: 4px;
}

.checkout-title.no_border {
	border: none;
}

.account-box--voucher .account-subtitle {
	padding: 0 0 10px;
}

.account-box--voucher {
	border: 1px solid #EAEAEA;
	padding: 12px 15px;
	margin-bottom: 12px;
}

.account-box--voucher .input {
	margin-bottom: 0;
}

.account-box .xvc_input {
    max-width: none;
}

.account-table.vouchers .dblc span {
	display: none;
}

.account-table.vouchers .dblc.small {
	width: auto;
}

.account-table.vouchers {
	margin: 0 0 20px;
}

.account-overlay--text {
	margin-bottom: 10px;
}

.account-table.vouchers .dblc .voucher-code--small {
	display: block;
	font-size: 10px;
	color: #717171;
	line-height: normal;
}

/*
|--------------------------------------------------------------------------
| Category > Featured Filters
|--------------------------------------------------------------------------
*/
.featured-filters {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -10px;
}
.featured-filters:not(:first-child) {
	margin-top: 15px;
}
.featured-filter {
	display: flex;
	width: 25%;
	padding: 37px 30px;
	margin-bottom: 10px;
	flex-direction: column;
	border-right: 1px solid #EAEAEA;
}
.featured-filter:nth-child(4n) {
	border-right: 0;
}

.empty-category {
	margin: 30px;
}

#featuredFilterSubmitButton.disabled {
	cursor: not-allowed;
	pointer-events: none;
	background-color: #9a9898;
}

.featured-filter--info {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}

.featured-filter--heading {
	position: relative;
	margin: 0 0 auto 0;
}

.featured-filter--image-cont {
	flex-shrink: 0;
}

.featured-filter--heading:after {
	position: absolute;
	top: 0; left: 0;
	height: 32px;
	width: 32px;
	border-radius: 16px;
	background-color: #0a3d74;
	font-weight: 600;
	text-align: center;
	color: #fff;
	line-height: 32px;
	font-size: 20px;
}

.featured-filter--title {
	font-size: 18px;
	color: #0a3d74;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: uppercase;
}

.featured-filter--subtitle {
	font-size: 14px;
	color: #606060;
	letter-spacing: -0.025em;
	margin: 4px 0 0 0;
}

.featured-filter--select {
	margin: 18px 0 0 0;
}

.featured-filter--select .select2-container--default .select2-selection--single {
	padding: 10px;
	border: 1px solid #EAEAEA;
}

.featured-filter--select .select2-container--open .select2-selection--single,
.sort-by .select2-container--open .select2-selection--single {
	border: 1px solid #3379b4;
}

.featured-filter--submit {
	display: block;
	width: 100%;
	border-radius: 0;
	font-size: 18px;
	padding: 12px;
}

.featured-filter--submit svg {
	vertical-align: middle;
	margin: 0 4px 0 0;
}

#price-spinner {
	border-left: 1.1em solid black;
}

.subs-olay-title {
    font-weight: 600;
    margin: 5px 10px 5px 0;
    font-size: 13px;
    white-space: nowrap;
	color: #2b2b2b;
}

.subs-olay--row {
	margin: 10px 0;
}

.subs-olay--list-item {
	white-space: nowrap;
	margin: 5px 10px 5px 0;
}

.subs-olay--list-item input {
	margin: 0 3px 0 0;
}

.subs-olay-btns .button {
	margin: 0 5px 0 0;
	border-radius: 5px;
}

.subs-olay .account-main-2-heading {
    margin: -30px -30px 30px -30px;
}

.subs-olay--list-item input[type="radio"],
.subs-olay--list-item input[type="checkbox"] {
	display: none;
}

.subs-olay--list-item--radio,
.subs-olay--list-item--checkbox {
	display: inline-block;
	position: relative;
    height: 15px;
    width: 15px;
    border: 1px solid #EAEAEA;
    border-radius: 15px;
	transform: translateY(2px);
	margin: 0 4px 0 0;
}

.subs-olay--list-item input[type="radio"] + label,
.subs-olay--list-item input[type="checkbox"] + label {
	cursor: pointer;
}

.subs-olay--list-item input[type="radio"]:checked + label .subs-olay--list-item--radio:after,
.subs-olay--list-item input[type="checkbox"]:checked + label .subs-olay--list-item--checkbox:after {
	display: block;
}

.subs-olay--list-item--radio:after,
.subs-olay--list-item--checkbox:after {
	display: none;
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    height: 9px;
    width: 9px;
    border-radius: 9px;
    background-color: #014c33;
}

.subs-olay--list-item--checkbox {
	border-radius: 3px;
	overflow: hidden;
}

.subs-olay--list-item input[type="checkbox"]:checked + label .subs-olay--list-item--checkbox {
	border-color: #014c33;
}

.subs-olay--list-item--checkbox:after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 444.2 444.2' fill='white' xml:space='preserve'%3E%3Cpath d='M161.1 437c-13.7 0-26.8-6-35.8-16.5L12 288.4c-17-19.8-14.7-49.6 5.1-66.5 19.8-17 49.6-14.7 66.5 5.1l74 86.4 234-282.2c36.2-50.7 74.1-22.6 37.8 28.3l-230 357.8c-8.4 11.8-21.8 19.1-36.3 19.7h-2z'/%3E%3C/svg%3E");
	background-size: 7px auto;
	background-repeat: no-repeat;
	background-position: center center;
	top: 0; left: 0;
	width: 14px;
	height: 14px;
    border-radius: 0;
}

.subs-olay--margin {
	margin: 5px 0 0 0;
}.account-subs--prod-opts {
	margin: 0 0 6px;
}

.account-subs--prod-opt {
	font-size: 13px;
	color: #2b2b2b;
}

.account-subs--prod-opt .opt-label {
	color: #adadad;
	margin: 0 4px 0 0 ;
}

.account-subs--prod-opt .opt-value {
	margin: 0 16px 0 0;
}

.account-subs--stock-status {
	font-size: 12px;
}

.account-subs--prod-details {
	border-right: 1px solid #EAEAEA;
	padding-right: 40px;
}

.account-subs--details {
	padding-left: 40px;
	font-size: 13px;
}

.account-subs--prod-details,
.account-subs--details {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 10px 0;
}

.account-subs--details {
	color: #2b2b2b;
}

.account-section--sub {
	font-weight: 600;
	margin: 0 4px 0 0;
	font-size: 13px;
	white-space: nowrap;
}

.account-subs--row {
	margin-top: 8px;
}

.account-subs--row:first-child {
	margin: 0;
}

.account-section--value.preferred {
	margin-top: -3px;
}

.account-section--value.preferred span {
	position: relative;
	padding: 0 0 0 20px;
	margin: 3px 6px 3px 0;
	display: inline-block;
}

.account-section--value.preferred span:before {
	content: '';
	position: absolute;
	left: 0; top: 50%;
	transform: translateY(-50%);
	height: 15px;
	width: 15px;
	border: 1px solid #EAEAEA;
	border-radius: 15px;
}

.account-section--value.preferred .sub-sel {
	font-weight: 600;
}

.account-section--value.preferred .sub-sel:after {
	content: '';
	position: absolute;
	left: 3px; top: 50%;
	transform: translateY(-50%);
	height: 9px;
	width: 9px;
	border-radius: 9px;
	background-color: #014c33;
}

.account-subs--action {
	align-items: flex-start;
}

.account-subs--action .button {
	margin: 0 5px 0 0;
}

.subs-olay--list-item input[type="radio"],
.subs-olay--list-item input[type="checkbox"] {
	display: none;
}

.subs-olay--list-item--radio,
.subs-olay--list-item--checkbox {
	display: inline-block;
	position: relative;
    height: 15px;
    width: 15px;
    border: 1px solid #EAEAEA;
    border-radius: 15px;
	transform: translateY(2px);
	margin: 0 4px 0 0;
}

.subs-olay--list-item input[type="radio"] + label,
.subs-olay--list-item input[type="checkbox"] + label {
	cursor: pointer;
}

.subs-olay--list-item input[type="radio"]:checked + label .subs-olay--list-item--radio:after,
.subs-olay--list-item input[type="checkbox"]:checked + label .subs-olay--list-item--checkbox:after {
	display: block;
}

.subs-olay--list-item--radio:after,
.subs-olay--list-item--checkbox:after {
	display: none;
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    height: 9px;
    width: 9px;
    border-radius: 9px;
    background-color: #014c33;
}

.subs-olay--list-item--checkbox {
	border-radius: 3px;
	overflow: hidden;
}

.subs-olay--list-item input[type="checkbox"]:checked + label .subs-olay--list-item--checkbox {
	border-color: #014c33;
}

.subs-olay--list-item--checkbox:after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 444.2 444.2' fill='white' xml:space='preserve'%3E%3Cpath d='M161.1 437c-13.7 0-26.8-6-35.8-16.5L12 288.4c-17-19.8-14.7-49.6 5.1-66.5 19.8-17 49.6-14.7 66.5 5.1l74 86.4 234-282.2c36.2-50.7 74.1-22.6 37.8 28.3l-230 357.8c-8.4 11.8-21.8 19.1-36.3 19.7h-2z'/%3E%3C/svg%3E");
	background-size: 7px auto;
	background-repeat: no-repeat;
	background-position: center center;
	top: 0; left: 0;
	width: 13px;
	height: 13px;
    border-radius: 0;
}

.subs-olay .account-heading {
	margin: -20px -40px 20px -40px;
    padding: 10px 40px 25px;
	display: block;
}

/*
|--------------------------------------------------------------------------
| Basket 2022
|--------------------------------------------------------------------------
*/
.basket {
	display: flex;
}

.basket-empty {
	background-color: #fff;
	padding: 20px;
}

.basket-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 0 25px;
}

.basket-heading--title {
	font-size: 42px;
	font-weight: 600;
	letter-spacing: 0.04em;
	font-family: 'larken', serif;
	letter-spacing: -0.025em;
}

.basket-heading--right {
	display: flex;
	align-items: center;
}

.basket-heading--text:first-child {
	margin-left: 0;
}

.basket-heading--text {
	font-size: 18px;
	margin-left: 74px;
}

.basket-heading--text span {
	font-weight: 600;
}

.basket-main {
	display: flex;
	align-items: flex-start;
}

.basket-items {
	border: 1px solid #EAEAEA;
}

.basket-left {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}

.basket-item {
	display: flex;
	background-color: #fff;
	border-bottom: 1px solid #EAEAEA;
	padding: 10px;
}

.basket-item:last-child {
	border-bottom: none;
}

.basket-item-main {
	display: flex;
	flex: 1 0 0;
}

.basket-item-main-wrapper {
	display: flex;
	flex: 1 0 0;
}

.basket-item-title {
	/* margin: 0 0 6px; */
}

.basket-item-title-link {
	font-size: 18px;
	font-weight: 500;
    font-family: 'larken', serif;
}

.basket-item-image {
    width: 130px;
	background-color: #EAEAEA;
}

.basket-item-details {
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding: 0 20px;
	gap: 6px 0;
	flex: 1 0 0;
}

.basket-item-options {
	/* margin: 0 0 6px; */
	display: flex;
	flex-wrap: wrap;
}

.basket-item-option {
	color: #2b2b2b;
	margin-right: 16px;
    white-space: nowrap;
}

.basket-item-option-label {
	color: #adadad;
}

.basket-item-stock-status {
	margin: 0 0 6px;
	font-size: 12px;
}

.basket-item-pricing {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-width: 180px;
	gap: 8px 0;
	color: #2b2b2b;
	padding: 0 25px;
}

.basket-item-price {
	font-size: 18px;
	line-height: 1;
}

.basket-item-unitprice {
	font-size: 13px;
}

.basket-item-savings {
	padding: 2px 4px;
	text-align: center;
	background-color: #249a4b;
	border-radius: 2px;
	font-size: 12px;
	color: #fff;
}

.basket-item .has-right-divider {
	position: relative;
}

.basket-item .has-right-divider:after {
	content: '';
	top: 15px;
	bottom: 15px;
	right: 0;
	width: 1px;
	background-color: #EAEAEA;
	position: absolute;
}

.basket-item-qty {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px 0;
	padding: 0 45px;
}

.basket-item-remove {
	font-size: 12px;
	position: relative;
	color: #2b2b2b;
	cursor: pointer;
}

.basket-item-remove:after {
	content: '';
	position: absolute;
	bottom: -2px;
	height: 1px;
	width: 100%;
	left: 0;
	background-color: #2b2b2b;
}

.basket-sidebar .select2-basic--container {
	border-radius: 3px;
}

.basket-sidebar .label-none .select2-basic--container.select2-selection--single .select2-selection__rendered {
    padding: 12px;
}

.basket-segment {
	padding:20px;
	background-color: #fff;
}

.overlay-basket .counter-input input {
    font-size: 14px;
}

.overlay-basket .counter-input-button {
    width: 26px;
    height: 26px;
}

.overlay-basket .counter-input {
    min-height: 26px;
}

.overlay-basket .basket-item-details,
.overlay-basket .basket-item-pricing,
.overlay-basket .basket-item-qty {
	padding: 0 15px;
}

.overlay-basket .basket-item-option {
	font-size: 12px;
}

.overlay-basket .basket-item-title-link {
	font-size: 14px;
}

/* Counter Input */
.counter-input {
	display: flex;
	border: 1px solid #EAEAEA;
	border-radius: 2px;
	min-height: 40px;
	color: #2b2b2b;
}

.counter-input-button {
	width: 40px;
	text-align: center;
	font-size: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 300ms ease;
}

.counter-input-button:hover {
	background-color: #EAEAEA;
}

.counter-input-button-decrease {
	border-right: 1px solid #EAEAEA;
}

.counter-input-button-increase {
	border-left: 1px solid #EAEAEA;
}

.counter-input-input {
	display: flex;
}

.counter-input input {
	display: block;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	width: 60px;
	min-width: 0;
	color: #2b2b2b;
	font-weight: 400;
}

/* Basket > Sidebar */
.basket-sidebar {
	width: 100%;
	max-width: 420px;
	margin: 0 0 0 40px;
	display: flex;
	flex-direction: column;
	gap: 30px 0;
	flex-shrink: 0;
}

.basket-sidebar .input input {
	font-size: 13px;
}

.basket-sidebar .input ::-webkit-input-placeholder { /* WebKit browsers */
	/* replace this with desired color */
	opacity: 1;
	color: #2b2b2b;
	font-size: 13px;
}

.basket-sidebar .input :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	/* replace this with desired color */
	opacity: 1;
	color: #2b2b2b;
	font-size: 13px;
}

.basket-sidebar .input ::-moz-placeholder { /* Mozilla Firefox 19+ */
	/* replace this with desired color */
	opacity: 1;
	color: #2b2b2b;
	font-size: 13px;
}

.basket-sidebar .input :-ms-input-placeholder { /* Internet Explorer 10+ */
	/* replace this with desired color */
	opacity: 1;
	color: #2b2b2b;
	font-size: 13px;
}

.basket-sidebar-segment {
	background-color: #fff;
	border: 1px solid #EAEAEA;
	padding: 25px;
}

.basket-sidebar-segment input {
	border-radius: 3px;
	overflow: hidden;
}

.basket-sidebar-segment .input.label-none input[type="text"] {
	padding: 12px;
}

.basket-sidebar-segment-heading,
.basket-sidebar-expandable-title {
	font-size: 16px;
	font-weight: 600;
	color: #006845;
	margin: 0 0 10px;
}

.basket-sidebar-expandable {
	background-color: #f9f9f9;
	border: 1px solid #EAEAEA;
	margin-top: -1px;
	color: #2b2b2b;
	transition: background 300ms ease;
}

.basket-sidebar-expandable:hover {
	background-color: #f0f0f0;
}

.basket-sidebar-expandable-open {
	/* padding: 18px 25px; */
}

.basket-sidebar-expandable-title {
	display: flex;
	justify-content: space-between;
	cursor: pointer;
	padding: 18px 25px;
	margin: 0;
}

.basket-sidebar-expandable-open .basket-sidebar-expandable-title {
	padding: 18px 25px 10px 25px;
}

.basket-sidebar-expandable-title-icon {
	flex-shrink: 0;
	height: 15px;
	width: 15px;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath fill-rule='evenodd' fill='%23006845' d='M12 6.999H7V12H4.999V6.999H0V5h4.999V0H7v5h5v1.999Z'/%3E%3C/svg%3E");
}

.basket-sidebar-expandable-open .basket-sidebar-expandable-title-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='12px' height='2px'%3E%3Cpath fill-rule='evenodd' fill='%23006845' d='M0.0,0.0 L12.0,0.0 L12.0,2.0 L0.0,2.0 L0.0,0.0 Z'/%3E%3C/svg%3E");
}

.basket-sidebar-expandable-content {
	display: none;
	margin: 0 0 -10px;
	padding: 0 25px  18px 25px;
}

.basket-sidebar-expandable-open .basket-sidebar-expandable-content {
	display: block;
}

.basket-sidebar-expandable-points .basket-sidebar-expandable-content span {
	font-weight: 600;
}

.basket-sidebar-reclaim-points {
	margin-top: 18px;
}

.all-points-checkbox {
	margin-bottom: 15px;
	float: none;
}

.all-points-checkbox.checked + .hide-on-check {
	display: none;
}

.basket-total-grid {
	display: flex;
	flex-direction: column;
	gap: 6px 0;
	margin: 0 0 10px;
	color: #2b2b2b;
	font-size: 13px;
}

.basket-totals-row {
	display: flex;
	justify-content: space-between;
}

.basket-totals-row-discount {
	color: #249a4b;
}

.basket-checkout-button {
	font-size: 16px;
    letter-spacing: 0.04em;
    font-weight: 400;
    display: flex;
    gap: 0 10px;
    align-items: center;
    justify-content: center;
}
.basket-checkout-button > svg {
    margin-top: -5px;
}

.basket-express-checkout {
	text-align: center;
	margin: 12px 0 0 0;
	color: #2b2b2b;
}

.basket-express-checkout-text {
	font-size: 13px;
	letter-spacing: -0.025em;
	margin: 0 0 6px;
}

.basket-express-checkout-text span {
	font-weight: 600;
}

.basket-express-checkout-icon {
	height: 23px;
	display: block;
	margin: 0 auto;
}

.basket-sidebar .ui-datepicker-inline {
	width: 100%;
}

.basket-sidebar .ui-datepicker-header {
	background-color: #f3f3f3;
	border-color: transparent
}

.basket-sidebar .ui-datepicker-title {
	color: #2b2b2b;
	font-size: 13px;
	font-weight: 600;
}

.basket-sidebar .ui-datepicker th {
	font-weight: 400;
	color: #2b2b2b;
}

.basket-sidebar .ui-datepicker .ui-datepicker-prev,
.basket-sidebar .ui-datepicker .ui-datepicker-next {
	background: none;
}

.basket-sidebar .ui-datepicker td span {
	text-align: center;
}

.basket-sidebar .ui-widget-content .ui-state-active {
	background-color: #249a4b;
	border-color: #249a4b;
	color: #fff!important;
}

.basket-sidebar .ui-widget-content .ui-state-default {
	color: #2b2b2b;
	font-weight: 400;
    font-size: 12px;
	padding: 4px;
	border-color: #EAEAEA;
	border-radius: 3px;
}

.basket-sidebar .ui-widget-content .ui-state-hover {
	border-color: #249a4b;
}

.basket-sidebar .ui-datepicker table {
	margin: 0;
}

.basket-sidebar .ui-datepicker td {
	padding: 2px;
}

.basket-sidebar .ui-datepicker th {
	padding: 4px 2px;
	font-size: 12px;
}

.basket-payment-method {
	height: 25px;
	margin: 0 auto;
}

.payment-methods img {
	height: 28px;
	margin-right: 10px;
}

.payment-methods-bar img:last-child {
	margin-right: 0;
}

.payment-methods-bar {
	background-color: #fff;
	padding: 5px;
	border-radius: 3px;
}

.basket-action {
}

.basket-main .select2-container--default .select2-selection--single .select2-selection__arrow b {
	display: none;
}

.basket-main .select2-container--default .select2-selection--single .select2-selection__arrow {
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml,%0A%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='14px' height='8px' viewBox='0 0 14.4029999 8.0010004' style='enable-background:new 0 0 14.4029999 8.0010004;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%232B2B2B;%7D%0A%3C/style%3E%3Cpath class='st0' d='M6.4885001,7.7133002L0.2955,1.6779c-0.394-0.3837999-0.394-1.0062,0-1.3901999 C0.6892-0.0959,1.3281-0.0959,1.7217,0.2877l5.4800997,5.3402996l5.4795003-5.3399c0.3940001-0.384,1.0324001-0.384,1.4261999,0 c0.3940001,0.3838,0.3940001,1.0062,0,1.3898l-6.1928,6.0358c-0.197,0.1917-0.4551001,0.2873006-0.7129002,0.2873006 C6.9435,8.0010004,6.6855001,7.9047999,6.4885001,7.7133002z'/%3E%3C/svg%3E%0A");
}

.basket-main .select2-container--open .select2-selection--single .select2-selection__arrow {
	transform: rotate(-180deg)
}

.basket-subheading {
	font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #2b2b2b;
	margin: 0 0 10px;
}

.invoice-addresses {
	display: flex;
}
.invoice-addresses > div {
	justify-content: space-around;
	padding-right: 15px;
}

/*Password Strength Checker*/
.input.password-strength-check.active {
    margin-bottom: 15px;
}
.input.password-strength-check.active.mg-lg {
	margin-bottom: 30px;
}
.password-strength--text {
	font-size: 13px;
	position: absolute;
	top: 100%;
	margin-top: 5px;
	color: #b11818;
}
.password-strength--text.strength1 {
    color: #b17818;
}
.password-strength--text.strength2 {
    color: #ab9f17;
}
.password-strength--text.strength3 {
    color: #8bab17;
}
.password-strength--text.strength4 {
    color: #6aab17;
}


.education-top {
    border-radius: 12px 0;
    padding: 36px;
    color: #FFF;
	min-height: 226px;
}
.education-top:not(:last-child) {
	margin-bottom: 36px;
}
.education-top > *:not(:last-child) {
    margin-right: 100px;
}
.education-logo {
    min-width: 225px;
}
.education-top--content {
    font-weight: 300;
    min-width: 300px;
}
.education-top--content > * {
    font-weight: 300;
    line-height: 1.4;
}
.education-quote {
    position: relative;
    align-self: unset;
    min-width: 220px;
	max-width: 455px;
}
.education-quote.has-cutout {
    padding-left: 225px;
}
.education-cutout {
    display: flex;
    position: absolute;
    height: calc(100% + 112px);
    left: 0; bottom: -36px;
    overflow: hidden;
}
.education-cutout img {
    width: 220px;
    height: 358px;
}
.education-quote--content > *:not(:last-child) {
	margin-bottom: 15px;
}
.education-quote--content > div > * {
	font-family: 'larken', serif;
    font-weight: 300;
    font-style: italic;
    font-size: 18px;
    line-height: 1.3;
}

.content-gallery, 
.content-buttons {
    display: flex;
}
.content-gallery:not(:last-child) {
	margin-bottom: 72px;
}
.content-gallery--main {
    background-color: #FFF;
    padding: 36px;
}
.content-gallery--main > .content {
	display: flex;
	flex-direction: column;
}
.content-gallery--main > .content:not(:last-child) {
    margin-bottom: 36px;
}
.content-gallery--main > .content > *:not(:last-child) {
    margin-bottom: 24px;
}
.content-buttons:not(:first-child) {
	margin-top: 12px;
}
.content-gallery--imgs {
	display: flex;
	flex-wrap: wrap;
    min-width: 456px;
	margin-right: -36px;
}
.content-gallery--imgs:not(:first-child) {
	margin-left: 36px;
}
.content-gallery--imgs > * {
	display: flex;
	width: 100%;
	margin-right: 36px;
}
.content-gallery--imgs > *:not(:last-child) {
	margin-bottom: 36px;
}
.content-gallery--imgs img {
    width: 100%;
}
.content-gallery--side-content {
    padding: 36px;
    background-color: #006845;
	color: #FFF;
    border-radius: 12px 0;
}
.content-gallery--side-content .content-title {
    font-size: 24px;
    font-weight: 300;
    font-family: 'hanken-grotesk', sans-serif;
    letter-spacing: 0.08em;
}
.content-gallery--side-content > *:not(:last-child) {
	margin-bottom: 10px;
}
.content-gallery--side-content .button {
	margin-top: 10px;
}

.workshop-items {
	
}
.workshop-content {
	width: 100%;
}
.workshop-content:not(:last-child), 
.workshop-content > *:not(:last-child) {
    margin-bottom: 30px;
}
.workshop-content .content-title {
    margin-bottom: 24px;
}
.event-list {
	height: 100%;
}
.event-list > .product-grid {
    margin: 0 0 -36px -36px;
	height: calc(100% + 36px);
}
.event-list .product-grid--item {
    padding: 0 0 36px 36px;
    width: 25% !important;
}
.event-list .product-inner--subtitle {
	color: #00AF66;
	text-transform: capitalize;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0;
}
.product-type {
    display: flex;
    align-items: center;
    background-color: #DFEFDB;
	color: #006845;
    padding: 4px 8px 2px;
    min-height: 28px;
    border-radius: 4px 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.product-type > svg {
	margin: -2px 4px 0 0;
}
.product-type.beth_chatto_education_trust {
    background-color: #00AF66;
    color: #FFF;
}
.product-type.beth_chatto_education_trust > svg path {
	fill: #FFF;
}
.event-list .product-grid--item-inner {
    min-height: 100%;
}

.category-events--row:not(:last-child) {
	margin-bottom: 0;
}
.category-events--row > div {
    flex: 1;
    min-width: 50%;
}
.category-events--filters, .category-events--row .friend-banner {
    padding: 18px;
    border-radius: 12px 0;
	min-height: 100%;
}
.category-events--row .friend-banner--logo {
    max-width: 230px;
}
.friend-banner--content {
    padding: 0 20px;
    font-weight: 300;
}

.category-events--filters--title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.3;
    color: #006845;
    flex: 1;
    min-width: 190px;
}
.course-filter-title {
    display: none;
}
.category-events--filters > *:not(.button) {
    margin-right: 30px;
}
.category-events--filters > .filters {
    flex: 1;
	min-width: 220px;
}
.category-events--filters .sidebar__segment {
	border: 1px solid #DFEFDB;
	border-top: 1px solid #DFEFDB!important;
	border-radius: 8px 0;
}
.category-events--filters .filter-title {
    padding: 15px 14px 13px;
}
.category-events--filters .filter-title, .category-events--filters .filter-title span {
	font-size: 15px;
	text-transform: unset;
}
.category-events .filter {
    position: relative;
}
.course-filters-filters {
    position: absolute;
    top: 100%;
    background-color: #FFF;
    padding: 10px 0 !important;
    border-radius: 0 0 12px 0;
    margin-top: 1px;
    z-index: 100;
}
.category-events--filters .filter-title > span {
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.course-filters-filters > li {
    padding: 8px 15px;
    cursor: pointer;
}
.course-filters-filters > li:hover, 
.course-filters-filters > li.filter-selected {
	color: #00AF66;
}
.course-filters-filters > li span {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.course-filters-filters > li span::after {
	content: '';
	position: relative;
	height: 16px; width: 16px;
	border: 1px solid #b8c7b4;
	border-radius: 4px;
	margin: -2px 0 0 12px;
}
.course-filters-filters > li.filter-selected span::after {
	background-color: #006845;
	border-color: #006845;
	background-image: url('data:image/svg+xml,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_280_24)"><path d="M11.7212 1.96136C11.3499 1.58959 10.747 1.58982 10.3752 1.96136L4.31744 8.01936L1.62503 5.32697C1.25325 4.95519 0.650609 4.95519 0.278832 5.32697C-0.0929441 5.69874 -0.0929441 6.30139 0.278832 6.67316L3.6442 10.0385C3.82998 10.2243 4.07357 10.3174 4.31719 10.3174C4.5608 10.3174 4.80463 10.2245 4.9904 10.0385L11.7212 3.30753C12.0929 2.93602 12.0929 2.33311 11.7212 1.96136Z" fill="white"/></g><defs><clipPath id="clip0_280_24"><rect width="12" height="12" fill="white"/></clipPath></defs></svg>'); 
	background-size: 10px auto;
	background-position: center;
	background-repeat: no-repeat;
}

.selected-course-filters {
    margin-bottom: 30px;
}
.selected-course-filters > span {
    margin-right: 20px;
}
.selected-course-filters-group {
    margin: 0 -10px -10px 0;
}
.selected-course-filters-group > div {
	display: flex;
	align-items: center;
	margin: 0 10px 10px 0;
	border-radius: 4px;
	background-color: #00AF66;
	padding: 7px 10px 4px;
	color: #FFF;
	cursor: pointer;
	-webkit-transition: ease-in-out .2s;
	transition: ease-in-out .2s;
}
.selected-course-filters-group > div::before {
	content: '';
	position: relative;
	width: 12px; height: 12px;
	margin: -3px 5px 0 0;
	background: url('data:image/svg+xml,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_289_46)"><path d="M8.94563 10.1234L5.99938 7.17712L3.05312 10.1234C2.89685 10.2797 2.68486 10.3675 2.46383 10.3675C2.24287 10.3674 2.03091 10.2796 1.87463 10.1234C1.71835 9.96708 1.63055 9.75511 1.6305 9.53416C1.63051 9.31313 1.71834 9.10115 1.87461 8.94487L4.82088 5.99861L1.8746 3.05233C1.71832 2.89605 1.63052 2.68408 1.63052 2.46307C1.63052 2.24206 1.71832 2.0301 1.8746 1.87381C2.03088 1.71753 2.24284 1.62974 2.46385 1.62974C2.68487 1.62974 2.89683 1.71753 3.05311 1.87381L5.99939 4.8201L8.94567 1.87382C9.10195 1.71754 9.31391 1.62973 9.53492 1.62973C9.75593 1.62973 9.9679 1.71754 10.1242 1.87381C10.2805 2.03009 10.3683 2.24205 10.3683 2.46306C10.3683 2.68408 10.2805 2.89604 10.1242 3.05232L7.1779 5.9986L10.1241 8.94485C10.2805 9.10119 10.3682 9.31311 10.3683 9.53414C10.3683 9.75516 10.2805 9.96713 10.1242 10.1234C9.96791 10.2797 9.75595 10.3675 9.53492 10.3675C9.31389 10.3675 9.10197 10.2797 8.94563 10.1234Z" fill="%23FFFFFF"/></g><defs><clipPath id="clip0_289_46"><rect width="12" height="12" fill="white"/></clipPath></defs></svg>') no-repeat center;
}
.selected-course-filters-group > div:hover {
	background-color: #039659;
}

.education-top--title {
    font-size: 52px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1;
}
.education-top--content > .content:not(:last-child) {
    margin-bottom: 36px;
}
.category-events--inner .category--sort-bar {
    display: none;
}
.category-events .event-list .product-grid--item {
    width: 25% !important;
}


.vertical-padding {
    padding: 40px 50px;
}
.text-on-texture {
    padding: 60px 0 80px;
    min-height: 580px;
    display: flex;
    align-items: center;
    color: #272727;
}
.sym-home--heading--outer + .text-on-texture, 
.text-on-texture:first-child {
    padding-top: 0;
}
.text-on-texture .content {
    font-size: 21px;
}
.video-container {
    margin: 20px 0 0 0;
    padding-bottom: 56.6265%;
    position: relative;
}
.video-container iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/*SYMPOSIUM*/ 
.sym-mobile-menu {
    display: none;
}
.sym-header--logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 287px;
}
.sym-header--logo-dated > * {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.sym-header--logo-dated > * > span {
    font-size: 20px;
    margin-top: 6px;
    color: #272727;
    letter-spacing: 0.3em;
}
.sym-header--right {
    padding-left: 150px;
}
.sym-header--right .sym-header--nav {
    justify-content: flex-end;
}
.sym-bg, .sym-bg-bts {
    font-family: franklin-gothic-atf, sans-serif;
    padding: 40px 0 100px;
}
.sym-bg {
    background-color: #f4f1e8;
}
.sym-bg .content p, .sym-bg .content ul, .sym-bg .content ol {
    line-height: 1.4;
}
.sym-header-simple {
    padding: 80px 0 0;
}
.sym-header-simple img {
    width: 392px;
    max-width: 50%;
}
.sym-header {
    padding: 25px 60px;
    height: 160px;
    display: flex;
    align-items: center;
    position: relative;
	z-index: 1;
}
.sym-header--inner {
    width: 100%;
}
.sym-header--left, .sym-header--right {
    width: 50%;
}
.sym-header--left {
    padding-right: 150px;
}
.sym-header--nav {
    display: flex;
    align-items: center;
}
.sym-header--item {
    padding: 0 40px;
}
.sym-header--item:first-child {
    padding-left: 0;
}
.sym-header--item:last-child {
    padding-right: 0;
}
.sym-header--link {
    color: #272727;
    font-size: 16x;
    text-transform: uppercase;
    position: relative;
    text-align: center;
    font-family: freight-neo-pro, sans-serif;
}
.sym-header--link::after {
    content: "";
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #272727;
    opacity: 1;
}
.sym-feature {
    background-color: #fff;
    border: 2px solid #272727;
    padding: 30px;
}
.sym-feature:not(:last-child) {
    margin-bottom: 80px;
}
.sym-feature--inner {
    border: 1px solid #272727;
    padding: 50px;
}
.sym-feature--image {
    display: flex;
}
.sym-feature--image:not(:last-child) {
    margin-bottom: 30px;
}
.sym-feature--title {
    font-size: 25px;
    color: #42425e;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: "freight-neo-pro", sans-serif;
}
.sym-feature--title:not(:last-child) {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #272727;
}
.sym-feature--subtitle {
    font-size: 21px;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.prev-sym--image img {
    width: 100%;
}
.prev-sym--link {
    color: #42425e;
    margin-top: 10px;
    border-bottom: 2px solid;
}
.prev-syms--title {
    font-size: 28px;
    font-family: "freight-neo-pro", sans-serif;
    font-weight: 300;
    letter-spacing: 0.01em;
    border-bottom: 2px solid #272727;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.prev-syms--list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px -20px 0;
}
.prev-syms--list > div {
    width: 50%;
    padding: 0 20px 20px 0;
}
.prev-syms--item {
    background-color: #fff;
    padding: 10px;
    border: 2px solid #272727;
    display: flex;
    flex-direction: column;
}
.prev-sym--main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px 20px;
    font-size: 16px;
    line-height: 1.5;
}
.prev-sym--title {
    font-size: 16px;
    font-weight: 600;
    color: #272727;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.prev-sym--link {
    color: #42425e;
    margin-top: 10px;
    border-bottom: 2px solid;
}
.sym-bg-home {
    padding-top: 0;
}
.sym-bg-home {
    padding-top: 0;
}
.sym-home--heading {
    position: relative;
	width: 100%;
    max-width: 1480px;
    padding: 0 20px;
    margin: 0 auto;
    z-index: 2;
}
.align-left > .sym-home--heading {
	flex-direction: row-reverse;
}
.sym-home--heading--outer.has-full-bg {
    position: relative;
    margin: -160px auto 0;
    padding-top: 160px;
    padding-bottom: 47.5%;
    background-position: center;
    background-size: cover;
    max-width: 2200px;
}
.sym-home--heading--outer.has-full-bg > .sym-home--heading {
    position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.sym-home--heading--outer.has-full-bg .sym-event--details {
    padding-top: 0;
}
.sym-home--heading > .segment-50:first-child {
    padding-right: 60px;
}
.sym-home--heading.nospace > .segment-50 {
    padding-right: 0;
    padding-left: 0;
}
.sym-home--heading > .segment-50:last-child {
	padding: 0;
}

.sym-home--heading--content {
    max-width: 60%;
}
.sym-home--heading--image {
    width: 50%;
}

.sym-event--logo {
    width: 540px;
	max-width: 100%;
    margin: 0 auto;
}
.sym-event--details {
    padding-top: 60px;
    text-align: center;
    text-transform: uppercase;
}
.sym-event--details-date {
    font-size: 28px;
}
.sym-event--details-location {
    font-size: 14px;
    letter-spacing: 0.4em;
    padding: 7px 0 40px;
    font-family: franklin-gothic-atf, sans-serif;
}
.sym-links {
    display: flex;
    align-items: center;
}
.content + .sym-links {
    padding-top: 20px;
}
.sym-link {
    font-size: 18px;
    color: #8e9b80;
    text-transform: uppercase;
    position: relative;
    font-family: freight-neo-pro, sans-serif;
}
.sym-links .sym-link {
    margin-right: 30px;
}
.sym-links .sym-link:last-child {
    margin-right: 0;
}
.sym-link::after {
    content: "";
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #8e9b80;
    transition: background 0.3s ease;
}
.sym-bg strong {
    font-weight: 700;
}
.sym-flower-head {
    max-width: 687px;
    width: 100%;
}
.sym-flower-head img, .sym-event--logo svg {
    display: block;
    width: 100%;
}
.sym-text {
    padding-bottom: 60px;
}
.sym-text .content, .sym-text .content p {
    font-size: 18px;
}
.image-with-text--image img {
    display: block;
    width: 100%;
}
.sym-direction--blocks {
    padding-bottom: 0;
}
.sym-image-with-text + .sym-direction--blocks {
    margin-top: 20px;
}
.sym-image-with-text {
	margin-bottom: 20px;
}
.sym-image-with-text + .sym-image-with-text > * > .flex {
	flex-direction: row-reverse;
}
.sym-image-with-text + .sym-image-with-text .image-with-text--text {
	margin-left: 0;
	margin-right: -40px;
}
.sym-direction--block {
    padding-bottom: 20px;
}
.sym-direction--direction {
    flex-shrink: 0;
    margin-right: 20px;
    width: 390px;
    min-height: 325px;
    padding: 28px;
    background-color: #fff;
    border: 2px solid #272727;
    display: flex;
    flex-direction: column;
}
.sym-directions-map-block-content-title {
    font-size: 18px;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: freight-neo-pro, sans-serif;
}
.sym-directions-map-block-content-address {
    font-size: 15px;
    line-height: 26px;
}
.sym-directions-form {
    margin: auto 0 0 0;
    padding: 10px 0 0 0;
    display: flex;
}
.sym-directions-form input {
    border: 1px solid #eeeeee;
    width: 100%;
    height: 100%;
    border-right: none;
    border-radius: 5px 0 0 5px;
    font-size: 13px;
    text-transform: uppercase;
    color: #272727;
    padding: 0 10px;
}
.sym-directions-form-input-cont {
    flex: 10 auto;
}
.button-sym {
    background-color: #adad76;
    padding: 12px 14px 10px;
    line-height: 1;
}
.sym-directions-form button {
    border-radius: 0 5px 5px 0;
}
.sym-direction--image img {
    display: block;
    width: 100%;
}
.title-block-with-link {
    padding-bottom: 20px;
}
.title-block--inner {
    background-color: #efe1b4;
    border: 2px solid #272727;
    padding: 40px 20px;
}
.title-block--title {
    font-size: 36px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #272727;
    margin-bottom: 20px;
    font-family: freight-neo-pro, sans-serif;
}
.proceeds-block {
    margin-top: 100px;
}
.proceeds-block--inner {
    background-color: #42435f;
    padding: 25px 24px;
    color: #fff;
}
.proceeds-block--image {
    flex-shrink: 0;
    width: 118px;
    height: 118px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
}
.proceeds-block--image img {
    display: block;
    width: 100%;
}
.proceeds-block--text {
    padding-left: 28px;
}
.proceeds-block--main {
    font-size: 16px;
    margin-bottom: 5px;
}
.proceeds-block--signature {
    margin: 10px 0 12px;
}
.proceeds-block--sub {
    font-size: 14px;
    margin: 8px 0 10px;
}
.proceeds-block--small {
    text-transform: uppercase;
    font-size: 10px;
}
.title-block-with-link {
	margin-top: 60px;
}
.title-block-with-link + .proceeds-block {
    margin-top: 0px;
}
.sym-experts-heading {
    margin: 0 0 60px;
    text-align: center;
}
.sym-experts-heading .flex {
	flex-direction: column;
}
.sym-heading--block {
    background-color: #fff;
    padding: 36px 40px;
    border: 2px solid #272727;
    z-index: 1;
}
.sym-page--title {
    text-transform: uppercase;
    font-size: 60px;
    letter-spacing: 0.1em;
    color: #272727;
    margin-bottom: 15px;
    font-family: freight-neo-pro, sans-serif;
}
.sym-heading--block .content, .sym-heading--block .content p {
    font-size: 21px;
    line-height: 1.35;
}
.sym-heading--block .content p:last-child {
	padding-bottom: 0;
}
.sym-experts-heading .content, .sym-experts-heading .content p {
    font-size: 16px;
}
.sym-heading--block .content p {
    padding-bottom: 4px;
}
.experts-cont, .sym-bottom-grid {
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
}
.experts-cont--title {
	width: 100%;
    text-align: center;
    font-size: 50px;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.experts-conts .experts-cont:not(:last-child) {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #fff;
}
.sym-bottom-grid-column, .expert {
    border-left: 1px solid #fff;
    margin: 0 60px;
    width: calc(50% - 160px);
}
.expert-content {
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 34px 34px 60px;
}
.expert-title {
    font-size: 25px;
    color: #272727;
    text-transform: uppercase;
    font-family: freight-neo-pro, sans-serif;
    font-weight: 700;
	margin-bottom: 6px;
}
.expert-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    color: #006845;
	font-weight: 500;
    letter-spacing: 0.2em;
}
.expert-text {
    margin: 14px 0 0 0;
    font-size: 14px;
    color: #272727;
}
.expert-image {
    display: flex;
}
.expert-image img {
	width: 100%;
}
.team-member--description.height-adjust, .expert-text.height-adjust {
    height: 126px;
    overflow: hidden;
}
.team-member--description.height-adjust.active, .expert-text.height-adjust.active {
	height: auto;
	overflow: visible;
}
.read-more--button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 15px;
}
.read-more--button svg {
    width: 12px;
    height: 8px;
    margin-left: 7px;
    fill: #fff;
    position: relative;
    top: -1px;
    transition: 0.3s ease;
}
.active + .read-more--button svg {
	transform: rotate(180deg);
}
.sym-talk--title {
    font-size: 28px;
    color: #272727;
    margin-bottom: 0;
}
.sym-talk--upper > *:not(:last-child) {
    margin-bottom: 18px;
}
.sym-talk--btn {
    padding: 9px 20px;
    font-size: 24px;
    letter-spacing: 0.5px;
    background-color: #42425e;
    font-family: "freight-neo-pro";
}
.sym-event-group, .sym-event-form, .event-selects--container {
    padding: 70px 0 0;
}
.sym-event-group {
    margin: 70px 0 0;
    border-top: 1px solid #1e1e1e;
}
.sym-event-group .sym-event--item {
    background-color: #fff;
    border: 1px solid #1e1e1e;
    padding: 20px;
    display: flex;
    align-items: center;
}
.sym-event-group .sym-event--item:not(:last-child) {
    margin-bottom: 20px;
}
.sym-event-group .sym-event--item:nth-child(even) {
    flex-direction: row-reverse;
}
.sym-event-group .sym-event--item {
	flex-direction: column !important;
}
.sym-event-item--details {
    padding: 12px;
}
.sym-event-item--details > *:not(.sym-event-item--title) {
    line-height: 1.6;
}
.sym-event--item:nth-child(even) .sym-event-item--img {
    margin-left: 20px;
}
.sym-form--title {
    font-family: "freight-neo-pro";
    text-transform: uppercase;
    color: #1e1e1e;
    font-size: 24px;
    padding-bottom: 12px;
    margin-bottom: 24px;
    border-bottom: 1px solid #1e1e1e;
}
.sym-event-form > *:not(:last-child):not(.sym-form--title) {
    margin-bottom: 24px;
}
.sym-form--row > *:not(:last-child), .sym-buy-ticket > *:not(:last-child) {
    margin-right: 25px;
}
.sym-form--row .sym-inline-input {
    margin: 0;
}
.sym-form--row .sym-inline-input input {
    padding: 15px 12px 12px;
    background-color: transparent;
    border: 1px solid #1e1e1e;
    border-radius: 4px 0 0 4px;
    -moz-appearance: textfield;
}
.sym-form--row .sym-inline-input > button {
    padding: 6px 12px 3px;
    font-size: 14px;
    color: #fff;
    background-color: #1e1e1e;
    border-radius: 0 4px 4px 0;
    transition: ease-in-out 0.2s;
}
.sym-buy-ticket > div {
    flex: 1;
    max-width: 300px;
}
.sym-form--row > *:not(:last-child), .sym-buy-ticket > *:not(:last-child) {
    margin-right: 25px;
}
.sym-buy-ticket > .button {
    color: #fff;
    background-color: #42425e;
    padding: 15px 20px;
    text-transform: capitalize;
}
.sym-content {
    margin-bottom: 10px;
}
.sym-heading > .container > .flex {
	flex-direction: column;
}
.sym-videos {
    padding: 40px 0 0;
}
.sym-video--inner .video-container {
    margin-top: 0;
}
.sym-video--title {
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.sym-expert-gallery {
    padding: 100px 0;
}
.sym-expert-gallery:first-child, 
.text-on-texture + .sym-expert-gallery, 
.texture-wrap + .sym-expert-gallery,
.sym-home--heading--outer + .sym-expert-gallery {
	padding-top: 0;
}
.sym-expert-gallery + .sym-expert-gallery {
    padding-top: 0px;
}
.sym-expert-gallery + .sym-expert-gallery > * > .flex {
    flex-direction: row-reverse;
}
.sym-expert-gallery + .sym-expert-gallery .sym-expert--text {
    margin-right: 0;
    margin-left: -50px;
}
.sym-expert--text {
    margin-right: -50px;
    flex-shrink: 0;
    padding: 45px;
    border: 2px solid #272727;
    background-color: #fff;
    width: 330px;
    min-height: 458px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.sym-expert--text .content, .sym-expert--text .content p {
    font-size: 16px;
}
.experts-gallery {
    margin: 0 -10px -10px 0;
}
.experts-gallery > * {
    padding: 0 10px 10px 0;
}
.experts-gallery img {
    display: block;
    width: 100%;
}
.image-with-text--text {
	position: relative;
    margin-left: -40px;
    background: #fff;
    padding: 60px 50px;
    border: 2px solid #272727;
}
.sym-direction--block:last-child {
    padding-bottom: 0;
}
.sym-direction--direction--outer:not(:last-child)  {
	margin-bottom: 20px;
}
.sym-direction--blocks .sym-direction--block:nth-child(even) .sym-direction--direction, 
.sym-direction--direction--outer + .sym-direction--direction--outer .sym-direction--block .sym-direction--direction {
    order: 2;
    margin: 0 0 0 20px;
}
.sym-heading--images {
	width: 450px;
	flex-shrink: 0;
}
.sym-heading--image img {
	display: block;
	width: 100%;
}
.sym-block--bullet-list {
	padding-left: 60px;
	counter-reset: bullet-counter;
}
.sym-block--bullet {
	border: 2px solid #272727;
	border-top: none;
	background-color: #fff;
	padding: 24px;
}

.sym-block--bullet-title + .sym-block--bullet,
.sym-block--bullet:first-child {
	border-top: 2px solid #272727;
}

.sym-block--bullet-counter:after {
	counter-increment: bullet-counter;
	content: counter(bullet-counter);
	font-size: 30px;
	font-weight: 700;
	color: #efe1b4;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	line-height: 42px;
	text-align: center;
}

.sym-block--bullet-counter {
	width: 42px;
	height: 42px;
	background-color: #272727;
	border-radius: 42px;
	position: relative;
	flex-shrink: 0;
	margin-right: 24px;
}

.sym-block--bullet-title {
	padding: 35px 0 15px;
	font-size: 24px;
	font-weight: 700;
	color: #272727;
	font-family: freight-neo-pro, sans-serif;
}

.sym-event--full-image {
    margin-bottom: 40px;
}

.sym-access-overlay {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
	z-index: 1000;
}
.sym-access-overlay--backdrop {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: rgb(0 0 0 / 60%);
}
.sym-access-overlay--inner {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: calc(100% - 40px);
    max-width: 800px;
    min-height: 240px;
    border: 1px solid #272727;
    padding: 40px 60px;
}
.sym-access-overlay--close {
    display: flex;
    position: absolute;
    top: 12px; right: 12px;
    cursor: pointer;
	-webkit-transition: ease-in-out .2s;
	transition: ease-in-out .2s;
}
.sym-access-overlay--close:hover {
	opacity: 0.7;
}
.sym-access-overlay--close > svg {
	width: 12px; height: 12px;
}
.sym-access-overlay--inner > .content {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
}
.sym-access-overlay--form, .sym-access-overlay--form > .input {
    width: 100%;
}
.sym-access-overlay--form > .input {
    margin: 0 0 20px 0 !important;
}
.sym-access-overlay--form > .input > label {
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	margin: 0 18px -2px 0;
}
.sym-access-overlay--form > .input > input {
    flex: 1;
	border-color: #272727;
	padding: 10px 8px 8px!important;
}

.sym-expert--container {
    background-color: #FFFFFF;
    border: 1px solid #272727;
    padding: 40px;
}
.sym-expert--side {
    width: 200px;
	margin-right: 40px;
}
.sym-expert--side > * {
	margin-bottom: 20px;
}
.sym-expert--social {
	font-size: 14px;
	font-weight: 500;
	color: #006845;
}
.sym-expert--social:not(:last-child) {
	margin-bottom: 5px;
}
.sym-expert--social > svg {
    margin-right: 6px;
}
.sym-expert--image, .sym-expert--image img {
    width: 100%;
}
.sym-expert--main > * {
    margin-bottom: 40px;
}
.sym-expert--main > *:last-child {
	margin-bottom: 0;
}
.article-back-link {
	font-size: 14px;
	letter-spacing: 0.02em;
	color: #006845;
}
.article-back-link > svg {
	margin-right: 12px;
}
.sym-expert--main--titles > * {
	margin-bottom: 12px;
	font-family: 'Hanken Grotesk', sans-serif;
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: .14em;
}
.sym-expert--main--titles > *:last-child {
	margin-bottom: 0!important;
}
.sym-expert--main--titles > h1 {
	font-size: 24px;
}
.sym-expert--main--titles > h2 {
	font-size: 18px;
	color: #006845;
}
.sym-expert--main > .content > p {
	font-size: 14px;
	line-height: 1.6;
}
.sym-expert-content--gallery {
	display: flex; 
	flex-wrap: wrap;
	justify-content: space-between;
    margin: 0 0 28px 0;
	width: 100%;
}
.sym-expert-content--gallery:last-child {
	margin-bottom: -18px;
}
.sym-expert-content--gallery > * { 
	width: calc(50% - 9px);
	padding: 0 0 18px 0;
}
.sym-expert-content--gallery > *:first-child:last-child {
	width: 100%!important;
}
.sym-expert-content--gallery > * img {
	width: 100%;
	display: block;
}
.sym-expert--videos, .sym-expert--videos .sym-expert--video {
    width: 100%;
}
.sym-expert--videos .sym-expert--video:first-child {
	margin-top: 0!important;
}

.team-row:not(:last-child) {
    margin-bottom: 72px;
}
.team-title {
    padding-bottom: 16px;
    margin-bottom: 40px;
    font-size: 32px;
    font-family: 'larken', serif;
    border-bottom: 1px solid #00AF66;
}
.member--image {
    padding: 0 0 133% 0;
    border-radius: 12px 0 12px 0;
}
.member--content {
    padding-top: 30px;
}
.member--name {
    font-family: 'larken', serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 4px;
}
.member--role {
    letter-spacing: 0.06em;
    color: #00AF66;
    margin-bottom: 4px;
}
.member--description {
    margin-top: 24px;
}

.cms-promo-banner--inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 18px 20px 0;
    min-height: 86px;
	text-align: center;
}
.cms-promo-banner--inner > * {
    margin-right: 58px; margin-bottom: 18px;
}
.cms-promo-banner--inner > *.cms-promo-banner--content {
    margin-bottom: 14px;
    flex: 1;
    max-width: max-content;
	font-size: 16px;
}
.cms-promo-banner--inner > *.cms-promo-banner--title {
    font-size: 24px;
    font-weight: 700;
    font-family: 'larken', serif;
}
.cms-promo-banner--inner > *:last-child {
	margin-right: 0;
}

.cms-side-downloads--title {
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}
.cms-side-downloads--sections > div:not(:last-child) {
    margin-bottom: 24px;
}
.cms-side-downloads--subtitle {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.cms-side-downloads--text {
    font-size: 16px;
    margin-bottom: 14px;
}
.cms-side-downloads--link {
	font-size: 16px;
	font-weight: 500;
	color: #006845;
}
.cms-side-downloads--link:not(:last-child) {
    margin-bottom: 12px;
}
.cms-side-downloads--link > svg {
	margin-top: -3px;
	margin-right: 8px;
}
.content-main--content:last-child {
	margin-bottom: -24px;
}
.content-main--content > *:not(.content-main--title) {
    margin-bottom: 24px;
}
.content-main--content .content-main--title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
}
.content-main--content:not(:first-child) .content-main--title {
	margin-top: 40px;
}
.content-main--content .content h1, 
.content-main--content .content h2,
.content-main--content .content h3, 
.content-main--content .content h4, 
.content-main--content .content h5, 
.content-main--content .content h6 {
	font-family: 'Hanken Grotesk', sans-serif;
	font-weight: 400;
	letter-spacing: 0.06em;
	color: #006845;
	margin-bottom: 12px;
}
.content-main--content .content h1:not(:first-child), 
.content-main--content .content h2:not(:first-child),
.content-main--content .content h3:not(:first-child), 
.content-main--content .content h4:not(:first-child), 
.content-main--content .content h5:not(:first-child), 
.content-main--content .content h6:not(:first-child) {
	margin-top: 24px;
}
.content-main--content .content h1 {
	font-size: 26px;
}
.content-main--content .content h2 {
	font-size: 22px;
}
.content-main--content .content h3 {
	font-size: 18px;
}
.content-main--content .content h4 {
	font-size: 16px;
}
.content-main--content .content h5 {
	font-size: 14px;
}
.content-main--content .content h6 {
	font-size: 13px;
}

.content-main--gallery {
    margin: 0 -18px 6px 0!important;
}
.content-main--gallery > div {
    width: 33.333333%;
	padding: 0 18px 18px 0;
}
.content-main--gallery > div.img-md {
	width: 50%;
}
.content-main--gallery > div.img-lg {
	width: 100%;
}
.content-main--gallery img {
	display: block;
	width: 100%;
}
.content-main--videos {
    margin: 0 -24px 0 0!important;
}
.content-main--videos > div {
    width: 50%;
	padding: 0 24px 24px 0;
}
.content-main--videos .video-container {
	margin-top: 0!important;
}

.questionnaire {
    padding: 40px 0;
    border-top: 1px solid #DFEFDB;
}

.questionnaire-section {
    padding: 24px;
    border-radius: 12px;
    background-color: #DFEFDB;
    min-width: 500px;
    flex: 1;
}
.questionnaire-section:last-child:not(:first-child) {
    margin-left: 60px;
}
.questionnaire-section .form-section--title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'larken', serif;
    letter-spacing: 0.02em;
    color: #3D3935;
}
.questionnaire-section .form-action {
	display: flex;
	flex-direction: column-reverse;
}
.questionnaire-section .form-action > *:not(:first-child) {
    margin-bottom: 8px;
}