/*
Theme Name: Creatomatic WordPress Framework
Theme URI: https://www.creatomatic.co.uk/our-framework-for-wordpress/
Description: Client website theme
Author: Creatomatic Ltd
Author URI: https://www.creatomatic.co.uk
License URI: https://www.creatomatic.co.uk/terms-and-conditions/
Update URI: disabled
Version: 1.0.0

Colours being used:
--color-primary:   #158749  (brand green)
--color-dark:      #0D1018  (footer / dark bg)
--color-text:      #333333  (body text)
--color-muted:     #666666  (secondary text)
--color-border:    #CCCCCC  (dividers)
--color-white:     #FFFFFF

*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;800&display=swap');


:root {
	--spacer-unit: 1vw;
	--color-primary:  #158749;
	--color-primary-hover: #116c3a;
	--color-dark:     #0D1018;
	--color-text:     #333333;
	--color-muted:    #666666;
	--color-footer-text: #929292;
	--color-border:   #CCCCCC;
	--color-white:    #FFFFFF;
	--font-main:      'Montserrat', sans-serif;
}

@media (max-aspect-ratio: 1/1) {
	:root {
		--spacer-unit: 1vh;
	}
}

html, body {
	margin: 0;
	padding: 0;
	font-family: var(--font-main);
	color: var(--color-text);
	font-size: 16px;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: auto;
	font-smooth: always;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-main);
	font-weight: 300;
	line-height: 1.5;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0;
}

img.responsive{
	border: 0;
	max-width: 100%;
	height: auto;
}

figure.is-resized img{
	max-width: 100%;
}

iframe{
	max-width: 100%;
}

iframe img{
	max-width: inherit;
}

#google-map img{
	max-width: inherit;
}

.clearer, .creatomatic-clearer {
	clear: both;
	height: 0;
}

*:focus {  
	outline: none;
}

a {
	color: var(--color-primary);
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

::selection, ::-moz-selection {
	background: var(--color-primary);
	color: #fff;
}

.centred {
	margin: 0 auto;
	text-align: center;
	max-width: 1300px;
}


a.button-link,
.button-link,
a.wp-block-button__link,
.is-style-outline a.wp-block-button__link,
.contact-row button,
.wp-block-button__link:visited,
form.post-password-form input[type="submit"]{
	display: inline-block;
	font-family: var(--font-main);
	font-weight: 300;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	border: none;
	border-radius: 1px;
	background: var(--color-primary);
	color: #fff;
	padding: 0.6em 2.5em;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	margin: 10px 0;
	-o-transition: background-color .3s ease;
	-ms-transition: background-color .3s ease;
	-moz-transition: background-color .3s ease;
	-webkit-transition: background-color .3s ease;
	transition: background-color .3s ease;
	-webkit-appearance: none;
}

@-moz-document url-prefix() {
  a.button-link,
  .button-link,
  a.wp-block-button__link,
  .is-style-outline a.wp-block-button__link,
  .contact-row button,
  .wp-block-button__link:visited,
  form.post-password-form input[type="submit"]{
	font-weight: 300;
  }
}

.is-style-outline a.wp-block-button__link{
	background: none;
	color: #000;
}

@-moz-document url-prefix() {
  .is-style-outline a.wp-block-button__link{
	  font-weight: 300;
  }
}

a.button-link:hover,
.button-link:hover,
a.wp-block-button__link:hover,
.contact-row button:hover,
form.post-password-form input[type="submit"]:hover{
	background: var(--color-primary-hover);
	cursor: pointer;
}

.is-style-outline a.wp-block-button__link{
	background: transparent;
	border: 2px solid var(--color-primary);
	color: var(--color-primary);
}

.is-style-outline a.wp-block-button__link:hover{
	background: var(--color-primary);
	color: #fff;
}

a.social-icon{
	display: inline-block;
	min-width: 20px;
	height: 20px;
	padding: 5px;
	border: 2px solid var(--color-primary);
	color: var(--color-primary);
	border-radius: 50%;
	margin: 5px 5px 5px 5px;
	font-size: 20px;
	line-height: normal;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

a.social-icon:hover {
	background: var(--color-primary);
	color: #fff;
}

a.social-icon svg{
	width: 25px;
	height: auto;
}

a.social-icon svg path, a.social-icon svg circle{
	fill: var(--color-primary);
}




/* ----- WORDPRESS OVERRIDES ----- */

.full-width .wp-block-cover__inner-container{
	width: 1260px;
	max-width: 100%;
}

.wp-block-media-text.xxx-bg{
	background: #ccc;
}

.wp-block-media-text.xxx-bg:before{
	content: none;
}

.wp-block-embed .wp-block-embed__wrapper {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 56.25%;
}
.wp-block-embed .wp-block-embed__wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

/* ----- WORDPRESS OVERRIDES ----- */




/* ===== Header ===== */

.top-bar {
	width: 100%;
	background: var(--color-white);
	border-bottom: 1px solid var(--color-border);
	position: relative;
	z-index: 200;
}

.top-bar .centred {
	max-width: 1400px;
	text-align: left;
}

.top-bar-inner {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	min-height: 70px;
}

/* --- Left: logo + services dropdown --- */

.top-bar-left {
	display: flex;
	align-items: stretch;
	flex-shrink: 0;
}

a.header-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-primary);
	padding: 0 24px;
	text-decoration: none;
	min-width: 160px;
	transition: background-color 0.2s ease;
}

a.header-logo:hover {
	background: #449f6d;
}

a.header-logo:active {
	background: var(--color-primary-hover);
}

a.header-logo img {
	display: block;
	max-height: 40px;
	width: auto;
	/* Invert to white so logo shows on green bg — remove if logo is already white */
	filter: brightness(0) invert(1);
}

/* Services dropdown toggle (the grey square) */

.header-services-wrap {
	position: relative;
	display: flex;
	align-items: stretch;
}

.header-services-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	background: #aaaaaa;
	cursor: pointer;
	transition: background-color 0.2s ease;
	flex-shrink: 0;
}

.header-services-toggle:hover,
.header-services-wrap:hover .header-services-toggle {
	background: #999;
}

.header-services-toggle i {
	color: var(--color-white);
	font-size: 22px;
}

/* Services nav panel — hidden until hover */

.nav-services {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-top: 3px solid var(--color-primary);
	box-shadow: 0 4px 12px rgba(0,0,0,0.12);
	z-index: 500;
}

.header-services-wrap:hover .nav-services,
.header-services-wrap:focus-within .nav-services {
	display: block;
}

