/*
Theme Name: Corporate Suites Network
Version: 1.0
Description: Customizable responsive accessible Wordpress child theme created by CyberOptik
Author: CyberOptik
Author URI: https://www.cyberoptik.net/
Template: optik-theme-6
*/





/******************************************************************************
 * * *  IMPORTS & VARIABLES  * * * * * * * * * * * * * * * * * * * * * * * * *
******************************************************************************/

@import url("../optik-theme-6/style.css");



/* Add font imports here */
/***  Montserrat  ***/ 
/* Regular */
@font-face {
	font-family: 'Montserrat';
	font-weight: 400;
	src: url('fonts/montserrat/montserrat-regular.woff2');
}

/*Regular Italic */
@font-face {
	font-family: 'Montserrat';
	font-style: italic;
	src: url('fonts/montserrat/montserrat-italic.woff2');
}

/* Medium */
@font-face {
	font-family: 'Montserrat';
	font-weight: 500;
	src: url('fonts/montserrat/montserrat-medium.woff2');
}

/* Semi Bold */
@font-face {
	font-family: 'Montserrat';
	font-weight: 600;
	src: url('fonts/montserrat/montserrat-semibold.woff2');
}


 


/******************************************************************************
 * * *  STRUCTURAL ELEMENTS  * * * * * * * * * * * * * * * * * * * * * * * * * 
******************************************************************************/

@media (max-width: 600px) {
	:root {
		--wp--custom--spacer--xxl: 80px; /* new value on mobile */
	}
}

/***  UNIVERSAL STYLES  ***/

html {
	font-size: 16px;
	scroll-padding-top: 100px;
}

body {
	line-height: 1.6em;
	font-family: var(--wp--custom--font--1);
	color: var(--wp--custom--dark--1);
}



/***  BACK TO TOP BUTTON  ***/

.btt-button{
	right:unset;
	left:20px;
}

.btt-button [class*="fa"] {
	border-radius: var(--wp--custom--radius--full);
	background-color: var(--wp--custom--primary--main);
	font-weight: 300;
	color: white;
}

.btt-button:hover [class*="fa"] {
	background-color: var(--wp--custom--primary--dark);
	color: white;
}





/******************************************************************************
 * * *  CONTENT STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * *
******************************************************************************/



/***  TEXT & LINKS  ***/

a {
	color: var(--wp--custom--secondary--main);
}

a:hover {
	color: var(--wp--custom--primary--dark);
}

a:not([class]),
.post-cat-link,
.entry-list .entry-link {
    border-bottom: 1px solid currentColor;
}

a:not([class]):hover,
.post-cat-link:hover,
.entry-list .entry-link:hover {
    border-bottom-style: dashed;
}

figure > a:not([class]) { border-bottom: none !important; }

/***  HEADINGS  ***/


h1, h2, h3, h4, h5, h6,
.heading-3,
.heading-4,
.heading-5,
.heading-6{
	font-weight: 500;
	color: var(--wp--custom--dark--1);
}

h1 {
	font-size: 3em;
	text-transform: uppercase;
}

h2 {
	font-size: 2.75em;
	text-transform: uppercase;
}

@media screen and (min-width:900px){
	body.single-property h2{
		font-size:2.2em;
	}
}


h3,
.heading-3 {
	font-size: 1.75em;
	text-transform: uppercase;
}

h4,
.heading-4 {
	font-size: 1.5em;
}

h5,
.heading-5 {
	font-size: 1.125em;
	font-weight: 600;
}

h6,
.heading-6 {
	font-size: 0.85em;
}

p.heading-4 + h2.wp-block-heading {
	margin-block-start: 10px;
}

p.heading-4:has(+ h2.wp-block-heading),
h2.wp-block-heading:has(+ p.heading-4) + p.heading-4 {
	color: var(--wp--custom--primary--dark);
	text-transform: uppercase;
	margin-block-end: 0;
	margin-block-start: 10px;
}

.text-primary {
	color: var(--wp--custom--primary--main);
}

.text-secondary {
	color: var(--wp--custom--secondary--main);
}

@media screen and (max-width:900px){
	h2 {
		font-size:1.25em;
	}
	
	h3,
	.heading-3{
		font-size:1.25em;
	}
	
	h4,
	.heading-4 {
		font-size: 1em;
	}
}

:focus-visible {
    outline: 2px dashed var(--wp--custom--secondary--main);
}

/***  BORDERS & DIVIDERS  ***/

hr, .divider {
	display: block;
	width: 100%;
	height: 1px;
	border: 0;
	border-top: 1px solid #e2e2e2;
	margin: 2.5em auto;
	padding: 0;
}



/***  BUTTONS  ***/

.button, 
.wp-block-button__link, 
.button-outline, 
.is-style-outline .wp-block-button__link {
	padding: 0.75em 2.25em;
	border-width: 2px;
	border-color: var(--wp--custom--primary--main);
	border-radius: var(--wp--custom--radius--xl);
	background-color: var(--wp--custom--primary--main);
	color: var(--wp--custom--dark--1);
	font-weight: 600;
	min-width: 150px;
	text-align: center;
}

.button:hover, 
.wp-block-button__link:hover, 
.button-outline:hover,
.is-style-outline .wp-block-button__link:hover {
	border-color: var(--wp--custom--primary--dark);
	background-color: var(--wp--custom--primary--dark);
	color: white;
}

.button [class*="fa"], 
.wp-block-button__link [class*="fa"], 
.button:hover [class*="fa"], 
.wp-block-button__link:hover [class*="fa"] {
	color: inherit !important;
}

.gform_footer{    justify-content: center;}

.gform_button{
	padding: 0.75em 2.25em!important;
	border-width: 2px!important;
	border-color: var(--wp--custom--primary--main)!important;
	border-radius: var(--wp--custom--radius--xl)!important;
	background-color: var(--wp--custom--primary--main)!important;
	color: var(--wp--custom--dark--1)!important;
	font-weight: 600!important;
	min-width: 150px!important;
	text-align: center!important;
}

.gform_button:hover{
	border-color: var(--wp--custom--primary--dark)!important;
	background-color: var(--wp--custom--primary--dark)!important;
	color: white!important;
}


/* Outlined Button */

.button-outline, 
.is-style-outline .wp-block-button__link {
	background: none;
	color: var(--wp--custom--dark--1);
}

.button-outline:hover,
.is-style-outline .wp-block-button__link:hover {
	border-color: var(--wp--custom--primary--dark);
	background-color:  var(--wp--custom--primary--dark);
	color: white;
}



/***  ICONS  ***/

.fa {
	font-weight: 300;
}

/* Icon Colors */

.fa, .fas, .far, .fal, .fab {
	color: var(--wp--custom--primary--main);
}

a .fa, a .fas, a .far, a .fal, a .fab {
	color: var(--wp--custom--primary--main);
}

a:hover .fa, a:hover .fas, a:hover .far, a:hover .fal, a:hover .fab {
	color: var(--wp--custom--secondary--main);
}

/* Icon Backgrounds */

.fa-bg {
	background-color: var(--wp--custom--primary--main);
	color: white;
}

a .fa-bg {
	background-color: var(--wp--custom--primary--main);
	color: white;
}

a:hover .fa-bg {
	background-color: var(--wp--custom--secondary--main);
	color: white;
}

/* Icon Borders */

.fa-br {
	border-color: var(--wp--custom--primary--main);
}

a .fa-br {
	border-color: var(--wp--custom--primary--main);
}

