/*** RESET ***/
:root{
	--purple500: #713D75;
	--purple600: #4F2851;
	--green100: #EFF6F5;
	--green400: #91BBB4;
	--green500: #60ACA1;
	--green600: #52968c;
	--red500: #fa5246;
	--green700: #131A18;
	--gray100: #F2F2F2;
	--gray200: #E9E9E9;
	--gray300: #939fac;
	--gray400: #596068;
	--gray500: #131A18;
	--primaryFont: "Inter", sans-serif;
}

html, body{
	margin:0;
	padding:0;
	font-size:16px;
	line-height:100%;
}

body{
	line-height: 100%;
	font-family: var(--primaryFont);
	color: var(--gray500);
	background: #FFF;
}

*{
	box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5{
	margin: 0 0 10px 0;
	line-height: 100%;
}
p{
	font-size: 14px;
	margin: 0 0 20px 0;
	line-height: 150%;
}
ul, ol{
	font-size: 14px;
	line-height: 150%;
	margin: 0 0 20px 0;
}
p:last-child,
ul:last-child,
ol:last-child{
	margin-bottom: 0;
}
img{
	max-width: 100%;
	border:none;
	outline:none;
}
a{
	color: currentColor;
}
a, a:hover{
	text-decoration:none
}
input,
select,
textarea,
button{
	font-family: var(--primaryFont);
	outline: none;
}
::-webkit-scrollbar {
	width: 5px;
}
::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.2);
}

/*** MISC ***/
.container{
	max-width: 1170px;
}
.wp-element-button,
.button{
	--btnColor: var(--green500);
	--btnColorHover: var(--green600);
	--btnTextColor: #FFF;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	position: relative;
	border-radius: 5px;
	background: var(--btnColor);
	color: var(--btnTextColor);
	border: none;
	cursor: pointer;
	font-size: 16px;
	padding: 14px 25px;
	line-height: 20px;
	font-weight: 500;
	border-radius: 99px;
	text-align: center;
	transition: all 0.5s;
}
.wp-element-button:hover,
.button:hover{
	background: var(--btnColorHover);
}
.wp-element-button.outline_button,
.button.outline_button{
	background: none;
	border:1px solid var(--btnColor);
	color: var(--btnColor);
}
.wp-element-button.outline_button:hover,
.button.outline_button:hover{
	background: var(--btnColor);
	color: var(--btnTextColor);
}
.wp-element-button.purple_button,
.button.purple_button{
	--btnColor: var(--purple500);
	--btnColorHover: var(--purple600);
}
.button.rounded{
	border-radius: 8px;
}

.section_title{
	font-weight: 600;
	font-size: 24px;
	color: var(--purple500);
	margin-bottom: 20px;
	line-height: 130%;
}
h1.section_title{
	font-size: 42px;
	font-weight: 700;
	color:var(--gray500);
}
.section_subtitle{
	font-size: 20px;
	color: var(--accentColor);
	font-weight: normal;
}

/*** WORDPRESS BLOCKS ***/
.wp-block-columns:last-child,
.wp-block-image:last-child{
	margin-bottom: 0;
}
.is-style-rounded img{
	border-radius: 24px;
}
.wp-block-separator{
	margin: 26px auto 22px;
    padding: 0;
    font-size: 30px;
    line-height: 6px;
}
.wp-block-separator.is-style-wide{
	margin: 26px auto 22px;
	max-width: 1170px;
	color: var(--gray200);
	border-width: 1px 0 0 0;
	border-style: solid;
	border-color: currentColor;
}
.wp-block-separator.is-style-dots{
	margin: 20px auto;
	padding: 0;
	font-size: 20px;
}
.wp-block-separator.bold-line{
	margin: 35px auto;
	padding: 0;
	font-size: 20px;
	border-width: 10px 0 0 0;
	border-style: solid;
	border-color: currentColor;
	width: 100px;
	opacity: 0.3;
}
.wp-block-embed{
	margin:30px 0
}
.wp-block-embed:last-child{
	margin-bottom: 0;
}
.wp-block-embed__wrapper{
	position: relative;
	aspect-ratio: 16/9;
}
.wp-block-embed__wrapper iframe{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
}
.centered_content_section p a{
	text-decoration: underline;
}
.cta_section p a{
	font-weight: bold;
	color: #E5A9E4;
}

.has-purple-500-color{
	color: var(--purple500);
}
.has-green-700-color{
	color: var(--green700);
}
.has-green-500-color{
	color: var(--green500);
}
.background_color_gray-100{
	background-color: var(--gray100);	
}
.background_color_gray-200{
	background-color: var(--gray200);	
}
.background_color_gray-300{
	background-color: var(--gray300);	
}


/*** GRAVITY FORMS ***/
.gform_description:empty,
.gform_heading{
	display: none;
}