.nav-services ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-services ul li {
	display: block;
	position: relative;
}

.nav-services ul li a {
	display: block;
	padding: 10px 18px;
	font-family: var(--font-main);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-dark);
	text-decoration: none;
	border-bottom: 1px solid var(--color-border);
	transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-services ul li:last-child > a {
	border-bottom: none;
}

.nav-services ul li a:hover {
	background: var(--color-primary);
	color: var(--color-white);
}

/* Sub-menu within services panel */

.nav-services ul li ul {
	display: none;
	position: absolute;
	top: 0;
	left: 100%;
	min-width: 180px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-top: 3px solid var(--color-primary);
	box-shadow: 4px 4px 12px rgba(0,0,0,0.1);
	z-index: 510;
}

.nav-services ul li:hover > ul {
	display: block;
}

.nav-services ul li ul li a {
	border-bottom: 1px solid var(--color-border);
}

/* --- Right: nav + tel + search + quote + mobile toggle --- */

.top-bar-right {
	display: flex;
	align-items: center;
	gap: 0;
	flex-grow: 1;
	justify-content: flex-end;
	padding: 0 16px;
}

/* Phone */

.header-tel {
	border-left: 1px solid var(--color-border);
	border-right: 1px solid var(--color-border);
	padding: 0 20px;
	white-space: nowrap;
	font-family: var(--font-main);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.05em;
	color: var(--color-muted);
}

.header-tel a {
	color: var(--color-dark);
	text-decoration: none;
}

.header-tel a:hover {
	color: var(--color-primary);
}

/* Search — input expands from zero on focus/hover */

.header-search {
	display: flex;
	align-items: center;
	padding: 0 16px;
	position: relative;
}

.header-search button {
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px 6px;
	color: var(--color-muted);
	font-size: 16px;
	line-height: 1;
	margin: 0;
	letter-spacing: 0;
	text-transform: none;
	transition: color 0.2s ease;
}

.header-search button:hover {
	background: none;
	color: var(--color-primary);
}

#header-search-input {
	width: 0;
	border: none;
	border-bottom: 1px solid var(--color-border);
	outline: none;
	padding: 4px 0;
	font-family: var(--font-main);
	font-size: 14px;
	background: transparent;
	transition: width 0.2s linear, padding 0.2s linear;
	box-sizing: border-box;
	overflow: hidden;
}

.header-search:hover #header-search-input,
#header-search-input:focus {
	width: 180px;
	padding: 4px 8px;
	border-bottom-color: var(--color-primary);
}

/* Get A Quote button (ghost style matching Duncan Hill) */

.header-quote {
	display: inline-block;
	font-family: var(--font-main);
	font-size: 13px;
	font-weight: 300;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--color-muted);
	border: 2px solid #757b85;
	padding: 6px 18px;
	white-space: nowrap;
	margin-left: 16px;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.header-quote:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
}

/* ===== End Header ===== */







/* Navigation */

.nav {
	display: inline-flex;
	align-items: center;
	margin: 0;
}

.nav ul {
	margin: 0;
	padding: 0;
}

.nav ul li {
	display: inline;
	text-decoration: none;
	position: relative;
}

/*.nav ul li.menu-item-has-children a{
	background: url(images/nav-dropdown.jpg) right center no-repeat;
	padding-right: 20px;
}

.nav ul li.menu-item-has-children ul li a,
.nav ul li ul li.menu-item-has-children ul li a{
	background: none;
	padding-right: 10px;
}

.nav ul li ul li.menu-item-has-children a{
	background: url(images/nav-dropdown-right.jpg) right center no-repeat;
	padding-right: 20px;
	background-position: 98% center;
}*/

.nav a {
	position: relative;
	padding: 10px 0px 10px 30px;
	display: inline-block;
	text-decoration: none;
	font-family: var(--font-main);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-dark);
}

.nav a:hover, .nav .current_page_ancestor > a, .nav .current_page_item > a {
	color: var(--color-primary);
}

@-moz-document url-prefix() {
  .nav a {
	  font-weight: 300;
  }
}

.nav ul li ul a:link, .nav ul li ul a:visited {
	display: block;
	text-decoration: none;
	padding: 10px;
} 

.nav ul li ul {
	position: absolute;
	display: none;
	background: var(--color-primary);
	text-align: left;
	z-index: 1000;
	margin: 0;
	padding: 0;
	width: 220px;
	margin-left: 20px;
	left: 0;
}

.nav ul li ul li {
	display: inline;
	float: none;
	padding: 0px;
	margin: 0px;
}

.nav ul li ul li ul{
	top: 0;
	left: 200px;
	margin-left: 0;
}

.nav ul li ul li a{
	color: #fff;
	font-weight: 300;
	letter-spacing: 0.1em;
}

.nav ul li ul li a:hover {
	background: var(--color-primary-hover);
	color: #fff;
}






/* Mobile Navigation */

.mobile-nav-header {
	display: none; /* shown via media query below */
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0 4px;
	z-index: 50001;
	position: relative;
	margin-left: 12px;
}

.mobile-nav-header:hover {
	opacity: 0.6;
}

.mobile-nav-header i {
	font-size: 26px;
	line-height: 1;
	color: var(--color-dark);
}

/* Hide desktop-only elements on small screens; show mobile toggle */
@media (max-width: 768px) {
	.header-services-wrap,
	.nav.nav-right,
	.header-tel,
	.header-search,
	.header-quote {
		display: none;
	}

	.mobile-nav-header {
		display: flex;
	}
}

