/*
|--------------------------------------------------------------------------
| Global
|--------------------------------------------------------------------------
*/
body {
	background-color: #161616;
}


/*
|--------------------------------------------------------------------------
| Global > Typography
|--------------------------------------------------------------------------
*/
body, input, textarea {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	color: #2D2D2D;

}

strong {
	font-weight: 600;
}

h1, h2, h3, h4, h5, h6, .h1-style {
	margin: 0 0 10px 0;
	color: #2D2D2D;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, .h1-style:last-child {
	margin-bottom: 0;
}

h1, .h1-style {
	font-size: 48px;
	line-height: 52px;
	letter-spacing: -1.5px;
}

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;
}

li {
	margin:0 0 2px 0;
}

.block-subtitle {
    font-size: 30px;
    font-weight: bold;
    color: #222;
    margin-bottom: 5px;
}

/*
|--------------------------------------------------------------------------
| Global > Links
|--------------------------------------------------------------------------
*/
a {
	color: #2289c5;
	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: #1a6793;
}



/*
|--------------------------------------------------------------------------
| Global > Layout
|--------------------------------------------------------------------------
*/
.row {
	margin: 0 0 15px 0;
}


.font-small {
	font-size: 12px;
	line-height: 14px;
}
.font-norm-11 {
	font-size: 11px;
	line-height: 15px;
}
.font-norm-12 {
	font-size: 12px;
	line-height: 16px;
}
.font-norm-13 {
	font-size: 13px;
	line-height: 17px;
}
.font-norm-18 {
	font-size: 18px;
	line-height: 21px;
}
.font-size-24 {
	font-size: 24px;
	line-height: 26px;
}
.font-size-30 {
	font-size: 30px;
	line-height: 32px;
}

.blue-head-text-med {
	color: #2289c5;
	font-size: 18px;
}
.dark-head-text-med {
	color: #222;
	font-size: 18px;
}

.padding--20-30 {
	padding: 20px 30px;
}
.padding--20-40 {
	padding: 20px 40px;
}


.border-thin-grey {
	border: 1px solid #cecece;
}
.border-med-grey {
	border: 2px solid #cecece;
}
.border-thick-grey {
	border: 3px solid #cecece;
}

/*
|--------------------------------------------------------------------------
| Global > Inputs
|--------------------------------------------------------------------------
*/
.input-grid {
	margin: 0 -15px 0 0;
}

.input-grid .input {
	padding: 0 15px 0 0;
}

.input {
	position: relative;
    clear: both;
	margin: 0 0 15px 0;
}

.input-label, .input .options_text {
	position: absolute;
	top: 6px;
	left: 10px;
	margin-top: 0;
	font-size: 12px;
	color: #222;
	font-weight: 300;
	pointer-events: none;
}

.input input[type="text"],
.input input[type="email"],
.input input[type="search"],
.input input[type="tel"],
.input input[type="password"],
.input textarea,
.input-file-dummy,
.input-text-dummy {
	width: 100%;
	padding: 22px 10px 6px 10px;
	color: #222;
	border: 0;
	resize: none;
}

.input-text-dummy {
	padding: 0;
    height: 48px;
    background: #fff;
}

#card-element {
	padding: 12px 8px;
	height: auto;
}

.input-borderless input[type="text"],
.input-borderless input[type="email"],
.input-borderless input[type="search"],
.input-borderless input[type="tel"],
.input-borderless input[type="password"],
.input-borderless textarea {
	border: 0;
	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="password"]:focus,
.input textarea:focus,
.input .braintree-hosted-fields-focused,
.input .stripe-hosted-fields-focused,
.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="password"]:focus.validate-border,
.input textarea:focus.validate-border {
	border-color: #2289c5!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="password"]:focus ~ label,
.input textarea:focus ~ label,
.input .braintree-hosted-fields-focused ~ label {
	color: #2289c5;
}

.input .button {
	position: absolute;
	top: 4px;
	right: 4px;
	bottom: 4px;
	padding: 0 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.input-grid .input .button {
	right: 19px;
}

.label-inline .input-label {
	position: absolute;
	width: 60px;
	top: 50%;
	left: 0; transform: translateY(-50%);
	text-align: center;
	padding: 0 8px;
}

.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="password"],
.input.label-inline textarea {
	padding: 10px 8px 8px 60px;
}
.input.input-w-border input[type="text"],
.input.input-w-border input[type="email"],
.input.input-w-border input[type="search"],
.input.input-w-border input[type="tel"],
.input.input-w-border input[type="password"],
.input.input-w-border textarea {
	border: 1px solid #e1e1e1;
}

.input-qty {
	max-width:120px;
	min-width: 120px;
}

.textarea {
	position: relative;
}

.input textarea {
	padding-top: 30px;
}

.input-grid .input textarea ~ .input-label {
	right: 15px;
}

.input textarea ~ .input-label {
/*	position: relative;
	background-color: #fff;*/
	left: 0; right: 0; top: 0;
	padding: 6px 10px;
	border-bottom: 0;
}

.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--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: 24px 10px 6px 10px;
	color: #222;
	font-weight: 600;
}
.input.input-w-border .select2-basic--container {
	border: 1px solid #cecece;
}

.select2-basic--dropdown {
	border: 2px solid #01c4f4!important;
	border-top: none!important;
}

.select2-dropdown--above {
	border-bottom: none!important;
	border-top: 2px solid #01c4f4!important;
}

.select2-container--open ~ label {
	color: #01c4f4;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	width: 30px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: #2d2d2d transparent transparent transparent;
}

.label-inline .select2-basic--container.select2-selection--single .select2-selection__rendered {
	padding: 10px 8px 8px 60px;
}

.label-inline .select2-basic--container {
	height:36px;
}


/* 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="password"],
.input.label-none textarea,
.label-none .select2-basic--container.select2-selection--single .select2-selection__rendered {
	padding: 24px 10px 6px 10px;
}

/*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;
}


/*
|--------------------------------------------------------------------------
| Global > Checkboxes
|--------------------------------------------------------------------------
*/
.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/homestead/icon-tick-black.png) no-repeat 1px 2px #fff;
	-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;
}



/*
|--------------------------------------------------------------------------
| Global > Buttons
|--------------------------------------------------------------------------
*/
.button {
	display: inline-block;
	position: relative;
	padding: 12px 25px;
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
	color: #fff;
	text-transform: uppercase;
	background-color: #2389C5;
	-webkit-transition: .3s all ease-out;
	transition: .3s all ease-out;
	cursor: pointer;
	outline: none;
	text-align:center;
	font-family: 'Poppins', sans-serif;
}

.button:hover {
	background-color: #1c75a9;
	color: #fff;
}

.button-secondary {
	background-color: #666666;
	border-radius:100px;
}

.button-secondary:hover {
	background-color: #2389C5;
}

/* Button size modifiers */
.button-small {
    padding: 8px 15px 6px 15px;
	font-size: 12px;
}

.button-xsmall,
.button-xsmall-wide {
	padding: 8px 12px;
	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%;
}

/* Disabled Button */
.button:disabled {
    background: #8C8C8C;
    cursor: not-allowed;
}

.button-plain {
	background: none!important;
	font-weight: 600;
}
.button-text-green {
	color: #8dc641;
}
.button-text-green:hover {
	color: #70a02f;
}


/* Rounded Button Styling */
.button-slightly-round {
	border-radius: 5px;
}
.button-sm-round {
	border-radius: 20px;
	font-weight: 400;
	padding: 10px 35px;
}
.button-xsm-round {
	border-radius: 20px;
	font-weight: 400;
	padding: 5px 15px;
}
.button-xxsm-round {
	border-radius: 20px;
	font-weight: 400;
	padding: 5px 10px;
	font-size: 12px;
}

.button-rounded-sm {
    border-radius: 4px;
}

.button-xxsm-round.addthis_button svg {
	width: 12px;
	margin-left: 2px;
}

/* Buttons w/ Arrows */
.button-arrow-r, .button-arrow-d, .button-arrow-r-red, .button-arrow-d-red {
	padding-right: 25px;
}
.button-arrow-r::after, .button-arrow-d::after,.button-arrow-r-red::after, .button-arrow-d-red::after {
	content: '';
	position: absolute;
	right: 9px;
	top: 50%;
	transform: translateY(-50%);
	background-repeat: no-repeat;
	background-position: center;
	height: 10px;
    width: 10px;
}
.button-arrow-r::after {
	background-image: url(/images/style/homestead/arrow-r-white.svg);
	background-size: auto 100%;
}
.button-arrow-r-red::after {
	background-image: url(/images/style/homestead/arrow-r-red.svg);
	background-size: auto 100%;
}
.button-arrow-d-red::after {
	background-image: url(/images/style/homestead/arrow-d-red.svg);
}
.button-arrow-d::after {
	background-image: url(/images/style/homestead/arrow-d-white.svg);
}

/* Button Colours */
.button-blue {
	background-color: #2289c5;
}
.button-blue:hover {
	background-color: #16628f;
}
.button-darkblue {
	background-color: #015086;
}
.button-darkblue:hover {
	background-color: #094269;
}

.button-red {
	background: #d73938;
}
.button-red:hover {
	background: #b72e2d;
}

.button-white {
	background-color: #ffffff;
	color: #222;
}
.button-white:hover {
	background-color: #222;
	color: #fff;
}

.button-grey {
	background-color: #cecece;
	color: #222!important;
}
.button-grey:hover {
	background-color: #c1c1c1;
}

.button-green {
	background-color: #8dc641;
}
.button-green:not(:disabled):hover {
	background-color: #80b33c;
}

.button-green2 {
	background-color: #2d8353;
}
.button-green2:hover {
	background-color: #267d47;
}

.button-red-grey-invert {
	background-color: #f2f2f2;
	color: #d73938!important;
}
.button-red-grey-invert:hover {
	background-color: #e1e1e1;
}



.icon-button-style-1, .icon-button-l, .icon-button-r {
	position: relative;
}
.icon-button-style-1 > svg, .icon-button-l > svg, .icon-button-r > svg {
	display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
	height: 50%;
	transition: ease-in-out .2s;
}

.icon-button-l {
	padding-left: 30px;
}
.button-xsm-round.icon-button-l > svg {
    left: 12px;
}

.icon-button-r {
	padding-right: 35px;
	padding-left: 20px;
}
.button-xxsm-round.icon-button-r > svg {
	height: 8px;
	right: 20px;
}

.icon-button-style-1 {
	padding-left: 55px;
}
.icon-button-style-1 > svg {
	left: 30px;
}
.icon-button-style-1.button-white:hover > svg {
	fill: #fff;
}


.of-toggle {
	display: inline-flex;
	cursor: pointer;
	margin-top: 8px;
}
.of-toggle.of-open svg {
	transform: rotate(180deg);
}

.shop-sidebar-cats-outer .of-toggle > span.mh {
	display: none;
}

input.paypal-checkout {
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 6px 115px;
	margin: 2px auto 0 auto;
	background-color: #019dc3;
	border-radius: 100px;
	background-size: 90px;
	background-repeat: no-repeat;
	background-position: center;
}
input.paypal-checkout:hover {
	background-color: #028aab;
}

.button.read-more-toggle {
	display: inline-flex;
	align-items: center;
	margin-top: 8px;
}
.read-more-toggle::before {
	content: 'READ MORE';
}
.read-more-toggle.open::before {
	content: 'READ LESS';
}
.read-more-toggle::after {
	content: '';
	width: 10px;
	height: 6px;
	background: url('data:image/svg+xml,<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_841_2)"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.47136 5.20073C5.34634 5.32571 5.1768 5.39592 5.00003 5.39592C4.82325 5.39592 4.65371 5.32571 4.52869 5.20073L0.757359 1.4294C0.693685 1.3679 0.642897 1.29433 0.607958 1.213C0.573018 1.13166 0.554627 1.04418 0.553858 0.955663C0.553089 0.867143 0.569957 0.779357 0.603478 0.697426C0.636998 0.615495 0.6865 0.54106 0.749095 0.478465C0.81169 0.41587 0.886125 0.366368 0.968056 0.332847C1.04999 0.299327 1.13777 0.282459 1.22629 0.283228C1.31481 0.283998 1.40229 0.302388 1.48363 0.337328C1.56496 0.372267 1.63853 0.423055 1.70003 0.486728L5.00003 3.78673L8.30003 0.486728C8.42576 0.36529 8.59416 0.298093 8.76896 0.299612C8.94376 0.301131 9.11097 0.371244 9.23457 0.494849C9.35818 0.618455 9.42829 0.785663 9.42981 0.960461C9.43133 1.13526 9.36413 1.30366 9.24269 1.4294L5.47136 5.20073Z" fill="white"/></g><defs><clipPath id="clip0_841_2"><rect width="10" height="6" fill="white"/></clipPath></defs></svg>') no-repeat center / contain;
	margin-left: 4px; 
	transition: ease-in-out .2s;
	-webkit-transition: ease-in-out .2s;
}

/*
|--------------------------------------------------------------------------
| Global > Border Blocks
|--------------------------------------------------------------------------
*/
.grey-border-top-bottom {
	border: 1px solid #cecece;
	border-width: 1px 0;
}


/*
|--------------------------------------------------------------------------
| Global > Content Read More
|--------------------------------------------------------------------------
*/

.content-expand-btn {
	padding-right: 30px;
	position: relative;
	margin-top: 15px
}
.flex--ai-c .content-expand-btn {
	margin: 0;
}
.content-expand-outer:not(.ce-opened) .content-expand-btn::before {
	content: 'READ MORE';
}
.content-expand-outer.ce-opened .content-expand-btn {
	background: #222;
}
.content-expand-btn::after {
	content: '';
	display: block;
	position: absolute;
    background-image: url(/images/style/homestead/arrow-d-white.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    height: 15px;
    width: 15px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 3px;
}
.content-expand-outer.ce-opened .content-expand-btn::before {
	content: 'READ LESS';
}
.content-expand-outer.ce-opened .content-expand-btn::after {
	background-image: url(/images/style/homestead/arrow-u-white.svg);
	margin-top: 2px;
}
.content-expand .content-expand-hidden {
	height: 0;
	overflow: hidden;
	margin-top: -10px;
}
.content-expand-outer.ce-opened .content-expand .content-expand-hidden {
	height: auto;
	margin-top: 10px;
}
.content-expand-outer:not(.ce-opened) .content-expand-fader {
	display: block;
    width: 100%;
    height: 40px;
    background-image: linear-gradient(rgba(255,255,255,0), #fff);
    margin-top: -40px;
    position: relative;
}

/*
|--------------------------------------------------------------------------
| Global > Stock Statuses
|--------------------------------------------------------------------------
*/
.stock-status {
	padding: 0 0 0 20px;
    background-size: 15px 14px;
	background-repeat: no-repeat;
	background-position: left center;
	font-size: 12px;
}

.in-stock {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 14'%3E%3Cpath fill-rule='evenodd' fill='%2337af56' d='M5.52 10.38L2.33 7.1.58 8.91l4.2 4.3.77.8L17.42 1.82 15.63 0 5.53 10.38z'/%3E%3C/svg%3E");
	color: #37af56;
}

.out-of-stock {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'%3E%3Cpath fill-rule='evenodd' fill='%23b32020' d='M15 1.96L13.03 0 7.49 5.57 1.96 0 0 1.96l5.58 5.55L0 13.14 1 14.16l.86.84L7.49 9.4 13.12 15l.85-.84L15 13.14 9.41 7.51l5.6-5.55z'/%3E%3C/svg%3E");
	color: #b32020;
	background-size: 13px 13px;
}

.stock-pending {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 14'%3E%3Cpath fill-rule='evenodd' fill='%23fcab3e' d='M5.52 10.38L2.33 7.1.58 8.91l4.2 4.3.77.8L17.42 1.82 15.63 0 5.53 10.38z'/%3E%3C/svg%3E");
	color: #fcab3e;
}

/*
|--------------------------------------------------------------------------
| Global > Circled Bullets Listing Style
|--------------------------------------------------------------------------
*/
.circle-bullets {
	list-style-image: url(/images/style/homestead/bullet-circle.png);
}
.font-white .circle-bullets, .font-white.circle-bullets {
	list-style-image: url(/images/style/homestead/bullet-circle-white.png);
}
.font-red .circle-bullets, .font-red.circle-bullets {
	list-style-image: url(/images/style/homestead/bullet-circle-red.png);
}

/*
|--------------------------------------------------------------------------
| Global > Jumbotron
|--------------------------------------------------------------------------
*/
.jumbotron {
	position: relative;
	height: 300px;
	text-align: center;
	color: #fff;
	overflow: hidden;
	background-color: #01c4f4;
	padding: 14px 0;
	display: table;
	width: 100%;
}

.jumbotron-small {
	height: 184px;
}

.jumbotron--title {
	margin: 0;
	color: #fff;
	font-size: 80px;
}

.jumbotron--content {
	width: 100%;
	padding: 10px 0 0 0;
	margin: 0 auto;
	max-width: 700px;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	text-align: center;
}

.jumbotron--content p {
	color: #fff;
}

.jumbotron--inner {
	padding: 0 30px;
	display: table-cell;
	vertical-align: middle;
}



/*
|--------------------------------------------------------------------------
| 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: #01c4f4;
}

.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;
}



/*
|--------------------------------------------------------------------------
| Global > Tooltip
|--------------------------------------------------------------------------
*/
.core-tooltip {
	position: absolute;
	padding: 8px;
	background-color: #01c4f4;
	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: #01c4f4 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 {
	color: #2289c5;
	font-weight: 600;
	text-transform: uppercase;
	margin-left: -3px;
}
.breadcrumb-trail a,
.breadcrumb-trail span {
	margin: 0 6px;
	display: inline-block;
}

.breadcrumb-trail a {
	color: #2289c5;
}

.breadcrumb-trail a:hover {
	color: #2289c5;
}

.breadcrumb-trail span {
	color:#2289c5;
}

.mobile-breadcrumb-trail {
	display: none;
}



/*
|--------------------------------------------------------------------------
| Global > Countdown Timer
|--------------------------------------------------------------------------
*/
.countdown-timer--doughnut {
	position: relative;
	width: 35px;
	height: 35px;
	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: 28px;
	height: 28px;
	/*background-color: #d73938;*/
	background-color: #4ea1d1;
	border-radius: 50px;
	text-align: center;
	font-weight: 700;
	color: #1e1e1e;
}

.countdown-timer--doughnut strong,
.countdown-timer--doughnut strong span {
	font-size: 13px;
	line-height: 13px;
	top: 0;
	font-weight: 600;
}

.countdown-timer--doughnut strong {
	position: relative;
	top: 4px;
	display: block;
	color: #fff;
}

.countdown-timer--doughnut span {
	display: block;
	font-size: 9px;
	position: relative;
	top: 2px;
	color: #fff;
	font-weight: normal;
}

.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: #01c4f4;
	stroke: #dde2e5;
	stroke-width: 6px;
	stroke-dasharray: 38 100;
	transition: stroke-dasharray 1s ease;
}

.quote-side .ui-datepicker-inline {
	background-color: #fff;
}



/*
|--------------------------------------------------------------------------
| Template
|--------------------------------------------------------------------------
*/
.vertical-padding {
	padding: 40px 20px;
}

main {
	padding: 0;
}
main > *:first-of-type:not(.breadcrumb-trail):not(.panel):not(.main-no-gap):not(.vertical-padding):not(.account) {
	padding-top: 3px;
}
main > p.error-msg {
	background-color: #2289c5;
	color: #fff;
	margin: 0;
	padding: 20px!important;
}

.red-title-msg {
	color: #d73938;
	font-size: 18px;
	line-height: 1;
	margin-bottom: 25px;
}


/*
|--------------------------------------------------------------------------
| Category
|--------------------------------------------------------------------------
*/
.category-sidebar {
	min-width: 270px;
	max-width: 270px;
	padding: 35px 25px;
}
.category-sidebar a {
	color: #fff;
}
.category-sidebar ul {
	list-style: none;
	margin-left: 0;
}
ul.category-sidebar-cats li {
	margin: 8px 0;
}
ul.category-sidebar-cats a {
	align-items: center;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
}
.category-sidebar-cats a .vs-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 33px;
	margin-right: 10px;
}


