/*
Theme Name: Signals
Author: Creative Intent
Author URI: https://www.creativeintent.co.uk/
Description: Signals Theme
Text Domain: signals

unity overwrites
*/

:root {
	--colour-blue-original: #0097BA;
	--colour-blue: #006E87;
}

html.flexbox { margin-top: 0 !important; }

.news-wrapper {
	display: flex;
	flex-wrap: wrap;
	padding-top: 30px;
}
.news-wrapper a {
	width: calc(33.3% - 3.5px);
	margin: 0 5px 5px 0;
	height: 40vw;
	max-height: 400px;
	min-height: 300px;
	padding: 30px;
	box-sizing: border-box;
	background-size: cover;
	background-position: center center;
	position: relative;
}
.news-wrapper a * {
	color: #fff;
}
.news-wrapper a:nth-child(3n+3) {
	margin-right: 0;
}
.news-wrapper a .content-overlay {
	background: -moz-linear-gradient(left, rgba(51, 51, 51, 0.7) 0%, rgba(51, 51, 51, 0) 100%);
	background: -webkit-linear-gradient(left, rgba(51, 51, 51, 0.7) 0%, rgba(51, 51, 51, 0) 100%);
	background: linear-gradient(to right, rgba(51, 51, 51, 0.7) 0%, rgba(51, 51, 51, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#66333333', endColorstr='#00333333', GradientType=1);
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.news-wrapper a .content-inner {
	position: relative;
}

.news-wrapper a .content-inner span::after {
	-webkit-transition:0.4s ease;
	-moz-transition: 0.4s ease;
	-ms-transition:  0.4s ease;
	-o-transition: 0.4s ease;
	transition:0.4s ease;
	content: "\f101";
	font-family: 'FontAwesome';
	color: inherit;
	margin-left: 10px;
}

.news-wrapper a .content-inner span {
	font-size: 20px;
	font-weight: 600;
	text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	transition: .4s;
}

.news-wrapper a:hover .content-inner span {
	color: var(--colour-blue);
}
.news-wrapper a:hover .content-inner span:after {
	color: var(--colour-blue);
	margin-left: 20px;
}
.page-banner {
	height: 250px;
	background: no-repeat center / cover;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-banner h1 {
	background-color: rgba(51, 51, 51, 0.8);
	padding: 30px;
	position: relative;
	color: #fff;
	font-size: 40px;
	margin: 0;
	width: 96%;
	box-sizing: border-box;
	max-width: 1050px;
	text-align: center;
}
@media (max-width: 1024px) {
	.news-wrapper a:nth-child(1n) {
		width: calc(50% - 3.5px);
		margin: 0 6px 5px 0;
	}
	.news-wrapper a:nth-child(2n+2) {
		margin-right: 0;
	}
}
@media (max-width: 640px) {
	.news-wrapper a:nth-child(1n) {
		width: 100%;
		margin: 0 0 5px 0;
	}
	h1 , .page-banner h1 {
		font-size: 32px;
		margin-bottom: 20px;
	}
	h2 {
		font-size: 26px;
	}
}

.product_cat_listing {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-bottom: 6.5vw;
}
@media (max-width: 768px) {
	.product_cat_listing {
		padding-bottom: 40px;
	}
}
.product_cat_listing a {
	width: calc(50% - 15px);
	height: 40vw;
	max-height: 450px;
	min-height: 270px;
	background: #f1f1f1 no-repeat center / cover;
	display: flex;
	align-items: flex-end;
	padding: 30px;
	box-sizing: border-box;
	margin-bottom: 30px;
}
@media (max-width: 640px) {
	.product_cat_listing a {
		width: 100%;
	}
}
.product_cat_listing a h2 {
	font-weight: bold;
	font-size: 44px;
	line-height: 105%;
	color: #fff;
	text-shadow: 0px 4px 70px rgba(0, 0, 0, 0.7);
	width: 100%;
	max-width: 400px;
}
@media (max-width: 768px) {
	.product_cat_listing a h2 {
		font-size: 30px;
	}
}
.product_cat_listing a span {
	font-weight: bold;
	font-size: 16px;
	text-align: center;
	text-transform: uppercase;
	color: #18374b;
	background-color: #fff;
	padding: 15px;
	display: inline-block;
}
@media (max-width: 640px) {
	.product_cat_listing a span {
		padding: 10px;
	}
}
.product_subcat_listing {
	display: flex;
	padding-bottom: 6.5vw;
	flex-wrap: wrap;
}
@media (max-width: 768px) {
	.product_subcat_listing {
		padding-bottom: 40px;
	}
}
.product_subcat_listing a {
	width: calc(20% - 12px);
	margin-right: 15px;
	margin-bottom: 20px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.09);
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	align-self: stretch;
	border: 1px solid rgba(0, 0, 0, 0.04);
	box-sizing: border-box;
}
.product_subcat_listing a:last-child {
	margin-bottom: 20px;
}
.product_subcat_listing a:nth-child(5n+5) {
	margin-right: 0;
}
@media (max-width: 1024px) {
	.product_subcat_listing a:nth-child(1n) {
		width: calc(25% - 12px);
		margin-right: 15px;
	}
	.product_subcat_listing a:nth-child(4n+4) {
		margin-right: 0;
	}
}
@media (max-width: 768px) {
	.product_subcat_listing a:nth-child(1n) {
		width: calc(33% - 8px);
		margin-right: 15px;
	}
	.product_subcat_listing a:nth-child(3n+3) {
		margin-right: 0;
	}
}
@media (max-width: 640px) {
	.product_subcat_listing a:nth-child(1n) {
		width: calc(50% - 7px);
		margin-right: 14px;
	}
	.product_subcat_listing a:nth-child(2n+2) {
		margin-right: 0;
	}
}
.product_subcat_listing a span {
	height: 30vw;
	max-height: 205px;
	min-height: 150px;
	display: block;
	padding: 0 10px;
}
.product_subcat_listing a span span {
	background: no-repeat center / contain;
	width: 100%;
	height: 100%;
	padding: 0;
}
.product_subcat_listing a h3 {
	font-weight: normal;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #27343f;
}
@media (max-width: 1024px) and (min-width: 900px) {
	.woocommerce ul.products li.product, .woocommerce-page ul.products li.product:nth-child(1n) {
		width: 30.3%;
		margin: 0 3.8% 2.992em 0;
	}
	.woocommerce ul.products li.product, .woocommerce-page ul.products li.product:nth-child(3n+3) {
		margin-right: 0;
	}
}
.woo-page {
	padding-top: 5vw;
	padding-bottom: 5vw;
}
.woo-page aside {
	margin-left: 0;
	margin-right: 40px;
	flex-basis: 360px;
}

h2.widget-title {
	background: #333333;
	border-radius: 5px 5px 0px 0px;
	display: block;
	padding: 20px 40px 15px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 0;
	font-size: 18px;
}
@media (max-width: 1024px) and (min-width: 900px) {
	.woo-page aside {
		display: block;
	}
}
.woo-page aside .contact-block {
	margin-top: 30px;
}
.woo-page aside .mobile_filter {
	font-weight: bold;
	font-size: 18px;
	text-transform: uppercase;
	color: #24383f;
	text-shadow: 0px 4px 100px rgba(0, 0, 0, 0.3);
}
.main_container.woocommerce-pages {
	padding-top: 80px;
}
@media (max-width: 900px) {
	.main_container.woocommerce-pages {
		padding-top: 50px;
	}

	.woo-page aside .mobile_filter div {
		position: absolute;
		right: 10px;
		height: 45px;
		width: 45px;
		top: 0;
		background-color: transparent;
		opacity: 0;
		transition: opacity 0.2s;
	}
	.woo-page aside .mobile_filter div span {
		width: 50%;
		height: 2px;
		background-color: #fff;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
		transform: rotate(45deg);
	}
	.woo-page aside .mobile_filter div span:nth-child(2) {
		transform: rotate(-45deg);
	}
	.woo-page aside > div {
		margin-bottom: 0;
		border: none;
		padding: 40px 20px;
	}
	.woo-page aside > div:nth-child(4) {
		display: none;
	}
	.woo-page aside.open {
		max-height: 100vh;
		overflow: scroll;
	}
	.woo-page aside.open .mobile_filter div {
		opacity: 1;
	}
}
@media (max-width: 900px) and (max-width: 900px) {
	.woo-page aside .contact-block {
		display: none;
	}
}
.woo-page .mobile_filter {
	display: none;
}
.woo-page .sidebar_product_cats {
	border: 1px solid #e9e9e9;
	box-sizing: border-box;
	overflow: hidden;
	border-radius: 5px;
	background: #fafdff;
}
.woo-page .sidebar_product_cats .title {
	font-weight: bold;
	font-size: 22px;
	line-height: 28px;
	color: #fff;
	margin: 0;
	background: #18374b;
	padding: 15px 30px;
}
.woo-page .sidebar_product_cats ul {
	margin: 0;
	list-style: none;
	padding: 15px 30px 20px;
}
.woo-page .sidebar_product_cats ul li a {
	display: block;
	padding: 5px 0;
	transition: 0.3s;
	font-size: 16px;
	color: #383b45;
}
.woo-page .sidebar_product_cats ul li.active a, .woo-page .sidebar_product_cats ul li:hover a {
	font-weight: 600;
	color: #e88900;
}
.woo-page .woo-filters {
	list-style: none;
	padding: 0;
}
.woo-page .woo-filters li > strong {
	font-size: 18px;
	text-transform: uppercase;
	color: #383b45;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid #e5e5e5;
	display: block;
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
	background: #fafdff;
	box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.24);
	margin: 0;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
	background: #4599d0;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
	background: #fff;
	border: 1px solid #4599d0;
}
.woocommerce .widget_price_filter .price_slider_amount {
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.woocommerce .widget_price_filter .price_slider_amount .price_label {
	margin-left: auto;
}
.woocommerce .widget_price_filter .price_slider_amount .button {
	font-weight: bold;
	font-size: 16px;
	text-transform: uppercase;
	color: #fff;
	background: #4599d0;
}
.widget_product_search {
	padding-top: 30px;
	margin-top: 30px;
	border-top: 1px solid #e5e5e5;
}
.widget_product_search form {
	flex-grow: 1;
	position: relative;
}
.widget_product_search form input[type=search] {
	border: 1px solid #ebebeb;
	box-sizing: border-box;
	box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.02);
	border-radius: 55px;
	height: 48px;
	width: 100%;
	padding-left: 20px;
}
@media (max-width: 450px) {
	.widget_product_search form input[type=search] {
		height: 40px;
	}
}
.widget_product_search form button {
	width: 39px;
	height: 39px;
	background: #18374b no-repeat center / 20px url("data:image/svg+xml,%0A%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 21'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 9.4a9.2 9.2 0 0114.4-7.7 9 9 0 012.2 12.5.4.4 0 00.2.5l3.7 3.7a1.5 1.5 0 01-.4 2.5 1.5 1.5 0 01-1.7-.4l-1.8-1.8-1.9-2a.4.4 0 00-.6 0A9 9 0 010 9.4zm9.1-7.3a7 7 0 00-6.5 4.3 7 7 0 005 9.6A7 7 0 0016.2 9a7 7 0 00-7-7z' fill='%23fff'/%3E%3C/svg%3E");
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05);
	position: absolute;
	top: 5px;
	right: 5px;
	border-radius: 39px;
	border: none;
	transition: opacity 0.3s;
	cursor: pointer;
	text-indent: -9999px;
}
@media (max-width: 450px) {
	.widget_product_search form button {
		height: 34px;
		width: 34px;
		top: 3px;
	}
}
.widget_product_search form button:hover {
	opacity: 0.7;
}
.term-description {
	border-bottom: 1px solid #efefef;
	padding-bottom: 20px;
	margin-bottom: 30px;
}
.woocommerce ul.products li.product a {
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid #e6e6e6;
	width: 100%;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
	display: flex;
}
.woocommerce ul.products li.product a .product_thumb {
	width: 100%;
	border: 1px solid #e6e6e6;
	box-sizing: border-box;
	padding: 20px;
	display: flex;
	align-items: center;
	position: relative;
	justify-content: center;
	height: 200px;
}

.woo-page main {
	flex: 1 1;
	flex-basis: calc(100% - 400px);
}

.woocommerce .products ul, .woocommerce ul.products {
	display: flex;
	flex-wrap: wrap;
}
.woocommerce ul.products li.product a .product_thumb img {
	max-width: 100%;
	max-height: 100%;
	height: auto;
	width: auto;
}
.woocommerce ul.products li.product a h2 {
	font-size: 21px;
	line-height: 114%;
	color: #383b45;
	text-transform: uppercase;
}
.woocommerce ul.products li.product .button {
	display: inline-block;
	max-width: 125px;
	margin-bottom: 20px;
	margin-top: auto;
}
.woocommerce ul.products li.product:hover .button {
	opacity: 1;
}
.woocommerce ul.products li.product:before {
	display: none;
}
.woocommerce ul.products li.product .price {
	font-weight: bold;
	font-size: 21px;
	line-height: 114%;
	color: var(--colour-blue);
	display: flex;
	align-self: flex-start;
	align-items: flex-end;
	flex-wrap: wrap;
}
.woocommerce ul.products li.product .price del {
	font-weight: bold;
	font-size: 14px;
	line-height: 18px;
	text-decoration-line: line-through;
	color: #383b45;
	margin-left: 10px;
	opacity: 1;
	order: 2;
}
.woocommerce ul.products li.product .price ins {
	text-decoration: none;
	order: 1;
}
.woocommerce .woocommerce-result-count {
	margin: 0 0 0em;
	padding-top: 13px;
}
@media (max-width: 640px) {
	.woocommerce .woocommerce-result-count {
		display: none;
	}
}
.woocommerce .woocommerce-ordering select {
	background: #eff1f2;
	border-radius: 3px;
	border: none;
	padding: 13px 10px;
}
.woocommerce .woocommerce-ordering {
	margin: 0 0 3em;
	display: flex;
	align-items: center;
}
.woocommerce .woocommerce-ordering::before {
	content: 'Sort By:';
	margin-right: 10px;
}
.brand_list {
	padding-top: 30px;
}
.brand_list a {
	display: flex;
	background: #18374b;
	border: 1px solid #18374b;
	box-sizing: border-box;
	margin-bottom: 20px;
}
.brand_list a .brand_thumb {
	background-color: #fff;
	width: 32%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}
.brand_list a .brand_thumb > span {
	width: 100%;
	height: 100%;
	background: no-repeat center / contain;
}
.brand_list a .brand_text {
	width: 68%;
	padding: 25px 35px;
}
@media (max-width: 640px) {
	.brand_list a .brand_text {
		padding: 15px 20px 20px;
	}
}
.brand_list a .brand_text h2 {
	margin-bottom: 10px;
}
.brand_list a .brand_text * {
	color: #fff;
}
.brand_list a .brand_text .button {
	margin-top: 15px;
}


@media (max-width: 768px) {
	.brand_list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.brand_list a {
		width: calc(50% - 10px);
		display: block;
	}
	.brand_list a .brand_thumb {
		width: 100%;
		height: 40vw;
		max-height: 250px;
		min-height: 15px;
	}

	.woocommerce .products ul, .woocommerce ul.products {
		justify-content: space-between;
	}
}
@media (max-width: 768px) and (max-width: 640px) {
	.brand_list a {
		width: 100%;
	}
}
.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
	width: 37%;
}
@media (max-width: 768px) {
	.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
		width: 100%;
	}
}
.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
	width: 55%;
}
@media (max-width: 768px) {
	.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
		width: 100%;
	}
}
.flex-viewport {
	border: 1px solid #dcdcdc;
	margin-bottom: 10px;
}
ol.flex-control-nav.flex-control-thumbs li {
	margin-right: 15px;
}
.woocommerce div.product div.images .flex-control-thumbs li {
	margin-bottom: 10px;
	margin-right: 10px;
	width: calc(25% - 8px);
	border: 1px solid #dcdcdc;
	box-sizing: border-box;
}
.woocommerce div.product div.images .flex-control-thumbs li:nth-child(4n+4) {
	margin-right: 0;
}
.woocommerce div.product .product_title {
	margin-bottom: 10px;
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
	font-weight: bold;
	font-size: 32px;
	color: var(--colour-blue);
}
.woocommerce div.product p.price, .woocommerce div.product .summary span.price {
	margin: 15px 0 25px;
	padding-bottom: 15px;
	border-bottom: 1px solid #dcdcdc;
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
	display: flex;
	align-items: flex-start;
}
.woocommerce div.product p.price ins, .woocommerce div.product span.price ins {
	text-decoration: none;
	order: 1;
}
.woocommerce div.product p.price del, .woocommerce div.product span.price del {
	font-weight: bold;
	font-size: 18px;
	text-decoration-line: line-through;
	color: #a9a9a9;
	margin-left: 15px;
	line-height: 31px;
	order: 2;
}
.woocommerce .quantity .qty {
	border: 1px solid #d4d4d4;
	height: 56px;
	box-sizing: border-box;
	margin-right: 10px;
}
.woocommerce div.product form.cart div.quantity::before {
	content: 'QTY';
	height: 56px;
	background: #dcdcdc;
	border: 1px solid #dcdcdc;
	width: 62px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}