.mobile-nav {
	width: 100%;
	max-width: 100%;
	padding: 0 20px;
	position: fixed;
	top: 0;
	left: 0;
	height: 100dvh;
	z-index: 5000;
	overflow: scroll;
	background: var(--color-primary);
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
	box-sizing: border-box;
	clip-path: inset(0 100% 0 0);
	-webkit-clip-path: inset(0 100% 0 0);
	transition: all .5s cubic-bezier(0.77, 0, 0.175, 1);
	transition: all .5s cubic-bezier(0.77, 0, 0.175, 1);
	transition: all .5s cubic-bezier(0.77, 0, 0.175, 1), all .5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav.mobile-nav-active {
	clip-path: inset(0 0 0 0);
	-webkit-clip-path: inset(0 0 0 0);
}

.mobile-nav::-webkit-scrollbar {
	display: none;
}

.mobile-nav .menu-main-container{
	position: relative;
	width: 100%;
	height: 100%;
}

.mobile-nav ul {
	list-style: none;
	padding:0;
	margin:0;
}

.mobile-nav ul li {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: space-between;
}

.mobile-nav a {
	display: inline-block;
	margin: 0;
	font-family: var(--font-main);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-size: 16px;
	text-align: left;
	padding: 10px 0;
	color: #fff;
	font-weight: 800;
	text-decoration: none;
}

@-moz-document url-prefix() {
  .mobile-nav a {
	  font-weight: 300;
  }
}

.mobile-nav a:hover, .mobile-nav .current_page_ancestor > a, .mobile-nav .current_page_item > a {
	opacity: 0.5;
}

.mobile-nav li i{
	padding: 10px;
	font-size: 18px;
	color: #fff;
}

.mobile-nav ul li ul li.mobile-nav-back i{
	font-size: 14px;
	padding: 10px 10px 10px 0;
}

.mobile-nav ul li ul li.mobile-nav-back{
	width: 100%;
	justify-content: flex-start;
	gap: 10px;
}

.mobile-nav ul li ul li.mobile-nav-back a{
	padding-left: 0;
}

.mobile-nav ul li ul{
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	z-index: 200;
	width: 100%;
	overflow: scroll;
	background: var(--color-primary-hover);
	order: 3;
}

.mobile-nav ul li ul li ul{
	z-index: 300;
}


/* ----- CUSTOM CLASSES ----- */

.short-content, .medium-content{
	width: 600px;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
}

.medium-content{
	width: 1000px;
}

.has-text-align-left.short-content, .has-text-align-left.medium-content{
	margin-left: 0;
}

.remove-margins {
	margin-top: 0;
	margin-bottom: 0;
}

.full-width{
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.xxx-bg{
	position: relative;
	z-index: 1;
}

.xxx-bg a{
	color: #fff;
}

.xxx-bg:before{
	background: #ccc;
	position: absolute;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	width: 100vw;
	height: 100%;
	z-index: -1;
	content: '';
}

.full-width-media-text.wp-block-media-text figure.wp-block-media-text__media {
	--widthA: calc(100vw - 1260px);
	--widthB: calc(var(--widthA) / 2);
	width: calc(100% + var(--widthB));
	position: relative;
	left: calc(var(--widthB) * -1);
}

.full-width-media-text.wp-block-media-text.has-media-on-the-right figure.wp-block-media-text__media {
	--widthA: calc(100vw - 1260px);
	--widthB: calc(var(--widthA) / 2);
	width: calc(100% + var(--widthB));
	left: unset;
}


/* ----- CUSTOM CLASSES ENDS ----- */



/* ----- CUSTOM SHORTCODES ----- */


/* ----- CUSTOM SHORTCODES ENDS ----- */



/* ----- CUSTOM ANIMATION ----- */

.fade-right, .fade-left, .fade-down, .fade-up {
	opacity: 0;
	transition-property: opacity,-webkit-transform;
	transition-property: opacity,transform;
	transition-property: opacity,transform,-webkit-transform;
	-webkit-transform: translate3d(-100px,0,0);
	transform: translate3d(-100px,0,0);
	transition-timing-function: ease;
	transition-duration: 1s;
}

.fade-left {
	-webkit-transform: translate3d(100px,0,0);
	transform: translate3d(100px,0,0);
}

.fade-down {
	transform: translate3d(0, -100px, 0);
}

.fade-up {
	transform: translate3d(0, 100px, 0);
}

.fade-right.creato-animate-active, .fade-left.creato-animate-active, .fade-down.creato-animate-active, .fade-up.creato-animate-active {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.wp-block-media-text.creato-animate-media-text-from-left figure,
.wp-block-media-text.creato-animate-media-text-from-right figure,
.wp-block-media-text.creato-animate-media-text-from-bottom figure,
.wp-block-media-text.creato-animate-media-text-from-top figure,
.creato-animate-image-from-left figure,
.creato-animate-image-from-right figure,
.creato-animate-image-from-bottom figure,
.creato-animate-image-from-top figure,
figure.creato-animate-image-from-left,
figure.creato-animate-image-from-right,
figure.creato-animate-image-from-bottom,
figure.creato-animate-image-from-top,
.wp-block-cover.creato-animate-image-from-left img,
.wp-block-cover.creato-animate-image-from-right img,
.wp-block-cover.creato-animate-image-from-bottom img,
.wp-block-cover.creato-animate-image-from-top img {
	position: relative;
	overflow: hidden;
	-webkit-clip-path: inset(0px 100% 0px 0px);
	clip-path: inset(0px 100% 0px 0px);
	will-change: clip-path;
	transition: -webkit-clip-path 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	transition: clip-path 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	transition: clip-path 1s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-clip-path 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.wp-block-cover.creato-animate-image-from-left img,
.wp-block-cover.creato-animate-image-from-right img,
.wp-block-cover.creato-animate-image-from-bottom img,
.wp-block-cover.creato-animate-image-from-top img {
	position: absolute;
}

.wp-block-media-text.creato-animate-media-text-from-right figure,
.creato-animate-image-from-right figure,
figure.creato-animate-image-from-right,
.wp-block-cover.creato-animate-image-from-right img {
	-webkit-clip-path: inset(0px 0px 0px 100%);
	clip-path: inset(0px 0px 0px 100%);
}

.wp-block-media-text.creato-animate-media-text-from-bottom figure,
.creato-animate-image-from-bottom figure,
figure.creato-animate-image-from-bottom,
.wp-block-cover.creato-animate-image-from-bottom img {
	-webkit-clip-path: inset(100% 0px 0px 0px);
	clip-path: inset(100% 0px 0px 0px);
}

.wp-block-media-text.creato-animate-media-text-from-top figure,
.creato-animate-image-from-top figure,
figure.creato-animate-image-from-top,
.wp-block-cover.creato-animate-image-from-top img {
	-webkit-clip-path: inset(0px 0px 100% 0px);
	clip-path: inset(0px 0px 100% 0px);
}

.wp-block-media-text.creato-animate-media-text-from-left.creato-animate-active figure,
.wp-block-media-text.creato-animate-media-text-from-right.creato-animate-active figure,
.wp-block-media-text.creato-animate-media-text-from-bottom.creato-animate-active figure,
.wp-block-media-text.creato-animate-media-text-from-top.creato-animate-active figure,
.creato-animate-image-from-left.creato-animate-active figure,
.creato-animate-image-from-right.creato-animate-active figure,
.creato-animate-image-from-bottom.creato-animate-active figure,
.creato-animate-image-from-top.creato-animate-active figure,
figure.creato-animate-image-from-right.creato-animate-active,
figure.creato-animate-image-from-left.creato-animate-active,
figure.creato-animate-image-from-top.creato-animate-active,
figure.creato-animate-image-from-bottom.creato-animate-active,
.wp-block-cover.creato-animate-image-from-left.creato-animate-active img,
.wp-block-cover.creato-animate-image-from-top.creato-animate-active img,
.wp-block-cover.creato-animate-image-from-right.creato-animate-active img,
.wp-block-cover.creato-animate-image-from-bottom.creato-animate-active img {
	-webkit-clip-path: inset(0px 0px 0px 0px);
	clip-path: inset(0px 0px 0px 0px);
}

.wp-block-media-text.creato-animate-media-text-from-left .wp-block-media-text__content,
.wp-block-media-text.creato-animate-media-text-from-right .wp-block-media-text__content,
.wp-block-media-text.creato-animate-media-text-from-bottom .wp-block-media-text__content,
.wp-block-media-text.creato-animate-media-text-from-top .wp-block-media-text__content {
	opacity: 0;
	position: relative;
	top: 50px;
	-ms-transition: all 1s ease-out; 
	transition: all 1s ease-out; 
	-webkit-transition: all 1s ease-out;
	-moz-transition: all 1s ease-out;
	-o-transition: all 1s ease-out;
	visibility:hidden;
}

.wp-block-media-text.creato-animate-media-text-from-left.creato-animate-active .wp-block-media-text__content,
.wp-block-media-text.creato-animate-media-text-from-right.creato-animate-active .wp-block-media-text__content,
.wp-block-media-text.creato-animate-media-text-from-bottom.creato-animate-active .wp-block-media-text__content,
.wp-block-media-text.creato-animate-media-text-from-top.creato-animate-active .wp-block-media-text__content {
	opacity: 1;
	position: relative;
	top: 0px;
	visibility:visible;
}


/* ----- CUSTOM ANIMATION ENDS ----- */


/* Search */

.ui-autocomplete {
	padding: 0;
	top: 45px;
	width: 200px;
	background: #262626;
	color: #fff;
	z-index: 400;
	box-shadow: none;
	border: none !important;
	font-size: 16px;
	margin: 0;
	left: 0;
	list-style: none outside none;
	z-index: 9999
}

.ui-menu-item {
	padding: 5px 5%;
}

.ui-menu-item:hover {
	color: #fff;
	background: var(--color-primary);
	cursor: pointer;
	margin: 0;
}

.creato_search_loading {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 8px;
	left: 82%;
}

.creato_search_loading.active {
	background: url('images/loading.gif') no-repeat right center;
}





/* V2 Search */

.v2-search-results-switches {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px 50px;
	margin: 40px 0;
	padding: 0;
}

.v2-search-results-switches li {
	list-style: none;
	display: inline-block;
	cursor: pointer;
}

.v2-search-results-switches li span {
	display: flex;
	align-items: center;
	gap: 5px;
	font-family: var(--font-main);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1.25px;
	color: var(--color-dark);
	position: relative;
}

.v2-search-results-switches li span::before {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	height: 2px;
	background: var(--color-primary);
	width: 0;
	-o-transition: .8s;
	-ms-transition: .8s;
	-moz-transition: .8s;
	-webkit-transition: .8s;
	transition: .8s;
} 

.v2-search-results-switches li.active span::before,
.v2-search-results-switches li:hover span::before {
	width: 100%;
}

.v2-search-results-tab.props .smart-search-page-results-section-inner {
	display: grid;
	grid-template-columns: calc(33.34% - 20px) calc(33.33% - 20px) calc(33.33% - 20px);
	gap: 30px 30px;
	margin-bottom: 0;
}

.v2-search-results-tab.posts .smart-search-page-results-section-inner {
	grid-template-columns: calc(33.34% - 20px) calc(33.33% - 20px) calc(33.33% - 20px);
	display: grid;
	gap: 30px;
}

.v2-search-results-tab.pages .smart-search-page-results-section-inner {
	grid-template-columns: calc(33.34% - 20px) calc(33.33% - 20px) calc(33.33% - 20px);
	display: grid;
	gap: 30px;
}

.v2-search-results-empty {
	text-align: center;
	font-size: 20px;
	margin: 30px 0;
	font-weight: 500;
}

.v2-search-results-tab {
	display: none;
}

.v2-search-results-tab.active {
	display: block;
}



/* Body */

.page-wrapper{
	width: 100%;
	overflow: clip;
}

.page-content{
	width: calc(100% - 40px);
	margin: 0px 20px;
	text-align: left;
}


.creato_block-container{
	display: inline-block;
	width: 100%;
}

.creato_block-container-header{
	display: flex;
	width: 100%;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.creato_block-container-header-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
	flex-wrap: wrap;
}

.creato_block-container-arrows {
	display: flex;
	align-items: center;
	gap: 10px;
}

.creato_block-container-arrows i {
	width: 40px;
	height: 40px;
	box-sizing: border-box;
	border: 2px solid;
	position: relative;
}

.creato_block-container-arrows i:hover {
	cursor: pointer;
}

.creato_block-container-arrows i::before {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
}

.creato_block-container-listings{
	display: inline-block;
	width: 100%;
}


/* creato_block grid */

.creato_block-container .grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 100%;
}

.creato_block-container .grid .creato_block-listing{
	width: 100%;
	margin: 0;
}

.creato_block-container.creato_block-container-1-columns .grid {
	grid-template-columns: calc(33.34% - 14px) calc(33.33% - 13px) calc(33.33% - 13px);
}

.creato_block-container.creato_block-container-2-columns .grid {
	grid-template-columns: calc(50% - 10px) calc(50% - 10px);
}

.creato_block-container.creato_block-container-3-columns .grid {
	grid-template-columns: calc(33.34% - 14px) calc(33.33% - 13px) calc(33.33% - 13px);
}

.creato_block-container.creato_block-container-4-columns .grid {
	grid-template-columns: calc(25% - 15px) calc(25% - 15px) calc(25% - 15px) calc(25% - 15px);
}

.creato_block-container.creato_block-container-5-columns .grid {
	grid-template-columns: calc(20% - 16px) calc(20% - 16px) calc(20% - 16px) calc(20% - 16px) calc(20% - 16px);
}

.creato_block-listing-image{
	width: 100%;
	aspect-ratio: 16/9;
	overflow: hidden;
	position: relative;
}

.creato_block-listing-image-inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.creato_block-listing.creato-block-image-background-true {
	aspect-ratio: 3/4;
	overflow: hidden;
	position: relative;
}

.creato_block-listing.creato-block-image-background-true .creato_block-listing-background-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* end creato_block grid */




/* creato_block slider */

.creato_block-container .slider .creato_block-listing{
	margin-right: 20px;
}

/* end creato_block slider */


.creato_block-listing{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}


/* Video Shortcode */

.video-outer {
	width: 100vw;
	position: relative;
	overflow: hidden;
	height: 100vh;
}

.video-overlay {
	background: rgba(0, 0, 0, 0.2);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
}

.no-overlay .video-overlay {
	background: none;
}

.vimeo-video {
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	min-height: 100%;
	min-width: 100%;
}

.video-image {
	height: 100vh;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	background-position: center;
}

.video {
	margin: auto;
	position: absolute;
	top: 0;
	min-height: 100%;
	min-width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.video-outer .video-content,
.video-image .video-content {
	max-width: calc(100% - 40px);
	width: 800px;
	text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	right: 0;
	margin: 0 auto;
	text-align: center;
}

.video-outer .video-content h3,
.video-image .video-content h3 {
	color: #fff;
	font-family: var(--font-main);
	font-weight: 300;
	font-style: normal;
	font-size: 24px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.video-outer .video-content h1,
.video-image .video-content h1 {
	color: #fff;
	font-weight: 400;
	margin-bottom: 12px;
}

.video-outer .video-content .button-link,
.video-image .video-content .button-link {
	background: none;
	border: 1px solid #fff;
	color: #fff;
	padding: 13px 26px 13px;
	text-shadow: none;
	margin-top: 20px;
}

.video-outer .video-content .button-link:after,
.video-image .video-content .button-link:after {
	display: none;
}

.video-outer .video-content .button-link:hover,
.video-image .video-content .button-link:hover {
	background: #fff;
	border: 1px solid var(--color-primary);
	color: var(--color-primary);
}

.vimeo-video iframe {
	z-index: -1;
	overflow: hidden;
}
/*
.video-outer .sc-main-search-outer {
	position: static;
}
*/




.schema-faq-section{
	border-bottom: 1px solid var(--color-border);
}

.schema-faq-question{
	font-family: var(--font-main);
	font-weight: 300;
	font-style: normal;
	letter-spacing: 0.03em;
	line-height: 1.5;
	font-size: 18px;
	padding: 20px 50px 20px 0;
	display: inline-block;
	width: calc(100% - 50px);
	position: relative;
}

.schema-faq-question:after{
	content: '\f063';
	font-family: "Font Awesome 6 Pro";
	border-radius: 50%;
	background: var(--color-primary);
	color: #fff;
	width: 30px;
	height: 30px;
	font-size: 16px;
	line-height: 30px;
	text-align: center;
	-o-transition:.5s;
	-ms-transition:.5s;
	-moz-transition:.5s;
	-webkit-transition:.5s;
	transition:.5s;
	letter-spacing: 0;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.schema-faq-answer-open:after{
	transform: translateY(-50%) rotate(180deg);
}

.schema-faq-answer{
	display: none;
}









/* Index */

#sidebar {
	text-align: right;
	display: inline-block;
	width: 100%;
	margin-bottom: 10px;
}

#sidebar ul{
	margin: 0;
	padding: 0;
}

#sidebar ul li{
	list-style: none;
}

#sidebar select {
	appearance: none;
	-webkit-appearance: none;
	background: #fff;
	border: 2px solid var(--color-primary);
	padding: 9px 38px 9px 20px;
	border-radius: 3px;
	width: 200px;
	text-transform: capitalize;
	color: var(--color-dark);
	font-weight: 400;
	background-repeat: no-repeat !important;
	background-position: 90% center !important;
	background-size: auto 11px !important;
	cursor: pointer;
	font-size: 14px;
	background: #fff url(images/select-dropdown.svg);
	font-family: var(--font-main);
}


.pagination{
	display: inline-block;
	width: 100%;
	padding: 10px 0;
	margin: 20px 0;
	text-align: center;
}

.pagination a.page-numbers, .pagination span.current{
	display: inline-block;
	width: 20px;
	text-align: center;
	color: #000;
}

.pagination span.current, .pagination a.page-numbers:hover, .pagination a.prev:hover, .pagination a.next:hover{
	color: var(--color-primary);
}

.pagination a.prev, .pagination a.next{
	width: auto;
	padding: 0 3px;
}





/* News */

.archive-news-outer {
	display: grid;
	grid-template-columns: calc(33.34% - 14px) calc(33.33% - 13px) calc(33.33% - 13px);
	gap: 30px 20px;
	margin: 40px 0;
}

.archive-news {
	display: inline-block;
	width: 100%;
	margin: 0;
}

.blog-filters {
	width: max-content;
	margin-top: 10px;
}



/* Error Page */

.error-page .custom-breadcrumbs {
	display: none;
}



/* Map */

.map-container, #google-map{
	width: 100%;
}

#google-map{
	height: 500px;
}