.category-sidebar-brand .vsb-title a {
	font-size: 16px;
}
.category-sidebar-brand .vsb-title a img {
	margin-right: 10px;
}
.category-sidebar-brand li:not(.vsb-title) a {
	background: #161616;
	display: block;
	padding: 8px 14px;
	font-size: 12px;
	line-height: 16px;
}

.shop-sidebar-cats-outer {
	padding: 35px 25px 25px 25px;
}
.shop-sidebar-cats {

}
.shop-sidebar-cats a {
	color: #fff;
	font-weight: 500;
	padding: 6px 0;
}
.shop-sidebar-cats a:hover {
	color: #2289c5;
}

.cat-side-banners {
	margin-top: 30px;
}
.cat-side-banners > * {
	display: flex;
	margin-bottom: 10px;
	padding: 0;
	border-radius: 5px;
	overflow: hidden;
}

.category-header > div.flex {
	align-items: center;
}
.category-header-text.cht-display-content {
	max-width: 1050px;
}
.category-header-text h1 {
	font-size: 38px;
	line-height: 40px;
	margin: 10px 0 12px 0;
}
.category-header-text .content, .category-header-text .content p {
	font-size: 12px;
}
.category-header-text .content h2 {
	font-size: 22px;
}
.category-header-text .content h3 {
	font-size: 20px;
}
.category-header-text .content h4 {
	font-size: 18px;
}
.category-header-text .content h5 {
	font-size: 16px;
}
.category-header-text .content.overflow {
	margin-top: 20px;
}
.category-header-text .content:not(.overflow) {
	margin-bottom: 5px;
}
.category-header-text .content:not(.overflow) h2 {
	font-size: 14px;
	margin-bottom: 0;
}
.category-header-text .content:not(.overflow) p strong, .category-header-text .content:not(.overflow) p {
	font-weight: 400!important;
}

.header-toggle.button {
	margin-top: 10px;
}
.header-toggle.of-open > svg {
	transform: rotate(-180deg);
}

.category-header-slider {
	width: 100%;
	max-width: 910px;
	display: grid;
	align-items: center;
	position: relative;
	align-items: center;
	flex: 1;
	min-width: 550px;
}
.category-header-slider.slick-arrow-type-1 .slick-arrow {
	bottom: 20px;
}
.category-header-slider.slick-arrow-type-1 .slick-next {
	right: 10px;
}
.category-header-slider.slick-arrow-type-1 .slick-prev {
	right: 55px;
}

.category-cat-row {
	border-top: 1px solid #cecece;
}
.category-cat-row .button {
	font-size: 16px;
	font-weight: 300;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	height: 40px;
}
.category-cat-row .button svg {
	margin-right: 10px;
}


/*
|--------------------------------------------------------------------------
| Vehicle > Vehicle Product List
|--------------------------------------------------------------------------
*/

.vehicle-thumbnail-img {
	position: relative;
	max-height: 220px;
	max-width: 292px;
	background-size: cover;
	border-right: 1px solid #cecece;
	overflow: hidden;
}
.vehicle-thumbnail-img .sold-banner, .vehicle-thumbnail-img .thumb-sash {
	position: absolute;
	left: -40px;
	bottom: 22px;
	width: 160px;
	padding: 5px;
	z-index: 1;
	background-color: #d73938;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	transform: rotate(45deg);
}
.vehicle-thumbnail-img .thumb-sold-cover {

}
.vehicle-thumbnail-inner.status-sold .vehicle-thumbnail-img {
    position: relative;
}
.vehicle-thumbnail-inner.status-sold .vehicle-thumbnail-img .thumb-sold-cover, .listing-image--overlay-msg {
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.vehicle-thumbnail-info {
	padding: 15px 0 0 0;
}
.thumbnail-title {
	font-size: 18px;
	line-height: 20px;
	font-weight: 700;
	color: #222;
}
.thumbnail-title, .thumbnail-content {
	padding: 0 20px 0 20px;
}
.thumbnail-add-info {
	padding: 0 20px 0 20px;
}
.thumbnail-add-info svg {
	margin-right: 5px;
}
.thumbnail-content p, .thumbnail-add-info-item {
	font-size: 12px;
	line-height: 14px;
	font-weight: 300;
	margin-bottom: 0;
}
.thumbnail-bottom-info {
	padding: 12px 20px 15px 20px;
	border-top: 1px solid #cecece;
}
.thumbnail-buttons .thumbnail-button-compare input, .thumbnail-buttons .button {
	border-radius: 20px;
	width: 110px;
	font-size: 12px;
}
.thumbnail-buttons .thumbnail-button-compare {
	display: inline-block;
}
.thumbnail-buttons .thumbnail-button-compare input {
	display: block;
	background: #8dc641;
	color: #fff;
	text-align: center;
	transition: ease-in-out .2s;
}
.thumbnail-buttons .button {
	color: #fff;
	font-weight: 400;
	padding: 4px;
	margin-bottom: 3px;
}
.thumbnail-our-price {
	font-size: 18px;
}
.thumbnail-our-price strong {
	font-weight: 800;
}
.thumbnail-was-price {
	font-size: 12px;
}

/*
|--------------------------------------------------------------------------
| Product & Vehicle Listing
|--------------------------------------------------------------------------
*/
.walkaround360 iframe {
	width: 100%;
	height: 360px;
}

.vehicle-listing-header h2, .listing-header h2 {
	font-size: 20px;
	line-height: 22px;
	font-weight: 600;
	margin: 10px 0 0 0;
}
.product-listing-inner--upper {
	margin-bottom: 20px;
}
.vehicle-listing-inner--upper > div, .product-listing-inner--upper > div {
	flex: 1;
}
#listing_img {
    position: relative;
}
.listing-image--overlay-msg {
    z-index: 1;
	font-size: 26px;
}
.product-listing-about--upper .product-grid {
	margin-bottom: 20px;
}
.vehicle-listing-slider, .listing-thumbnails--slider {
	padding: 0 22px;
    margin-top: 2px;
    max-height: 170px;
	overflow: hidden;
	display: grid;
	position: relative;
}
.vehicle-listing-slider.listing-thumb--slider-nobtns, .listing-thumbnails--slider.listing-thumb--slider-nobtns {
	padding: 0;
}
.vehicle-listing-slider .slick-list, .listing-thumbnails--slider .slick-list {
	width: 130%;
}
.vehicle-listing-slider.listing-thumb--slider-nobtns .slick-list, .listing-thumbnails--slider.listing-thumb--slider-nobtns .slick-list {
	width: 100%;
}
.vehicle-listing-slider .slick-arrow, .listing-thumbnails--slider .slick-arrow {
	background-color: #8cc640;
    position: absolute;
    height: 100%;
    width: 20px;
	text-indent: 1000px;
	top: 0;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: 10px;
	background-position: center;
	outline: 2px solid #fff;
}
.vehicle-listing-slider .slick-arrow.slick-prev, .listing-thumbnails--slider .slick-arrow.slick-prev {
	left: 0;
	background-image: url(/images/style/homestead/arrow-l-white.svg);
}
.vehicle-listing-slider .slick-arrow.slick-next,.listing-thumbnails--slider .slick-arrow.slick-next {
	right: 0;
	background-image: url(/images/style/homestead/arrow-r-white.svg);
}
.vehicle-listing-slider .slick-slide, .listing-thumbnails--slider .slick-slide {
	margin-right: 2px;
}
img#listing_offer_overlay {
	display: none;
}
.vehicle-listing-gallery .easyzoom-flyout, .product-listing-gallery .easyzoom-flyout {
	border: 0;
}
.listing-thumbnails--slider a.listing-thumbnail--link, .vehicle-listing-slider .slick-slide > a, .listing-thumbnails--slider .slick-slide > a {
	display: block;
}

.vehicle-listing-slider .slick-slide.other_video, .listing-thumbnails--slider .slick-slide.other_video {
	position: relative;
	overflow: hidden;
}
.vehicle-listing-slider .slick-slide.other_video a, .listing-thumbnails--slider .slick-slide.other_video a {
	display: block;
	background-size: cover;
}
.vehicle-listing-slider .slick-slide.other_video a, .listing-thumbnails--slider .slick-slide.other_video a, .vehicle-listing-slider .slick-slide.other_video a::after, .listing-thumbnails--slider .slick-slide.other_video a::after {
	position: absolute;
	height: 100%;
	width: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	background-position: center;
	background-repeat: no-repeat;
}
.vehicle-listing-slider .slick-slide.other_video a::after, .listing-thumbnails--slider .slick-slide.other_video a::after {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='YouTube_Icon' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1024 721'%3E%3Cpath fill='%23FFFFFF' d='M407,493l276-143L407,206V493z'/%3E%3Cpath opacity='0.12' fill-rule='evenodd' clip-rule='evenodd' d='M407,206l242,161.6l34-17.6L407,206z'/%3E%3Cg%3E%3Cg%3E%3Cpath fill='%23282928' d='M1013,156.3c0,0-10-70.4-40.6-101.4C933.6,14.2,890,14,870.1,11.6C727.1,1.3,512.7,1.3,512.7,1.3h-0.4 c0,0-214.4,0-357.4,10.3C135,14,91.4,14.2,52.6,54.9C22,85.9,12,156.3,12,156.3S1.8,238.9,1.8,321.6v77.5 C1.8,481.8,12,564.4,12,564.4s10,70.4,40.6,101.4c38.9,40.7,89.9,39.4,112.6,43.7c81.7,7.8,347.3,10.3,347.3,10.3 s214.6-0.3,357.6-10.7c20-2.4,63.5-2.6,102.3-43.3c30.6-31,40.6-101.4,40.6-101.4s10.2-82.7,10.2-165.3v-77.5 C1023.2,238.9,1013,156.3,1013,156.3z M407,493l0-287l276,144L407,493z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
	background-size: 80px;
	opacity: .8;
	transition: ease-in-out .2s;
}
.vehicle-listing-slider .slick-slide.other_video a:hover::after, .listing-thumbnails--slider .slick-slide.other_video a:hover::after {
	opacity: 1;
}

.listing-page .usp-container {
	margin-top: 20px;
	margin-bottom: 20px;
}

table.hs-table-style-1 {
	border: 1px solid #cecece;
	font-size: 12px;
	color: #000;
	margin-bottom:30px;
}
.vehicle-tab-data .grid--30 > *{
	padding-bottom:0;
}
table.hs-table-style-1 tr:nth-of-type(odd) {
	background: #f5f5f6;
}
table.hs-table-style-1 td {
	padding: 8px 15px;
}
table.hs-table-style-1 tr td:first-of-type {
	width: 180px;
}


.listing-page-prices {
	overflow: hidden;
	font-weight: 300;
}
.listing-page-prices small {
	font-size: 16px;
}
.listing-page-prices .prices-lg {
	font-size: 24px;
	padding: 5px 30px;
}
.listing-page-prices .prices-lg strong {
	font-size: 36px;
	font-weight: 800;
	letter-spacing: -1.5px;
}
.listing-page-prices .prices-sm {
	font-size: 20px;
	padding: 10px 30px;
}
.prices-sm small {
	padding: 6px 12px;
	border: .5px solid #fff;
}
.prices-sm small img {
	width: 18px;
	margin-right: 2px;
}

#listing_options {
	margin-bottom: 3px;
}
#listing_options .input {
	margin-bottom: 4px;
}
#listing_options .input:not(.input-qty) .select2-container--default .select2-selection--single .select2-selection__arrow {
	background-position: center 28px;
}
.input-qty .select2-basic--container.select2-selection--single .select2-selection__rendered {
	padding: 11px 10px 9px 60px;
	font-weight: 700;
}
.input-qty label {
	font-size: 15px;
	font-weight: 500;
	color: #222;
	top: 50%;
	transform: translateY(-50%);
}

.product-listing-about .stock {
	width: auto;
	padding: 8px 10px;
	align-self: baseline;
	border: 1px solid #ffffff;
	align-self: baseline;
	margin-bottom: 15px;
}
.product-listing-about .stock .stock-status {
	padding: 0 0 0 26px;
	background-size: 20px;
	font-size: 15px;
}
.product-listing-about .stock .stock-status.in-stock {
	color: #ffffff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 14'%3E%3Cpath fill-rule='evenodd' fill='%23FFFFFF' d='M5.52 10.38L2.33 7.1.58 8.91l4.2 4.3.77.8L17.42 1.82 15.63 0 5.53 10.38z'/%3E%3C/svg%3E");
}
.product-listing-about .stock .stock-status.out-of-stock {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'%3E%3Cpath fill-rule='evenodd' fill='%23FFFFFF' d='M15 1.96L13.03 0 7.49 5.57 1.96 0 0 1.96l5.58 5.55L0 13.14 1 14.16l.86.84L7.49 9.4 13.12 15l.85-.84L15 13.14 9.41 7.51l5.6-5.55z'/%3E%3C/svg%3E");
	color: #ffffff;
}
.stock-pending {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 14'%3E%3Cpath fill-rule='evenodd' fill='%23FFFFFF' d='M5.52 10.38L2.33 7.1.58 8.91l4.2 4.3.77.8L17.42 1.82 15.63 0 5.53 10.38z'/%3E%3C/svg%3E");
	color: #ffffff;
}

.product-inner-row .stock-pending {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 14'%3E%3Cpath fill-rule='evenodd' fill='%23fcab3e' d='M5.52 10.38L2.33 7.1.58 8.91l4.2 4.3.77.8L17.42 1.82 15.63 0 5.53 10.38z'/%3E%3C/svg%3E");
	color: #fcab3e;
}

.listing-delivery-info {
	padding: 10px 30px;
}
.listing-delivery-info small {
	font-size: 13px;
}

ul.listing-resources li {
	border-top: 1px solid #e1e1e1;
	border-bottom: 1px solid #e1e1e1;
}
ul.listing-resources li:last-of-type:not(:first-of-type) {
	border-top: 0;
}

.vehicle-listing-tab-links .button {
	width: 100%;
	padding: 6px;
}

.vehicle-tab-button {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	text-align: center;
	color: #222;
	text-transform: uppercase;
	font-size: 16px;
	height: 60px;
	transition: ease-in-out .2s;
	padding: 0 12px;
}
.vehicle-tab-button svg {
	margin-right: 10px;
}
.caravan-tab-sel .vehicle-tab-button {
	background: #fff;
}
div:not(.caravan-tab-sel) > .vehicle-tab-button:hover {
	background: rgba(0,0,0,.05);
}
.vehicle-tab-data {
	display: none;
}
.vehicle-tab-data img.floor-plan {
	border: 1px solid #cecece;
	margin-bottom: -1px;
	max-width: 380px;
}
form.partex .input input, form.partex .input textarea {
	border: 1px solid #e1e1e1;
}

.vtd-featured {
    display: contents;
}
.vtd-featured > div > div {
	min-height: 90px;
}
.vtd-featured > div > div strong {
	font-weight: 800;
}
.vtd-featured > div > div p {
	margin-top: 5px;
	font-size: 11px;
	line-height: 14px;
}


.finance-calc-list {
	list-style: none;
	width: 422px;
	max-width: 100%;
	padding-right: 5px;
	margin-left: 0;
	flex: 1;
}
.finance-calc-list li {
	background: #f5f5f6;
	padding: 12.5px 15px;
}
.finance-calc-list li:not(:last-of-type) {
	margin-bottom: 5px;
}
.finance-calc-list li span:first-of-type {
	min-width: 170px;
}

.finance-recalculate-form {
	width: 330px;
	height: fit-content;
	min-height: 195px;
	padding: 30px;
	margin-left: 30px;
}
.finance-recalculate-form input[type="text"], .finance-recalculate-form .select2-selection {
	font-weight: bold;
}

.vehicle-icon-banners {
	display: inline-block;
	border: .5px solid #cecece;
}
.vehicle-icon-banners > div {
	border: .5px solid #cecece;
	height: 105px;
	padding: 10px;
}
.vehicle-icon-banners > div p {
	margin-bottom: 5px;
}