a:hover .fa-br {
	border-color: var(--wp--custom--secondary--main);
}



/***  LISTS  ***/

.arrow-list li:before, 
.check-list li:before, 
.check-circle-list li:before, 
.icon-list li:before, 
.contact-list li:before, 
.arrow-list li [class*="fa"], 
.check-list li [class*="fa"], 
.check-circle-list li [class*="fa"], 
.icon-list li [class*="fa"], 
.contact-list li [class*="fa"] {
	color: var(--wp--custom--secondary--main);
	font-weight: 900;
}



/***  FORMS  ***/

/* Inputs */

input[type="text"], input[type="email"], input[type="number"], 
input[type="password"], input[type="search"], input[type="tel"], 
input[type="url"], input[type="date"], input[type="datetime-local"], 
input[type="month"], input[type="time"], input[type="week"], 
select, .filter-reset {
	border-radius: var(--wp--custom--radius--lg-2)!important;
    padding: .5em 1em !important;
    height: auto !important;
}

textarea{
	border-radius: var(--wp--custom--radius--lg-2)!important;
    padding: .25em 1em !important;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="number"]:focus, 
input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, 
input[type="url"]:focus, input[type="date"]:focus, input[type="datetime-local"]:focus, 
input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, 
textarea:focus, select:focus {
	border-color: var(--wp--custom--primary--main)!important;
	outline-color: var(--wp--custom--primary--main)!important;
}

.gform-datepicker{width:100%!important;}

.gfield_label{color:var(--wp--custom--dark--1)!important;}

.gform-theme--foundation .gform_fields{row-gap: 20px!important;}

/*search-form*/
.search-area{
	padding: 20px;
	border-radius: var(--wp--custom--radius--lg);
	max-width: 400px;
}

.search-form{max-width: 400px;}

.search-area .search-field{ 
	border-radius: var(--wp--custom--radius--lg); 
	font-size: 1em;
}

/* Buttons */

input[type="submit"], 
input[type="reset"], 
input[type="button"], 
form button {
	border-color: var(--wp--custom--primary--main);
	background-color: var(--wp--custom--primary--main);
	border-radius: var(--wp--custom--radius--lg-2);
	color: var(--wp--custom--dark--1);
	padding: 0.75em 2.25em;
	font-size: 1em;
	transition: all 350ms ease-in-out;
}

input[type="Submit"]:hover, 
input[type="reset"]:hover, 
input[type="button"]:hover, 
form button:hover {
	border-color: var(--wp--custom--primary--dark);
	background-color: var(--wp--custom--primary--dark);
	color: white;
	transform: translateY(-3px);
}

input[type="Submit"]:active, 
input[type="reset"]:active, 
input[type="button"]:active, 
form button:active {
	border-color:  var(--wp--custom--primary--dark);
	background-color:  var(--wp--custom--primary--dark);
	color: white;
}






/******************************************************************************
 * * *  HEADER STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
******************************************************************************/



/***  SCROLL BAR  ***/

.scroll-bar {
	background-color: white;
	box-shadow: var(--wp--custom--shadow--1);
}

.scroll-bar-container{
	padding-left: var(--wp--custom--spacer--xs);
    padding-right: var(--wp--custom--spacer--xs);
	max-width: 1400px;
}

.scroll-logo {
	max-height: 50px;
}



/***  TOP BAR  ***/

.top-bar {
	background-color: var(--wp--custom--light--2);
}



/***  HEADER  ***/

@media screen and (min-width:1250px){
	.header-masthead,
	.scroll-masthead{
		width: 370px;
	}
	.header-left, .header-right,
	.scroll-left, .scroll-right
	{
		width: calc(100% - 370px);
	}
}

.header-absolute{z-index:10;}

#header.header{
	position: absolute;
	z-index: 2;
	top: 20px;
	transition: all 300ms ease-in-out;
	padding: 0 16px;
}

#header.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 0;

}

body.admin-bar #header.header{
	top: 52px;
}

@media screen and (max-width: 1200px) {
	#header.header {
        top: 10px;
    }

	body.admin-bar #header.header{
		top: 42px;
	}

    div.header-inner {
        padding-right: 90px;
    }
}

.header-container{
	background-color: white;
	border-radius: var(--wp--custom--radius--lg);
	padding-left: var(--wp--custom--spacer--xs);
    padding-right: var(--wp--custom--spacer--xs);
	box-shadow: var(--wp--custom--shadow--1);
	max-width: 1400px;
	transition: all 300ms ease-in-out;
}

#header.header.is-fixed .header-container{
	max-width:100vw;
    border-radius: unset;
}

.header-logo {
	max-height: 70px;
}

/* Menu Button */

.header .menu-button [class*="fa"], 
.header .menu-button:hover [class*="fa"] {
	color: var(--wp--custom--dark--1);
}

.header .menu-button.active [class*="fa"] {
	background-color: var(--wp--custom--primary--main);
	color: white;
}



/***  NAVBAR  ***/

.navbar {
}



/***  NAV MENUS  ***/

.nav-menu > li > a, 
.nav-menu > li > span, 
.nav-menu > li > button {
	color: var(--wp--custom--dark--1);
}

.single-post .nav-menu > li.posts-link > a, 
.category .nav-menu > li.posts-link > a, 
.single-service .nav-menu > li.services-link > a, 
.single-career .nav-menu > li.careers-link > a, 
.single-resource .nav-menu > li.resources-link > a, 
.nav-menu > li.current-menu-ancestor > a, 
.nav-menu > li.current-menu-ancestor > span, 
.nav-menu > li.current-menu-ancestor > button, 
.nav-menu > li.current-menu-item > a, 
.nav-menu > li.current-menu-item > span, 
.nav-menu > li.current-menu-item > button, 
.nav-menu > li:hover > a, 
.nav-menu > li:hover > span, 
.nav-menu > li:hover > button {
	color: var(--wp--custom--secondary--main);
}


.nav-menu .icon-menu,
.nav-menu .icon-menu > span{
	padding-left: 0;
	padding-right: 0;
	cursor: pointer;
}


.nav-menu .icon-menu i{
	font-style: normal !important;
    font-weight: 400;
    color: var(--wp--custom--dark--1);
    border-radius: 100%;
    border: 1px solid var(--wp--custom--light--3);
    padding: 15px;
	transition: all 300ms ease-in-out;
}

.nav-menu .icon-menu:hover i{
	background-color: var(--wp--custom--secondary--main);
	color: white;
}

.nav-menu .icon-menu button{cursor: pointer;}

.nav-menu .icon-menu .fa-external-link{display: none!important;}

/* Nav Button */

.nav-menu > li.nav-button {
	background-color: transparent !important;
}

.nav-menu > li.nav-button > a {
	margin-left: 10px;
    background-color: transparent;
    border: 2px solid var(--wp--custom--primary--main);
	padding: 0.55em 1.5em;
    border-radius: var(--wp--custom--radius--xl);
    color: var(--wp--custom--dark--1);
    font-weight: 600;
}

.nav-menu > li.nav-button > a:hover {
	background-color: var(--wp--custom--secondary--main);
	color: white;
	border-color: var(--wp--custom--secondary--main);
}

/* scroll nav*/
.scroll-menu > li > a, .scroll-menu > li > span, .scroll-menu > li > button{
	padding: 8px;
}

/* Dropdowns */

.nav-menu li ul li:first-child {
	padding-top: 8px;
}
.nav-menu li ul li:last-child {
	padding-bottom: 8px;
}