/* Contact Form */

.creato_cf_main {
	width: 100%;
	text-align: left;
}

.creato_cf_main h2 {
	margin-bottom: 30px;
}

.contact-row {
	width: 100%;
	display: inline-block;
	margin-bottom: 10px;
}

.contact-row label {
	display: inline-block;
	width: 100%;
	vertical-align: top;
	margin-bottom: 8px;
}

.contact-row input[type="text"], .contact-row textarea, .contact-row select {
	border: 1px solid var(--color-border);
	padding: 10px;
	width: 100%;
	max-width: 100%;
	font-size: 16px;
	font-family: var(--font-main);
	-webkit-appearance: none;
	box-sizing: border-box;
	outline-offset: 0;
}

.contact-row input[type="text"]:focus,
.contact-row textarea:focus,
.contact-row select:focus {
	outline: 1px solid var(--color-primary);
	border-color: var(--color-primary);
}

.contact-row select {
	background-image: url('images/dropdown-arrow.svg');
	background-size: 14px;
	background-position: top 50% right 10px;
	background-repeat: no-repeat;
}

.contact-row-contact_terms label{
	font-size: 12px;
	display: inline-block;
}

.message {
	color: #545454;
	display: inline-block;
	width: 94%;
    padding: 15px 2%;
    margin: 20px 1%;
    border: 1px solid #545454;
    font-size:16px;
}