/*
|--------------------------------------------------------------------------
| Vehicle > Comparison
|--------------------------------------------------------------------------
*/
.comparison-sidebar .comparison-sidebar-intro {
	height: 450px;
	padding: 65px 50px 45px 50px;
}
.comparison-sidebar .comparison-sidebar-intro h1 {
	font-size: 30px;
	line-height: 36px;
}
.comparison-sidebar .comparison-side-list, .comparison-list-items .comparison-item-list {
	list-style: none;
	margin: 0;
}
.comparison-sidebar .comparison-side-list li, .comparison-list-items .comparison-item-list li {
	display: flex;
	height: 35px;
	margin-bottom: 1px;
	font-size: 13px;
	line-height: 13px;
	padding: 0 15px;
	align-items: center;
	justify-content: center;

}
.comparison-sidebar .comparison-side-list li {
	background-color: #2c9cdd;
	color: #fff;
	justify-content: flex-end;
}
.comparison-list-items .comparison-item-list li {
	background-color: #f5f5f6;
	font-weight: 600;
	color: #222;
}
.comparison-list-item {
	border-right: 1px solid #cecece;
}
.comparison-item-intro {
    min-height: 165px;
	max-height: 165px;
	padding: 20px;
}
.comparison-item-image {
	height: 285px;
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.comparison-item-intro .button.comp-remove {
	padding:0;
}
.comparison-item-intro .button.comp-remove input[type="submit"] {
	padding: 12px 35px 12px 20px;
    line-height: 0;
    border-radius: 20px;
    color: #222;
    font-size: 12px;
	text-transform: uppercase;
	transition: ease-in-out .2s;
}
.comparison-item-intro .button.comp-remove input[type="submit"]:hover {
	background: #c1c1c1;
}

.comparison-sidebar {
	width: 305px;
}
.comparison-sidebar .button-solo-arrow-r-dark {
	height: 24px;
    width: 24px;
    background-image: url(/images/style/homestead/arrow-r-dark.svg);
    background-size: auto 12px;
    background-position: 55% 50%;
    background-repeat: no-repeat;
    padding: 0;
    border-radius: 20px;
}


/*
|--------------------------------------------------------------------------
| Template > Comparison Bar
|--------------------------------------------------------------------------
*/
.comparison-toolbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
	background: #1c1c1c;
	padding: 10px 0;
	z-index: 200;
}
.comparison-toolbar .tb-item {
	position: relative;
	background: #161616;
	overflow: hidden;
	margin-right: 10px;
	height: 60px;
}
.comparison-toolbar .tb-item-image {
	height: 60px;
    width: 80px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.comparison-toolbar .tb-item-image img {
	visibility: hidden;
}
.comparison-toolbar .tb-remove {
	position: absolute;
	height: 100%;
	width: 100%;
	display: none;
	opacity: 1;
	background: #101010;
    color: #fff;
}
.comparison-toolbar .tb-item-title {
	padding: 0px 15px;
	font-size: 12px;
	line-height: 15px;
    font-weight: 300;
    color: #fff;
    align-self: center;
}
.comparison-toolbar-mobile {
	display: none;
}

/*
|--------------------------------------------------------------------------
| Template > Cookie Notification
|--------------------------------------------------------------------------
*/
.cookie_note_bkg {
	background: url(/images/style/homestead/cookie_olay.png);
	position: fixed;
	top: 0;
	width: 100%;
	left: 0;
	height: 45px;
	color: #FFF;
	text-align: center;
	line-height: 45px;
	z-index: 10000
}



/*
|--------------------------------------------------------------------------
| Template > Header
|--------------------------------------------------------------------------
*/
header {
	background-color: #fff;
}

.mobile-menu--btn-cont,
.mobile-cart--btn-cont {
	display: none;
	position: absolute;
	top: 50%;
	bottom: 0;
	transform: translateY(-50%);
	height: 50px;
	width: 50px;
	border: 1px solid #1971a5;
	border-radius: 5px;
}
.mobile-menu--btn-cont {
	left: 20px;
	overflow: hidden;
}

.mobile-menu--btn {
	width: 30px;
	height: 28px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: ease-in-out .2s;
}
.mobile-menu--btn.open {
	background: #2173a3;
	box-shadow: 0 0 0 35px #2173a3;
}

.mobile-menu--btn div {
	margin: 0 0 5px;
	-webkit-transition: transform 300ms ease;
	transition: transform 300ms ease;
}

.mobile-menu--btn div span:first-child {
	border-radius: 8px 0 0 8px;
}

.mobile-menu--btn div span:last-child {
	border-radius: 0 8px 8px 0;
}

.mobile-menu--btn span {
	float: left;
	width: 50%;
	background-color: #fff;
	height: 6px;
	display: block;
	-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 div:nth-child(1) { -webkit-transform: translateY(8px); transform: translateY(8px); }
.mobile-menu--btn.open div:nth-child(1) span:first-child { -webkit-transform: translateX(5px) rotateZ(45deg); transform: translateX(5px) rotateZ(45deg); }
.mobile-menu--btn.open div:nth-child(1) span:last-child { -webkit-transform: translateX(-5px) rotateZ(-45deg); transform: translateX(-5px) rotateZ(-45deg); }

.mobile-menu--btn.open div:nth-child(2) span:first-child { -webkit-transform: translateX(-15px); transform: translateX(-15px); opacity: 0; }
.mobile-menu--btn.open div:nth-child(2) span:last-child { -webkit-transform: translateX(15px); transform: translateX(15px); opacity: 0; }

.mobile-menu--btn.open div:nth-child(3) { -webkit-transform: translateY(-8px); transform: translateY(-8px); }
.mobile-menu--btn.open div:nth-child(3) span:first-child { -webkit-transform: translateX(5px) rotateZ(-45deg); transform: translateX(5px) rotateZ(-45deg); }
.mobile-menu--btn.open div:nth-child(3) span:last-child { -webkit-transform: translateX(-5px) rotateZ(45deg); transform: translateX(-5px) rotateZ(45deg); }
*/

.mobile-cart--btn-cont {
	left: auto;
	right: 20px;
	line-height: 50px;
}

.mobile-cart--btn-cont a {
	display: block;
	font-size: 33px;
	color: #01c4f4;
	font-weight: 700;
}
.mobile-cart--btn-cont a > .itm-count {
	position: absolute;
	top: 3px;
	right: 5px;
	text-align: center;
	color: #fff;
	font-size: 14px;
	line-height: 16px;
	font-weight: 500;
}


.mobile-menu-login {
	height: 80px;
	font-weight: 400;
	font-size: 18px;
}
.mobile-menu-login a {
	color: #fff;
}
.mobile-menu-login svg {
	overflow: visible;
	margin-right: 10px;
}

.mobile-nav ul.mob-nav-large > li {
	border-bottom: 1px solid #2173a3;
	padding: 0;
	transition: ease-in-out .2s;
}
.mobile-nav ul.mob-nav-large > li.mobile-nav--parent.open {
	background-color: #d73938;
}
.mobile-nav ul.mob-nav-large > li:last-of-type {
	border: 0;
}
.mobile-nav ul.mob-nav-large > li > a {
	padding: 15px 20px;
}
.mobile-nav ul.mob-nav-large > li > a span {
	font-size: 21px;
	font-weight: 500;
	flex: 1;
}
.mobile-nav ul.mob-nav-large > li > a span small {
	font-size: 14px;
	font-weight: 200;
}
.mobile-nav--parent .mobile-nav--parent--icon {
	transition: ease-in-out .2s;
}
.mobile-nav--parent.open .mobile-nav--parent--icon {
	transform: rotate(180deg);
}
.mobile-nav--item-svg {
	width: 90px;
	margin-right: 5px;
	display: flex;
	justify-content: center;
}

.mobile-nav .mob-nav-smaller li {
	padding: 0;
}
.mobile-nav .mob-nav-smaller li a {
	font-size:20px;
	background-color: #1b6e9e;
	display: block;
	padding: 12px 20px;
	margin-bottom: 1px;
	font-weight: 300;
}

/*
|--------------------------------------------------------------------------
| Template > Header > Header Message
|--------------------------------------------------------------------------
*/
.header-msg {
	background-color: #d73938;
	color: #fff;
	padding: 10px 20px;
	text-align: center;
}

/*
|--------------------------------------------------------------------------
| Template > Header > Top Bar
|--------------------------------------------------------------------------
*/
.header-top {
	font-size: 13px;
	font-weight: 300;
	height: 30px;
	background-color: #2d2d2d;
	line-height: 30px;
}

.header-top a {
	color: #fff;
}

.header-top a:hover {
	opacity: .7;
}

.header-top--social {
	width: 290px;
    max-width: 100%;
}
.header-top--social > * {
	margin-right: 10px;
}

.header-top--social-icon {
    width: 22px;
	height: 20px;
	margin-right: 4px;
}

.header-top svg {
    display: block;
	max-width: 100%;
	max-height: 100%;
}

.header-top-menu a {
	padding: 0 15px;
}

.header-top-right-links a {
	max-height: 100%;
    margin-left: 25px;
    padding-left: 20px;
	position: relative;
}

.header-top-right-links a svg {
	position: absolute;
	display: inline-table;
    left: -5px;
    max-width: 17px;
	height: 17px;
	top: 50%;
	transform: translateY(-50%);
}

/*
|--------------------------------------------------------------------------
| Template > Header > Main
|--------------------------------------------------------------------------
*/
.header-main {
	background: #2289c5;
	padding: 0px 20px;
	height: 142px;
}

.header-main .logo {
	width: 300px;
}

.logo__svg {
	width: 260px;
	height: 52px;
}

.header-main .logo img {
	width: 100%;
}

.main-nav {
	height: 142px;
}
.main-nav-item {
	height:100%;
	margin: 0 10px;
}
.main-nav .main-nav-item > a {
	height: 100%;
	display: block;
	color: #fff;
	padding: 5px 10px 0 10px;
	border-bottom: 5px solid #222;
	display: flex;
    flex-direction: column;
    justify-content: center;
}
.main-nav .main-nav-item.mn-store > a {
	border-color: #d73938;
}
.main-nav .main-nav-item.mn-caravans > a {
	border-color: #2c9cdd;
}
.main-nav .main-nav-item.mn-motorhomes > a {
	border-color: #004d84;
}
.main-nav .main-nav-item.mn-workshop > a {
	border-color: #0f73ad;
}
.main-nav .main-nav-item.mn-touringpark > a {
	border-color: #c7791d;
}
.main-nav .main-nav-item.mn-logcabins > a {
	border-color: #8cc640;
}

.main-nav a:hover {
	opacity: .7;
}
.main-nav a p {
	font-weight: 600;
	font-size: 18px;
}
.main-nav a p small {
	font-weight: 200;
	font-size: 12px;
}
.main-nav a img {
	height: 30px;
	margin-bottom: 5px;
}



.header-main-right {
	width: 310px;
}
.header-basket {
	background-color: rgba(255, 255, 255, .20);
	border-radius: 5px;
	margin-bottom: 5px;
}
.header-basket > span, .header-basket > a {
	color: #fff;
}
.header-basket > a {
	font-weight: 300;
	padding: 10px 15px;
	border-left: 1px solid #2289c5;
	font-size: 12px;
	line-height: 21px;
	text-transform: uppercase;
	border-radius: 0 5px 5px 0;
}
.header-basket > a:hover {
	background-color: rgba(255, 255, 255, .20);
}
.header-basket > span {
	padding: 10px 15px 10px 50px;
	font-weight: 500;
	position: relative;
	align-self: center;
}
.header-basket > span svg {
	position: absolute;
	height: 23px;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
}
.header-main-right .search-form > .input {
	margin-bottom: 0;
}
.header-main-right .search-form .input input[type="text"] {
    border-radius: 5px;
    border: 0;
    padding: 10px 15px 10px 40px;
}

.header-main-right form.search-form img.spinner {
	position: absolute;
	left: -30px;
	top: 6px;
	height: 20px;
	width: 20px;
}
.head-search-button {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	margin-top: 2px;
}

.main-bar-menu, .main-bar-menu-inner  {
	position: relative;
	z-index: 100;
}

.main-bar-menu-inner .bar-menu-item > a {
	color: #fff;
	padding: 10px 15px;
	font-size: 13px;
	font-weight: 500;
	text-align: center;
}
.mbm-bg-store .main-bar-menu-inner .bar-menu-item:hover > a {
	color: #d73938;
    background-color: #fff;
}
.main-bar-menu-inner .menu-view-all {
	padding: 6px;
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .5px;
}
.main-bar-menu-inner .menu-view-all strong {
	font-weight: 600;
}
.mbm-bg-store .main-bar-menu-inner .menu-view-all {
	color: #fff;
	background: #d73938;
}
.mbm-bg-store .main-bar-menu-inner .menu-view-all:hover {
	 background: #a12b2b;
}
.mbm-bg-store {
	background: #d73938;
}

.mbm-bg-caravan .main-bar-menu-inner .bar-menu-item:hover > a {
	color: #2c9cdd;
    background-color: #fff;
}
.mbm-bg-caravan {
	background: #2c9cdd;
}

.bar-menu-dropdown {
	display: none;
	position: absolute;
    background-color: #fff;
	width: 100%;
	min-width: 1200px;
	top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}
.bar-menu-item:hover .bar-menu-dropdown {
	display: block;
}
.bar-menu-dropdown-left {
	padding: 14px 35px;
}
.bar-menu-dropdown-left > a {
	min-width: 290px;
	padding:6px 0;
	color: #222;
	font-weight: 500;
}

.mbm-bg-store .bar-menu-dropdown-left > a:hover {
	color: #d73938;
}
.bar-menu-dropdown-right {
	width: 460px;
	padding: 20px;
	border-left: 1px solid #cecece;
	font-size: 12px;
	color: #222;
}
.bar-menu-dropdown-right img {
	margin-bottom: 18px;
}


/*
|--------------------------------------------------------------------------
| Template > Header > Main Caravan Filter
|--------------------------------------------------------------------------
*/

.mobile-caravan-search-button {
	display: none;
}
.mobile-caravan-search-button svg {
	transition: ease-in-out .2s;
}
.caravan-search{
	border-top: 1px solid #2289c5;
	padding: 10px 20px 10px 10px;
}
.caravan-search > * {
	margin-left: 10px;
}
.basic-field {
	position: relative;
	width: 25%;
	text-align: left;
}
.basic-field > label {
	position: absolute;
	left: 12px;
    top: 5px;
	font-size: 12px;
	z-index: 1;
	pointer-events: none;
}
.basic-field .dropdown-menu-cont {
	position: relative;
	cursor: pointer;
	border-radius: 4px;
}
.basic-field .dropdown-menu-cont.open {
	border-radius: 4px 4px 0 0;
}
.basic-field .dropdown-menu-cont::after {
	content: '';
	position: absolute;
	right: 12px;
	bottom: 10px;
	width: 15px;
	height: 10px;
	background-image: url(/images/style/homestead/arrow-d-dark.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.basic-field .dropdown-menu-cont .dropdown-menu ul {
    border: 1px solid #dce2e6;
    background-color: #fff;
    display: none;
    left: 0;
	margin: 0;
	padding: 5px 0;
    list-style-type: none;
    position: absolute;
    top: 100%;
    width: 100%;
    list-style: none;
    max-height: 199px;
    overflow: auto;
    z-index: 300;
}
.basic-field .dropdown-menu-cont.open .dropdown-menu ul {
    display: block;
}
.basic-field .dropdown-menu-cont.open .dropdown-menu ul li {
	margin: 0;
}
.caravan-search-price {
	width: 280px;
}
.dropdown-menu-label-inner, .caravan-search-price .basic-field .select2-selection--single, .caravan-search-price .basic-field .select2-dropdown {
	height: 50px;
	width: 100%;
	font-size: 14px;
	color: #222;
	font-weight: 700;
    padding: 24px 12px 8px 12px;
}
.basic-field .dropdown-menu input[type="checkbox"] {
    margin-right: 8px;
}
.basic-field .dropdown-menu label {
	display: flex;
    align-items: center;
	line-height: 10px;
	padding: 5px 12px;
	cursor: pointer;
}
.basic-field .dropdown-menu label:hover {
	background-color: #f1f1f1;
}
.caravan-search-price .basic-field {
	margin-right: 2px;
}
.caravan-search-price .basic-field:last-child {
	margin-right: 0;
}
.caravan-search-price .basic-field .select2-selection__rendered {
	padding-left: 0;
}

.caravan-search-price .basic-field:first-child .select2-selection--single {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
.caravan-search-price .basic-field:last-child .select2-selection--single {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

.caravan-search-buttons {
	min-width: 150px;
}
.caravan-search-buttons > *:not(:last-child) {
	margin-bottom: 4px;
}
.caravan-search-buttons > *.button {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	padding: 2px 12px;
	height: calc(50% - 2px);
	max-height: 34px;
}

.caravan-search-advanced {
	position: absolute;
	top: 100%; left: 0;
    width: 100%;
	padding: 12px 2px 2px 12px;
	margin: 0;
	background-color: #015086;
	border-radius: 0 0 4px 4px;;
	z-index: 1;
}

.search-caravan-button {
    width: 100%;
    margin-top: 10px;
    border-radius: 4px;
	font-weight: 500;
	letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-caravan-button > svg {
	margin-right: 10px;
}

/*
|--------------------------------------------------------------------------
| Template > Header > Search Dropdown
|--------------------------------------------------------------------------
*/
.changed_search,
.original_search {
	padding-left: 50px;
}

.changed_search a,
.original_search a {
	text-transform: none;
}

.search_dropdown .shop--navtrail {
	display: none;
}

.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;
}

.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_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;
}

.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: #2289c5;
    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 > Newsletter Form
|--------------------------------------------------------------------------
*/
#nsltr {
	position: relative;
}
footer .nsltr-inner {
	padding: 20px;
}

footer .nsltr-inner h2 {
	color: #ffffff;
	font-size: 21px;
	line-height: 21px;
	margin-bottom: 8px;
}

footer .nsltr-left {
	width: 425px;
	font-weight: 500;
}

footer .nsltr-input-cont {
	height: 50px;
	margin-right: 1px;
	margin-bottom: 0;
}
footer .nsltr-input-cont input, footer .nsltr-input-cont .styled-select,  footer .nsltr-input-cont .styled-select .select2, footer .select2-container--default .select2-selection--single .select2-selection__rendered {
	width: 100%;
	height: 50px;
}
footer .nsltr-input-cont input[type="text"], footer .nsltr-input-cont input[type="email"], footer .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding: 0 20px;
	margin-right: 1px;
}
footer .nsltr-input-cont:first-child input[type="text"], 
footer .nsltr-input-cont:first-child input[type="email"] {
	border-radius: 4px 0 0 4px;
}
footer .select2-container--default .select2-selection--single .select2-selection__rendered, footer .nsltr-input-cont input::placeholder {
	display: flex;
	align-items: center;
	color: #222;
	font-weight: 500;
	font-size: 15px;
}
footer .nsltr-submit {
	min-width: 150px;
	background: #8CC640;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
	border-radius: 0 4px 4px 0;
}
.nsltr-promise {
	color: #FFFFFF;
	font-size: 11px;
	margin-top: 12px;
	text-align: left;
	padding: 0 10px;
}

/*
|--------------------------------------------------------------------------
| Template > Footer
|--------------------------------------------------------------------------
*/
.footer-main {
	padding: 30px 0;
}
.footer-main, .footer-bottom {
	background: #1c1c1c;
}

.footer-main-menu {
	padding: 25px 0;
}
.footer-main-menu > a {
	margin: 0 30px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
}
.footer-main-menu > a:hover {
	opacity: .7;
}
.footer-main-menu > a > img {
	height: 30px;
    margin-right: 8px;
}

.footer-nav-title {
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 8px;
}
.footer-nav-list {
	min-width: 210px;
}
.footer-nav-list a {
	color: #fff;
	margin-bottom: 5px;
}
.footer-nav-list a:hover {
	color: #2289c5;
}
.footer-contact {
	width: 345px;
}
.footer-contact .contact-item {
	margin-bottom: 15px;
	color: #fff;
}
.footer-contact > a.contact-item:last-of-type {
	margin-bottom: 0;
}
.footer-contact svg {
	display: inline-table;
    width: 25px;
	margin-right: 6px;
}

.fns-contact-buttons {
    min-width: 205px;
}
.fns-contact-buttons a {
	color: #fff;
	text-align: center;
	width: 100%;
	background-color: #2389C5;
	text-transform: uppercase;
	border-radius: 20px;
	font-weight: 600;
	padding: 6px 20px;
}
.fns-contact-buttons a:hover {
	background-color: #16628f;
}
.fns-contact-buttons a:nth-child(3n+2) {
	background-color: #D73938;
}
.fns-contact-buttons a:nth-child(3n+2):hover {
	background-color: #b72e2d;
}
.fns-contact-buttons a:nth-child(3n+3) {
	background-color: #8CC640;
}
.fns-contact-buttons a:nth-child(3n+3):hover {
	background-color: #79ad34;
}
.fns-contact-buttons a:not(:last-of-type) {
	margin-bottom: 8px;
}
.footer-bottom {
	border-top: 1px solid #161616;
}
.footer-bottom, .footer-bottom a {
	color: #fff;
	font-size: 11px;
	line-height: 18px;
}
.footer-disclosure{
	font-size: 13px;
	color: #fff;
	line-height: 22px;
	padding-top: 18px;
	text-align: left;
	padding:25px 25px 40px 25px;
	border-top: 1px solid #161616;
	background-color: #1c1c1c;
}
.footer-disclosure strong{
	font-size: 16px;
}

/*
|--------------------------------------------------------------------------
| Template > Footer > Bottom
|--------------------------------------------------------------------------
*/
.footer-payment img {
	width: 269px;
	margin-top: 2px;
}

/*
|--------------------------------------------------------------------------
| 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: 0; left: -390px; bottom: 0;
	display: none;
	width: 390px;
	background:#2289c5;
	background-size: 515.5px 511.5px;
	z-index: 999;
}

.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-search {
	background-color: #1e1e1e;
}

.mobile-search--input {
	overflow: hidden;
}

.mobile-store {
	padding: 20px 0 0 20px;
	display: none;
}

.mobile-nav .mobile-store--link {
	display: block;
	font-size: 16px;
	color: #ffffff;
	padding: 5px 35px;
}

.mobile-store--link:last-child {
	margin-bottom: 10px;
}

.mobile-store--link:last-child, .mobile-store--link:nth-last-child(2) {
	font-weight: 600;
}

.mobile-store--cont > a {
	display: block;
	background: url(/images/style/homestead/icon-mobile-dropdown-down.png) no-repeat right 8px;
}

.mobile-store--cont.open > a {
	display: block;
	background: url(/images/style/homestead/icon-mobile-dropdown.png) no-repeat right 8px;
}

.mobile-store--cont.open .mobile-store {
	display: block;
}

.mobile-search--input {
	width: 100%;
	color: #c0bfbf;
	font-size: 21px;
	background: none;
	line-height: 55px;
	padding: 18px 30px 17px;
}

.onpage-search__input {
	width: 100%;
	font-size: 21px;
	background: none;
	line-height: 55px;
	padding: 0 20px 0;
}

.onpage-search__submit {
	height: 55px;
	width: 65px;
	background-color: #d73938;
}

.onpage-search__submit svg {
	width: 28px;
	height: 28px;
	fill: #fff;
}

.mobile-nav {
	padding-top: 0;
}

.static-mobile-nav {
	padding-top: 18px;
	padding-bottom: 0;
	border-bottom: 0;
}

.mobile-nav a {
	color: #fff;
	font-size: 24px;
	text-transform: none;
}

.mobile-nav li {
	padding: 14px 0;
}
.mobile-nav .mobile-nav--dropdown {
	display: none;
}

.mobile-action {
	margin-top: 10px;
}
.mobile-action a {
	display: block;
	color: #c0bfbf;
	margin: 0 0 10px 0;
}

.mobile-action a:last-child {
	margin: 0;
}

.mobile-action a[href^="tel:"] {
	display: flex;
	color: #fff;
	padding: 10px 20px;
	font-size: 18px;
}
.mobile-action a[href^="tel:"] svg {
	margin-right: 10px;
}

.mobile-action .icon {
	padding: 0 0 0 34px;
}

.mobile-action .icon-user {
	background: url(/images/style/homestead/mbl-icon-user.png) no-repeat center left;
	background-size: 20px 20px;
}

.mobile-action .icon-box {
	background: url(/images/style/homestead/mbl-icon-box.png) no-repeat center left;
	background-size: 20px 20px;
}

.mobile-action .icon-phone {
	background: url(/images/style/homestead/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 {
	padding: 10px 20px;
	text-align: justify;
}

.mobile-social a {
	/*width: 40px;*/
	float: none;
	display: inline-block;
	background-position: center center;
	margin-right: 12px;
}

.mobile-social:after {
	content: '';
	width: 100%;
	display: inline-block;
}

#page_numbers {
	text-align: center;
}

.page_numbers_inner {
	padding: 32px;
}

.page_number_sel,
.previous_page,
.page_number,
.next_page {
	display: inline-block;
}

#page_numbers a {
	padding: 10px 16px;
	background-color: #fff;
	font-size: 16px;
	font-weight: 700;
}

