/*************************************************
Ensure Correct Colour Contrast Ratio for Accessability Score
*************************************************/
/*************************************************
GLOBAL CSS VARIABLES
*************************************************/
:root {
	--primary-colour: #672657;
	--secondary-colour:#a4a288;
	--third-colour:#ecece0;
	--background-colour:#ede3ee;
	--primary-font-family:'Open Sans', sans-serif;
}
/*************************************************
GLOBAL STYLES
*************************************************/
::selection {
  background: var(--primary-colour);
}
a {
	color:var(--primary-colour, #333);
}
a:hover {
	color:var(--secondary-colour, #666);
}
[type="button"]:focus, [type="button"]:hover, [type="submit"]:focus, [type="submit"]:hover, button:focus, button:hover {
	background-color:var(--primary-colour, #333);
}
.page-overlay, .mobile-menu-overlay {
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.5);
	position:fixed;
	top:0;
	left:0;
	z-index:2;
	opacity:0;
	visibility:hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    -ms-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
/*************************************************
HEADER STYLES
*************************************************/
#site-header {
	width:100%;
	position:inherit;
	top:0;
	z-index:9;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#site-header-container {	
	max-width:1200px;
	margin:0 auto;
	display: flex;
	align-items:center;
	padding:25px;
}
.site-branding,
.site-branding-mobile {
	line-height:0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.site-branding-mobile {
	display:none;
}
.site-branding #logo {}
.site-branding #logo img {
	max-height:80px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#header-strap {
	display:inline-block;
	font-size:16px;
	font-weight:300;
	color:var(--secondary-colour);
	margin-left:35px;
}
.header-section {
	margin-left:auto;
}
#site-header .site-social {
	display: flex;
	align-items:center;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	margin-left:auto;
}
#site-header .site-social span {
	margin-right:15px;
	color:#fff;
}
#site-header .site-social ul {
	list-style-type:none;
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
	margin:0;
	padding:0;
}
#site-header .site-social ul li {
	width:35px;
	height:35px;
	margin-right:10px;
	background-color:#f3f3f3;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
}
#site-header .site-social ul li i {
	color:var(--primary-colour);
}
body.menu-active .mobile-menu-overlay {
	opacity:1;
	visibility:visible;
	position:fixed;
	cursor:pointer;
}
/*********************
HEADER SALES STRIP STYLES
*********************/
#sales-strip {
	width:100%;
	background-color:var(--primary-colour);
	padding:10px;
}
#sales-strip ul li div {
	padding-top: 7px;
}
#sales-strip ul {
	margin:0 auto;
	padding:0;
	display:flex;
}
#sales-strip ul li {
	list-style:none;
	width:25%;
	padding:0 2.5%;
}
#sales-strip ul li i {
	float: left;
	margin-right: 20px;
}
#sales-strip ul li img {
	display:inline-block;
}
#sales-strip p {
	font-size:18px;
	color:#fff;
	font-weight:bold;
	margin-bottom:0px;
	line-height:0.6rem;
}
#sales-strip span {
	font-size:12px;
	color:#d5d5d5;
	margin-bottom:0px;
}
@media all and (min-width:768px) and (max-width:1386px) {
	#sales-strip span { display:none;}
	#sales-strip p { line-height:normal; font-size:15px;}
}
@media all and (min-width:768px) and (max-width:1024px) {
	#sales-strip p { font-size:12px;}
}
@media all and (min-width:0px) and (max-width:768px) {
	#sales-strip { display:none;}
}
/*************************************************
HEADER 1 STYLES
*************************************************/
.header-1 {}
.header-1 nav.site-navigation {
	float:right;
}
.header-1 .site-navigation ul.menu li a {
	color:#fff;
}
/*************************************************
HEADER 2 STYLES
*************************************************/
.header-2 {
	background-color:#fff;
	display:flex;
	align-items:center;
}
#site-header.header-2 {
	padding:15px;
}
.header-2 .header-section .site-social span {
	color:var(--primary-colour);
}
.header-2 .site-branding #logo img {
	max-height:80px;
}
.header-2 nav.site-navigation {
	margin-left:30px;
}
.header-2 nav.site-navigation .menu-main-menu-container {}
/*************************************************
BREADCRUMB STYLES
*************************************************/
#breadcrumbs-wrapper {
	width:100%;
	background-color:var(--secondary-colour);
	margin-bottom:40px;
}
#breadcrumbs {
	margin:0 auto 0 auto;
	max-width:1140px;
	text-align:left;
	color:#fff;
	font-weight:400;
	font-size:14px;
	padding:5px 10px;
}
#breadcrumbs span span:nth-child(1) a {
	color:rgba(255,255,255,0.7);
}
#breadcrumbs a {
	color:rgba(255,255,255,1);
}
#breadcrumbs span a:hover {
	color:#672657;
}
#breadcrumbs span.divider {
	padding:0 10px;
}
/*************************************************
STICKY HEADER STYLES
*************************************************/
body.sticky-active .site-branding #logo img {
	max-height:50px;
}
body.sticky-active .header-section .site-social {
	margin-top:-70px;
}
body.sticky-active #site-header {
	background-color:#fff;
}
/*************************************************
SUB HEADER STYLES
*************************************************/
#sub-header-wrapper {
	position:relative;
}
/* https://www.shapedivider.app */
.shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(120% + 1.3px);
    height: 120px;
	left:50%;
	-webkit-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	transform:translateX(-50%)
}
.tilt-divider {
	-webkit-transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	transform:rotate(180deg);
}
.shape-divider-bottom .shape-fill {
    fill: #FFFFFF;
}
#sub-header {
	min-height:300px;
	background-color:#ccc;
	background-image:url(../images/default-subheader.jpg);
	background-position:center;
	background-size:cover;
	overflow:hidden;
	position:relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