.nav-menu li ul > li > a, 
.nav-menu li ul > li > span, 
.nav-menu li ul > li > button {
	color: var(--wp--custom--dark--1);
}

.single-careers .nav-menu li ul li.careers-link > a, 
.nav-menu li ul li.current-menu-item > a, 
.nav-menu li ul li.current-menu-item > span, 
.nav-menu li ul li.current-menu-item > button{
	background-color: var(--wp--custom--light--1);
}

.single-careers .nav-menu li ul li.careers-link > a, 
.nav-menu li ul li.current-menu-item > a, 
.nav-menu li ul li.current-menu-item > span, 
.nav-menu li ul li.current-menu-item > button, 
.nav-menu li ul li:hover > a, 
.nav-menu li ul li:hover > span, 
.nav-menu li ul li:hover > button {
	color: var(--wp--custom--secondary--main);
}

/* Nested Dropdowns */

.nav-menu li ul li ul {
	top: -8px;
}



/***  HIDDEN NAV  ***/

.hidden-menu li a {
	color: var(--wp--custom--dark--3);
}

.hidden-menu li.current-menu-item > a {
	color: var(--wp--custom--primary--main);
}

.hidden-menu .sub-menu{padding-left: 7px;}

.hidden-menu .icon-menu{display: none;}

@media screen and (min-width:1201px){
	.mobile-search-button{display: none;}
}

.mobile-search-button{
	background-color: unset;
    border: unset;
    position: absolute;
    top: 34%;
    right: 50px;
}


@media (min-width:601px) and (max-width:900px){
	.mobile-search-button{ top: 37px; }
}


.mobile-search-button i{font-style: normal!important;}

/* Modal overlay */
.apt-search-modal {
    display: none; /* hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7); /* dark background */
    z-index: 100;
    overflow: auto; /* enable scroll inside modal if content too big */
}

/* Centered modal content */
.apt-search-modal-content {
    position: relative;
    margin: calc(50vh - 200px) auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
}

/* Close button */
.apt-search-close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
	color: white;
    font-size: 2.5em;
	transition: all 300ms ease-in-out;
}

.apt-search-close:hover{
	color:var(--wp--custom--primary--main);
}


/******************************************************************************
 * * *  BODY STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
******************************************************************************/



/***  BANNER  ***/

.banner {
	background-color: var(--wp--custom--dark--1);
}

.banner :focus-visible { outline-color: white; }

.banner .banner-container{
	padding-top: 90px;
}

.banner-viewport .banner-inner{
	min-height: calc(100vh - 90px);
}

@media screen and (max-width:600px){
	.banner-inner {
		min-height: 400px!important;
	}
	
}

.banner-inner {
	padding-top: var(--wp--custom--spacer--lg);
	padding-bottom: var(--wp--custom--spacer--lg);
}

.banner-viewheight .banner-inner {
	padding-top: calc(var(--wp--custom--spacer--lg) + 140px);
	padding-bottom: var(--wp--custom--spacer--lg);
}

.banner a {
	color: var(--wp--custom--primary--light);
}

.banner a:hover {
	color: white;
}


/***  HEADLINE BAR  ***/

.headline-bar {
}



/***  ENTRY NAVBAR  ***/

.entry-menu > li > a {
	color: var(--wp--custom--dark--1);
}

.entry-menu > li.current-menu-item > a, 
.entry-menu > li:hover > a {
	color: var(--wp--custom--primary--dark);
}



/***  MAIN  ***/

.main {
	padding-top:  var(--wp--custom--spacer--xxl);
	padding-bottom:  var(--wp--custom--spacer--xxl);
}



/***  ARCHIVE  ***/

/* Entry Cols */

.entry-cols .entry-link {
	border-radius: var(--wp--custom--radius--lg);
	background-color: white;
	overflow: hidden;
	color: var(--wp--custom--dark--2);
	box-shadow: var(--wp--custom--shadow--1);
}

.entry-cols .entry-link:hover {
	transform: translateY(-3px);
}

.entry-cols .swiper-initialized .entry-link { box-shadow: none; }

.entry-cols .entry-icon-wrap:first-child {
	padding: 30px 30px 0;
}

.entry-cols .entry-icon svg {
	width: 60px;
	fill: var(--wp--custom--primary--main);
}

.entry-cols .entry-text-wrap {
	padding: 30px;
}

.entry-cols .entry-thumb-wrap{border-bottom: 1px solid var(--wp--custom--light--1);}

.entry-cols .entry-title{font-size: 1.125em;}

.includes-link-text .entry:not(.col-full) .entry-text-wrap {
	padding-bottom: 80px;
}

.entry-cols .entry:not(.col-full) .entry-link-text-wrap {
	left: 30px;
	bottom: 30px;
}

.entry-cols .entry-link .entry-link-text {
	color: var(--wp--custom--dark--1);
	padding: 0.55em 1.5em;
	border: 2px solid var(--wp--custom--primary--main);
	border-radius: var(--wp--custom--radius--lg);
	font-weight: 600;
}

.entry-cols .entry-link:hover .entry-link-text {
	color: white;
	background-color: var(--wp--custom--primary--dark);
	border-color: var(--wp--custom--primary--dark);
}

/*MEMBER*/
.member-cols.center .cols{justify-content: center;}

.member-cols .member:hover{
	background-color: var(--wp--custom--light--1);
}

.member-cols .thumb-size-square{
	height: auto;
	width: 103px;
	border-radius: var(--wp--custom--radius--full);
	border: 2px solid white;
}

.member-cols.member-full-overlay .member:hover .member-portrait-wrap img{
	box-shadow: var(--wp--custom--shadow--1);
}

.member-cols.member-full-overlay .member{
	transition: all 300ms ease-in-out;
	border-radius: var(--wp--custom--radius--lg);
}

@media screen and (max-width: 420px){
    .mobile-col-half {
        width: 50%;
    }
}

/*member full content*/
.member-cols .col-half .member-box{
	display: flex;
	gap:0 20px;
	text-align: left;
	padding: var(--wp--preset--spacing--sm);
	background-color: var(--wp--custom--primary--light);
	border-radius: var(--wp--custom--radius--lg);
	box-shadow: var(--wp--custom--shadow--2);
}

.member-cols .col-half .member-portrait-wrap{width: calc(30% - 10px);}

.member-cols .col-half .member-box .member-text-wrap{width: calc(70% - 10px);}

@media screen and (max-width:900px){
	.member-cols .col-half .member-box{
		flex-direction:column;
	}
	.member-cols .col-half .member-portrait-wrap,
	.member-cols .col-half .member-box .member-text-wrap{
		width:100%;
	}
}

.member-cols .col-half .button{
	margin-top: 20px;
	min-width: unset;
}

.member-cols .col-half .member-box:hover .button{
	background-color: var(--wp--custom--primary--dark);
	color: white;
	border-color: var(--wp--custom--primary--dark);
}

.member-cols .member-full-inner .member-portrait-wrap{
	margin: 0 auto 20px;
    padding-right: 0;
}

.member-cols .member-full-inner .thumb-size-square{
	width: 160px;
}

.member-cols .member-full-inner .close-button{
	position: absolute;
	right: 20px;
	top: 20px;
	padding:0 3px;
	transition: all 300ms ease-in-out;
	font-style: normal !important;
    font-size: 2em;
	border:3px solid transparent;
}

