@import url("css/fonts.css") layer(base);
@import url("css/variables.css") layer(base);


/*
----------------------------------------------------
BASIC ELEMENTS
----------------------------------------------------
*/
html {
	font-size: 100%;
}
body {
	background-color: var(--color_white) !important;
	font-family: var(--font_family_light), sans-serif;
	font-weight: 300;
	line-height: 24px;
	min-width: 0; /* override style.css */
}
p, li {
	letter-spacing: var(--letter_spacing);
}

/* no layout surprises */
*, *:before, *:after {
	box-sizing: border-box;
}

body .post-title,
body .stadium_guide_container h2.post-subheading {
	margin-top: 0;
	padding: 11px 0;
	margin-bottom: 1.25rem;
	font-family: var(--ff_extrabold) !important;
	font-size: var(--font_size_peoplesbank_28) !important;
	text-transform: uppercase;
	line-height: 1 !important;
	color: var(--peoplesbank_gold);
}

p.lead {
	font-family: var(--ff_light);
	font-size: var(--font_size_subtitles);
	line-height: 24px;
	margin: 15px 0;
}

a {
	color: var(--peoplesbank_teal);
}
a:hover {
	color: var(--peoplesbank_teal);
}

/* post title and lead pair */
.post-title:has(+ .lead) {
	margin-bottom: 21px;
}
.post-title + .lead {
	margin: 0 0 12px;
}

.cta_body {
	width: 100%;
	max-width: var(--container_width);
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}



/* Buttons */
.peoplesbank_btn,
#contact_form #contact_form_submit,
.button.non_instant_book_btn,
.filter_performer_option,
.new_checkout #btn_submit,
.purchase-agreement #purchase_agreement button.blue {
	position: relative;
	display: inline-block;
	cursor: pointer;
	max-width: max-content;
	padding: 1.35em 2.5em;
	border: 1px solid var(--color_white);
	border-radius: 3em;
	color: var(--color_white);
	text-align: center;
	font-family: var(--ff_rubikbold);
	font-size: var(--font_size_btn);
	text-transform: uppercase;
	font-weight: 700;
	line-height: 1;
	background: linear-gradient(83.71deg, #01539B -10.6%, var(--peoplesbank_teal) 72.2%);
	box-shadow: 0px 4px 10px 0px #0000001F;
	z-index: 0;
	transition: all 0.2s ease;

	@media screen and (min-width: 768px) {
		min-width: 301px;
	}

	&::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border-radius: inherit;
		background: var(--peoplesbank_teal);
		opacity: 0;
		z-index: -1;
		pointer-events: none;
		transition: opacity 0.2s ease;
	}

	&:hover,
	&.selected {
		color: var(--color_white);
	}

	&:hover::after,
	&.selected::after {
		opacity: 1;
	}

	&:active {
		border-color: var(--peoplesbank_teal);
	}

	&:active::after {
		opacity: 0;
	}
}

.peoplesbank_btn--footer {
	min-width: auto;
	max-width: 250px;
}

.share_this_button, .share_container button.share_this_button {
	padding: 18px 36px;
	text-transform: uppercase;
	font-weight: 700;
	border-color: var(--peoplesbank_teal);
	background: var(--peoplesbank_teal) !important;
}

.instant_book_btn {
	min-width: 392px;
}

.instant_book_btn .icon-power:before {
	color: var(--color_white);
}

.filter_performer_option_container {
	width: auto !important;
}

.filter_performer_name {
	font-size: var(--font_size_small_text);
	font-family: var(--ff_regular);
	font-weight: 400;
}

.filter_performer_option.selected {
	padding-right: 2.5em;
}

.peoplesbank_btn.peoplesbank_btn--photos {
	position: absolute;
	right: 4vw;
	bottom: 4vw;
	padding: 8px 16px;
	pointer-events: none;
	font-family: var(--ff_bold);
	font-weight: normal;
	border: 1px solid var(--color_white);
	background: rgba(0, 0, 0, 0.5) !important;

	@media screen and (min-width: 768px) {
		right: 2vw;
		bottom: 2vw;
	}
}

.peoplesbank_btn--hollow,
.filter_performer_option {
	width: fit-content;
	min-width: 151px;
	padding: 16px;
	color: var(--peoplesbank_teal);
	border-color: currentColor;
	font-family: var(--ff_ultra);
	font-size: var(--font_size_small_text);
	font-weight: 700;
	line-height: normal;
	background: transparent !important;
}

.peoplesbank_btn--hollow {
	color: var(--color_white);

	&::after {
		background: rgba(71, 191, 175, 0.4) !important;
	}
}

.peoplesbank_btn--photos {
	min-width: auto;
}

.filter_performer_option {
	border-radius: 2em;
}

/* regular button */
a.blue:not(.peoplesbank_btn),
button.blue,
input.blue.button,
.browse_other_events,
.catering_menu_button,
.tiled_event_page .toc_element {
	position: relative;
	display: inline-block;
	font-family: var(--ff_extrabold);
	font-size: 18px;
	line-height: 1.2;
	padding: 17px 0;
	background: none;
	color: var(--color_3);
	text-decoration: none;
	z-index: 0;
	border: 0 none;
	width: 100%;
	max-width: 165px;
	height: 53px;
	text-align: center;
	border-radius: 50px;
}


/* small button */

a.cta_btn_small,
button.cta_btn_small,
input.cta_btn_small.button,
.catering_menu_button,
.tiled_event_page .toc_element {
    display: flex;
	padding: 10px 0;
	width: 203px;
	height: 56px;
	font-size: var(--font_size_games);
    justify-content: center;
    align-items: center;
}
a.cta_btn_small::before,
button.cta_btn_small::before,
input.cta_btn_small.button::before,
.catering_menu_button::before,
.tiled_event_page .toc_element::before {
	border-radius: 7px 0;
	background: var(--color_1);
}
a.cta_btn_small:hover::before,
button.cta_btn_small:hover::before,
.catering_menu_button:hover::before,
input.cta_btn_small.button:hover::before {
	background: #5DA38B;
}
a.cta_btn_small:active::before,
button.cta_btn_small:active::before,
.catering_menu_button:active::before,
input.cta_btn_small.button:active::before {
	background: var(--color_1);
}

/* radio button */

.toc_element [class*="display_name"] {
	font-family: var(--ff_ultra);
	font-size: 11px;
	line-height: 1.2;
	text-transform: uppercase;
	transition: all 0.2s ease;
	font-family: var(--ff_ultra);
	font-size: var(--font_size_min);
	line-height: 18px;
	text-transform: uppercase;
	font-weight: 700;
}
.tiled_event_page .toc_element.highlight,
.tiled_event_page .toc_element:hover {
	background: var(--peoplesbank_blue) !important;
	color: var(--color_white) !important;
}
.tiled_event_page .toc_element.highlight::before,
.tiled_event_page .toc_element:hover::before {
	background: var(--color_3);
	border-color: var(--color_1);
}



/*
----------------------------------------------------
LIGHTBOXES
----------------------------------------------------
*/
.suite_lightbox_header h2 {
	margin: 1em 0;
	font-family: var(--ff_ultraitalic);
	font-size: 40px;
	line-height: 1;
	color: var(--color_white);
}

.suite_lightbox_header .cui_small_container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media screen and (min-width: 769px) {
	.suite_lightbox_header .cui_small_container {
		padding-left: 40px;
		padding-right: 40px;
		box-sizing: border-box;
	}
}

@media screen and (max-width: 768px) {
	.suite_lightbox_header .cui_small_container {
		padding-left: var(--gutter_width);
		padding-right: var(--gutter_width);
	}
	.suite_lightbox_header h2 {
		padding-left: 0;
		padding-right: 0;
	}
}

.suite_lightbox_content .suite_info_container h4 {
	color: var(--color_bg);
}

.suite_lightbox_content .suite_details_container .suite_info_container p,
.suite_lightbox_content .lightbox_close_link {
	font-family: var(--ff_formaregular);
}

.suite_lightbox_content .peoplesbank_btn {
	padding: 1em 2em;
	min-width: 0;
	border: 0 none;
}

.suite_lightbox_content #galleria_stage_container {
	position: relative;
	z-index: 1;
	border-radius: 18px;
	overflow: visible;
}
.suite_lightbox_content #galleria_stage_container .galleria-images {
	border-radius: 18px;
	overflow: hidden;
	z-index: 1;
}
.suite_lightbox_content #galleria_stage_container .galleria-container,
.home #galleria_stage_container .galleria-container {
	border-radius: 18px;
	overflow: visible;
}

.suite_lightbox_content #galleria_stage_container .galleria-stage,
.home #galleria_stage_container .galleria-stage {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 18px;
	overflow: visible;
}

.suite_lightbox_content #galleria_stage_container .galleria-image-nav,
.home #galleria_stage_container .galleria-image-nav {
	z-index: 0;
	left: 0;
	right: 0;
	width: auto;
	margin: 0;
	height: 63px;
	top: 50%;
	transform: translateY(-50%);
}
.suite_lightbox_content #galleria_stage_container .galleria-image-nav-left,
.suite_lightbox_content #galleria_stage_container .galleria-image-nav-right,
.home #galleria_stage_container .galleria-image-nav-left,
.home #galleria_stage_container .galleria-image-nav-right {
	width: 117px;
	height: 63px;
	padding: 0;
	opacity: 0.9 !important;
	border-radius: 70px;
	background: linear-gradient(270deg, #215952 0%, var(--peoplesbank_teal) 100%) !important;

	&::before {
		content: "";
	    position: absolute;
		top: 50%;
		left: 22px;
		width: 15px;
		height: 30px;
		background-image: url("../../../includes/custom-ui/peoplesbank_arena/images-git-lfs/icon-chevron.svg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
		transform: translateY(-50%) scaleX(-1);
	}
	&::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border-radius: inherit;
		background: linear-gradient(270deg, #47BFAF 0%, #215952 100%);
		opacity: 0;
		z-index: -1;
		pointer-events: none;
		transition: opacity 0.2s ease;
	}
	&:hover::after {
		opacity: 1;
	}
}
.suite_lightbox_content #galleria_stage_container .galleria-image-nav-left {
	left: -65px !important;
}
.suite_lightbox_content #galleria_stage_container .galleria-image-nav-right {
	right: -65px !important;
	background: linear-gradient(90deg, #215952 0%, var(--peoplesbank_teal) 100%) !important;

	&::before {
		left: auto;
	    right: 22px;
		transform: translateY(-50%);
	}
	&::after {
		background: linear-gradient(90deg, #47BFAF 0%, #215952 100%);
	}
}

@media screen and (max-width: 768px) {
	.suite_lightbox_content .galleria_container .cui_small_container {
		padding-left: var(--gutter_width);
		padding-right: var(--gutter_width);
	}
	.suite_lightbox_content #galleria_stage_container {
		width: calc(100% - 36px);
		margin-left: auto;
		margin-right: auto;
	}
}


/*
----------------------------------------------------
PAGE TITLES
----------------------------------------------------
*/

