/*
Table Of Contents
 
 1.)  Typography
 2.)  Default Styles
 3.)  Header
 4.)  Content - Main
 5.)  Footer

========================================*/

/*
 1.) Typography
----------------------------------------*/

@import url("brands.min.css") all;
@import url("light.min.css") all;
@import url("regular.min.css") all;
@import url("solid.min.css") all;
@import url("fontawesome.min.css") all;

:root {
	--jones-font-header: "Corbel Light";
	--jones-font-primary: "Corbel";
	--jones-font-numerical: "Corbel";
}

@font-face {
	font-family: 'Verdana Pro';
	src: url('../webfonts/VerdanaPro-Light.woff2') format('woff2'),
	url('../webfonts/VerdanaPro-Light.woff') format('woff'),
	url('../webfonts/VerdanaPro-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: 'Corbel Light';
	src: url('../webfonts/corbel-light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: 'Corbel';
	src: url('../webfonts/CORBEL.TTF') format('truetype');
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: 'Calibri Light';
	font-style: normal;
	font-weight: normal;
	src: url('../webfonts/calibril.woff') format('woff'),
	url('../webfonts/calibril.ttf') format('truetype');;
}
.numbers {
	font-family: var(--jones-font-numerical);
	/*font-size: small;*/
}
/*
 2.) Default Styles
----------------------------------------*/
* {
	margin: 0;
	padding: 0;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	/*font: inherit;*/
	vertical-align: baseline;
}

/* render html5 elements as block */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
	display: block;
}

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

*, 
*:before, 
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

sub, 
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
	font-size: 20px;
}

sub {
	bottom: -0.25em;
}

img {
	width: auto;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
	border: 0;
	-ms-interpolation-mode: bicubic;
	line-height: .5em;
}


/*  Custom animations */
@-webkit-keyframes reveal {
 0% {
 opacity: 0;
}

1% {
 opacity: 0;
 -webkit-transform: scale(0.98) translateY(-15px);
}

80% {
 -webkit-transform: scale(1);
}

100% {
 -webkit-transform: translateY(0);
}
}

@-moz-keyframes reveal {
 0% {
 opacity: 0;
}

1% {
 opacity: 0;
 -moz-transform: scale(0.98) translateY(-15px);
}

80% {
 -moz-transform: scale(1);
}

100% {
 -moz-transform: translateY(0);
}
}


/*= Body 
=======================================================*/
body {
	font-family: var(--jones-font-primary);
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	color: #898864;
	line-height: 26px; 
	letter-spacing: 0.5px;
	/*letter-spacing: normal;*/
	background: #ffffff;
}


/*= Links 
=======================================================*/
a {
	color: #8b8a60;
	text-decoration: none;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	outline: 0;
	cursor: pointer;
}

a:focus, 
a:active, 
a:hover {
	color: #8b8a60;
	text-decoration: underline;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	outline: 0;
}

a:visited {
	outline: 0;
	text-decoration: none;
}


/*= Heading H1, H2, H3, H4, H5, H6, P 
=======================================================*/
h1, 
h2, 
h3, 
h4, 
h5, 
h6 {
	font-family: var(--jones-font-header);
	font-weight: 500;
	color: #8b8a60; 
	padding: 0 0 20px 0;
	margin: 0;
	letter-spacing: 2px;
}

h1 {
	font-size: 48px;
	line-height: 68px; 
	/*letter-spacing: 0.644444px; */
}

h2 {
	font-size: 38px;
	line-height: 60px; 
	/*letter-spacing: 0.555556px;*/
}                                

h3 {
	font-size: 33px;
	line-height: 45px;
}

h4 {
	font-size: 28px; 
	line-height: 38px;
	letter-spacing: 1px;
}
    .ls1 {
		letter-spacing: 1px;
	}
p {
	padding: 0 0 25px 0;
}

h1:last-child, 
h2:last-child, 
h3:last-child, 
h4:last-child,
h5:last-child, 
h6:last-child, 
p:last-child {
	padding-bottom: 0;
}

b, 
strong {
	font-weight: 700;
}

.underline {
	text-decoration: underline;
}

.uppercase {
	text-transform: uppercase;
}

.center {
	text-align: center;
}

@media only screen and (max-width: 1199px) {
h1, 
h2, 
h3, 
h4, 
h5, 
h6 { 
	padding: 0 0 15px 0;
}

h1 {
	font-size: 50px;
	line-height: 60px; 
}

h2 {
	font-size: 40px;
	line-height: 50px;
}

h3 {
	font-size: 30px; 
	line-height: 40px;
}

h4 {
	font-size: 26px; 
	line-height: 36px;
}
}

@media only screen and (max-width: 767px) {
h1 {
	font-size: 40px;
	line-height: 48px; 
}

h2 {
	font-size: 32px;
	line-height: 40px;
}

h3 {
	font-size: 28px; 
	line-height: 36px;
}

h4 {
	font-size: 24px; 
	line-height: 32px;
}
}


/*= Unorder List 
=======================================================*/
ul,
ol {
	list-style: none;
	padding: 0;
}

li { 
	position: relative; 
	padding-bottom: 5px;
	padding-left: 25px;
}

li:last-child {
	padding-bottom: 25px;
}

ul li ul,
ol li ol {
	padding-top: 15px;
	padding-left: 15px;
}

ul:last-child li:last-child,
ol:last-child li:last-child {
	padding-bottom: 0;
}

ul:last-child li:last-child ul,
ol:last-child li:last-child ol {
	padding-bottom: 0;
}

ul li:before {
	content: ""; 
	width: 6px; 
	height: 6px; 
	float: left; 
	background: #8B8A60; 
	border-radius: 360px; 
	position: absolute;
	top: 10px;
	left: 0;
}

ul li ul li {
	padding-left: 15px;
}

ul li ul li:before { 
	content: "";
	width: 6px;
	height: 6px;
	background: #8B8A60;
	border-radius: 360px;
	top: 9px;
}


/*= Order List 
=======================================================*/
ol {
	counter-reset: item;
}

ol > li {
	counter-increment: item;
}

ol > li:before {
	content: counter(item)".";
	font-weight: 500;
	color: #8B8A60;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
	margin: 0;
}


/*= Input
=======================================================*/
textarea, 
select, 
input[type="text"], 
input[type="password"], 
input[type="datetime"], 
input[type="datetime-local"], 
input[type="date"], 
input[type="month"], 
input[type="time"], 
input[type="week"], 
input[type="number"], 
input[type="email"], 
input[type="url"], 
input[type="search"], 
input[type="tel"], 
input[type="color"], 
.uneditable-input {
	border-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	outline: 0;
}

textarea:focus, 
input[type="text"]:focus, 
input[type="password"]:focus, 
input[type="datetime"]:focus, 
input[type="datetime-local"]:focus, 
input[type="date"]:focus, 
input[type="month"]:focus, 
input[type="time"]:focus, 
input[type="week"]:focus, 
input[type="number"]:focus, 
input[type="email"]:focus, 
input[type="url"]:focus, 
input[type="search"]:focus, 
input[type="tel"]:focus, 
input[type="color"]:focus, 
.uneditable-input:focus {
	outline: 0;
}

input, 
textarea, 
select {
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
	-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
	-o-transition: border linear 0.2s, box-shadow linear 0.2s;
	transition: border linear 0.2s, box-shadow linear 0.2s;
}

label {
	width: 100%;
	float: left;
	font-family: var(--jones-font-primary);
	font-weight: 400;
	font-size: 16px;
	color: #3d3d3d;
	line-height: 16px;
	letter-spacing: normal;
	text-transform: none;
	padding: 0 0 10px 0;
	margin: 0;
}

textarea,
select, 
input[type="text"], 
input[type="password"], 
input[type="datetime"], 
input[type="datetime-local"], 
input[type="date"], 
input[type="month"], 
input[type="time"],
input[type="week"], 
input[type="number"], 
input[type="email"], 
input[type="url"], 
input[type="search"], 
input[type="tel"], 
input[type="color"], 
.uneditable-input {
	width: 100%;
	height: 54px;
	float: left;
	font-family: var(--jones-font-primary);
	font-weight: 400;
	font-size: 16px;
	color: #3d3d3d;
	line-height: 26px;
	letter-spacing: normal;
	background: none;
	border: 1px solid #999999;
	border-radius: 8px;
	outline: none;
	position: relative;
	padding: 13px 13px;
	margin: 0;
}

textarea {
	height: 180px;
	white-space: normal;
	outline: none;
	resize: none;
	padding-top: 15px;
	padding-bottom: 15px;
}

select {
	background-image: url(../img/select-arrow-down.svg);
	background-size: 16px auto;
	background-repeat: no-repeat;
	background-position: top 21px right 25px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding-top: 0;
	padding-right: 65px;
	padding-bottom: 0;
}

select::-ms-expand {
	display:none;
}

select.colorize option:not([disabled]) {
	color: #666666;
}

select.colorize option.def:not([disabled]),
select.colorize.empty:not([disabled]) {
	color: #666666;
}

::-webkit-input-placeholder,
::-webkit-textarea-placeholder {
	color: #666666;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	color: #666666;
}

::-moz-placeholder {
	color: #666666;
}

::-ms-input-placeholder {
	color: #666666;
}


/* #Buttons
================================================== */
.btn,
.button,
input[type="button"],
input[type="submit"] {
	width: auto;
	height: auto;
	float: none;
	display: inline-block;
	vertical-align: middle;
	font-family: var(--jones-font-primary);
	font-weight: 500;
	font-size: 22px;
	color: #ffffff;
	line-height: 30px;
	letter-spacing: normal;
	text-align: center; 
	text-transform: uppercase;
	text-decoration: none;
	white-space: normal;
	background: #8B8A60;
	border: none;
	border-radius: 8px;
	box-shadow: none;
	overflow: hidden;
	position: relative;
	z-index: 1;
	cursor: pointer;
	outline: 0;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	padding: 12px 30px;
	margin: 0;
}

.btn::before,
.button::before {
	content: "";
	width: 0;
	height: 100%;
	float: left;
	background: #787638;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus,
.btn.active,
.btn.active:focus,
.button:hover,
.button:focus,
.button:active,
.button:active:focus,
.button.active,
.button.active:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="button"]:active:focus,
input[type="button"].active,
input[type="button"].active:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="submit"]:active:focus,
input[type="submit"].active,
input[type="submit"].active:focus,
.btn:not(:disabled):not(.disabled).active, 
.button:not(:disabled):not(.disabled):active {
	color: #ffffff;
	text-decoration: none;
	box-shadow: none; 
	outline: 0;
}

input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="button"]:active:focus,
input[type="button"].active,
input[type="button"].active:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="submit"]:active:focus,
input[type="submit"].active,
input[type="submit"].active:focus {
	background: #787638;
}

.btn:hover:before,
.btn:focus:before,
.btn:active:before,
.btn:active:focus:before,
.btn.active:before,
.btn.active:focus:before,
.button:hover:before,
.button:focus:before,
.button:active:before,
.button:active:focus:before,
.button.active:before,
.button.active:focus:before {
	width: 100%;
}

.btn:focus,
.button:focus,
input[type="button"]:focus,
input[type="submit"]:focus {
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: 2px;
}

.disabled {
	cursor: not-allowed;
	filter: alpha(opacity=65);
	opacity: .65;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
	cursor: not-allowed;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	box-shadow: none;
	opacity: .65;
}

a.btn.disabled,
fieldset[disabled] a.btn {
	pointer-events: none;
}

.btn-out {
	float: none;
	display: inline-block;
	vertical-align: top;
	margin: 10px -20px -20px -20px;
}

.btn-out a {
	margin: 0 20px 20px 20px;
}

@media only screen and (max-width: 1199px) {
.btn,
.button,
input[type="button"],
input[type="submit"] {
	font-size: 20px;
}
}