#sub-header:after {
	position:absolute;
	content:"";
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.5);
}
body.home #sub-header {
	background-color:inherit;
}
header.sub-header {
	position:relative;
	z-index:1;
}
header.sub-header .entry-title h1 {
	text-align:center;
	font-weight:bold;
	color:#fff;
}
header.sub-header .entry-title p.excerpt {
	text-align:center;
	color:#fff;
	font-family:var(--primary-font-family);
}
/*************************************************
FOOTER STYLES
*************************************************/
footer {
	clear:both;
}
footer a[href^="tel"], footer a[href^="mailto"] {
	color:#fff;
}
.menu a:focus {}
.sub-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 99;
}
.menu-item-has-children > a[aria-expanded="true"] + .sub-menu {
    display: block;
}
.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
    display: block;
}
#footer-cta {}
.footer-roofbox,
.footer-marquee,
.footer-tent{
	padding:50px;
	color:#fff;
	font-size:38px;
	margin:0;
	display:block;
	width:100%;
	height:100%;
	font-weight:300;
	background-position: bottom center;
	background-repeat: no-repeat;
}
.footer-roofbox {
	background-color:var(--secondary-colour);
	background-image:url(../images/footer-roofbox.svg)
}
.footer-marquee {
	background-color:var(--primary-colour);
	background-image:url(../images/footer-marquees.svg);
}
.footer-tent {
	background-color:var(--primary-colour);
	background-image:url(../images/footer-tent.svg);
}
.footer-roofbox strong,
.footer-marquee strong,
.footer-tent strong {
	font-weight:600;
}
.footer-roofbox:hover,
.footer-marquee:hover,
.footer-tent:hover {
	opacity:0.7;
	color:#fff
}
/*************************************************
BLOG STYLES
*************************************************/
body.blog main#content .page-content,
body.archive main#content .page-content,
body.search main#content .page-content {
	display: flex;
	flex-wrap: wrap;
	padding: 0 15px;
	margin:50px 0;
}
main#content .page-content article.post {
	flex: calc(33.333% - 40px);
	max-width: calc(33.333% - 40px);
	padding: 0px;
	margin:20px;
	-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.2);
	box-shadow: 0 0 15px 0 rgba(0,0,0,0.2);
	background-color:#fff;
	-webkit-border-radius: 20px 0 20px 0;
	border-radius: 20px 0 20px 0;
	overflow:hidden;
}
main#content .page-content article.post .post-date {
	margin:10px 30px;
	font-size:14px;
	display:block;
}
main#content .page-content article.post h2 {
	font-size:18px;
	font-weight:bold;
	padding: 15px 30px 0 30px;
}
main#content .page-content article.post h2 a {
	color:#000;
}
main#content .page-content article.post h2 a:hover {
	color:var(--secondary-colour);
}
main#content .page-content article.post p {
	font-size:16px;
	padding:0 30px;
}
main#content .page-content article.post a.button {
	display:block;
	font-size:16px;
	font-weight:bold;
	padding:20px 0;
	color:#000;
	text-decoration:none;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