/* Password Protected Pages */

form.post-password-form {
	padding: 30px 20px;
	width: calc(100% - 40px);
	background: #eeeeee;
	margin: 30px auto;
}

form.post-password-form input[name="post_password"] {
	border: none;
	background: #fff;
	padding: 10px;
	margin: 0 10px;
	font-size: 16px;
	color: #000;
	border-radius: 3px;
}







/* Footer */

.footer {
	width: 100%;
	background: var(--color-dark);
	color: var(--color-footer-text);
	font-family: var(--font-main);
	font-size: 14px;
	font-weight: 800;
}

.footer-inner {
	width: 100%;
	box-sizing: border-box;
	padding: 40px 20px 20px;
	text-align: left;
}

.footer h2, .footer h3, .footer h4, .footer strong {
	color: var(--color-white);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.footer h3 {
	font-size: 1.1rem;
	font-weight: 800;
	padding: 0 0 1em;
}

a.footer-logo {
	width: 150px;
	max-width: 100%;
}

a.footer-logo svg {
	width: 100%;
}

.footer-menu ul {
	padding: 0;
	margin: 0;
}

.footer-menu ul li {
	list-style: none;
	display: block;
	padding: 0.3em 0;
}

.footer-menu ul li a {
	display: block;
	width: fit-content;
}

.footer a {
	color: var(--color-footer-text);
	text-decoration: none;
}

.footer a:hover {
	color: var(--color-white);
}

.footer-left ul,
.credit-link ul {
	margin: 0;
	padding: 0;
}

.footer-left ul li,
.credit-link ul li {
	list-style: none outside none;
	display: inline;
}

.credit{
	display: flex;
	width: 100%;
	font-size: 12px;
	font-family: var(--font-main);
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px 30px;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.1);
	color: var(--color-footer-text);
}