#page_numbers .previous_page a {
	border-radius: 40px 0 0 40px;
}
#page_numbers .next_page a {
	border-radius: 0 40px 40px 0;
}
#page_numbers .previous_page a,
#page_numbers .next_page a {
	background: #2289c5;
	color: #2289c5!important;
	width: 60px;
	position: relative;
}
#page_numbers .previous_page.pagination_button_disabled a,
#page_numbers .next_page.pagination_button_disabled a {
	background: #cecece;
	color: #cecece!important;
	display: none;
}

#page_numbers .previous_page a::after, #page_numbers .next_page a::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	height: 20px;
	width: 12px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#page_numbers .previous_page a::after {
	background-image: url(/images/style/homestead/arrow-l-white.svg);
}
#page_numbers .next_page a::after {
	background-image: url(/images/style/homestead/arrow-r-white.svg);
}


#page_numbers .page_number_sel a {
	color: #222;
}

.lazy-load {
	clear: both;
	padding: 15px 0;
}

.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;
}

.onpage-search {
	max-width: 550px;
	background-color: #fff;
	position: relative;
	border: 1px solid #eaeaea;
	display: flex;
	border-radius: 5px;
	overflow: hidden;
}

#mbl-filters-sub {
	display:block;
	margin-bottom: 25px;
}


/*
|--------------------------------------------------------------------------
| Template > Overlay
|--------------------------------------------------------------------------
*/
#olay {
	display: none;
}

#olay_back {
	background: #000;
	position: fixed;
	top: 0; bottom: 0; left: 0; right: 0;
	z-index: 10000;
	filter: alpha(opacity=70);
	opacity: .7;
	width: 100%;
}

#olay_box_container {
	width: 90%;
	max-width: 720px;
	position: fixed;
	top: 10%; left: 50%;
	z-index: 10010;
}

#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;
}

#olay_close,
#search_results_close {
	background:url(/images/style/homestead/olay_close.jpg) no-repeat;
	width:26px;
	height:25px;
	float: right;
	cursor: pointer;
}

/*
|--------------------------------------------------------------------------
| Pricematch > Overlay
|--------------------------------------------------------------------------
*/
#overlay-price-match {
	background-color: rgba(34, 137, 197, 0.75);
	position: absolute!important;
}

#overlay-price-match .overlay--backdrop {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

#overlay-price-match .overlay--inner {
	max-width: 740px;
	top: 80px!important;
	transform: translate(-50%, 0)!important;
}

#pricematch-stage2,
#pricematch-stage3,
#pricematch-unavailable,
#pricematch-error,
#pricematch-msg-fail {
	display: none;
}

.pricematch-header {
	text-align: center;
}

#pricematch-stage1 .pricematch-header {
	text-align: left;
}

#pricematch-stage1 .pricematch-header,
#pricematch-stage3 .pricematch-header {
	padding-bottom: 28px;
}

#pricematch-stage2 .pricematch-header {
	padding-bottom: 15px;
}

#pricematch-unavailable .pricematch-header,
#pricematch-error .pricematch-header {
	padding: 15px 0;
}

.pricematch-header h3 {
	font-size: 24px;
	color: #1c1c1c;
	letter-spacing: -0.05em;
}

.pricematch-header img {
	margin: 20px 0;
}

.pricematch-header h3 svg {
    height: 20px;
    margin-right: 10px;
}

.pricematch-header h3 svg path {
	fill: #1c1c1c;
}

#pricematch-msg-success svg {
	height: 90px;
	margin: 20px 0;
}

#pricematch-msg-success svg path {
	fill: #8dc641;
}

.pricematch-header p {
	font-size: 14px;
	color: #1c1c1c;
}

.pricematch-header p {
	max-width: 600px;
    margin: 0 auto;
}

#pricematch-stage1 .pricematch-header p {
	max-width: none;
	margin: 0 0 15px 0;
}

#pricematch-stage1 .pricematch-header p:last-child {
    margin: 0;
}

.pricematch-body {
	border-radius: 5px;
	overflow: hidden;
	background-color: #2289c5;
}

.pricematch-body h4 {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.05em;
}

.pricematch-body h4 span {
	width: 24px;
	height: 24px;
	background-color: #4ea1d1;
	border-radius: 50%;
	display: inline-block;
	text-align: center;
    line-height: 24px;
	margin-right: 8px;
}

.pricematch-body .pricematch-section--light h4 span {
	background-color: #2289c5;
}

.pricematch-section {
	padding: 18px;
	color: #fff;
}

.pricematch-section .input-grid {
	padding: 5px 0;
}

.pricematch-section--details {
	font-weight: 600;
}

.pricematch-section--details .input-text-dummy {
	padding: 22px 10px 6px 10px;
    overflow: hidden;
    white-space: nowrap;
}

.pricematch-section .input-nomargin {
	margin-bottom: 0;
}

.pricematch-section--details strong {
	font-weight: 400;
	display: inline-block;
	width: 90px;
}

.pricematch-section-row {
	padding: 2px 0;
	font-size: 13px;
	display: flex;
}
.pricematch-section-row span {
	flex: 1;
}

.pricematch-section--light {
	background-color: #4ea1d1;
}

.pricematch-section--prices {
	overflow: hidden;
	padding: 0 12px;
}

.pricematch-price {
	float: left;
	font-size: 16px;
	font-weight: 600;
	float: left;
	padding: 12px 6px;
	width: 33.333%;
	text-align: center;
	line-height: 16px;
}

.pricematch-price strong {
	font-size: 13px;
	font-weight: 400;
	color: #86c641;
	display: block;
	text-transform: uppercase;
	padding-bottom: 2px;
}

.pricematch-price__inner {
	background: #1c1c1c;
	border-radius: 5px;
	padding: 10px;
}

.pricematch-price:first-child .pricematch-price__inner {
	background: #2289c5;
}

.pricematch-price:first-child strong {
	color: #fff;
}

#pricematch-submit,
.pricematch-section .listing-add-btn {
	float: right;
	margin: 0;
}

#pricematch-submit {
	padding: 7px 20px;
}

.pricematch-section .checkbox {
	border-color: #fff;
}

.pricematch-section .checkbox-label {
	color: #fff;
	font-size: 11px;
}

.pricematch-section .checkbox-label a {
	color: #fff;
	text-decoration: underline;
}

.pricematch-section .segment-50.dblc {
	float: none;
}


/*
|--------------------------------------------------------------------------
| Home > Slider
|--------------------------------------------------------------------------
*/
.home-slide {
	min-height: 600px;
}

.home-slider .slick-list {
	width: 100%;
}

.home-slider .home-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
}
.home-slider .home-slide.image-left {
	background-position: left center!important;
}
.home-slider .home-slide.image-right {
	background-position: right center!important;
}

.no-js .home-slider .home-slide {
	display: none;
}

.no-js .home-slider .home-slide:first-child {
	display: flex;
}

/* Home Slick Slider arrows */
.slick-arrow-type-1 {
	position: relative;
}
.slick-arrow-type-1 .slick-arrow {
    text-indent: -9999px;
    background-color: #fff;
    width: 40px;
    height: 40px;
	border-radius: 50%;
	position: absolute;
	bottom: 30px;
	z-index: 10;
}
.slick-arrow-type-1 .slick-next {
	right: 30px;
}
.slick-arrow-type-1 .slick-prev {
	right: 80px;
}
.slick-arrow-type-1 .slick-arrow:after {
	content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 23px;
    background-repeat: no-repeat;
    background-size: contain;
	background-position: center center;
}
.slick-arrow-type-1 .slick-next:after {
	background-image: url(/images/style/homestead/slider-right.png);
}
.slick-arrow-type-1 .slick-prev:after {
	background-image: url(/images/style/homestead/slider-left.png);
}
.slick-arrow-type-1 .slick-disabled {}

/* Home Slick Slider dots */
.slick-arrow-type-1 .slick-dots {}
.slick-arrow-type-1 .slick-dots li {}
.slick-arrow-type-1 .slick-dots .slick-active button {}
.slick-arrow-type-1 .slick-dots button {}


/*
|--------------------------------------------------------------------------
| Home > Header
|--------------------------------------------------------------------------
*/
.home-head {
    padding: 0 3px;
    max-width: 2400px;
    margin: 0 auto;
}

.home-top-banners {
	width: 600px;
	display: flex;
    flex-wrap: wrap;
    padding-left: 3px;
}
.home-top-banner {
	height: 50%;
	display: flex;
}
.home-top-banner img {
	width: 100%;
	height: 100%;
}
img.home-slider__mobile {
	display: none;
}
.home-slider {
	height: 600px;
	min-width: 700px;
    flex: 1;
	overflow: hidden;
}

.home-slide--inner-container {
	position: absolute;
    bottom: -30px;
    left: 40px;
    width: 870px;
    max-width: 80%;
    background: #8cc640;
    transform: skewY(1deg);
	padding: 25px 30px 60px 30px;
	text-align: left;
	z-index: 2;
}

.home-slide--inner {
	display: block;
	transform: skewY(-1deg);
}

.home-slide--title {
	font-size: 42px;
	font-weight: 700;
	line-height: 44px;
}

.home-slide--subtitle {
	font-size: 24px;
	margin-bottom: 10px;
}

.usp-container {
	margin-top: 40px;
    margin-bottom: 40px;
}
.usp-container .usp {
	display: flex;
	font-size: 16px;
	line-height:18px;
	font-weight: 600;
	text-transform: uppercase;
	color: #1c1c1c;
	padding: 10px 35px;
	max-height: 45px;
}
.usp-container .usp img {
	width: auto;
	max-height: 32px;
}
.usp-container .usp span {
	margin-left: 10px;
}
.usp-container .usp:not(:last-child) {
	border-right: 1px solid #cecece;
}
.usp-container.slick-slider .slick-arrow {
	border: 1px solid #cecece;
	top: 50%;
	transform: translateY(-50%);
}
.usp-container.slick-slider .slick-arrow.slick-prev {
	left: 20px;
}
.usp-container.slick-slider .slick-arrow.slick-next {
	right: 20px;
}

.cat-features {
	width: 100%;
}

.cat-features > div > a {
	display: block;
}
.cat-features > div > a:hover {
	opacity: .85;
}
.cat-features .cat-feature {
	/* min-height: 320px; */
	padding-bottom: 55.59%;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}

.cat-features .segment-25 .cat-feature {
	padding-bottom: 103.23%;
}

.cat-features .cat-feature.featureSquare img {
	display: none;
}
.cat-features .cat-feature .cat-feature-inner {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgb(9, 9, 9, 0.3);
	flex: 1;
}
.vehicle-listing-page .cat-features .cat-feature .cat-feature-inner, .listing-page .cat-features .cat-feature .cat-feature-inner {
	position: absolute;
	width: 100%;
	height: 100%;
}
.cat-feature-inner span.cat-feature-title {
	font-weight: 700;
	font-size: 36px;
	line-height: 38px;
}
.cat-feature-inner span:not(.cat-feature-title) {
	font-size: 18px;
}
.cat-feature-inner .button {
	pointer-events: none;
}
.cat-features > div:nth-of-type(1) > a .button, .cat-features > div:nth-of-type(4) > a .button, .cat-features > div:nth-of-type(5) > a .button {
	background-color: #8dc641;
}
.cat-features > div:nth-of-type(2) > a .button, .cat-features > div:nth-of-type(6) > a .button {
	background-color: #2289c5;
}
.cat-features > div:nth-of-type(3) > a .button {
	background-color: #d73938;
}



.light-weight-form .input {
	margin-bottom: 5px;
}
.light-weight-form .input label {
	position: absolute;
	top: 6px;
	left: 12px;
	font-size: 12px;
	z-index: 1;
}
.light-weight-form .input input[type="text"], .light-weight-form input[type="checkbox"], .light-weight-form textarea, .light-weight-form .input .select2-selection {
	padding: 22px 12px 6px 12px;
	color: #222;
	border-width: 1px;
	border-color: #cecece;
}
.light-weight-form .input input[type="text"], .light-weight-form .input .select2, .light-weight-form .input .select2-selection {
	height: 50px;
}
.light-weight-form .input .select2-selection {
	padding-left: 4px;
}
.light-weight-form input[type="checkbox"] {
	border-radius: 0;
	border-color: #cecece;
}
.light-weight-form .input textarea {

}
.light-weight-form .styled-form-submit {
	padding: 0;
	border-radius: 20px;
}
.light-weight-form .styled-form-submit input[type="submit"] {
	background: transparent;
	padding: 5px 12px;
	text-transform: uppercase;
	color: #fff;
}
.light-weight-form .styled-form-submit.button-sfs-green {
	background-color: #8dc641;
}
.light-weight-form .styled-form-submit.button-sfs-green:hover {
	background-color: #6e9c31;
}

/*
|--------------------------------------------------------------------------
| Contact Us
|--------------------------------------------------------------------------
*/
.contact-page-form {
	width: 420px;
	margin-top: 20px;
}

.contact-page-form .input {
	margin-bottom: 5px;
}
.contact-page-form .input .checkbox {
	border-color: #ffffff;
	border-radius: 0;
	margin-top: 2px;
	margin-right: 6px;
}

.contact-page-form > form#contact_us {
	position: relative;
}
.contact-page-form > form#contact_us > .message-error.error-msg-js {
	max-height: 48px;
	margin-bottom: -48px;
	z-index: 1;
}

.contact-info-box:not(:first-child) {
	margin-top: 30px;
}
.contact-info-box svg {
	min-width: 24px;
    width: 24px;
    margin-right: 10px;
}
.contact-info-box p {
	margin: 0;
}
.contact-info-box a {
	color: #222;
}
.content-w-sidebar .get-directions-lg {
	height: 600px;
}
.content-w-sidebar .get-directions-lg .directions-box {
	height: auto;
	top: 10px;
	right: 10px;
	border-radius: 0;
	transform: translateY(0);
}

/*
|--------------------------------------------------------------------------
| Template > Split Header
|--------------------------------------------------------------------------
*/
.split-header {
	padding: 3px;
}

.split-header-right {
	padding: 73.5px;
	width: 50%;
}

.split-header-right > div {
	display: table;
    max-width: 690px;
}

.split-header-right > h1 {
    margin: 0 0 15px 0;
}
.split-header-right > h1, .page-header > h1 {
	font-size: 48px;
    font-weight: 700;
	line-height: 40px;
	letter-spacing: -1px;
}

.split-header-right > p {
	font-size: 21px;
	font-weight: 300;
	line-height: 23px;
	margin: 0;
}
.split-header-right .page-header-buttons .button {
	margin: 20px 10px 0 0;
}
.split-header-right .page-header-buttons .button:last-of-type {
	margin-right: 0;
}
.split-header .header-content-image img {
	max-height: 90px;
	margin-top: -15px;
}