@media only screen and (max-width: 767px) {
.btn,
.button,
input[type="button"],
input[type="submit"] {
	font-size: 18px;
	line-height: 26px;
}
}


/*= Container - Main
=======================================================*/
#container-main {
	width: 100%;
	float: left; 
	overflow: hidden;
	position: relative;
}

.container {
	width: 100% !important;
	max-width: 1700px;
	margin: 0 auto;
	padding: 0 40px;
}

@media only screen and (max-width: 767px) {
.container {
	max-width: 667px;
	padding: 0 20px;
}
}


/* Vertical Align - Middle */
.outer-bg {
	width: 100%;
	height: 100%;
	float: none;
	display: table;
	margin: 0 auto
}

.inner-bg {
	width: 100%;
	height: 100%;
	float: none;
	display: table-cell;
	vertical-align: middle;
}


/* Search - Box */
.search-box {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 70px;
}

.search-box:last-child {
	margin-bottom: 0;
}

.search-box form {
	width: 100%;
	position: relative;
	padding: 0;
	margin: 0;
}

.search-box form select, 
.search-box form textarea, 
.search-box form input[type="text"], 
.search-box form input[type="password"], 
.search-box form input[type="datetime"], 
.search-box form input[type="datetime-local"], 
.search-box form input[type="date"], 
.search-box form input[type="month"], 
.search-box form input[type="time"], 
.search-box form input[type="week"], 
.search-box form input[type="number"], 
.search-box form input[type="email"], 
.search-box form input[type="url"], 
.search-box form input[type="search"], 
.search-box form input[type="tel"], 
.search-box form input[type="color"], 
.search-box form .uneditable-input {
	width: 100%;
	height: 41px;
	float: left;
	font-size: 14px;
	color: #8b8a60;
	line-height: 18px;
	background: none !important;
	border: none;
	box-shadow: none;
	border-radius: 7px;
	padding: 8px 46px 8px 18px;
}

.search-box form select:focus, 
.search-box form textarea:focus, 
.search-box form input[type="text"]:focus, 
.search-box form input[type="password"]:focus, 
.search-box form input[type="datetime"]:focus, 
.search-box form input[type="datetime-local"]:focus, 
.search-box form input[type="date"]:focus, 
.search-box form input[type="month"]:focus, 
.search-box form input[type="time"]:focus, 
.search-box form input[type="week"]:focus, 
.search-box form input[type="number"]:focus, 
.search-box form input[type="email"]:focus, 
.search-box form input[type="url"]:focus, 
.search-box form input[type="search"]:focus, 
.search-box form input[type="tel"]:focus, 
.search-box form input[type="color"]:focus, 
.search-box form .uneditable-input:focus {
	box-shadow: rgba(139, 138, 96, .20) 0 0 10px;
}

.search-box form .btn, 
.search-box form .button, 
.search-box form input[type="button"], 
.search-box form input[type="submit"] {
	min-width: inherit;
	width: 46px;
	height: 41px;
	float: right;
	background: url(../img/search.svg) no-repeat center center;
	background-size: 16px auto;
	box-shadow: none;
	border-radius: 7px;
	border: none;
	text-indent: -9999px;
	padding: 0;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}

.search-box form .btn:hover,
.search-box form .btn:focus,
.search-box form .btn:active,
.search-box form .btn:active:focus,
.search-box form .btn.active,
.search-box form .btn.active:focus,
.search-box form .button:hover,
.search-box form .button:focus,
.search-box form .button:active,
.search-box form .button:active:focus,
.search-box form .button.active,
.search-box form .button.active:focus,
.search-box form input[type="button"]:hover,
.search-box form input[type="button"]:focus,
.search-box form input[type="button"]:active,
.search-box form input[type="button"]:active:focus,
.search-box form input[type="button"].active,
.search-box form input[type="button"].active:focus,
.search-box form input[type="submit"]:hover,
.search-box form input[type="submit"]:focus,
.search-box form input[type="submit"]:active,
.search-box form input[type="submit"]:active:focus,
.search-box form input[type="submit"].active,
.search-box form input[type="submit"].active:focus,
.search-box form .btn:not(:disabled):not(.disabled).active, 
.search-box form .btn:not(:disabled):not(.disabled):active  {
	background: url(../img/search.svg) no-repeat center center;
	background-size: 16px auto;
}


/* 
 3.) Header
----------------------------------------*/
#header-main {
	width: 100%;
	float: none; 
	display: inline-block; 
	vertical-align: top; 
	position: relative; 
	z-index: 2;
	padding: 25px 0;
}

#header-main .logo { 
	float: left;
	height: 58px; 
	line-height: 58px; 
}

#header-main .logo img { 
	max-height: 66px;
}

#header-main .search-box {
	width: 244px;
	float: right;
	margin: 9px 0 0 0;
}

#header-main .nav-top { 
	width: 100%; 
	float: left;
	margin-bottom: 36px; 
}

#header-main .nav-top:last-child { 
	margin-bottom: 0; 
}

#header-main .menu-left {
	width: 50%; 
	float: left;
	padding-right: 20px; 
}

#header-main .menu-left ul {
	float: left;
	padding: 0;
	margin: 0 -40px -10px 0;
}

#header-main .menu-left ul li {
	float: left;
	padding: 0;
	margin: 0 40px 10px 0;
}

#header-main .menu-left ul li:before {
	display: none;
}

#header-main .menu-left ul li a {
	height: 28px;
	float: left; 
	font-weight: 500; 
	font-size: 20px;
	color: #8b8a60;
	line-height: 28px;
	letter-spacing: 0.22px;
	text-decoration: none;
	/*text-transform: uppercase;*/
	position: relative;
}

#header-main .menu-left ul li a:after {
	content: "";
	width: 0;
	height: 2px;
	float: left;
	background: #8b8a60;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute; 
	bottom: -2px;
	left: 50%;
}

#header-main .menu-left ul li a:hover:after,
#header-main .menu-left ul li a:focus:after,
#header-main .menu-left ul li.active a:hover:after {
	width: 100%;
	left: 0;
}

#header-main .menu-right {
	width: 50%; 
	float: left;
	padding-left: 20px;	
}

#header-main .menu-right ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: flex-end;
	padding: 0;
	margin: 0 0 -10px -40px;
}

#header-main .menu-right ul li {
	float: left;
	padding: 0;
	margin: 0 0 10px 40px;
}

#header-main .menu-right ul li:before {
	display: none;
}

#header-main .menu-right ul li a {
	height: 28px;
	float: left; 
	font-weight: 500; 
	font-size: 17px;
	color: #8b8a60;
	line-height: 28px;
	letter-spacing: 0.17px;
	text-decoration: none;
	position: relative;
	/*text-transform: uppercase;*/
}

#header-main .menu-right ul li a:after {
	content: "";
	width: 0;
	height: 2px;
	float: left;
	background: #8b8a60;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute; 
	bottom: -2px;
	left: 50%;
}

#header-main .menu-right ul li a:hover:after,
#header-main .menu-right ul li a:focus:after,
#header-main .menu-right ul li.active a:hover:after {
	width: 100%;
	left: 0;
}

#header-main .menu-btn {
	width: 27px;
	height: 22px;
	float: left;
	cursor: pointer;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 2;
	margin: -11px 0 0 0;
}

#header-main .menu-btn .icon-bar {
	width: 100%;
	float: left;
	text-decoration: none;
	position: relative;
}

#header-main .menu-btn .icon-bar span {
	width: 100%;
	height: 3px;
	float: left;
	background: #8b8a60;
	border-radius: 900px;
	position: relative;
	margin: 9.5px 0;
}

#header-main .menu-btn .icon-bar span:before {
	content: "";
	width: 100%;
	height: 3px;
	float: left;
	background: #8b8a60;
	border-radius: 900px;
	position: absolute;
	top: -9.5px;
	left: 0;
}

#header-main .menu-btn .icon-bar span:after {
	content: "";
	width: 100%;
	height: 3px;
	float: left;
	background: #8b8a60;
	border-radius: 900px;
	position: absolute;
	top: 9.5px;
	left: 0;
}

#header-main .cart-btn {
	height: 28px;
	float: right;
	font-size: 24px;
	color: #8b8a60;
	line-height: 28px;
	position: absolute;
	top: 50%;
	right: 22px;
	z-index: 2;
	margin: -14px 0 0 0;
}
#basket_count {
	margin-left: 5px;
}
#header-main .nav-btm { 
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	padding: 0 66px 0 66px; 
}

@media only screen and (max-width: 1399px) {
#header-main .menu-left ul {
	margin: 0 -30px -10px 0;
}

#header-main .menu-left ul li {
	margin: 0 30px 10px 0;
}

#header-main .menu-left ul li a {
	font-size: 18px;
}

#header-main .menu-right ul {
	margin: 0 0 -10px -30px;
}

#header-main .menu-right ul li {
	margin: 0 0 10px 30px;
}

#header-main .menu-right ul li a {
	font-size: 16px;
}
}

@media only screen and (max-width: 1279px) {
#header-main .menu-left ul {
	margin: 0 -25px -10px 0;
}

#header-main .menu-left ul li {
	margin: 0 25px 10px 0;
}

#header-main .menu-left ul li a {
	font-size: 16px;
}

#header-main .menu-right ul {
	margin: 0 0 -10px -25px;
}

#header-main .menu-right ul li {
	margin: 0 0 10px 25px;
}

#header-main .menu-right ul li a {
	font-size: 16px;
}
}

@media only screen and (max-width: 1199px) {
#header-main .menu-left {
	display: none;
}

#header-main .menu-right {
	width: 100%;
}

#header-main .menu-right ul {
	margin: 0 0 -10px -30px;
}

#header-main .menu-right ul li {
	margin: 0 0 10px 30px;
}

#header-main .menu-right ul li a {
	font-size: 17px;
}
	.news-articles .news-list .article-out {
		flex-wrap: wrap;
	}
}

@media only screen and (max-width: 767px) {
#header-main {
	padding: 20px 0;  
}

#header-main .logo {
	height: 48px; 
	line-height: 48px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 5; 
}

#header-main .logo img { 
	max-height: 48px; 
}

#header-main .nav-top { 
	margin-bottom: 0; 
}

#header-main .search-box.header-search,
#header-main .menu-left,
#header-main .menu-right {
	display: none;
}

#header-main .nav-btm {
	height: 50px;
}
}
.search-box.side-nav-search {
	float: unset !important;
}

/* Menu - Sidebar */
.menu-sidebar {
	width:100%;
	max-width:300px;
	height:100%;
	float:right;
	display:none;
	background:#ffffff;
	box-shadow:rgba(0, 0, 0, 0.27) 0 0 15px;
	position:fixed;
	top:0;
	left:0;
	z-index:1000;
	overflow:auto;
	padding:50px 30px 60px 30px;
}

.menu-sidebar h2 {
	padding:0 40px 30px 0;
}

.menu-sidebar ul {
	width:100%;
	float:left;
	padding:0;
	margin:0;
}

.menu-sidebar ul li {
	width:100%;
	float:left;
	font-weight:500;
	font-size:30px;
	color:#3d3d3d;
	line-height:36px;
	border-bottom:1px solid #D8D8D8;
	padding:0;
	margin:0;
}

.menu-sidebar ul li:before {
	display:none;
}
	
.menu-sidebar ul li a {
	width:100%;
	float:left;
	color:#3d3d3d;
	text-decoration:none;
	position:relative;
	padding:36px 50px 36px 0;
}

.menu-sidebar ul li a:before {
	content:"\f078";
	font-family:"Font Awesome 5 Pro";
	font-size:70%;
	font-weight:400;
	color:#3d3d3d;
	line-height:1em;
	text-align:center;
	-webkit-transition:all .25s ease-out;
	-moz-transition:all .25s ease-out;
	-o-transition:all .25s ease-out;
	transition:all .25s ease-out;
	position:absolute;
	top:50%;
	right:0;
	transform:translate(0, -50%);
}