/*** HEADER ***/
#header{
	position: fixed;
	top:20px;
	left:0;
	width: 100%;
	transition: all 0.5s;
	z-index: 99;
}
.admin-bar #header{
	top: 62px;
}
#header .container{
	max-width: 1400px;
}
#header_main{
	height: 70px;
	padding: 13px;
	background-color: var(--purple500);
	color: #FFF;
	border-radius: 16px;
}
#header_logo{
	display: inline-block;	
	width:172px;
}
#header_logo img{
	float: left;
}
#weather_widget{
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 14px;
	font-weight: 500;
}
.weather_icon{
	display: inline-block;
	width: 32px;
	height: 32px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.weather_icon.partially_cloudy{
	background-image: url(../images/partially_cloudy_icon.svg);
}
#header_search{
	width: max(280px, 40%);
}
#header_search_input{
	position: relative;
	width: 100%;
	height: 40px;
	font-size: 14px;
	border: 1px solid #FFF;
	border-radius: 8px;
	font-weight: 400;
	padding: 5px 10px 5px 40px;
	background-color:transparent;
	background-image: url(../images/search_icon.svg);
	background-repeat: no-repeat;
	background-position: 10px center;
	color: #FFF;
}
#header_search_input::placeholder{
	color: #FFF;
}
#account_actions a{
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 500;
}
#account_actions a.button{
	padding:10px 20px;
}

/*** HEADER MENU ***/
#header_menu{
	list-style: none;
	gap: 25px;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 500;
}
#header_menu li{
	position: relative;
}
#header_menu > li > a{
	display: inline-block;
	line-height: 35px;
}
.menu-item-has-children > a{
	position: relative;
	padding-right: 25px;
}
.menu-item-has-children > a::after{
	position: absolute;
    top: 7px;
    right: 0;
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../images/arrow_down.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
	transition: all 0.3s;
}
.menu-item-has-children > a.open::after{
	transform: rotate(180deg);	
}
#header_menu li .sub-menu{
	position: absolute;
	left:0;
	bottom: 20px;
	width: 150px;
	border-radius: 8px;
	background:var(--purple600);
	list-style: none;
	margin:0;
	padding:10px 15px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transform: translateY(100%);
	opacity: 0;
	visibility: hidden;
	clip-path: inset(0 0 100% 0);
	transition: all 0.3s;
}
#header_menu li:hover .sub-menu{
	opacity: 1;
	visibility: visible;
	bottom: 0;
	clip-path: inset(0 0 0 0);
}
#header_menu li .sub-menu a{
	display: inline-block;
	width: 100%;
}

/*** MOBILE MENU ***/
#menu_trigger{
	position: relative;
	width: 25px;
	height: 16px;
	cursor: pointer;
}
#menu_trigger::after{
	content: '';
	position: absolute;
	top:calc(50% - 1px);
	left: 0;
	width: 100%;
	height: 2px;
	background:currentColor;
	transition:all 0.5s;
}
.menu_open #menu_trigger::after{
	transform: translateX(100%);
	opacity: 0;
}
#menu_trigger i{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
}
#menu_trigger i::before{
	content: '';
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 2px;
	background:currentColor;
	transition:all 0.5s;
}
.menu_open #menu_trigger i::before{
	transform: translate(0px, 5px) rotate(45deg);
}
#menu_trigger i::after{
	content: '';
	position: absolute;
	bottom:0;
	left: 0;
	width: 100%;
	height: 2px;
	background:currentColor;
	transition:all 0.5s;
}
.menu_open #menu_trigger i::after{
	transform: translate(0px, -9px) rotate(-45deg);
}

#mobile_menu_wrapper{
	position: absolute;
	bottom: -10px;
	left: 1rem;
	width: calc(100% - 1.75rem);
	background:var(--purple600);
	border-radius: 16px;
	padding: 20px;
	transform: translateY(100%);
	clip-path: inset(0 0 100% 0);
	transition: all 0.3s;
	@media(min-width:768px){
		display: none;
	}
}
.menu_open #mobile_menu_wrapper{
	clip-path: inset(0 0 0 0);
}
#mobile_menu{
	list-style: none;
	font-size: 18px;
	font-weight: 500;
	color: #FFF;
	text-align: center;
}
#mobile_menu .sub-menu{
	display: none;
}
#mobile_menu .menu-item-has-children > a::after {
    top: 4px;
}
#mobile_menu .sub-menu{
	list-style: none;
    padding: 0;
	margin-top: 10px;
    font-size: 16px;
    line-height: 150%;
}
#mobile_menu .sub-menu li{
	margin-bottom: 5px;
}
#mobile_menu .menu-item-has-children > a{
	display: inline-block;
	transform: translateX(10px);
}