.split-header .split-slide img {
	width: 100%;
	min-width: 800px;
}
.split-header .split-image-cover:first-of-type {
	margin-right: 3px;
}
.split-header .split-header-left img {
	visibility: hidden;
	height: 100%;
}
.split-header .split-image-cover {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

/*
|--------------------------------------------------------------------------
| Template > Split Content
|--------------------------------------------------------------------------
*/
.split-content-half {
	min-width: 50%;
}
.split-content-half a {
	font-weight: 600;
}
.split-content-half h2 {
	font-size: 28px;
}
.split-content-half h3 {
	font-size: 24px;
}
.split-content-half h4 {
	font-size: 21px;
}

.split-content-half .video {
    flex: 1;
    height: 310px;
    width: 100%;
}
.split-content-half .video iframe {
    height: 100%;
    width: 100%;
}
.split-content-half .logo-links img {
	padding: 10px 15px;
}

.sch-left h2, .sch-left h3, .sch-left h4 {
	margin-bottom: 5px;
}
.sch-left p {
	margin-bottom: 20px;
}
.sch-left ul {
	list-style-image: url(/images/style/homestead/bullet-circle.png);
	color: #222;
	font-weight: 600;
}
.sch-left iframe {
	margin-top: 20px;
}

.sch-right {
	padding-left: 70px;
}
.sch-right h2, .sch-right h3, .sch-right h4 {
	text-align: center;
}
.sch-right table {
	width: 100%;
	border: 1px solid #cecece;
	color: #222;
	background: #fff;
}
.sch-right:not(.sch-accommodation) table {
	table-layout: fixed;
}
.sch-right table tr:nth-of-type(odd) {
	background-color: #f1f1f1;
}
.sch-right table th {
	padding: 4px 15px;
	font-size: 12px;
}
.sch-right table td {
	padding: 10px 15px;
}
.sch-right.sch-accommodation table tr td:first-of-type {
	font-weight: 600;
}
.sch-right > h3:not(:first-child) {
	margin-top: 20px;
}
.sch-right > p {
	font-size: 12px;
	margin-top: 10px;
}

.contact-half-box:not(:first-child), .logo-links:not(:first-child), .reasons-block:not(:first-child) {
	margin-top: 30px;
}
.contact-half-box h3 {
	border-bottom: 1px solid #cecece;
	padding: 15px;
	margin: 0;
}
.contact-half-box .contact-half-box-inner {
	padding: 30px;
	color: #222;
}
.contact-half-box-inner .contact-half-item:not(:last-of-type) {
	margin-bottom: 15px;
}
.contact-half-box-inner svg {
	width: 20px;
	margin-right: 12px;
}

.reasons-block {
	border-radius: 5px;
}
.reasons-block h3 {
	border-bottom: 1px solid rgb(34,34,34,.3);
	padding: 22px;
	margin: 0;
}
.reasons-block-inner {
	padding: 30px;
	font-size: 16px;
}

.workshop-list-item:not(:last-of-type) {
	border-bottom: 1px solid #cecece;
}
.workshop-list-image {
	width: 320px;
	height: 240px;
}


/*
|--------------------------------------------------------------------------
| Template > News and Customer Service Pages
|--------------------------------------------------------------------------
*/
.image-header-background {
	background-repeat: no-repeat;
	background-size: 100%;
}
.page-small-sidebar {
	min-width: 270px;
	max-width: 270px;
}
.page-small-sidebar .sidebar-menu-block-items {
	padding: 15px 0;
	border-top: 1px solid rgb(255,255,255,0.25);
}
.page-small-sidebar h2 {
	font-size: 23px;
    padding: 15px 20px;
	margin: 0;
	position: relative;
}
.page-small-sidebar h2.sidebar-menu-title-w-icon {
	padding-left: 65px;
}
.page-small-sidebar h2.sidebar-menu-title-w-icon svg {
	position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    max-height: 30px;
    max-width: 30px;
}
.page-small-sidebar h2 svg.mobile-toggle-arrow {
	display: none;
}
.page-small-sidebar .sidebar-menu-block > .sidebar-menu-item {
	display: flex;
	flex-direction: row;
	align-content: center;
}
.page-small-sidebar .sidebar-menu-block > .sidebar-menu-item:first-of-type {
	margin-top: 20px;
}
.page-small-sidebar .sidebar-menu-block > .sidebar-menu-item:not(:last-of-type) {
	margin-bottom:15px;
}
.page-small-sidebar .sidebar-menu-block > .sidebar-menu-item svg {
	max-height: 24px;
    max-width: 26px;
    flex: 2;
    flex-grow: 1;
}
.sidebar-menu-block-items a {
	color: #fff;
    flex: 1;
    display: flex;
    align-items: center;
    margin-left: 55px;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: -.5px;
	margin: 5px 5px 5px 55px;
}
.sidebar-menu-block-items .sidebar-menu-item.menu-item-mini a {
	margin-left: 0;
	padding: 5px 25px;
	font-size: 14px;
	line-height: 16px;
	font-weight: 300;
}
.page-small-sidebar .sidebar-images > * {
	display: flex;
	margin-bottom: 15px;
	padding: 0;
	border-radius: 5px;
	overflow: hidden;
}

.content-w-sidebar h1 {
	margin-bottom: 20px;
}

.page-scroller {
	display: inline-block;
}
.page-scroller > div {
	float: left;
	width: 33.333333%;
}
.page-scroller > div a {
	display: block;
	font-weight: 400;
}

.sidebar-menu-item {
	position: relative;
}
.sidebar-menu-item:not(.menu-item-mini)::before {
	content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 25px;
    height: 24px;
    left: 20px;
}
.sidebar-menu-item.cs-sidebar-icon-12::before {
	width: 30px;
    left: 17px;
}

.cs-sidebar-icon-6::before {
	background-image: url(/images/style/homestead/icon-contact.svg);
}
.cs-sidebar-icon-12::before {
	background-image: url(/images/style/homestead/icon-reviews.svg);
}
.cs-sidebar-icon-13::before {
	background-image: url(/images/style/homestead/icon-faq.svg);
}
.cs-sidebar-icon-49::before {
	background-image: url(/images/style/homestead/icon-buyers-guide.svg);
}
.cs-sidebar-icon-982::before {
	background-image: url(/images/style/homestead/icon-delivery.svg);
}
.cs-sidebar-icon-983::before {
	background-image: url(/images/style/homestead/icon-returns.svg);
}
.cs-sidebar-icon-985::before {
	background-image: url(/images/style/homestead/icon-privacy.svg);
}
.cs-sidebar-icon-986::before {
	background-image: url(/images/style/homestead/icon-basket.svg);
}
.cs-sidebar-icon-987::before {
	background-image: url(/images/style/homestead/icon-international.svg);
}
.article-block {
	min-height: 155px;
	padding: 3px;
}
.article-block.article-block-lead {
	margin-top: 40px;
}
.article-block:not(:last-of-type) {
	margin-bottom: 10px;
}
.article-block .article-block-img {
	width: 213px;
	height: 100%;
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center;
}
.article-block:not(.article-block-lead) .article-block-img {
	max-height: 180px;
}
.article-block .article-block-img img {
	visibility: hidden;
}
.article-block .article-block-title {
	font-size: 18px;
	line-height: 20px;
	font-weight: 700;
	margin-bottom: 10px;
	letter-spacing: -1px;
	color: #222;
}
.article-block .article-block-info-text p {
	font-weight: 400!important;
	font-size: 12px;
	line-height: 14px;
}
.article-block .article-block-bottom .button {
	min-width: 130px;
}
.article-block .article-block-bottom span {
	font-size: 11px;
	line-height: 14px;
	text-transform: uppercase;
}
.article-block.article-block-lead {
	min-height: 260px;
}
.article-block.article-block-lead .article-block-title {
	font-size: 30px;
	line-height: 32px;
	margin-bottom: 15px;
}
.article-block.article-block-lead .article-block-info-text p {
	font-size: 13px;
	line-height: 15px;
}
.article-block.article-block-lead .article-block-img {
	width: 334px;
}


.news-slider.slick-slider {
	display: grid;
	margin-bottom: 27px;
}
.news-slider.slick-slider .news-slide.slick-slide {
	display: flex;
}
.article-page-content h2, .article-page-content h3, .article-page-content h4, .article-page-content h5 {
	letter-spacing: -1px;
	margin-top: 20px;
}
.article-page-content h2 {
	font-size: 24px;
}
.article-page-content h3 {
	font-size: 21px;
}
.article-page-content h4, .article-page-content h5 {
	font-size: 18px;
}
.lg-article-outer-title {
	font-size: 30px;
	font-weight: bold;
}
.lg-article-outer-title span {
	font-weight: 400;
}
.article-page-content .video iframe.youtube {
	width: 100%;
	height: 450px;
	margin: 20px 0 20px 0;
}
.article-page-top-info {
	align-items: center;
	border: 1px solid #cecece;
	border-width: 1px 0;
	margin: 10px 0 15px 0;
	padding: 10px 0;
}
.article-page-top-info .breadcrumb-share {
	min-width: 140px;
}


.article-page-comments .input {
	margin-bottom: 0;
}
.article-page-comments .flex-col .input:first-child:first-of-type {
	margin-bottom: 5px;
}
.article-page-comments .input textarea {
	min-height: 103px;
}
.article-page-comments .comment-list > .comment {
	border-bottom: 2px solid #f5f5f6;
}

.article-page-comments .comment-overflow-toggle > span  {
	padding-right: 20px;
	background-image: url(/images/style/homestead/arrow-d-green.svg);
	background-size: auto 8px;
	background-position: right center;
	background-repeat: no-repeat;
	cursor: pointer;
}
.article-page-comments .comment-overflow-toggle.open > span  {
	background-image: url(/images/style/homestead/arrow-u-green.svg);
}
.article-page-comments .comment-overflow-toggle > span:hover {
	opacity: .7;
}

.article-pdf-download .apdfd-title {
	font-size: 18px;
	line-height: 18px;
}

.comments-form > .error-msg-js {
	margin-bottom: -48px;
	max-height: 48px;
	z-index: 1;
}


/*
|--------------------------------------------------------------------------
| Template > Content Row
|--------------------------------------------------------------------------
*/
.content-row {
	padding-bottom: 35px;
}
.content-row:not(:last-of-type) {
	border-bottom: 1px solid #cecece;
	margin-bottom: 25px;
}
.content-row h2 {
	font-size: 28px;
}
.content-row h3 {
	font-size: 24px;
}
.content-row h4 {
	font-size: 18px;
}
.content-row table {
	border: 1px solid #cecece;
	color: #222;
}
.content-row table tr:nth-of-type(odd) {
	background: #f5f5f6;
}
.content-row-text table td {
    padding: 10px 15px;
	vertical-align: top;
	min-width: 200px;
}

.content-row ul.font-red {
	list-style-image: url(/images/style/homestead/bullet-circle-red.png);
}
/*
|--------------------------------------------------------------------------
| Template > Image Cover
|--------------------------------------------------------------------------
*/
.image-cover {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.image-cover img {
	visibility: hidden;
}

/*
|--------------------------------------------------------------------------
| Template > Review Blocks
|--------------------------------------------------------------------------
*/
.review-list .review-comment {
	padding: 30px 70px;
	margin-top: 10px;
	position: relative;
	font-weight: 300;
}
.review-list .review-comment p:not(:last-of-type) {
	margin-bottom: 10px;
}
.review-list .review-comment p:last-of-type strong {
	text-transform: uppercase;
}
.review-list .review-comment::before, .review-list .review-comment::after {
	content: '';
	background-image: url(/images/style/homestead/quote.svg);
	background-repeat: no-repeat;
	position: absolute;
	height: 30px;
	width: 30px;
}
.review-list .review-comment::before {
	left: 20px;
    top: 25px;
}
.review-list .review-comment::after {
	right: 20px;
	bottom: 25px;
	transform: rotate(180deg);
}


/*
|--------------------------------------------------------------------------
| Template > Content Block
|--------------------------------------------------------------------------
*/
.content-block .block-subtitle {
	font-size: 30px;
	line-height: 32px;
	font-weight: 700;
	color: #222;
	margin-bottom: 15px;
}

/*
|--------------------------------------------------------------------------
| Template > Facility
|--------------------------------------------------------------------------
*/
.facility-block .facility-item {
	float: left;
	width: 33.3333333%;
}
.facility-block .facility-item .facility-item-inner {
	width: 100%;
	min-height: 55px;
	padding: 0 15px;
	line-height: 15px;
	display: flex;
	align-items: center;
}


/*
|--------------------------------------------------------------------------
| Template > Slick Slider > Green Round Arrows
|--------------------------------------------------------------------------
*/
.slick-gallery .slick-arrow, .slick-arrow-gr .slick-arrow {
    text-indent: -9999px;
    background-color: #8cc640;
    width: 50px;
    height: 50px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
	z-index: 10;
}
.slick-gallery .slick-next, .slick-arrow-gr .slick-next {
	right: 30px;
}
.slick-gallery .slick-prev, .slick-arrow-gr .slick-prev {
	left: 30px;
}
.slick-gallery .slick-arrow:after, .slick-arrow-gr .slick-arrow:after {
	content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 26px;
    background-repeat: no-repeat;
    background-size: contain;
	background-position: center center;
}
.slick-gallery .slick-next:after, .slick-arrow-gr .slick-next:after {
	background-image: url(/images/style/homestead/arrow-r-white.svg);
}
.slick-gallery .slick-prev:after, .slick-arrow-gr .slick-prev:after {
	background-image: url(/images/style/homestead/arrow-l-white.svg);
}

/*
|--------------------------------------------------------------------------
| Home > Brands Slider
|--------------------------------------------------------------------------
*/
div#brands-slider {
	padding-top: 50px;
	margin-top: 50px;
	border-top: 1px solid #e1e1e1;
}
.brands-slider-outer {
	position: relative;
}
.brands-slider-outer .brands-slider-title {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 36px;
	line-height: .95;
	color: #222;
}
.brands-slider.slick-arrow-gr .slick-prev {
	left: -80px;
}
.brands-slider.slick-arrow-gr .slick-next {
	right: -80px;
}
.brands-slider .slick-list {
	margin-left: 150px;
}

/*
|--------------------------------------------------------------------------
| Home > Coloured Blocks
|--------------------------------------------------------------------------
*/
.coloured-content-blocks {
	margin-top: 50px;
}
.coloured-content-blocks .ccb-side-img {
	height: 100%;
	width: 320px;
	background-size: cover;
	background-position: center;
}
.coloured-content-blocks .ccb-side-imgs {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.coloured-content-blocks .ccb-side-imgs--img {
	width: 320px;
	max-width: 100%;
	background-size: cover;
	background-position: center;
}
.coloured-content-blocks .ccb-side-img img, .coloured-content-blocks .ccb-side-imgs img {
	visibility: hidden;
}
.coloured-content-blocks .ccb-details {
	padding: 40px;
}
.coloured-content-blocks .ccb-details > img:first-of-type {
	max-height: 95px;
	max-width: 254px;
	margin-bottom: 15px;
}
.ccb-details--title {
	font-size: 25px;
	line-height: 28px;
}
.coloured-content-blocks .ccb-bullets {
	line-height: 14px;
	margin-top: 10px;
}
.coloured-content-blocks .ccb-bullets li {
	margin-bottom: 8px;
}
.coloured-content-blocks .ccb-buttons .button:not(:last-of-type) {
	margin-right: 10px;
}

/*
|--------------------------------------------------------------------------
| Home > Coloured Blocks
|--------------------------------------------------------------------------
*/
.mini-article-block {
	width: 100%;
}
.mini-article-block .mab-img {
	min-width: 204px;
	background-size: cover;
	background-position: center;
}
.mini-article-block .mab-img img {
	visibility: hidden;
}
.mab-inner-details {
    padding: 20px;
}
.mab-inner-details p {
	font-weight: normal!important;
	margin: 0;
}


/*
|--------------------------------------------------------------------------
| Home > Get Directions
|--------------------------------------------------------------------------
*/

.get-directions-lg {
	display: flex;
	width: 100%;
	height: 400px;
}
.get-directions-lg:not(:last-child) {
	margin-bottom: 30px;
}
.get-directions-lg, .get-directions-inner {
	position: relative;
}
.get-directions-lg .get-directions-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
	padding: 20px 60px;
    width: 100%;
}
.get-directions-lg .directions-box {
	width: 390px;
}
.get-directions-lg .directions-box--content > *:not(:last-child) {
    margin-bottom: 16px;
}
.get-directions-lg .directions-box > div {
	background-color: #D73938;
	padding: 12px;
}
.get-directions-lg .directions-box > div:not(:last-child) {
	margin-bottom: 10px;
}
.get-directions-lg .directions-box svg {
	width: 24px;
	margin-right: 10px;
	margin-top: 2px;
}

.directions-box-search p {
	margin-bottom: 8px;
}
.directions-box-search input {
	height: 38px;
	padding: 0 8px;
	border-radius: 4px 0 0 4px;
	font-size: 12px;
}
.directions-box-search input[type="submit"] {
	width: 38px; 
	margin-left: 1px;
	border-radius: 0 4px 4px 0;
	background: 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="M13.4526 11.7014H12.6626L12.3826 11.4314C13.0076 10.7054 13.4643 9.85016 13.7202 8.927C13.976 8.00385 14.0247 7.03554 13.8626 6.09139C13.3926 3.31139 11.0726 1.09139 8.27261 0.751391C7.28823 0.626857 6.2884 0.729162 5.34964 1.05048C4.41087 1.3718 3.55806 1.90361 2.85644 2.60522C2.15483 3.30684 1.62302 4.15965 1.3017 5.09842C0.980383 6.03718 0.878077 7.03701 1.00261 8.02139C1.34261 10.8214 3.56261 13.1414 6.34261 13.6114C7.28677 13.7734 8.25507 13.7248 9.17823 13.4689C10.1014 13.2131 10.9566 12.7563 11.6826 12.1314L11.9526 12.4114V13.2014L16.2026 17.4514C16.6126 17.8614 17.2826 17.8614 17.6926 17.4514C18.1026 17.0414 18.1026 16.3714 17.6926 15.9614L13.4526 11.7014ZM7.45261 11.7014C4.96261 11.7014 2.95261 9.69139 2.95261 7.20139C2.95261 4.71139 4.96261 2.70139 7.45261 2.70139C9.94261 2.70139 11.9526 4.71139 11.9526 7.20139C11.9526 9.69139 9.94261 11.7014 7.45261 11.7014Z" fill="white"/></svg>') no-repeat center;
	background-color: #8cc640;
	color: #fff;
	font-weight: 600;
	letter-spacing: 1px;
	transition: ease-in-out .2s;
	overflow: hidden;
	text-indent: -9999px;
}
.directions-box-search input[type="submit"]:hover {
	background-color: #75a538;
}

/*
|--------------------------------------------------------------------------
| Home > Bottom
|--------------------------------------------------------------------------
*/
.home-welcome h1 {
	font-size: 21px;
	line-height: 26px;
	max-width: 700px;
	margin-bottom: 18px;
}
.home-welcome h3 {
	font-size:19px;
}
.home-welcome > img {
	width: 411px;
	height: 310px;
	margin-left: 80px;
}
.home-welcome__title {
	font-size: 32px;
}

.home-welcome__action {
	margin: 12px 0 0 0;
}



/*
|--------------------------------------------------------------------------
| CMS > Template
|--------------------------------------------------------------------------
*/
.page-subtitle {
	text-align: center;
	font-size: 21px;
	color: #01c4f4;
}



/*
|--------------------------------------------------------------------------
| CMS > Template >
|--------------------------------------------------------------------------
*/
.category-list {
	text-align: center;
	font-size: 21px;
	background-color: rgba(0,0,0,0.08);
	padding: 10px 0;
}

.category-list__item {
	padding: 10px 0;
}

.category-list__link {
	font-size: 18px;
}



/*
|--------------------------------------------------------------------------
| CMS > Contact Us
|--------------------------------------------------------------------------
*/



/*
|--------------------------------------------------------------------------
| CMS > FAQ
|--------------------------------------------------------------------------
*/
.dd-section {
	padding: 40px 0 0 0;
}

.dd-section--title {
	font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #cecece;
}

li.dd-block {
	margin: 0 0 4px;
    border-bottom: 1px solid #cecece;
}

.dd-title {
	position: relative;
    font-size: 16px;
    color: #222;
    font-weight: 600;
    padding: 18px 0px;
    cursor: pointer;
}

.dd-title:after {
	content: '';
	position: absolute;
	background-image: url(/images/style/homestead/arrow-d-dark.svg);
	background-repeat: no-repeat;
	background-position: center;
	top: 50%;
	right: 28px;
	transform: translateY(-50%);
	height: 18px;
    width: 18px;
}

.dd-open:after {
	-webkit-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg);
}

.dd-text {
	padding: 0 20px 20px 0;
	font-size: 12px;
}

.dd-text p {
	font-size: 12px;
}

.dd-title span {
	display: block;
	padding: 0 60px 0 0;
}



/*
|--------------------------------------------------------------------------
| Shop > Category
|--------------------------------------------------------------------------
*/
.category-main {
	flex: 1;
}

.shop-sidebar {
	max-width: 270px;
}
.sidebar {
	min-width: 270px;
	max-width: 270px;
	flex-shrink: 0;
}

.sidebar__segment {
	padding: 12px 15px;
}

.sidebar-content {
	overflow: hidden;
	width: 100%;
}