/* most page titles on LA LENOVO have dark purple backgrounds that bleed under the header bar */
:is(.home,
    .page-template-seg_stadiumpage_shell,
    .page-template-seg_tiled_event_page,
    .venues,
    .suites,
    .tickets,
    .ownership,
    .faq,
    .contact,
    .privacy,
    .privacy-policy,
    .terms-of-service) .cui_header_container
{
	background: transparent;
	background: var(--color_bg);
	border-bottom: 1px solid var(--peoplesbank_teal);
	box-shadow: 0px 0px 12px 0px #00000026;
}
#non-header .page_title_container {
	display: flex;
	background: url("../../../includes/custom-ui/peoplesbank_arena/images-git-lfs/peoplesbank-arena-suites-page-title_2880x512.webp") no-repeat;
	background-position: top center;
	background-color: var(--color_black);
	height: 256px;
	overflow: visible;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.25);
    background-size: cover !important;

	@media screen and (max-width: 768px) {
		background-image: url("../../../includes/custom-ui/peoplesbank_arena/images-git-lfs/peoplesbank-arena-suites-page-title_1440x256-mobile.webp");
	}
}

.events #non-header .page_title_container {
	background: url("../../../includes/custom-ui/peoplesbank_arena/images-git-lfs/peoplesbank-arena-events-page-title_2872x512.webp") no-repeat;
	background-position: center center;

	@media screen and (max-width: 768px) {
		background-image: url("../../../includes/custom-ui/peoplesbank_arena/images-git-lfs/peoplesbank-arena-events-page-title_1436x256-mobile.webp");
	}
}

.faq #non-header .page_title_container {
	background: url("../../../includes/custom-ui/peoplesbank_arena/images-git-lfs/peoplesbank-arena-faq-page-title_2872x512.webp") no-repeat;
	background-position: center 0;

	@media screen and (max-width: 768px) {
		background-image: url("../../../includes/custom-ui/peoplesbank_arena/images-git-lfs/peoplesbank-arena-faq-page-title_1436x256-mobile.webp");
	}
}
.contact #non-header .page_title_container {
	background: url("../../../includes/custom-ui/peoplesbank_arena/images-git-lfs/peoplesbank-arena-contact-page-title_2872x512.webp") no-repeat;
	background-position: center 0;

	@media screen and (max-width: 768px) {
		background-image: url("../../../includes/custom-ui/peoplesbank_arena/images-git-lfs/peoplesbank-arena-contact-page-title_1436x256-mobile.webp");
	}
}
.suites #non-header .page_title_container { box-shadow: none; }

#non-header .page_title_container h1 {
	position: relative;
	margin: 0;
	width: calc( 100% - var(--gutter_width) * 2 );
	max-width: var(--container_width);
	padding: 0;
	padding-left: 30px;
	line-height: 1;
	text-shadow: none;
	font-family: var(--ff_ultraitalic);
	font-size: var(--font_size_med);
	text-transform: uppercase;
	color: var(--color_white);
	border-left: 13px solid var(--peoplesbank_teal);
    text-shadow: 0px 4px 4px #00000040;
}



/*
----------------------------------------------------
UI WIDGETS
----------------------------------------------------
*/

.cui_big_container {
	/* width: 100%; */
	display: flex;
	justify-content: center;
}
.cui_small_container {
	width: 100%;
	max-width: calc( 10px + var(--container_width) ) ;
}

#hp_ideal_matchup .cui_small_container {
	padding-bottom: 3em;
	text-align: center;
}
.cta_container {
	width: calc( 100% - var(--gutter_width) * 2 );
	max-width: var( --container_width );
}

/*
----------------------------------------------------
CONTACT US PANEL (UNIVERSAL)
----------------------------------------------------
*/

#contact_us {
	display: flex;
	padding: 2em 0.5em;
	background-image: url("../../../includes/custom-ui/peoplesbank_arena/images-git-lfs/bkg-footer.jpg");
	background-size: cover;
	background-position: center;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	z-index: 0;
	background-repeat: no-repeat;
}
#contact_us .cta_container {
	min-height: 360px;
	padding: 0 0 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
}
#contact_us .cta_body {
	min-height: 241px;
	position: relative;
}

#contact_us .lead {
	margin: 1em 0 1.5em;
	color: var(--color_3);
	text-align: center;
	font-family: var(--ff_formaregular);
}

.footer-title {
	margin-top: 0;
	margin-bottom: 0.1em !important;
	text-transform: uppercase !important;
	font-family: var(--ff_ultraitalic) !important;
	font-size: var(--font_size_med) !important;
	line-height: 1 !important;
	color: var(--color_white);
	text-align: center;

	@media screen and (min-width: 768px) {
		font-size: var(--font_size_med) !important;
	}

	& > img {
		margin-top: 0.5em;
	}
}

#contact_us a.blue::before {
	background: var(--color_2);
	border: 1px solid var(--color_1);
}

@media screen and (max-width: 768px) {
	#contact_us {
		min-height: 0;
		margin: 0;
	}
	#contact_us .cta_container {
		min-height: auto;
	}
	.home #contact_us .cta_container {
		padding-bottom: 0;
	}
	.home #contact_us .cta_body {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
}

/*
----------------------------------------------------
HEADER
----------------------------------------------------
*/
.cui_header_container {
	background: var(--color_bg);
	height: 80px;
	display: flex;
	justify-content: center;
}
#cui_sticky_header {
	display: none;
}
.cui_header_container .inner_header,
#cui_sticky_header .inner_header {
	padding: 0;
	display: flex;
	justify-content: space-between;
	position: unset;
	align-items: center;
	align-self: center;
	width: calc( 100% - var(--gutter_width) * 2);
	height: 100%;
	max-width: var(--container_width);
}

a.logo_container {
	display: flex;
	align-items: center;
	margin-right: auto;
	flex-direction: column;
}

.cui_header_container .site_logo,
#cui_sticky_header .site_logo {
	padding: 0;
	box-sizing: border-box;
	image-rendering: initial;
}

.peoplesbank_site_logo_text {
	display: flex;
	margin: 0 auto;
	line-height: 1;
	color: var(--color_white);
	font-family: var(--ff_bold);
	font-weight: normal;
	font-size: var(--font_size_subtitles);
	text-transform: uppercase;
	align-items: center;
}

.cui_header_container .site_logo,
#cui_sticky_header .site_logo {
	width: auto;
	height: auto;
    max-height: 26px;
	padding: 0;
	box-sizing: border-box;
}

.cui_header_container span.page_title,
#cui_sticky_header span.page_title {
	border-left: 0 none;
	margin: 0;
	padding: 0 0 0 24px;
	/* padding-left: 15px; */
	font-family: var(--ff_extrabold);
	font-size: 31px;
	color: var(--color_3);
	height: auto;
	float: none;
	position: relative;
}
.cui_header_container span.page_title::before,
#cui_sticky_header span.page_title::before {
	content: "";
	display: block;
	position: absolute;
	width: 1px;
	height: 38px;
	left: 11px;
	bottom: -2px;
	background: var(--color_3);
}

.cui_header_container nav,
#cui_sticky_header nav {
	float: none;
	margin: 0;
}
nav ul {
	display: block;
	margin-top: 10px;
	width: 100%;
	gap: 0;
	justify-content: flex-end;
	align-items: center;
}
.cui_header_container {
	display: flex;
}
.cui_header_container li,
#cui_sticky_header li {
	padding: 0;
	position: relative;
	text-align: center;
	text-transform: none;
}
.cui_header_container li a,
#cui_sticky_header li a {
	padding: 0;
	position: relative;
	display: inline-block;
	letter-spacing: 0;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 1.2;
}
@media screen and (max-width: 768px) {
	.cui_header_container li a:hover {
		border-bottom: 0 none;
	}
}

/* Nav highlighting — primary header + sticky (outside #non-header) */
#non-header .cui_header_container nav a[class],
#cui_sticky_header nav a[class] {
	font-family: var(--ff_bold) !important;
	font-weight: normal;
	font-size: 16px;
	line-height: 1.2;
	color: var(--color_nav);
    border-bottom: 3px solid transparent;

	&:hover {
		color: var(--peoplesbank_teal);
	}
}

.home #non-header nav a[class="home"],
.suites #non-header nav a[class="suites"],
.events #non-header nav a[class="events"],
.faq #non-header nav a[class="faq"],
.contact #non-header nav a[class="contact"] {
	color: var(--peoplesbank_teal);
}

/* Other nav links hover - no underline */
nav li:hover::after {
	display: none;
}

#non-header .cui_header_container .mobile_menu_btn {
	position: relative;
	padding: 0;
	top: -3px;
	right: 0;
	height: 34px;
	font-size: 38px;
	line-height: 1;
}

.cui_header_container .inner_header :not(a) {
	height: auto;
}

@media screen and (min-width: 769px) {
	.cui_header_container li,
	#cui_sticky_header li {
		margin: 0 20px;
		padding: 0;
	}
	.cui_header_container li a,
	#cui_sticky_header li a {
		white-space: nowrap;
	}
}

@media screen and (max-width: 768px) {
	nav ul {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}
	.home #non-header nav li a.home,
	.suites #non-header nav li a.suites,
	.events #non-header nav li a.events,
	.faq #non-header nav li a.faq,
	.contact #non-header nav li a.contact {
		border-bottom: 2px solid var(--peoplesbank_teal) !important;
		padding-bottom: 2px;
	}
	.cui_header_container nav,
	#cui_sticky_header.cui_header_container nav {
		position: absolute;
		top: 80px;
		left: 0;
		background: var(--color_bg);
		margin: 0;
		padding: 0 20px;
	}
	.cui_header_container li,
	#cui_sticky_header li {
		text-align: right;
		margin: 12px 0;
		padding: 8px 0;
	}

}

@media screen and (min-width: 769px) and (max-width: 1100px) {
	.cui_header_container li,
	#cui_sticky_header li {
		margin: 0 10px;
	}
	#cui_sticky_header .mobile_menu_btn {
		display: none;
	}
	#cui_sticky_header.cui_header_container nav {
		width: auto;
		margin: inherit;
		padding: inherit;
		display: block;
		background: transparent;
	}
	#cui_sticky_header.cui_header_container li {
		display: inline-block;
		text-align: center;
	}
}


/*
----------------------------------------------------
FOOTER
----------------------------------------------------
*/

#cui_footer {
	display: flex;
	padding: 1.6em 0;
	height: auto;
	border-top: 1px solid var(--peoplesbank_teal);
	flex-direction: column;
	justify-content: center;
	background: #01447D;
}

#cui_footer .inner_footer {
	width: calc( 100% - var(--gutter_width) * 2 );
	max-width: var(--container_width);
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 auto;

	@media screen and (min-width: 768px) {
		justify-content: space-between;
	}
}

#cui_footer .inner_footer .nav {
	display: block !important;
}

#cui_footer .inner_footer .nav ul {
    margin: 0;
    padding: 0;
}

#cui_footer * {
	color: var(--color_white);
	font-family: var(--ff_formaregular);
	font-weight: 400;
	font-size: var(--font_size_small_text);
	    -webkit-font-smoothing: antialiased;
}
#cui_footer .brand {
	flex-shrink: 0;
	text-align: right;
}
#cui_footer .nav ul {
	width: 100%;
	margin: 0 0 3px;
}
#cui_footer .nav ul li {
	display: inline-block;
	margin: 0 17px 0 0;
}
#cui_footer .nav a {
	font-family: var(--ff_formaregular);
	font-weight: 400;
	text-decoration: underline;
	font-size: var(--font_size_small_text);
	-webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 768px) {
	#cui_footer .inner_footer {
		display: grid;
		grid-template-columns: 1fr auto;
		grid-template-areas:
		"links logo"
		"copyright logo";
		align-items: flex-start;
		gap: 0 var(--gutter_width);
		padding: 0;
	}
	#cui_footer .nav {
		grid-area: links;
	}
	#cui_footer .nav ul {
		margin-bottom: 0;
	}
	#cui_footer .logo {
		grid-area: logo;
		align-self: center;
	}
	#cui_footer .brand {
		margin: 0;
		text-align: left;
		grid-area: copyright;
	}
}