main#content .page-content article.post a.button:hover {
	color:var(--secondary-colour);
}
main#content nav.pagination .nav-links {
	display:flex;
	justify-content: center;
}
main#content nav.pagination .nav-links .page-numbers {
	background-color:#eee;
	height:40px;
	width:40px;
	display:flex;
	align-items: center;
	justify-content: center;
	margin:5px;
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
}
main#content nav.pagination .nav-links .page-numbers .pagination-arrow {
	color:#333;
}
main#content nav.pagination .nav-links .page-numbers.current {
	background-color:var(--primary-colour);
	color:#fff;
}
/*************************************************
BLOG STYLES - SINGLE POST
*************************************************/
body.single-post main#content {
	max-width:900px;
	margin-top:50px;
}
.post-meta {
	width:50%;
	display:inline-block;
	float:left;
	margin:50px 0;
}
.post-meta .tag-links a {
	margin-right:15px;
	position:relative;
	text-decoration:none;
	font-size:14px;
}
.post-meta .tag-links a:after {
	content:"";
	position:absolute;
	left:-8px;
	top:3px;
	width:1px;
	height:15px;
	background-color:#ddd;
}
.post-meta .tag-links a:nth-child(1):after {
	display:none;
}
.post-meta .cat-links {}
.post-meta .cat-links a {
	text-decoration:none;
	font-size:14px;
}
/*************************************************
SOCIAL SHARE - SINGLE POST
*************************************************/
.social-box {
	width:50%;
	display:inline-block;
	text-align:right;
	margin:50px 0;
}
.social-box strong {
	margin-bottom:25px;
	display:block;
}
 .social-btn {
	display: block;
}
 a.sbtn span {
     display: none;
	 margin: 0 0 0 15px;
}
 a.sbtn {
     display: inline-flex;
	 text-decoration:none;
     padding: 7px;
     color: #fff;
     margin-left: 10px;
	 font-size:24px;
}
a.sbtn:hover {
	 opacity:0.7;
}
.social-box .social-x {
     background: #000000;
}
.social-box .social-twitter {
     background: #03A9F4;
}
.social-box .social-facebook {
     background: #3F51B5;
}
.social-box .social-linkedin {
     background: #1a7baa;
}
.social-box .social-pinterest {
     background: #bd081c;
}
/*************************************************
MOBILE NAVIGATION STYLES
*************************************************/
.mobile-nav {
	margin-left:auto;
}
.mobile-nav .nav-heading {
	display:inline-block;
	vertical-align:middle;
	font-weight:bold;
	color:var(--primary-colour);
	margin-right:10px;
}