/*** FOOTER ***/
#footer{
	background-color: var(--green500);
	color: #FFF;
	padding: 60px 0;
}
#footer_social_links > *{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: #FFF;
	color: var(--green500);
	font-size: 22px;
	transition: all 0.3s;
}
#footer_social_links > *:hover{
	background-color: var(--purple500);
	color: #FFF;
}
#footer_bottom_bar{
	padding-top:25px;
	border-top:1px solid rgba(255, 255, 255, 0.35);
	font-size: 14px;
	font-weight: 300;
}
.widget_title{
	font-size: 16px;
	font-weight: 400;
	line-height: 200%;
}
.widgets_area .menu{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.widgets_area .menu a{
	transition: all 0.3s;
}
.widgets_area .menu a:hover{
	color: var(--purple500);
}

/*** LANDING SECTION ***/
.landing_background_slider{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
}
.landing_section{
	padding: 250px 0;
	color: #FFF;
	margin-bottom: 70px;
}
.landing_section::after{
	content: '';
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.landing_section .container{
	position: relative;
	z-index: 2;
}
.page_landing_section{
	padding: 190px 0 100px;
	color: #FFF;
	background-size: cover;
	background-position: center;
}
.landing_slider_item,
.landing_slider_item_image{
	position: relative;
	height: 100%;
	background-size: cover;
	background-position: center;
}
.background_video{
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
}
.landing_section .container{
	position: relative;
	z-index: 2;
}
.landing_section .wp-block-buttons {
	margin-top: 35px;
}

.landing_section h1,
.page_landing_section h1{
	font-size: 42px;
	font-weight: 500;
	margin-bottom: 30px;
}
.swiper-pagination-bullets.swiper-pagination-horizontal{
	bottom: 130px;
	--swiper-pagination-bullet-size:11px;
	--swiper-pagination-bullet-color: #FFF;
	--swiper-pagination-bullet-inactive-color: #FFF;
	--swiper-theme-color: #FFF;
}
.quick_links_grid{
	margin: 0;
}
.quick_links_grid > *{
	display: flex;
}
.wp-block-acf-landing-quick-link-item-component{
	display: inline-block;
	width: 100%;
}
.landing_quick_link_item{
	padding: 20px 20px 30px;
	background:#FFF;
	color: var(--gray500);
	border:1px solid var(--gray200);
	border-radius: 16px;
}
.landing_quick_link_item_header{
	margin-bottom: 10px;
}
.landing_quick_link_item_header figure{
	width: 50px;
	height: 50px;
	margin: 0;
}
.landing_quick_link_item_header figure img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.landing_quick_link_item_header h3{
	margin: 0;
	font-size: 20px;
	font-weight: 600;
}
.landing_quick_links_component{
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
	z-index: 2;
	transform: translateY(50%);
}

/*** EVENTS TABS SECTION ***/
.events_tabs_section{
	padding: 30px 0;
}
.events_tabs_box{
	padding: 40px;
	border:1px solid var(--gray200);
	border-radius: 24px;
}
.events_tabs_box_header .section_title{
	margin: 0;
}
.events_tabs_nav .events_tab{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 14px 25px;
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	border-radius: 99px;
	border:1px solid var(--purple600);
	color: var(--purple600);
	cursor: pointer;
	transition: all 0.3s;
}
.events_tab:hover{
	border-color: var(--green500);
	color: var(--green500);
}
.events_tabs_nav > .events_tab.current{
	background: var(--purple600);
	color: #FFF;
}
.add_events_link_wrapper{
	padding-left: 15px;
	position: relative;
}
.add_events_link_wrapper::before{
	content: '';
	position: absolute;
	top:50%;
	left:0;
	width: 1px;
	height: 33px;
	background:#D9D9D9;
	transform: translateY(-50%);
}
.events_tabs_nav .add_events_link{
	padding-right: 15px;
}
.add_events_link{
	transition: all 0.3s;
}
.add_events_link:hover{
	background-color: var(--purple600);
	color: #FFF;
}
.add_events_link i{
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url(../images/plus.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.add_events_link:hover i{
	background-image: url(../images/plus_white.svg);
}
.event_card{
	background-color:#F4F7F6;
	border-radius: 16px;
	overflow: hidden;
}
.event_card_image{
	padding-top: 60%;
	background-size: cover;
	background-position: center;
}
.event_card_content{
	padding: 20px;
}
.event_card_content h3{
	font-size: 18px;
	line-height: 150%;
	margin-bottom: 15px;
}
.event_card_data i{
	display: inline-block;
	width: 24px;
	height: 24px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.event_card_date i{
	background-image: url(../images/calendar.svg);
}
.event_card_location i{
	background-image: url(../images/location.svg);
}
.event_card_data span{
	width: calc(100% - 34px);
	line-height: 120%;
}
.arrow_right{
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: -10px;
	background-image: url(../images/arrow_right.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
*:hover > .arrow_right{
	background-image: url(../images/arrow_right_white.svg);
}
.events_tab_content{
	display: none;
}
.events_tab_content:first-child{
	display: block;
}
.fileuploader-theme-default{
	margin: 0;
    aspect-ratio: 10 / 5;
    background: #F3F3F3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
	flex-direction: column;
}
.fileuploader-input .fileuploader-input-button{
	display: none;
}
.fileuploader-input .fileuploader-input-caption{
	border: 1px solid #EAEAEA;
    border-radius: 8px;
    padding: 13px 20px;
    color: var(--gray500);
    font-weight: 400;
    font-size: 14px;
}
.fileuploader-input .fileuploader-input-caption:hover{
	border-color: var(--purple600);
}
.fileuploader-input .fileuploader-input-caption span{
	display: flex;
	align-items: center;
	gap: 10px;
}
.fileuploader-input .fileuploader-input-caption span::after{
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url(../images/upload_icon.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

#events_archive_wrapper.loading{
	opacity: 0.5;
	pointer-events: none;
}

/*** NEWS SECTION ***/
.news_section{
	padding: 40px 0 60px;
}
.news_section .section_title{
	margin-bottom: 0;
}
.post_card_image{
	padding-top:60%;
	background-size: cover;
	background-position: center;
	border-radius: 16px;
}
.post_card_data h3{
	font-size: 18px;
	font-weight: 600;
	line-height: 150%;
}

/*** SPECIALS SECTION ***/
.special_card_data{
	font-size: 14px;
}
.special_card_data .post_card_data_excerpt,
.job_card_data_excerpt{
	color:var(--gray400);
}
.special_card_data_label{
	color:var(--green500);
	margin-bottom: 5px;
	font-weight: 500;
	font-size: 16px;
}
.special_card_data_label i{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	font-size: 16px;
}
.special_card_data_value{
	font-weight: 500;
	color:var(--gray400);
	line-height: 150%;
}

#sort-promos,
#sort-jobs{
	width: 200px;
	height: 48px;
	border:1px solid var(--gray200);
	border-radius: 5px;
	padding:0 15px;
}

.job_card{
	padding: 20px;
    border: 1px solid var(--gray200);
    border-radius: 10px;
}

/*** LISTING SECTION ***/
.listing_section{
	padding: 30px 0 60px;
}
.listing_search_input{
	width: calc(100% - 140px);
	height: 48px;
	border:1px solid var(--gray200);
	border-radius: 99px;
	padding:0 15px 0 50px;
	background-image: url(../images/listing_search_icon.svg);
	background-repeat: no-repeat;
	background-position: 15px center;
	font-size: 14px;
}
.listing_search_input::placeholder{
	color: #C7C7C7;
}
.listing_filters_trigger{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 140px;
	height: 48px;
	border:1px solid var(--gray200);
	border-radius: 99px;
	padding:0 15px;
	gap: 10px;
	color: var(--purple600);
	cursor: pointer;
	transition: all 0.3s;
}
.listing_filters_trigger:hover{
	border-color: var(--purple600);
}
.listing_filters_trigger i{
	display: inline-block;
	width: 18px;
	height: 18px;
	background-image: url(../images/arrow_down_purple.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.listing_filter_selector_box{
	position: absolute;
	bottom:0;
	right: 0;
	width: 260px;
	max-height: calc(100vh - 350px);
	border:1px solid var(--gray200);
	border-radius: 16px;
	padding: 20px;
	background:#FFF;
	transform: translateY(100%);
	overflow-y: auto;
	clip-path: inset(0 0 100% 0);
	visibility: hidden;
	transition: all 0.3s;
}
.active .listing_filter_selector_box{
	bottom:-10px;
	clip-path: inset(0 0 0 0);
	visibility: visible;
}
.listing_filter_selector_box::-webkit-scrollbar{
	display: none;
}
.listing_filter_widget_label{
	font-size: 13px;
	margin-bottom: 4px;
}
.listing_filter_widget_option_box{
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border: 1px solid var(--gray200);
	border-radius: 8px;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s;
}
.listing_filter_widget_option_box:hover{
	border-color: var(--purple600);
}
.listing_filter_widget_option_simple input,
.listing_filter_widget_option_box input{
	display: none;
}
.listing_filter_widget_option_simple i,
.listing_filter_widget_option_box i{
	display: inline-block;
	position: relative;
	width: 20px;
	height: 20px;
	border-radius: 6px;
	background-color: var(--gray200);
	transition: all 0.3s;
}
.listing_filter_widget_option_simple input:checked + i,
.listing_filter_widget_option_box input:checked + i{
	background-color: var(--green500);
}
.listing_filter_widget_option_simple i::after,
.listing_filter_widget_option_box i::after{
	content: '';
	position: absolute;
	top:50%;
	left:50%;
	width: 10px;
	height: 10px;
	background-image: url(../images/checkbox.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transform: translate(-50%, -50%) scale(0);
	transition: all 0.3s;
}
.listing_filter_widget_option_simple input:checked + i::after,
.listing_filter_widget_option_box input:checked + i::after{
	transform: translate(-50%, -50%) scale(1);
}
.listing_filter_selector_box hr{
	width: 100%;
	border: none;
	border-top: 1px solid var(--gray100);
}
.listing_filter_widget_trigger{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px;
	border:1px solid var(--gray200);
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s;
}
.listing_filter_widget_trigger:hover{
	background-color: var(--gray100);
}
.listing_filter_widget_trigger i{
	display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url(../images/arrow_down_purple.svg);
    background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: all 0.3s;
}
.listing_filter_widget_trigger.active i{
	transform: rotate(180deg);
}
.listing_filter_widget_box_wrapper{
	display: none;
}
.listing_filter_widget_box{
	padding: 10px;
	border-radius: 8px;
	margin-top: 10px;
	border:1px solid var(--gray100);
}

#extra_filters_wrapper{
	padding-top: 15px;
	border-top: 1px solid var(--gray100);
}
#extra_filters_wrapper:empty{
	display: none;
}


/*** LISTING ITEM ***/
.listing_item{
	padding: 20px;
	border-radius: 16px;
	border:1px solid var(--gray100);
	font-size: 13px;
}
.listing_item_icon{
	display: inline-block;
	width: 48px;
	height: 48px;
	background-color: var(--green100);
	border-radius: 12px;
	background-image: url(../images/restaurant_icon.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.restaurant_icon{
	background-image: url(../images/restaurant_icon.svg);
}
.recreation_icon{
	background-image: url(../images/recreations_icon.svg);
}
.business_icon{
	background-image: url(../images/business_icon.svg);
}
.shops_icon{
	background-image: url(../images/shops_icon.svg);
}

.listing_item_category{
	font-size: 13px;
	color:var(--green700);
}
.listing_item_content{
	width: calc(100% - 58px);
}
.listing_item_title{
	font-size: 16px;
	margin-bottom: 5px;
}
.listing_item_phone i{
	display: inline-block;
	width: 18px;
	height: 18px;
	background-image: url(../images/listing_phone_icon.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.listing_item_link{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	border: 1px solid var(--gray200);
	border-radius: 99px;
	padding: 15px 20px;
	font-size: 14px;
	color: var(--purple600);
	transition: all 0.3s;
}
.listing_item_link:hover{
	border-color: var(--purple600);
}
.listing_item_link i{
	display: inline-block;
	width: 18px;
	height: 18px;
	background-image: url(../images/link_icon.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
/*** PAGINATION ***/
.pagination{
	font-size: 14px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--gray100);
}
.pagination .page-numbers{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 40px;
	height: 40px;
	border-radius: 8px;
}
.pagination .page-numbers.current{
	background-color: var(--gray100);
}
.pagination .next{
	margin-left: auto;
}
.pagination .prev{
	margin-right: auto;
}

/*** CENTERED CONTENT SECTION ***/
.centered_content_section{
	padding: 60px 0;
}
.icon_box_component{
	border:1px solid var(--gray200);
	border-radius: 16px;
	padding: 20px;
}
.icon_box_header{
	margin-bottom: 10px;
}

/*** EVENTS ARCHIVE SECTION ***/
.events_archive_section{
	padding: 60px 0 100px;
}

/*** BUSINESS PAGE ***/
.business_landing_section{
	padding-top: 230px;
}
.business_page .business_landing_section:first-child{
	z-index: 2;
}
.business_landing_cover{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 130px);
    background-size: cover;
    background-position: center;
}
.landing_box{
	position: relative;
	padding:30px 50px;
	background-color:#FFF;
	border:1px solid #DDD;
	border-radius: 24px;
}
.back_to_home{
	font-weight: 300;
	font-style: italic;
}
#business_logo{
	width: 150px;
}
#business_main_info{
	width: calc(100% - 150px);
}
.business_title{
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
}
.business_email{
	font-size: 16px;
	font-weight: 400;
}
.business_social_link{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	color:#FFF;
	font-size: 18px;
	border-radius: 50%;
	background-color: var(--gray100);
}
.facebook_icon{
	background-color: #1877f2;
}
.twitter_icon{
	background-color: #1da1f2;
}
.instagram_icon{
	background-color: #e1306c;
}
.business_phone_link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    border: 1px solid var(--gray200);
    border-radius: 99px;
    padding: 15px 20px;
    font-size: 14px;
    color: var(--purple600);
    transition: all 0.3s;
}
.business_phone_link{
	font-size: 16px;
}
.business_address_link{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	gap: 10px;
	font-weight: 400;
	border: 1px solid var(--gray200);
	border-radius: 50%;
	font-size: 20px;	
}
.business_hours_selected{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    border: 1px solid var(--gray200);
    border-radius: 99px;
    padding: 7px 15px 7px 7px;
    font-size: 16px;
    color: var(--gray500);
	cursor: pointer;
    transition: all 0.3s;
}
.business_hours_selected::after{
	content: '';
	display: inline-block;
	width: 18px;
	height: 18px;
	background-image: url(../images/arrow_down_purple.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.hours_tag{
	display: inline-block;
	padding: 6px 10px;
	border-radius: 99px;
	font-size: 12px;
	color: #FFF;
}
.hours_tag.open{
	background-color: var(--green500);
}
.hours_tag.closed{
	background-color: var(--red500);
}
.business_hours_selector_dropdown{
	position: absolute;
	bottom: 10px;
	right: 0;
	width: 238px;
	border-radius: 10px;
	background-color: #FFF;
	border: 1px solid var(--gray200);
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(100%);
	transition: all 0.3s;
}
.open .business_hours_selector_dropdown{
	bottom: -5px;
	opacity: 1;
	visibility: visible;
}
#business_description p,
#business_description ul{
	font-size: 16px;
}
#business_map_wrapper{
	aspect-ratio: 1;
    border: 1px solid #DDDDDD;
    border-radius: 16px;
    background: var(--gray100);
}
#business_map_wrapper #business_map{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
}

/*** EVENT PAGE ***/
.event_page .business_landing_cover {
    height: 340px;
}
.event_main_info{
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--gray100);
}
.event_title{
	font-size: 24px;
	font-weight: 600;
	line-height: 140%;
}
.event_business_link_wrapper{
	line-height: 140%;
	color: var(--green500);
}
.event_meta{
	gap: 10px;
}
.event_date{
	line-height: 140%;
}
.event_meta i{
	width: 15px;
	text-align: center;
}
.event_image{
	padding:5px;
	border:1px solid var(--gray100);
	border-radius: 16px;
	background:#FFF;
}
.event_image img{
	border-radius: 11px;
}

/*** BLOG ***/
.single-post{
	background:#F7F9F9;
}
.single_post_wrapper{
	margin-top: 100px;
	padding: 40px 0 60px;
}
.single_post_main_image{
	aspect-ratio: 10 / 3;
	background-size: cover;
	background-position: center;
	border-radius: 24px;
}
.breadcrumbs{
	font-size: 14px;
	color:#475467;
	gap: 25px;
}
.breadcrumbs > *{
	position: relative;
}
.breadcrumbs > *:not(:last-child)::after{
	content: '\f105';
	font-family: FontAwesome;
	position: absolute;
	right: -15px;
}
.breadcrumbs span{
	color:var(--purple500);
	font-weight: 600;
}
.single_post_box,
.newsletter_widget{
	padding:25px;
	background:#FFF;
	border-radius: 24px;
	border:1px solid var(--gray100);
}
.page_title{
	font-size: 24px;
	font-weight: 600;
	line-height: 140%;
}
.single_post_box,
.single_post_box p,
.single_post_box ul{
	font-size: 16px;
}
.single_post_header{
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--gray100);
}
.newsletter_widget_form{
	border-bottom: 1px solid var(--gray100);
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.newsletter_widget_form input[type="email"]{
	width: 100%;
	height: 48px;
	border-radius: 8px;
	border: 1px solid var(--gray200);
	padding: 0 15px;
}
.newsletter_widget_form .gform-field-label{
	display: none;
}
.newsletter_widget_form .button{
	width: 100%;
	border-radius: 8px;
	margin-top: 10px;
}
.share_links > *{
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--green500);
	color: #FFF;
}
.share_links .facebook{
	background-color: #1877f2;
}
.share_links .linkedin{
	background-color: #0077b5;
}
.share_links .twitter{
	background-color: #000;
}
.copy_link{
	transition: all 1s;
}
.copy_link.copied{
	background-color: var(--purple500);
}

/*** MODAL ***/
hr{
	border-width: 0 0 1px 0;
	border-color: var(--gray100);
	margin: 20px 0;
}
.modal{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}
.modal.open{
	opacity: 1;
	visibility: visible;
}
.modal_overlay{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}
.modal_content{
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(100% - 40px);
	max-width: 800px;
	background-color: #FFF;
	border-radius: 24px;
	translate: -50% -50%;
}
.modal_header{
	padding: 30px 30px 0;
}
.modal_body{
	max-height: calc(100vh - 200px);
	overflow: hidden;
	overflow-y: auto;
	padding: 30px;
}
.modal_close{
	display: inline-block;
	position: relative;
	width: 52px;
	height: 52px;
	border:1px solid #DDD;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s;
}
.modal_close:hover{
	border-color: var(--purple500);
}
.modal_close::before{
	content:'';
	position: absolute;
	top:50%;
	left:50%;
	width: 2px;
	height: 18px;
	background-color: var(--purple500);
	transform: translate(-50%, -50%) rotate(45deg);
}
.modal_close::after{
	content:'';
	position: absolute;
	top:50%;
	left:50%;
	width: 2px;
	height: 18px;
	background-color: var(--purple500);
	transform: translate(-50%, -50%) rotate(-45deg);
}
.small_modal .modal_content{
	max-width: 500px;
}
.text_input{
	width: 100%;
	height: 48px;
	border-radius: 8px;
	border: 1px solid var(--gray200);
	padding: 0 15px;
}
textarea.text_input{
	height: 150px;
	padding: 15px;
}
.form_field select{
	width: 100%;
	height: 48px;
	border-radius: 8px;
	border: 1px solid var(--gray200);
	padding: 0 15px;
}
.form_field_label{
	display: block;
	font-size: 13px;
	margin-bottom: 5px;
}
.form_field_description{
	font-size: 12px;
	font-weight: 300;
	margin-top: 10px;
}
.event_categories_list{
	padding: 0;
	margin: 0;
	list-style: none;
}
.checkbox_label{
	padding: 10px;
	border: 1px solid var(--gray100);
	border-radius: 8px;
	cursor: pointer;
}
.checkbox_label input{
	display: none;
}
.checkbox_label i{
	position: relative;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid var(--gray200);
	background:#F1F1F1
}
.checkbox_label i::before{
	content: '';
	position: absolute;
	top:50%;
	left:50%;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: var(--purple500);
	transform: translate(-50%, -50%) scale(0);
	transition: all 0.3s;
}
.checkbox_label input:checked + i::before{
	transform: translate(-50%, -50%) scale(1);
}
.mid_width_button{
	border-radius: 8px;
	width: 217px;
}

/*** TEXT AND IMAGE SECTION ***/
.text_and_image_section{
	padding: 90px 0
}

/*** CTA SECTION ***/
.cta_section{
	padding: 90px 0;
	background-color: #7a3978;
	color: #FFF;
}
.cta_section .section_title{
	color: #FFF;
}
.cta_section .button{
	background-color: #FFF;
	color: var(--purple500);
}
.cta_section .section_title {
    font-size: 35px;
}

/*** CONTACT FORM ***/
.centered_content_section .gform_wrapper.gravity-theme input[type=text],
.centered_content_section .gform_wrapper.gravity-theme input[type=email],
.centered_content_section .gform_wrapper.gravity-theme input[type=tel],
.centered_content_section .gform_wrapper.gravity-theme input[type=number],
.centered_content_section .gform_wrapper.gravity-theme input[type=date],
.centered_content_section .gform_wrapper.gravity-theme input[type=time],
.centered_content_section .gform_wrapper.gravity-theme input[type=url],
.centered_content_section .gform_wrapper.gravity-theme input[type=password],
.centered_content_section .gform_wrapper.gravity-theme input[type=search],
.centered_content_section .gform_wrapper.gravity-theme select,
.centered_content_section .gform_wrapper.gravity-theme textarea{
	width: 100%;
	height: 48px;
	background: #F5F5F5;
    border-radius: 4px;
    padding:0 15px;
    border: 1px solid #F5F5F5;
    font-size: 18px;
}
.centered_content_section .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 30px;
}
.centered_content_section .gform_footer{
	justify-content: center;
}
.centered_content_section .gform_footer .button{
	--btnColor:var(--purple500);
	padding: 14px 45px;
	text-transform: uppercase;
	font-size: 14px;
}
.gfield_radio{
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 10px;
}

/* ==========================================================================
Dashboard
========================================================================== */
#page-header{
	padding: 180px 0 80px;
    color: #FFF;
    background-size: cover;
    background-position: center;
}
#page-header h1 {
    font-weight: bold;
    font-size: 40px;
    color: #FFFFFF;
    letter-spacing: -1.39px;
    margin: 0;
    border-bottom: 10px solid #542553;
    display: inline-block;
    padding-bottom: 5px;
}
#manage-posts {
    padding: 50px 0;
}

.ui-datepicker-trigger {
	display: none;
}

#manage-posts {
	padding: 50px 0;
}

#manage-posts .sidebar ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#manage-posts .sidebar ul li a {
	background: #793A78;
	color: #ffffff;
	display: block;
	padding: 15px;
	margin-bottom: 10px;
	font-size: 16px;
	font-size: 14px;
	color: #FFFFFF;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	font-weight: bold;
}