#non-header {
	position: relative;
	background: radial-gradient(var(--peoplesbank_gray_light) 5%, var(--color_bg));

	&:after {
		content: "";
		position: absolute;
		left: 0;
		top: 30vh;
		width: 475px;
		height: 649px;
		max-height: calc(100% - 30vh);
		background-image: url("../../../includes/custom-ui/peoplesbank_arena/images-git-lfs/circles.svg");
		pointer-events: none;
	}
}

/*
----------------------------------------------------
HOME PAGE
----------------------------------------------------
*/

.home #non-header,
.suites #non-header {
	background: none;
}

/* hero */

/* HP hero */
iframe.vimeo {
	display: block;
	width: (100vw - 17px);
	height: auto;
	min-height: 100vh;
	z-index: 0;
	/* top: 32px; */
	left: 50%;
	transform: translateX(-50%);
	position: relative;
	aspect-ratio: 16/9;
}
@media screen and (min-aspect-ratio: 16/9) {
	iframe.vimeo {
		height: auto;
		min-width: 100%;
		width: calc(100vw - 17px);
	}
}
@media screen and (max-aspect-ratio: 16/9) {
	iframe.vimeo {
		width: auto;
		min-height: 100%;
		height: 100vh;
	}
}

#hp_hero_section {
	position: relative;
	margin-top: -90px;
	height: 100vh;
	max-height: 734px;
	top: 0;
	width: 100%;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-image: url("../../../includes/custom-ui/peoplesbank_arena/images-git-lfs/peoplesbank-arena-homepage-hero_3840x2560-desktop.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-bottom-left-radius: min( 17vw, 240px );
	overflow: visible;

	@media screen and (max-width: 768px) {
		background-image: url("../../../includes/custom-ui/peoplesbank_arena/images-git-lfs/peoplesbank-arena-homepage-hero_1280x853-mobile.webp");
	}
}

#hp_hero_section .cui_hero_sub_container {
	min-height: 546px;
	width: calc( 100% - var(--gutter_width) * 2 );
	max-width: var(--container_width);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#hp_hero_section .cui_small_container {
	margin: 0;
	padding-left: 30px;
	height: auto;
	border-left: 13px solid var(--peoplesbank_teal);
}

#hp_hero_section {
	color: var(--color_3);
}
	
#hp_hero_section .hp_hero_text {
	margin: 0.11em 0 0.25em;
	margin-left: 0;
	color: var(--color_white);
	font-family: var(--ff_ultraitalic);
	font-weight: 500;
	font-size: min( var(--font_size_large), 10vw );
	text-transform: uppercase;
	text-shadow: 0px 4px 4px #00000040;

	@media screen and (max-width: 500px) {
		float: none;
		line-height: 1;
	}
}

#hp_hero_section .hp_hero_subtitle {
	-webkit-font-smoothing: antialiased;
	margin-top: 0.8em;
	margin-bottom: 1.25rem;
	font-family: var(--ff_formabold);
	font-size: var(--font_size_games);
	line-height: 29px;
	font-weight: 700;
}

#hp_hero_section h2 {
	margin: 0;
	margin-top: 2em;
	position: relative;
	font-family: var(--ff_ultra);
	font-size: var(--font_size_subtitles);
	line-height: 26px;
	font-weight: 300;
	text-transform: initial;
	font-style: normal;
}

.cui_hero_text_section .cui_hero_container {
	overflow: visible;
}

/* upcoming games carousel */
#hp_ideal_matchup {
	min-height: 350px;
	flex-direction: column;
	padding: 0 1em;
}

.peoplesbank-matchup-header {
	display: flex;
	padding: 102px 0.5em 0 0;
	align-items: center;
	position: relative;
	z-index: 1;
}

.peoplesbank-title,
body.home h2.peoplesbank-title,
#hp_ideal_matchup .peoplesbank-title {
	margin: 0;
	padding: 0;
	text-align: left;
	color: var(--color_white);
	font-family: var(--ff_ultraitalic);
	width: auto;
	font-size: var(--font_size_peoplesbank_32);
	text-transform: uppercase;
	color: var(--color_bg);
}

#hp_ideal_matchup.cui_4_across_section {
	flex-direction: row;

	.cui_small_container {
		display: flex;
		width: 100%;
		max-width: 100%;
		padding: 0;

		h2 {
			width: 100%;
			margin-bottom: auto;
			font-family: var(--ff_ultraitalic);
			color: var(--color_white);
			text-transform: uppercase;
		}
	}
}

#hp_ideal_matchup .cui_small_container > .grid:first-child {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: column;
}
#hp_ideal_matchup a.blue {
	font-size: var(--font_size_small_text);
}
.home #hp_ideal_matchup .carousel_container {
	width: 100%;;
	padding: 0;

	@media screen and (max-width: 768px) {
		width: auto;
	}
}
.carousel_container .slick-track {
	display: flex;
}

.carousel_container .slick-prev, .carousel_container .slick-next {
	color: var(--color_white)
}

.carousel_container .slick-list {
	z-index: 1;
	margin-block: -14px;
	padding: 14px 0;
}
.carousel_container .slick-prev {
	z-index: 0;
	left: -30px;

	@media screen and (min-width: 769px) {
		left: -44px;
	}
}
.carousel_container .slick-next {
	z-index: 0;
	right: -30px;

	@media screen and (min-width: 769px) {
		right: -44px;
	}
}

@media screen and (min-width: 769px) and (max-width: 1240px) {
	.home #hp_ideal_matchup .carousel_container {
		width: calc(100% - 130px);
		margin-left: auto;
		margin-right: auto;
	}
}
#hp_ideal_matchup .slick-dots {
	display: none !important;
}

.carousel_container .carousel_event {
	border: 0 none !important;
	height: auto;
	display: flex;
	box-sizing: border-box;
	margin-inline: 0;
	padding: 0 6px;
}
.carousel_container .carousel_event a {
	position: relative;
	display: flex;
	width: 100%;
	max-width: 100%;
	min-height: 227px;
	padding: 6px;
	flex-direction: column;
	font-family: var(--ff_extrabold);
	font-size: 18px;
	line-height: 1.2;
	background: none;
	color: var(--color_white);
	text-decoration: none;
	z-index: 0;
	border: 1px solid rgba(248, 238, 221, 0.4);
	text-align: center;
	background: linear-gradient(180deg, var(--color_bg) -37.54%, var(--peoplesbank_blue_lighter) 229.26%);
	border-radius: 18px;

	&:hover {
		border-color: var(--peoplesbank_teal);
		background: var(--color_black);
		box-shadow: 0px 6px 14px -4px #004B93;
	}
}

#hp_ideal_matchup .carousel_container .img_content {
	width: 243px;
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	min-height: 0;
	object-fit: contain;
	background-size: 80%;
	/* background-color: #ddd !important; */
	margin: 0 auto 8px;
	flex-shrink: 0;
	aspect-ratio: 4 / 3;
}
#hp_ideal_matchup .carousel_container .img_content[style*="logo"] {
	background-size: auto 75% !important;
}
.carousel_container .caption_content {
	width: 100%;
	padding: 0 8px;
	margin: 0 auto;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.carousel_container .hp_away_team_name {
	display: flex;
	font-family: var(--ff_ultra);
	font-weight: 400;
	font-size: var(--font_size_games);
	padding-bottom: 8px;
	line-height: 22px;
	flex: 1;
	flex-direction: column;
	justify-content: center;
	text-transform: uppercase;
	text-align: left;
}

.carousel_container .hp_event_date {
	margin-top: auto;
	margin-bottom: 8px;
	flex: 0 1;
	font-family: var(--ff_formaregular);
	font-size: var(--font_size_min);
	text-align: left;
	color: var(--color_white);
}

/* no events messaging */

#hp_ideal_matchup .event_widget_no_events_container {
	margin-right: auto;
	margin-left: auto;
	margin-bottom: auto;
}

#hp_ideal_matchup .event_widget_no_events_container a.blue.solid {
	background: none;
	border: 0 none;
	margin-bottom: 15px;
	color: var(--color_3) !important;
	text-transform: initial;
}

@media screen and (max-width: 768px) {
	.home #hp_ideal_matchup .carousel_container {
		margin-left: 25px;
		margin-right: 25px;
	}
}


/* elevate your experience / premium amenities */
#hp_elevated_experience {
	background-color: var(--peoplesbank_gray_light);
}

#hp_elevated_experience .grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	grid-auto-rows: 1fr;
	column-gap: 28px;
	row-gap: 20px;
}

#hp_elevated_experience .col-1_2 {
	width: auto;
	overflow: hidden;
	padding: 0;
	display: flex;
	flex-direction: column;
}

#hp_elevated_experience .img_content {
	width: 100%;
	height: 280px;
	margin: 0;
	background-size: cover;
	border-radius: 20px 20px 0 0;
}

#hp_elevated_experience .text_content {
	border: 1px solid var(--color_2);
	position: relative;
	padding: 42px 33px 36px;
	background: var(--color_3);
	flex: 1;
	border-radius: 0 0 20px 20px;
	border: 1px solid var(--peoplesbank_yellow)
}

#hp_elevated_experience .text_content h3 {
	margin: 0 0 5px;
	font-family: var(--ff_ultraitalic);
	font-size: var(--font_size_games);
	line-height: 24px;
	text-transform: uppercase;
	color: var(--color_2);
}
#hp_elevated_experience .text_content p {
	font-family: var(--ff_ultra);
	font-size: var(--font_size_min);
	letter-spacing: 0.8px;
	line-height: 24px;
	color: var(--color_black);
}

/* single game suites */
#hp_partnership_section {
	position: relative;
	background: url("../../../includes/custom-ui/peoplesbank_arena/images-git-lfs/bkg-single-game-suites.jpg") no-repeat;
	background-size: cover;
	background-color: var(--color_black);
	padding-bottom: 30px !important;

	h2 {
		margin: 0;
		line-height: 1em;
		font-family: var(--ff_extrabold);
		font-size: var(--font_size_large);
		color: var(--color_white);
		text-transform: uppercase;
	}
}

.peoplesbank_highlight {
	background: url("../../../includes/custom-ui/peoplesbank_arena/images-git-lfs/bkg-highlight.png") no-repeat;
	background-size: cover;
	background-position: center center;
}

.peoplesbank_highlight__container {
	max-width: var(--container_width);
	margin: 0 auto;
	align-items: center;
	padding: 2em var(--gutter_width);

	@media screen and (min-width: 768px) {
		display: flex;
		min-height: 523px;
		padding: 1.25em;
		gap: 55px;
	}

	@media screen and (min-width: 769px) {
		width: calc( 100% - var(--gutter_width) * 2 );
		padding: 0;
	}
}

.peoplesbank_highlight__header {
	display: flex;
	padding-left: 30px;
	flex-direction: column;
	justify-content: center;
	border-left: 13px solid var(--peoplesbank_teal);
}

.peoplesbank_highlight__eyebrow {
	margin: 0;
	color: var(--peoplesbank_teal);
	font-family: var(--ff_ultraitalic);
	text-transform: uppercase;
	font-size: var(--font_size_games);
}