.member-cols .member-full-inner .close-button:hover{
	color: var(--wp--custom--primary--dark);
	cursor: pointer;
	border-color:var(--wp--custom--primary--dark);
}

.member-cols .member-full-inner li{text-align: left;}


/*PROPERTIES*/
.property-cols .entry-link{background-color: var(--wp--custom--dark--1);}

.property-cols .swiper-slide { height: auto; }

.property-cols .entry-thumb-wrap{opacity: .5;}

.property-cols .entry-thumb-wrap img{width: 100%;}

.property-cols .entry-text-wrap{
	position: absolute;
	bottom: 0;
	/*background-color: color-mix(in srgb, var(--wp--custom--dark--1) 70%, transparent);*/
}
@media (min-width:601px) and (max-width:1200px){	
	.property-cols .entry-thumb-wrap{opacity: 1;}
	
	.property-cols .entry-link{background-color: var(--wp--custom--primary--dark);}
	
	.property-cols .entry-text-wrap{position: initial;}
}

/* @media (min-width:901px) and (max-width:1024px){
	.property-cols .col-fourth{ width: 50%; }
} */

.property-cols .entry-link:before{
    content: '\f061';
    font-family: var(--wp--custom--font--fa);
    color: var(--wp--custom--primary--main);
    border: 2px solid white;
	background-color: white;
    border-radius: var(--wp--custom--radius--full);
    transition: all 300ms ease-in-out;
    display: flex;
    width: 40px;
    height: 40px;
    margin: auto;
    justify-content: center;
    align-items: center;
	position: absolute;
	top:20px;
	right: 20px;
	z-index: 1;
}

.property-cols .entry-link:hover:before{
	transform: rotate(-45deg);
    color: white;
    background-color: var(--wp--custom--primary--main);
    border-color: var(--wp--custom--primary--main);
}


.property-cols .entry-title{color: white;}

.property-cols .entry-excerpt-wrap{
	/* max-height: 48px; */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: white;
}



@media screen and (max-width: 1200px) {
	body.tax-region .property-cols > .cols .property { width: calc( 100% / 3); }
}

@media screen and (max-width: 900px) {
	body.tax-region .property-cols > .cols .property { width: calc( 100% / 2); }
}


@media screen and (max-width: 600px) {
	body.tax-region .property-cols > .cols .property { width: 100%; }
}

/* Archive Pagination */

.archive-pagination a {
	border-radius: var(--wp--custom--radius--xl);
	border:2px solid var(--wp--custom--primary--main);
	color: var(--wp--custom--dark--1);
	font-weight: 600;
}

.archive-pagination a:hover {
	border-color: var(--wp--custom--primary--dark);
	background-color: var(--wp--custom--primary--dark);
	color: white;
}

.archive-pagination a [class*="fa"], 
.archive-pagination a:hover [class*="fa"] {
	color: inherit !important;
	transition: all 0ms ease-in-out;
}

/*POSTS*/

body.single-post .banner:before {
    background-image: url(/wp-content/uploads/home-banner-e1768078264318.jpg);
}

body.single-post .post-featured-image{
    margin-top: calc(var(--wp--custom--spacer--xxl) * -1.4);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    border-radius: var(--wp--custom--radius--lg);
    overflow: hidden;
    border: 5px solid white;
}

body.single-post .post-featured-image img{
	width: 100%;
    max-height: 60vh;
	object-fit: cover;
}

.post-cols .entry-title{
	margin-top: 0;
    margin-bottom: 1em !important;
}

.post-cols .entry-meta{
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.post-cols .entry-meta li{
	position: initial;
	color: var(--wp--custom--primary--dark);
	font-weight: 500;
	font-size: .9em;
}

.post-cols .entry-meta li.post-author:after{
	content: '|';
}

.post-cols .post-cats{width: 100%;}

.post-cols .post-cat{
	background-color: var(--wp--custom--primary--light);
    color: var(--wp--custom--dark--1);
	font-size: .9em;
	padding: 0 5px;
	margin-bottom: 4px;
}

.post-cols .post-cat:not(:last-of-type){
	margin-right: 4px;
}





/***  SINGLE  ***/

/*posts single*/
body.single-post h2{font-size: 2em;}

body.single-post h3{text-transform: unset;}

body.single-post .main-wrap .wp-block-image{
	text-align: center;
	border-radius: unset;
}

body.single-post .main-wrap img{
	max-height: 70vh;
	object-fit: contain;
	margin: auto;
	border-radius: var(--wp--custom--radius--lg);
	overflow: hidden;
}

/******************************************************************************
 * * *  FOOTER STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
******************************************************************************/



/***  CTA BAR  ***/

.cta-bar {
	padding-top: var(--wp--custom--spacer--xxl);
	padding-bottom: var(--wp--custom--spacer--xxl);
	background-color: var(--wp--custom--secondary--main);
	color: white;
}

.cta-bar h1, 
.cta-bar h2, 
.cta-bar h3, 
.cta-bar h4, 
.cta-bar h5, 
.cta-bar h6 {
	color: white;
} 




/***  FOOTER  ***/

.footer {
	padding-top: var(--wp--custom--spacer--lg);
	padding-bottom: var(--wp--custom--spacer--lg);
	background-color: white;
	border-top: 2px solid var(--wp--custom--primary--x-light);
}

.footer a {
	color: var(--wp--custom--dark--1);
}

.footer a:hover {
	color: var(--wp--custom--primary--dark);
}

footer .contact-list{
	display: flex;
    flex-direction: column;
    align-items: center;
}

footer .contact-list li:before{color: var(--wp--custom--primary--main);}

.footer .wp-block-social-links a svg{
	border: 2px solid var(--wp--custom--primary--main);
	padding: 10px;
	border-radius: var(--wp--custom--radius--full);
}


.footer .widget_nav_menu{margin-block-start: 0;}

.footer .heading-5{font-weight: 500;}

.footer .menu{
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
    justify-content: center;
	max-width: 911px;
    margin: auto;
	font-size: .9em;
}

/***  6.3 BOTTOM BAR  ***/

.bottom-bar {
	background-color: white;
	font-size: 0.9em;
	padding-top: 0;
}

.bottom-bar-widget > .wp-block-group{
	border-top: 1px solid var(--wp--custom--light--1);
	padding-top: 20px;
	gap: 0 20px;
}

@media screen and (max-width:1200px){
	.bottom-bar-widget > .wp-block-group{
		justify-content: center!important;
	}
}

.bottom-bar-widget > .wp-block-group > *{
	align-self: center;
}

/* Menus */

/* .bottom-bar a {
	color: var(--wp--custom--dark--3);
}

.bottom-bar a:hover {
	color: var(--wp--custom--primary--dark);
} */

.bottom-bar li a {
	padding: 6px 0;
	margin: 0 12px;
}




/******************************************************************************
 * * *  7 CUSTOM STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * 
******************************************************************************/

/* Add custom theme styles here */



/***  ICON CARDS  ***/

.icon-cards {
	text-align: center;
}

.icon-cards .wp-block-column {
	background-color: var(--wp--custom--light--2);
	padding: var(--wp--custom--spacer--md) var(--wp--custom--spacer--sm);
	transition: all 350ms ease-in-out;
}

.icon-cards .wp-block-column:hover {
	background-color: var(--wp--custom--primary--light);
	color: white;
}

.icon-cards .wp-block-column .wp-block-heading, 
.icon-cards .wp-block-column .wp-block-heading a {
	color: var(--wp--custom--primary--main);
	border-bottom: none;
	transition: all 350ms ease-in-out;
}

.icon-cards .wp-block-column:hover .wp-block-heading, 
.icon-cards .wp-block-column:hover .wp-block-heading a, 
.icon-cards .wp-block-column:hover .wp-block-heading a:hover {
	color: white;
}

.icon-cards .wp-block-outermost-icon-block {
	justify-content: center;
}

.icon-cards .wp-block-heading:not(:first-child) {
	margin-top: 0.25em;
	font-size: 1.45em;
}

.wp-block-image{
	border-radius: var(--wp--custom--radius--lg-2);
	overflow: hidden;
}

@media screen and (max-width:900px){
	.wp-block-image{
		max-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
	}
}

/*video-popup-container*/
.video-popup-container iframe{
	border-radius: var(--wp--custom--radius--lg);
	height: 225px;
    width: 100%;
}

.video-popup-container .wp-block-column:hover .wp-block-heading{color: var(--wp--custom--primary--dark);}

.video-popup-container .wp-block-column:hover iframe{opacity: .85;}
	
@media (min-width: 901px) and (max-width: 1200px) {
    .video-popup-container.laptop-2-cols.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
        flex-basis: calc(50% - 15px) !important;
        flex-grow: 0;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .video-popup-container.tablet-2-cols.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
        flex-basis: calc(50% - 15px) !important;
        flex-grow: 0;
    }
}