.woocommerce div.product form.cart div.quantity {
	display: flex;
}
.woocommerce div.product form.cart .button {
	min-height: 56px;
	box-sizing: border-box;
}
.woocommerce-product-details__short-description {
	padding-bottom: 10px;
}
.product_meta span {
	margin-right: 5px;
	font-size: 15px;
}
.product_meta span a {
	color: #232f39;
	text-decoration: underline;
}
a.del-info {
	display: block;
	font-size: 17px;
	text-decoration-line: underline;
	color: #232f39;
	padding: 5px 0 20px;
	margin-bottom: 25px;
	border-bottom: 1px solid #e6e6e6;
}
.product_brand {
	width: 150px;
	height: 70px;
	background: #fff;
	border: 2px solid #efefef;
	box-sizing: border-box;
	padding: 20px;
}
.product_brand div {
	background: no-repeat center / contain;
	width: 100%;
	height: 100%;
}
.woocommerce div.product form.cart .variations select {
	height: 46px;
	background: #eff1f2;
	border-radius: 3px;
}
.woocommerce div.product form.cart .variations td, .woocommerce div.product form.cart .variations th {
	padding-bottom: 20PX;
}
.woocommerce div.product form.cart .variations td.label {
	vertical-align: middle;
}
.woocommerce-tabs.wc-tabs-wrapper {
	padding-top: 25px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
	display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
	display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
	display: none;
}
.woocommerce #content div.product .woocommerce-tabs ul.tabs::after, .woocommerce div.product .woocommerce-tabs ul.tabs::after, .woocommerce-page #content div.product .woocommerce-tabs ul.tabs::after, .woocommerce-page div.product .woocommerce-tabs ul.tabs::after {
	display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0;
	border-bottom: 2px solid var(--colour-blue);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
	border: none;
	padding: 0;
	margin: 0 10px 0 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	background: var(--colour-blue);
	color: #fff;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	padding: 10px 15px;
	background: #e6eff5;
	color: rgba(39, 52, 63, 0.8);
	text-transform: uppercase;
}

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button ,
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt,
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button ,
.woocommerce #respond input#submit.alt.disabled, .woocommerce #respond input#submit.alt.disabled:hover, .woocommerce #respond input#submit.alt:disabled, .woocommerce #respond input#submit.alt:disabled:hover, .woocommerce #respond input#submit.alt:disabled[disabled], .woocommerce #respond input#submit.alt:disabled[disabled]:hover, .woocommerce a.button.alt.disabled, .woocommerce a.button.alt.disabled:hover, .woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled:hover, .woocommerce a.button.alt:disabled[disabled], .woocommerce a.button.alt:disabled[disabled]:hover, .woocommerce button.button.alt.disabled, .woocommerce button.button.alt.disabled:hover, .woocommerce button.button.alt:disabled, .woocommerce button.button.alt:disabled:hover, .woocommerce button.button.alt:disabled[disabled], .woocommerce button.button.alt:disabled[disabled]:hover, .woocommerce input.button.alt.disabled, .woocommerce input.button.alt.disabled:hover, .woocommerce input.button.alt:disabled, .woocommerce input.button.alt:disabled:hover, .woocommerce input.button.alt:disabled[disabled], .woocommerce input.button.alt:disabled[disabled]:hover
{
	background-color: var(--colour-blue);
	min-height: 56px;
	vertical-align: middle;
	display: inline-flex;
	align-items: center;
	color: #fff;
	font-size: 18px;
}
.product-enquire {
	margin-bottom: 20px;
}
.product-enquire h3 {
	margin-top: 0;
}
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover ,
.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover
{
	background-color: #056f88;
	color: #fff;
}
.woocommerce ul.products li.product a:hover h2 {
	color: #056f88;
}