#manage-posts .sidebar ul li a:hover,
#manage-posts .sidebar ul li a:active,
#manage-posts .sidebar ul li a:focus {
	text-decoration: none;
	background: #5e2d5e;
}

#manage-posts h2 {
	font-size: 26px;
	color: #793A78;
	margin-top: 0;
	margin-bottom: 10px;
	font-weight: 600;
}
#manage-posts p {
	font-size: 18px;
}
.table-striped{
	width: 100%;
	border-collapse: collapse;
	font-size: 12px;
	text-align: left;
}
.table-striped td,
.table-striped th{
	padding: 10px;
}
.table-striped tbody tr:nth-child(odd){
	background-color: #F5F5F5;
}
.table-striped thead th{
	border-bottom:2px solid #ddd;
}
.table-striped .label{
	display: inline-block;
    padding: 5px 10px;
    font-weight: 700;
    color: #fff;
    border-radius: 5px;
}
.label-warning {
    background-color: #f0ad4e;
}
.label-success {
    background-color: #5cb85c;
}

/*** REGUAR PAGES ***/
.page_content_wrapper{
	padding: 170px 0 50px;
}
.page_content_wrapper .page_title{
	margin-bottom: 30px;
}
.gform_wrapper.gravity-theme input[type=text],
.gform_wrapper.gravity-theme input[type=email],
.gform_wrapper.gravity-theme input[type=tel],
.gform_wrapper.gravity-theme input[type=number],
.gform_wrapper.gravity-theme input[type=date],
.gform_wrapper.gravity-theme input[type=time],
.gform_wrapper.gravity-theme input[type=url],
.gform_wrapper.gravity-theme input[type=password],
.gform_wrapper.gravity-theme input[type=search],
.gform_wrapper.gravity-theme textarea{
	height: 50px;
    border-radius: 8px;
    border: none;
    background-color: #F5F5F5;
    padding: 15px !important;
}
.page_content_wrapper .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 30px;
}
.page_content_wrapper .gform_wrapper.gravity-theme .gform_footer{
	margin:40px 0 0 0;
	padding: 0;
}
.page_content_wrapper .gform_wrapper.gravity-theme .ginput_complex label{
	display: none;
}
.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
	font-size: 13px;
}