.peoplesbank_highlight__title {
	margin: 0;
	line-height: 1 !important;
	color: var(--color_white);
	font-family: var(--ff_ultraitalic) !important;
	font-size: var(--font_size_med) !important;
	text-transform: uppercase !important;

	@media screen and (max-width: 768px) {
		padding-inline: 0 !important;
	}

	@media screen and (max-width: 500px) {
		font-size: min( var(--font_size_med), 9vw ) !important;
	}
}

.peoplesbank_highlight__lead {
	margin-top: 0.5em;
	color: var(--color_white);
	font-family: var(--ff_formabold);
	font-weight: 700;
	font-size: var(--font_size_games) !important;
}

.peoplesbank_highlight__map_container,
.suite_prices_and_details__map_container {
	margin: 0 auto;
	max-width: 343px;
	max-height: 343px;
	padding: 1em;
	border: none;
	border-radius: 87px 33px 104px 33px;
	background: var(--color_white);
	box-shadow: 0px 3px 14px 0px #0000000F;
}

.peoplesbank_highlight__map_container {
	max-width: 385px;
	max-height: none;
	padding: 20px;
	overflow: hidden;

	@media screen and (max-width: 1100px) {
		max-width: 343px;
	}

	@media screen and (max-width: 767px) {
		margin-top: 40px;
	}
}

#hp_partnership_section .post-title {
	margin: 18px 0 15px;
}

#hp_partnership_section .lead {
	color: var(--color_white);
	margin-bottom: 26px;
    font-family: var(--ff_ultra);
	font-weight: 700;
	font-size: var(--font_size_small_titles);
}

#hp_partnership_section .cta_container {
	z-index: 1;
}

/* gallery */
.home #gallery {
	padding-top: 80px;
	padding-bottom: 80px;
	position: relative;
	z-index: 0;

	&:before {
		content: "";
		position: absolute;
		left: 0;
		top: -266px;
		width: 475px;
		max-width: 100%;
		height: 649px;
		background-image: url("../../../includes/custom-ui/peoplesbank_arena/images-git-lfs/circles.svg");
		z-index: -1;
		pointer-events: none;
	}
	&:after {
		content: "";
		position: absolute;
		right: 0;
		bottom: 0;
		width: 666px;
		height: 202px;
		max-height: none;
		visibility: visible;
		background-image: url("../../../includes/custom-ui/peoplesbank_arena/images-git-lfs/bkg-gallery-stripes.png");
		background-repeat: no-repeat;
		z-index: -1;
		pointer-events: none;
	}
}
.home #gallery .lead {
	position: relative;
}
.home #gallery .lead::after {
	content: "";
	display: block;
	position: relative;
	background: url("../../../includes/custom-ui/peoplesbank_arena/images-git-lfs/ny_jets_design_accent_angle_dot_179x71.png") no-repeat;
	background-size: contain;
	top: -38px;
	left: -50px;
	width: 179px;
	height: 71px;
}
.home .galleria-theme-classic {
	z-index: 9;
}

.home #galleria_stage_container {
	margin-top: 2rem !important;
	height: 645px;
	width: 100%;
	max-width: var(--container_width);
	padding: 0;
	border-radius: 18px;
	z-index: 1;
	position: relative;
	overflow: visible;
}

.home #galleria_stage_container .galleria-images {
	border-radius: 18px;
	overflow: hidden;
	z-index: 1;
	border: 1px solid var(--peoplesbank_teal);
	box-shadow: 0px 4px 14px 0px #004B93;
}

.home #galleria_stage_container .galleria-image-nav-left {
	left: -65px !important;
}
.home #galleria_stage_container .galleria-image-nav-right {
	right: -65px !important;
	background: linear-gradient(90deg, #215952 0%, var(--peoplesbank_teal) 100%) !important;

	&::before {
		left: auto;
	    right: 22px;
		transform: translateY(-50%);
	}
	&::after {
		background: linear-gradient(90deg, #47BFAF 0%, #215952 100%);
	}
}

@media screen and (min-width: 769px) and (max-width: 1240px) {
	.suite_lightbox_content #galleria_stage_container,
	.home #galleria_stage_container {
		width: calc(100% - 130px);
		margin-left: auto;
		margin-right: auto;
	}
}

@media screen and (max-width: 768px) {
	.home #galleria_stage_container {
		height: 500px;
		width: calc(100% - 36px);
		margin-left: auto;
		margin-right: auto;
	}
	.suite_lightbox_content #galleria_stage_container .galleria-image-nav-left,
	.home #galleria_stage_container .galleria-image-nav-left {
		left: -27px !important;
	}
	.suite_lightbox_content #galleria_stage_container .galleria-image-nav-right,
	.home #galleria_stage_container .galleria-image-nav-right {
		right: -27px !important;
	}
	.suite_lightbox_content #galleria_stage_container .galleria-image-nav,
	.home #galleria_stage_container .galleria-image-nav {
		height: 48px;
	}
	.suite_lightbox_content #galleria_stage_container .galleria-image-nav-left,
	.suite_lightbox_content #galleria_stage_container .galleria-image-nav-right,
	.home #galleria_stage_container .galleria-image-nav-left,
	.home #galleria_stage_container .galleria-image-nav-right {
		width: 88px;
		height: 48px;

		&::before {
			width: 11px;
			height: 22px;
		}
	}
	.suite_lightbox_content #galleria_stage_container .galleria-image-nav-left::before,
	.home #galleria_stage_container .galleria-image-nav-left::before {
		left: 16px;
	}
	.suite_lightbox_content #galleria_stage_container .galleria-image-nav-right::before,
	.home #galleria_stage_container .galleria-image-nav-right::before {
		right: 16px;
	}
}

@media screen and (max-width: 768px) {
	.suite_lightbox_content #galleria_stage_container,
	.home #galleria_stage_container {
		width: calc(100% - 56px);
	}
	.suite_lightbox_content #galleria_stage_container .galleria-image-nav-left,
	.home #galleria_stage_container .galleria-image-nav-left {
		left: -37px !important;
	}
	.suite_lightbox_content #galleria_stage_container .galleria-image-nav-right,
	.home #galleria_stage_container .galleria-image-nav-right {
		right: -37px !important;
	}
}

@media screen and (max-width: 500px) {
	.home #galleria_stage_container {
		height: 300px;
	}
}

/*
----------------------------------------------------
EVENTS PAGE
----------------------------------------------------
*/

.tiled_event_page .page_title_container {
	z-index: 1;
}

/* toc butons */

.tiled_event_page .toc_container {
	top: 110px;
	margin-top: 35px;
	z-index: 1;
}
.tiled_event_page .toc_container * {
	font-size: var(--font_size_small_text);
}

.tiled_event_page .toc_container span {
	font-family: var(--ff_ultra);
    font-size: 12px;
	font-weight: normal;
	line-height: 18px;
	text-transform: uppercase;
}

.toc_element {
	margin-bottom: 8px !important;
	border: 1px solid var(--color_bg) !important;
	border-radius: 0;
	color: var(--color_bg) !important;
	background: var(--color_white) !important;

	&.highlight {
		border: 1px solid var(--peoplesbank_blue) !important;
		background-color: var(--peoplesbank_blue);
	}
}

.tiled_event_page .toc_element {
	height: 50px;
}

@media screen and (max-width: 1450px) {
	.tiled_event_page .toc_element_container {
		width: 110px;
	}
	.tiled_event_page .toc_element {
		max-width: 110px;
	}
}

/* filter bar */

.tiled_event_page .filter_heading,
.tiled_event_page .num_events_container {
	display: none;
}

.tiled_event_page .filter_container {
	height: fit-content;
	background: none;
	margin-block: 0;
	margin-inline: auto;

	.filter_controls_container {
		width: calc( 100% - var(--gutter_width) * 2 );
		max-width: 960px;
		margin-top: 18px;
		margin-inline: auto;
		text-align: center;
		padding: 0;
	}

	.filter_heading {
		color: #fff;
	}

	&.pinned {
		position: fixed;
		top: 0;
		margin-top: 0;
		padding-top: 10px;

		.filter_performer_option {
			background: var(--color_4);
			font-family: var(--font_family_title) !important;
			font-size: 14px !important;

			&:hover {
				background: #000;
			}

			&.selected {
				background: #000;
				border-bottom-width: 5px;
				border-bottom-color: var(--color_2);
			}
		}
	}
}

.filter_month_option.selected .filter_cancel_button {
	display: none !important;
}

.tiled_event_page .filter_performer_option {
	border: 1px solid currentColor;
}
.tiled_event_page .filter_performer_option.selected {
	border: 1px solid var(--color_white);
}
.tiled_event_page .filter_performer_option.selected .filter_cancel_button {
	top: 50%;
	right: 14px;
	font-size: 20px;
	line-height: 1;
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.tiled_event_page {
		.filter_performer_option {

			padding: 10px 0;

			.filter_performer_name {
				display: none;
			}

			.filter_performer_abbreviation {
				display: block;
				white-space: nowrap;
			}
		}

		.filter_performer_option_container {
			min-width: 115px;
			width: fit-content;
		}
	}
}



/* wrappers */

.tiled_event_page .event_tile_container {
	width: calc( 100% - var(--gutter_width) * 2 );
	max-width: 960px;
	margin: 0 auto;
	padding: 0;
	position: relative;
	z-index: 1;
}

@media screen and (min-width: 1141px) and (max-width: 1620px) {
	.tiled_event_page .event_tile_container {
		padding-left: calc(400px - 24vw);
	}
}
.tiled_event_page .events_for_month_container {
	display: grid;
	grid-auto-rows: auto;
	column-gap: 15px;
	row-gap: 15px;
	margin-bottom: 30px;
	grid-template-columns: repeat(auto-fit, minmax(180px, 255px));
	justify-content: center;

	@media screen and (min-width: 768px) {
		justify-content: initial;
	}
}

/* cards */

.tiled_event_page .event_tile_container .event_tile_element_container {
	width: auto;
	padding: 0;
	margin-right: 0;
}
.tiled_event_page a.event_tile_element {
	min-height: 283px;
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 6px;
	background: none;
	text-decoration: none;
	z-index: 0;
	border: 0 none;
	max-width: 100%;
	text-align: left;
	border: 1px solid var(--peoplesbank_teal);
 	background: linear-gradient(180deg, var(--color_bg) -37.54%, var(--peoplesbank_blue_lighter) 229.26%);
	border-radius: 18px;

	&:hover {
		color: var(--color_black);
		border-color: var(--peoplesbank_teal);
		background: var(--color_black);
		box-shadow: 0px 4px 14px 0px #004B93;

		.event_tile_name {
			border-bottom-color: var(--peoplesbank_gold);
		}

		.event_tile_date * {
			color: var(--color_white);
		}
		.event_tile_name, .event_tile_inventory * {
			color: var(--color_white);
		}
	}
}