/* POPUP OVERLAY */
.video-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

/* SHOW */
.video-popup-overlay.active {
  display: flex;
}

/* MAKE IT FILL SCREEN */
.video-popup-inner {
  width: 80vw !important;
  height: 80vh !important;
  max-width: none !important;
  max-height: none !important;
  background: #000;
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-popup-inner iframe {
  width: 90vw !important;
  height: 90vh !important;
  border: none !important;
}

/* CLOSE BUTTON */
.video-popup-close {
  position: absolute;
  top: 20px;
  right: 10px;
  color: #fff;
  font-size: 3em;
  cursor: pointer;
  z-index: 100000;
}

.video-popup-close:hover{color: var(--wp--custom--secondary--light);}

.wp-block-embed__wrapper iframe {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
	max-width: 100%;
	border-radius: var(--wp--custom--radius--lg);
}	


/*container-decor*/
.container-decor{
	border-radius: var(--wp--custom--radius--md);
	overflow: hidden;
	box-shadow: var(--wp--custom--shadow--2);
}

/*link-card*/
.link-card,
.link-card-b {
	transition: all 300ms ease-in-out;
	cursor: pointer;
}

.link-card:hover,
.link-card-b:hover {
	transform: translateY(-5px);
}

.link-card:hover a,
.link-card-b:hover a {color: var(--wp--custom--primary--dark);}

.arrow-top-right a{
    position: relative;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
}

.arrow-top-right a:after{
    content: '\e09f';
    font-family: var(--wp--custom--font--fa);
    padding: 4px 12px;
    color: var(--wp--custom--primary--main);
    border: 2px solid var(--wp--custom--primary--dark);
    border-radius: var(--wp--custom--radius--full);
    transition: all 300ms ease-in-out;
}

.link-card:hover .arrow-top-right a:after,
.link-card-b:hover .arrow-top-right a:after {
	color: white;
	background-color: var(--wp--custom--primary--dark);
	border-color: var(--wp--custom--primary--dark);
}

/*contact-group*/
.contact-group i{
	color: white;
    background-color: var(--wp--custom--primary--main);
    height: 140px;
    width: 140px;
    border-radius: var(--wp--custom--radius--md);
    display: flex;
    font-size: 4em;
    font-weight: 900;
    align-items: center;
    justify-content: center;
	margin-left: 0!important;
	transition: all 300ms ease-in-out;
}

.contact-group .link-card:hover i,
.contact-group .link-card-b:hover i {
	background-color: var(--wp--custom--primary--dark);
}

.contact-group .wp-block-columns .wp-block-group p{text-transform:uppercase;}

@media screen and (max-width:1024px){
	.contact-group .wp-block-columns .wp-block-columns .wp-block-column{
		padding-right: var(--wp--preset--spacing--xs)!important;
		padding-left: var(--wp--preset--spacing--xs)!important;
	}
	
	.contact-group .wp-block-group{
		padding-right: var(--wp--preset--spacing--xs)!important;
		padding-left: var(--wp--preset--spacing--xs)!important;
	}

	.contact-group .wp-block-outermost-icon-block{
		justify-content: center;
		margin-bottom: 20px !important;
	}
}

@media screen and (max-width:900px){
	.contact-group .wp-block-columns .wp-block-columns .wp-block-column{
		padding-top: var(--wp--preset--spacing--md)!important;
		padding-bottom: var(--wp--preset--spacing--md)!important;
	}
	
	.contact-group .wp-block-group{
		padding-top: var(--wp--preset--spacing--xs)!important;
		padding-bottom: var(--wp--preset--spacing--xs)!important;
	}
	
	.contact-group .wp-block-columns .wp-block-group{
		display: flex;
    	align-items: center;
		gap:0 20px;
	}
	.contact-group .wp-block-columns .wp-block-group p{
		width:100%;
		margin:0;
	}
}

@media screen and (max-width:600px){
	.contact-group i{
		height: 35px;
		width: 38px;
		font-size:1em;
	    border-radius: var(--wp--custom--radius--sm);
	}
}

/*DETAILS BLOCK*/
details:not(:last-of-type){
    margin-bottom: 20px;
    border-bottom: 1px solid var(--wp--custom--light--1);
    margin: 0;
	padding: 0;
}

details summary{
	font-size: 1.125em;
	font-weight: 500;
	text-transform: uppercase;
	background-color: unset;
	padding: 25px 0;;
}

details summary:hover,
details[open] summary{
	color: var(--wp--custom--primary--dark);
	background-color: unset;
}

details summary:after{
	content: '\2b';
	border: 2px solid var(--wp--custom--primary--main);
	border-radius: var(--wp--custom--radius--full);
    padding: 7px 6px 7px 9px;
	left: unset;
	right: 0;
	top: 50%;
	transform: translateY(-50%) rotate(0deg) !important;
	font-weight: 900;
}

details[open] summary:after{
	content: '\f068';
	background-color: var(--wp--custom--primary--main);
	color: white;
}

details summary:hover::after {
	transform: translateY(-50%) rotate(0deg) scale(1.1) !important;
}

details > *:nth-child(2) { margin-top: 0; }

details > *:last-child { padding-bottom: 30px; }

/*why-us-gallery*/
@media screen and (min-width:1366px){
	.why-us-gallery{
		flex-wrap: nowrap;
    	gap: 80px !important;
	}
	
	.why-us-gallery .wp-block-image{
		width:auto!important;
	}
}
.why-us-gallery .wp-block-image{
	border-radius:unset;
	filter: grayscale(100%);
}

.why-us-gallery img{
	object-fit: contain!important;
	max-height:100px;
}

@media screen and (max-width:900px){
	.why-us-gallery{
		flex-wrap: wrap;
        gap: 10px 20px !important;
	}

	.why-us-gallery .wp-block-image {
		width: calc(33.33% - 30px)!important;
	}

    .why-us-gallery.wp-block-gallery.has-nested-images figure.wp-block-image img {
        max-width: 150px !important;
        margin: auto;
    }
}

@media screen and (max-width:600px){
	.why-us-gallery .wp-block-image {
		width: calc(50% - 30px)!important;
	}
}

div#lhnHocButton div.lhnHocChatBtn {
    height: 80%;
    width: 80%;
}