.credit-link, .credit-left span {
	display: inline-block;
}


@media (max-width: 1300px) {
	.full-width-media-text.wp-block-media-text figure.wp-block-media-text__media {
		width: calc(100% + 20px);
		left: calc(-20px);
	}
	
	.full-width-media-text.wp-block-media-text.has-media-on-the-right figure.wp-block-media-text__media {
		width: calc(100% + 20px);
	}
}


@media (max-width: 1000px) {
	.creato_block-container.creato_block-container-5-columns .grid {
		grid-template-columns: calc(25% - 15px) calc(25% - 15px) calc(25% - 15px) calc(25% - 15px);
	}
}

@media (max-width: 850px) {
	.creato_block-container.creato_block-container-4-columns .grid,
	.creato_block-container.creato_block-container-5-columns .grid {
		grid-template-columns: calc(33.34% - 14px) calc(33.33% - 13px) calc(33.33% - 13px);
	}
}


/* Tablet */


@media (max-width: 700px) {

	.mobile-slider .creato_block-container-listings .grid .creato_block-listing{
		margin: 10px 20px 10px 0;
	}

	.mobile-slider .creato_block-container-listings .grid .creato_block-listing:nth-child(2n+1),
	.mobile-slider .creato_block-container-listings .grid .creato_block-listing:nth-child(3n+1),
	.mobile-slider .creato_block-container-listings .grid .creato_block-listing:nth-child(4n+1){
		clear: none;
	}
	
	.creato_block-container.creato_block-container-3-columns .grid,
	.creato_block-container.creato_block-container-4-columns .grid,
	.creato_block-container.creato_block-container-5-columns .grid,
	.archive-news-outer {
		grid-template-columns: calc(50% - 10px) calc(50% - 10px);
	}
	
	.creato_block-container.creato_block-container-3-columns .grid .creato_block-listing:last-child,
	.creato_block-container.creato_block-container-5-columns .grid .creato_block-listing:last-child {
		grid-column: span 2;
	}

}