.tiled_event_page .event_tile_element > div {
	width: 100%;
	margin: 0;
}
.tiled_event_page .event_tile_element .event_tile_image_container {
	display: block;
	aspect-ratio: 4 / 3;
	width: 100%;
	min-height: 0;
	height: auto;
	margin-block: 0;
	border-radius: 12px;
	overflow: hidden;
}
.tiled_event_page .event_tile_element .event_tile_image_container img {
	width: 100%;
	height: 100%;
	padding: 0;
	object-fit: cover;
}
.tiled_event_page .event_tile_element .event_tile_image_container img[class*="_logo"] {
	padding: 40px;
	object-fit: contain;
}
.tiled_event_page .event_tile_element .event_tile_image_container[style*="background-image"]:not(.single_logo):not(.dual_logo) {
	aspect-ratio: 4 / 3;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.tiled_event_page .event_tile_element .event_tile_name {
	position: relative;
	order: 2;
	padding: 12px 8px 0;
	font-family: var(--ff_ultra);
	font-weight: normal;
	font-size: var(--font_size_games);
	line-height: normal;
	color: var(--color_white);
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-transform: uppercase;
}

.tiled_event_page .event_tile_element .event_tile_inventory {
	order: 3;
	flex: 0 0 auto;
	margin-top: auto;
	min-height: 92px;
	border: 0 none;
	padding: 24px 8px 24px;
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;

	&:before {
		content: "";
		position: absolute;
		top: 12px;
		left: 8px;
		width: 64px;
		border-bottom: 1px solid var(--peoplesbank_teal);
	}
}
.tiled_event_page .event_tile_inventory * {
	font-family: var(--ff_formaregular);
	font-size: var(--font_size_small_text);
	line-height: 21px;
	color: var(--color_white);
}
.tiled_event_page .event_tile_element .event_tile_date {
	order: 1;
	flex: 0 0 auto;
	padding: 8px 8px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.tiled_event_page .event_tile_date * {
	font-family: var(--ff_formaregular);
	font-size: var(--font_size_small_text);
	line-height: 21px;
	color: var(--color_white);
}
.tiled_event_page .icon-power {
	margin-right: 3px;
}

.tiled_event_page .view-suites {
	color: var(--color_white);
	font-style: normal;
	font-weight: 700;
	font-family: var(--ff_ultraitalic);
	font-size: var(--font_size_min);
	line-height: 24px;
}

/* deposit bar. this should have a border and hover style similar to the cards */
.tiled_event_page ul.deposit_list_container {
	padding-top: 50px;
}
/* modify deposit bar spacing */
.tiled_event_page ul.deposit_list_container + ul.deposit_list_container {
	padding-top: 2px;
}
.tiled_event_page .deposit_list_container li.event {
	position: relative;
	background: linear-gradient(180deg, var(--color_bg) -37.54%, var(--peoplesbank_blue_lighter) 229.26%);
	border: 1px solid var(--peoplesbank_teal);
	border-radius: 18px;
	transition: all 0.2s ease;
	z-index: 1;

	&::after {
		content: "";
		position: absolute;
		inset: 0;
		border-radius: inherit;
		background: var(--color_black);
		opacity: 0;
		z-index: -1;
		pointer-events: none;
		transition: opacity 0.2s ease;
	}

	&:hover {
		box-shadow: 0px 4px 14px -4px #004B93;
	}

	&:hover::after {
		opacity: 1;
	}
}
.tiled_event_page .deposit_list_container li.event :not(.icon-power) {
	font-family: var(--ff_ultra);
	color: var(--color_white) !important;
}
.tiled_event_page .deposit_list_container li.event :is(.event-venue, .inv_status_container) {
	font-family: var(--ff_formaregular);
	font-size: var(--font_size_small_text);
	line-height: 21px;
}

.tiled_event_page .deposit_list_container li.event .event_title {
	font-size: var(--font_size_peoplesbank_title);
}

.tiled_event_page .deposit_list_container li.event .event_logo {
	height: 100%;
	padding: 0;
	margin-left: 5px;
	margin-right: 20px;
	padding-left: 10px;
	width: 60px;
	border-color: var(--color_white);
}
.tiled_event_page .deposit_list_container li.event .event_logo.league_logo {
	margin-right: 5px;
	padding-left: 0;
	width: 50px;
}

@media screen and (max-width: 768px) {
	.event_inner_right_container, .deposit_event .event_inner_right_container {
		width: calc(100vw - 170px);
	}
}


/* headings */
.tiled_event_page .event_date_separator {
	display: inline-block;
	font-family: var(--ff_ultraitalic);
	text-transform: uppercase;
	font-size: var(--font_size_peoplesbank_22);
	line-height: 22px;
	margin: 40px 20px 20px;
	padding: 0;
	color: var(--color_bg);

	span {
		font-family: inherit;
	}

	@media (min-width: 768px) {
		margin: 40px 0 20px;
		font-size: var(--font_size_peoplesbank_24);
	}
}


/* premium seating cards grid */

.stadium_guide_container {
	padding-block: 70px;
	border: 0 none;
	background: radial-gradient(circle 600px at 50% 249px, rgba(71, 191, 175, 0.46), rgba(71, 191, 175, 0.41) 20%, rgba(71, 191, 175, 0.29) 40%, rgba(71, 191, 175, 0.12) 65%, rgba(71, 191, 175, 0) 100%), var(--color_bg);
}

#stadium_guide h2.post-subheading {
	margin: 0 0 28px;
	padding: 0;
	font-family: var(--ff_ultraitalic) !important;
	font-size: var(--font_size_med) !important;
	line-height: 1 !important;
	color: var(--color_white);
	text-transform: uppercase;
}
.stadium_guide_container .sd_container  {
	width: calc( 100% - var(--gutter_width) * 2 );
	max-width: var(--container_width);
	margin: 0 auto;
}
.stadium_guide_container section#stadium_guide .grid {
	--gap: 25px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(calc(49% - var(--gap)), 1fr));
	grid-auto-rows: auto;
	grid-gap: var(--gap);
}
.stadium_guide_container section#stadium_guide .col-1_3 {
	margin: 0 !important;
	width: auto !important;
	height: auto;
	padding: 20px 40px 30px 0;
	justify-content: space-around;
	flex-wrap: wrap;
	align-items: center;
	row-gap: 10px;
	border: none;
	color: var(--color_white);
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px;
}

.stadium_guide_container section#stadium_guide .col-1_3:nth-child(odd) {
  border-right: 1px solid var(--peoplesbank_teal);
}

.stadium_guide_container section#stadium_guide .stadium_guide_icon {
	width: 55px;
	margin: 0.25em;
	text-align: left;
	color: var(--peoplesbank_teal);
	font-size: 38px;
	grid-row: 1 / 3;
	align-self: start;

	@media screen and (min-width: 768px) {
		flex-basis: 100%;
		flex-basis: auto;
	}
}
.stadium_guide_container section#stadium_guide .stadium_guide_content {
	width: 100%;
	height: auto;
	margin: 0 0 auto;
	font-size: var(--font_size_small_titles);
	line-height: 24px;
	letter-spacing: 0.8px;
	align-self: flex-start;
	font-family: var(--ff_formaregular);
	-webkit-font-smoothing: antialiased;
}
.stadium_guide_container section#stadium_guide .stadium_guide_heading {
	font-family: var(--ff_ultra);
	font-size: var(--font_size_small_titles);
	line-height: 24px;
	text-align: left;
	color: var(--peoplesbank_teal);
	text-transform: uppercase;

	@media screen and (min-width: 768px) {
		margin-left: 0;
	}
}

@media screen and (max-width: 768px) {
	.stadium_guide_container section#stadium_guide .grid {
		grid-template-columns: repeat(1, 1fr);
		grid-auto-rows: auto;
	}
	.stadium_guide_container section#stadium_guide .col-1_3 {
		padding: 20px 0 !important;
	}
	.stadium_guide_container section#stadium_guide .col-1_3:nth-child(odd) {
		border-right: 0 none;
	}
}


/* seating map */
section#suite_prices_and_details {
	margin-top: 28px;
	padding: 42px var(--gutter_width);

	.cui_small_container {
		min-width: 0;
	}

	@media screen and (min-width: 769px) {
		padding: 70px var(--gutter_width);

		.cui_small_container {
			padding-inline: 0;
            display: flex;
			align-items: flex-start;
		}
	}

	.peoplesbank-title {
		font-size: var(--font_size_large);
	}

	@media screen and (max-width: 500px) {
		padding-right: var(--gutter_width) !important;
	}
}

.suite_prices_and_details__content {
	display: flex;
    flex-direction: column;
	margin-bottom: 14px;
    padding-left: 30px;
    border-left: 13px solid var(--peoplesbank_teal);

	@media screen and (min-width: 769px) {
		padding-right: 54px;
	}
}

.suite_prices_and_details__title {
	width: auto;
	margin: 0;
	padding: 0;
	text-align: left;
	color: var(--color_bg);
	font-family: var(--ff_ultraitalic);
	font-size: var(--font_size_games);
	text-transform: uppercase;
}

.suite_prices_and_details__headings {
	margin: 16px 0 0;
	font-family: var(--ff_ultra);
	font-size: var(--font_size_peoplesbank_24);
	line-height: normal;
	color: var(--peoplesbank_teal);
	text-transform: uppercase;
}

.suite_prices_and_details__text {
	margin: 8px 0 0;
	font-size: var(--font_size_small_titles);
	line-height: 24px;
	color: var(--color_black);
	font-family: var(--ff_formaregular);
}

#suite_prices_and_details .peoplesbank_btn {
	margin-top: 16px;
	width: 197px;
	min-width: 197px;
	padding: 17px 0;
	font-family: var(--ff_ultra);
	font-size: var(--font_size_small_text);
}

.suite_prices_and_details__map_container {
	max-width: min( 343px, 100% );

	@media screen and (max-width: 768px) {
		max-width: 100%;
		max-height: none;
	}
}

.suite_prices_and_details__map {
	display: block;
	width: 70%;
	margin: 34px auto 38px;
	cursor: pointer;

	@media screen and (max-width: 768px) {
		width: 100%;
	}
}

/*
----------------------------------------------------
EDP
----------------------------------------------------
*/

#edp_header {
	top: 75px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-family: var(--ff_ultra);
	background-image: url("../../../includes/custom-ui/peoplesbank_arena/images-git-lfs/bkg-single.jpg");
	background-repeat: no-repeat;
    background-size: cover;
	background: linear-gradient(80.22deg, #47BFAF 19.55%, #01539B 120.25%);

	@media screen and (min-width: 768px) {
		height: 79px;
	}
}

#edp_header .cui_small_container {
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 768px) {
    #edp_header .back_btn {
        margin-left: -20px;
    }
}

#edp_header * {
	color: var(--color_white);
}
#edp_header .edp_header_content {
	margin: 0;
	font-family: var(--ff_ultra);
	font-size: var(--font_size_small_titles);
	text-transform: uppercase;
}
#edp_header .event_logo {
	border-left-color: var(--color_white);
}

#edp_header
	:is(.event_date, .event_logo, .event_name) {
		max-width: none;
		font-family: var(--ff_ultra);
		font-size: var(--font_size_small_titles);
		font-weight: normal;
	}