button.burger {
	padding:0;
	position:relative;
	width:50px;
	height:50px;
	z-index:12;
	border:none;
	text-align:center;
	background-color:var(--primary-colour);
	cursor:pointer;
	padding:10px;
	vertical-align:middle;
}
.burger:hover {
	background-color:var(--secondary-colour);
}
.burger span {
	width:50%;
	height:2px;
	border-radius:3px;
	background-color:#fff;
	display:block;
	margin-left:25%;
	-webkit-transition: all 0.3s ease-in-out 0.3s;
	-moz-transition: all 0.3s ease-in-out 0.3s;
	-ms-transition: all 0.3s ease-in-out 0.3s;
	-o-transition: all 0.3s ease-in-out 0.3s;
	transition: all 0.3s ease-in-out 0.3s;
}
.burger span:nth-child(3){
	margin-top:10px;
}
.burger span:nth-child(2){
	width:100%;
	margin-top:10px;
	margin-left:0;
}
body.menu-active .burger span:first-child {
	-webkit-transform: rotate(405deg);
	-moz-transform: rotate(405deg);
	-ms-transform: rotate(405deg);
	-o-transform: rotate(405deg);
	transform: rotate(405deg);
	width:100%;
	margin-left:0;
}
body.menu-active .burger span:last-child {
	-webkit-transform: rotate(-405deg);
	-moz-transform: rotate(-405deg);
	-ms-transform: rotate(-405deg);
	-o-transform: rotate(-405deg);
	transform: rotate(-405deg);
	margin-top: -15px;
	width:100%;
	margin-left:0;
}
body.menu-active .burger span:nth-child(2) {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}
/*************************************************
GLOBAL SITE NAVIGATION STYLES
*************************************************/
.site-navigation ul.menu li {
	display:flex;
	align-items:center;
}
.site-navigation ul.menu li > ul {
	opacity:0;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	display:inherit;
	visibility:hidden;
}
.site-navigation ul.menu li:hover > ul {
	opacity:1;
	visibility:visible;
}
.site-navigation ul.menu li a {
	font-size:16px;
	text-transform:capitalize;
	font-weight:bold;
	color:#000;
}
.site-navigation ul.menu li a:hover {
	color:var(--primary-colour);
}
.site-navigation ul.menu li a:focus,
.site-navigation ul.menu li a:active,
.site-navigation ul.menu li a:visited {
	border:none;
	outline:none;
}
.site-navigation ul.sub-menu {
	-webkit-border-radius: 4px;
	border-radius: 4px;
	display:flex;
	flex-wrap:wrap;
	flex-flow:column;
	width: max-content; /* Allows the width to expand based on content */
	white-space: nowrap; /* Prevents text from wrapping */
}
.site-navigation ul.sub-menu.active {
	display:block;
	visibility:visible;
	opacity:1;
}
.site-navigation ul.menu li > ul.sub-menu li a {
	color:var(--primary-colour);
}
.site-navigation ul.menu li.menu-item-has-children span.toggle-submenu,
.site-navigation ul.menu li.active ul span.toggle-submenu {
	width:25px;
	height:25px;
	cursor:pointer;
	background-color:transparent;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
	display:block;
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}
.menu-main-menu-container ul li.menu-item-has-children span,
.site-navigation ul.menu li.menu-item-has-children:after {
	display:none;
}
.site-navigation ul.menu li span.toggle-submenu .arrow {
    display: inline-block;
    width: 7px;
    height: 7px;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	margin:9px 8px;
	border-right: 2px solid rgba(0,0,0,0.3);
    border-top: 2px solid rgba(0,0,0,0.3);
}

/*************************************************
PAGINATION STYLES
*************************************************/
.pagination-arrow {
  display: inline-block;
  height: 10px;
  position: relative;
  width: 10px;
}
.pagination-arrow::after {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-right-width: 1px;
  content: "";
  display: inline-block;
  height: 10px;
  left: -2px;
  position: absolute;
  top: -2px;
  width: 10px;
}
.pagination-arrow.is-right {
  -moz-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}