.woocommerce div.product .woocommerce-tabs .panel h1 ,
.woocommerce div.product .woocommerce-tabs .panel h2 ,
.woocommerce div.product .woocommerce-tabs .panel h3 ,
.woocommerce div.product .woocommerce-tabs .panel h4,
.woocommerce div.product .woocommerce-tabs .panel h5,
.woocommerce div.product .woocommerce-tabs .panel h6,
.woocommerce div.product .woocommerce-tabs .panel p {
	margin: 0 0 20px;
}

@media (max-width: 450px) {
	.woocommerce div.product .woocommerce-tabs ul.tabs li a {
		padding: 10px 5px;
		font-size: 13px;
	}
	.woocommerce div.product .woocommerce-tabs ul.tabs li {
		margin-right: 2px;
	}
	.woocommerce div.product .woocommerce-tabs ul.tabs li:last-child {
		margin-right: 0;
	}
}
section.related.products {
	padding-top: 40px;
	border: none;
}
section.related.products > h2::after {
	content: '';
	height: 1px;
	background: #dcdcdc;
	flex: 1 1 0;
	margin-left: 30px;
	position: relative;
	top: 5px;
}
section.related.products > h2 {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}
input#coupon_code {
	min-width: 110px;
	height: 56px;
}
.select2-container--default .select2-selection--single {
	height: 45px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	height: 42px;
	display: flex;
	align-items: center;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 45px;
}
address {
	max-width: 100%;
	box-sizing: border-box;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
	width: 180px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	padding: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul a {
	display: block;
	background-color: #333333;
	color: #fff;
	padding: 10px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li:hover a, .woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
	background-color: var(--colour-blue);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul a:hover {
	opacity: 1;
}
.woocommerce-account .woocommerce-MyAccount-content {
	width: calc(100% - 230px);
}
.woocommerce-account .addresses .title .edit {
	font-size: 16px;
}
header.woocommerce-Address-title.title h3 {
	margin-top: 0;
	font-size: 22px;
}
.woocommerce-Address {
	padding-top: 20px;
}

.woocommerce div.product .woocommerce-tabs .panel {
	max-width: 1000px;
	padding-top: 15px;
}

.woocommerce div.product form.cart .variations label {
	font-size: 14px;
	color: #333;
}

.woocommerce div.product form.cart .variations td {
	vertical-align: baseline;
}
@media (max-width: 768px) {
	.woocommerce-account .woocommerce-MyAccount-navigation {
		float: left;
	}
	.woocommerce-account .woocommerce-MyAccount-content {
		float: right;
		width: calc(100% - 200px);
	}
}
@media (max-width: 640px) {
	.woocommerce-account .woocommerce-MyAccount-navigation {
		float: none;
		width: 100%;
	}
	.woocommerce-account .woocommerce-MyAccount-content {
		float: none;
		width: 100%;
	}
	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		margin-top: 0;
		margin-bottom: 20px;
	}
}
.woocommerce div.product form.cart div.quantity.hidden::before {
	display: none;
}

.main_container {
	padding-top: 30px;
	display: flex;
}

.site-width {
	padding-left: calc(50% - (1380px / 2));
	padding-right: calc(50% - (1380px / 2));
	box-sizing: border-box;
}

.woocommerce-MyAccount-content fieldset {
	margin: 20px 0;
}

.main_container.woo-page aside ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.main_container.woo-page aside > div {
	padding: 0;
	margin-bottom: 0;
}
.main_container.woo-page aside > div.mobile_filter {
	display: none;
	padding: 10px 25px;
	background-color: #333;
	color: #fff;
	text-align: center;
	font-size: 20px;
	text-transform: uppercase;
	position: relative;
}
@media (max-width: 1025px) {
	.main_container.woo-page aside > div.mobile_filter {
		display: block;
	}
}
.main_container.woo-page aside > div.mobile_filter div {
	position: absolute;
	right: 10px;
	height: 45px;
	width: 45px;
	top: 0;
	background-color: transparent;
	opacity: 0;
	transition: opacity 0.2s;
}
.main_container.woo-page aside > div.mobile_filter div span {
	width: 50%;
	height: 2px;
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	transform: rotate(45deg);
}
.main_container.woo-page aside > div.mobile_filter div span:nth-child(2) {
	transform: rotate(-45deg);
}
.main_container.woo-page aside .widget_product_categories strong {
	background: #369;
	border-radius: 5px 5px 0px 0px;
	display: block;
	padding: 20px 40px 15px;
	color: #fff;
	font-weight: 400;
	border-bottom: 6px solid #4980b7;
}
@media (max-width: 1025px) {
	.main_container.woo-page aside .widget_product_categories strong {
		display: none;
	}
}
.main_container.woo-page aside .widget_product_categories > ul {
	border-radius: 0px 0px 5px 5px;
	border: 1px solid #e9e9e9;
	box-sizing: border-box;
	box-shadow: 0px 4px 250px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1025px) {
	.main_container.woo-page aside .widget_product_categories > ul {
		box-shadow: none;
		border: none;
		border-radius: 0;
	}
}
.main_container.woo-page aside .widget_product_categories > ul > li > a {
	display: block;
	font-size: 16px;
	color: #383b45;
	padding: 10px 15px 10px 40px;
	border-bottom: 1px solid #f6f7fb;
	background: 15px center no-repeat url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 11'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 11L0 9.4l5.3-4L0 1.7 2 0l7 5.5L2 11z' fill='%23D9D9D9'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Cpath fill='%23fff' d='M0 0h9v11H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
	background-size: 10px;
}
.main_container.woo-page aside .widget_product_categories > ul > li.current-cat > a, .main_container.woo-page aside .widget_product_categories > ul > li:hover > a {
	background-color: #f3f3f3;
	color: #828282;
}
.main_container.woo-page aside .widget_product_categories > ul > li.current-cat > a, .main_container.woo-page aside .widget_product_categories > ul > li.current-cat-parent > a {
	background-image: url("data:image/svg+xml,%0A%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 9'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 2l1.6-2 4 5.3L9.3 0 11 2 5.5 9 0 2z' fill='%238E8E8E'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Cpath transform='rotate(90 11 0)' fill='%23fff' d='M11 0h9v11h-9z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.main_container.woo-page aside .widget_product_categories > ul > li > span {
	display: none;
}
.main_container.woo-page aside .widget_product_categories > ul > li ul li {
	position: relative;
}
.main_container.woo-page aside .widget_product_categories > ul > li ul li a {
	padding: 10px 15px 10px 40px;
	display: block;
	font-size: 16px;
	color: #383b45;
}
.main_container.woo-page aside .widget_product_categories > ul > li ul li:hover > a {
	background-color: #f3f3f3;
	color: #828282;
}
.main_container.woo-page aside .widget_product_categories > ul > li ul li span {
	font-size: 16px;
	color: #383b45;
}

@media (max-width: 1400px) {
	.main_container.woo-page {
		padding-right: 20px;
		padding-left: 20px;
	}
}

@media (max-width: 1200px) and (min-width: 1025px) {
	.woocommerce ul.products li.product:nth-child(1n), .woocommerce-page ul.products li.product:nth-child(1n) {
		width: 30.05%;
		margin: 0 3.8% 2.992em 0;
	}


	.woocommerce ul.products li.product:nth-child(3n+3), .woocommerce-page ul.products li.product:nth-child(3n+3) {
		margin-right: 0;
	}
}
@media (max-width: 1025px) {
	.woo-page aside {
		flex-basis: auto;
	}
	.archive.woocommerce-page .main_container.woo-page  {
		display: flex;
		flex-direction: column-reverse;
	}
	.main_container.woo-page {
		display: block;
	}
	.main_container.woo-page aside {
		display: block;
		bottom: 0;
		width: 100%;
		left: 0;
		background-color: #fff;
		z-index: 5;
		max-height: 53px;
		overflow: hidden;
	}
	.main_container.woo-page aside > div {
		margin-bottom: 0;
		border: none;
	}
	.main_container.woo-page aside > div:nth-child(4) {
		display: none;
	}
}
.main_container.woo-page aside.open {
	 max-height: 10000px;
 }
.main_container.woo-page aside.open .mobile_filter div {
	opacity: 1;
}

.wc-tabs-wrapper table {
	width: 100%;
	max-width: 100%;
	margin: 30px 0;
}

div#tab-description h2:first-child {
	display: none;
}

.wc-tabs-wrapper table thead td, .wc-tabs-wrapper table thead th,
.wc-tabs-wrapper table tbody td, .wc-tabs-wrapper table tbody th,
.wc-tabs-wrapper table tfoot td, .wc-tabs-wrapper table tfoot th {
	padding: 8px;
	line-height: 1.42857143;
	vertical-align: top;
	border-top: 1px solid #ddd;
}

.form-row input.input-text {
	height: 45px;
	color:  #404040;
	padding-left: 15px;
	width: 100%;
	border: 1px solid #D4D5D9;
	box-sizing: border-box;
}

.woocommerce form .form-row textarea {
	height: 140px;
	padding-top: 20px;
}
.logo {
	height: 100%;
}
.logo a {
	height: 100%;
	display: flex;
	align-items: center;
}

.the-header {
	z-index: 16;
	position: absolute;
	width: 100%;
}

.header-inner {
	position: relative;
	height: 100%;
	align-items: center;
	justify-content: space-between;
	display: flex;
	width: 100%;
}
@media (min-width: 1024px) {
	.header-right {
		height: 100%;
	}
	.site-nav {
		height: 100%;
	}
	#header-nav {
		height: 100%;
	}
	.header-nav {
		display: flex;
		list-style: none;
		height: 100%;
		margin: 0;
	}
	.header-nav > li > a , .header-nav > li  {
		height: 100%;
	}
	.header-nav ul {
		list-style: none;
		padding: 0;
	}

	.header-nav > li.current-menu-item > a:after ,  .header-nav > li.current_page_ancestor > a:after{
		content: '';
		border-bottom: 2px solid var(--colour-blue);
		width: 20px;
		left: 0;
		right: 0;
		margin: auto;
		position: absolute;
		margin-top: 20px;
	}
	.header-nav > li > a {
		transition: all 0.4s ease;
		color: #333;
		font-size: 18px;
		text-transform: uppercase;
		font-weight: 400;
		position: relative;
		padding: 0 20px;
		display: flex;
		align-items: center;
	}
	.header-nav a:hover, .header-nav a:active, .header-nav a:focus {
		color: var(--colour-blue);
	}
	.header-nav > li:not(.mega_menu) {
		position: relative;
	}
	.header-nav > li:not(.mega_menu) > ul {
		position: absolute;
		background-color: #fff;
		min-width: 250px;
		padding: 0px 20px 10px;
		display: none;
		margin-top: -39px;
	}
	.header-nav > li:not(.mega_menu) > ul a {
		display: block;
		color: #333;
		padding: 5px 0;
		transition: all 0.4s ease;
	}
	.header-nav > li:not(.mega_menu):hover > ul {
		display: block;
	}
	.header-nav > li:not(.mega_menu) > ul a:hover {
		color: var(--colour-blue);
	}
	 .mega_menu {
		position: static;
	}
	.mega_menu > ul {
		background: #e6e6e6;
		width: 100%;
		max-width: 1400px;
		box-sizing: border-box;
		display: flex;
		justify-content: space-between;
		right: 0;
		margin: auto;
		position: absolute;
		top: 81px;
		padding: 0;
	}
	.mega_menu > ul {
		display: none;
	}
	.mega_menu:hover > ul {
		display: flex;
		align-items: stretch;
	}
	.mega_menu > ul > li {
		height: auto;
	}
	.mega_menu > ul > li {
		box-sizing: border-box;
		flex-grow: 1;
		padding: 40px 30px;
		border-top: 5px solid #333333;
		border-bottom: 5px solid #333333;
	}
	.mega_menu > ul > li > a {
		font-size: 20px;
		line-height: 1.2em;
		color: #1d232f;
		font-weight: bold;
		margin-bottom: 10px;
		display: block;
		padding: 0;
	}


	.mega_menu > ul > li.current-menu-item > a , .mega_menu > ul > li ul li.current-menu-item a {
		color: var(--colour-blue);
	}
	.mega_menu > ul > li ul a {
		font-size: 17px;
		line-height: 2em;
		color: #1d232f;
	}
	.mega_menu > ul > li ul a:hover {
		opacity: 0.7;
	}

	header.site-header {
		padding: 0;
	}

	header.site-header .row {
		display: flex;
		align-items: center;
	}

	header.site-header > div {
		height: 100%;
	}

	header.site-header > div > div {
		height: 100%;
	}

	.col-xs-12.col-sm-9.col-md-9.col-lg-10.text-left-xs.text-right-sm.nav-wrapper {
		height: 100%;
	}

	.navbar-collapse.collapse {
		min-height: 100%;
		display: block;
		height: 100%!important;
	}

	nav#signals-nav {
		min-height: 100%;
		height: 100%;
		display: block;
	}

	ul#menu-main-navigation {
		padding: 0;
		height: 100%;
	}

	.main-nav li {
		height: 100%;
	}

	.main-nav > li > a {
		height: 100%;
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: center;
	}





	.main-nav li.current-menu-item a:after {
		position: relative;
		left: 0;
		margin: 0;
	}
	.main-nav > li {
		padding: 0 20px;
	}
	.main-nav li ul li {
		display: block;

	}
	.main-nav li ul li ul {
		padding-left: 0;
	}





}