/* event hover cards with map */
#edp_container {
	padding-top: 60px;
	width: calc( 100% - var(--gutter_width) * 2 );
	max-width: var(--container_width);
	margin: 100px auto 10px;
	display: flex;
	flex-direction: row-reverse;
}
#edp_container:not(.listing_details) .content_left {
	margin: 0;
	padding: 1em;
	flex: 1 1 auto;

	@media screen and (min-width: 768px) {
		padding: 0;
		min-width: 530px;
		order: 2;
	}
}
#edp_container:not(.listing_details) .content_right {
	margin: 0;
	width: auto;
	padding: 0 1em;
	overflow: unset;
	flex: 1;

	@media screen and (min-width: 768px) {
		padding: 0;
		margin-right: 18px;
		flex: 0 1 388px;
		min-width: 0;
	}
}
#edp_container .event_inventory_status * {
	font-size: var(--font_size_small_text);
	line-height: 21px;
	color: var(--color_black);
	font-family: var(--ff_formaregular);
}
#edp_container .content_right .map_container {
	position: relative;
	display: flex;
	max-width: 276px;
	max-height: 314px;
	margin: 46px 14% 52px;
	background: transparent;
	background: var(--white);;
	border: none;
	border-radius: 0;
	width: auto;
	overflow: visible;
	z-index: 0;

	&::before {
		content: "";
		position: absolute;
		inset: -46px -19.4% -52px;
		border: 1px solid var(--peoplesbank_teal);
		border-radius: 18px;
		background: var(--color_white);
		box-shadow: 0px 3px 14px 0px #0000000F;
		z-index: -1;
		pointer-events: none;
	}
	@media screen and (max-width: 767px) {
		max-width: calc( 100% - var(--gutter_width) * 2 );
		max-height: none;
		margin: var(--gutter_width);
		margin-left: var(--gutter_width) !important;

		&::before {
			inset: calc( var(--gutter_width) * -1 );
		}
	}

	@media screen and (min-width: 768px) {
		position: sticky;
	}
}
#edp_container .content_right .map_container #suite_map_background { /* <img element> */
	border-radius: 0;
	border: none;
	box-shadow: none;
}
#edp_container .ll_container {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	align-content: start;
	align-items: start;
	gap: 16px;
	padding: 16px;
	width: auto;
	min-width: min( 260px, 100% - 138px );
	flex: 1;
}

#edp_container .listing_list_row {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 705px;
	min-height: 0;
	margin-bottom: 12px;
	gap: 8px;
	border: 1px solid var(--peoplesbank_teal);
	border-radius: 18px;
	padding: 6px;
	height: auto;
	font-family: var(--ff_ultra);
	font-size: var(--font_size_min);
	line-height: 24px;
	color: var(--color_white);
	background: linear-gradient(180deg, var(--color_bg) 37.54%, var(--peoplesbank_blue_lighter) 229.26%);
	z-index: 0;

	@media screen and (min-width: 500px) {
		width: 100%;
		flex-direction: row;
	}

	&::after {
		content: "";
		position: absolute;
		inset: 0;
		height: auto;
		max-height: none;
		visibility: visible;
		border-radius: inherit;
		background: var(--color_black);
		opacity: 0;
		z-index: -1;
		pointer-events: none;
		transition: opacity 0.2s ease;
	}
	&:hover {
		box-shadow: 0px 4px 14px 0px #004B93;
	}
	&:hover::after {
		opacity: 1;
	}
	&:hover *, &:hover [class^="icon-"] {
		color: var(--color_white);
	}
}

#edp_container .ll_suite_info {
	grid-column: 1 / -1;
	margin-top: 0;
	font-family: var(--ff_formaregular);
	font-size: var(--font_size_small_text);
	line-height: 21px;
	color: var(--color_white);
}
#edp_container .listing_list_row :is(.ll_price, .ll_suite_type) {
	margin-block: 0;
	font-family: var(--ff_ultra);
	font-size: var(--font_size_games);
	font-weight: normal;
	line-height: normal;
	color: inherit;
	text-transform: uppercase;
}
#edp_container .listing_list_row .ll_suite_type {
	grid-column: 1;
	width: auto;
}

#edp_container .listing_list_row :is(.ll_price) {
	position: relative !important;
	display: flex;
	grid-column: 2;
	top: initial;
	right: initial;
	gap: 8px;
	justify-content: flex-end;
	align-items: center;
	white-space: nowrap;
	font-style: normal !important;
	text-align: right !important;

	.ll_instant {
		width: auto;
	}
}

@media screen and (min-width: 769px) {
	#edp_container .map_container {
		position: sticky;
		top: 20px;
	}
}
#edp_container {
	padding-top: 30px !important;
	flex-direction: column;

	@media screen and (max-width: 767px) {
		margin-bottom: 40px;
	}

	@media screen and (min-width: 768px) {
		flex-direction: row;
	}

	@media screen and (min-width: 1118px) {
		width: 1118px;
	}
}
@media screen and (min-width: 769px) and (max-width: 960px) {
	#edp_container .ll_thumbnail, #edp_container .ll_container {
		width: 100% !important;
	}
	.listing_list_container {
		width: auto;
	}
	.listing_list_row {
		height: auto !important;
	}
}

#browse_other_events {display: none;}


/* edp popup details w instant book */













/*
----------------------------------------------------
LDP
----------------------------------------------------
*/

#edp_container.listing_details {
	max-width: 100%;
	min-width: 0;
	display: block;
	padding: 0 !important;
}

#edp_container.listing_details .listing_list_row_details .details_top_container {
	padding-top: 0 !important;
	margin-top: 0 !important;
}
#edp_container.listing_details .listing_list_row_details {
	padding: 0;
	margin-top: 0 !important;
}
#edp_container.listing_details .cta_container {
	width: 100%;
	padding-bottom: 30px;
	margin-bottom: 52px;
	border-color: var(--peoplesbank_legacy_green);
	border-color: rgba(16, 87, 63, 0.2);
}

#edp_container.listing_details .ldp_hero_container .hero_image {
	cursor: pointer;
}

#edp_container.listing_details a.show_all_photos {
	padding: 10px 0;
	width: 236px;
	font-size: 11px;
	font-family: var(--ff_extrabold);
	color: var(--color_black);
	background: none;
	border: 0 none;
}
#edp_container.listing_details a.show_all_photos::before {
	border-color: rgba(255,255,255,0.3);
}

#edp_container.listing_details .white_container_gray_border {
	background: var(--color_3);
	padding: 45px 46px 88px 78px;
	width: calc( 100% - var(--gutter_width) * 2 );
	max-width: var(--container_width);
	border: 1px solid var(--peoplesbank_teal);
	border-radius: 30px;
	box-shadow: 0px 2px 5px 0px #0000001F;
	position: relative;
	z-index: 1;
}

#edp_container.listing_details :is(
    .subheading,
    h2.secondary_header,
    .ll_suite_type,
    .ll_price
),
#contact_us_form h3,
.faq_question div,
.suite_info_container h4 {
	font-family: var(--ff_ultra);
	font-size: var(--font_size_peoplesbank_22);
	line-height: 1;
	color: var(--color_black);
	position: relative;
    text-transform: none;
}

#edp_container.listing_details :is(.ll_suite_type,.ll_price) {
	font-family: var(--ff_ultraitalic) !important;
	font-size: var(--font_size_peoplesbank_32) !important;
	line-height: 29px;
	text-transform: uppercase !important;
}

#contact_us_form h3 {
	margin-top: 0;
	font-size: var(--font_size_peoplesbank_22);
}

.faq_question div {
	text-transform: none;
}

#edp_container.listing_details :is(h2.secondary_header, .subheading) {
	font-family: var(--ff_ultra);
	font-size: var(--font_size_games);
	line-height: normal;
	color: var(--color_black);
	position: relative;
	text-transform: uppercase;
}

.faq_question div {
	font-size: var(--font_size_min);
}

#edp_container.listing_details :is(
    .listing_faq_answer,
    .listing_tips_tip,
    .listing_tips_text,
    .text_container
),
#contact_us_form p,
.faq_answer p,
.suite_lightbox_content .suite_info_container p,
.lightbox_close_link {
	font-size: var(--font_size_small_titles);
	font-family: var(--ff_regular);
	line-height: 24px;
	font-weight: 400;
	color: var(--color_black);
	border: 0 none;
}

#edp_container.listing_details :is(
    .listing_faq_answer,
    .listing_tips_tip,
    .listing_tips_text,
    .text_container
) {
	font-family: var(--ff_formaregular);
}

@media screen and (min-width: 769px) {
	#edp_container.listing_details .secondary_container {
		display: flex;
		gap: 49px;
	}
	#edp_container.listing_details .secondary_container :is(.content_left, .content_right) {
		flex: 1;
		width: auto;
		padding-left: 0;
	}
}

/* instant book */

#edp_container.listing_details .content_right {
	padding-left: 20px;
}

#edp_container.listing_details .white_container_gray_border > .cta_container .content_right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
#edp_container.listing_details .ll_price {
	display: flex;
	justify-content: flex-end;
}
#edp_container.listing_details a.blue-2.catering_menu_button {
	display: block;
	width: auto;
	height: auto;
	padding: 0.5em 1em;
	border: 1px solid var(--peoplesbank_gold);
	border-radius: 0;
	font-size: 12px;
	line-height: 1;
	text-transform: uppercase;
	font-family: var(--ff_ultra);
	font-weight: 900;
	text-align: center;
	color: var(--peoplesbank_gold);
	background-color: var(--color_white);
	transition: all 0.2s ease;

	&:hover {
		background-color: var(--peoplesbank_gold);
		color: var(--color_white) !important;
		text-decoration: none;
	}

	&:active {
		border-color: var(--peoplesbank_gold);
		background-color: var(--peoplesbank_gold);
	}
}
#edp_container.listing_details .listing_tips_text {
	width: auto;
	padding: 0;
}
#edp_container.listing_details :is(.cta_phone_container) {
	width: min( 370px, 32vw);
	text-align: right;
}
#edp_container.listing_details a.blue-2.catering_menu_button::before {
	background: #fff;
	border: 1px solid var(--color_1);
}
#edp_container.listing_details a.blue-2.catering_menu_button:hover {
	color: #fff;
}
#edp_container.listing_details a.blue-2.catering_menu_button:hover::before {
	background: var(--color_1);
}


/* faq */

#edp_container.listing_details .listing_faq .subheading {
	margin: 0 0 32px;}
#edp_container.listing_details .listing_faq .subheading::after {
	content: "";
	display: block;
	height: 1px;
	width: 100%;
	background: var(--peoplesbank_legacy_green);
	background: rgba(16, 87, 63, 0.2);
	margin-top: 0.25em;
}
#edp_container.listing_details .listing_faq_question {
	margin: 0 0 5px;
	font-weight: 700;
	color: var(--color_black);
	font-family: var(--ff_ultra);
    font-size: var(--font_size_small_titles);
    line-height: 22px;
    position: relative;
}

.listing_list_row_details .listing_faq_answer p {
	font-size: var(--font_size_small_titles);
    font-family: var(--ff_formaregular);
    line-height: 24px;
    font-weight: 400;
    color: var(--color_black);
    border: 0 none;
	letter-spacing: 0 ;
}
	

@media screen and (max-width: 768px) {
	#edp_container.listing_details .white_container_gray_border {
		padding: 30px 20px;
	}
	#edp_container.listing_details :is(
        .content_left,
        .content_right,
        .ll_price
    ) {
		float: none;
		width: 100%;
		padding-left: 0;
		display: block !important;
	}
	#edp_container.listing_details :is(a.instant_book_btn, .cta_phone_container) {
		width: 100%;
	}
	#edp_container.listing_details :is(.cta_phone_container) {
		text-align: left;
	}
}







/*
----------------------------------------------------
WAITLIST PAGE
----------------------------------------------------
*/