/* Category grid */
.category-grid-outer {
	position: relative;
	padding: 20px 30px 25px 45px;
	background: #fff;
	border-top: 1px solid #cecece;
}
.category-grid {
	display: flex;
    flex-wrap: wrap;
	margin-bottom: 0px;
	overflow: hidden;
	transition: ease-in-out .5s;
}
.category-grid.show_all_cats {
	max-height: 20000px!important;
	transition: ease-in-out 3s;
}
.category-grid-block {
	width: 12.5%;
	float: left;
}
.category-grid-block a {
	display: flex;
    flex-direction: column;
	text-align: center;
	font-size: 13px;
	line-height: 14px;
	height: 100%;
}
.category-grid-img {
	width: 100%;
	height: 128px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.category-grid-name {
	color: #fff;
	background: #2289c5;
	padding: 5px;
    align-content: center;
    display: grid;
    min-height: 30px;
    flex: 1;
}
.category-grid-toggle {
	padding: 10px;
	margin-top: -15px;
	margin-bottom: -25px;
}
.category-grid-toggle.hide {
	padding: 8px;
}
.category-grid-toggle.hide > * {
    display: none;
}
.category-grid-toggle .of-toggle {
	cursor: pointer;
}
.category-grid-toggle .of-toggle svg {
	margin-left: 5px;
}
.category-grid-toggle .of-toggle.of-open svg {
	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;
	background: #161616;
	margin-bottom: 2px;
	font-size: 12px;
}
.sidebar__segment .sidebar--segment {
	border-bottom: 2px solid #1e1e1e;
}

.filters__title {
	height: 50px;
	padding: 0 25px;
	font-weight: 600;
	color: #8bc541;
	font-size: 16px;
}

.filters__title svg {
	flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

#mbl-filters, .filter-title {
	padding: 10px 25px;
	cursor: pointer;
	text-transform: uppercase;
}

#mbl-filters span, .filter-title span {
	display: block;
	position: relative;
	flex: 1;
	line-height: 12px;
	font-weight: 600;
}

.filter-title svg {
	width: 11px;
	height: 7px;
	flex-shrink: 0;
	fill: #666666;
}

.filter-open .filter-title svg {
	transform: rotate(-180deg)
}

.filter ul {
	padding: 0 25px;
}

.filter--links a {
	position: relative;
	padding: 5px 0 4px 25px;
	font-weight: 300;
	color: #fff;
}
.filter--links a:hover {
	color: #2289c5;
}

.filter--links a:before {
	content: '';
	position: absolute;
	height: 14px;
	width: 14px;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	background-color: #fff;
}

.filter--links .filter-selected a {
	color: #8cc640;
}

.filter--links .filter-selected a:before {
	background: url(/images/style/homestead/icon-tick-2x-green.png) no-repeat center center #ffffff;
    background-size: 10px 8px;
    border: none;
}

.filter--links .filter-expand {
	padding: 0 25px;
}
.filter--links .list-reset:last-child, .filter-colors .list-reset:last-child, .filter--links .filter-expand:last-child {
	padding-bottom: 10px;
}

#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: #01c4f4;
	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;
	max-width: 60px;
}
.filter-swatch:not(.sel) {
	max-width: 26px;
}

.filter-swatch--inner {
	position: relative;
	padding: 1px;
	height: 24px;
	border-radius: 5px;
	transition: background 300ms ease;
}

.filter-swatch.sel .filter-swatch--inner {
	background-color: #1e1e1e;
	background: url(/images/style/homestead/icon-swatch-tick.png) no-repeat center right 4px #1e1e1e;
	background-size: 14px;
}

.filter-swatch--swatch {
	position: absolute;
	top: 50%;
	left: 2px;
	bottom: 2px;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	background-color: #e7e7e7;
	border-radius: 4px;
	border: 2px solid rgba(0,0,0,.2);
}


.filters--clear {
    padding: 8px 25px 7px;
    background-color: #d73938;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
	transition: ease-in-out .2s;
}
.filters--clear svg {
    margin-left: 6px;
	margin-bottom: 2px;
}
.filters--clear svg path {
    fill: #FFF;
}
.filters--clear:hover {
	background-color: #c33534;
}

/*
|--------------------------------------------------------------------------
| Shop > Navtrail
|--------------------------------------------------------------------------
*/
.shop--navtrail {

}

.sort-by {
	position: relative;
	background: #fff;
	font-size: 12px;
}

.sort-by label {
	position: absolute;
    left: 7px;
}

.sort-by .select2 {
	width: auto;
	padding: 2px 45px 2px 47px;
}
.sort-by.per-page .select2 {
	padding-left: 57px;
}
.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: 8px;
	width: 18px;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
	background: url(/images/style/homestead/arrow-d-dark.svg) no-repeat center center;
}

.sort-by .select2-selection__arrow b {
	display: none;
}

.sort-by .select2-container--default .select2-selection--single .select2-selection__rendered {
	font-weight: 600;
	color: #222;
}

.sort-by .select2-container--default .select2-selection--single {
	background-color: transparent;
}



/*
|--------------------------------------------------------------------------
| Shop > Category Page > Category Display
|--------------------------------------------------------------------------
*/
.product-grid {
	max-width: 100%;
}

.product-grid:not(.slick-slider) {
	margin: 0 0 -15px -15px;
	max-width: unset;
	min-width: 100%;
}
.product-grid:not(.slick-slider) .product-grid--item {
	padding: 0 0 15px 15px;
}

.product-inner {
    height: 100%;
}

.prod_list:not(.slick-slide) .product-image__link,
.prod_list:not(.slick-slide) .product-inner--image img {
	display: block;
	width: 100%;
}
form#form_prodlist_1 {
    display: flex;
    width: 100%;
}
.product-inner--image {
	border-bottom: 1px solid #e9e9e9;
}
.product-inner--image img {
	max-width: 270px;
}

.product-grid--item-inner {
	position: relative;
	background-color: #fff;
	overflow: hidden;
}

.product-inner--info, .product-inner-row {
	padding: 13px 15px;
}
.product-inner-row {
	border-top: 1px solid #cecece;
	padding: 8px 15px;
}

.product-inner--titles {
	padding-bottom: 10px;
}
a.product-inner--title {
	font-weight: 700;
	color: #222;
	line-height: 16px;
}

.product-inner--title,
.product-inner--subtitle,
.product-inner--row {
	padding: 0 0 8px 0;
}

.product-inner--subtitle {
	font-size: 12px;
}

.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;
}

.product-price-web {
	font-size: 15px;
}

.product-price-rrp {
	font-size: 12px;
	line-height: 12px;
}

.on-offer-badge {
	position: absolute;
	top: 10px; left: 10px;
	width: 56px;
	height: 56px;
	border-radius: 28px;
	background-color: #01c4f4;
	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 > Product Listing > Listing Related Slider
|--------------------------------------------------------------------------
*/

.product-grid.slick-slider {
	display: grid;
	position: relative;
}

.product-grid.slick-slider .slick-list {
	margin: 0 20px;
	z-index: 1;
}
.product-grid.slick-slider .slick-arrow {
	position: absolute;
	height: 100%;
	top: 50%;
	transform: translateY(-50%);
	background: #d73938;
	text-indent: -1000px;
	height: 100%;
	width: 20px;
	overflow: hidden;
}
.product-grid.slick-slider .slick-arrow::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	width: 15px;
	height: 15px;
	background-size: auto 100%;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 2;
}
.product-grid.slick-slider .slick-arrow.slick-prev {
	left: 0;
}
.product-grid.slick-slider .slick-arrow.slick-prev::after {
	background-image: url(/images/style/homestead/arrow-l-white.svg);
}
.product-grid.slick-slider .slick-arrow.slick-next {
	right: 0;
}
.product-grid.slick-slider .slick-arrow.slick-next::after {
	background-image: url(/images/style/homestead/arrow-r-white.svg);
}
.product-grid.slick-slider .product-inner {
	position: relative;
	width: 100%;
}
.product-grid.slick-slider .product-inner > div {
	display: flex;
}
.product-grid.slick-slider .product-inner--image {
	min-width: 125px;
	max-width: 125px;
}
.product-grid.slick-slider .product-image__link {
	display: block;
	max-width: 125px;
}
.product-grid--item.slick-slide {
	display: flex;
	max-width: 100%;
}
.product-grid.slick-slider .product-grid--item-inner {
	width: 100%;
}
.product-grid.slick-slider .product-inner-row {
	flex: 1;
}
.product-grid.slick-slider .product-inner .product-inner-row {
	position: absolute;
	bottom: 6px;
	left: 0;
	padding: 0 15px 0 135px;
	width: 100%;
	border: 0;
}
.product-grid.slick-slider .product-inner .product-inner-row .product-price {
	margin-left: 5px;
}
.product-grid.slick-slider .product--options {
	margin-right: 5px;
}
.product-grid.slick-slider .product--options .input, .product-grid.slick-slider .prod_button {
	margin-bottom: 5px;
	display: inline-table;
	align-self: flex-end;
}
.product-grid.slick-slider .product--options .select2 {
	margin-right: 5px;
	border: 1px solid #aeaeae;
}
.product-grid.slick-slider .product--options .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding: 0 25px 0 45px;
	font-weight: 800;
}

.listing-page .select2-container--default .select2-selection--single .select2-selection__arrow {
	background-image: url(/images/style/homestead/arrow-d-dark.svg);
	background-repeat: no-repeat;
	background-size: 16px;
	background-position: center;
}
.listing-page .select2-container--default .select2-selection--single .select2-selection__arrow b {
	display: none;
}
.product-grid.slick-slider .product--options .input-label {
	top: 3px;
	font-weight: 600;
}

.listing-slider.listing-slider--single, .listing-slider--single .slick-track, .listing-slider--single.product-grid--item {
	width: 100%;
}
.listing-slider--single .slick-list {
	margin: 0!important;
}


.listing-price-match {
	padding: 12px 15px;
	position: relative;
	font-size: 18px;
	cursor: pointer;
}
.listing-price-match svg {
	height: 20px;
	margin-right: 10px;
}
.listing-main-details {
	width: 100%;
	padding: 50px 0 100px 0;
}
.listing-main-details .content h2, .listing-main-details .content h3, .listing-main-details .content h4, .listing-main-details .content h5 {
	letter-spacing: -1px;
	margin-top: 20px;
}
.listing-main-details .content h2 {
	font-size: 24px;
}
.listing-main-details .content h3 {
	font-size: 21px;
}
.listing-main-details .content h4, .listing-main-details .content h5 {
	font-size: 18px;
}
.white-right-btn {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background: #fff;
	border-radius: 100px;
	cursor: pointer;
}
.white-right-btn svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 18px;
}


/*
|--------------------------------------------------------------------------
| 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; bottom: 0; left: 0;
	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: #01c4f4;
	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
|--------------------------------------------------------------------------
*/
.modal {
	display: none;
	position: fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: 100;
}

.modal--inner {
	width: 100%;
	max-width: 1100px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-color: #e7e7e7;
	-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;
}

.modal--open .modal--inner {
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.modal--close {
	position: absolute;
	top: -55px;
	right: 0;
	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;
}

.modal--open .modal--close {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	transform: translateY(0);
}


.modal--backdrop {
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background-color: rgba(0, 0, 0, 0.85);
	transition: background-color 300ms ease;
}

.modal--backdrop:hover {
	cursor: pointer;
}

.modal--inner {
	transition: opacity 300ms ease;
}

.modal--content {
	overflow: hidden;
}

.modal--image {
	float: right;
}

.modal--image img {
	width: 100%;
}

.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: #01c4f4;
	font-weight: 700;
	font-size: 13px;
}

.listing--points span {
	color: #1e1e1e;
}

.listing-pricebreaks table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
	margin-top: 20px;
}

.listing-pricebreaks th,
.listing-pricebreaks td {
	border: 1px solid #aaa;
	padding: 5px;
}

.listing-pricebreaks th {
	text-align: left;
}

.modal--button {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 18px;
}

.modal--button-details {
	background-color: #b34834;
	font-size: 12px;
}

.modal-overview--cont {
	padding: 30px 30px 0;
}

.modal-overview {
	height: 510px;
	width: 420px;
	padding: 0 0 124px 0;
	overflow: scroll;
}

.modal-action {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 420px;
}

.modal--view-full-details {
	display: block;
	width: 100%;
	background-color: #01a4cd;
	color: #fff;
	padding: 11px 10px;
	font-weight: 700;
	font-size: 12px;
	text-align: center;
}

.modal--view-full-details:hover {
	background-color: #0284a5;
	color: #fff;
}



/*
|--------------------------------------------------------------------------
| Listing
|--------------------------------------------------------------------------
*/
.listing-side {
	position: relative;
	width: 40%;
	float: right;
	z-index: 2;
}

.listing-main {
	position: relative;
	width: 60%;
	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%;
	padding-right:20px;
	float: left;
}

.listing-overview--top-inner {
	padding: 0 0 15px 0;
	background-color: #fff;
}

.listing-details {
	padding: 20px 0 0 0;
}

.form-options {
	position: relative;
	padding: 20px 30px;
	border-top: 1px solid rgba(255,255,255,0.15);
	z-index: 1;
}

.listing-price {
	display: block;
	font-weight: 700;
	font-size: 36px;
	color: #2d2d2d;
}

.listing-rrp,
.listing-save {
	display: inline-block;
	font-weight: 700;
	font-size: 13px;
	color: #abadae;
}

.listing-rrp > span {
	text-decoration: line-through;
}

.listing-save {
	color: #51ac5c;
	text-decoration: none;
}

.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/homestead/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 15px 0;
}

.listing-deadline--details {
	text-align: center;
	float: left;
}

.listing-deadline--title ~ .listing-deadline-doughnuts {
	padding-top: 8px;
}

.listing-deadline--title {
	font-size: 12px;
	color: #666666;
	text-transform: uppercase;
}

.listing-deadline--subtitle {
	color: #01c4f4;
}

.listing-deadline--date {
	font-size: 19px;
	color: #1e1e1e;
}

.pulse-animation {
/*
	-webkit-animation: pulse 1s infinite;
	-moz-animation: pulse 1s infinite;
	-o-animation: pulse 1s infinite;
	animation: pulse 1s infinite;
*/
}

.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: 13px;
	position: relative;
	top: 8px;
	color: #fff;
}

.listing-deadline-doughnut span {
	display: block;
	font-size: 11px;
	position: relative;
	top: 4px;
}

.listing-deadline-doughnuts svg {
  width: 35px; height: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-89.9deg);
  transform: translate(-50%, -50%) rotate(-89.9deg);
  /*background: #d73938;*/
  background: #4ea1d1;
  border-radius: 50%;
}

.listing-deadline-doughnuts circle {
	position: relative;
	fill: #8cc640;
	/*stroke: #d73938;*/
	stroke: #4ea1d1;
	stroke-width: 8px;
	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__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: 100%;
    width: 100%;
    top: 0;
	left: 0;
	z-index: 100;
}
.easyzoom .listing-image__zoom {
	cursor: crosshair;
}



.listing-image__zoom__svg {
	fill: #01c4f4;
    position: absolute;
    background: #fff;
    padding: 10px;
    border-radius: 100px;
    height: 40px;
    width: 40px;
    left: 20px;
    bottom: 20px;
}

.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 {
	display: inline-block;
	padding-bottom: 15px;
}

.options-radios .cf {
	display: flex;
	padding: 10px 0 0 0;
	margin: 0 0 10px;
	background-color: #121212;
	flex-wrap: wrap;
}

.option-radio {
	float: left;
	min-width: 100px;
}

.option-radio:hover .option-radio__inner {
	background: rgba(0,0,0,0.2);
}

.option-radio.checked .option-radio__inner {
    background: #01c4f4;
}

.option-radio__inner {
	background: rgba(0,0,0,0.1);
	padding: 10px;
	text-align: center;
	display: block;
	cursor: pointer;
	border-radius: 5px;
}

.option-radio__inner input {
	display: none;
}

.opt_radio {
	width:initial;
	vertical-align: middle;
    margin: 0 6px .25em 10px;
}

.options_text {
	color: #ffffff;
	padding: 0 0 6px;
	font-weight: 400;
	margin-top: 8px;
	font-size: 12px;
}

.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 {
	margin: 0 0 0 4px;
	display: block;
	width: 41px;
	height: 41px;
	padding: 0;
	background-image: url(/images/style/homestead/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;
	margin-top: -5px;
	margin-bottom: 10px!important;
}

.listing-swatch {
	padding: 0 2px 2px 0;
	width: 45px;
	margin-right: 2px;
}

.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;
	border-radius: 10px;
}

.listing-swatch.sel .listing-swatch__content,
.listing-swatch__inner:hover .listing-swatch__content {
	border: 3px solid #ffffff;
}

.listing-notify .button {
	margin-bottom:15px;
	border-radius: 25px;
}

.listing-comments-response {
	background-color: #e7e7e7;
	margin: 15px 0 0 0;
	padding: 20px;
}




/*
|--------------------------------------------------------------------------
| 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 > Related
|--------------------------------------------------------------------------
*/
.listing-related {
	padding: 40px 0 0 0;
}

.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;
	background-color: rgba(34, 137, 197, 0.45);
	z-index: 110;
}

.overlay-personalise {
	background-color: rgba(0, 0, 0, 0.85);
}

.overlay.open {
	display: block;
}

.overlay--close {
	position: absolute;
	top: -30px;
	right: 0;
	color: #fff;
	font-weight: 700;
	font-size: 12px;
	cursor: pointer;
	transition: transform 0.4s cubic-bezier(0.25, 0, 0.25, 1.75) 1s;
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0, 0.25, 1.75) 1s;
}

@-webkit-keyframes overlayEntrance {
  0%   { -webkit-transform: translate(-50%, -50%) rotateX(70deg) scale(0.7); transform: translate(-50%, -50%) rotateX(70deg) scale(0.7); opacity: 0; }
  80%   { -webkit-transform: translate(-50%, -50%) scale(1.04); transform: translate(-50%, -50%) scale(1.04); }
  90%   { -webkit-transform: translate(-50%, -50%) scale(0.98); transform: translate(-50%, -50%) scale(0.98); }
  100% { -webkit-transform: translate(-50%, -50%);  transform: translate(-50%, -50%); opacity: 1; }
}

@keyframes overlayEntrance {
  0%   { -webkit-transform: translate(-50%, -50%) rotateX(70deg) scale(0.7); transform: translate(-50%, -50%) rotateX(70deg) scale(0.7); opacity: 0; }
  80%   { -webkit-transform: translate(-50%, -50%) scale(1.04); transform: translate(-50%, -50%) scale(1.04); }
  90%   { -webkit-transform: translate(-50%, -50%) scale(0.98); transform: translate(-50%, -50%) scale(0.98); }
  100% { -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); opacity: 1; }
}

@keyframes overlayEntranceNotVerticallyCentered {
  0%   { -webkit-transform: translateX(-50%) rotateX(70deg) scale(0.7); transform: translateX(-50%) rotateX(70deg) scale(0.7); opacity: 0; }
  80%   { -webkit-transform: translateX(-50%) scale(1.04); transform: translateX(-50%) scale(1.04); }
  90%   { -webkit-transform: translateX(-50%) scale(0.98); transform: translateX(-50%) scale(0.98); }
  100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); opacity: 1; }
}

.overlay--inner {
	position: absolute;
	top: 50%; left: 50%;
	width: 100%;
	max-width: 446px;
	padding: 20px;
	background-color: #fff;
	transition: all 1s cubic-bezier(0.25, 0, 0.25, 1.75);
	border-radius: 5px;
}

.overlay__blue .overlay--inner {
	background-color: #01c4f4;
}

.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--title {
	display: block;
	text-align: center;
	font-weight: 700;
	font-size: 21px;
	color: #424242;
}

.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;
}