.hidden-search {
	height: 100%;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.hidden-search .row {
	width: 100%;
}
@media (max-width: 1200px) and (min-width: 1024px){
	.header-nav > li > a {
		padding: 0 10px;
	}
}
@media (max-width: 1024px) {
	header.the-header {
		border-bottom: 1px solid #ddd;
	}
	#header-nav {
		position: absolute;
		top: 120px;
		left: 0;
		background-color: #fff;
		width: 100%;
		height: auto;
		max-height: 0;

		overflow: hidden;
		transition: max-height .3s ease;
	}
	#header-nav.open {
		max-height: 2000px;
	}
	#header-nav > * {
		height: auto;
	}
	#header-nav > ul >li:first-child{
		padding-top: 5px;
	}
	#header-nav > ul >li:last-child {
		padding-bottom: 20px;
		border-bottom: 1px solid #ddd;
	}
	.header-nav > li > a , .mega_menu > ul > li > a {
		display: block;
		padding: 5px 0 10px 20px;
		webkit-transition: all 0.4s ease;
		-moz-transition: all 0.4s ease;
		-ms-transition: all 0.4s ease;
		-o-transition: all 0.4s ease;
		transition: all 0.4s ease;
		color: #333;
		font-size: 18px;
		text-transform: uppercase;
		font-weight: 400;
		position: relative;
	}
	.header-nav a {
		outline: none;
	}
	.header-nav {
		display: block;
	}
	.header-nav > li.current-menu-item a:after {
		display: none;
	}
	#header-nav ul {
		list-style: none;
	}
	.navbar-toggle {
		display: block;
		margin-left: 20px;
	}
	.nav-wrapper {
		top: 0;
	}
	div#signals-nav {
		position: absolute;
		width: 100%;
		left: 0;
		background-color: #fff;
		top: 121px;
	}

	.header-right.nav-wrapper {
		position: static;
		border-bottom: none;
	}
	.navbar-collapse.collapse:not(.in) {
		height: 1px!important;
	}
	.collapse {
		display: none;
	}
	.mega_menu > ul , .header-nav > li:not(.mega_menu) > ul {
		display: block;
	}
	.header-nav li.menu-item-has-children > a:after {
		content: '';
		width: 10px;
		height: 10px;
		border-bottom: 1px solid #333;
		border-right: 1px solid #333;
		transform: rotate(45deg);
		transition: transform 0.3s;
		transform-origin: center;
		display: inline-block;
		position: relative;
		margin-left: 15px;
		top: -3px;
	}

	.header-nav li.menu-item-has-children.clicked > a:after {
		transform: rotate(-45deg);
	}
	.header-nav ul {
		 max-height: 0;
		transition: max-height 0.3s;
		overflow: hidden;
		padding-left: 0px;
	}
	.header-nav li.clicked > ul {
		max-height: 1000px;
	}
	.mega_menu > ul > li {
		padding: 0;
		border:none;
		background: #fff;
	}
	.mega_menu:hover > ul {
		display: block;
		position: relative;
		top: 0;
	}
	.header-nav > li > ul > li > a {
		padding: 5px 0 10px 40px;
	}
	.header-nav > li > ul > li > ul > li a {
		padding: 5px 0 10px 50px;
	}
	.header-nav a {
		box-sizing: border-box;
	}
	.mega_menu > ul > li > a {
		margin-bottom: 0;
	}
	.header-nav > li:not(.mega_menu) > ul {
		position: relative;
	}
	.header-nav > li:not(.mega_menu) > ul a {
		padding: 5px 0 10px 40px;
	}
	.header-nav > li:not(.mega_menu) > ul {
		padding: 0;
	}
	.mega_menu > ul {
		position: relative;
		top: 0;
	}
}