@media (max-width: 600px) {

	.wp-block-media-text .wp-block-media-text__content {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	
	.cookie-banner {
		width: 60px !important;
		height: 60px !important;
	}
	
	.cookie-banner i {
		font-size: 18px !important;
	}
	
	.full-width-media-text.wp-block-media-text figure.wp-block-media-text__media {
		width: calc( 100% + 40px);
	}
	
	.full-width-media-text.wp-block-media-text.has-media-on-the-right figure.wp-block-media-text__media {
		width: calc( 100% + 40px);
		left: -20px;
	}

}



/* Mobile Layouts */

@media (max-width: 450px) {
	.creato_block-container.creato_block-container-2-columns .grid,
	.creato_block-container.creato_block-container-3-columns .grid,
	.creato_block-container.creato_block-container-4-columns .grid,
	.creato_block-container.creato_block-container-5-columns .grid,
	.archive-news-outer {
		grid-template-columns: 100%;
	}
	
	.creato_block-container.creato_block-container-3-columns .grid .creato_block-listing:last-child,
	.creato_block-container.creato_block-container-5-columns .grid .creato_block-listing:last-child {
		grid-column: span 1;
	}
	
}


@media (max-width: 400px) {
	
}


























/* General Woocommerce */

/* Remove to set live - Copy this line, find and replace with a blank

.woocommerce{
	display: inline-block;
	width: 100%;
}

#sidebar{
	float: left;
	width: 20%;
	margin-top: 40px;
}

#sidebar ul{
	margin: 0;
	padding: 0;
}

#sidebar ul li{
	list-style: none outside none;
	margin-bottom: 5px;
}

#sidebar a{
	color: #6C6D6D;
}

#sidebar .widget{
	margin-bottom: 20px;
}

#primary{
	margin: 0 auto;
	text-align: center;
	max-width: 1200px;
	width:98%
}

.woocommerce .main-content{
	text-align: left;
}

.woocommerce .woocommerce-breadcrumb{
	text-align: left;
	font-size: 12px;
	display: inline-block;
	width: 100%;
	margin: 80px 0 20px 0;
	color: #BFBFBF;
}

.woocommerce .woocommerce-breadcrumb a{
	color: #BFBFBF;
}

mark.count{
	display: none;
}

/* End General */








/* Woocommerce Buttons */

/* Remove to set live - Copy this line, find and replace with a blank

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce input.button.alt,
#sidebar a.button,
.woocommerce div.product form.cart .button,
.woocommerce input#wc_lost_license_btn,
.woocommerce button.button.alt{
	display: inline-block;
	text-transform: uppercase;
	border: none;
	background: #ccc;
	color: #fff;
	padding: 10px 15px !important;
	text-align: center;
	margin: 10px 0;
	font-size: 16px;
	border-radius: 0px;
	font-weight: 200;
	white-space: inherit;
	max-width: 90%;
	font-weight: bold;
	-webkit-appearance:none;
	  -o-transition:.5s;
	  -ms-transition:.5s;
	  -moz-transition:.5s;
	  -webkit-transition:.5s;
	  transition:.5s;
}

#sidebar a.button{
	margin: 10px 1%;
	width: 43%;
	padding: 5px 1% !important;
	font-size: 14px;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce div.product form.cart .button:hover,
.woocommerce a.button.alt:hover,
.woocommerce input.button.alt:hover,
#sidebar a.button:hover,
.woocommerce input.button:disabled,
.woocommerce input.button.alt:hover,
.woocommerce input#wc_lost_license_btn:hover,
.woocommerce button.button.alt:hover{
	background: #545454;
	color: #fff;
	cursor: pointer;
}

/* End Buttons */








/* Archive Products/Categories */

/* Remove to set live - Copy this line, find and replace with a blank

.woocommerce ul.products li.product-category h2{
	text-align: center;
	font-size: 16px;
}

.woocommerce ul.products li.product .price{
	color: #545454;
	font-size: 18px;
	display: none;
}

.woocommerce div.product p.price, .woocommerce div.product span.price{
	color: #545454;
	font-size: 20px;
}

.woocommerce div.product .woocommerce-variation-price span.price{
	font-size: 30px;
	color: #545454;
	font-weight: bold;
	margin-bottom: 20px;
}

.woocommerce span.onsale{
	background: #545454;
}

.woocommerce ul.products li.product .price del{
	display: inline-block;
}

/* End Archive Styling */








/* Single Product */

/* Remove to set live - Copy this line, find and replace with a blank

.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images{
	text-align: left;
}

.woocommerce .summary{
	text-align: left;
	color: #545454;
}

.woocommerce div.product h1.product_title{
	color: #545454;
}

.woocommerce .summary p.price{
	font-size: 26px;
	margin: 0 0 20px 0;
}

.woocommerce .quantity .qty{
	background: none;
	color: #545454;
	font-size: 18px;
	padding: 6px 2px;
	border: 1px solid #545454;
	margin: 10px 10px 0 0;
}

.woocommerce div.product p.stock{
	
}

.woocommerce .summary form .form-row{
	margin: 0;
	padding: 0;
}

.woocommerce div.product form.cart .variations select{
	font-family: 'Montserrat', 'Helvetica', 'Arial', serif;
	font-size: 14px;
	background: #fff;
	-webkit-appearance:none;
	border-radius: 0;
	color: #545454;
	padding: 10px;
	border: 1px solid #545454;
}

.woocommerce div.product form.cart .button{
	padding: 10px 15px !important;
}

.woocommerce .product_meta{
	font-size: 14px;
}

.woocommerce span.sku_wrapper{
	
}

.woocommerce section.related{
	display: inline-block;
	width: 100%;
}

.woocommerce section.related h2{
	text-align: center;
	margin-bottom: 20px;
}


.woocommerce-message, .woocommerce-info {
	text-align: left;
}

.woocommerce .woocommerce-message .button{
	margin: 0;
	padding: 10px 15px !important;
}

.woocommerce div.product div.images {
	width: 47%;
	margin-left: 1%;
}

.woocommerce .woocommerce-ordering select {
    padding: 8px 0%;
	appearance: none;
	-webkit-appearance: none;
	border: none;
	font-size: 12px;
	font-family: 'Montserrat', 'Helvetica', 'Arial', serif;
	float: right;
	margin-right: 1%;
	width: 100%;
}

.single_add_to_cart_button {
	
}

/* End Single Product */








/* Woocommerce Tabs */

/* Remove to set live - Copy this line, find and replace with a blank

.woocommerce-tabs{
	text-align: left;
	margin: 40px 0;
	display: inline-block;
	width: 100%;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before{
	display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li{
	border-radius: 0;
	border: none;
	margin: 0 5px 5px 0;
	color: #545454;
	text-transform: uppercase;
	font-weight: 800;
	background: #ccc;
	border: 1px solid #ccc;
	border-bottom: none;
	  -o-transition:.5s;
	  -ms-transition:.5s;
	  -moz-transition:.5s;
	  -webkit-transition:.5s;
	  transition:.5s;
}

.woocommerce div.product .woocommerce-tabs ul.tabs{
	margin: 0;
	padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:hover, .woocommerce div.product .woocommerce-tabs ul.tabs li.active{
	background: #fff;
	color: #ccc;
	margin-bottom: 0;
	padding-bottom: 5px;

}

.woocommerce div.product .woocommerce-tabs ul.tabs li:hover a {
	color: #ccc;
}
	
.woocommerce div.product .woocommerce-tabs ul.tabs li.active:hover a {
	color: #ccc;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a{
	padding: 10px 10px;
	font-size: 16px;
	color: #fff;
}

.woocommerce div.product .woocommerce-tabs .panel{
	width: 94%;
	padding: 30px 3%;
	background: #fff;
	border: 1px solid #ccc;
	margin-top: -1px;
	float: left;
}

/* end of tabs */








/* Basket */

/* Remove to set live - Copy this line, find and replace with a blank

.woocommerce table.cart td.actions .input-text, .woocommerce form.checkout_coupon .form-row input.input-text{
	float: left;
	width: 150px;
	padding: 3px 10px;
	font-size: 16px;
	font-family: 'Montserrat', 'Helvetica', 'Arial', serif;
	margin: 10px 10px 10px 0;
	-webkit-appearance:none;
}

.woocommerce table.shop_table{
	border: 1px solid #ccc;
	font-size: 14px;
	background: #fff;
	border-radius: 0;
}

.woocommerce table img{
	width: 50px;
	height: auto;
}

.woocommerce td.product-name dl.variation p{
	margin: 0;
}

.woocommerce table.cart td.actions .input-text{
	border: 1px solid #ccc;
	background: none;
	color: #545454;
	padding: 9px 10px;
	width: 200px;
}

.woocommerce table.cart td.actions .input-text::placeholder{
	color: #545454;
}

.woocommerce table.shop_table td, .woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th{
	border-top: 1px solid #ccc;
}

/* End Basket */








/* Checkout Page */

/* Remove to set live - Copy this line, find and replace with a blank

.woocommerce form .form-row-last {
    width: 46%;
}

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select{
	padding: 10px;
	font-size: 16px;
	font-family: 'Montserrat', 'Helvetica', 'Arial', serif;
	border: 1px solid #ccc;
	color: #545454;
	background: #fff;
	-webkit-appearance:none;
}

.woocommerce form .form-row input.input-text::placeholder{
	color: #ccc;
}

.woocommerce form.checkout_coupon .form-row input.input-text{
	width: 100%;
	padding: 7px 10px;
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment{
	border-radius: 0;
}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2{
	width: 100%;
	margin: 20px 0%;
}

.woocommerce .woocommerce-checkout{
	width: 600px;
	margin: 0 auto;
	max-width: 96%;
}

.woocommerce form .form-row.woocommerce-validated input.input-text {
	border-color: #ccc;
}

/* End Checkout */







/* My Account */

/* Remove to set live - Copy this line, find and replace with a blank

.woocommerce nav.woocommerce-MyAccount-navigation{
	display: inline-block;
	width: 100%;
	text-align: center;
	background: #545454;
}

.woocommerce nav.woocommerce-MyAccount-navigation ul{
	margin: 0;
	padding: 0;
}

.woocommerce nav.woocommerce-MyAccount-navigation ul li{
	list-style: none outside none;
	display: inline;
}

.woocommerce nav.woocommerce-MyAccount-navigation ul li a{
	padding: 10px 15px;
	color: #fff;
	text-transform: uppercase;
	display: inline-block;
	font-size: 14px;
}

.woocommerce nav.woocommerce-MyAccount-navigation ul li a:hover, .woocommerce nav.woocommerce-MyAccount-navigation ul li.is-active a{
	opacity: 0.5;
}

/* End My Account */



/* Woocommerce Mobile */

/* Remove to set live - Copy this line, find and replace with a blank

@media (max-width: 970px) {

	
	.woocommerce .woocommerce-breadcrumb {
	    width: 98%;
	    margin: 10px 1% 20px 1%;
	}
	
	.woocommerce div.product div.summary {
		width: 47%;
		margin-right:1%;
	}
	
	.woocommerce-tabs {
	    margin: 40px 1%;
	    width: 98%;
	}
	
	.page-tabs-overlay h3 {
	    font-size: 28px;
    }
	
}


@media (max-width: 768px) {

	.woocommerce div.product div.images {
	    width: 94%;
	    margin: 0 3%;
	}
	
	.woocommerce div.product div.summary {	
	    width: 94%;
	    margin: 20px 3% 0;
	}
	
	.woocommerce div.product .woocommerce-tabs ul.tabs li {
	    padding: 0 1%;
    }
    
    .woocommerce div.product .woocommerce-tabs ul.tabs li a {
	    font-size: 14px;
    }
    

}

@media (max-width: 500px) {

	.page-tabs-overlay h3 {
	    font-size: 24px;
	}
	
	.woocommerce .woocommerce-breadcrumb {
	    margin: 80px 1% 20px 1%;
	}
	
	.woocommerce div.product h1.product_title {
	    font-size: 26px;
	}
	
	.woocommerce div.product .woocommerce-tabs ul.tabs li {
	    width: 97.5% !important;
	    margin: 0 !important;
	    padding: 3px 1% !important;
	}
	
	.woocommerce div.product .woocommerce-tabs .panel {
	    width: 93.5% !important;
	}
	
	.woocommerce form .form-row {
	    padding: 3px 1% !important;
	}
	
	.woocommerce form .form-row-first, .woocommerce form .form-row-last {
    	width: 98%;
	}
	
	.woocommerce-privacy-policy-text p {
		font-size: 12px;
	}
	
}

/* End Woocommerce Mobile */

























/* Specific Fixes and things in the core */
 

/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}