.menu-sidebar ul li a:focus, 
.menu-sidebar ul li a:active, 
.menu-sidebar ul li a:hover {
	color:#3d3d3d;
}

.menu-sidebar ul li ul {
	display:none;
	padding:0 0 30px 20px;
	margin:-13px 0 0 0;
}

.menu-sidebar ul li ul li {
	font-size:18px;
	line-height:28px;
	border-bottom:none;
	padding:0;
	margin:0;
}

.menu-sidebar ul li ul li a {
	padding-top:7px;
	padding-bottom:7px;
}
	
.menu-sidebar ul li ul li a:before {
	font-size:120%;
}

.menu-sidebar ul li ul li a:focus, 
.menu-sidebar ul li ul li a:active, 
.menu-sidebar ul li ul li a:hover {
	color:#3d3d3d;
}

.menu-sidebar .icon-close {
	position:absolute;
	top:55px;
	right:60px;
}

.menu-sidebar .icon-close a {
	font-size:35px;
	color:#3b3b3b;
	line-height:1em;
	text-decoration:none
}

@media only screen and (max-width: 1399px) {
.menu-sidebar {
	max-width:420px;
	padding:50px 40px 60px 40px;
}

.menu-sidebar h2 {
	font-size:40px;
	line-height:50px;
	padding:0 40px 30px 0;
}

.menu-sidebar ul li {
	font-size:26px;
	line-height:32px;
}

.menu-sidebar ul li a {
	padding:25px 40px 25px 0;
}

.menu-sidebar ul li ul {
	padding:0 0 19px 20px;
	margin:-13px 0 0 0;
}

.menu-sidebar ul li ul li a:before {
	font-size:103.17%;
}

.menu-sidebar .icon-close {
	right:40px;
}
}

@media only screen and (max-width: 767px) {
.menu-sidebar {
	max-width:300px;
	padding:40px 30px 50px 30px;
}

.menu-sidebar h2 {
	font-size:32px;
	line-height:40px;
	padding:0 40px 20px 0;
}

.menu-sidebar ul li {
	font-size:24px;
	line-height:30px;
}

.menu-sidebar ul li a {
	padding:20px 40px 20px 0;
}
	
.menu-sidebar ul li ul {
	padding:0 0 16px 20px;
	margin:-11px 0 0 0;
}

.menu-sidebar ul li ul li a:before {
	font-size:93.33%;
}

.menu-sidebar .icon-close {
	top:45px;
	right:30px;
}

.menu-sidebar .icon-close a {
	font-size:30px;
}
}


/* Basket - Popup */
.basket-popup {
	width:100%;
	max-width:400px;
	height:100%;
	float:right;
	display:none;
	background:#ffffff;
	box-shadow:rgba(0, 0, 0, 0.27) 0 0 20px;
	position:fixed;
	top:0;
	right:0;
	z-index:1000;
	overflow:auto;
	padding:60px 40px 71px 40px;
}
#basket-popup .btn-out {
	margin: 0px;
	margin-top: 20px;
}
.basket-popup h3 {
	font-family: var(--jones-font-header);
	font-weight:500;
	color:#3d3d3d;
	padding:0 40px 20px 0;
}

.basket-popup .figure-box {
	width:100%;
	height:49px;
	float:left;
	border:1px solid #D5D5D5;
	border-radius:3px;
	margin-bottom:25px;
}

.basket-popup .toggle-switch {
	width: 100%;
	float: unset;
	text-align: left;
	margin-bottom: 20px;
	display: flex;
	justify-content: flex-end;
}

.basket-popup .toggle-switch .switch-btn {
	cursor:pointer;
	margin-left:10px;
}

.basket-popup .toggle-switch .switch-btn img {
	max-height:30px;
}

.basket-popup .product-table-out {
	width:100%;
	overflow:visible;
	margin-bottom:35px;
}

.basket-popup .product-table-out:last-child {
	margin-bottom:0;
}

.basket-popup .product-table {
	width:100%;
	overflow:visible;
	margin-bottom:55px;
}

.basket-popup .product-table-slim {
	width:100%;
	overflow:hidden;
	margin-bottom:0px;
}

.basket-popup .product-table:last-child {
	margin-bottom:0;
}

.basket-popup .product-table h4 {
	font-family: var(--jones-font-primary);
	font-weight:500;
	font-size:16px;
	color:#3d3d3d;
	line-height:26px;
	padding-bottom:0;
	margin-bottom:15px;
}

.basket-popup .product-table h4 em img {
	max-height:37px;
	margin-right:15px;
}

.basket-popup .product-table .prod-name {
	margin-bottom: -13px;
	margin-top: -12px;
}

.basket-popup .product-table ul {
	width:100%;
	padding:0;
	margin:0;
}

.basket-popup .product-table ul li {
	display:-ms-flexbox;
	display:flex;
	/*-ms-flex-wrap:wrap;*/
	/*flex-wrap:wrap;*/
	align-items:center;
	padding:0;
	margin:0 0 8px 0;
	justify-content: space-between;
	position: relative;
}

.basket-popup .product-table ul li:last-child {
	margin-bottom:0;
}

.basket-popup .product-table ul li:before {
	display:none;
}

.basket-popup .product-table ul li .left-l {
	/*width:52.84%;*/
	/*word-break: break-all;*/
	padding:6px 10px 6px 0;
}

.basket-popup .product-table ul li .right-r {
	/*width:47.16%;*/
	font-weight:500;
	text-align:right;
	position:relative;
	z-index:1;
	padding:6px 0;
	display: flex;
}

.basket-popup .product-table ul li .right-r:before {
	content:"";
	width:100%;
	height:1px;
	float:left;
	background:#a8a8a8;
	position:absolute;
	bottom:0;
	left:0;
}

.basket-popup .btn-out {
	width:100%;
	margin-top:50px;
}
	
.basket-popup .btn-out .btn, 
.basket-popup .btn-out .button, 
.basket-popup .btn-out input[type="button"], 
.basket-popup .btn-out input[type="submit"] {
	width:100%;
}

.basket-popup .icon-close {
	position:absolute;
	top:68px;
	right:71px;
}

.basket-popup .icon-close a {
	font-size:35px;
	color:#3b3b3b;
	line-height:1em;
	text-decoration:none;
}

@media only screen and (max-width: 1399px) {
.basket-popup {
	max-width:420px;
	padding:50px 50px 50px 50px;
}

.basket-popup .icon-close {
	top:57px;
	right:50px;
}
}

@media only screen and (max-width: 767px) {
.basket-popup {
	max-width:400px;
	padding: 20px 30px 30px 30px;
}

.basket-popup h3 {
	padding-bottom:30px;
}

.basket-popup .product-table {
	margin-bottom:40px;
}

.basket-popup .product-table ul li .left-l {
	/*width:70%;*/
}

.basket-popup .product-table ul li .right-r {
	/*width:30%;*/
}

.basket-popup .icon-close {
	top:25px;
	right:30px;
}

.basket-popup .icon-close a {
	font-size:30px;
}
}
.product-list .article .product-table ul li:nth-child(2n) {
	background: #0000000a;
}

/* 3.) Content - Main 
----------------------------------------*/
#content-main {
	width: 100%;
	float: left;
	/*padding-bottom: 40px;*/
}