.shop-icons a , i.fas.fa-search {
	display: inline-block;
	font: normal normal normal 52px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-left: 20px;
	color: #333;
	font-size: 20px;
	cursor: pointer;
}
.shop-icons a:hover , i.fas.fa-search:hover {
	color: var(--colour-blue);
}
.shop-icons a:nth-child(1) {
	margin-left: 0;
}
.shop-icons {display: inline-block;}

.large-field {
	padding: 0 15px;
}


.woocommerce-checkout #payment ul.payment_methods li img {
	max-width: 300px;
}

.woocommerce-checkout #payment ul.payment_methods li input[type=text] , .woocommerce-checkout #payment ul.payment_methods li select {
	height: 45px;
	color: #404040;
	padding-left: 15px;
	width: 100%;
	border: 1px solid #D4D5D9;
	box-sizing: border-box;
}

.woocommerce-checkout #payment ul.payment_methods li select {
	width: 50px;
	height: 30px;
}

@media (min-width: 768px) {
	.col-xs-12.col-sm-9.col-md-9.col-lg-10.text-left-xs.text-right-sm.nav-wrapper {
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}
	nav#signals-nav {
		margin-right: 20px;;
	}
}



@media (max-width: 768px) {
	.checkbox input[type=checkbox] {
		position: relative;
		margin-left: 0;
	}

	button.navbar-toggle.btn.btn-primary {
		margin-top: 20px;
		margin-right: -16px;
	}

	.shop-icons {
		top: 8px;
		right: 20px;
	}
	.shop-icons a {
		font-size: 18px;
	}
}
header.the-header {
	display: flex;
	justify-content: space-between;
	padding-left: calc(50% - (1600px / 2));
	padding-right: calc(50% - (1600px / 2));
	align-items: center;
	height: 120px;
}