#ask-a-question,
#bulk {
	cursor: pointer;
}

.overlay--text {
	text-align: center;
	color: #fff;
	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;
}

/*
|--------------------------------------------------------------------------
| Compare
|--------------------------------------------------------------------------
*/
.compare-table--row {
	display: table-row;
	position: relative;
	font-weight: 700;
	color: #fff;
}

/*.compare-table--row:after {
	content: '';
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background: -moz-linear-gradient(top, rgba(213,86,62,0) 1%, rgba(54,22,16,0) 75%, rgba(0,0,0,0.2) 100%);
	background: -webkit-linear-gradient(top, rgba(213,86,62,0) 1%,rgba(54,22,16,0) 75%,rgba(0,0,0,0.2) 100%);
	background: linear-gradient(to bottom, rgba(213,86,62,0) 1%,rgba(54,22,16,0) 75%,rgba(0,0,0,0.2) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0001c4f4', endColorstr='#33000000',GradientType=0 );
}*/

.compare-table--cell {
	display: table-cell;
	padding: 15px;
	background-color: #01c4f4;
	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 {
	font-weight: 700;
	font-size: 18px;
	color: #222;
	padding: 0 0 15px 0;
}

.cart-segment {
	border: 1px solid #cecece;
	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: 20px 25px;
}

.cart-main {
	width: 65.5%;
	float: left;
}

.cart-option--images-cont {
    padding: 18px 0 12px;
}

.cart-option--image-cont {
    position: relative;
    display: inline-block;
	padding-left: 12px;
	background-image: url(/images/style/homestead/plus.png);
	background-position: center left;
	background-repeat: no-repeat;
	background-size: 8px 8px;
}

.cart-option--image {
    border: 1px solid #efefef;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
}

.cart-option--image img {
	max-height: 100%;
}

.cart-option--image-text {
    display: none;
    position: absolute;
	bottom: calc(100% + 10px);
	text-align: center;
	width: 250px;
	left: -88px;
	color: #fff;
}

.cart-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;
}

.cart-option--image-text-inner {
    padding: 7px 15px 5px;
	font-size: 13px;
	display: inline-block;
	background: #2d2d2d;
}

.cart-option--image-text span {
    display: block;
	padding-bottom: 3px;
	color: #fec800;
}

.cart-option--image-cont:hover .cart-option--image-text {
    display: block;
}

.cart-option--image-qty {
    position: absolute;
    background: #06387f;
    font-size: 10px;
    height: 17px;
    width: 17px;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    right: 0;
}



/*
|--------------------------------------------------------------------------
| Basket > Side
|--------------------------------------------------------------------------
*/
.cart-side {
	float: right;
	width: 34.5%;
	padding: 0 0 0 40px;
}

.cart-side--option {
	font-size: 13px;
	font-weight: 700;
	background: #f5f5f6;
	margin-top:15px;
}

.cart-side--option span {
	display: block;
	padding: 10px 15px;
}

.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/homestead/icon-gift-white.png);
}

.cart-side--option-inner {
	display: none;
	padding: 0 20px 20px 20px;
}

.cart-side .input {
	margin-bottom: 5px;
}
.cart-side .input .input-label {
	top: 2px;
}
.cart-side .select2-basic--container.select2-selection--single .select2-selection__rendered {
	padding: 16px 10px 2px 10px;
}
.cart-side .input input[type="text"] {
	padding: 14px 10px 2px 10px;
}



/*
|--------------------------------------------------------------------------
| Basket > Totals
|--------------------------------------------------------------------------
*/
.cart-totals {
	background: #f5f5f6;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e7e7e7', endColorstr='#ffffff',GradientType=0 );
	font-weight: 700;
	color: #666666;
	border-top:none;
}
.cart-totals .dblc {
	padding: 4px 0;
}

.cart-total--price {
	text-align: right;
}

.cart-totals .dblr.cart-total {
	color: #1e1e1e;
	font-weight: 700;
	font-size: 20px;
	text-transform: uppercase;
}
.cart-totals .dblr.cart-total--smaller {
	font-size: 13px;
	line-height: 15px;
}

.cart-total .dblc {
	padding-bottom: 15px;
}
.cart-totals .dblr:not(.cart-total--smaller) .dblc {
	padding-bottom: 5px;
}
.cart-totals:not(.cart-overview-totals) .dblr:not(.cart-total) .dblc {
	font-weight: 500;
	color: #2289c5;
}

.cart-side--delivery-option {
	background-color: #fff;
	border-top: 1px solid #cecece;
	border-bottom: 1px solid #cecece;
	font-weight: 700;
	color: #1e1e1e;
	padding: 15px;
	margin-top:8px;
	transition: padding 300ms ease;
	cursor: pointer;
}

.cart-side--delivery-option:hover {
	padding: 15px 20px;
}

.cart-side--delivery-option.sel {
	background-color: rgba(34,137,197,.3);
}

.cart-side--delivery-option.sel span {
	color: #222;
}

.cart-side--delivery-option strong {
	font-size: 13px;
	display: block;
}

.cart-side--delivery-option span {
	display: block;
	font-size: 11px;
}

.cart-side--delivery-option span {
	color: #666666;
}

span.cart-side--delivery-cost,
span.cart-side--delivery-cost--original {
	float: right;
	font-weight: 700;
	color: #1e1e1e;
}

span.cart-side--delivery-cost--original {
	text-decoration: line-through;
	padding-right: 8px;
	font-weight: normal;
}



/*
|--------------------------------------------------------------------------
| Basket > Items
|--------------------------------------------------------------------------
*/
.cart-items {
	width: 100%;
	padding: 20px 25px;
	position: relative;
}

.cart-item {
	position: relative;
	margin: 0 0 15px 0;
	border-bottom: 1px solid #cecece;
	display: flex;
}

.cart-item:last-child {
	border-bottom: 0;
	/* margin:0; */
	padding:0;
}

.cart-item-image {
	width: 112px;
	margin: 0 0 15px 0;
}

.cart-item-image a {
	border: 1px solid #cecece;
}

.cart-item:last-child .cart-item-image {
	margin:0;
}

.cart-item-content {
	padding: 0 120px 0 15px;
	flex: 1;
}

.cart-item-title a {
	font-weight: 700;
	font-size: 14px;
	line-height: 16px;
	color: #222222;
}

.cart-item-content .label-inline {
	width:95px;
	align-self: baseline;
}
.cart-item-content .input input.item-qty {
	padding: 4px 8px 4px 60px;
}

.cart-item-right {
	width:110px;
	position: absolute;
	top: 0; right: 0; bottom: 0;
	float: right;
	text-align: right;
}

.cart-item-price {
	font-size: 14px;
	color: #2289c5;
}

.cart-item-stock-cont {
	padding-top: 5px;
}

.cart-item-unitprice, .cart-item-option {
	display: block;
	color: #2289c5;
	font-size: 12px;
}
.cart-item-stock {
	display: block;
	color: #43b460;
	font-size: 14px;
	line-height: 16px;
	margin-bottom: 10px;
}

.cart-item-stock.stock-status {
	background-size: 14px auto;
}

.cart-item-stock {
	margin-left: 10px;
	padding: 0 0 0 20px;
    background-repeat: no-repeat;
    background-position: left center;
}

.cart-item-stock-cross-amber {
	background-image: url(/images/style/homestead/icon-cross-amber.png);
}

.cart-item-stock-van-green {
	background-image: url(/images/style/homestead/icon-dispatch-van-green.png);
}

.cart-item-stock-warning {
	background-image: url(/images/style/homestead/icon-cart-warning.png);
	color: #cb7e12;
}

.cart-item-stock-van-orange {
	background-image: url(/images/style/homestead/icon-dispatch-van-orange.png);
}

.cart-item-stock-box {
	background-image: url(/images/style/homestead/icon-dispatch-box-orange.png);
}

#cart--vat-declaration-details {
	display:none;
}

.remove {
	background: url(/images/style/homestead/cart-remove.png) left center no-repeat;
	padding: 0 0 0 15px;
	cursor: pointer;
	font-size: 12px;
	line-height: 10px;
	text-transform: uppercase;
	color: #b52025;
	font-weight: 500;
}

.cart-item-right .remove, .cart-item-right .button-small {
	position: absolute;
	bottom: 25px;
	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;
}

.cart-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: #01c4f4;
}
 .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: #01c4f4;
}
 .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: #01c4f4;
}
 .ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
    border: 1px solid #1c75a9;
	background-color: #1c75a9;
    font-weight: bold;
    color: #fff;
}
 .ui-datepicker td a {
	text-align: center;
}
 .ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	background-color: #01c4f4;
	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/homestead/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: #1c75a9;
}
 .ui-datepicker .ui-datepicker-next .ui-icon {
	background-image: url(/images/style/homestead/icon-chevron-right.png);
}



/*
|--------------------------------------------------------------------------
| 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: #01c4f4;
	background-color: #fff;
}

.brand-letter--inner {
	display: block;
	border: 2px solid #e7e7e7;
	color: #01c4f4;
	font-weight: 700;
	font-size: 21px;
	padding: 4px 0;
	cursor: pointer;
}

.brand-letter--inner.sel,
.brand-letter--inner:hover {
	background-color: #01c4f4;
	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: #01c4f4;
	padding: 10px 0;
}

.brands-page .basic-header {
	border-bottom: 1px solid #cecece;
}
.brands-page .basic-header h2 {
	font-weight: 500;
	font-size: 24px;
	color: #2289c5;
}
.brands-page .basic-header .content:not(.overflow) {
	margin-bottom: 10px;
}
.brands-page .basic-header .content:not(.overflow) p strong {
	font-weight: 400;
}
.alphabet-pagination .page-let {
	background-color: #2289c5;
	cursor: pointer;
	color: #fff;
	transition: ease-in-out .2s;
	margin: 0 3px;
	flex: 1;
	max-width: 35px;
	text-align: center;
	padding: 5px;
	font-weight: 500;
}
.alphabet-pagination .page-let:not(:first-of-type) {
	margin-left: 0;
}
.alphabet-pagination .page-let:hover {
	background: #16628f;
}
.alphabet-pagination .page-let.selected {
	background: #f1f1f1!important;
	color: #222!important;
}

.brands-list {
	padding: 10px 10px 10px 10px;
}
.brands-list .brands-item-outer {
	display: inline-block;
	width: 8.12%;
}
.brands-list .brands-item .brands-item-text {
	text-align: center;
	font-size: 12px;
	line-height: 12px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 32px;
	margin-top: -5px;
}



/*
|--------------------------------------------------------------------------
| Checkout
|--------------------------------------------------------------------------
*/
.checkout-header {
	min-height: auto;
	padding: 20px 0;
}
.checkout-header .brand img {
	height: 80px;
}
.checkout {
	position: relative;
	overflow:hidden;
}

.checkout-main {
	width: 60%;
	padding: 45px 70px 0 0;
	background-color: #fff;
	float: left;
	border-right: 2px solid #e7e7e7;
}

#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: 2px 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 .input input, .checkout .input .select2-basic--container.select2-selection--single .select2-selection__rendered, .checkout textarea#delivery_instructions {
	border: 2px solid #e1e1e1;
}
.checkout .input .select2-basic--container.select2-selection--single .select2-selection__rendered {
	padding: 22px 10px 6px 10px;
}

.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: 2px solid #e7e7e7;
	padding: 24px 0;
}

.return-to-basket {
	background-color: #fff;
	color: #2d2d2d;
	text-transform: none;
	padding: 12px 25px 11px 15px;
	background: url(/images/style/homestead/icon-chevron-left-black.png) no-repeat center left;
	font-size: 15px;
}

.checkout-addressbook .input {
	display: none;
}

.checkout-addressbook-button {
	color: #01c4f4;
	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/homestead/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/homestead/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/homestead/icon-calendar-blue.png) no-repeat center center;
	background-size: 13px 13px;
}

.cart-overview--item-inner {
	padding: 0 14px 14px 14px;
	overflow: hidden;
}

#invoice-container .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;
	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: 18px;
	width: 16px;
	background: url(/images/style/homestead/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;
}

.cart-promo--button:hover {
	background-color: #e6e6e6;
}

.cart-promo--button:active {
	top: 1px;
}

.cart-promo--form {
	padding: 10px 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;
}



/*
|--------------------------------------------------------------------------
| Confirm v2
|--------------------------------------------------------------------------
*/
.payment-method {
}

.payment-method--button {
	position: relative;
	padding: 21px 20px 21px 50px;
	font-weight: 700;
	font-size: 18px;
	color: #2d2d2d;
	border: 2px 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/homestead/card-logos.png) no-repeat center right;
}

.payment-method__paypal .payment-method--title,
.payment-method__paypal-paylater .payment-method--title,
.payment-method__paypal-credit .payment-method--title {
	background: url(/images/style/homestead/paypal-logo-color.png) no-repeat center right;
}

klarna-placement {
	padding: 0 30px;
}

klarna-placement > div {
	padding-bottom: 20px;
}

.payment-method__klarna .payment-method--title {
	background: url(/images/style/homestead/klarna.png) 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 {
	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: #01c4f4;
}

.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-paypal-paylater-loggedin,
#braintree-card-stored,
#ppchkout-paypal-loggedin,
#ppchkout-paypal-paylater-loggedin,
#ppchkout-paypal-credit-loggedin {
	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;
}

.listing-pp-messaging {
	padding: 0 30px;
}

.listing-pp-messaging > span {
	padding-bottom: 10px;
	display: inline-block;
	width: 100%;
}

.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: "Helvetica Neue", Helvetica, Arial, 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/homestead/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;
}



/*
|--------------------------------------------------------------------------
| 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: #01c4f4;
}



/*
|--------------------------------------------------------------------------
| 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;
}

.checkout-stage span {
	display: block;
	padding: 0 20px 0 0;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	font-weight: 700;
	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: #8cc640;ba
}

.checkout-stage.darker {
	background: #1c1c1c;
	border-right:2px solid #1c1c1c;
}

.checkout-stage.darkest {
	background: #161616;
	border-right:2px solid #161616;
}

.checkout-stage.failed {
	background: #d73938;
	border-right:2px solid #d73938;
}

.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 > 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: #2d2d2d;
	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: #01c4f4;
	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: #01c4f4;
	font-weight: 700;
}

.wishlist-del:hover,
.wishlist-prod-del-button span:hover {
	color: #1c75a9;
}

.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-left {
	max-width: 0;
}

.wishlist-top-left,
.wishlist-top-right {
	vertical-align: middle;
}

.wishlist-top-right {
	white-space: nowrap;
	width: 1px;
}ac

.wishlists p {
	margin-bottom: 30px;
}

.account-wishlist .message-error {
	margin-bottom: 0
}

.account a:not(.button):hover {
	color: #2d2d2d;
}

.wishlist-edit,
.wishlist-return {
	display:inline-block;
	color:#01c4f4;
	font-size:11px;
	font-weight: 700;
	text-transform:uppercase;
	cursor:pointer;
	margin-left:10px;
}

.wishlist-edit span:hover,
.wishlist-return a:hover {
	color: #01c4f4;
	text-decoration: underline;
}

.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: 4px solid #2d2d2d;
}

.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 #e9e9e9;
}

.wishlist-prod a {
	font-weight: 600;
	font-size: 16px;
	color: #01c4f4;
}

.wishlist-prod a:hover {
	text-decoration: underline;
	color: #01c4f4;
}

.wishlist-prod-move-button {
	width: 1px;
}

.wishlist-prod-move-button span {
	cursor: pointer;
	color: #01c4f4;
}

.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 {
	/*font-family: 'Poppins', sans-serif;*/
	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 {
	background-color: #01c4f4;
	margin: 4px 0;
	padding: 15px;
	cursor: pointer;
	line-height: 1.3;
	color: #fff;
	-webkit-transition: .3s all ease-out;
	transition: .3s all ease-out;
}

.wishlist-choose:hover {
	background-color: #1c75a9;
}

.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;
}



/*
|--------------------------------------------------------------------------
| 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: #01c4f4;
	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: #01c4f4;
	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;
}



/*
|--------------------------------------------------------------------------
| 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 {}

.account-subtitle {
	font-size: 18px;
	padding: 0 0 20px;
	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: #e7e7e7;
	float: left;
	margin: 0 20px 0 0;
}

.account-sidebar nav {
	padding: 20px 24px;
}

.account-sidebar-btm.mobile {
	display: none;
}

.loyalty-points-dblc {
	display: none;
}

.account-sidebar nav li {
	padding: 5px 0;
}

.account-sidebar a {
	font-size: 16px;
	color: #707070;
	border-bottom: 1px solid transparent;
}

.account-sidebar a:hover,
.account-sidebar .sel {
	color: #2d2d2d;
}

.account-sidebar .sel {
	border-bottom: 1px solid #2d2d2d;
}

.account-sidebar-btm {
	border-top: 1px solid #aaa;
	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: #e7e7e7;
	overflow: hidden;
	padding: 40px;
	color: #2d2d2d;
	line-height: 1.3;
}

.account-main h1 {
	font-size: 24px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #2d2d2d;
	padding: 0 0 20px;
	margin: 0;
	float: left;
}

.account-main-filter {
	float: right;
	height: 40px;
	color: #2d2d2d;
	padding: 0 20px;
	background-color: transparent;
	border: 1px solid #aaa;
}

.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 #aaa;
	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;
}

.account-panel--svg svg path {
	fill: #fff;
}

.account-panels--wide .account-panel {
	width: 25%;
}

.account-table {
	width: 100%;
	border: 1px solid #aaa;
	table-layout: auto;
	margin: 0 0 30px;
}

.account-table a {
	color: #707070;
}

.account-table a:hover {
	color: #2d2d2d;
}

.account-table .button-xsmall,
.account-table .button-xsmall:hover {
	color: #fff;
	text-decoration: none;
}

.account-table.no-margin {
	margin: 0;
}

.account-table .dblc {
	padding: 12px 15px;
	color: #2d2d2d;
	font-size: 12px;
	border-bottom: 1px solid #aaa;
}

.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 {
	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-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-bottom: 10px;
}

.account-table-invoices .dblc:first-child {
	padding-right: 0;
	vertical-align: middle;
}

.account-table-invoices [type="checkbox"] {
	display: block;
}


.account-latest-orders {
	border: 1px solid #aaa;
	font-size: 11px;
	color: #01c4f4;
	text-align: center;
	padding: 12px;
	border-top: none;
}

.order-totals {
	border: 1px solid #aaa;
	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-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 #aaa;
	padding: 12px 15px;
}

.order-panel--data {
	padding: 0 0 10px;
}

.order-panel--data:last-child {
	padding: 0;
}

.order-btns {
	margin: 30px 0 0 0;
}

.loyalty-table-cont {
	overflow: hidden;
}

.loyalty-table {
	table-layout: auto;
	margin-bottom: 20px;
	border: 1px solid #aaa;
}

.loyalty-table .dblc {
	padding: 12px 15px;
	font-size: 12px;
}

.loyalty-table .dblc:not(:last-child) {
	border-right: 1px solid #aaa;
}

.loyalty-table .full {
	width: 100%;
}

.loyalty-table .small {
    white-space: nowrap;
}

.loyalty-point--cont {
	width: 160px;
	float: left;
	text-align: center;
}

.loyalty-point {
	margin: 16px auto 0;
	border: 1px solid #aaa;
	border-radius: 30px;
	padding: 10px 15px;
	color: #2d2d2d;
	font-size: 12px;
	display: inline-block;
	background-color: #e7e7e7;
	line-height: normal;
}

.top-loyalty {
	position: relative;
	padding: 0 0 40px;
	z-index: 1;
}

.loyalty {
	position: relative;
	z-index: 1;
}

.top-loyalty--text {
	border: 1px solid #aaa;
	overflow: hidden;
	font-size: 13px;
    padding: 12px 15px;
	color: #707070;
}

.top-loyalty--text span {
	color: #2d2d2d;
}

.top-loyalty:before,
.loyalty:before {
	content: '';
	z-index: -1;
	width: 1px;
	position: absolute;
	left: 80px;
	top: 0; bottom: 0;
	background-color: #aaa;
}

.top-loyalty .loyalty-point {
	font-size: 14px;
	color: #2d2d2d;
	margin: 0;
}

button#button-password {
	border-radius: 0;
}
button#button-password.password-show {
	background-color: #2389C5;
}

.account-login--checkbox-cont span {
	display: block;
	font-size: 11px;
	padding: 8px 0 0;
}

.account-details--title-text {
	font-size: 12px;
	color: #707070;
	padding: 0 0 20px;
	clear: both;
}

.account-details--block {
	border: 1px solid #aaa;
	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 {
	padding: 30px 40px 35px;
	background: #ffffff;
	margin-bottom: 30px;
	color: #707070;
}

.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--block .input input {
	border: 1px solid #e1e1e1;
}

.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;
	border: 1px solid #1e1e1e;
	background: none;
}

.quote-side .cart--heading {
	color: #fff;
}

.quote-side .cart-segment {
	margin-bottom: 0;
}

.quote-side .cart-segment + .cart-totals {
	border-top: 0;
}

.quote-side .cart-totals {
	color: #707070;
}

.quote-side .cart-total {
	color: #fff;
}



/*
|--------------------------------------------------------------------------
| Account v2 > Overlays
|--------------------------------------------------------------------------
*/
.modal-account .modal--inner {
	max-width: 476px;
}