/* Banner */
.banner-main {
	width:100%;
	color:#ffffff;
	background:#000000;
	overflow:hidden;
}
.banner-main img {
	width: 100%;
}
.banner-main-alt {
	background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.73)),
	url('https://images.pexels.com/photos/2306278/pexels-photo-2306278.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
	/*background: url('https://images.pexels.com/photos/2306278/pexels-photo-2306278.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');*/
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.banner-main-alt .banner-cont .aside {
	width: 40%;
	padding: 50px 2% !important;
	margin-right: -2.5%;
	/*background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(220,192,146,0) 100%);*/
}

  .banner-main-alt .container  {
	  /*max-width: unset;*/
	  /*padding: 0px;*/
  }
  
.banner-main .banner-cont {
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	align-items:center;
}

.banner-main .banner-cont .figure {
	width:62.5%;
	text-align:center;
	overflow:hidden;
}

.banner-main .banner-cont .figure img {
	width:100%;
}
	
.banner-main .banner-cont .aside {
	width:40%;
	position:relative;
	z-index:1;
	padding:50px 0;
	margin-right:-2.5%;
}

.banner-main .banner-cont .aside h1 {
	font-family: var(--jones-font-primary);
	font-weight:500;
	font-size:38px;
	color:#ffffff;
	line-height:60px;
	letter-spacing:0.744444px;
	padding-bottom:28px;
}

.banner-main .banner-cont .aside h1:last-child {
	padding-bottom:0;
}

.banner-main .banner-cont .aside .sub-title {
	font-family: var(--jones-font-primary);
	font-weight:700;
	font-size:32px;
	color:#BDBC8A;
	line-height:40px;
	letter-spacing:0.355556px;
	text-transform:capitalize;
	padding:0 0 15px 0;
}

.banner-main .banner-cont .aside .sub-title:last-child {
	padding-bottom:0;
}

.banner-main .banner-cont .aside .btn, 
.banner-main .banner-cont .aside .button, 
.banner-main .banner-cont .aside input[type="button"], 
.banner-main .banner-cont .aside input[type="submit"] {
	width:100%;
	max-width:209px;
	font-size:16px;
	line-height:26px;
	letter-spacing:0.177778px;
	background: #8B8A60 url(../img/btn-bg.png) repeat top left;
	border-radius:4px;
	padding:10px 25px;
}

.banner-main .banner-cont .aside .btn-out {
	padding-bottom:30px;
}

.banner-main .banner-cont .aside .btn-out:last-child {
	padding-bottom:0;
}

.banner-main .banner-cont .aside .logos-out {
	width:100%;
	overflow:hidden;
}

.banner-main .banner-cont .aside .logos-out ul {
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	align-items:center;
	margin:0 -20px -20px -20px;
}

.banner-main .banner-cont .aside .logos-out ul li {
	padding:0 20px 20px 20px;
	margin:0;
}

.banner-main .banner-cont .aside .logos-out ul li:before {
	display:none;
}
	
.banner-main .banner-cont .aside .logos-out ul li img {
	max-width:100%;
}

@media only screen and (max-width: 1599px) {
.banner-main .banner-cont .aside .sub-title {
	font-size:28px;
	line-height:36px;
}

.banner-main .banner-cont .aside h1 {
	font-size:60px;
}
}

@media only screen and (max-width: 1399px) {
.banner-main .banner-cont .aside .sub-title {
	font-size:26px;
	line-height:34px;
}

.banner-main .banner-cont .aside h1 {
	font-size:50px;
	line-height:56px;
}
}

@media only screen and (max-width: 1199px) {
.banner-main .banner-cont .figure {
	width:50%;
}

.banner-main .banner-cont .aside {
	width:50%;
	margin-right:0;
}

.banner-main .banner-cont .aside h1 {
	font-size:40px;
	line-height:46px;
	padding-bottom:20px;
}
	
.banner-main .banner-cont .aside .sub-title {
	font-size:24px;
	line-height:30px;
	padding:0 0 10px 0;
}
}

@media only screen and (max-width: 767px) {
.banner-main .banner-cont .figure {
	width:100%;
}

.banner-main .banner-cont .aside {
	width:100%;
	margin-right:0;
}
	
.banner-main .banner-cont .aside h1 {
	font-size:36px;
	line-height:40px;
}

.banner-main .banner-cont .aside .sub-title {
	font-size:20px;
	line-height:26px;
	padding:0 0 10px 0;
}
}


/* Feature - List */
.feature-list .container {
	max-width: 1400px;
	/*margin-top: 20px;*/
}
.feature-list {
	width:100%;
	background:#F4F4F4;
	overflow:hidden;
	padding:40px 0;
}

.feature-list h2 {
	padding-bottom:27px;
	text-align: center;
}

.feature-list .article-out {
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	margin:0 -15px -30px -15px;
}

.feature-list .article {
	width:25%;
	padding:0 15px 30px 15px;
}

.feature-list .article .box {
	width:100%;
	float:left;
	font-weight:inherit;
	color:inherit;
	text-decoration:none;
	border-radius:0px;
	position:relative;
}

.feature-list .article .box .figure {
	width:100%;
	text-align:center;
	overflow:hidden;
	position:relative;
	border-radius:0px;
}

.feature-list .article .box .figure img {
	width:100%;
	-webkit-transition-duration:0.3s;
	transition-duration:0.3s;
	-webkit-transition-property:transform;
	transition-property:transform;
	-webkit-transform:translateZ(0);
	-moz-transform:translateZ(0);
	transform: translateZ(0);
	border-radius:0px;
}

.feature-list .article .box .figure:before {
	content:"";
	width:200%;
	height:178px;
	float:left;
	box-shadow:inset rgba(0, 0, 0, 0.63) 0 -80px 100px;
	position:absolute;
	bottom:0;
	left:-50%;
	z-index:1;
	display: none;
}

.feature-list .article .box .aside {
	width:100%;
	height:100%;
	float:left;
	font-family: var(--jones-font-primary);
	font-weight:600;
	font-size:30px;
	color:#ffffff;
	line-height:1em;
	letter-spacing:0.333333px;
	/*text-transform:uppercase;*/
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	position:absolute;
	top:0;
	left:0;
	z-index:1;
	/*padding:20px 20px 15px 20px;*/
	justify-content: center;
	text-align: center;
	display: none;
}

.feature-list .article .box .aside .category-link {
	width:100%;
	float:left;
	position:relative;
}

.feature-list .article .box .aside .category-link:before {
	content:"\f061";
	font-family:"Font Awesome 5 Pro";
	font-size:85%;
	font-weight:400;
	color:#ffffff;
	line-height:1em;
	text-align:center;
	-webkit-transition:all .25s ease-out;
	-moz-transition:all .25s ease-out;
	-o-transition:all .25s ease-out;
	transition:all .25s ease-out;
	position:absolute;
	top:33%;
	right:0;
	transform:translate(0, -50%);
	display: none;
}
	
.feature-list .article .box:hover .figure img, 
.feature-list .article .box:focus .figure img, 
.feature-list .article .box:active .figure img {
	-webkit-transform:scale(1.1);
	-moz-transform:scale(1.1);
	transform:scale(1.1);
}

.feature-list .article .box:hover .aside {
	display: flex;
	background: #00000059;
}

@media only screen and (max-width: 1599px) {
.feature-list .article .box .aside {
	font-size:28px;
}
}

@media only screen and (max-width: 1399px) {
.feature-list .article .box .aside {
	font-size:26px;
}
}
@media only screen and (max-width: 1199px) {
.feature-list {
	padding:60px 0 80px 0;
}

.feature-list .article {
	width:50%;
}

.feature-list .article .box .aside {
	font-size:24px;
}
}
@media only screen and (max-width: 767px) {
.feature-list {
	padding:40px 0 60px 0;
}

.feature-list h2 {
	padding-bottom:20px;
}

/*.feature-list .article {*/
/*	width:100%;*/
/*}*/

.feature-list .article .box .aside {
	font-size:22px;
}
}


/* Split - Content */
.split-cont {
	width:100%;
	overflow:hidden;
	padding:40px 0;
}

.split-cont .inner-cont {
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	align-items:center;
	margin:0 0 -40px 0;
}
	
.split-cont .left-cl, .split-cont .right-cl {
	width:100%;
	padding:0 0 40px 0;
}

.split-cont .figure {
	width:100%;
	text-align:center;
	overflow:hidden;
	position:relative;
}

.split-cont .figure img {
	width:100%;
	-webkit-transition-duration:0.3s;
	transition-duration:0.3s;
	-webkit-transition-property:transform;
	transition-property:transform;
	-webkit-transform:translateZ(0);
	-moz-transform:translateZ(0);
	transform: translateZ(0);
}
	
.split-cont .figure:hover img, 
.split-cont .figure:focus img, 
.split-cont .figure:active img {
	-webkit-transform:scale(1.1);
	-moz-transform:scale(1.1);
	transform:scale(1.1);
}

.split-cont .aside {
	width:100%;
	float:right;
}
.split-cont.grey-bg h1 {
	font-size: 32px;
	line-height: 32px;
}
.split-cont.grey-bg .container {
	max-width: 1400px;
}
@media only screen and (min-width: 768px) {
.split-cont .inner-cont {
	margin:0 -15px;
}

.split-cont .left-cl, .split-cont .right-cl {
	width:50%;
	padding:0 15px;
}

.split-cont .aside {
	max-width:680px;
	padding-left:10px;
}
}

@media only screen and (max-width: 1199px) {
.split-cont {
	padding:70px 0;
}
}

@media only screen and (max-width: 767px) {
.split-cont {
	padding:50px 0;
}
}


/* News - List */
.news-articles {
	width:100%;
	overflow:hidden;
}
.news-articles .container {
	max-width: 1400px;
}
.news-articles .box {
	display:-ms-flexbox;
	display:flex;
	justify-content: center;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	align-items:center;
	background:url(../img/news-bg.png) repeat top left;
	padding:45px 50px;
	margin-top: 20px;
}
.news-articles .container h2 {
	text-align: left;
	width: 100%;
}
.news-articles h2 {
	width:21.33%;
	padding:10px 30px 0 0px;
}

.news-articles .news-list {
	width:100%;
}

.news-articles .news-list .article {
	padding:0;
	position: relative;
	flex-grow: 1;
	max-width: 48%;
}
.news-articles .news-list .article .aside {
	display: none;
}
.news-articles .news-list .article:hover .aside {
	display: flex;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #00000059;
	height: 100%;
	width: 100%;
	justify-content: center;
	font-size: 30px;
	font-weight: 600;
	line-height: 1em;
	letter-spacing: 0.333333px;
	color: white;
	cursor: pointer;
}
.news-articles .news-list .article:hover .aside .category-link {
	align-self: center;
}
.news-articles .news-list .article .figure {
	width:100%;
	text-align:center;
	overflow:hidden;
	position:relative;
}

.news-articles .news-list .article .figure img {
	width:100%;
	-webkit-transition-duration:0.3s;
	transition-duration:0.3s;
	-webkit-transition-property:transform;
	transition-property:transform;
	-webkit-transform:translateZ(0);
	-moz-transform:translateZ(0);
	transform: translateZ(0);
}

.news-articles .news-list .article .figure:hover img, 
.news-articles .news-list .article .figure:focus img, 
.news-articles .news-list .article .figure:active img {
	-webkit-transform:scale(1.1);
	-moz-transform:scale(1.1);
	transform:scale(1.1);
}

.news-articles .news-list .article-out {
	display:-ms-flexbox;
	display:flex;
	/*-ms-flex-wrap:wrap;*/
	/*flex-wrap:wrap;*/
	margin:0;
	gap: 20px;
}

@media only screen and (max-width: 1399px) {
.news-articles .box {
	padding:40px 40px;
}

.news-articles h2 {
	padding:10px 30px 0 0;
}

.news-articles .news-list .article {
	padding:0 15px 30px 15px;
}
	.new-split-container .news-articles .news-list .article {
		padding:unset;
	}

.news-articles .news-list .article-out {
	margin:0 -15px -30px -15px;
}
}

@media only screen and (max-width: 1199px) {
.news-articles h2 {
	width:100%;
	padding:0 0 20px 0;
}

.news-articles .news-list {
	width:100%;
}
}

@media only screen and (max-width: 767px) {
.news-articles .box {
	padding:30px 20px;
}

.news-articles h2 {
	width:100%;
	padding:0 0 10px 0;
}

.news-articles .news-list {
	width:100%;
}

.news-articles .news-list .article {
	width:45%;
	padding:0 10px 20px 10px;
}

.news-articles .news-list .article-out {
	margin:0 -10px 0px -10px;
}
}


/* 4.) Footer 
----------------------------------------*/
#footer-main {
	width: 100%;
	overflow:hidden;
	padding:40px 0;
	border-top: solid 1px #95946e;
}

#footer-main .pre-footer {
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	align-items:center;
	margin:0 -15px;
}

#footer-main .pre-footer .address-block {
	width:50%;
	padding:0 15px;
}

#footer-main .pre-footer .address-block h3 {
	font-family: var(--jones-font-header);
	font-weight:500;
	font-size:24px;
	line-height:34px;
	padding-bottom:9px;
	cursor: default;
}

#footer-main .pre-footer .address-block h3:last-child {
	padding-bottom:0;
}

#footer-main .pre-footer .address-block p {
	letter-spacing:0.005em;
	padding-bottom:7px;
}

#footer-main .pre-footer .address-block p:last-child {
	padding-bottom:0;
}

#footer-main .pre-footer .address-block p a {
	color:#3d3d3d;
	text-decoration:none;
}

#footer-main .pre-footer .address-block p a:focus, 
#footer-main .pre-footer .address-block p a:active, 
#footer-main .pre-footer .address-block p a:hover {
	color:#8b8a60;
}

#footer-main .pre-footer .logos-out {
	width:50%;
	padding:0 15px;
}

#footer-main .pre-footer .logos-out ul {
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	align-items:center;
	justify-content: right;
	margin:0 -20px -20px -20px;
}

#footer-main .pre-footer .logos-out ul li {
	padding:0 20px 20px 20px;
	margin:0;
}

#footer-main .pre-footer .logos-out ul li:before {
	display:none;
}

#footer-main .pre-footer .logos-out ul li img {
	max-width:100%;
}

@media only screen and (max-width: 1399px) {
#footer-main {
	padding:100px 0;
}
}

@media only screen and (max-width: 1199px) {
#footer-main {
	padding:80px 0;
}
#footer-main .pre-footer .address-block h3 {
	font-size:22px;
	line-height:32px;
	padding-bottom:11px;
}
}
@media only screen and (max-width: 767px) {
#footer-main {
	padding:60px 0;
}

#footer-main .pre-footer {
	margin:0;
}

#footer-main .pre-footer .address-block h3 {
	font-size:20px;
	line-height:30px;
	padding-bottom:13px;
}

#footer-main .pre-footer .address-block {
	width:100%;
	padding:0 0 40px 0;
}

#footer-main .pre-footer .address-block:last-child {
	padding-bottom:0;
}

#footer-main .pre-footer .logos-out {
	width:100%;
	padding:0;
}

#footer-main .pre-footer .logos-out ul {
	justify-content: center;
}
}


/* 5.) Category 
----------------------------------------*/

/* Banner - Inner */
.banner-inner {
	width:100%;
	overflow:hidden;
	position:relative;
}

.banner-inner .figure {
	width:100%;
	text-align:center;
	overflow:hidden;
}

.banner-inner .figure img {
	width:100%;
	min-width:1700px;
	margin:0 -850px;
}

.banner-inner .banner-cont {
	width:100%;
	height:100%;
	float:left;
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	position:absolute;
	top:0;
	left:0;
}

.banner-inner .banner-cont .aside {
	width:100%;
	/*max-width:784px;*/
	float:left;
	font-size:19px;
	/*color:#ffffff;*/
	line-height:26px;
	/*background:rgba(0, 0, 0, 0.11);*/
	/*border-radius:10px;*/
	padding:30px 40px 30px 50px;
}

.banner-inner .banner-cont .aside h1 {
	color:#ffffff;
	padding-bottom:0;
}