/* IE11 Styling */

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	
	select::-ms-expand {
	    display: none;
	}
	
}



/* Cookie notification styling */

.wc_privacy_notice {
	position: fixed;
	bottom: 0px;
	width: 90%;
	text-align: center;
	background: rgba(255,255,255,1);
	border-top: 1px solid #000;
	box-shadow: 0px 0px 2px #000;
	padding: 10px 10px;
	font-size: 13px;
	z-index: 10000;
	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;
	left: 0;
	right: 0;
	margin: 0 auto;
	max-width: 800px;
	border-radius: 10px 10px 0 0;
}

.wc_privacy_text{
	float: left;
	width: 100%;
}

.wc_privacy_text strong{
	float: left;
	font-size: 12px;
}

.wc_privacy_policy_buttons{
	float: right;
}

.reveal_privacy_options, 
.wc_privacy_policy_buttons button, 
.wc_privacy_submit{
	display: inline-block;
	padding: 5px 20px;
	margin-left: 10px;
	border-radius: 20px;
	-webkit-appearance: none;
	line-height: normal;
	border: none;
	font-size: 11px;
	font-family: 'Helvetica', 'Arial', serif;
	-o-transition:.5s;
	-ms-transition:.5s;
	-moz-transition:.5s;
	-webkit-transition:.5s;
	transition:.5s;
	color: #fff;
	background: #000;
}

span.reveal_privacy_options_hide{
	display: none;
}

.reveal_privacy_options:hover, 
.wc_privacy_policy_buttons button:hover, 
.wc_privacy_submit:hover{
	opacity: 0.8;
	cursor: pointer;
}

.wc_reveal_options{
	float: left;
	width: 100%;
	padding: 10px 0;
	display: none;
	text-align: left;
	font-size: 11px;
}

.wc_privacy_option {
	float: left;
	background: #efefef;
	padding: 5px 10px;
	margin: 0 10px 0 0;
	width: calc(25% - 30px);
	text-align: center;
}

.page-content .wc_reveal_options {
	float: none;
	display: block;
}

.page-content .wc_privacy_notice {
	position:relative;
	display: inline-block !important;
	border: 1px solid #999;
	width: calc(100% - 42px);
	padding: 20px;
	background: #fff;
	color: #1C2342;
	z-index: 0;
	margin: 10px 0px 50px 0px;
	animation: slideDown 0 ease forwards;
	-webkit-animation: slideDown 0 ease forwards;
	-moz-animation: slideDown 0 ease forwards;
	-o-animation: slideDown 0 ease forwards;
	animation-delay: 0;
	-webkit-animation-delay: 0;
	-moz-animation-delay: 0;
	-o-animation-delay: 0;
}

.page-content .wc_privacy_notice .wc_privacy_text strong{
	width: inherit;
}

.page-content .wc_reveal_options .wc_privacy_submit {
	margin-top:10px;
	margin-left:0 !important;
}


@media (max-width: 600px) {
	.wc_privacy_option {
		width: calc(50% - 30px);
		margin-top: 5px;
	}
}

@media (max-width: 350px) {
	.wc_privacy_text strong{
		width: 90px;
		text-align: left;
	}
	
	.wc_privacy_policy_buttons{
		margin-top: 5px;
	}
}