.pagination-arrow.is-left {
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
/*************************************************
404 PAGE STYLES
*************************************************/
body.error404 .page-content {
	margin:50px 0;
}
body.error404 .page-content p {
	text-align:center;
}
/*************************************************
RESPONSIVE STYLES
*************************************************/
.visible-small {display:none;}
.visible-medium {display:none;}
.visible-large {display:none;}
.visible-extra-large {display:none;}

.hide-small {display:block;}
.hide-medium {display:block;}
.hide-large {display:block;}
.hide-extra-large {display:block;}
/*************************************************
SHORTCODE STYLES
*************************************************/
.postcode-checker {
	display:flex;
	align-items:center;
	justify-content:center;
	gap:30px;
}
.postcode-checker input#postcode-search {
	max-width:400px;
	font-size:20px;
	font-weight:bold;
	border-radius: 7px 7px 7px 7px;
	padding: 15px 30px 15px 30px;
	text-transform:uppercase;
	border:2px solid #A4A288;
}
.postcode-checker input#postcode-search::placeholder {
	text-transform: capitalize;
	font-weight:normal;
	font-size:18px;
}
button#postcode-check-btn {}
#planner-check-result {
	width:50px;
	text-align:center;
	margin-top:0px;
}
#postcode-check-result {
	width:100%;
	text-align:center;
	border-radius:15px;
	background-color:#eee;
	max-width:800px;
	margin:0 auto;
	margin-top:40px;
}
#postcode-check-result div {
	padding:40px;
}
#postcode-check-result i.icon {
	font-size:40px;
}
.planner-postcode-checker {
	display:flex;
	align-items:center;
	justify-content:center;
	gap:30px;
	margin-bottom:50px;
}
.planner-postcode-checker input#postcode-search {
	max-width:400px;
	font-size:20px;
	font-weight:bold;
	border-radius: 7px 7px 7px 7px;
	padding: 15px 30px 15px 30px;
	text-transform:uppercase;
	border:2px solid #A4A288;
}
.planner-postcode-checker input#postcode-search::placeholder {
	text-transform: capitalize;
	font-weight:normal;
}
/*************************************************
DEFAULT PRELOADER STYLES
*************************************************/
#fw-preloader {
	margin:50px;
	display:flex;
	align-iteme:center;
	justify-content:center;
}
.fw-loader {
    width: 48px;
    height: 48px;
    background: #eee;
    border-radius: 50%;
    position: relative;
    animation: skLinRotate 1s ease-in-out infinite alternate;
}
.fw-loader:after{
	content:"";
	position: absolute;
	inset: 5px;
	border-radius: 50%;
	border: 5px solid transparent;
	border-top-color:var(--primary-colour, #672657);
}
@keyframes skLinRotate {
	95% ,100% { transform: rotate(840deg) }
}
/*************************************************
MARQUEES CPT STYLES
*************************************************/
.marquees-page-content {}
.marquees-page-content form#marquee-filter {
	display:flex;
	align-items:center;
	justify-content:center;
	gap:20px;
}
.marquees-page-content form#marquee-filter label {}
.marquees-page-content form#marquee-filter select {
	max-width:300px;
}
.marquees-page-content #marquee-results {}
.marquees-page-content #marquee-results .marquee-category {
	background-color:#f0efeb;
	margin:20px;
	border-radius:10px;
	padding:20px;
}
.marquees-page-content #marquee-results .marquee-category h2 {
	text-align:center;
	margin-bottom:0;
	padding-bottom:30px;
	font-size:26px;
	font-weight:bold;
}
.marquees-page-content #marquee-results .marquee-category .marquee-wrapper {
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	justify-content:center;
	gap:20px;
	padding:0 30px;
}
.marquees-page-content #marquee-results .marquee-category .marquee-wrapper .marquee-item {
	display: flex;
	background: #fff;
	padding:15px;
	width: calc(25% - 15px);
	min-width: calc(20% - 15px);
	border-radius:10px;
	gap:20px;
	align-items:center;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}