.banner-inner .banner-cont .aside p {
	font-weight:500;
}

.banner-inner .banner-cont .aside .sub-title {
	font-family: var(--jones-font-header);
	font-weight:700;
	font-size:32px;
	color:#ffffff;
	line-height:40px;
	letter-spacing:2px;
	text-transform:uppercase;
	padding:0 0 15px 0;
}

.banner-inner .banner-cont .aside .sub-title:last-child {
	padding-bottom:0;
}

@media only screen and (max-width: 1599px) {
.banner-inner .banner-cont .aside .sub-title {
	font-size:28px;
	line-height:36px;
}
}

@media only screen and (max-width: 1399px) {
.banner-inner .banner-cont .aside .sub-title {
	 font-size:26px;
	 line-height:34px;
}
}

@media only screen and (max-width: 1199px) {
.banner-inner .banner-cont .aside .sub-title {
	font-size:24px;
	line-height:30px;
	padding:0 0 10px 0;
}

.banner-inner .banner-cont .aside {
	font-size:18px;
	line-height:26px;
	padding:30px 40px 30px 40px;
}
}

@media only screen and (max-width: 767px) {
.banner-inner .banner-cont .aside {
	max-width:100%;
	font-size:16px;
	line-height:24px;
	padding:30px 20px;
}

.banner-inner .banner-cont .aside .sub-title {
	font-size:20px;
	line-height:26px;
	padding:0 0 10px 0;
}
}


/* Content - Inner*/
.content-inner {
	width:100%;
	overflow:hidden;
	padding:40px 0 140px 0;
}

@media only screen and (max-width: 1199px) {
	.content-inner {
	padding:70px 0 100px 0;
	}
}

@media only screen and (max-width: 767px) {
	.content-inner {
	padding:50px 0 70px 0;
}
}


/* Left - Sidebar */
.left-sidebar {
	width:100%;
	float:left;
	/*background:#f3f3f3 url(../img/sidebar-bg.png) repeat top left;*/
	padding:40px 40px;
	background: #aeaeae17;
}

.left-sidebar h3 {
	font-family: var(--jones-font-header);
	font-weight:500;
	font-size:28px;
	line-height:38px;
	padding-bottom:20px;
	padding-left:20px;
}

.left-sidebar h3:last-child {
	padding-bottom:0;
}

.left-sidebar .back-to {
	width:100%;
	float:none;
	display:inline-block;
	vertical-align:top;
	font-weight:500;
	font-size:15px;
	color:#3D3D3D;
	line-height:25px;
	padding:0 0 17px 0;
}

.left-sidebar .back-to:last-child {
	padding-bottom:0;
}

.left-sidebar .back-to a {
	float:none;
	display:inline-block;
	vertical-align:top;
	color:#3D3D3D;
	text-decoration:none;
	position:relative;
	padding:0 0 0 30px;
}

.left-sidebar .back-to a:before {
	content:"\f177";
	font-family:"Font Awesome 5 Pro";
	font-weight:400;
	font-size:150%;
	line-height:1em;
	position:absolute;
	top:50%;
	left:0;
	transform:translate(0, -50%);
}

.left-sidebar .back-to a:focus, 
.left-sidebar .back-to a:active, 
.left-sidebar .back-to a:hover {
	color: #8b8a60;
}

.left-sidebar .aside {
	width:100%;
	float:left;
	padding:0 0 27px 0;
	margin:0;
}

.left-sidebar .aside:last-child {
	padding-bottom:0;
}

.left-sidebar .aside h4 {
	font-family: var(--jones-font-primary);
	font-weight:500;
	font-size:20px;
	line-height:30px;
	padding:0 0 6px 0;
}

.left-sidebar .aside ul {
	width:100%;
	float:left;
	padding:0 0 0 20px;
	margin:0 0 -2px 0;
}

.left-sidebar .aside ul li {
	width:100%;
	float:left;
	padding:0 0 2px 0;
	margin:0;
}

.left-sidebar .aside ul li:before {
	display:none;
}

.left-sidebar .aside ul li a {
	color:#3d3d3d;
	text-decoration:none;
}

.left-sidebar .aside ul li a:focus, 
.left-sidebar .aside ul li a.active, 
.left-sidebar .aside ul li a:hover {
	font-weight:500;
	color:#3d3d3d;
	text-decoration:underline;
}

.left-sidebar .aside-out {
	width:100%;
	float:left;
	padding:0 0 0 40px;
}

@media only screen and (max-width: 1199px) {
.left-sidebar {
	padding:40px 30px;
}

.left-sidebar h3 {
	font-size:26px;
	line-height:36px;
}
}

@media only screen and (max-width: 767px) {
	.left-sidebar {
		width: 100%;
		background: #f3f3f3;
	}
	.left-sidebar .aside-out {
		 padding: 0;
	}
.left-sidebar h3 {
	font-size:24px;
	line-height:34px;
}
}


/* Product - Details */
.product-details {
	width:100%;
	overflow:hidden;
}

.product-details .left-sidebar {
	width:292px;
	float:left;
	position:relative;
	z-index:1;
	margin-right:-292px;
}

.product-details .product-list {
	width:100%;
	float:left;
	padding-left:337px;
}

@media only screen and (max-width: 1199px) {
	.product-details .left-sidebar {
	width:270px;
	margin-right:-270px;
}

.product-details .product-list {
	padding-left:310px;
}
}
	
@media only screen and (max-width: 767px) {
.product-details .left-sidebar {
	width:100%;
	margin-right:0;
	margin-bottom:50px;
	display: none;
}

.product-details .product-list {
	padding-left:0;
}
	.product-list .article .product-table {
		padding: 10px 10px 10px 10px;
	}

}

.product-list .article .product-table ul li .left-l {
	padding-right: unset !important;
}
.product-list .article .product-table ul li .right-r {
	margin-left: unset !important;
}

/* Product - List */
.product-list {
	width:100%;
	overflow:hidden;
}

.product-list .article {
	width:25%;
	padding:0 11px 15px 11px;
	cursor: pointer;
}

.product-list .article .figure {
	width:100%;
	text-align:center;
	overflow:hidden;
	position:relative;
}

.product-list .article .figure img {
	width:100%;
	-webkit-transition-duration:0.3s;
	transition-duration:0.3s;
	-webkit-transition-property:transform;
	transition-property:transform;
	-webkit-transform:translateZ(0);
	-moz-transform:translateZ(0);
	transform: translateZ(0);
}

.product-list .article .figure:hover img, 
.product-list .article .figure:focus img, 
.product-list .article .figure:active img {
	-webkit-transform:scale(1.1);
	-moz-transform:scale(1.1);
	transform:scale(1.1);
}

.product-list .article .category-title {
	font-size:19px;
	line-height:29px;
	padding: 11px 0;
}

.product-list .article .category-title a {
	color:#3b3b3b;
	text-decoration:none;
}
	
.product-list .article .category-title a:focus, 
.product-list .article .category-title a:active, 
.product-list .article .category-title a:hover {
	color:#8b8a60;
}

.product-list .article .product-table {
	width:100%;
	background:#00000017;
	overflow:hidden;
	padding:10px 20px 10px 20px;
}

.product-list .article .product-table ul {
	width:100%;
	padding:0;
	margin:0;
}

.product-list .article .product-table ul li {
	display:flex;
	/*-ms-flex-wrap:wrap;*/
	/*flex-wrap:wrap;*/
	padding:0;
	margin:0;
	justify-content: space-between;
}

.product-list .article .product-table ul li:before {
	display:none;
}

.product-list .article .product-table ul li .left-l {
	width:100%;
	/*padding-right:60px;*/
	max-width: 80%;
}

.product-list .article .product-table ul li .right-r {
	width:50px;
	font-weight:bold;
	text-align:right;
	position:relative;
	z-index:1;
	margin-left:-75px;
	display:flex;
	align-self: center;
}

.product-list .article-out {
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	/*margin:0 -11px -72px -11px;*/
}

@media only screen and (max-width: 1199px) {
.product-list .article {
width:33.33%;
	padding:0 10px 60px 10px;
}

.product-list .article-out {
	margin:0 -10px -60px -10px;
}
	.feature-list .article .box .aside {
		position: static;
		display: block;
		color: black;
		margin-top: 10px;
	}
	.feature-list .article .box:hover .aside {
		display: flex;
		background: unset;
	}
	.news-list .article .aside {
		position: static !important;
		display: block !important;
		color: black;
		margin-top: 10px;
		font-size: 24px;
		font-weight: bold;
	}
	.news-articles .news-list .article:hover .aside {
		display: flex !important;
		background: unset;
		color: black;
		transform: unset;
		font-size: 24px;
		text-decoration: none;
	}
	.news-articles .news-list .article .figure:hover img, .news-articles .news-list .article .figure:focus img, .news-articles .news-list .article .figure:active img {
		-webkit-transform: unset;
		-moz-transform: unset;
		transform: unset;
	}
}

@media only screen and (max-width: 992px) {
.product-list .article {
	width:50%;
}
}

@media only screen and (max-width: 767px) {
	.product-list .article {
		width: 47%;
		padding: 0 0 10px 0;
		flex-grow: 1;
		max-width: 49.5%;
	}

.product-list .article-out {
	margin:unset;
}
	.product-list .article-out {
		gap: 10px;
	}
}


/* Category - Popup */
.category-popup {
	width:100%;
	max-width:600px;
	height:100%;
	float:right;
	background:#ffffff;
	box-shadow:rgba(0, 0, 0, 0.27) 0 0 20px;
	position: fixed;
	top:0;
	right:0;
	overflow:auto;
	z-index:1000;
	padding: 130px 71px 196px 71px;
}

.category-popup h3 {
	font-family: var(--jones-font-header);
	font-weight:500;
	color:#3d3d3d;
	padding-bottom:25px;
}

.category-popup .figure {
	width:100%;
	text-align:center;
	overflow:hidden;
	margin-bottom:45px;
}

.category-popup .figure:last-child {
	margin-bottom:0;
}

.category-popup .figure img {
	width:100%;
	-webkit-transition-duration:0.3s;
	transition-duration:0.3s;
	-webkit-transition-property:transform;
	transition-property:transform;
	-webkit-transform:translateZ(0);
	-moz-transform:translateZ(0);
	transform: translateZ(0);
}

.category-popup .figure:hover img, 
.category-popup .figure:focus img, 
.category-popup .figure:active img {
	-webkit-transform:scale(1.1);
	-moz-transform:scale(1.1);
	transform:scale(1.1);
}

.category-popup .product-table2 {
	width:100%;
	overflow:hidden;
	margin-bottom:35px;
}

.category-popup .product-table2:last-child {
	margin-bottom:0;
}

.category-popup .product-table2 ul {
	width:100%;
	padding:0;
	margin:0;
}

.category-popup .product-table2 ul:last-child {
	padding-bottom:0;
}

.category-popup .product-table2 ul li {
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	align-items:center;
	padding:0;
	margin:0 0 8px 0;
	justify-content: space-between;
}

.category-popup .product-table2 ul li:last-child {
	margin-bottom:0;
}

.category-popup .product-table2 ul li:before {
	display:none;
}

.category-popup .product-table2 ul li .left-l {
	width:90px;
	padding:6px 10px 6px 0;
	margin-right:-90px;
}

.category-popup .product-table2 ul li .right-r {
	/*width:100%;*/
	font-weight:500;
	text-align:right;
	position:relative;
	z-index:1;
	padding:6px 0 6px 90px;
	max-width: 200px;
}

.category-popup .product-table2 ul li .right-r:before {
	content:"";
	/*width:100%;*/
	height:1px;
	float:left;
	background:#a8a8a8;
	position:absolute;
	bottom:0;
	left:90px;
	display: none;
}