div#lhnHocButton.lhnround {
    bottom: 70px;
    right: 3px;
}

/*apartment-search-block*/

.overlap-apt-search .apartment-search-block{
	margin-top: -300px;
	z-index: 1;
    position: relative;
}

.home .overlap-apt-search .apartment-search-block{margin-top:-320px;}

@media screen and (max-width:1200px){
	.apt-search-background{
		background: unset!important;
		background-color: var(--wp--custom--light--1)!important;
		margin-bottom: var(--wp--custom--spacer--xxl);
	}
}


@media screen and (max-width:900px){
	.overlap-apt-search .apartment-search-block{margin-top: -250px;}
}


.apartment-search-block .wp-block-column:first-of-type{
	border-radius: var(--wp--custom--radius--md);
	box-shadow: var(--wp--custom--shadow--1);
}

.apartment-search-block .wp-block-column:last-of-type{
	border-radius: var(--wp--custom--radius--md);
}

@media screen and (min-width:1201px){
	.apartment-search-block .wp-block-column:first-of-type{
		position: relative;
		z-index: 2;
	}

	.apartment-search-block .wp-block-column:last-of-type{
		margin-left: -30px;
		padding-left: var(--wp--custom--spacer--lg)!important;
	}
}

@media screen and (max-width:1200px){
	.apartment-search-block .wp-block-column:last-of-type{
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		background-color: unset!important;
		padding-bottom: 0!important;
	}
}

.container.overlap-apt-search{
	padding-bottom: var(--wp--custom--spacer--xxl);
}

/*overlap-search-bar*/
.overlap-search-bar{
	max-width:1100px;
	margin:-120px auto;
	position:relative;
	z-index:1;
}

body:not(.archive) .overlap-search-bar { 
	margin: calc((var(--wp--custom--spacer--xxl) + 120px) * -1) auto -120px; 
}

@media screen and (max-width:1200px){
	.overlap-search-bar{margin:-133px auto;}

	body:not(.archive) .overlap-search-bar { margin: calc((var(--wp--custom--spacer--xxl) + 133px) * -1) auto -133px; }
}


@media screen and (max-width:393px){
	.overlap-search-bar{margin:-150px auto;}

	body:not(.archive) .overlap-search-bar { margin: calc((var(--wp--custom--spacer--xxl) + 150px) * -1) auto -150px; }
}

/*border-radius-md*/
.border-radius-md{border-radius: var(--wp--custom--radius--md);}

/*shadows*/
.shadow-1{box-shadow: var(--wp--custom--shadow--1);}

.shadow-2{box-shadow: var(--wp--custom--shadow--2);}

/*AGILE STORE LOCATOR*/
.a-website:hover,
.asl-search-event:hover,
.asl-search-event:hover i,
.btn-asl:hover{
	background-color:var(--wp--custom--primary--dark)!important;
	color:white!important;
}

.asl-search-cont,
.asl-search-cont .pol-lg-12{padding:0!important;}

.asl-clear-btn,
.sl-geo-btn{display:none!important;}

.asl-search-widget{position:relative!important;}

.asl-search-widget .pol-md-10{
    flex: 100%!important;
}

.asl-search-widget #sl-search-widget-text{
	border-radius: var(--wp--custom--radius--lg)!important;
	height: auto !important;
    padding: 20px 15px;
}

.asl-search-widget > .pol-md{
	position: absolute !important;
    right: 10px;
    top: 9px;
    width: auto ! Important;
}

#asl-btn-search {
	font-size: 0;
    width: 50px;
    height: 50px !important;
    border-radius: 100% !important;
	background-color:var(--wp--custom--primary--main)!important;
}

#asl-btn-search:hover{
	background-color:var(--wp--custom--primary--dark)!important;
}

#asl-btn-search .icon-search {
    font-size: 24px!important;
}


@media screen and (max-width:600px) {

	.asl-search-widget #sl-search-widget-text{
		padding: 15px;
	}
	.asl-search-widget > .pol-md {
		right: 5px;
		top: 12px;
	}

	#asl-btn-search {
		width: 30px;
		height: 30px !important;
	}

	#asl-btn-search .icon-search {
		font-size: 20px !important;
	}
}

/*PAGE WITH SIDEBAR*/
@media screen and (min-width:1201px){

	.sidebar-area-main{
		width: 30%;
	}

	.main-inner.with-sidebar .content-area{
		width: 60%;
	}
}

@media screen and (max-width:1200px){
	.main-inner.with-sidebar{flex-direction: column-reverse;}
}

/*sidebar menu*/
.sidebar-area-main .sentry-navbar-container{
	padding: var(--wp--custom--spacer--xs)!important;
	background-color: white;
	border-radius: var(--wp--custom--radius--lg);
	box-shadow: var(--wp--custom--shadow--1);
	margin-bottom: 50px;
}

.sidebar-area-main .entry-menu{
	flex-direction: column;
	align-items: flex-start;
}

.sidebar-area-main .entry-navbar .entry-menu li:not(:last-of-type){
	border-bottom: 1px solid var(--wp--custom--light--1);
}

.sidebar-area-main .entry-navbar .entry-menu li {
    width: 100%;
    text-align: left;
}

.sidebar-area-main .content .entry-menu li > a, 
.sidebar-area-main .entry-navbar .entry-menu li > a{
	padding: 12px 0;
}

.sidebar-area-main .entry-menu > li.current-menu-item > a{
	position: relative;
}

.sidebar-area-main .entry-menu > li.current-menu-item > a:after{
    content: '\f061';
    font-family: var(--wp--custom--font--fa);
	font-size: 1.5em;
	font-weight: 400!important;
    position: absolute;
    top: 14px;
    right: 0;
}

/*sidebar widgets*/
.sidebar-area-main .wp-block-group.link-card,
.sidebar-area-main .wp-block-group.trigger-chat{
	background-color: var(--wp--custom--light--1);
	padding: var(--wp--custom--spacer--xs);
	border-radius: var(--wp--custom--radius--lg);
	cursor:pointer;
	transition: all 300ms ease-in-out;
}

@media (min-width:820px) and (max-width:1200px){
	.sidebar-area{
		display: flex;
		flex-wrap: wrap;
		gap: 0 20px;
	}

	.sidebar-area-main .widget_block{
		width: calc(50% - 10px);
	}

	.sidebar-area-main .wp-block-group.link-card,
	.sidebar-area-main .wp-block-group.trigger-chat{
		margin-top: var(--wp--preset--spacing--xxs)!important;
		margin-bottom: var(--wp--preset--spacing--xxs)!important;
	}
}

.sidebar-area-main .wp-block-group.link-card a,
.sidebar-area-main .wp-block-group.trigger-chat p{
	color: var(--wp--custom--dark--1);
	border-bottom:unset;
}

.sidebar-area-main .wp-block-group.trigger-chat:hover
{
    transform: translateY(-5px);
}

.sidebar-area-main .wp-block-group.link-card i,
.sidebar-area-main .wp-block-group.trigger-chat i{
    color: white;
    background-color: var(--wp--custom--primary--main);
    height: 80px;
    width: 80px;
    border-radius: var(--wp--custom--radius--md);
    display: flex;
    font-size: 2.5em;
    font-weight: 900;
    align-items: center;
    justify-content: center;
	transition: all 300ms ease-in-out;
}