#edp_container.no-listings {
	display: block;

	a.browse_other_events {
		width: auto;
		max-width: 100%;
		height: auto;
		padding: 17px 28px;
		border: 1px solid var(--color_white);
		background: rgba(0, 0, 0, 0.5);
		color: var(--color_white);
		font-family: var(--ff_formabold);
		font-weight: normal;
		font-size: var(--font_size_small_text);
		letter-spacing: var(--letter_spacing);
		cursor: pointer;

		&::after {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			border-radius: inherit;
			background: rgba(71, 191, 175, 0.4);
			opacity: 0;
			z-index: -1;
			pointer-events: none;
			transition: opacity 0.2s ease;
		}

		&:hover::after {
			opacity: 1;
		}
	}
	.listing_ca_text {
		font-family: var(--ff_ultra);
		font-weight: normal;
		color: var(--color_bg);
	}
	:is(.listing_catch_all_container, .linked_deposit_container, .waitlist_container) {
		position: relative;
		z-index: 1;
		border-radius: 18px;
		background: var(--color_white);
	}
	:is(.linked_deposit_container, .waitlist_container) p, #waitlist_form_text {
		font-family: var(--ff_formaregular);
		font-size: var(--font_size_min);
		letter-spacing: var(--letter_spacing);
		color: var(--color_black);
	}
	:is(.linked_deposit_container, .waitlist_container) p:is(.linked_deposit_heading, .waitlist_heading) {
		font-family: var(--ff_ultra);
		font-weight: normal;
		font-size: var(--font_size_small_titles);
		color: var(--color_bg);
	}
	:is(.linked_deposit_cta, .waitlist_cta) a {
		border-radius: var(--btn_radius);
		font-family: var(--ff_formabold);
		font-weight: normal;
		font-size: var(--font_size_small_text);
		letter-spacing: var(--letter_spacing);
		text-transform: uppercase;
	}
	.linked_deposit_cta a {
		color: var(--color_white);
		border-color: var(--color_bg);
		background: var(--color_bg);
	}
	.waitlist_cta a {
		color: var(--color_bg);
		border-color: currentColor;
		background: transparent;
	}

	@media screen and (max-width: 500px) {
		#edp_inner_container {
			padding: 0;
		}
	}
}

/*
----------------------------------------------------
CUSTOM PAGE - DEFAULT
----------------------------------------------------
*/






/*
----------------------------------------------------
EXPLORE SUITES PAGE
EXPLORE TICKETS PAGE
----------------------------------------------------
*/
.contact #non-header,
.events.event-detail #non-header,
.events.listing-detail #non-header,
.faq #non-header {
	background-image: none;
}

.suites #non-header::after {
	z-index: -1;
}

/* Suite amenities widget icons */
#amenities {
	width: 100%;
	padding: 40px 0;
	margin: auto auto 4rem;
	border-top: 1px solid var(--color_white);
	background: radial-gradient(circle 720px at 50% 315px, rgba(71, 191, 175, 0.6), rgba(71, 191, 175, 0.2) 50%, rgba(71, 191, 175, 0) 85%), var(--color_bg);

	.peoplesbank-title {
		margin: 0 auto 1em;
		max-width: 1065px;
	}

	@media screen and (max-width: 768px) {
		padding: 24px 0;
	}
}

.suite_amenities_element {
	position: relative;
	width: auto;
	justify-self: start;
	align-self: center;
	padding: 9px 14px;
	transition: all 0.2s ease;
	outline: 0 solid transparent;
	border-radius: 50px;
	z-index: 0;

	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: -8px;
		width: calc( 100% + 16px );
		height: 100%;
		border-radius: inherit;
		background: var(--peoplesbank_teal);
		opacity: 0;
		z-index: -1;
		pointer-events: none;
		transition: opacity 0.2s ease;
	}

	&.selected::before {
		opacity: 1;
	}
}
.suite_amenities_element:not(.selected):hover * {
	color: var(--peoplesbank_teal);
}
.suite_amenities_element.selected .sa_icon {
	color: var(--color_white);
}
.suite_amenities_element.selected .sa_text {
	color: var(--color_white);
	font-family: var(--ff_ultra) !important;
}

.sa_detail_content {
	font-size: 16px;
	font-family: var(--ff_formaregular);
	font-weight: 400;
	line-height: 24px;
}

.suite_amenities_element * {
	color: var(--color_3);
	transition: all 0.2s ease;
}
.suite_amenities_element .sa_icon {
	width: 36px;
	margin: 0 8px 0 0;
	text-align: center;
}
.suite_amenities_element i {
	background: none;
	width: auto;
	height: auto;
	padding: 0;
}

.suite_amenities_inner {
	display: grid;
	margin: 0 auto;
	width: calc( 100% - var(--gutter_width) * 2 - 16px );
	max-width: 1065px;
	grid-template-columns: repeat(1, auto);
	grid-auto-rows: 1fr;
	justify-content: center;

	@media screen and (min-width: 769px) {
		width: calc( 100% - var(--gutter_width) * 2 );
		grid-template-columns: repeat(2, auto);
		justify-content: space-around;
	}

	@media screen and (min-width: 1241px) {
		grid-template-columns: repeat(4, auto);
		column-gap: 5px;
		justify-content: space-between;
	}
}

.suite_amenities_element_inner {
	display: flex;
	align-items: center;
	justify-content: center;
}

.suite_amenities_element_inner .sa_text {
	font-family: var(--ff_ultra);
	font-weight: 400;
	font-size: var(--font_size_amenities);
	line-height: 24px;
	text-align: left;
	text-transform: uppercase;

	@media screen and (min-width: 769px) {
		white-space: nowrap;
	}
}

/* Suite amenities drawer */
#amenities_container .suite_amenities_detail {
	padding: 0;
	border: 0;
}

#amenities_container .sa_elt {
	margin: 0 auto;
	padding: 24px 0 0;
	width: calc( 100% - var(--gutter_width) * 2 );
	max-width: 1065px !important;
	color: var(--color_white);
	font-family: var(--ff_regular);
	font-weight: 400;
	font-size: var(--font_size_min);
}

/* Suite cards */

#suite_types {
	margin-bottom: 80px;
}
#suite_types .cards_container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: 1fr;
	gap: 10px 18px;
	margin: 0 1em;
}

#suite_types .suite_container {
	display: flex;
	overflow: hidden;
	margin: 0;
	padding: 6px;
	background: linear-gradient(180deg, var(--color_bg) 37.54%, var(--peoplesbank_blue_lighter) 229.26%);
	flex-direction: column;
	border-radius: 18px;
	border: 1px solid var(--peoplesbank_teal);
}

#suite_types .img_content {
	height: auto;
	max-height: 313px;
	margin-bottom: 0;
	border-radius: 12px 12px 3px 3px;
	aspect-ratio: 16 / 10;
}
#suite_types .text_content {
	padding: 24px 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
#suite_types .text_content h4 {
	margin: 0 0 10px;
	font-family: var(--ff_ultra);
	font-weight: normal;
	font-size: var(--font_size_peoplesbank_24);
	line-height: normal;
	color: var(--color_white);
	text-transform: uppercase;
}
#suite_types .suite_info {
	margin-bottom: 24px;
}
#suite_types .suite_info_subcontainer {
	margin-block: 4px;
}
#suite_types .suite_info .suite_info_icon {
	color: var(--color_white);
	margin-right: 12px;
	font-size: 12px;
	line-height: 22px;

	[class^="icon-"] {
		top: -1px;
	}
}
#suite_types .suite_container_cta {
	margin-top: auto;
}
#suite_types .suite_container_cta a {
	padding: 12px 30px;
}
#suite_types .suite_info_content {
	margin-left: 28px;
	font-family: var(--ff_formaregular);
	font-size: var(--font_size_small_titles);
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: var(--letter_spacing);
	color: var(--color_white);
}

@media screen and (max-width: 768px) {
	#suite_types .cards_container {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* Suite map */

.suite_map {
	padding-top: 50px;
}
.suite_map .lead {
	margin-bottom: 64px;
}
.suite_map .map_container {
	position: relative;
}

.suite_map .map_container img {
	margin-top: 2rem;
	width: 100%;
	height: auto;
	background: var(--color_white);
	position: relative;
	z-index: 9;
	border: 1px solid var(--peoplesbank_gold);
}







/*
----------------------------------------------------
SUITE OWNERSHIP PAGE
----------------------------------------------------
*/

#ownership_contact_section {
	margin: 30px 0;
}
.ownership .ownership_contact_container  {
	border-radius: 0 60px;
	border: 1px solid #d9d9d9;
	background: var(--color_3);
}

.ownership .ownership_content_container .ownership_content {
	background: var(--color_1);
	color: var(--color_3);
}
.ownership .ownership_content_container .ownership_heading {
	margin: 0;
	padding: 20px;
	display: flex;
	justify-content: space-between;
}
.ownership .ownership_content_container i[class*="icon-"] {
	color: var(--color_3);
	margin-left: auto;
}
.ownership .ownership_content .galleria_container .grid:nth-child(2) {
	padding: 0 20px;
}
.ownership .ownership_content .galleria_container li {
	font-size: var(--font_size_min);
}

.ownership #ownership_video {
	position: relative;
	z-index: 1;
	margin: 10px 0;
}
.ownership #ownership_video iframe {
	display: initial;
	width: var(--container_width);
	max-width: 100%;
	height: 100%;
	aspect-ratio: 16/9;
}




/*
----------------------------------------------------
FAQ PAGE
----------------------------------------------------
*/
section#faq_section,
#make_a_request_page {
    padding-top: 4em;
}

.faq h2.faq_section_title {
	position: relative;
	z-index: 1;
    margin: 0;
	padding: 0 20px;
    width: calc(100% - var(--gutter_width) * 2);
    max-width: var(--container_width);
    line-height: 1em;
    text-shadow: none;
    font-family: var(--ff_ultra);
    font-weight: normal;
    font-size: var(--font_size_peoplesbank_24);
    color: var(--color_bg);

	@media screen and (min-width: 768px) {
		padding: 0;
	}
}

.faq .faq_item {
	position: relative;
	border-radius: 18px;
	border: 1px solid var(--peoplesbank_teal);
	background: linear-gradient(180deg, var(--color_bg) -37.54%, var(--peoplesbank_blue_lighter) 229.26%);
	transition: all 0.2s ease;
	z-index: 1;

	&::after {
		content: "";
		position: absolute;
		inset: 0;
		border-radius: inherit;
		background: var(--color_black);
		opacity: 0;
		z-index: -1;
		pointer-events: none;
		transition: opacity 0.2s ease;
	}

	&:hover {
		box-shadow: 0px 4px 14px -4px #004B93;
	}

	&:hover::after {
		opacity: 1;
	}
}
.faq h3.faq_question {
	font-family: var(--ff_ultra);
	font_size: var(--font_size_btn);
	line-height: 26px;
	text-transform: initial;
	font-weight: normal;
	color: var(--color_white);
}
.faq .faq_answer {
	font-size: var(--font_size_min);
	line-height: 24px;
	letter-spacing: 0.8px;
	color: var(--color_white);
}
.faq :is(.faq_question div, .faq_question i, .faq_answer p) {
	color: var(--color_white);
}

.faq #contact_us {
	min-height: 400px;
	margin-top: 0;
}
.faq #contact_us .cta_container {
	min-height: auto;
}




/*
----------------------------------------------------
CONTACT PAGE
Includes inline contact form
----------------------------------------------------
*/