.category-popup .toggle-switch {
	width: 100%;
	float: unset;
	text-align: left;
	margin-bottom: 140px;
	display: flex;
	justify-content: flex-end;
}

.category-popup .toggle-switch .switch-btn {
	cursor:pointer;
	margin:0 10px;
}

.category-popup .toggle-switch .switch-btn img {
	max-height:30px;
}

.category-popup .btn-out {
	width:100%;
	margin-top:0;
}

.category-popup .btn-out .btn, 
.category-popup .btn-out .button, 
.category-popup .btn-out input[type="button"], 
.category-popup .btn-out input[type="submit"] {
	width:100%;
}

.category-popup .icon-close {
	position:absolute;
	top:65px;
	right:71px;
}

.category-popup .icon-close a {
	font-size:35px;
	color:#3b3b3b;
	line-height:1em;
	text-decoration:none
}

.category-popup .product-info {
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	align-items: center;
}

.category-popup .product-info .figure {
	width:134px;
	text-align:center;
	overflow:hidden;
	margin:0 -134px 0 0;
	position:relative;
	z-index:1;
}

.category-popup .product-info .figure img {
	width:100%;
	-webkit-transition-duration:0.3s;
	transition-duration:0.3s;
	-webkit-transition-property:transform;
	transition-property:transform;
	-webkit-transform:translateZ(0);
	-moz-transform:translateZ(0);
	transform: translateZ(0);
}

.category-popup .product-info .figure:hover img, 
.category-popup .product-info .figure:focus img, 
.category-popup .product-info .figure:active img {
	-webkit-transform:scale(1.1);
	-moz-transform:scale(1.1);
	transform:scale(1.1);
}

.category-popup .product-info .aside {
	width:100%;
	padding-left:157px;
}

.category-popup .product-info .aside p {
	line-height:20px;
	padding-bottom:17px;
}

.category-popup .product-info .aside .btn, 
.category-popup .product-info .aside .button {
	width:100%;
	font-size:16px;
	color:#3D3D3D;
	line-height:22px;
	background:none;
	border:1px solid #B7B7B7;
	border-radius:6px;
	padding:14px 20px;
}

.category-popup .product-info .aside .btn em, 
.category-popup .product-info .aside .button em {
	margin-left:8px;
}

.category-popup .product-info .aside .btn::before, 
.category-popup .product-info .aside .button::before {
	display:none;
}

.category-popup .product-info .aside .btn:hover, 
.category-popup .product-info .aside .btn:focus, 
.category-popup .product-info .aside .btn:active, 
.category-popup .product-info .aside .btn:active:focus, 
.category-popup .product-info .aside .btn.active, 
.category-popup .product-info .aside .btn.active:focus, 
.category-popup .product-info .aside .button:hover, 
.category-popup .product-info .aside .button:focus, 
.category-popup .product-info .aside .button:active, 
.category-popup .product-info .aside .button:active:focus, 
.category-popup .product-info .aside .button.active, 
.category-popup .product-info .aside .button.active:focus {
	color: #ffffff;
	background:#B7B7B7;
}

.category-popup .product-info .aside .btn-out {
	position:relative;
	bottom:0;
	padding:0;
	margin-top:0;
}

.category-popup.cont2 {
	padding-bottom:71px;
}

.category-popup.cont2 .btn-out {
	margin-bottom:63px;
}

.category-popup.cont2 .product-table2 ul li .left-l {
	width:52.84%;
	word-break: break-all;
	margin-right:0;
}

.category-popup.cont2 .product-table2 ul li .right-r {
	width:47.16%;
	padding-left:0;
}

.category-popup.cont2 .product-table2 ul li .right-r:before {
	left:0;
}

.category-popup.cont2 .product-info .aside .btn-out {
	margin-bottom:0;
}

@media only screen and (max-width: 1399px) {
.category-popup {
	max-width:420px;
}

.category-popup {
	padding: 90px 50px 115px 50px;
}

.category-popup .icon-close {
	top:45px;
	right:50px;
}

.category-popup .product-info .figure {
	width:100px;
	margin:0 -100px 0 0;
}

.category-popup .product-info .aside {
	width:100%;
	padding-left:120px;
}

.category-popup .toggle-switch {
	margin-bottom:100px;
}

.category-popup.cont2 {
	padding-bottom:50px;
}

.category-popup.cont2 .btn-out {
	margin-bottom:50px;
}
}

@media only screen and (max-width: 767px) {
.category-popup {
	max-width:300px;
}

.category-popup {
	padding: 65px 30px 110px 30px;
}

.category-popup h3 {
	padding-bottom:15px;
}

.category-popup .figure {
	margin-bottom:25px;
}

.category-popup .product-table2 {
	margin-bottom:30px;
}

.category-popup .icon-close {
	top:25px;
	right:30px;
}

.category-popup .icon-close a {
	font-size:30px;
}

.category-popup .product-info .figure {
	width:100%;
	margin:0 0 20px 0;
}

.category-popup .product-info .aside {
	padding-left:0;
}

.category-popup .product-info .aside p {
	line-height:20px;
	padding-bottom:17px;
}

.category-popup .toggle-switch {
	margin-bottom:80px;
}

.category-popup.cont2 {
	padding-bottom:30px;
}

.category-popup.cont2 .btn-out {
	margin-bottom:40px;
}

.category-popup.cont2 .product-table2 ul li .left-l {
	width:70%;
}

.category-popup.cont2 .product-table2 ul li .right-r {
	width:30%;
}
}
     /*DENVER ADDITIONS*/

	 .flex-container {
		 display: flex;
		 justify-content: space-between;
	 }
	 
.privacy-policy-container {
	width: 100%;
	padding:10px;
	margin-top:20px;
	/*background: #f4f4f4;*/
}
.privacy-policy-container h2 {
	font-size: 22px;
	line-height: 26px;
	padding-bottom: 2px;
	padding-top: 10px;
}
.privacy-policy-container p {
	padding-bottom: 5px;
}
.privacy-policy-container input {
	font-size: 14px;
	padding: 5px 20px;
}
#cookie-consent {
	width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    bottom: 0;
    z-index: 99;
}

.cookie-inner {
	display: flex;
}

.two-thirds-col {
	width: 66%;
}
.one-thirds-col {
	width: 33%;
}
.content-page img {
	margin-bottom: 10px;
	width: 100%;
}
.jones-form {
	padding: 10px;
}
.jones-form input {
	display: block;
	margin-bottom: 10px;
}
.jones-form span {
	display: flex;
	width: 100%;
}
.jones-form span input {
	display: inline-block;
	margin-right: 10px;
}
.jones-form input[type="submit"] {
	margin-top: 20px;
}
.jones-form-si {
	max-width: 600px;
	margin: auto;
	text-align: center;
}
.jones-form-si input {
	margin-bottom: 10px;
}
.page-title {
	text-align: center;
	margin-bottom: 20px;
	margin-top: 20px;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.address-wrapper p {
	padding-bottom: 0px;
}
.address-wrapper {
	margin-bottom: 10px;
}
/*FADE APPLIED TO HOME BANNER LEFT AND RIGHT*/
#home-banner {
	-webkit-mask-image: linear-gradient(90deg, transparent 5%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, transparent 95%);
}
/*FONT AWESOME PLUS AND MINUS CART AND CATEGORY PAGE*/
.product-list .article .product-table ul li .right-r i {
	line-height: 30px;
	background: #8686862e;
	width: 30px;
	height: 30px;
	text-align: center;
	font-size: 10px;
}
.product-list .article .product-table ul li .right-r i:hover {
	cursor: pointer;
}
.basket-popup .product-table ul li .right-r i {
	line-height: 30px;
	background: #8686862e;
	width: 30px;
	height: 30px;
	text-align: center;
	font-size: 10px;
}
.basket-popup .product-table ul li .right-r i:hover {
	cursor: pointer;
}
/*NUMBER INPUTS CART AND CATEGORY PAGE*/
.basket-popup .product-table input[type="number"] {
	border: none;
	text-align: center;
	padding: 0px;
	height: 30px;
	min-width: 40px;
	width: 60px;
}
.product-list .product-table input[type="number"] {
	border: solid 1px;
	text-align: center;
	padding: 0px;
	height: 30px;
	min-width: 40px;
	margin-bottom: 3px;
}
/*HIDES ARROWS ON BROWSERS*/
.category-popup input[type=number]::-webkit-inner-spin-button,
.category-popup input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
/*FIREFOX SPECIFIC*/
.category-popup input[type=number] {
	-moz-appearance: textfield;
}
@media only screen and (min-width: 1000px) {
	.hide-1000 {
		display: block;
	}
	.show-1000 {
		display: none;
	}
}
@media only screen and (max-width: 1000px) {
	.content-page .two-thirds-col {
		width: 100%;
	}
	.content-page .one-thirds-col {
		width: 100%;
	}
	  .content-page .flex-container {
		  flex-direction: column;
	  }
	.contact-container .one-thirds-col {
		margin-bottom: 30px;
	}
	.contact-container .one-thirds-col:first-child {
		width: 49%;
	}
	.contact-container .one-thirds-col:nth-child(3) {
		width: 49%;
	}
	.contact-container .flex-container {
		flex-direction: row;
	}
	.hide-1000 {
		display: none;
	}
	.show-1000 {
		display: block;
	}
	.about-row .flex-item {
		max-width: 100% !important;
		margin-bottom: 10px;

	}
}
@media only screen and (max-width: 550px) {
	.content-page .flex-container {
		flex-direction: column;
	}
	.contact-container .one-thirds-col:first-child {
		width: 100%;
	}
	.contact-container .one-thirds-col:nth-child(3) {
		width: 100%;
	}
	.jones-form input[type="submit"] {
		margin-top: 20px !important;
		margin: auto;
	}
}

.grey-bg {background: #e4e4e4;}

/*ACCORDION STUFF*/

.accordion {
	width: unset;
	margin: 20px auto;
}
.accordion h1, h2, h3, h4 {
	cursor: pointer;
}
.accordion h2, h3, h4 {
	font-family: var(--jones-font-header);
}
.accordion h1 {
	padding: 15px 20px;
	background-color: #fff;
	font-family: var(--jones-font-header);
	font-size: 1.5rem;
	font-weight: normal;
	color: #8C8B60;
}
.accordion h1:hover {
	color: #8C8B60;
}
.accordion h1:first-child {
	border-radius: 10px 10px 0 0;
}
.accordion h1:last-of-type {
	border-radius: 0 0 10px 10px;
}
.accordion h1:not(:last-of-type) {
	border-bottom: 1px dotted #8C8B60;
}
.accordion div, .accordion p {
	display: none;
}
.accordion h2 {
	padding: 5px 25px;
	background-color: #fff;
	font-size: 1.1rem;
	color: #333;
}
.accordion h2:hover {
	background-color: #ddd;
}
.accordion h3 {
	padding: 5px 30px;
	background-color: #fff;
	font-size: .9rem;
	color: #000;
}
.accordion h3:hover {
	background-color: #ddd;
}
.accordion h4 {
	padding: 5px 35px;
	background-color: #fff;
	font-size: .9rem;
	color: #000;
}
.accordion h4:hover {
	background-color: #ddd;
}
.accordion p {
	padding: 15px 35px;
	background-color: #f0f0f0;
	/*font-family: "Georgia";*/
	font-size: .8rem;
	color: #333;
	line-height: 1.3rem;
}
.accordion .opened-for-codepen {
	display: block;
}
.box-mod {
	/*margin-top: 40px;*/
	padding: 0px !important;
	background: none !important;
}
.group-input {
	/*margin-left: 30px;*/
}
.logos-out img {
	/*max-width: 100px !important;*/
}
/*SLIDER SWITCHES*/
.j-switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

.j-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.j-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.j-slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}
input:checked + .j-slider {
	background-color: #2196F3;
}