/* ==========================================================================
Promos Page
========================================================================== */

#promo-info {
	background: #F7F7F7;
	padding: 40px 0;
}

#promo-info p {
	font-size: 18px;
	color: #949494;
	line-height: 1.4;
	margin-top: 5px;
}

#promo-info p:last-child {
	margin-bottom: 0;
}

#promos {
	padding: 40px 0;
}

.promo-item {
	box-shadow: 2px 2px 5px 0 rgba(0,0,0,0.12);
	position: relative;
	overflow: hidden;
	margin-bottom: 25px;
	background: #F6F6F6;
}

.promo-item:after {
	content: '';
	position: absolute;
	bottom: -47.5px;
	right: -47.5px;
	border-radius: 50%;
	height: 95px;
	width: 95px;
	background: #793A78;
}

.promo-item a:hover {
	text-decoration: none;
}

.promo-item .title {
	background: #3F6E68;
	font-weight: bold;
	font-size: 30px;
	color: #FFFFFF;
	letter-spacing: -0.38px;
	padding: 15px 20px;
	line-height: 1;
	display: block;
}

.promo-item .promo-content {
	background: #F6F6F6;
	padding: 25px;
}

.promo-item.boutique .promo-content {
	text-align: center;
}

.promo-item .promo-content .image img {
	width: 100%;
}