.contact .white_container_gray_border {
	position: relative;
	z-index: 1;
	padding: 30px;
	border-radius: 18px;
	border: 1px solid var(--peoplesbank_teal);
	background: linear-gradient(180deg, var(--color_bg) -37.54%, var(--peoplesbank_blue_lighter) 229.26%);
	color: var(--color_white);
}
.contact #contact_us_form .content_left .white_container_gray_border {
	padding: 30px 50px;
}
.contact #contact_us_form :is(h3, p) {
	color: var(--color_white);
}






/*
----------------------------------------------------
CHECKOUT
----------------------------------------------------
*/

.page-template-seg_checkout_px #non-header::after {
	display: none;
}

.new_checkout .nco_header {
	padding: 15px;
	background: var(--peoplesbank_teal);
	background-repeat: no-repeat;
    background-size: cover;
}
.new_checkout .post-title {
	color: var(--color_3);
	font-family: var(--ff_ultra) !important;
	font-size: 40px !important;
	line-height: 1.2;
	text-transform: uppercase;
	margin-bottom: 0;
}

.new_checkout .nco_content_right :is(
    .order_summary_container,
    .map_container,
    .contact_us_container
) {
	border: 1px solid #d9d9d9;
}
.new_checkout .contact_us_container :not(.heading) {
	font-size: 14px;
}

body:is(
	.page-template-seg_checkout_px,
	.page-template-seg_checkout_success_pp,
	.page-template-seg_purchase_receipt_pp,
	.page-template-seg_checkout_invoice_pp,
	.page-template-seg_purchase_agreement
) {
	a:not([class]) {
		color: var(--peoplesbank_teal);
	}

	.contact_us_container a:not([class]),
	a[href^="mailto:"]:not([class]),
	a[href^="tel:"]:not([class]) {
		color: inherit;
	}
}

.page-template-seg_checkout_success_pp .nco_content_right > h2.post-subheading {
	color: var(--color_white);
}

/*
----------------------------------------------------
PURCHASE AGREEMENT, INVOICE
----------------------------------------------------
*/

.page-template-seg_checkout_success_pp .nco_content_left :is(p, li, a:not([class])) {
	font-size: 17px;
}

.purchase-agreement h1.post-title,
.invoice h1.post-title {
	font-family: var(--ff_ultra) !important;
	line-height: 1.2;
	padding-inline: var(--gutter_width);
	color: var(--peoplesbank_teal);
}

body:is(.privacy, .terms-of-service) h1.post-title {
	padding-inline: var(--gutter_width);
}

.purchase-agreement h2.post-subheading,
.invoice h2.post-subheading {
	font-size: var(--font_size_subtitles);
	font-weight: normal;
	text-transform: uppercase;
}

.invoice #print_co_btn {
	max-width: 100%;
	color: var(--color_bg);
	border: 1px solid currentColor;
	background: transparent;
}

.purchase-agreement a.print_btn.blue.button.hollow {
	height: auto;
	margin-top: 10px;
	padding: 10px 22px;
	color: var(--color_white);
	border: 1px solid currentColor;
	background: transparent;

	&::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border-radius: inherit;
		background: rgba(71, 191, 175, 0.4);
		opacity: 0;
		z-index: -1;
		pointer-events: none;
		transition: opacity 0.2s ease;
	}
	&:hover {
		color: var(--color_white);
		border-color: currentColor;
		background: transparent;
	}
	&:hover::after {
		opacity: 1;
	}

	@media screen and (max-width: 768px) {
		margin-top: 18px !important;
	}
	@media screen and (max-width: 500px) {
		margin-top: 23px !important;
		padding: 8px 14px;
		font-size: var(--font_size_small_text);
	}
}

.purchase-agreement #purchase_agreement button.blue,
.invoice #purchase_agreement button.blue {
	min-width: 0;
	width: auto;
	max-width: max-content;
	height: 53px;
	padding: 0 36px;
	font-size: var(--font_size_small_titles);
}

.purchase-agreement :is(.order_summary, #purchase_agreement),
.invoice :is(.order_summary, #purchase_agreement),
.purchase-agreement :is(.order_summary, #purchase_agreement) :is(div, p, li, span, em, label),
.invoice :is(.order_summary, #purchase_agreement) :is(div, p, li, span, em, label) {
	font-family: var(--ff_formaregular);
	line-height: 1.5;
}

.purchase-agreement :is(.order_summary, #purchase_agreement) :is(strong, b, .order_summary_heading),
.invoice :is(.order_summary, #purchase_agreement) :is(strong, b, .order_summary_heading) {
	font-family: var(--ff_formabold);
}

.purchase-agreement #accept_terms_signature,
.invoice #accept_terms_signature {
	font-family: var(--ff_formaregular);
}

/*
----------------------------------------------------
TERMS OF SERVICE, PRIVACY POLICY
----------------------------------------------------
*/

body:is(.privacy, .terms-of-service) {
	.post-title {
		padding-top: 40px;
		padding-bottom: 20px;
		font-family: var(--ff_ultra) !important;
		font-weight: normal;
		color: var(--peoplesbank_teal);
	}
	h2.post-subheading {
		font-family: var(--ff_formabold) !important;
		font-size: var(--font_size_small_titles);
		font-weight: normal;
		letter-spacing: var(--letter_spacing);
		line-height: 1.2;
	}
	.post-entry {
		position: relative;
		z-index: 1;
		font-family: var(--ff_formaregular);
		letter-spacing: var(--letter_spacing);

		* {
			font-family: inherit;
		}
		:is(p, li) {
			font-size: var(--font_size_min);
			line-height: 24px;
		}
		:is(h3, h4, strong, b) {
			font-family: var(--ff_formabold);
			font-weight: normal;
		}
		:is(h3, h4) {
			font-size: 18px;
			line-height: 1.2;
		}
		h4 {
			font-size: var(--font_size_small_titles);
		}
	}
}

body.privacy-policy .post-entry {
	position: relative;
	z-index: 1;
}


/*
----------------------------------------------------
MISC
----------------------------------------------------
*/





/*
----------------------------------------------------
PROMO BANNER
----------------------------------------------------
*/


.purchase-agreement h1.post-title, .invoice h1.post-title {
	text-align: left !important;
}

.instant_book_icon {
    display: inline-block;
    padding: 0;
	width: 1em;
	height: 20px;
	background-image: url("../../../includes/custom-ui/peoplesbank_arena/images-git-lfs/icon-flash.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;

	&::before {
		content: none;

	}
	.icon-power {
		display: none;
	}
}

.listing_list_row .suite_info_content {
    font-size: var(--font_size_small_text);
    line-height: 21px;
    color: var(--color_white);
    font-family: var(--ff_formaregular);
    margin-left: 30px;
}

#edp_container .ll_suite_info .suite_info_icon {
	margin-right: 12px;
}

#edp_container .ll_suite_info [class^="icon-"],
#edp_container .ll_suite_info [class*=" icon-"] {
	color: var(--color_white);
	font-size: 1em;
}

@media screen and (min-width: 1400px) {
    #edp_container, #edp_header .cui_small_container {
        width: 1069px;
    }
}

#edp_container .listing_list_row_details .cta_phone_container .cta_phone_heading,
#edp_container .listing_list_row_details .cta_phone_container .cta_phone {
	padding: 0.66em;
    font-family: var(--ff_regular);
    font-size: var(--font_size_small_titles) !important;
    font-weight: 400;
    color: var(--color_black);
}

.loading_center {
	font-family: var(--ff_ultra);
	font-size: var(--font_size_games);
	line-height: 22px;
	color: var(--color_white);
}

.share_container {
	margin-top: 0;
    max-width: var(--container_width);
    width: calc(100% - var(--gutter_width) * 2);
}

/*  template_1_styles.css */
#suite_lightbox, .hotel_lightbox {
	background: linear-gradient(180deg, var(--color_bg) 37.54%, var(--peoplesbank_blue_lighter) 229.26%);
}

.order_summary_area .post-subheading, .location_container .post-subheading, .location_container p {
    color: white;
}

.suite_lightbox_header .lightbox_close {
	color: var(--color_white);
}

.listing_list_container {
	width: 100%;
}

#edp_header .back_btn {
	position: static;
	float: none;
	margin: 0;
	padding: 0 7px 0 0;

	span {
		display: none;
	}
}

h2.post-subheading, #catch_all h2 {
	font-family: var(--ff_ultra) !important;
	text-transform: none;
	font-size: 24px;
}
/**/

/* galleria.classic.css */
.galleria-theme-classic .galleria-image-nav-right {
	background-position: -264px 46px;
}

.tooltip_underline {
	font-family: var(--ff_regular);
}

.new_checkout #btn_submit {
	height: auto;

	span {
		/*font-family: var(--ff_extrabold) !important;*/
	}
}

.faq_section {
    margin-bottom: 2em;
}

/* template_1_styles.css OVERRIDES */
.order .cui_header_container ul {
	margin: 0;
}

.listing_list_row_details .cta_btn_container a.button, .cta_bar .cta_btn_container a.button {
	font-size: 22px;
}

.suite_lightbox_content .suite_details_container .cui_small_container {
	border: none;
}

.tiled_event_page {
	background-color: var(--color_white);
}

body #edp_container .listing_list_row .ll_thumbnail {
	width: 245px;
	min-height: 0;
	height: auto;
	aspect-ratio: 16 / 9;
	border-radius: 12px;
}

.sold_out_headline {
	margin-top: 0 !important;
	padding-bottom: 0 !important;
}

.sold_out_heading {
	color: var(--color_black);
	font-family: var(--ff_extrabold);
	font-size: var(--font_size_peoplesbank_24);
	line-height: 1em;
	text-transform: uppercase;
}
body.landing #non-header .page_title_container h2 { color: #fff; }
body.landing #non-header .page_title_container p { color: #fff; }

.suites_avail_container {
	margin-right: 1em;
}

.peoplesbank_emphasis {
	font-family: inherit;
	color: var(--peoplesbank_teal);
}

.slick-arrow {
	width: 117px;
	height: 63px;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 70px;
	opacity: 0.9;
	background: linear-gradient(270deg, #215952 0%, var(--peoplesbank_teal) 100%);

	i {
		display: none;
	}

	&::before {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 22px;
		width: 15px;
		height: 30px;
		background-image: url("../../../includes/custom-ui/peoplesbank_arena/images-git-lfs/icon-chevron.svg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
		transform: translateY(-50%) scaleX(-1);
	}

	&::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border-radius: inherit;
		background: linear-gradient(270deg, #47BFAF 0%, #215952 100%);
		opacity: 0;
		z-index: -1;
		pointer-events: none;
		transition: opacity 0.2s ease;
	}

	&:hover,
	&:focus {
		background: linear-gradient(270deg, #215952 0%, var(--peoplesbank_teal) 100%);
	}

	&:hover::after {
		opacity: 1;
	}
}

.slick-next {
	background: linear-gradient(90deg, #215952 0%, var(--peoplesbank_teal) 100%);

	&::before {
		left: auto;
		right: 22px;
		transform: translateY(-50%);
	}

	&::after {
		background: linear-gradient(90deg, #47BFAF 0%, #215952 100%);
	}

	&:hover,
	&:focus {
		background: linear-gradient(90deg, #215952 0%, var(--peoplesbank_teal) 100%);
	}
}

@media screen and (max-width: 768px) {
	.slick-arrow {
		width: 88px;
		height: 48px;

		&::before {
			left: 16px;
			width: 11px;
			height: 22px;
		}
	}
	.slick-next::before {
		left: auto;
		right: 16px;
	}
}