﻿

.form-control {
	display: block;
	width: 100%;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: rgb(120, 120, 120);
	background-color: rgb(255, 255, 255);
	background-clip: padding-box;
	appearance: none;
	padding: 0.375rem 0.75rem;
	border-width: 1px;
	border-style: solid;
	border-color: var(--frontend-theme);
	border-image: initial;
	border-radius: 10px;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.text-earth-brown {
	color: var(--frontend-theme) !important;
}

.text-greentwo {
	color: var(--frontend-theme) !important;
}

.text-greenthree {
	color: var(--frontend-theme) !important;
}

.bg-greenthree {
	background-color: var(--frontend-theme) !important;
}

.border-greentwo {
	border-color: var(--frontend-theme) !important;
}

.btn-greentwo {
	background-color: var(--frontend-theme);
	border-color: var(--frontend-theme);
	color: var(--color-white);
}
.btn-greentwo:hover,
.btn-greentwo:focus,
.btn-greentwo:active {
	background-color: color-mix(in srgb, var(--frontend-theme) 88%, #000);
	border-color: color-mix(in srgb, var(--frontend-theme) 88%, #000);
	color: var(--color-white);
}

.btn-greenthree {
	background-color: var(--frontend-theme);
	border-color: var(--frontend-theme);
	color: var(--color-white);
}
.btn-greenthree:hover,
.btn-greenthree:focus,
.btn-greenthree:active {
	background-color: color-mix(in srgb, var(--frontend-theme) 88%, #000);
	border-color: color-mix(in srgb, var(--frontend-theme) 88%, #000);
	color: var(--color-white);
}

.btn-outline-greentwo {
	color: var(--frontend-theme);
	border-color: var(--frontend-theme);
}
.btn-outline-greentwo:hover,
.btn-outline-greentwo:focus,
.btn-outline-greentwo:active {
	background-color: var(--frontend-theme);
	border-color: var(--frontend-theme);
	color: var(--color-white);
}

.btn-outline-greenthree {
	color: var(--frontend-theme);
	border-color: var(--frontend-theme);
}
.btn-outline-greenthree:hover,
.btn-outline-greenthree:focus,
.btn-outline-greenthree:active {
	background-color: var(--frontend-theme);
	border-color: var(--frontend-theme);
	color: var(--color-white);
}

.btn-outline-earth-brown {
	color: var(--frontend-theme);
	border-color: var(--frontend-theme);
}
.btn-outline-earth-brown:hover,
.btn-outline-earth-brown:focus,
.btn-outline-earth-brown:active {
	background-color: var(--frontend-theme);
	border-color: var(--frontend-theme);
	color: var(--color-white);
}

.btn-outline-greentwo.active,
.btn-outline-greentwo[aria-pressed="true"] {
	background-color: var(--frontend-theme);
	border-color: var(--frontend-theme);
	color: var(--color-white);
}

.btn-outline-greenthree.active,
.btn-outline-greenthree[aria-pressed="true"] {
	background-color: var(--frontend-theme);
	border-color: var(--frontend-theme);
	color: var(--color-white);
}

.btn-outline-earth-brown.active,
.btn-outline-earth-brown[aria-pressed="true"] {
	background-color: var(--frontend-theme);
	border-color: var(--frontend-theme);
	color: var(--color-white);
}

.navbar-brand img {
	max-height: 50px;
}

.nav-link.active {
	color: var(--color-link-active);
	font-weight: 600;
}

.nav-link:hover {
	color: var(--color-link-hover);
}

/*.nav-item.nav-link {
	font-size: 15px;
}*/

/* Floating robot button (image background remains dynamic inline) */
a.move-top {
	width: 100px;
	height: 100px;
	display: inline-block;
	position: fixed;
	bottom: 13%;
	right: 2%;
	z-index: 999;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	border: 3px solid var(--color-white);
	animation: bounceIn 1s ease-out 1;
}

@keyframes bounceIn {
	0% {
		transform: scale(0.5) translateY(100px);
		opacity: 0;
	}
	60% {
		transform: scale(1.1) translateY(-15px);
		opacity: 1;
	}
	80% {
		transform: scale(0.95) translateY(5px);
	}
	100% {
		transform: scale(1) translateY(0);
	}
}

/* Chat hint position (complements inline base styles) */
#chat_hint {
	bottom: 27%;
}
@media (max-width: 1024px) and (min-width: 768px) {
	#chat_hint {
		bottom: 21%;
	}
}
@media (max-width: 767px) {
	#chat_hint {
		bottom: 27%;
	}
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.2);
		opacity: 0.7;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* Footer */
a:hover {
	color: var(--frontend-theme);
}

/* Pagination */
.pagination .page-link {
	color: var(--frontend-theme);
	border-color: var(--frontend-theme);
	background-color: var(--color-white);
}

.pagination .page-link:hover,
.pagination .page-link:focus {
	color: var(--color-white);
	background-color: var(--frontend-theme);
	border-color: var(--frontend-theme);
}

.pagination .page-link:focus {
	box-shadow: 0 0 0 .2rem color-mix(in srgb, var(--frontend-theme) 20%, transparent);
}

.pagination .page-item.active .page-link {
	color: var(--color-white);
	background-color: var(--frontend-theme);
	border-color: var(--frontend-theme);
}

.pagination .page-item.disabled .page-link {
	color: var(--frontend-theme);
	border-color: var(--frontend-theme);
	background-color: var(--color-white);
	opacity: .45;
}

.footer-social-mini {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,0.15);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	transition: background .2s ease, transform .2s ease;
}
	.footer-social-mini:hover {
		background: #fff;
		transform: translateY(-2px);
	}

.copyright .footer-designer-link {
	border: 1px solid rgba(255, 255, 255, .34);
	border-radius: 999px;
	box-shadow: inset 0 -2px 0 rgba(255, 255, 255, .34);
	display: inline-flex;
	font-family: "Inter", "Noto Sans TC", sans-serif;
	font-size: .95em;
	font-weight: 900;
	letter-spacing: .08em;
	line-height: 1;
	margin-left: .32rem;
	padding: .32rem .72rem .36rem;
	text-decoration: none !important;
	text-transform: uppercase;
	transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
	vertical-align: middle;
}

.copyright .footer-designer-link:is(:hover, :focus-visible) {
	background: rgba(255, 255, 255, .16);
	border-color: rgba(255, 255, 255, .72);
	box-shadow:
		0 .45rem 1rem rgba(0, 0, 0, .18),
		inset 0 -2px 0 rgba(255, 255, 255, .72);
	color: #fff !important;
	transform: translateY(-1px);
}

.copyright .footer-designer-link:focus-visible {
	outline: 2px solid rgba(255, 255, 255, .86);
	outline-offset: 3px;
}

/* =====================
   HomeOne/Index page styles
   Scoped under .p-homeone-index
===================== */
.p-homeone-index .hero-image {
	position: relative;
}
.p-homeone-index .home-hero-carousel-shell .home-hero-img {
	aspect-ratio: auto;
	display: block;
	height: 82vh;
	max-height: none;
	object-fit: fill;
	object-position: center;
	position: relative;
	width: 100%;
	z-index: 0;
}
.p-homeone-index .home-hero-title-overlay {
	align-items: center;
	color: #fff;
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 2rem 6rem;
	pointer-events: none;
	position: absolute;
	z-index: 2;
}
.p-homeone-index .home-hero-title-overlay span {
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.35;
	max-width: 64rem;
	overflow-wrap: anywhere;
	text-shadow: 0 2px 5px rgba(0, 0, 0, .92), 0 8px 24px rgba(0, 0, 0, .65);
	white-space: normal;
}
@supports (height: 100dvh) {
	.p-homeone-index .home-hero-carousel-shell .home-hero-img {
		height: 82dvh;
	}
}
@media (max-width: 991.98px) {
	.p-homeone-index .home-hero-title-overlay {
		padding: 1.5rem 5rem;
	}

	.p-homeone-index .home-hero-title-overlay span {
		font-size: 2rem;
	}
}
@media (max-width: 575.98px) {
	.p-homeone-index .home-hero-title-overlay {
		padding: 1rem 3.75rem;
	}

	.p-homeone-index .home-hero-title-overlay span {
		font-size: 1.35rem;
		line-height: 1.45;
	}
}
.p-homeone-index .home-carousel-shell .home-card-rich-text {
	line-height: 1.65;
	max-width: 42rem;
	min-width: 0;
	overflow: visible;
	overflow-wrap: anywhere;
	white-space: normal;
	width: 100%;
	word-break: break-word;
}
.p-homeone-index .content-list-page :is(.layout-1 .blog-card-horizontal, .layout-2 .blog-card-horizontal) .home-card-rich-text {
	line-height: 1.65 !important;
	max-width: 42rem;
	min-width: 0;
	overflow: visible;
	overflow-wrap: anywhere;
	white-space: normal !important;
	width: 100%;
	word-break: break-word;
}
.p-homeone-index .home-card-rich-text :is(p, ul, ol, blockquote, figure, pre) {
	margin: 0 0 .65rem;
}
.p-homeone-index .home-card-rich-text :is(p, ul, ol, blockquote, figure, pre):last-child {
	margin-bottom: 0;
}
.p-homeone-index .home-card-rich-text pre {
	background: transparent;
	border: 0;
	color: inherit;
	font: inherit;
	padding: 0;
	white-space: pre-wrap;
}
.p-homeone-index .home-card-rich-text :is(img, iframe, video) {
	height: auto;
	max-width: 100%;
}
.p-homeone-index .hero-section:not(.frontend-page-hero) .hero-img {
	width: 100%;
	max-height: 88vh;
	/*aspect-ratio: 21 / 13;*/
	object-position: center;
	/*opacity: 0.9;*/
	transition: aspect-ratio 0.3s ease;
}
@media (max-width: 991.98px) {
	.p-homeone-index .hero-section:not(.frontend-page-hero) .hero-img {
		aspect-ratio: 16 / 9;
		max-height: 65vh;
	}
}
@media (max-width: 575.98px) {
	.p-homeone-index .hero-section:not(.frontend-page-hero) .hero-img {
		aspect-ratio: auto;
		max-height: 55vh;
		object-fit: fill;
		background-color: var(--color-black);
	}
}

.p-homeone-index .nav-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255,255,255,0.9);
	border: 1px solid color-mix(in srgb, var(--frontend-theme) 20%, transparent);
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	backdrop-filter: blur(10px);
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease;
	z-index: 30;
}
.p-homeone-index .home-carousel-shell:hover .nav-button,
.p-homeone-index .home-carousel-shell.is-card-hovered .nav-button,
.p-homeone-index .home-carousel-shell:focus-within .nav-button,
.p-homeone-index .home-carousel-shell .nav-button:is(:hover, :focus-visible),
.p-homeone-index .home-hero-carousel-shell:is(:hover, :focus-within) .nav-button,
.p-homeone-index .home-hero-carousel-shell .nav-button:is(:hover, :focus-visible) {
	opacity: 1;
	pointer-events: auto;
}
.p-homeone-index .home-carousel-shell.is-single-slide .nav-button,
.p-homeone-index .home-carousel-shell .nav-button:disabled {
	opacity: 0;
	pointer-events: none;
}
.p-homeone-index .nav-button:hover {
	background: color-mix(in srgb, var(--frontend-theme) 12%, transparent);
	border-color: var(--frontend-theme);
	transform: translateY(-50%) scale(1.1);
}
.p-homeone-index .nav-button.prev { left: 5px; }
.p-homeone-index .nav-button.next { right: 5px; }
.p-homeone-index #blogPrevBtn,
.p-homeone-index #newsPrevBtn {
	left: .75rem;
}
.p-homeone-index #blogNextBtn,
.p-homeone-index #newsNextBtn {
	right: .75rem;
}
.p-homeone-index .nav-button i {
	color: var(--frontend-theme);
	font-size: 1.2rem;
}