.main-nav li:nth-child(1) {
	padding-left: 0;
}

.logo img {
	max-width: 180px;
}

@media (max-width: 1640px) {
	header.the-header {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.logo a {
	height: 100%;
	display: flex;
	align-items: center;
}
.header-right {
	display: flex;
	align-items: center;
	/* position: relative; */
	flex-grow: 1;
	justify-content: flex-end;
}

.shop-icons {
	display: flex;
	align-items: center;
}

.main_container.woo-page aside .children li.current-cat a {
	background-color: #f3f3f3;
}
@media (max-width: 1200px) {
	.main-nav > li {
		padding: 0 10px;
	}
}

@media (max-width: 768px) {
	button.navbar-toggle.btn.btn-primary {
		margin-top: 0;
		margin-right: 0;
	}
}

@media (max-width: 450px) {
	.shop-icons {
		position: fixed;
		bottom: 0;
		top: auto;
		right: auto;
		z-index: 10000000;
		left: 0;
		justify-content: center;
		width: 100%;
		height: 50px;
		background-color: #fff;
	}

	.shop-icons a {
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: var(--colour-blue);
		color: #fff;
		font-size: 25px;
		margin: 0;
		width: 50%;
		flex-direction: row-reverse;
	}
	.shop-icons a:nth-child(1) {
		border-right: 1px solid #fff;
	}
	.shop-icons a::after {
		content: 'Basket';
		font-family: "Raleway", sans-serif;
		font-size: 16px;
		margin-right: 10px;
	}
	.shop-icons a:nth-child(2)::after {
		content: 'My Account';
	}
	.shop-icons a:hover {
		color: #fff;
	}
}

body .brand-listing-wrapper .brand-listing {
	padding: 0;
	height: 26vw;
	max-height: 475px;
	min-height: 220px;
}

body .brand-listing-wrapper .brand-listing-inner {
	position: relative;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

body .brand-listing-wrapper .brand-listing-inner a {
	width: 100%;
	height: 100%;
	display: block;
}

body .brand-listing-wrapper .brand-listing-image-wrapper {
	display: flex;
	padding: 20px;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
}

body .brand-listing-wrapper .brand-listing-image img {
	width: auto;
	max-height: 100%;
}

body .brand-listing-wrapper .brand-listing-image {
	display: flex;
	align-items: center;
	height: 100%;
	width: 100%;
	justify-content: center;
}