@media screen and (max-width:600px) {
	.marquees-page-content #marquee-results .marquee-category .marquee-wrapper { flex-wrap:wrap; padding:15px;}
	.marquees-page-content #marquee-results .marquee-category .marquee-wrapper .marquee-item {width: calc(100% - 15px); margin:0;}
	.marquees-page-content form#marquee-filter { flex-wrap:wrap;}
}
@media screen and (min-width:600px) and (max-width:900px) {
	.marquees-page-content #marquee-results .marquee-category .marquee-wrapper { flex-wrap:wrap; padding:20px;}
	.marquees-page-content #marquee-results .marquee-category .marquee-wrapper .marquee-item {width: calc(50% - 15px);  margin:0;}
}
@media screen and (min-width:900px) and (max-width:1300px) {
	.marquees-page-content #marquee-results .marquee-category .marquee-wrapper { flex-wrap:wrap;}
	.marquees-page-content #marquee-results .marquee-category .marquee-wrapper .marquee-item {width: calc(33.33% - 15px);}
}
.marquees-page-content #marquee-results .marquee-category .marquee-wrapper .marquee-item:hover {
	-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.2);
	box-shadow: 0 0 15px 0 rgba(0,0,0,0.2);
}
.marquees-page-content #marquee-results .marquee-category .marquee-wrapper a.marquee-item:hover {
	color:inherit;
}
.marquees-page-content #marquee-results .marquee-category .marquee-wrapper .marquee-item .marquee-thumbnail {
	height:115px;
}
.marquees-page-content #marquee-results .marquee-category .marquee-wrapper .marquee-item .marquee-thumbnail img {
	border-radius:10px;
	width:auto;
	height:100%;
}
.marquees-page-content #marquee-results .marquee-category .marquee-wrapper .marquee-item .item-info {}
.marquees-page-content #marquee-results .marquee-category .marquee-wrapper .marquee-item .item-info h3 {
	font-size:16px;
	font-weight:bold;
	color:#000;
	margin:0;
}
.marquees-page-content #marquee-results .marquee-category .marquee-wrapper .marquee-item .item-info .guest-info {
	display:flex;
	align-items:center;
	gap:20px;
	font-size:14px;
}
.marquees-page-content #marquee-results .marquee-category .marquee-wrapper .marquee-item .item-info .guest-info p {}
.marquees-page-content #marquee-results .marquee-category .marquee-wrapper .marquee-item .item-info .price {
	background-color:var(--primary-colour,#672657);
	color:#fff;
	font-size:13px;
	padding:3px 12px;
	border-radius:20px;
	width:fit-content;
}
.marquees-page-content #marquee-results .no-marquees-found {
	width:100%;
	text-align:center;
	padding:80px 0 150px 0;
	font-size:20px;
}

/************************************************************
EVENTS CTP STYLES
************************************************************/

/* Archive Wrapper */
.events-archive .event-archive-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
	display:flex;
	gap:50px;
	flex-wrap:wrap;
}
.events-archive .event-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
	width:calc(33.333% - 50px);
	min-height:370px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.events-archive .event-item.span-two {
    width:calc(66.666% - 50px);
}
.events-archive .event-bg {
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    flex-direction: column;
    justify-content: flex-end;
	display:flex;
}
.events-archive .event-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.events-archive .event-title,
.events-archive .category-badge {
    position: relative;
    z-index: 2;
}
.events-archive .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
	background: linear-gradient(to bottom,  rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.1) 1%,rgba(0,0,0,0.59) 99%,rgba(0,0,0,0.6) 100%);
	z-index:1;
}
.events-archive .event-title {
    margin: 0;
    color: #fff;
    font-size: 20px;
    align-self: flex-start;
    padding-left: 40px;
    padding-bottom: 40px;
	font-weight:bold;
}
.events-archive .category-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    display: inline-flex;
    flex-wrap: wrap;
}
.events-archive .category-badge a {
    background: white;
    color: black;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.2;
    display: inline-block;
}
.back-to-archive {
    margin-bottom: 20px;
	text-align:center;
}

.back-to-archive-link {
    font-size: 16px;
	font-weight:bold;
    color: #fff;
    text-decoration: none;
    background-color: var(--primary-colour);
	border-bottom:5px solid var(--secondary-colour);
    padding: 10px 20px;
    border-radius: 10px;
    transition: opacity 0.3s ease;
}

.back-to-archive-link:hover {
	opacity:0.7;
	color:#fff;
}

/* Single Event */
.single-event-cats {
	-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.2);
	box-shadow: 0 0 15px 0 rgba(0,0,0,0.2);
	display: inline-block;
	background: white;
    color: black;
    margin-bottom:20px;
    padding: 5px 12px;
    border-radius: 999px;
}
.single-back-to-archive {
	float:right;
}
.single-event-cats a {
    font-size: 0.8rem;
    text-decoration: none;
}
.single-event-content .container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Pagination */
.events-archive .pagination {
    text-align: center;
    margin-top: 40px;
}

.events-archive .pagination .page-numbers {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 12px;
    background: #eee;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
}

.events-archive .pagination .current {
    background: #333;
    color: #fff;
}
@media screen and (max-width:500px) {
	.events-archive .event-item, .events-archive .event-item.span-two {  width: 100%;}
	.events-archive .event-archive-wrapper {gap:20px;}
}
@media screen and (min-width:500px) and (max-width:800px) {
	.events-archive .event-item, .events-archive .event-item.span-two {  width: calc(50% - 25px);}
	.events-archive .event-archive-wrapper {gap:20px;}
}