.promo-item.boutique .promo-content .image img {
	max-height: 200px;
	width: auto;
}

.promo-item .promo-content .description p {
	font-size: 14px;
	color: #949494;
	line-height: 1.4;
	margin: 15px 0;
}

.promo-item .promo-content .divider {
background: #DADADA;
height: 5px;
width: 130px;
margin-bottom: 15px;
}

.promo-item.boutique .promo-content .divider {
	margin: 15px auto;
}

.promo-item .promo-content .location a,
.promo-item .promo-content .location span {
	font-size: 14px;
	color: #949494;
	line-height: 1.4;
}

.promo-item .promo-content .location strong {
	font-size: 16px;
	color: #50958B;
	letter-spacing: -0.21px;
}

@media(max-width:1200px) {
	#header_search{
		width: 40px;
        height: 40px;
        position: relative;
	}
	#header_search_input{
		position: absolute;
		top:0;
		right:0;
		background-color: var(--purple500);
		width: 100%;
		padding: 0;
		color: transparent;
		transition: all 0.3s;
	}
	#header_search_input:focus{
		width: 190px;
		color: #FFF;
		padding: 0 10px 0 40px;
	}
	#header_search_input::placeholder{
		opacity: 0;
	}
}
@media(max-width:768px) {
	.landing_quick_links_component {
		position: relative;
		margin-top: 100px;
		transform: translateY(0);
	}
	.quick_links_grid.is-layout-flex{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	.landing_section {
		padding: 250px 0 60px;
	}
}
@media(max-width:992px) {
	.event_card_image{
		padding-top: 40%;
	}
	.landing_box {
		padding: 25px 20px;
	}
	#business_logo img{
		width: 90px;
	}
	#business_main_info{
		width: calc(100% - 90px);
	}
	.hours_tag {
		font-size: 10px;
	}
	.business_hours_selected {
		font-size: 12px;
	}
	.single_post_main_image {
		aspect-ratio: 10 / 8;
	}
}