.sidebar-area-main .wp-block-group.link-card:hover i,
.sidebar-area-main .wp-block-group.trigger-chat:hover i{
	background-color: var(--wp--custom--primary--dark);
}

.sidebar-area-main .heading-5{
	font-weight: 500;
	text-transform: uppercase;
}

/*separator*/
.wp-block-separator{
	border-top: 1px solid var(--wp--custom--light--1);
	margin-block-start: var(--wp--custom--spacer--md);
    margin-block-end: var(--wp--custom--spacer--md);
}

/*CONTACT PAGE*/
.page-id-70 .contact-group,
.page-id-68 .contact-group{display: none;}

.heading-with-line {
    background-color: var(--wp--custom--primary--light);
    display: inline;
}

.has-white-background-color .heading-with-line{
	background-color:white;
}

.heading-with-line::after {
	content: "";
    display: block;
    height: 2px;
    background: var(--wp--custom--primary--main);
    margin-top: -20px;
}

@media screen and (max-width:1200px){
	.heading-with-line{display:block;}
	
	.heading-with-line::after { margin-top: 5px;}
}

.archive-navbar .filter-form > *{
	margin:10px;
}

/*.post-swiper{padding-bottom:40px;}

.post-swiper .swiper-pagination{
	top:unset;
	bottom:0;
}

.post-swiper .swiper-pagination-bullet{
	height:12px;
	width:12px;
}

.swiper-pagination-bullet-active{
	background-color:var(--wp--custom--primary--dark);
}
@media screen and (min-width:768px){
	.post-swiper{overflow:visible!important;}
	
	.post-swiper .swiper-wrapper{transform:unset!important;}
	
	.post-swiper .swiper-slide{
        width: calc(33.33% - 25px) !important;
        transform: unset;
        margin-right: unset !important;
        padding: 15px;
	}
	
	.post-swiper .swiper-pagination{display:none;}
	
	.post-swiper .swiper-slide {
		height: auto !important;
		display: flex;
		flex-direction: column;
	}


	.post-swiper .swiper-slide .entry-link {
		display: flex;
		flex-direction: column;
		flex: 1; 
		height: 100%;
	}


	.post-swiper .entry-text-wrap {
		display: flex;
		flex-direction: column;
		flex-grow: 1;
	}

	.post-swiper .entry-link-text-wrap {
		margin-top: auto;
	}
}

@media (min-width:768px) and (max-width:1024px){
	.swiper-wrapper{
		flex-wrap: wrap;
		justify-content: center;
	}
	.post-swiper .swiper-slide{
		  width: calc(50% - 30px) !important;
	}
}*/





/*SWIPER GENERAL*/
.co-swiper .swiper-container,
.co-swiper > .cols {
	overflow:hidden;
	padding-top:5px;
	padding-bottom:5px;
}

.co-swiper > .cols .swiper-pagination { position: static; }

/*.co-swiper .swiper-backface-hidden,
.co-swiper[data-slider-type="mobile"]{overflow:visible;}*/

.co-swiper .cols-spaced.swiper-initialized{
	margin:unset!important;
	width:100%!important;
}

.co-swiper .swiper-nav{
	position:relative;
    padding: 20px 0;
}
.co-swiper > .swiper-container .swiper-pagination{
	position:initial;
	padding: 20px 0;
}

.co-swiper .swiper-pagination .swiper-pagination-bullet{
	height:12px;
	width:12px;
	background-color:var(--wp--custom--primary--main);
}

.co-swiper .swiper-button-prev,
.co-swiper .swiper-button-next{
	position: initial;
    margin-top: 0;
}

.co-lightbox-overlay .swiper-button-prev svg,
.co-lightbox-overlay .swiper-button-next svg,
.co-swiper .swiper-button-prev svg,
.co-swiper .swiper-button-next svg{display:none!important;}

.co-lightbox-overlay .swiper-button-next::after,
.co-swiper .swiper-button-next::after {
    content: '\f178';
}


.co-lightbox-overlay .swiper-button-prev::after,
.co-swiper .swiper-button-prev::after {
    content: '\f177';
}

.co-lightbox-overlay .swiper-button-prev::after,
.co-lightbox-overlay .swiper-button-next::after,
.co-swiper .swiper-button-prev::after,
.co-swiper .swiper-button-next::after{
    font-size: 1.2em;
    background-color: var(--wp--custom--primary--main);
    border-radius: 100%;
    color: white;
    padding: 5px;
    width: 35px;
    height: 36px;
    display: flex;
    transition: all 300ms ease-in-out;
    justify-content: center;
    font-family: var(--fa-font-brands);
    align-items: center;
    font-family: 'Font Awesome 6 Pro';
}

@media screen and (max-width:600px){
	.co-lightbox-overlay .swiper-button-prev::after,
	.co-lightbox-overlay .swiper-button-next::after,
	.co-swiper .swiper-button-prev::after,
	.co-swiper .swiper-button-next::after{
		width: 25px;
    	height: 26px;
	}
}

.co-lightbox-overlay .swiper-button-prev:hover::after,
.co-lightbox-overlay .swiper-button-next:hover::after,
.co-swiper .swiper-button-prev:hover::after,
.co-swiper .swiper-button-next:hover::after{
	background-color: var(--wp--custom--primary--dark);
	color: white;
}


/*location-map-group*/
.location-map-group > #asl-storelocator{
	padding-left:0!important;
	padding-right:0!important;
	margin-top:0!important;
}

.location-map-group .asl-map-canv{
    min-height: 70vh;
}


/* CO LIGHTBOX */
.co-lightbox-image:not(.no-image){
	cursor: zoom-in;
}

.co-lightbox-image a{
    border-bottom: unset !important;
	cursor: zoom-in;
}

.co-lightbox-image img {
    background-color: white;
    width: 100%;
    text-align: center;
    transition: all 300ms ease-in-out;
}

.co-lightbox-image:hover img {
    transform: translateY(-3px);
}

/*******/
.co-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.co-lightbox-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.co-lightbox-swiper img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.co-lightbox-close {
    position: absolute;
    background-color: var(--wp--custom--primary--main);
	border-radius:var(--wp--custom--radius--sm);
    font-size: 36px;
    right: 20px;
    top: 20px;
    color: white;
    cursor: pointer;
    z-index: 999;
}

.co-lightbox-close:hover{
	color:white;
	background-color:var(--wp--custom--primary--dark);
}

.co-lightbox-overlay .swiper-wrapper{
	align-items: center;
}

.co-lightbox-overlay img{
	padding: 40px;
    max-height: 80vh;
	width:auto;
}

.co-lightbox-overlay .swiper-slide{text-align:center;}

.co-lightbox-overlay .swiper-button-next .swiper-notification,
.co-lightbox-overlay .swiper-button-prev .swiper-notification {
    display: none;
}

.co-lightbox-overlay button.swiper-button-next,
.co-lightbox-overlay button.swiper-button-prev{
	background-color: unset;
    border: unset;
    width: auto;
}

/* WP Go Maps */

.wpgm-map-group * {
	box-sizing: border-box;
}

.wpgm-map-group  .wpgmaps_mlist_row {
	position: relative;
	border-radius: var(--wp--custom--radius--lg) !important;
	overflow: hidden;
	background-color: var(--wp--custom--dark--1) !important;
	transition: all 350ms ease-in-out;
}