/************************************************************
Woocommerce General Alterations
************************************************************/
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a {
	color:#fff;
}
@media screen and (min-width:300px) and (max-width:770px){
	.woocommerce .elementor-element.elementor-products-grid ul.products.columns-4 li.product {width:calc(50% - 32px);}
	.woocommerce .elementor-element.elementor-products-grid ul.products.columns-4 li.product form.cart::before { display:none;}
	#product-filters span, #product-filters button.filter-btn { display:block; width:calc(100% - 29px); margin-bottom:10px;}
}
@media screen and (min-width:770px) and (max-width:950px){
	.woocommerce .elementor-element.elementor-products-grid ul.products.columns-4 li.product {width:calc(33.33% - 32px);}
}
@media screen and (min-width:950px) and (max-width:1300px){
	.woocommerce .elementor-element.elementor-products-grid ul.products.columns-4 li.product {width:calc(25% - 30px);}
}
@media screen and (min-width:1300px){
	.woocommerce .elementor-element.elementor-products-grid ul.products.columns-4 li.product {width:calc(20% - 32px);}
}
/************************************************************
Woocommerce Archive Alterations
************************************************************/
.woocommerce .elementor-element.elementor-products-grid ul.products.columns-4 li.product a .image {
	max-width:210px;
	display:inline-block;
	margin-bottom:0;
}
.woocommerce .elementor-element.elementor-products-grid ul.products.columns-4 li.product a .image:hover {
	border-radius:15px;
}
/************************************************************
Woocommerce product filters
************************************************************/
#product-filters {
    text-align: center;
    margin-bottom: 20px;
}
#product-filters span {
	font-weight:bold;
	font-size:16px;
}
#product-filters .filter-btn {
    background-color: var(--secondary-colour, #A4A288);
    color: white;
    border: none;
    padding: 8px 30px;
    margin: 0 15px;
    cursor: pointer;
    border-radius: 20px;
	font-size:16px;
}
#product-filters .filter-btn:hover {
    background-color: var(--secondary-colour, #A4A288);
}
#product-filters .filter-btn.active {
    background-color: var(--primary-colour, #672657);
    color: white;
    font-weight: bold;
}
/************************************************************
Woocommerce Checkout Adjustments
************************************************************/
.checkoutColumns {
    display: flex;
    gap: 40px;
	margin-bottom:80px;
}
.checkoutColumns h3 {
	font-weight:bold;
}
#customer_details {}
.order-review-wrapper {
	width:50%;
	background-color:#ede3ee;
	padding:20px;
	border-radius: 10px;
}
#order_review table td, #order_review table th {
	border:none;
}
#order_review table {
	background-color:#fff;
	border-radius:10px;
}
#customer_details .form-row .input-text, #customer_details .form-row select {
	background-color:#f0f0ec;
	border:none;
	padding:15px;
	border-radius:10px;
}
#order_review button#place_order {
	width:100%;
	padding:20px;
	background-color:var(--primary-colour,#333);
	font-size:21px;
	border-radius:10px;
	border-bottom:5px solid var(--secondary-colour);
}
#order_review .woocommerce-info {
	border-radius:10px;
	border-top:5px solid var(--secondary-colour);
	background-color:#fff;
	color:#333
}
#order_review .woocommerce-info a {
	color:#333
}
#order_review .woocommerce-info:before {
	color:var(--secondary-colour);;
}
#order_review .woocommerce-privacy-policy-text p {
	font-size:13px;
}
.woocommerce-checkout #order_review #payment {
	background:transparent;
}
/************************************************************
Woocommerce Basket Adjustments
************************************************************/
.woocommerce-cart .wp-block-woocommerce-cart-totals-block {
	padding:0;
	background-color:transparent;
}
.wc-block-components-button, button.wc-block-components-button {
	width:100%;
	padding:20px;
	background-color:var(--primary-colour,#333);
	font-size:21px;
	border-radius:10px;
	border-bottom:5px solid var(--secondary-colour);
}
/* Hide the floating cart icon from Side Cart */
.xoo-wsc-basket {
    display: none !important;
}