input:focus + .j-slider {
	box-shadow: 0 0 1px #2196F3;
}

input:checked + .j-slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}
.j-slider.j-round {
	border-radius: 34px;
}

.j-slider.j-round:before {
	border-radius: 50%;
}
.category-popup input:checked + .j-slider {
	background-color: #ccc;
}
#header-main .menu-left ul li ul {
	display: none;
}

#header-main .menu-left ul li:hover ul {
	display: flex;
	flex-direction: column;
	position: absolute;
	background: white;
	padding: 20px;
	border: solid 1px #8c8b60;
	top: 29px;
	width: max-content;
}

.basket-popup .basket_input_error {
	background: #ffdcdf;
}

#basket_error {
    font-size: 20px;
    color: red;
}
/*ADMIN PAGE*/
.admin-page .click-go a {
	background: whitesmoke;
	padding: 5px;
	border: solid 1px #8b8a60;
	border-radius: 5px;
	margin-right: 5px;
}
.admin-page .click-go a:hover {
	background: #8b8a60;
	color: white;
	text-decoration: none;
}
.order-list tr:nth-child(2n) {
	background: #8b8a603d;
}
.order-list tr:first-child {
	background: #8b8a60;
	font-weight: bold;
	color: #fff;
}
.order-list th, .order-list td {
	padding: 5px;
}
.order-list th {
	border: solid 1px white;
	font-size: 16px;
}
.order-list input {
/*	background: none; */
	color: black;
	width: 100%;
	line-height: unset;
	border-radius: unset;
	padding: 10px 15px;
	font-weight: normal;
}
.order-list input:hover {
	background: #8b8a605c;
	color: #6a6a18;
}
.order-list {
	border-collapse: collapse;
}
.order-breakdown .order-head {
	border-collapse: collapse;
	min-width: 750px;
	margin-top: 5px;
	border: solid 2px #8c8b60;
}
.order-breakdown .order-head th {
	background: #8c8b60;
	color: white;
	font-weight: bold;
}
.order-head th, .order-head td {
	padding: 3px;
}
.order-breakdown .order-totals {
	border-collapse: collapse;
	min-width: 750px;
	margin-top: 15px;
	margin-bottom: 15px;
	border: solid 2px #8c8b60;
}
.order-totals th, .order-totals td {
	padding: 3px;
}
.order-breakdown .order-list {
	min-width: 750px;
	margin-bottom: 15px;
}
.quote-list tr:nth-child(2n) {
	background: #8b8a603d;
}
.quote-list tr:first-child {
	background: #8b8a60;
	font-weight: bold;
	color: #fff;
}
.quote-list th, .quote-list td {
	padding: 5px;
	vertical-align: middle;
}
.quote-list th {
	border: solid 1px white;
}
.quote-list input {
	background: #00000003;
	color: black;
	width: 100%;
	line-height: unset;
	border-radius: unset;
	padding: 10px 15px;
	font-weight: normal;
	font-size: 16px;
}
.quote-list input:hover {
	background: #8b8a605c;
	color: #6a6a18;
}
.quote-list {
	border-collapse: collapse;
}
.col3-wrap {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.checkout-button-guest {
	display: unset;
	font-size: 12px !important;
	padding: 5px !important;
	margin-top: -3px !important;
}
.checkout-page-title {
	font-size: 30px;
	padding-bottom: 0px !important;
}
.field.checkout-event {
	display: flex;
	align-items: center;
}
.checkout-event h2 {
	font-size: 20px;
	padding-bottom: 0px !important;
	/*line-height: 45px;*/
	margin-top: 10px;
}
.checkout-event input {
	width: 400px !important;
	margin-left: 20px;
	border: none;
	border-bottom-color: currentcolor;
	border-bottom-style: none;
	border-bottom-width: medium;
	border-bottom: solid 1px;
	border-radius: 0px;
}
.checkout .col3 {
	width: 30%;
	margin-left: 0px !important;
	margin-right: 0px !important;
}
.checkout input, .checkout select, .checkout textarea {
	margin: 2px !important;
	padding: 5px !important;
	height: unset;
}
.checkout-page .checkout-event input {
	width: 290px !important;
	margin-left: 20px;
	border: none;
	border-bottom: solid 1px grey;
	border-radius: 0px;
	padding: 2px !important;
	margin-left: 20px !important;
	height: unset;
}
.checkout-page .btn-successx {
	        color: white;
}
 .checkout .col3 h2 {
	font-size: 30px;
}
.checkout .col3 input[type="button"] {
	color: #8c8b60;
	background: white;
	border: solid 1px;
	text-transform: capitalize;
	padding: 5px;
}
.checkout .col3 input[type="button"]:hover {
	background: #8c8b60;
	color: white;
}
#checkout_form label {
	padding: 0px;
	margin-top: 10px;
}
.checkout .colret1, .checkout .colret2 {
	display: inline-block;
}
.second-header {
	display: inline-block;
	margin-top: 20px;
	padding-bottom: 0px;
}
.checkout textarea {
	margin-bottom: 15px !important;
}
.checkout select {
	appearance: auto;
}
@media screen and (max-width: 767px){
	.col3-wrap {
		flex-direction: column;
	}
	.checkout .col3 {
		width: 100%;
		margin-bottom: 20px;
	}
	.checkout .col3 input[type="button"] {
		padding: 12px 15px;
	}
	.checkout-page textarea {
		margin-bottom: 10px;
	}
	.order-breakdown .order-head {
		 min-width: unset;
		width: 100%;
	}
	.order-breakdown .order-totals {
		min-width: unset;
		width: 100%;
	}
	.order-breakdown .order-list {
		min-width: unset;
		width: 100%;
	}
}
@media screen and (max-width: 550px) {
	.order-breakdown .order-totals {
		/*min-width: 550px;*/
		width: 100%;
	}
	.order-totals td {
		font-size: 12px;
	}
}
.displaySettings input {
	margin: 0;
	padding: 5px;
	height: unset;
}
.displaySettings #SubmitButton {
	font-size: 16px;
	padding: 10px;
	min-width: 300px;
}
.displaySettings h4 {
	cursor: initial;
}
@media screen and (min-width:1920px){
	.banner-main-alt .banner-cont .aside {

		padding: 50px 0 !important;

	}
}
.cart-btn.cart-link a {
	color: #8b8a60;
}
.checkout-page a {
	color: #8b8a60;
}
.btn.btn-successx::before {
	transition: none;
}
.btn.btn-successx:hover {
	color: white;
}
#modalContactForm .modal-dialog {
	min-width: 60% !important;
}
#modalContactForm .white-popup {
	max-width: unset;
}
#modalContactForm .order-list {
	width: 100%;
}
.blog-wrapper {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.blog-item {
	width: 25%;
	padding: 10px;
}
.blog-item img {
	margin-bottom: 5px;
}
.post-title {
	font-weight: bold;
	padding-bottom: 3px;
}
.post-desc {
	color: #3d3d3d;
}
.post-link:hover {
	text-decoration: none;
}
.blog-page.container {
	display: flex;
	justify-content: center;
}
.blog-sidebar {
	min-width: 30%;
	text-align: center;
}
.blog-page.container div {
	margin: 15px;
}
.blog-message {
	display: flex;
	flex-direction: column;
}
.related-bar > p {
	color: black;
	font-weight: bold;
}
.related-item > p {
	border: unset;
	font-style: italic;
	background: unset;
	padding-bottom: 0px;
	color: black;
}
@media screen and (max-width: 1300px){
	.blog-item {
		width: 25%;
	}
}
@media screen and (max-width: 991px){
	.blog-item {
		width: 25%;
	}
	.blog-page.container {
		flex-direction: column;
	}
	.blog-sidebar {
		display: flex;
		justify-content: center;
	}
	.banner-main img {
		object-fit: cover;
		min-height: 20vh;
	}
}
@media screen and (max-width: 767px){
	.blog-item {
		width: 33%;
	}
	.blog-page.container div {
		margin: 0;
	}
	.blog-sidebar {
		margin-top: 20px !important;
	}
}
@media screen and (max-width: 500px){
	.blog-item {
		width: 50%;
	}
}
.product-pdf img {
	width: 25px;
	height: 25px;
	margin-top: -3px;
	margin-right: 3px;
}
.account-link {
	right: 35px !important;
}
.cart-btn.account-link a {
	color: #8b8a60;
}
@media screen and (max-width: 767px){
	.account-link {
		display: block !important;
		right: 55px !important;
	}
}
.blog-main {
	display: flex;
	flex-direction: column;
	min-width: 60%;
}
.blog-variations {
	border: solid 1px grey;
	margin-bottom: 15px;
	padding: 10px;
	width: fit-content;
	background: #38713e;
	color: white;
}
#quote-summary-inline .order-breakdown {
	width: 100%;
}
#quote-summary-inline .order-breakdown tr {
	/*text-align: center;*/
	background: #8b8a6038;
}
#quote-summary-inline .order-breakdown th {
	/*text-align: center;*/
	padding: 5px;
	background: #8b8a60;
	color: white;
}
.nofocus:focus {
	color: white;
}
.general_button {
	border: solid 1px;
	border-radius: 4px;
	padding: 5px;
	margin: 5px;
	display: inline-block;
}

.about-row {
	background: #f4f4f4;
	padding: 40px;
	margin-top: 20px;
}
.about-row .flex-item {
	max-width: 33%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.about-row .flex-item p {
	/*background: #0000000f;*/
	min-height: 100px;
	padding: 10px;
	align-items: flex-end;
	display: flex;
}
.rhubarb li {
	margin-right: 15px !important;
}
.blog-main img {
	width: 100%;
}
.btn-out.btn-out-contact .v3-button {
	color: white;
	font-family: initial;
}
.btn-out.btn-out-contact i {
	display: none;
}
/*Thank you message contact page*/
.one-thirds-col > span {
	background: #8b8a60;
	margin-left: 10px;
	width: 96%;
	display: block;
	/* margin-right: 20px; */
	padding: 5px;
	color: white;
	text-align: center;
}
.product-details .left-sidebar h3 {
	cursor: default;
	letter-spacing: 1px;
}

.side-cart-popup .figure {
	position: relative;
}

.figure.product-tile.zoompop i {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: white;
    font-weight: 500;
    cursor: pointer;
}
.news-articles .box h2 {
	margin-bottom: 15px;
}
.footer-links {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}
.banner-cont.range {
	display: flex;
	border-bottom: solid 1px;
	/*border-top: solid 1px;*/
	padding: 10px;
	text-align: center;
}
.banner-cont.range .sub-title {
	font-weight: bold;
	font-size: 20px;
}
.featherlight-close-icon.featherlight-close {
	color: white !important;
	background: transparent !important;
	border: none;
	font-weight: bold;
	font-size: 25px;
	top: 10px !important;
	right: 10px !important;
}
.aside-additional-info {

}
.additional-info-modal {

}
.one-thirds-col h3 {
	letter-spacing: 1px;
	font-weight: 600;
}
.menu-sidebar h1 {
	letter-spacing: 2px;
	font-weight: bold;
}
.menu-sidebar h2 {
	letter-spacing: 2px;
	font-weight: bold;
}
.menu-sidebar h3 {
	letter-spacing: 2px;
	font-weight: bold;
}
.about-page h4 {
	letter-spacing: 0;
	font-weight: 600;
}
.about-page {
	padding-bottom: 20px;
}

.content-page {
	padding-bottom: 20px;
}

.blog-page .grey-wrapper {
	background: #F4F4F4;
	padding-top: 40px;
	padding-bottom: 5px;
}
#content-main.grey-wrapper {
	background: #F4F4F4;
}
#content-main.blog-page {
	background: #f4f4f4;
}
.blog-page {
	padding-bottom: 0 !important;
}
.category-page {
	padding-bottom: 0 !important;
}
.section-page {
	padding-bottom: 0 !important;
}
#content-main .content-inner {
	background: #f4f4f4;
}
.new-split-container {
	display: flex;
	gap: 20px;
}
.nsc-wrap {
	background: #f4f4f4;
	padding-bottom: 20px;
}
.new-split-container > div {
	width: 50%;
}
.new-split-container.container {
	max-width: 1400px;
	margin-top: 20px;
}
.new-split-container .split-cont {
	overflow: unset;
}
.new-split-container .news-articles .box   {
	margin-top: 0;
	align-items: flex-end;
}
.new-split-container .news-articles .news-list .article-out {
	flex-wrap: wrap;
	gap: 20px;
}
.new-split-container h1 {
	letter-spacing: 0px;
}
@media screen and (min-width: 1201px){
	.nsc-hide-desktop {display: none;}
}
@media screen and (max-width: 1200px){
	.nsc-hide-mobile {display: none;}
}