.account-modal {
	background-color: #2d2d2d;
	padding: 30px;
}

.account-modal .checkbox-label {
	color: #fff;
}

.account-modal .input {
	margin: 0 0 4px;
}

.account-modal--title {
	font-size: 21px;
	color: #fff;
	padding: 0 0 20px;
}

.account-modal--action {
	text-align: right;
	padding: 16px 0 0 0;
}

.account-modal--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 #aaa;
	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-modal--checkboxes {
	padding: 14px 0 0 0;
}

.account-modal--checkboxes-title {
	font-size: 11px;
	color: #707070;
	text-transform: uppercase;
	padding: 0 0 4px;
}

.address-block--add-inner {
	position: relative;
	border: 1px solid #aaa;
	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;
}

.no-margin {
	margin: 0;
}

.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: #01c4f4;
}

.mobile-cats--cats {
	display: none;
}

.mobile-cats--title.open {
	color: #01c4f4;
}

.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/homestead/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 #aaa;
	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-modal--text {
	margin-bottom: 10px;
}

.account-table.vouchers .dblc .voucher-code--small {
	display: block;
	font-size: 10px;
	color: #717171;
	line-height: normal;
}


#listing-overlay {
	position: absolute!important;
}

#listing-overlay .form-options {
	padding: 0;
	border:none;
}

#listing-overlay .overlay--title {
	color: #fff;
}

#listing-overlay .overlay--content {
	background-color: #2389C5;
    margin: 0 -20px -20px;
    padding: 20px;
	color: white;
	border-radius: 0 0 5px 5px;
}

#listing-overlay .listing-price {
	color: #fff;
	font-size: 22px;
}

#listing-overlay .overlay--title {
	font-size: 22px;
	line-height: 1.2;
}


#listing-overlay .overlay--backdrop {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

#listing-overlay .overlay--inner {
	max-width: 490px;
	top: 80px!important;
	transform: translate(-50%, 0)!important;
	-webkit-animation: overlayEntranceNotVerticallyCentered 1s forwards;
	-moz-animation: overlayEntranceNotVerticallyCentered 1s forwards;
	-o-animation: overlayEntranceNotVerticallyCentered 1s forwards;
	animation: overlayEntranceNotVerticallyCentered 1s forwards;
}

#listing-overlay .label-inline .select2-basic--container {
	height: 39px;
}

#listing-overlay .button-secondary {
	background-color: #146287;
}

#listing-overlay .button {
	border-radius: 100px;
}

#listing-overlay .button-secondary:hover {
	background-color: #10506e;
}

.overlay--basket {
	display: flex;
}

.overlay--basket-icon svg {
	fill: #2389C5;
}

.overlay--basket-icon {
	width: 40px;
	margin-right: 10px;
}

.overlay--basket-header {
	display: flex;
	width: 100%;
	margin: 0 0 10px;
}

.overlay--basket-title {
	flex: 1;
}

.overlay--basket ~ .overlay--header-action {
	display: flex;
	gap: 0 10px;
}

.overlay--basket ~ .overlay--header-action .button {
	width: 50%;
}

.basket-overlay-action {
	display: flex;
	gap: 0 10px;
}


.basket-points {
	padding-top: 15px;
}

.cart-side .input.input-points input[type="text"] {
	padding: 5px 70px 5px 25px;
}

.cart-side .input.input-points .input-label {
	top: 16px;
	left: -14px;
	font-size: 14px;
	font-weight: 500;
}

/*GENERAL NEW*/
.border-b-gap > *:not(:last-child) {
    border-bottom: 1px solid #EBEBEB;
}

.page-section-title {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    color: #2389C5;
	margin-bottom: 12px;
}
.page-section-title.dark {
	color: #1C1C1C;
}

/* Text overflow with ellipsis after 3 lines - Safari compatible */
.text-ellipsis-3 {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.4em;
	max-height: 4.2em; /* 3 lines × 1.4em line-height */
	word-wrap: break-word;
}

/* Alternative method for older browsers */
@supports not (-webkit-line-clamp: 3) {
	.text-ellipsis-3 {
		position: relative;
		max-height: 4.2em;
		overflow: hidden;
	}
	
	.text-ellipsis-3::after {
		content: "...";
		position: absolute;
		bottom: 0;
		right: 0;
		padding-left: 20px;
		background: linear-gradient(to right, transparent, currentColor 50%);
		background: linear-gradient(to right, transparent, var(--bg-color, white) 50%);
	}
}

/*HOME NEW*/ 
.home-vehicle-filters:not(:last-child) {
    margin-bottom: 28px;
}
.home-vehicle-filters .caravan-search {
	position: relative;
    border: 0;
    border-radius: 4px;
    background-color: #2289C5;
    width: 100%;
    padding: 12px 12px 12px 2px;
}
.home-vehicle-filters .caravan-search.advanced-open {
	border-radius: 4px 4px 0 0;
}

.main-banners {
    margin: 0 -4px -4px 0;
}
.main-banners > * {
	margin: 0 4px 4px 0;
}
.main-banner--slider {
    display: grid;
    flex: 1;
}
.main-banner--slider.slick-arrow-type-1 .slick-arrow {
	bottom: 20px;
}
.main-banner--slider.slick-arrow-type-1 .slick-next {
	right: 20px;
}
.main-banner--slider.slick-arrow-type-1 .slick-prev {
	right: 70px;
}
.main-banner--slider.slick-arrow-type-1 .slick-arrow:after {
	width: 16px; height: 16px
}
.main-banner--slider .slick-track {
	display: flex!important;
}
.main-banner--slider .slick-slide {
    height: inherit !important;
    display: flex !important;
	align-items: center;
	background-color: #e9e9e9;
}
.main-banner--slider .slick-slide a {
	display: flex;
}

.main-banner--sides {
	flex: 1;
}
.main-banner--sides:not(:first-child) {
	flex: unset;
    width: 50%;
}
.main-banner--sides > div {
	flex: 1; 
	min-height: calc(50% - 2px);
}
.main-banner--sides > div:nth-child(2) {
	flex-direction: row-reverse;
	margin-top: 4px;
}
.main-banner--side-image {
    flex: 1;
}
.main-banner--side-content {
    background-color: #8CC640;
    flex: 1;
    padding: 20px;
}
.main-banner--sides > div:nth-child(2) .main-banner--side-content {
	background-color: #D73938;
}
.main-banner--side-content:not(:first-child) {
	min-width: 204px;
	max-width: 204px;
}
.main-banner--side-content h2 {
	font-size: 22px;
	color: #FFF;
	line-height: 1.1;
	text-align: center;
}
.main-banner--side-content .button:not(:first-child) {
	margin-top: 2px;
}

.usp-bar {
    padding: 28px 0;
}
.usp-bar > div {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    flex: 1 0 auto;
    font-weight: 600;
    color: #2D2D2D;
	border-right: 1px solid #EBEBEB;
}
.usp-bar > div:first-child {
	padding-left: 0;
}
.usp-bar > div:last-child {
	padding-right: 0;
	border-right: 0;
}
.usp-bar > div > svg {
	margin-right: 10px;
}

.featured-slider--container {
    padding: 56px 0 84px;
}

.featured-category-grid {
    padding: 56px 0;
}
.featured-category-grid:not(:first-child) {
	padding-top: 0;
}
.featured-category-grid > div {
	display: flex;
}
.featured-category-grid--item-large {
	width: 100%;
}
.featured-category-grid--item-large img {
	width: 100%;
}
.featured-category-grid--item {
	flex: 1;
	min-width: 25%;
}
.featured-category-grid--item > * {
    position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
    width: 100%; 
	min-height: 175px;
    height: 100%;
    text-align: center;
    padding: 34px 20px;
    color: #FFF!important;
	text-transform: uppercase;
}
.featured-category-grid--item > *::before {
	content: '';
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
	background-color: rgba(0,0,0,0.3);
	-webkit-transition: ease-in-out .2s;
	transition: ease-in-out .2s;
}
.featured-category-grid--item > *:hover::before {
	background-color: rgba(0,0,0,0.5);
}
.featured-category-grid--item > * > * {
	position: relative;
	z-index: 1;
}
.featured-category-grid--item--title {
	font-size: 24px;
	font-weight: 700;
	line-height: 1; 
}
.featured-category-grid--item--title:not(:last-child) {
	margin-bottom: 8px;
}
.featured-category-grid--item--subtitle {
	font-size: 16px;
	line-height: 1.1;
}
.featured-category-grid--item--button {
	position: absolute;
    bottom: 0;
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 2px 10px;
    min-height: 24px;
}

.manu-overflow-container {
    padding: 28px 0 40px;
	overflow: hidden;
}
.manu-overflow-slider {
    margin: 0 -4%;
}
.manu-overflow-slider .slick-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 28px;
}

.content-sections {
	display: flex;
	flex-direction: column;
	align-content: center;
}
.content-section {
	display: flex;
	padding: 30px 0;
}
.content-section:nth-child(3n+1) *, 
.content-section:nth-child(3n+2) * {
	color: #FFF;
}
.content-section:nth-child(3n+1) {
	background-color: #2389C5;
}
.content-section:nth-child(3n+2) {
	background-color: #8CC640;
}
.content-section:nth-child(3n) {
	background-color: #FFF;
	padding: 80px 0;
}
.content-section:nth-child(odd) .content-section--inner {
	flex-direction: row-reverse;
}
.content-section--inner {
    display: flex;
	align-items: flex-start;
}
.content-block--text {
	flex: 1;
}
.content-block--text > *:not(:last-child) {
	margin-bottom: 24px;
}
.content-section--title {
	font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}
.content-block--text:not(:last-child) .content-section--title {
    max-width: 300px;
}
.content-block--text .content * {
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0;
}
.content-block--text .content a {
	text-decoration: underline;
}
.content-block--text .content small {
	font-size: 11px;
}
.content-block--text .content h1 {
	font-size: 16px;
}
.content-block--text .content h2 {
	font-size: 15px;
}
.content-block--text .content h3 {
	font-size: 14px;
}
.content-block--text .content h4 {
	font-size: 13px;
}
.content-block--text .content h5 {
	font-size: 12px;
}
.content-read-more {
    display: none;
	margin-bottom: 12px;
}
.content-section .button {
    font-size: 12px;
    font-weight: 500;
    padding: 10px 14px;
	line-height: 1.15;
}
.content-section:nth-child(3n+1) .content-section--buttons > div:nth-child(odd) .button, 
.content-section:nth-child(3n+2) .content-section--buttons > div:nth-child(odd) .button, 
.content-section:nth-child(3n+2) .button.read-more-toggle {
	background-color: #D73938;
}
.content-section:nth-child(3n+1) .content-section--buttons > div:nth-child(odd) .button:hover, 
.content-section:nth-child(3n+2) .content-section--buttons > div:nth-child(odd) .button:hover, 
.content-section:nth-child(3n+2) .button.read-more-toggle:hover {
	background-color: #b72e2d;
}
.content-section:nth-child(3n+1) .content-section--buttons > div:nth-child(even) .button, 
.content-section:nth-child(3n) .content-section--buttons > div:nth-child(even) .button {
	background-color: #8CC640;
}
.content-section:nth-child(3n+1) .content-section--buttons > div:nth-child(even) .button:hover, 
.content-section:nth-child(3n) .content-section--buttons > div:nth-child(even) .button:hover {
	background-color: #79ad34;
}
.content-section--images {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -12px 0;
	width: 780px;
}
.content-section:nth-child(odd) .content-section--images {
	margin-left: 68px;
}
.content-section:nth-child(even) .content-section--images {
	margin-right: 68px;
}
.content-section--image {
	display: flex;
	margin: 0 12px 12px 0;
	overflow: hidden;
	border-radius: 4px;
	width: calc(50% - 12px);
}
.content-section--image img {
    width: 100%;
}
.content-section--images.solo {
	width: 580px;
}
.content-section--images.solo .content-section--image {
	width: 100%;
}

.article-includes {
	padding: 30px 0;
	margin: 0 -80px 0 0;
}
.article-includes > * {
	margin: 0 80px 0 0;
	width: calc(50% - 80px);
}
.article-includes--title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
	margin-bottom: 20px;
}
.article-include--items > div {
	margin-bottom: 20px;
}
.article-include--item {
	display: flex;
    box-shadow: 2px 3px 28px 2px rgba(3, 41, 68, 0.1);
}
.article-include--item--image {
	width: 204px;
}
.article-include--item--image img {
	visibility: hidden;
}
.article-include--item--content {
	padding: 16px;
}
.article-include--item--title {
    font-weight: 600;
    margin-bottom: 6px;
}
.article-include--item--content .content {
	margin-bottom: 6px;
}
.article-include--item--content .content * {
	font-size: 13px;
}
.article-include--item--details {
	font-size: 11px;
	text-transform: uppercase;
	text-align: right;
}
.article-includes--view-all > .button {
    width: 100%;
}

.vehicle-listv2 {
    display: flex;
	margin: 0 -20px -20px 0;
	width: 100%;
}
.vehicle-listv2 > div {
	width: 20%;
	padding: 0 20px 20px 0;
}
.vehicle-listv2--item {
	height: 100%;
    display: flex;
    flex-direction: column;
	border: 1px solid #EBEBEB;
}
.vehicle-listv2--item--image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.vehicle-listv2--item--image img {
	width: 100%;
}
.vehicle-listv2--item--content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 10px;
}
.vehicle-listv2--item--title {
    flex: 1;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	color: #2D2D2D;
	margin-bottom: 10px;
}
.vehicle-listv2--item--pricing {
	margin-bottom: 10px;
}
.vehicle-listv2--item--price {
    font-size: 16px;
    font-weight: 500;
	line-height: 1.3;
    color: #2389C5;
}
.vehicle-listv2--item--wasprice {
	font-size: 12px;
	font-weight: 600;
	color: #666666;
}
.vehicle-listv2--item--action {
    margin: 0 -5px -5px 0;
}
.vehicle-listv2--item--action > * {
	min-width: max-content;
	flex: 1;
	margin: 0 5px 5px 0;
}
.vehicle-listv2--item--action .button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 3px 8px;
    border-radius: 30px;
    font-size: 12px;
    min-height: 19px;
}
.vehicle-listv2--item--action .button svg {
	margin-left: 6px;
}
.vehicle-list-slider.slick-slider {
    align-items: center;
	margin: 0;
}
.vehicle-list-slider.slick-slider .slick-prev {
	background: url('data:image/svg+xml,<svg width="10" height="17" viewBox="0 0 10 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M0.366227 9.43166C0.131889 9.19726 0.000244141 8.87937 0.000244141 8.54791C0.000244141 8.21646 0.131889 7.89857 0.366227 7.66417L7.43748 0.592914C7.55279 0.473526 7.69072 0.378299 7.84322 0.312787C7.99573 0.247276 8.15975 0.212793 8.32573 0.211351C8.4917 0.209909 8.6563 0.241536 8.80992 0.304387C8.96354 0.367238 9.10311 0.460055 9.22047 0.577421C9.33784 0.694787 9.43065 0.834351 9.4935 0.987971C9.55636 1.14159 9.58798 1.30619 9.58654 1.47217C9.5851 1.63814 9.55062 1.80216 9.4851 1.95467C9.41959 2.10717 9.32437 2.24511 9.20498 2.36041L3.01748 8.54791L9.20498 14.7354C9.43268 14.9712 9.55867 15.2869 9.55582 15.6147C9.55297 15.9424 9.42151 16.2559 9.18975 16.4877C8.95799 16.7194 8.64447 16.8509 8.31673 16.8538C7.98898 16.8566 7.67323 16.7306 7.43748 16.5029L0.366227 9.43166Z" fill="white"/></svg>') no-repeat center;
	margin: 0 20px 0 0;
}
.vehicle-list-slider.slick-slider .slick-next {
	background: url('data:image/svg+xml,<svg width="10" height="17" viewBox="0 0 10 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.63377 9.43166C9.86811 9.19726 9.99976 8.87937 9.99976 8.54791C9.99976 8.21646 9.86811 7.89857 9.63377 7.66417L2.56252 0.592914C2.44721 0.473526 2.30928 0.378299 2.15678 0.312787C2.00427 0.247276 1.84025 0.212793 1.67427 0.211351C1.5083 0.209909 1.3437 0.241536 1.19008 0.304387C1.03646 0.367238 0.896894 0.460055 0.779529 0.577421C0.662163 0.694787 0.569346 0.834351 0.506495 0.987971C0.443645 1.14159 0.412018 1.30619 0.41346 1.47217C0.414902 1.63814 0.449385 1.80216 0.514896 1.95467C0.580407 2.10717 0.675634 2.24511 0.795023 2.36041L6.98252 8.54791L0.795023 14.7354C0.567325 14.9712 0.441332 15.2869 0.44418 15.6147C0.447028 15.9424 0.578489 16.2559 0.810249 16.4877C1.04201 16.7194 1.35553 16.8509 1.68327 16.8538C2.01102 16.8566 2.32677 16.7306 2.56252 16.5029L9.63377 9.43166Z" fill="white"/></svg>') no-repeat center;
	margin: 0 0 0 20px;
}
.vehicle-list-slider.slick-slider .slick-arrow {
	text-indent: -9999px;
	width: 40px; height: 40px;
	border-radius: 100px;
	overflow: hidden;
	background-color: #8CC640;
	-webkit-transition: ease-in-out .2s;
	transition: ease-in-out .2s;
	z-index: 1;
}
.vehicle-list-slider.slick-slider .slick-arrow:hover {
	background-color: #77aa34;
}
.vehicle-list-slider .slick-list {
	flex: 1;
	width: 100%;
	padding: 0;
	margin: 0 -20px 0 0;
}
.vehicle-list-slider .slick-track {
	display: flex !important;
}
.vehicle-list-slider .slick-slide {
	height: inherit !important;
	padding: 0 20px 0 0;
}