@media screen and (max-width: 900px) {
	.wpgm-map-group  .wpgmaps_mlist_row { background-color: var(--wp--custom--primary--dark) !important; }
}

.wpgm-map-group  .wpgmaps_mlist_row:hover { transform: translateY(-3px); }

.wpgm-map-group .wpgmza_marker_list_class { 
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	max-width: 1400px;
	margin: 0 auto;
}

@media screen and (max-width: 1200px) {
	.wpgm-map-group .wpgmza_marker_list_class { grid-template-columns: repeat(3, 1fr); }
}

@media screen and (max-width: 900px) {
	.wpgm-map-group .wpgmza_marker_list_class { grid-template-columns: repeat(2, 1fr); }
}


@media screen and (max-width: 600px) {
	.wpgm-map-group .wpgmza_marker_list_class { grid-template-columns: 1fr; }
}

.wpgm-map-group .wpgmza-gallery-container { 
	pointer-events: none; 
	order: -1 !important;
	margin: -10px -15px;
    /* padding-bottom: 15px; */
}

@media screen and (max-width: 900px) {
	.wpgm-map-group .wpgmza-gallery-container { border-bottom: 1px solid var(--wp--custom--light--1); }
}

.wpgm-map-group .wpgmza-basic-listing-content-holder {
	display: flex;
	flex-direction: column;
}

.wpgm-map-group .wpgmza_map_image { 
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: center center; 
	opacity: 0.5;
}

@media screen and (max-width: 900px) {
	.wpgm-map-group .wpgmza_map_image { 
		opacity: 1;
		aspect-ratio: 16 / 9;
	}
}

.wpgm-map-group .wpgmza-content-address-holder {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 100% !important;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 30px 15px 20px;
	font-size: 1rem;
}

@media screen and (max-width: 900px) {
	.wpgm-map-group .wpgmza-content-address-holder { position: static; }
}

.wpgm-map-group .wpgmza-content-address-holder * { color: white; }

.wpgm-map-group .wpgmza_marker_title {
	font-size: 1.125em;
}

.wpgm-map-group .wpgmza_marker_title a {
	pointer-events: none;
	border-bottom: none !important;
}

.wpgm-map-group .wpgmza-link { 
	order: 9;
	font-size: 0;
	line-height: 0;
}

.wpgm-map-group .wpgmza-link a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-bottom: none !important;
}

.wpgm-map-group .wpgmza-link a:before{
    content: '\f061';
    font-family: var(--wp--custom--font--fa);
	font-size: 1rem;
    color: var(--wp--custom--primary--main);
    border: 2px solid white;
	background-color: white;
    border-radius: var(--wp--custom--radius--full);
    transition: all 300ms ease-in-out;
    display: flex;
    width: 40px;
    height: 40px;
    margin: auto;
    justify-content: center;
    align-items: center;
	position: absolute;
	top:20px;
	right: 20px;
	z-index: 1;
}

.wpgm-map-group .wpgmza-link  a:hover:before{
	transform: rotate(-45deg);
    color: white;
    background-color: var(--wp--custom--primary--main);
    border-color: var(--wp--custom--primary--main);
}

.wpgm-map-group .wpgmza-infowindow .wpgmza-gallery-item img {
	position: static !important;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: center center; 
	transform: none !important;
}

.wpgm-map-group .wpgmza-infowindow .wpgmza_gallery_placeholder {
	float: left;
    width: 50%;
    padding: 0 6px 6px 0;
}

.wpgm-map-group .wpgmza-infowindow .wpgmza_infowindow_title { font-size: 1.2em; }

.wpgm-map-group .wpgmza-infowindow a.wpgmza_infowindow_link {
	padding: 6px;
	background-color: var(--wp--custom--secondary--main);
	color: white;
	border-radius: 6px;
	text-transform: capitalize;
	transition: background-color 350ms ease-in-out, color 350ms ease-in-out;;
}

.wpgm-map-group .wpgmza-infowindow a.wpgmza_infowindow_link:hover { 
	background-color: var(--wp--custom--primary--main); 
	color: var(--wp--custom--dark--1);
}

.wpgm-map-group .wpgmza-infowindow .wpgmza_infowindow_address::after {
	content: "";
	display: table;
	clear: both;
}

/* body:not(.wpgp-search-started) .wpgm-map-group .wpgmza-basic-listing-content-holder .wpgmza-distance-from-location,
body:not(.wpgp-search-started) .wpgmza-infowindow .wpgmza-distance-from-location { display: none; } */

.wpgm-map-group .wpgmza-pagination { 
	padding-top: 30px;
	height: auto;
}

.wpgm-map-group .wpgmza-pagination .paginationjs .paginationjs-pages li { border: 0 !important; }

.wpgm-map-group .wpgmza-store-locator input,
.wpgm-map-group .wpgmza-store-locator select { border-radius: 0 !important; }

.wpgm-map-search .wpgmza-address-container { flex-grow: 1; }

body:not(.wp-admin) .no-search-results { display: none; }

@media screen and (max-width: 600px) {
	.wpgm-map-search .wpgmza-address-container { flex-basis: 100%; }
}

.wpgm-map-search .wpgmza-custom-redirect-form {
	display: flex;
	align-items: flex-end;
}

.wpgm-map-search .wpgmza-store-locator,
.wpgm-map-search .wpgmza-custom-redirect-form {
	gap: 6px;
	width: 100%;
}

.wpgm-map-search .wpgmza-search,
.wpgm-map-search .wpgmza-reset { 
	border-radius: 100px !important; 
	font-size: 0;
	width: 48px;
	height: 48px;
	line-height: 1;
}

.wpgm-map-search .wpgmza-search,
.wpgm-map-search .wpgmza-reset {
	position: relative;
	fill: white !important;
	stroke: white !important;
	color: white;
	background-color: var(--wp--custom--primary--main);
	transition: background-color 350ms ease-in-out;
	color: black;
	border: 0 !important;
	flex-shrink: 0;
}

.wpgm-map-search .wpgmza-address-container { flex: 1; }

.wpgm-map-search .wpgmza-search:hover,
.wpgm-map-search .wpgmza-reset:hover { background-color: var(--wp--custom--primary--dark); }

.wpgm-map-search .wpgmza-search::before,
.wpgm-map-search .wpgmza-reset::before {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 20px;
	font-family: 'Font Awesome 6 Pro';
	color: white;
}

.wpgm-map-search .wpgmza-search::before { content: "\f002"; }

.wpgm-map-search .wpgmza-reset::before { content: "\58"; }

.wpgm-map-search--home .wpgmza-radius-container,
.wpgm-map-search--home .wpgmza-reset { display: none !important; }

.overlap-search-bar-2 { position: relative; }

.overlap-search-bar-2 .wp-block-group {
	max-width:1100px;
	position:relative;
	z-index:1;
}
@media screen and (min-width: 601px) {
	body:not(.wp-admin) .overlap-search-bar-2 .wp-block-group  { 
		position: absolute;
		top: 0;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
	}	
}

/* Hide Chat Agent To Increase Content Paint Load Speed */
body:not(.chat-ready) elevenlabs-convai { opacity: 0; }

/* Fix Lightbox Missing Alt */
.co-swiper .co-lightbox-image-description { display: none; }

.co-lightbox-overlay .co-lightbox-image-description {
	background: white;
    display: block;
    padding: 10px;
}

/* TEMP: VIsually Hide LightBox Description (Pending Client) */
.co-lightbox-overlay .co-lightbox-image-description { display: none; }