/* STUFF COPIED FROM FOOTER */

/* Side Cart - Popup */

.size_imperial {
	display:none;
}

.side-cart-popup {
	width:100%;
	max-width:600px;
	height:100%;
	float:right;
	background:#ffffff;
	box-shadow:rgba(0, 0, 0, 0.27) 0 0 20px;
	position: fixed;
	top:0;
	right:0;
	overflow:auto;
	z-index:1000;
	padding: 130px 71px 196px 71px;
	display:none;
}

.side-cart-popup h3 {
	font-family:"Gotham", sans-serif;
	font-weight:500;
	color:#3d3d3d;
	padding-bottom:25px;
}

.side-cart-popup .figure {
	width:100%;
	text-align:center;
	overflow:hidden;
	margin-bottom:45px;
}

.side-cart-popup .figure:last-child {
	margin-bottom:0;
}

.side-cart-popup .figure img {
	width:100%;
	-webkit-transition-duration:0.3s;
	transition-duration:0.3s;
	-webkit-transition-property:transform;
	transition-property:transform;
	-webkit-transform:translateZ(0);
	-moz-transform:translateZ(0);
	transform: translateZ(0);
}

.side-cart-popup .figure:hover img, 
.side-cart-popup .figure:focus img, 
.side-cart-popup .figure:active img {
	-webkit-transform:scale(1.1);
	-moz-transform:scale(1.1);
	transform:scale(1.1);
}

.side-cart-popup .product-table2 {
	width:100%;
	overflow:hidden;
	margin-bottom:35px;
}

.side-cart-popup .product-table2:last-child {
	margin-bottom:0;
}

.side-cart-popup .product-table2 ul {
	width:100%;
	padding:0;
	margin:0;
}

.side-cart-popup .product-table2 ul:last-child {
	padding-bottom:0;
}

.side-cart-popup .product-table2 ul li {
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	align-items:center;
	padding:0;
	margin:0 0 8px 0;
	justify-content: space-between;
}

.side-cart-popup .product-table2 ul li:last-child {
	margin-bottom:0;
}

.side-cart-popup .product-table2 ul li:before {
	display:none;
}

.side-cart-popup .product-table2 ul li .left-l {
	/*width:90px;*/
	/*padding:6px 10px 6px 0;*/
	/*margin-right:-90px;*/
}

.side-cart-popup .product-table2 ul li .right-r {
	/*width:100%;*/
	font-weight:500;
	text-align:right;
	position:relative;
	z-index:1;
	/*padding:6px 0 6px 90px;*/
	/*max-width: 200px;*/
}

.side-cart-popup .product-table2 ul li .right-r:before {
	content:"";
	/*width:100%;*/
	height:1px;
	float:left;
	background:#a8a8a8;
	position:absolute;
	bottom:0;
	left:90px;
	display: none;
}

.side-cart-popup .toggle-switch {	
	width: 100%;
    float: unset;
    margin-bottom: 80px;
    display: flex;
    justify-content: flex-end;	
}

.side-cart-popup .toggle-switch .switch-btn {
	cursor:pointer;
	margin:0 10px;
}

.side-cart-popup .toggle-switch .switch-btn img {
	max-height:30px;
}

.side-cart-popup .btn-out {
	width:100%;
	margin-top:0;
}

.side-cart-popup .btn-out .btn, 
.side-cart-popup .btn-out .button, 
.side-cart-popup .btn-out input[type="button"], 
.side-cart-popup .btn-out input[type="submit"] {
	width:100%;
}

.side-cart-popup .icon-close {
	position:absolute;
	top:65px;
	right:71px;
}

.side-cart-popup .icon-close a {
	font-size:35px;
	color:#3b3b3b;
	line-height:1em;
	text-decoration:none
}

.side-cart-popup .product-info {
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	align-items: center;
}

.side-cart-popup .product-info .figure {
	width:134px;
	text-align:center;
	overflow:hidden;
	margin:0 -134px 0 0;
	position:relative;
	z-index:1;
}

.side-cart-popup .product-info .figure img {
	width:100%;
	-webkit-transition-duration:0.3s;
	transition-duration:0.3s;
	-webkit-transition-property:transform;
	transition-property:transform;
	-webkit-transform:translateZ(0);
	-moz-transform:translateZ(0);
	transform: translateZ(0);
}

.side-cart-popup .product-info .figure:hover img, 
.side-cart-popup .product-info .figure:focus img, 
.side-cart-popup .product-info .figure:active img {
	-webkit-transform:scale(1.1);
	-moz-transform:scale(1.1);
	transform:scale(1.1);
}

.side-cart-popup .product-info .aside {
	width:100%;
	padding-left:157px;
}

.side-cart-popup .product-info .aside p {
	line-height:20px;
	padding-bottom:17px;
}

.side-cart-popup .product-info .aside .btn, 
.side-cart-popup .product-info .aside .button {
	width:100%;
	font-size:16px;
	color:#3D3D3D;
	line-height:22px;
	background:none;
	border:1px solid #B7B7B7;
	border-radius:6px;
	padding:14px 20px;
}

.side-cart-popup .product-info .aside .btn em, 
.side-cart-popup .product-info .aside .button em {
	margin-left:8px;
}

.side-cart-popup .product-info .aside .btn::before, 
.side-cart-popup .product-info .aside .button::before {
	display:none;
}

.side-cart-popup .product-info .aside .btn:hover, 
.side-cart-popup .product-info .aside .btn:focus, 
.side-cart-popup .product-info .aside .btn:active, 
.side-cart-popup .product-info .aside .btn:active:focus, 
.side-cart-popup .product-info .aside .btn.active, 
.side-cart-popup .product-info .aside .btn.active:focus, 
.side-cart-popup .product-info .aside .button:hover, 
.side-cart-popup .product-info .aside .button:focus, 
.side-cart-popup .product-info .aside .button:active, 
.side-cart-popup .product-info .aside .button:active:focus, 
.side-cart-popup .product-info .aside .button.active, 
.side-cart-popup .product-info .aside .button.active:focus {
	color: #ffffff;
	background:#B7B7B7;
}

.side-cart-popup .product-info .aside .btn-out {
	position:relative;
	bottom:0;
	padding:0;
	margin-top:0;
}

.side-cart-popup.cont2 {
	padding-bottom:71px;
}

.side-cart-popup.cont2 .btn-out {
	margin-bottom:63px;
}

.side-cart-popup.cont2 .product-table2 ul li .left-l {
	width:52.84%;
	word-break: break-all;
	margin-right:0;
}

.side-cart-popup.cont2 .product-table2 ul li .right-r {
	width:47.16%;
	padding-left:0;
}

.side-cart-popup.cont2 .product-table2 ul li .right-r:before {
	left:0;
}

.side-cart-popup.cont2 .product-info .aside .btn-out {
	margin-bottom:0;
}

@media only screen and (max-width: 1399px) {
	.side-cart-popup {
		max-width:420px;
	}

	.side-cart-popup {
		padding: 90px 50px 115px 50px;
	}

	.side-cart-popup .icon-close {
		top:45px;
		right:50px;
	}

	.side-cart-popup .product-info .figure {
		width:100px;
		margin:0 -100px 0 0;
	}

	.side-cart-popup .product-info .aside {
		width:100%;
		padding-left:120px;
	}

	.side-cart-popup .toggle-switch {
		margin-bottom:100px;
	}

	.side-cart-popup.cont2 {
		padding-bottom:50px;
	}

	.side-cart-popup.cont2 .btn-out {
		margin-bottom:50px;
	}
}

@media only screen and (max-width: 767px) {
	.side-cart-popup {
		max-width:300px;
	}

	.side-cart-popup {
		padding: 65px 30px 110px 30px;
	}

	.side-cart-popup h3 {
		padding-bottom:15px;
	}

	.side-cart-popup .figure {
		margin-bottom:25px;
	}

	.side-cart-popup .product-table2 {
		margin-bottom:30px;
	}

	.side-cart-popup .icon-close {
		top:25px;
		right:30px;
	}

	.side-cart-popup .icon-close a {
		font-size:30px;
	}

	.side-cart-popup .product-info .figure {
		width:100%;
		margin:0 0 20px 0;
	}

	.side-cart-popup .product-info .aside {
		padding-left:0;
	}

	.side-cart-popup .product-info .aside p {
		line-height:20px;
		padding-bottom:17px;
	}

	.side-cart-popup .toggle-switch {
		margin-bottom:80px;
	}

	.side-cart-popup.cont2 {
		padding-bottom:30px;
	}

	.side-cart-popup.cont2 .btn-out {
		margin-bottom:40px;
	}

	.side-cart-popup.cont2 .product-table2 ul li .left-l {
		width:70%;
	}

	.side-cart-popup.cont2 .product-table2 ul li .right-r {
		width:30%;
	}
}
.banner-inner .banner-cont .aside {
    background:unset;
    text-align: center;
}
.banner-inner .banner-cont {
    position: static;
}
.banner-inner .banner-cont .aside .sub-title {
    color: black;
}
.banner-inner .banner-cont .aside .sub-title {
    font-size: 48px;
    line-height: normal;
    text-transform: uppercase;
    color: #898864;
    font-weight: inherit;
}
.cat-desc + p {
    max-width: 75%;
    margin: auto;
    padding-bottom: 20px;
    text-align: center;
}
 p:empty {
    display: none;
}
 @media screen and (max-width: 500px){
     .cat-desc + p {
         display: none;
     }
 }
.clear-basket-container {
	justify-content: center;
	display: flex;
}
.clear-basket-container input {
	padding: 5px 15px;
	width: 100%;
	margin-bottom: 10px;
}
.table-scroll {
	overflow-x: auto;
}
.additional-info-heading {
	background: #00000005;
	display: inline;
	margin-left: 55px;
	padding: 5px !important;
	margin-top: 10px;
}
.content-page.admin-page h4 {
	letter-spacing: 0px;
}
.displayWIP h5 {
	font-weight: bold;
	letter-spacing: 0;
	margin-top: 5px;
	font-size: 20px;
}
.displayOrders h4 {
	font-weight: bold;
	letter-spacing: 0;
	margin-top: 5px;
	font-size: 20px;
}
.displayQuotes h4 {
	font-weight: bold;
	letter-spacing: 0;
	margin-top: 5px;
	font-size: 20px;
}
#settings_form h4 {
	font-weight: bold;
	letter-spacing: 0;
	margin-top: 5px;
	font-size: 20px;
}
/* STUFF COPIED FROM FOOTER */


span#basket_count {
    font-family: var(--jones-font-primary);
}
.menu-sidebar .search-box {
    border: 1px solid lightgrey;
}
.menu-sidebar .icon-close {
    position: absolute;
    top: 60px;
    right: 30px;
}
.fake-disabled {
    pointer-events: none;
    background: whitesmoke;
    cursor: not-allowed;
}