/* Show full card copy on news/blog/home content cards. */
:is(.p-homeone-index, .p-news-news, .p-news-latestnewsdetail, .p-blogs-blogs, .p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .content-list-page .blog-card .card-title,
:is(.p-homeone-index, .p-news-news, .p-news-latestnewsdetail, .p-blogs-blogs, .p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .content-list-page .blog-card .line-clamp-2,
:is(.p-homeone-index, .p-news-news, .p-news-latestnewsdetail, .p-blogs-blogs, .p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .content-list-page .blog-card .line-clamp-3 {
	-webkit-box-orient: unset !important;
	-webkit-line-clamp: unset !important;
	display: block !important;
	max-height: none !important;
	overflow: visible !important;
	overflow-wrap: anywhere;
	text-overflow: clip !important;
	white-space: normal !important;
	word-break: break-word;
}

:is(.p-homeone-index, .p-news-news, .p-news-latestnewsdetail, .p-blogs-blogs, .p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .content-list-page .blog-card .card-text,
:is(.p-homeone-index, .p-news-news, .p-news-latestnewsdetail, .p-blogs-blogs, .p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .content-list-page .blog-card .home-card-rich-text,
:is(.p-homeone-index, .p-news-news, .p-news-latestnewsdetail, .p-blogs-blogs, .p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .content-list-page .blog-card .page-card-rich-text {
	-webkit-box-orient: unset !important;
	-webkit-line-clamp: unset !important;
	display: block !important;
	height: auto !important;
	max-height: none !important;
	overflow: visible !important;
	overflow-wrap: anywhere;
	text-overflow: clip !important;
	white-space: normal !important;
	word-break: break-word;
}

:is(.p-homeone-index, .p-news-news, .p-news-latestnewsdetail, .p-blogs-blogs, .p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .content-list-page .blog-card .card-text :is(p, ul, ol, blockquote, figure, pre),
:is(.p-homeone-index, .p-news-news, .p-news-latestnewsdetail, .p-blogs-blogs, .p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .content-list-page .blog-card :is(.home-card-rich-text, .page-card-rich-text) :is(p, ul, ol, blockquote, figure, pre) {
	max-height: none !important;
	overflow: visible !important;
}

:is(.p-homeone-index, .p-news-news, .p-news-latestnewsdetail, .p-blogs-blogs, .p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .content-list-page .blog-card .card-text pre,
:is(.p-homeone-index, .p-news-news, .p-news-latestnewsdetail, .p-blogs-blogs, .p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .content-list-page .blog-card :is(.home-card-rich-text, .page-card-rich-text) pre {
	white-space: pre-wrap !important;
}

/* =====================
   Blogs/Blogs page styles
   Scoped under .p-blogs-blogs
===================== */
.p-blogs-blogs .content-list-page .blog-card .card-text {
	white-space: pre-line;
}

/* =====================
   Blogs/BlogsDetail page styles
   Scoped under :is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail)
===================== */
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .prose :is(h2, h3, h4) {
	color: #000;
	font-weight: 700;
	margin-top: 2rem;
	margin-bottom: 1rem;
}
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-detail-article-section,
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-detail-related-section {
	overflow-x: hidden;
}
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-article {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .98), #fff 62%),
		linear-gradient(135deg, color-mix(in srgb, var(--frontend-theme, #12663f) 5%, transparent), transparent 40%);
	border-block: 0;
	padding: clamp(1.25rem, 2.4vw, 2.25rem) 0;
}
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-article-header {
	margin-bottom: clamp(1.25rem, 2vw, 2rem) !important;
	padding-bottom: 0;
}
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-article-heading-row {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: .75rem 1rem;
	justify-content: space-between;
}
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-article-title {
	color: color-mix(in srgb, var(--frontend-theme, #12663f) 58%, #111827) !important;
	flex: 1 1 18rem;
	font-size: clamp(1.6rem, 3vw, 2.75rem);
	letter-spacing: 0;
	line-height: 1.25;
	min-width: 0;
}
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-article-meta {
	color: #5f6b73;
	flex: 0 1 auto;
	justify-content: flex-end;
	margin-left: auto;
}
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-article-category {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-size: .78rem;
	letter-spacing: .02em;
	line-height: 1;
	min-height: 1.75rem;
	padding: .34rem .62rem;
}
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-article-category {
	box-shadow: 0 5px 14px color-mix(in srgb, var(--frontend-theme, #12663f) 16%, transparent) !important;
	gap: .35rem;
	text-decoration: none;
}
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-article-category.text-bg-coffee {
	background: var(--frontend-theme, #12663f) !important;
	border: 1px solid var(--frontend-theme, #12663f);
	color: var(--color-white, #fff) !important;
}
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-article-prose {
	color: #2f3a34;
	font-size: 1.02rem;
	max-width: none;
}
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .prose p {
	line-height: 1.9;
	margin-bottom: 1.2rem;
}
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .prose img {
	border-radius: 0.75rem;
	box-shadow: 0 8px 24px rgba(0,0,0,.08);
	height: auto;
	margin: 1.5rem 0;
	max-width: 100%;
}
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .text-coffee { color: var(--frontend-theme) !important; }
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .bg-coffee-subtle { background-color: color-mix(in srgb, var(--frontend-theme, #12663f) 10%, #fff) !important; }
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .text-bg-coffee { background-color: var(--frontend-theme) !important; color: var(--color-white) !important; }
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .badge.text-bg-coffee { transition: all 0.25s ease; }
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .badge.text-bg-coffee:hover {
	background-color: var(--frontend-theme) !important; color: var(--color-white) !important; transform: translateY(-1px);
	box-shadow: 0 .25rem .5rem rgba(0,0,0,0.1);
}
@media (max-width: 991.98px) {
	:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .badge.text-bg-coffee { font-size: .85rem; padding: .4em .7em; }
}
@media (max-width: 575.98px) {
	:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .badge.text-bg-coffee { font-size: .8rem; padding: .35em .6em; }
}
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .text-muted2 { color: #6c757d !important; }
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-detail-related-carousel {
	margin-inline: 0;
	padding: 0;
}
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-detail-related-carousel .home-carousel-viewport {
	overflow: hidden;
	margin-inline: -.55rem;
	padding: .55rem .55rem 1.35rem;
}
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-detail-related-carousel .carousel-slide {
	min-width: 100%;
}
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-detail-related-carousel .ratio > .card-img-top {
	height: 100% !important;
}
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-detail-related-carousel .line-clamp-2 {
	-webkit-line-clamp: 2;
}
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-detail-related-carousel .nav-button {
	opacity: 0;
	pointer-events: none;
	transform: translateY(-50%) scale(.96);
}
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-detail-related-carousel .nav-button.prev {
	left: .25rem;
}
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-detail-related-carousel .nav-button.next {
	right: .25rem;
}
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-detail-related-carousel.is-card-hovered .nav-button,
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-detail-related-carousel:focus-within .nav-button,
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-detail-related-carousel .nav-button:is(:hover, :focus-visible) {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(-50%) scale(1);
}
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-detail-related-carousel .nav-button:disabled {
	opacity: 0;
	pointer-events: none;
}
@media (hover: none) {
	:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-detail-related-carousel .nav-button:not(:disabled) {
		opacity: 1;
		pointer-events: auto;
	}
}
@media (max-width: 575.98px) {
	:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-article {
		padding-block: 1.1rem;
	}
	:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-article-meta {
		gap: .55rem !important;
		justify-content: flex-start;
		width: 100%;
	}
	:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-detail-related-carousel .nav-button.prev {
		left: .1rem;
	}
	:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-detail-related-carousel .nav-button.next {
		right: .1rem;
	}
}

/* =====================
   Frontend SweetAlert dialogs
===================== */
.swal2-container.frontend-swal-container.swal2-backdrop-show {
	backdrop-filter: blur(2px);
	background: rgba(15, 23, 42, .48) !important;
}

.swal2-popup.frontend-swal-popup:not(.swal2-toast) {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .99) 0%, #fff 62%),
		linear-gradient(135deg, color-mix(in srgb, var(--frontend-theme, #12663f) 7%, transparent), transparent 48%);
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 14%, #e2e8f0);
	border-radius: .9rem;
	box-shadow: 0 1.4rem 3.2rem rgba(15, 23, 42, .18), 0 .35rem 1rem rgba(15, 23, 42, .08);
	color: #213529;
	padding: 1.9rem 1.65rem 1.55rem;
	width: min(27rem, calc(100vw - 2rem));
}

.swal2-popup.frontend-swal-popup .swal2-success-circular-line-left,
.swal2-popup.frontend-swal-popup .swal2-success-circular-line-right,
.swal2-popup.frontend-swal-popup .swal2-success-fix,
.swal2-popup.frontend-swal-popup .swal2-success-line-tip,
.swal2-popup.frontend-swal-popup .swal2-success-line-long,
.swal2-popup.frontend-swal-popup .swal2-x-mark {
	display: none !important;
}

.swal2-popup.frontend-swal-popup:not(.swal2-toast) .swal2-icon.frontend-swal-icon {
	align-items: center;
	background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--frontend-theme, #12663f) 9%, #fff) 100%);
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 20%, #d8e0dd) !important;
	border-radius: 50%;
	box-shadow: 0 .75rem 1.35rem color-mix(in srgb, var(--frontend-theme, #12663f) 15%, transparent);
	color: var(--frontend-theme, #12663f) !important;
	display: flex;
	height: 4rem;
	justify-content: center;
	margin: 0 auto 1rem;
	width: 4rem;
}

.swal2-popup.frontend-swal-popup .swal2-icon.frontend-swal-icon .swal2-icon-content {
	align-items: center;
	display: flex;
	font-size: 1.85rem;
	justify-content: center;
	line-height: 1;
}

.swal2-popup.frontend-swal-popup .swal2-icon.frontend-swal-icon .swal2-icon-content i {
	color: inherit;
	display: block;
	font-size: 1.7rem;
	line-height: 1;
}

.swal2-popup.frontend-swal-state-error .swal2-icon.frontend-swal-icon {
	background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--frontend-theme, #12663f) 9%, #fff) 100%);
	border-color: color-mix(in srgb, var(--frontend-theme, #12663f) 24%, #e2e8f0) !important;
	box-shadow: 0 .75rem 1.35rem color-mix(in srgb, var(--frontend-theme, #12663f) 15%, transparent);
	color: var(--frontend-theme, #12663f) !important;
}

.swal2-popup.frontend-swal-state-warning .swal2-icon.frontend-swal-icon {
	background: linear-gradient(180deg, #fff 0%, #fff8e6 100%);
	border-color: #efd18a !important;
	box-shadow: 0 .75rem 1.35rem rgba(180, 119, 31, .14);
	color: #9a6700 !important;
}

.swal2-popup.frontend-swal-state-question .swal2-icon.frontend-swal-icon {
	background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--frontend-theme, #12663f) 7%, #fff) 100%);
}

.swal2-popup.frontend-swal-popup:not(.swal2-toast) .frontend-swal-title {
	color: color-mix(in srgb, var(--frontend-theme, #12663f) 58%, #111827);
	font-size: 1.45rem;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.35;
	margin: 0;
	padding: 0;
}

.swal2-popup.frontend-swal-state-error:not(.swal2-toast) .frontend-swal-title {
	color: color-mix(in srgb, var(--frontend-theme, #12663f) 62%, #111827);
}

.swal2-popup.frontend-swal-popup:not(.swal2-toast) .frontend-swal-text {
	color: #64748b;
	font-size: .98rem;
	line-height: 1.7;
	margin: .6rem 0 0;
	max-height: min(48vh, 24rem);
	overflow-wrap: anywhere;
	overflow-y: auto;
	padding: 0 .15rem;
}

.swal2-popup.frontend-swal-popup .frontend-swal-actions {
	gap: .65rem;
	margin: 1.35rem 0 0;
}

.swal2-popup.frontend-swal-popup .frontend-swal-confirm,
.swal2-popup.frontend-swal-popup .frontend-swal-deny,
.swal2-popup.frontend-swal-popup .frontend-swal-cancel {
	align-items: center;
	border-radius: 999px;
	cursor: pointer;
	font-size: .92rem;
	font-weight: 800;
	gap: .42rem;
	justify-content: center;
	line-height: 1;
	min-height: 2.75rem;
	min-width: 7.5rem;
	padding: .72rem 1.15rem;
	transition: border-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
}

.swal2-popup.frontend-swal-popup .frontend-swal-confirm i,
.swal2-popup.frontend-swal-popup .frontend-swal-deny i,
.swal2-popup.frontend-swal-popup .frontend-swal-cancel i {
	display: inline-block;
	font-size: .9rem;
	line-height: 1;
}

.swal2-popup.frontend-swal-popup .frontend-swal-confirm {
	background: linear-gradient(135deg, var(--frontend-theme, #12663f), color-mix(in srgb, var(--frontend-theme, #12663f) 78%, #34a173)) !important;
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 82%, #fff) !important;
	box-shadow: 0 .72rem 1.25rem color-mix(in srgb, var(--frontend-theme, #12663f) 24%, transparent) !important;
	color: #fff !important;
}

.swal2-popup.frontend-swal-state-error .frontend-swal-confirm {
	background: linear-gradient(135deg, var(--frontend-theme, #12663f), color-mix(in srgb, var(--frontend-theme, #12663f) 78%, #34a173)) !important;
	border-color: color-mix(in srgb, var(--frontend-theme, #12663f) 82%, #fff) !important;
	box-shadow: 0 .72rem 1.25rem color-mix(in srgb, var(--frontend-theme, #12663f) 24%, transparent) !important;
}

.swal2-popup.frontend-swal-danger .frontend-swal-confirm,
.swal2-popup.frontend-swal-popup .frontend-swal-deny {
	background: linear-gradient(135deg, #b42335, #dc3545) !important;
	border-color: color-mix(in srgb, #dc3545 82%, #fff) !important;
	box-shadow: 0 .72rem 1.25rem rgba(220, 53, 69, .22) !important;
}

.swal2-popup.frontend-swal-popup .frontend-swal-cancel {
	background: #fff !important;
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 18%, #d8e0dd) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95) !important;
	color: #64748b !important;
}

.swal2-popup.frontend-swal-popup .frontend-swal-confirm:hover,
.swal2-popup.frontend-swal-popup .frontend-swal-deny:hover,
.swal2-popup.frontend-swal-popup .frontend-swal-cancel:hover {
	transform: translateY(-1px);
}

.swal2-popup.frontend-swal-popup .frontend-swal-confirm:hover {
	box-shadow: 0 .9rem 1.45rem color-mix(in srgb, var(--frontend-theme, #12663f) 30%, transparent) !important;
}

.swal2-popup.frontend-swal-state-error .frontend-swal-confirm:hover {
	box-shadow: 0 .9rem 1.45rem color-mix(in srgb, var(--frontend-theme, #12663f) 30%, transparent) !important;
}

.swal2-popup.frontend-swal-danger .frontend-swal-confirm:hover,
.swal2-popup.frontend-swal-popup .frontend-swal-deny:hover {
	box-shadow: 0 .9rem 1.45rem rgba(220, 53, 69, .28) !important;
}

.swal2-popup.frontend-swal-popup .frontend-swal-cancel:hover {
	border-color: color-mix(in srgb, var(--frontend-theme, #12663f) 34%, #fff) !important;
	color: color-mix(in srgb, var(--frontend-theme, #12663f) 76%, #475569) !important;
}

.swal2-popup.frontend-swal-popup .frontend-swal-confirm:focus-visible,
.swal2-popup.frontend-swal-popup .frontend-swal-deny:focus-visible,
.swal2-popup.frontend-swal-popup .frontend-swal-cancel:focus-visible,
.swal2-popup.frontend-swal-popup .frontend-swal-close:focus-visible {
	outline: 0;
	box-shadow: 0 0 0 .22rem color-mix(in srgb, var(--frontend-theme, #12663f) 18%, transparent) !important;
}

.swal2-popup.frontend-swal-popup :is(.frontend-swal-confirm, .frontend-swal-deny, .frontend-swal-cancel):disabled {
	cursor: not-allowed;
	opacity: .5;
	transform: none;
}

.swal2-popup.frontend-swal-popup .frontend-swal-close {
	border-radius: 50%;
	color: #64748b;
	height: 2.75rem;
	right: .55rem;
	top: .55rem;
	transition: background-color .18s ease, color .18s ease;
	width: 2.75rem;
}

.swal2-popup.frontend-swal-popup .frontend-swal-close:hover {
	background: color-mix(in srgb, var(--frontend-theme, #12663f) 8%, #fff);
	color: var(--frontend-theme, #12663f);
}

.swal2-popup.frontend-swal-popup .frontend-swal-input,
.swal2-popup.frontend-swal-popup select.frontend-swal-input,
.swal2-popup.frontend-swal-popup textarea.frontend-swal-input {
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 16%, #cbd5e1);
	border-radius: .55rem;
	box-shadow: none;
	color: #1f2937;
	font-size: 1rem;
	min-height: 2.75rem;
}

.swal2-popup.frontend-swal-popup .frontend-swal-input:focus {
	border-color: var(--frontend-theme, #12663f);
	box-shadow: 0 0 0 .22rem color-mix(in srgb, var(--frontend-theme, #12663f) 14%, transparent);
}

.swal2-popup.frontend-swal-popup .frontend-swal-input-label {
	color: #334155;
	font-weight: 700;
}

.swal2-popup.frontend-swal-popup .frontend-swal-validation {
	background: #fff4f5;
	border-radius: .5rem;
	color: #b42335;
	font-size: .9rem;
	line-height: 1.5;
	margin-top: .75rem;
}

.swal2-popup.frontend-swal-popup .frontend-swal-footer {
	border-color: color-mix(in srgb, var(--frontend-theme, #12663f) 10%, #e2e8f0);
	color: #64748b;
	font-size: .88rem;
}

.swal2-popup.frontend-swal-popup .frontend-swal-loader {
	border-color: var(--frontend-theme, #12663f) transparent var(--frontend-theme, #12663f) transparent;
}

.swal2-popup.frontend-swal-popup .frontend-swal-timer-progress {
	background: var(--frontend-theme, #12663f);
}

.swal2-popup.swal2-toast.frontend-swal-popup {
	background: rgba(255, 255, 255, .98);
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 14%, #e2e8f0);
	border-radius: .65rem;
	box-shadow: 0 .9rem 2rem rgba(15, 23, 42, .16);
	color: #213529;
	padding: .8rem 1rem;
}

.swal2-popup.swal2-toast.frontend-swal-popup .swal2-icon.frontend-swal-icon {
	align-items: center;
	background: color-mix(in srgb, var(--frontend-theme, #12663f) 8%, #fff);
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 18%, #d8e0dd) !important;
	color: var(--frontend-theme, #12663f) !important;
	display: flex;
	height: 2rem;
	justify-content: center;
	width: 2rem;
}

.swal2-popup.swal2-toast.frontend-swal-state-error .swal2-icon.frontend-swal-icon {
	background: color-mix(in srgb, var(--frontend-theme, #12663f) 8%, #fff);
	border-color: color-mix(in srgb, var(--frontend-theme, #12663f) 20%, #d8e0dd) !important;
	color: var(--frontend-theme, #12663f) !important;
}

.swal2-popup.swal2-toast.frontend-swal-state-warning .swal2-icon.frontend-swal-icon {
	background: #fff8e6;
	border-color: #efd18a !important;
	color: #9a6700 !important;
}

.swal2-popup.swal2-toast.frontend-swal-popup .swal2-icon-content,
.swal2-popup.swal2-toast.frontend-swal-popup .swal2-icon-content i {
	font-size: .9rem;
}

.swal2-popup.swal2-toast.frontend-swal-popup .frontend-swal-title {
	color: #213529;
	font-size: .92rem;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.45;
}

.swal2-popup.swal2-toast.frontend-swal-popup .frontend-swal-text {
	color: #64748b;
	font-size: .84rem;
	line-height: 1.45;
}

@media (max-width: 575.98px) {
	.swal2-popup.frontend-swal-popup:not(.swal2-toast) {
		padding: 1.55rem 1.1rem 1.2rem;
	}

	.swal2-popup.frontend-swal-popup .frontend-swal-actions {
		align-items: stretch;
		flex-direction: column;
		width: 100%;
	}

	.swal2-popup.frontend-swal-popup .frontend-swal-confirm,
	.swal2-popup.frontend-swal-popup .frontend-swal-deny,
	.swal2-popup.frontend-swal-popup .frontend-swal-cancel {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.swal2-popup.frontend-swal-popup,
	.swal2-popup.frontend-swal-popup * {
		animation-duration: .01ms !important;
		transition-duration: .01ms !important;
	}
}

/* =====================
   Frontend Bootstrap modals
===================== */
.modal-backdrop.show {
	backdrop-filter: blur(2px);
	opacity: .48;
}

.frontend-bootstrap-modal.fade .modal-dialog {
	transform: translateY(.75rem) scale(.985);
	transition: transform .22s ease-out;
}

.frontend-bootstrap-modal.show .modal-dialog {
	transform: none;
}

.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-content {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .99) 0%, #fff 62%),
		linear-gradient(135deg, color-mix(in srgb, var(--frontend-theme, #12663f) 7%, transparent), transparent 48%) !important;
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 14%, #e2e8f0) !important;
	border-radius: .9rem !important;
	box-shadow: 0 1.4rem 3.2rem rgba(15, 23, 42, .18), 0 .35rem 1rem rgba(15, 23, 42, .08) !important;
	color: #213529;
	overflow: hidden;
}

.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-header {
	align-items: center;
	background: color-mix(in srgb, var(--frontend-theme, #12663f) 4%, #fff);
	border-bottom: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 10%, #e2e8f0);
	color: #213529;
	gap: .75rem;
	padding: 1rem 1.15rem;
}

.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-header .modal-title {
	align-items: center;
	color: color-mix(in srgb, var(--frontend-theme, #12663f) 58%, #111827);
	display: inline-flex;
	font-size: 1.08rem;
	font-weight: 900;
	gap: .7rem;
	letter-spacing: 0;
	line-height: 1.3;
	margin: 0;
	min-width: 0;
}

.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-header .modal-title > i:first-child {
	align-items: center;
	background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--frontend-theme, #12663f) 10%, #fff) 100%);
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 18%, #d8e0dd);
	border-radius: 50%;
	color: var(--frontend-theme, #12663f) !important;
	display: inline-flex;
	flex: 0 0 2.5rem;
	font-size: 1rem;
	height: 2.5rem;
	justify-content: center;
	margin: 0 !important;
	width: 2.5rem;
}

.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-header .btn-close {
	background-color: color-mix(in srgb, var(--frontend-theme, #12663f) 7%, #fff);
	background-size: .8rem;
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 14%, #d8e0dd);
	border-radius: 50%;
	box-shadow: none;
	box-sizing: border-box;
	filter: none !important;
	flex: 0 0 2.75rem;
	height: 2.75rem;
	margin: 0;
	opacity: 1;
	padding: .8rem;
	transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
	width: 2.75rem;
}

.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-header .btn-close:hover {
	background-color: color-mix(in srgb, var(--frontend-theme, #12663f) 12%, #fff);
	border-color: color-mix(in srgb, var(--frontend-theme, #12663f) 28%, #d8e0dd);
}

.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-header .btn-close:focus-visible {
	box-shadow: 0 0 0 .22rem color-mix(in srgb, var(--frontend-theme, #12663f) 18%, transparent);
	outline: 0;
}

.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-body {
	color: #334155;
	line-height: 1.65;
	padding: 1.2rem;
}

.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-body .form-label > i:first-child {
	align-items: center;
	background: color-mix(in srgb, var(--frontend-theme, #12663f) 7%, #fff);
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 14%, #e2e8f0);
	border-radius: 50%;
	color: var(--frontend-theme, #12663f) !important;
	display: inline-flex;
	font-size: .82rem;
	height: 1.8rem;
	justify-content: center;
	margin: 0 .15rem 0 0 !important;
	vertical-align: middle;
	width: 1.8rem;
}

.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-body :is(.form-control, .form-select) {
	background-color: #fff;
	border-color: color-mix(in srgb, var(--frontend-theme, #12663f) 16%, #cbd5e1);
	border-radius: .55rem;
	box-shadow: none;
	color: #1f2937;
	min-height: 2.75rem;
}

.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-body :is(.form-control, .form-select):focus {
	border-color: var(--frontend-theme, #12663f);
	box-shadow: 0 0 0 .22rem color-mix(in srgb, var(--frontend-theme, #12663f) 14%, transparent);
}

.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-body .alert-light {
	background: color-mix(in srgb, var(--frontend-theme, #12663f) 5%, #fff);
	border-color: color-mix(in srgb, var(--frontend-theme, #12663f) 13%, #e2e8f0) !important;
	border-radius: .6rem;
	color: #475569;
}

.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-footer {
	background: color-mix(in srgb, var(--frontend-theme, #12663f) 4%, #f8fafc) !important;
	border-top: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 10%, #e2e8f0);
	gap: .65rem;
	justify-content: center;
	padding: 1rem 1.15rem;
}

.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-footer .btn {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-size: .92rem;
	font-weight: 800;
	gap: .42rem;
	justify-content: center;
	line-height: 1;
	margin: 0;
	min-height: 2.75rem;
	min-width: 7.5rem;
	padding: .72rem 1.15rem;
	transition: border-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
}

.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-footer .btn i {
	font-size: .9rem;
	line-height: 1;
	margin: 0 !important;
}

.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-footer :is(.btn-greenthree, .btn-primary) {
	background: linear-gradient(135deg, var(--frontend-theme, #12663f), color-mix(in srgb, var(--frontend-theme, #12663f) 78%, #34a173)) !important;
	border-color: color-mix(in srgb, var(--frontend-theme, #12663f) 82%, #fff) !important;
	box-shadow: 0 .72rem 1.25rem color-mix(in srgb, var(--frontend-theme, #12663f) 22%, transparent);
	color: #fff !important;
}

.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-footer :is(.btn-outline-secondary, .btn-outline-greentwo) {
	background: #fff !important;
	border-color: color-mix(in srgb, var(--frontend-theme, #12663f) 18%, #d8e0dd) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95);
	color: #64748b !important;
}

.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-footer .btn-danger {
	background: linear-gradient(135deg, #b42335, #dc3545) !important;
	border-color: color-mix(in srgb, #dc3545 82%, #fff) !important;
	box-shadow: 0 .72rem 1.25rem rgba(220, 53, 69, .22);
	color: #fff !important;
}

.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-footer .btn:hover {
	transform: translateY(-1px);
}

.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-footer :is(.btn-greenthree, .btn-primary):hover {
	box-shadow: 0 .9rem 1.45rem color-mix(in srgb, var(--frontend-theme, #12663f) 28%, transparent);
}

.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-footer :is(.btn-outline-secondary, .btn-outline-greentwo):hover {
	border-color: color-mix(in srgb, var(--frontend-theme, #12663f) 34%, #fff) !important;
	color: color-mix(in srgb, var(--frontend-theme, #12663f) 76%, #475569) !important;
}

.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-footer .btn:focus-visible {
	box-shadow: 0 0 0 .22rem color-mix(in srgb, var(--frontend-theme, #12663f) 18%, transparent) !important;
	outline: 0;
}

.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-footer .btn:disabled {
	cursor: not-allowed;
	opacity: .5;
	transform: none;
}

.frontend-bootstrap-modal-media .modal-content {
	border-radius: .9rem !important;
	box-shadow: 0 1.4rem 3.2rem rgba(0, 0, 0, .34) !important;
	overflow: hidden;
}

.frontend-bootstrap-modal-media :is(.btn-close, .review-lightbox-close, .detail-review-lightbox-close) {
	align-items: center;
	background-color: rgba(255, 255, 255, .94) !important;
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 24%, #fff) !important;
	border-radius: 50% !important;
	box-shadow: 0 .45rem 1rem rgba(0, 0, 0, .2);
	box-sizing: border-box;
	color: var(--frontend-theme, #12663f) !important;
	display: inline-flex;
	filter: none !important;
	font-size: 1rem;
	height: 2.75rem;
	justify-content: center;
	opacity: 1;
	padding: .8rem;
	transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
	width: 2.75rem;
}

.frontend-bootstrap-modal-media :is(.btn-close, .review-lightbox-close, .detail-review-lightbox-close):hover {
	background-color: #fff !important;
	border-color: color-mix(in srgb, var(--frontend-theme, #12663f) 44%, #fff) !important;
	box-shadow: 0 .6rem 1.2rem rgba(0, 0, 0, .26);
	transform: translateY(-1px);
}

.frontend-bootstrap-modal-media :is(.btn-close, .review-lightbox-close, .detail-review-lightbox-close):focus-visible,
.frontend-bootstrap-modal-media :is(.zoom-nav-btn, .review-lightbox-nav, .detail-review-lightbox-nav):focus-visible {
	box-shadow: 0 0 0 .22rem color-mix(in srgb, var(--frontend-theme, #12663f) 28%, transparent);
	outline: 0;
}

.frontend-bootstrap-modal-media :is(.zoom-nav-btn, .review-lightbox-nav, .detail-review-lightbox-nav) {
	align-items: center;
	background: rgba(255, 255, 255, .92) !important;
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 22%, #fff) !important;
	border-radius: 50% !important;
	box-shadow: 0 .45rem 1rem rgba(0, 0, 0, .18);
	color: var(--frontend-theme, #12663f) !important;
	display: inline-flex;
	font-size: 1rem;
	height: 2.75rem;
	justify-content: center;
	width: 2.75rem;
}

.frontend-bootstrap-modal-media :is(.zoom-nav-btn, .review-lightbox-nav, .detail-review-lightbox-nav):hover {
	background: #fff !important;
	box-shadow: 0 .65rem 1.25rem rgba(0, 0, 0, .24);
}

@media (max-width: 575.98px) {
	.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-dialog {
		margin: .75rem auto;
		max-width: calc(100vw - 1.5rem);
	}

	.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-header,
	.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-body,
	.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-footer {
		padding-inline: 1rem;
	}

	.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-body :is(.form-control, .form-select) {
		font-size: 1rem;
	}

	.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-footer {
		align-items: stretch;
		flex-direction: column;
	}

	.frontend-bootstrap-modal:not(.frontend-bootstrap-modal-media) .modal-footer .btn {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.frontend-bootstrap-modal,
	.frontend-bootstrap-modal *,
	.modal-backdrop {
		animation-duration: .01ms !important;
		transition-duration: .01ms !important;
	}
}

/* =====================
   News/EventRegistration page styles
   Scoped under .p-news-eventregistration
===================== */
.p-news-eventregistration .event-registration-panel {
	background: rgba(255, 255, 255, .98);
}

.p-news-eventregistration .event-registration-summary {
	align-items: stretch;
	display: grid;
	gap: 1.2rem;
	grid-template-columns: minmax(14rem, 28%) minmax(0, 1fr);
}

.p-news-eventregistration .event-registration-media {
	background: color-mix(in srgb, var(--frontend-theme, #12663f) 8%, #fff);
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 12%, #e5e7eb);
	border-radius: .5rem;
	min-height: 11rem;
	overflow: hidden;
}

.p-news-eventregistration .event-registration-media img {
	display: block;
	height: 100%;
	object-fit: fill;
	width: 100%;
}

.p-news-eventregistration .event-registration-copy {
	align-content: center;
	display: grid;
	gap: .85rem;
	min-width: 0;
}

.p-news-eventregistration .event-registration-copy h2 {
	color: color-mix(in srgb, var(--frontend-theme, #12663f) 58%, #111827);
	font-size: clamp(1.45rem, 2.4vw, 2.35rem);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 0;
}

.p-news-eventregistration .event-registration-event-meta {
	display: flex;
	flex-wrap: wrap;
	gap: .55rem;
}

.p-news-eventregistration .event-registration-event-meta > span {
	align-items: center;
	background: color-mix(in srgb, var(--frontend-theme, #12663f) 6%, #fff);
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 18%, #dfe7e2);
	border-radius: 8px;
	color: color-mix(in srgb, var(--frontend-theme, #12663f) 74%, #334155);
	display: inline-flex;
	font-size: .84rem;
	font-weight: 800;
	gap: .35rem;
	line-height: 1.45;
	max-width: 100%;
	min-height: 2rem;
	padding: .35rem .65rem;
}

.p-news-eventregistration .event-registration-event-meta > span > span {
	overflow-wrap: anywhere;
}

.p-news-eventregistration .event-registration-event-meta i {
	color: var(--frontend-theme, #12663f);
	flex: 0 0 auto;
}

.p-news-eventregistration .event-registration-copy p {
	color: #4b5b52;
	font-size: 1rem;
	line-height: 1.75;
	margin: 0;
}

.p-news-eventregistration .event-registration-detail-link {
	align-items: center;
	background:
		linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--frontend-theme, #12663f) 5%, #fff) 100%);
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 22%, #dfe7e2);
	border-radius: 999px;
	box-shadow: 0 .45rem 1rem rgba(15, 23, 42, .07), inset 0 1px 0 rgba(255, 255, 255, .95);
	color: color-mix(in srgb, var(--frontend-theme, #12663f) 84%, #111827);
	display: inline-flex;
	font-size: .92rem;
	font-weight: 900;
	gap: .35rem;
	justify-self: end;
	line-height: 1;
	min-height: 2.25rem;
	padding: .48rem .88rem;
	text-decoration: none;
	transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
}

.p-news-eventregistration .event-registration-detail-link:hover {
	color: color-mix(in srgb, var(--frontend-theme, #12663f) 82%, #111827);
	border-color: color-mix(in srgb, var(--frontend-theme, #12663f) 40%, #fff);
	box-shadow: 0 .7rem 1.35rem rgba(15, 23, 42, .11), inset 0 1px 0 rgba(255, 255, 255, .95);
	transform: translateY(-1px);
}

.p-news-eventregistration .event-registration-detail-link i {
	font-size: 1.15rem;
	line-height: 1;
	transition: transform .18s ease;
}

.p-news-eventregistration .event-registration-detail-link:hover i {
	transform: translateX(2px);
}

.p-news-eventregistration .event-registration-form {
	display: grid;
	gap: 0;
}

.p-news-eventregistration .event-registration-form .register-form-section:first-child {
	padding-top: 1.45rem;
}

.p-news-eventregistration .event-registration-member-info {
	display: grid;
	gap: .9rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 1.05rem;
}

.p-news-eventregistration .event-registration-member-card {
	align-items: center;
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 15%, #e2e8f0);
	border-radius: .65rem;
	box-shadow: 0 .45rem 1rem rgba(15, 23, 42, .055), inset 0 1px 0 rgba(255, 255, 255, .9);
	display: flex;
	gap: .8rem;
	min-width: 0;
	padding: .9rem 1rem;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.p-news-eventregistration .event-registration-member-card:hover {
	border-color: color-mix(in srgb, var(--frontend-theme, #12663f) 28%, #d8e0dd);
	box-shadow: 0 .7rem 1.35rem rgba(15, 23, 42, .08), inset 0 1px 0 rgba(255, 255, 255, .95);
	transform: translateY(-1px);
}

.p-news-eventregistration .event-registration-member-icon {
	align-items: center;
	background:
		linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--frontend-theme, #12663f) 10%, #fff) 100%);
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 18%, #d8e0dd);
	border-radius: 50%;
	color: var(--frontend-theme, #12663f);
	display: inline-flex;
	flex: 0 0 2.45rem;
	font-size: .95rem;
	height: 2.45rem;
	justify-content: center;
	box-shadow: 0 .38rem .85rem color-mix(in srgb, var(--frontend-theme, #12663f) 12%, transparent);
	width: 2.45rem;
}

.p-news-eventregistration .event-registration-member-content {
	min-width: 0;
}

.p-news-eventregistration .event-registration-member-label {
	color: color-mix(in srgb, var(--frontend-theme, #12663f) 58%, #64748b);
	display: block;
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: 0;
	margin-bottom: .22rem;
}

.p-news-eventregistration .event-registration-member-label-underline {
	display: inline-block;
	border-bottom: 2px solid currentColor;
	padding-bottom: .1rem;
}

.p-news-eventregistration .event-registration-member-card strong {
	color: #213529;
	display: block;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.p-news-eventregistration .event-registration-note-card {
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 14%, #e2e8f0);
	border-radius: .75rem;
	box-shadow: 0 .45rem 1rem rgba(15, 23, 42, .05), inset 0 1px 0 rgba(255, 255, 255, .9);
	padding: 1rem;
}

.p-news-eventregistration .event-registration-note-label {
	align-items: center;
	color: #213529;
	display: flex;
	gap: .45rem;
	margin-bottom: .7rem;
}

.p-news-eventregistration .event-registration-note-label-icon {
	align-items: center;
	background: color-mix(in srgb, var(--frontend-theme, #12663f) 10%, #fff);
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 16%, #d8e0dd);
	border-radius: 50%;
	color: var(--frontend-theme, #12663f);
	display: inline-flex;
	flex: 0 0 1.85rem;
	font-size: .78rem;
	height: 1.85rem;
	justify-content: center;
	width: 1.85rem;
}

.p-news-eventregistration .event-registration-note-card .member-input {
	background: rgba(255, 255, 255, .96);
	border-color: color-mix(in srgb, var(--frontend-theme, #12663f) 16%, #d8e0dd);
	border-radius: .65rem;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, .04);
	min-height: 8.5rem;
	resize: vertical;
}

.p-news-eventregistration .event-registration-note-card .member-input:focus {
	border-color: color-mix(in srgb, var(--frontend-theme, #12663f) 42%, #d8e0dd);
	box-shadow:
		0 0 0 .2rem color-mix(in srgb, var(--frontend-theme, #12663f) 12%, transparent),
		inset 0 1px 2px rgba(15, 23, 42, .04);
}

.p-news-eventregistration .event-registration-empty {
	align-items: center;
	background: rgba(255, 255, 255, .96);
	border: 1px solid rgba(20, 35, 27, .08);
	border-radius: .65rem;
	box-shadow: 0 1rem 2.2rem rgba(20, 35, 27, .1);
	display: grid;
	gap: .8rem;
	justify-items: center;
	margin-inline: auto;
	max-width: 42rem;
	padding: clamp(2rem, 5vw, 4rem);
	text-align: center;
}

.p-news-eventregistration .event-registration-empty-icon {
	align-items: center;
	background: color-mix(in srgb, var(--frontend-theme, #12663f) 10%, #fff);
	border-radius: 50%;
	color: var(--frontend-theme, #12663f);
	display: inline-flex;
	font-size: 1.8rem;
	height: 4rem;
	justify-content: center;
	width: 4rem;
}

.p-news-eventregistration .event-registration-empty h2 {
	color: #213529;
	font-size: clamp(1.4rem, 2.4vw, 2rem);
	font-weight: 900;
	margin: 0;
}

.p-news-eventregistration .event-registration-empty p {
	color: #64748b;
	margin: 0;
}

@media (max-width: 767.98px) {
	.p-news-eventregistration .event-registration-summary {
		grid-template-columns: 1fr;
	}

	.p-news-eventregistration .event-registration-member-info {
		grid-template-columns: 1fr;
	}

	.p-news-eventregistration .event-registration-media {
		aspect-ratio: 16 / 9;
		min-height: 0;
	}
}

/* =====================
   News/EventTicket page styles
   Scoped under .p-news-eventticket
===================== */
.p-news-eventticket .event-ticket-card {
	align-items: stretch;
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 14%, #e2e8f0);
	border-radius: .95rem;
	box-shadow: 0 .85rem 2rem rgba(15, 23, 42, .08), inset 0 1px 0 rgba(255, 255, 255, .92);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
	overflow: hidden;
	width: 100%;
}

.p-news-eventticket .event-ticket-main {
	align-content: center;
	display: grid;
	gap: 1rem;
	padding: clamp(1.4rem, 3vw, 2.2rem);
}

.p-news-eventticket .event-ticket-heading {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: .55rem;
}

.p-news-eventticket .event-ticket-status,
.p-news-eventticket .event-ticket-category {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-size: .8rem;
	font-weight: 900;
	gap: .38rem;
	line-height: 1;
	min-height: 1.85rem;
	padding: .42rem .72rem;
}

.p-news-eventticket .event-ticket-status {
	background: var(--frontend-theme, #12663f);
	border: 1px solid var(--frontend-theme, #12663f);
	color: #fff;
}

.p-news-eventticket .event-ticket-status-used {
	background: #64748b;
	border-color: #64748b;
}

.p-news-eventticket .event-ticket-status-cancelled {
	background: #b42335;
	border-color: #b42335;
}

.p-news-eventticket .event-ticket-category {
	background: color-mix(in srgb, var(--frontend-theme, #12663f) 9%, #fff);
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 16%, #d8e0dd);
	color: var(--frontend-theme, #12663f);
}

.p-news-eventticket .event-ticket-main h1 {
	color: color-mix(in srgb, var(--frontend-theme, #12663f) 58%, #111827);
	font-size: clamp(1.55rem, 3vw, 2.25rem);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.28;
	margin: 0;
}

.p-news-eventticket .event-ticket-code {
	background: color-mix(in srgb, var(--frontend-theme, #12663f) 7%, #fff);
	border: 1px dashed color-mix(in srgb, var(--frontend-theme, #12663f) 35%, #d8e0dd);
	border-radius: .8rem;
	display: inline-grid;
	gap: .28rem;
	justify-self: flex-start;
	padding: .8rem 1rem;
}

.p-news-eventticket .event-ticket-code span {
	align-items: center;
	color: #64748b;
	display: inline-flex;
	font-size: .78rem;
	font-weight: 900;
	gap: .4rem;
	line-height: 1;
}

.p-news-eventticket .event-ticket-code span i {
	color: var(--frontend-theme, #12663f);
	font-size: .84rem;
}

.p-news-eventticket .event-ticket-code strong {
	color: var(--frontend-theme, #12663f);
	font-size: clamp(1.15rem, 2.4vw, 1.55rem);
	font-weight: 900;
	letter-spacing: .08em;
	line-height: 1;
}

.p-news-eventticket .event-ticket-facts {
	display: grid;
	gap: .65rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.p-news-eventticket .event-ticket-facts span {
	align-items: center;
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 12%, #e2e8f0);
	border-radius: .75rem;
	color: #475569;
	display: inline-flex;
	font-size: .9rem;
	font-weight: 800;
	gap: .55rem;
	min-height: 2.5rem;
	padding: .62rem .75rem;
}

.p-news-eventticket .event-ticket-facts i {
	color: var(--frontend-theme, #12663f);
}

.p-news-eventticket .event-ticket-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: .7rem;
	justify-content: flex-end;
	margin-top: .2rem;
}

.p-news-eventticket .event-ticket-action-btn {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	min-height: 2.45rem;
}

.p-news-eventticket .event-ticket-qr-panel {
	align-content: center;
	align-items: center;
	background: color-mix(in srgb, var(--frontend-theme, #12663f) 5%, #f8fafc);
	border-left: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 12%, #e2e8f0);
	display: grid;
	gap: .9rem;
	justify-items: center;
	min-width: 0;
	padding: clamp(1.35rem, 3vw, 2rem);
	text-align: center;
}

.p-news-eventticket .event-ticket-qr-box {
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 14%, #e2e8f0);
	border-radius: .85rem;
	box-sizing: border-box;
	box-shadow: 0 .65rem 1.25rem rgba(15, 23, 42, .08), inset 0 1px 0 rgba(255, 255, 255, .95);
	max-width: 100%;
	padding: .7rem;
	width: min(100%, 19rem);
}

.p-news-eventticket .event-ticket-qr-box img {
	display: block;
	height: auto;
	max-width: 100%;
	width: 100%;
}

.p-news-eventticket .event-ticket-qr-panel p,
.p-news-eventticket .event-ticket-empty p {
	color: #64748b;
	line-height: 1.7;
	margin: 0;
	max-width: 19rem;
}

.p-news-eventticket .event-ticket-empty {
	align-items: center;
	display: grid;
	gap: .8rem;
	justify-items: center;
	margin-inline: auto;
	max-width: 34rem;
	padding: clamp(2rem, 5vw, 3rem) 0;
	text-align: center;
}

.p-news-eventticket .event-ticket-empty-icon {
	align-items: center;
	background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--frontend-theme, #12663f) 10%, #fff) 100%);
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 18%, #d8e0dd);
	border-radius: 50%;
	color: var(--frontend-theme, #12663f);
	display: inline-flex;
	font-size: 1.8rem;
	height: 4rem;
	justify-content: center;
	width: 4rem;
}

.p-news-eventticket .event-ticket-empty h2 {
	color: #213529;
	font-size: clamp(1.35rem, 2.4vw, 1.9rem);
	font-weight: 900;
	margin: 0;
}

@media (max-width: 991.98px) {
	.p-news-eventticket .event-ticket-card {
		grid-template-columns: 1fr;
	}

	.p-news-eventticket .event-ticket-qr-panel {
		border-left: 0;
		border-top: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 12%, #e2e8f0);
	}
}

@media (max-width: 575.98px) {
	.p-news-eventticket .event-ticket-facts {
		grid-template-columns: 1fr;
	}

	.p-news-eventticket .event-ticket-actions {
		display: grid;
	}

	.p-news-eventticket .event-ticket-actions .btn {
		width: 100%;
	}
}

@media print {
	.p-news-eventticket .event-ticket-actions,
	.p-news-eventticket + footer,
	.navbar,
	.footer {
		display: none !important;
	}

	.p-news-eventticket .event-ticket-card {
		box-shadow: none;
	}
}

/* =====================
   Member/MyRegistrations page styles
   Scoped under .p-member-myregistrations
===================== */
.p-member-myregistrations .my-registrations-panel {
	background: rgba(255, 255, 255, .98);
}

.p-member-myregistrations .my-registrations-news-grid .blog-card.is-event-unavailable {
	background: #eef1f0;
	border-color: #d5dcda !important;
	box-shadow: none !important;
	cursor: not-allowed;
	filter: grayscale(1);
	opacity: .68;
	pointer-events: none;
	transform: none !important;
}

.p-member-myregistrations .my-registrations-news-grid .blog-card.is-event-unavailable :is(.news-tag, .news-card-date-overlay, .news-card-location, .my-registration-pill) {
	box-shadow: none;
}

.my-registration-ticket-modal .modal-dialog {
	max-width: min(92vw, 34rem);
}

.my-registration-ticket-modal .modal-content {
	background: #fff !important;
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 14%, #dce5e0) !important;
	border-radius: .8rem !important;
	box-shadow: 0 1.4rem 3.25rem rgba(15, 23, 42, .2) !important;
	max-height: calc(100vh - 1.5rem);
	overflow: hidden;
}

.frontend-bootstrap-modal.my-registration-ticket-modal .modal-header {
	align-items: center;
	background: var(--frontend-theme, #12663f);
	border-bottom: 0;
	flex: 0 0 auto;
	justify-content: center;
	min-height: 6.4rem;
	padding: 1rem 3.75rem;
	position: relative;
	text-align: center;
}

.my-registration-ticket-modal-title-wrap {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: .4rem;
	justify-content: center;
	min-width: 0;
	width: 100%;
}

.my-registration-ticket-modal-icon {
	display: none;
}

.my-registration-ticket-modal-kicker {
	color: rgba(255, 255, 255, .88);
	display: block;
	font-size: .78rem;
	font-weight: 700;
	line-height: 1.45;
}

.frontend-bootstrap-modal.my-registration-ticket-modal .modal-header .modal-title {
	color: #fff !important;
	font-size: 1.35rem;
	font-weight: 900;
	justify-content: center;
	line-height: 1.3;
	margin: 0;
}

.my-registration-ticket-modal .modal-header .my-registration-pill {
	border-color: rgba(255, 255, 255, .72) !important;
	box-shadow: 0 .3rem .75rem rgba(15, 23, 42, .16);
	margin-top: .2rem;
}

.frontend-bootstrap-modal.my-registration-ticket-modal .modal-header .btn-close {
	background-color: rgba(255, 255, 255, .94);
	border: 1px solid rgba(255, 255, 255, .72);
	border-radius: 50%;
	box-shadow: none;
	position: absolute;
	right: 1rem;
	top: 1rem;
}

.frontend-bootstrap-modal.my-registration-ticket-modal .modal-body {
	display: grid;
	gap: .65rem;
	justify-items: stretch;
	overflow-y: auto;
	padding: 1.15rem 1.65rem;
	text-align: left;
}

.my-registration-ticket-modal-heading {
	display: grid;
	gap: .45rem;
	justify-items: start;
	width: 100%;
}

.my-registration-ticket-modal-category {
	background: color-mix(in srgb, var(--frontend-theme, #12663f) 9%, #fff);
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 16%, #d8e0dd);
	border-radius: .3rem;
	color: var(--frontend-theme, #12663f);
	font-size: .72rem;
	font-weight: 900;
	line-height: 1;
	padding: .34rem .55rem;
}

.my-registration-ticket-modal-heading h3 {
	color: color-mix(in srgb, var(--frontend-theme, #12663f) 58%, #111827);
	font-size: clamp(1.05rem, 3vw, 1.22rem);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.55;
	margin: 0;
	max-width: none;
}

.my-registration-ticket-modal-code {
	align-items: center;
	background: transparent;
	border: 0;
	border-bottom: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 14%, #e2e8f0);
	border-radius: 0;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	padding: .65rem 0;
	width: 100%;
}

.my-registration-ticket-modal-code span {
	align-items: center;
	color: #64748b;
	display: inline-flex;
	font-size: .78rem;
	font-weight: 900;
	gap: .4rem;
	justify-content: flex-start;
	line-height: 1;
}

.my-registration-ticket-modal-code span i {
	color: var(--frontend-theme, #12663f);
}

.my-registration-ticket-modal-code strong {
	color: var(--frontend-theme, #12663f);
	font-size: .88rem;
	font-weight: 900;
	letter-spacing: .03em;
	line-height: 1.35;
	overflow-wrap: anywhere;
	text-align: right;
}

.my-registration-ticket-modal-qr {
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 34%, #d8e0dd);
	border-radius: .55rem;
	box-shadow: 0 .5rem 1.15rem rgba(15, 23, 42, .07);
	box-sizing: border-box;
	justify-self: center;
	max-width: 100%;
	padding: .55rem;
	width: min(100%, 14rem);
}

.my-registration-ticket-modal-qr img {
	display: block;
	height: auto;
	max-width: 100%;
	width: 100%;
}

.my-registration-ticket-modal-meta {
	display: block;
	width: 100%;
}

.my-registration-ticket-modal-meta > span {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: #64748b;
	display: flex;
	font-size: .84rem;
	font-weight: 800;
	gap: .35rem;
	justify-content: flex-start;
	line-height: 1.6;
	min-height: 0;
	padding: 0;
	white-space: normal;
	width: 100%;
}

.my-registration-ticket-modal-meta i,
.my-registration-ticket-modal-meta strong {
	color: var(--frontend-theme, #12663f);
}

.my-registration-ticket-modal-meta i {
	font-size: .76rem;
}

.my-registration-ticket-modal-meta strong {
	font-weight: 900;
}

.my-registration-ticket-modal-location {
	align-items: flex-start;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: #64748b;
	display: flex;
	font-size: .84rem;
	font-weight: 800;
	gap: .35rem;
	line-height: 1.6;
	max-width: none;
	padding: 0;
	width: 100%;
}

.my-registration-ticket-modal-location i,
.my-registration-ticket-modal-location strong {
	color: var(--frontend-theme, #12663f);
}

.my-registration-ticket-modal-location i {
	flex: 0 0 auto;
	margin-top: .15rem;
}

.my-registration-ticket-modal-location strong {
	overflow-wrap: anywhere;
}

.my-registration-ticket-modal-qr-title {
	color: var(--frontend-theme, #12663f);
	font-size: .86rem;
	font-weight: 900;
	margin: .55rem 0 0;
	text-align: center;
}

.my-registration-ticket-modal-note {
	background: #f8fafc;
	/*border-left: 3px solid var(--frontend-theme, #12663f);*/
	color: #64748b;
	display: grid;
	font-size: .78rem;
	gap: .22rem;
	line-height: 1.7;
	margin: .35rem 0 0;
	padding: .7rem .9rem;
	text-align: left;
	width: 100%;
}

.my-registration-ticket-modal-note strong {
	color: color-mix(in srgb, var(--frontend-theme, #12663f) 60%, #334155);
	font-size: .76rem;
	font-weight: 800;
}

.frontend-bootstrap-modal.my-registration-ticket-modal .modal-footer {
	background: #fff !important;
	border-top: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 10%, #e2e8f0);
	flex: 0 0 auto;
	gap: .55rem;
	justify-content: center;
	padding: 1rem 2rem 1.25rem;
}

.frontend-bootstrap-modal.my-registration-ticket-modal .modal-footer .btn {
	align-items: center;
	border-radius: .4rem;
	display: inline-flex;
	justify-content: center;
	min-height: 2.45rem;
	min-width: 8rem;
}


@media (max-width: 575.98px) {
	.frontend-bootstrap-modal.my-registration-ticket-modal .modal-header {
		min-height: 6.2rem;
		padding: 1rem 3.25rem;
	}

	.frontend-bootstrap-modal.my-registration-ticket-modal .modal-body {
		padding: 1.25rem;
	}

	.my-registration-ticket-modal-meta {
		width: 100%;
	}

	.my-registration-ticket-modal-meta > span {
		font-size: .78rem;
	}

	.frontend-bootstrap-modal.my-registration-ticket-modal .modal-footer {
		display: grid;
		padding: 1rem 1.25rem 1.2rem;
	}

	.frontend-bootstrap-modal.my-registration-ticket-modal .modal-footer .btn {
		width: 100%;
	}
}

.p-member-myregistrations .my-registrations-summary {
	align-items: center;
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 14%, #e2e8f0);
	border-radius: .75rem;
	box-shadow: 0 .5rem 1.2rem rgba(15, 23, 42, .055), inset 0 1px 0 rgba(255, 255, 255, .92);
	display: inline-flex;
	gap: .85rem;
	min-width: min(100%, 16rem);
	padding: 1rem 1.1rem;
}

.p-member-myregistrations .my-registrations-summary-icon {
	align-items: center;
	background:
		linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--frontend-theme, #12663f) 10%, #fff) 100%);
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 18%, #d8e0dd);
	border-radius: 50%;
	color: var(--frontend-theme, #12663f);
	display: inline-flex;
	flex: 0 0 2.55rem;
	font-size: 1rem;
	height: 2.55rem;
	justify-content: center;
	width: 2.55rem;
}

.p-member-myregistrations .my-registrations-summary-label {
	color: #64748b;
	display: block;
	font-size: .78rem;
	font-weight: 800;
	margin-bottom: .16rem;
}

.p-member-myregistrations .my-registrations-summary strong {
	color: var(--frontend-theme, #12663f);
	display: block;
	font-size: 1.45rem;
	font-weight: 900;
	line-height: 1;
}

.p-member-myregistrations .my-registrations-empty-state {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	display: grid;
	gap: .65rem;
	justify-items: center;
	margin-inline: auto;
	max-width: 34rem;
	padding: clamp(.85rem, 3vw, 1.55rem) 0 clamp(1.1rem, 3vw, 1.75rem);
	text-align: center;
}

.p-member-myregistrations .my-registrations-empty-icon {
	align-items: center;
	background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--frontend-theme, #12663f) 10%, #fff) 100%);
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 18%, #d8e0dd);
	border-radius: 50%;
	color: var(--frontend-theme, #12663f);
	display: inline-flex;
	font-size: 1.8rem;
	height: 4rem;
	justify-content: center;
	width: 4rem;
}

.p-member-myregistrations .my-registrations-empty-state h5 {
	color: #213529;
	font-size: 1.18rem;
	font-weight: 900;
	margin: 0;
}

.p-member-myregistrations .my-registrations-empty-state p {
	color: #64748b;
	line-height: 1.7;
	margin: 0;
}

.p-member-myregistrations .my-registrations-filter-empty {
	align-items: center;
	display: grid;
	gap: .65rem;
	justify-items: center;
	margin: 2rem auto 0;
	max-width: 34rem;
	padding: 1.55rem 0;
	text-align: center;
}

.p-member-myregistrations .my-registrations-filter-empty h5 {
	color: #213529;
	font-size: 1.08rem;
	font-weight: 900;
	margin: 0;
}

.p-member-myregistrations .my-registrations-filter-empty p {
	color: #64748b;
	line-height: 1.7;
	margin: 0;
}

.p-member-myregistrations .my-registrations-empty-action-section {
	align-items: center;
	background-image: none;
	padding-top: 1.15rem;
}

.p-member-myregistrations .my-registrations-empty-action-spacer {
	min-height: 1px;
}

.p-member-myregistrations .my-registrations-empty-action-section .register-section-body {
	display: flex;
	justify-content: center;
	width: 100%;
}

.p-member-myregistrations .my-registrations-empty-action {
	align-items: center;
	border-radius: 999px;
	box-shadow: 0 .75rem 1.45rem color-mix(in srgb, var(--frontend-theme, #12663f) 20%, transparent), inset 0 1px 0 rgba(255, 255, 255, .2);
	display: inline-flex;
	gap: .55rem;
	justify-content: center;
	min-height: 2.75rem;
	padding: .72rem 1.45rem .72rem .85rem;
	transition: box-shadow .18s ease, transform .18s ease;
}

.p-member-myregistrations .my-registrations-empty-action:hover,
.p-member-myregistrations .my-registrations-empty-action:focus {
	box-shadow: 0 .95rem 1.75rem color-mix(in srgb, var(--frontend-theme, #12663f) 25%, transparent), inset 0 1px 0 rgba(255, 255, 255, .24);
	transform: translateY(-1px);
}

.p-member-myregistrations .my-registrations-empty-action-icon {
	align-items: center;
	background: rgba(255, 255, 255, .18);
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 50%;
	color: #fff;
	display: inline-flex;
	flex: 0 0 1.85rem;
	font-size: .78rem;
	height: 1.85rem;
	justify-content: center;
	width: 1.85rem;
}

.p-member-myregistrations .my-registrations-grid {
	display: grid;
	gap: 1.05rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.p-member-myregistrations .my-registration-card {
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 14%, #e2e8f0);
	border-radius: .85rem;
	box-shadow: 0 .65rem 1.45rem rgba(15, 23, 42, .07), inset 0 1px 0 rgba(255, 255, 255, .92);
	display: grid;
	grid-template-columns: 1fr;
	overflow: hidden;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.p-member-myregistrations .my-registration-card:hover {
	border-color: color-mix(in srgb, var(--frontend-theme, #12663f) 28%, #d8e0dd);
	box-shadow: 0 .9rem 1.8rem rgba(15, 23, 42, .1), inset 0 1px 0 rgba(255, 255, 255, .95);
	transform: translateY(-1px);
}

.p-member-myregistrations .my-registration-media {
	background: color-mix(in srgb, var(--frontend-theme, #12663f) 7%, #fff);
	aspect-ratio: 16 / 9;
	min-height: 0;
	overflow: hidden;
}

.p-member-myregistrations .my-registration-media img {
	display: block;
	height: 100%;
	object-fit: fill;
	width: 100%;
}

.p-member-myregistrations .my-registration-content {
	display: grid;
	gap: .75rem;
	min-width: 0;
	padding: 1.05rem 1.15rem;
}

.p-member-myregistrations .my-registration-meta {
	display: flex;
	flex-wrap: wrap;
	gap: .45rem;
}

.p-member-myregistrations .my-registration-pill {
	align-items: center;
	background: color-mix(in srgb, var(--frontend-theme, #12663f) 9%, #fff);
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 16%, #d8e0dd);
	border-radius: 999px;
	color: var(--frontend-theme, #12663f);
	display: inline-flex;
	font-size: .76rem;
	font-weight: 800;
	gap: .32rem;
	line-height: 1;
	min-height: 1.65rem;
	padding: .28rem .62rem;
}

.p-member-myregistrations .my-registration-pill-success {
	background: #198754;
	border-color: #198754;
	color: #fff;
}

.p-member-myregistrations .my-registration-pill-pending {
	background: #fff6dd;
	border-color: #ead39b;
	color: #8a5a08;
}

.p-member-myregistrations .my-registration-pill-used {
	background: #dcecff;
	border-color: #bdd8f5;
	color: #1d4f91;
}

.p-member-myregistrations .my-registration-pill-cancelled {
	background: #fde2e1;
	border-color: #f7c8c5;
	color: #8a241f;
}

.p-member-myregistrations .my-registration-card h4 {
	color: color-mix(in srgb, var(--frontend-theme, #12663f) 58%, #111827);
	font-size: 1.18rem;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.35;
	margin: 0;
}

.p-member-myregistrations .my-registration-card p {
	color: #4b5b52;
	line-height: 1.7;
	margin: 0;
}

.p-member-myregistrations .my-registration-facts {
	display: flex;
	flex-wrap: wrap;
	gap: .55rem;
}

.p-member-myregistrations .my-registration-facts span {
	align-items: center;
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 14%, #e2e8f0);
	border-radius: 999px;
	color: color-mix(in srgb, var(--frontend-theme, #12663f) 72%, #475569);
	display: inline-flex;
	font-size: .82rem;
	font-weight: 800;
	gap: .35rem;
	line-height: 1;
	min-height: 1.85rem;
	padding: .35rem .68rem;
}

.p-member-myregistrations .my-registration-facts i {
	color: var(--frontend-theme, #12663f);
}

.p-member-myregistrations .my-registration-note {
	background: color-mix(in srgb, var(--frontend-theme, #12663f) 4%, #fff);
	border: 1px solid color-mix(in srgb, var(--frontend-theme, #12663f) 12%, #e2e8f0);
	border-radius: .65rem;
	padding: .75rem .85rem;
}

.p-member-myregistrations .my-registration-note span {
	color: color-mix(in srgb, var(--frontend-theme, #12663f) 58%, #64748b);
	display: inline-block;
	font-size: .78rem;
	font-weight: 900;
	margin-bottom: .24rem;
}

.p-member-myregistrations .my-registration-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: .7rem;
	justify-content: flex-end;
	margin-top: .15rem;
}

.p-member-myregistrations .my-registration-unavailable {
	align-items: center;
	color: #64748b;
	display: inline-flex;
	font-size: .86rem;
	font-weight: 800;
	gap: .36rem;
}

@media (max-width: 991.98px) {
	.p-member-myregistrations .my-registrations-empty-action-spacer {
		display: none;
	}
}

@media (max-width: 767.98px) {
	.p-member-myregistrations .my-registrations-grid {
		grid-template-columns: 1fr;
	}

	.p-member-myregistrations .my-registration-card {
		grid-template-columns: 1fr;
	}

	.p-member-myregistrations .my-registration-media {
		aspect-ratio: 16 / 9;
		min-height: 0;
	}

	.p-member-myregistrations .my-registration-actions {
		justify-content: flex-start;
	}
}

/* =====================
   ContactInformation/ContactInformation page styles
   Scoped under .p-contactinformation-contactinformation
===================== */
.p-contactinformation-contactinformation .section-eyebrow { letter-spacing: .25em; text-transform: uppercase; font-size: .75rem; }
.p-contactinformation-contactinformation .contact-form-section {
	grid-template-columns: minmax(0, 1fr);
}
.p-contactinformation-contactinformation .contact-info-section {
	background-image: none;
	grid-template-columns: minmax(0, 1fr);
}
.p-contactinformation-contactinformation .contact-info-section .register-section-title,
.p-contactinformation-contactinformation .contact-info-section .register-section-body {
	box-sizing: border-box;
	padding-inline: .5rem;
	width: 100%;
}
.p-contactinformation-contactinformation .contact-form__heading,
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-article-heading-row.contact-form__heading {
	align-items: center;
	box-sizing: border-box;
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	padding-bottom: 1.35rem;
	padding-inline: .5rem;
	position: relative;
	width: 100%;
}
.p-contactinformation-contactinformation .contact-form__heading::after,
:is(.p-blogs-blogsdetail, .p-exhibitor-exhibitordetail) .blog-article-heading-row.contact-form__heading::after {
	background: url("data:image/svg+xml,%3Csvg width='28' height='10' viewBox='0 0 28 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5 Q 7 0 14 5 T 28 5' fill='none' stroke='%23c7ccd1' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") 0 50% / 28px 10px repeat-x;
	bottom: 0;
	content: "";
	height: 10px;
	left: .5rem;
	opacity: 1;
	position: absolute;
	right: .5rem;
}
.p-contactinformation-contactinformation .contact-form__heading-text {
	display: grid;
	flex: 1 1 auto;
	gap: .55rem;
	min-width: 0;
	position: relative;
	padding-bottom: 1.05rem;
	text-align: left;
}
/*.p-contactinformation-contactinformation .contact-form__heading-text::after {
	background: linear-gradient(90deg, var(--frontend-theme), color-mix(in srgb, var(--frontend-theme) 18%, transparent));
	border-radius: 999px;
	bottom: 0;
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	width: min(11rem, 42%);
}*/
.p-contactinformation-contactinformation .contact-form__heading-text .section-eyebrow {
	align-items: center;
	background: color-mix(in srgb, var(--frontend-theme) 10%, #fff);
	border: 1px solid color-mix(in srgb, var(--frontend-theme) 22%, transparent);
	border-radius: 999px;
	color: var(--frontend-theme) !important;
	display: inline-flex;
	font-size: .78rem;
	font-weight: 800 !important;
	justify-self: flex-start;
	letter-spacing: 0;
	line-height: 1;
	padding: .42rem .76rem;
	text-transform: none;
}
.p-contactinformation-contactinformation .contact-form__heading-text .h3 {
	color: #1f3328 !important;
	font-size: clamp(1.45rem, 2.15vw, 2.35rem);
	line-height: 1.22;
	margin: .15rem 0 0;
	max-width: 44rem;
	text-wrap: balance;
}
.p-contactinformation-contactinformation .contact-form__heading-text .text-muted {
	color: #5f6f66 !important;
	font-size: 1rem;
	line-height: 1.75;
	max-width: 38rem;
}
.p-contactinformation-contactinformation .contact-form__heading-media {
	display: flex;
	flex: 0 0 auto;
	justify-content: flex-end;
	margin-left: auto;
}
.p-contactinformation-contactinformation .contact-form__image { display: block; width: 100%; max-width: 230px; height: auto; object-fit: fill; }
@media (max-width: 991.98px) {
	.p-contactinformation-contactinformation .contact-form__heading { gap: 1.25rem; }
	.p-contactinformation-contactinformation .contact-form__image { max-width: 180px; }
	.p-contactinformation-contactinformation .contact-form__heading-text .h3 { font-size: 1.45rem; line-height: 1.35; }
	.p-contactinformation-contactinformation .contact-form__heading-text .text-muted { font-size: .95rem; }
}
@media (max-width: 575.98px) {
	.p-contactinformation-contactinformation .contact-form__heading { flex-direction: column; align-items: stretch; text-align: left; gap: 1rem; }
	.p-contactinformation-contactinformation .contact-form__heading-media { justify-content: flex-end; width: 100%; }
	.p-contactinformation-contactinformation .contact-form__image { max-width: 140px; }
	.p-contactinformation-contactinformation .contact-form__heading-text .section-eyebrow { font-size: .72rem; }
	.p-contactinformation-contactinformation .contact-form__heading-text .h3 { font-size: 1.25rem; line-height: 1.35; margin-top: .5rem; }
	.p-contactinformation-contactinformation .contact-form__heading-text .text-muted { font-size: .95rem; }
}
.p-contactinformation-contactinformation .contact-form__body .form-label {
	align-items: center;
	color: #2a3d2a;
	display: inline-flex;
	flex-wrap: wrap;
	font-weight: 600;
	gap: .38rem;
}
.p-contactinformation-contactinformation .contact-form-label-icon {
	color: var(--frontend-theme);
	flex: 0 0 1.08rem;
	font-size: .94em;
	line-height: 1;
	text-align: center;
}
.p-contactinformation-contactinformation .contact-form__body .form-control {
	border: 1px solid #dee2e6; border-radius: 1rem; padding: .9rem 1.1rem; background: #fff; transition: all .2s;
}
.p-contactinformation-contactinformation .contact-form__body .form-control:focus { border-color: var(--frontend-theme); background: var(--color-white); box-shadow: 0 0 0 .2rem color-mix(in srgb, var(--frontend-theme) 15%, transparent); }
.p-contactinformation-contactinformation .contact-form__heading-media img { transition: transform 0.3s ease, opacity 0.3s ease; }
.p-contactinformation-contactinformation .contact-form__heading-media a:hover img { transform: scale(1.05); opacity: 0.9; }
.p-contactinformation-contactinformation .contact-info-carousel { margin-inline: -.5rem; }
.p-contactinformation-contactinformation .contact-info-carousel .home-carousel-viewport { padding: .5rem 0; }
.p-contactinformation-contactinformation .contact-info-carousel .home-carousel-card {
	background: #fff;
	border-radius: .9rem;
	box-shadow: inset 0 0 0 1px rgba(25, 60, 42, .08), 0 .35rem 1.1rem rgba(25, 60, 42, .08) !important;
	cursor: default;
	transition: box-shadow .2s ease, transform .2s ease;
}
.p-contactinformation-contactinformation .contact-info-carousel .home-carousel-card:hover {
	box-shadow: inset 0 0 0 1px rgba(25, 60, 42, .16), 0 .75rem 1.7rem rgba(25, 60, 42, .14) !important;
	transform: translateY(-3px);
}
.p-contactinformation-contactinformation .contact-info-carousel .home-carousel-card .card-body {
	min-height: 18rem;
	padding: 1.15rem !important;
}
.p-contactinformation-contactinformation .contact-info-carousel .contact-info-card-heading {
	background: transparent;
	border-bottom: 1px solid #c7ccd1;
	border-radius: 0;
	color: var(--frontend-theme);
	margin-bottom: 1.05rem;
	overflow: visible;
	padding: 0 0 1rem;
	position: relative;
}
.p-contactinformation-contactinformation .contact-info-carousel .contact-info-card-heading::after {
	content: none;
}
.p-contactinformation-contactinformation .contact-info-carousel .contact-info-card-kicker {
	display: block;
	font-size: .78rem;
	letter-spacing: .42em;
	line-height: 1.2;
	margin-bottom: .45rem;
	text-transform: uppercase;
}
.p-contactinformation-contactinformation .contact-info-carousel .contact-info-card-heading .contact-info-card-title {
	color: var(--frontend-theme) !important;
	font-size: clamp(1.45rem, 2.1vw, 1.85rem);
	line-height: 1.25;
	padding-bottom: 0;
}
.p-contactinformation-contactinformation .contact-info-carousel .home-carousel-card-title-compact {
	color: var(--frontend-theme) !important;
	line-height: 1.35;
}
.p-contactinformation-contactinformation .contact-info-carousel .carousel-slide .card-text.home-carousel-card-text-compact,
.p-contactinformation-contactinformation .contact-info-carousel .carousel-slide .card-text.home-carousel-card-text-mobile {
	-webkit-box-orient: unset !important;
	-webkit-line-clamp: unset !important;
	display: block !important;
	font-size: .96rem;
	line-height: 1.7;
	overflow: visible !important;
	overflow-wrap: anywhere;
	word-break: break-word;
}
.p-contactinformation-contactinformation .contact-info-carousel .home-carousel-card-text-compact p:last-child,
.p-contactinformation-contactinformation .contact-info-carousel .home-carousel-card-text-mobile p:last-child {
	margin-bottom: 0;
}
.p-contactinformation-contactinformation .contact-info-carousel .home-carousel-card-text-compact a,
.p-contactinformation-contactinformation .contact-info-carousel .home-carousel-card-text-mobile a {
	color: var(--frontend-theme);
	font-weight: 600;
	text-decoration: none;
}
.p-contactinformation-contactinformation .contact-info-carousel .home-carousel-card-text-compact img,
.p-contactinformation-contactinformation .contact-info-carousel .home-carousel-card-text-compact iframe,
.p-contactinformation-contactinformation .contact-info-carousel .home-carousel-card-text-mobile img,
.p-contactinformation-contactinformation .contact-info-carousel .home-carousel-card-text-mobile iframe {
	border-radius: .7rem;
	max-width: 100%;
}
.p-contactinformation-contactinformation .contact-info-carousel .nav-button.prev { left: -18px; }
.p-contactinformation-contactinformation .contact-info-carousel .nav-button.next { right: -18px; }
.p-contactinformation-contactinformation .contact-info-carousel.is-card-hovered .nav-button,
.p-contactinformation-contactinformation .contact-info-carousel:focus-within .nav-button,
.p-contactinformation-contactinformation .contact-info-carousel .nav-button:is(:hover, :focus-visible) {
    opacity: 1;
    pointer-events: auto;
}
.p-contactinformation-contactinformation .contact-info-carousel .nav-button:disabled {
    cursor: not-allowed;
    opacity: .35;
    pointer-events: none;
    transform: translateY(-50%);
}
@media (max-width: 1024px) {
	.p-contactinformation-contactinformation .contact-info-carousel .nav-button.prev { left: 2px; }
	.p-contactinformation-contactinformation .contact-info-carousel .nav-button.next { right: 2px; }
}

/* =====================
   Questions/Questions page styles
   Scoped under .p-questions-questions
===================== */
.p-questions-questions #faqAccordion {
	align-items: start;
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.p-questions-questions .faq-list-wrap {
	width: 100%;
}

.p-questions-questions #faqAccordion > .alert {
	background: color-mix(in srgb, var(--frontend-theme) 6%, #fff);
	border: 1px solid color-mix(in srgb, var(--frontend-theme) 16%, transparent);
	border-radius: .75rem;
	color: #43564a;
	grid-column: 1 / -1;
	font-weight: 700;
	margin: 0;
	padding: 1.5rem;
	text-align: center;
}

.p-questions-questions .faq-card {
	background: var(--color-white);
	border: 1px solid rgba(20, 35, 27, .1);
	border-radius: .85rem !important;
	box-shadow: 0 .55rem 1.4rem rgba(20, 35, 27, .07) !important;
	margin-bottom: 0 !important;
	overflow: hidden;
	position: relative;
	transition: border-color .22s ease, box-shadow .22s ease;
}

.p-questions-questions .faq-card:has(.accordion-button:not(.collapsed)) {
	border-color: var(--frontend-theme);
	border-style: solid;
	border-width: 2px;
	box-shadow: 0 0 0 .22rem color-mix(in srgb, var(--frontend-theme) 13%, transparent), 0 1rem 2.1rem rgba(20, 35, 27, .13) !important;
}

.p-questions-questions .accordion-button {
	align-items: center;
	background-color: var(--color-white);
	border: none;
	box-shadow: none;
	color: #24352b;
	cursor: pointer;
	display: flex;
	gap: 1rem;
	line-height: 1.5;
	min-height: 5.1rem;
	overflow: hidden;
	padding: 1.15rem 1.45rem;
	position: relative;
	transition: background-color .22s ease, color .22s ease;
}

.p-questions-questions .accordion-button:not(.collapsed) {
	background-color: color-mix(in srgb, var(--frontend-theme) 4%, #fff);
	box-shadow: inset 0 -1px 0 color-mix(in srgb, var(--frontend-theme) 22%, transparent);
	color: var(--frontend-theme);
}

.p-questions-questions .accordion-button::after {
	background-image: none !important;
	border-bottom: 2px solid color-mix(in srgb, var(--frontend-theme) 78%, #0d6efd);
	border-right: 2px solid color-mix(in srgb, var(--frontend-theme) 78%, #0d6efd);
	content: "";
	flex: 0 0 .72rem;
	height: .72rem;
	margin-left: .85rem;
	position: relative;
	transform: rotate(45deg);
	transition: border-color .22s ease, transform .22s ease;
	width: .72rem;
	z-index: 1;
}

.p-questions-questions .accordion-button:not(.collapsed)::after {
	border-color: var(--frontend-theme);
	transform: rotate(225deg);
}

.p-questions-questions .faq-card-icon {
	align-items: center;
	background-color: color-mix(in srgb, var(--frontend-theme) 10%, #fff);
	border: 1px solid color-mix(in srgb, var(--frontend-theme) 18%, transparent);
	border-radius: .8rem;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 .42rem .9rem rgba(20, 35, 27, .07);
	color: var(--frontend-theme);
	display: inline-flex;
	flex: 0 0 3rem;
	font-size: 1.1rem;
	height: 3rem;
	justify-content: center;
	position: relative;
	transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease, color .22s ease;
	width: 3rem;
	z-index: 1;
}

.p-questions-questions .accordion-button:not(.collapsed) .faq-card-icon {
	background-color: var(--frontend-theme);
	border-color: var(--frontend-theme);
	box-shadow: 0 .55rem 1.15rem color-mix(in srgb, var(--frontend-theme) 22%, transparent);
	color: var(--color-white);
}

.p-questions-questions .faq-card-copy {
	display: grid;
	flex: 1 1 auto;
	gap: .35rem;
	min-width: 0;
	position: relative;
	text-align: left;
	z-index: 1;
}

.p-questions-questions .faq-card-category {
	align-items: center;
	background-color: color-mix(in srgb, var(--frontend-theme) 7%, #fff);
	border: 1px solid color-mix(in srgb, var(--frontend-theme) 16%, transparent);
	border-radius: 999px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
	color: var(--frontend-theme);
	display: inline-flex;
	font-size: .78rem;
	font-weight: 800;
	justify-self: start;
	line-height: 1;
	max-width: 100%;
	overflow: hidden;
	padding: .34rem .6rem;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.p-questions-questions .faq-card-title {
	color: #24352b;
	display: block;
	font-size: 1.06rem;
	font-weight: 800;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.p-questions-questions .accordion-button:not(.collapsed) .faq-card-category {
	border-color: color-mix(in srgb, var(--frontend-theme) 42%, transparent);
}

.p-questions-questions .accordion-button:not(.collapsed) .faq-card-title {
	color: var(--frontend-theme);
}

.p-questions-questions .accordion-body {
	background: var(--color-white);
	color: #4f6256;
	line-height: 1.85;
	padding: 0 1.5rem 1.45rem 5.95rem;
}

.p-questions-questions .accordion-body::before {
	background: rgba(20, 35, 27, .08);
	content: "";
	display: block;
	height: 1px;
	margin: 0 0 1.05rem;
	width: 100%;
}

.p-questions-questions .faq-card:has(.accordion-button:not(.collapsed)) .accordion-body::before {
	background: color-mix(in srgb, var(--frontend-theme) 28%, transparent);
}

.p-questions-questions .accordion-body p:last-child {
	margin-bottom: 0;
}
.p-questions-questions .faq-item { transition: all 0.3s ease; }
.p-questions-questions .faq-item.hidden { display: none; }
.p-questions-questions .bg-gradient { background: linear-gradient(135deg, var(--frontend-theme) 0%, color-mix(in srgb, var(--frontend-theme) 78%, #fff) 100%); }
.p-questions-questions .faq-content-section { opacity: 1; }
.p-questions-questions .page-hidden { display: none !important; }
@media (max-width: 991.98px) {
	.p-questions-questions #faqAccordion {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 575.98px) {
	.p-questions-questions #faqAccordion {
		gap: .8rem;
	}

	.p-questions-questions .accordion-button {
		align-items: flex-start;
		gap: .75rem;
		min-height: 4.35rem;
		padding: 1rem;
	}

	.p-questions-questions .accordion-button::after {
		margin-left: .35rem;
		margin-top: .45rem;
	}

	.p-questions-questions .faq-card-icon {
		border-radius: .7rem;
		flex-basis: 2.45rem;
		font-size: .98rem;
		height: 2.45rem;
		width: 2.45rem;
	}

	.p-questions-questions .faq-card-category {
		font-size: .72rem;
		max-width: min(100%, 12rem);
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.p-questions-questions .faq-card-title {
		font-size: .98rem;
	}

	.p-questions-questions .accordion-body {
		padding: 0 1rem 1.2rem;
	}

}

@media (prefers-reduced-motion: reduce) {
	.p-questions-questions .faq-item,
	.p-questions-questions .faq-card,
	.p-questions-questions .accordion-button,
	.p-questions-questions .accordion-button::after,
	.p-questions-questions .faq-card-icon {
		transition: none;
	}
}

/* =====================
   AboutUsOne/AboutUsOne page styles
   Scoped under .p-aboutusone-aboutusone
===================== */
.p-aboutusone-aboutusone .about-img {
	width: 100%;
	max-width: 520px;
	aspect-ratio: 6 / 5;
	object-fit: fill;
	display: block;
	border-radius: 20px 20px 20px 20px;
}
.p-aboutusone-aboutusone .about-media {
	display: flex;
	justify-content: flex-start;
}
.p-aboutusone-aboutusone .about-media-right {
	justify-content: flex-end;
}
.p-aboutusone-aboutusone .about-content p { margin-bottom: 1rem; }
.p-aboutusone-aboutusone .about-content img { max-width: 100%; height: auto; }
@media (max-width: 991.98px) {
	.p-aboutusone-aboutusone .about-img { aspect-ratio: 16 / 9; max-width: none; object-fit: fill; }
	.p-aboutusone-aboutusone .about-media-right { justify-content: flex-start; }
	.p-aboutusone-aboutusone .about-content { text-align: left; }
	.p-aboutusone-aboutusone .about-block { margin-bottom: 2rem !important; }
}
@media (max-width: 575.98px) {
	.p-aboutusone-aboutusone .about-img {
		aspect-ratio: auto; max-height: 45vh; object-fit: fill; background: #f8f9fa;
		border-radius: .75rem; box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
	}
	.p-aboutusone-aboutusone .about-content { text-align: center; }
	.p-aboutusone-aboutusone .about-content p { margin-bottom: .875rem; line-height: 1.7; }
	.p-aboutusone-aboutusone .about-block { margin-bottom: 1.5rem !important; }
}



/* =====================
   圖文編輯器 (表格)
===================== */
.rich-table-responsive {
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	margin: 1rem 0;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	background: #fff;
	-webkit-overflow-scrolling: touch;
}

.rich-table-responsive table,
table.rich-editor-table {
	width: 100%;
	min-width: 640px;
	margin: 0;
	border-collapse: collapse;
	border-spacing: 0;
	background: #fff;
}

.rich-table-responsive th,
.rich-table-responsive td,
table.rich-editor-table th,
table.rich-editor-table td {
	min-width: 120px;
	padding: .75rem .9rem;
	border: 1px solid #e9ecef;
	vertical-align: top;
	line-height: 1.7;
	overflow-wrap: anywhere;
	word-break: break-word;
}

	.rich-table-responsive th,
	table.rich-editor-table th {
		font-weight: 700;
		color: #212529;
		/*background: var(--soft-cream, #f8f9fa);*/
		white-space: nowrap;
	}

.rich-table-responsive thead th,
table.rich-editor-table thead th {
	background: color-mix(in srgb, var(--frontend-theme) 12%, #fff);
}

.rich-table-responsive tbody tr:nth-child(even),
table.rich-editor-table tbody tr:nth-child(even) {
	background: #fbfcfd;
}

.rich-table-responsive caption,
table.rich-editor-table caption {
	padding: .75rem .9rem;
	color: #6c757d;
	text-align: left;
	caption-side: top;
}

.rich-table-responsive p,
.rich-table-responsive ul,
.rich-table-responsive ol {
	margin-bottom: 0;
}

@media (max-width: 575.98px) {
	.rich-table-responsive table,
	table.rich-editor-table {
		min-width: 560px;
	}

	.rich-table-responsive th,
	.rich-table-responsive td,
	table.rich-editor-table th,
	table.rich-editor-table td {
		min-width: 110px;
		padding: .65rem .75rem;
	}
}

@media (max-width: 1024px) {
	.p-homeone-index .position-relative > .nav-button {
		width: 42px;
		height: 42px;
	}
}

@media (max-width: 575.98px) {
	.p-homeone-index #products,
	.p-homeone-index #news {
		overflow-x: hidden;
	}
}
