/* Containers - page-level wrapperi */
.ot-container-s { width: 100%; max-width: 768px; margin: 0 auto; padding: 0 calc(var(--ot-spacing-m) * 2); }
.ot-container-m { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 calc(var(--ot-spacing-m) * 2); }
.ot-container-l { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 calc(var(--ot-spacing-m) * 2); }
.ot-container-full { width: 100%; padding: 0 calc(var(--ot-spacing-m) * 2); }

@media screen and (max-width: 900px)
{
    .ot-container-s,
    .ot-container-m,
    .ot-container-l,
    .ot-container-full
    {
        padding: 0 var(--ot-spacing-m);
    }
}

/* Grid - responsive auto layouts */
.ot-grid-auto-s { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: var(--ot-spacing-s); }
.ot-grid-auto-m { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: var(--ot-spacing-m); }
.ot-grid-auto-l { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--ot-spacing-m); }

/* Scrollbar - opt-in tanke skrol regije */
.ot-scrollbar { overflow: auto; scrollbar-width: thin; scrollbar-color: var(--ot-bg-4) var(--ot-bg-1); }
.ot-scrollbar::-webkit-scrollbar { width: 8px; height: 8px; }
.ot-scrollbar::-webkit-scrollbar-track { background: var(--ot-bg-1); }
.ot-scrollbar::-webkit-scrollbar-thumb { background: var(--ot-bg-4); border-radius: 4px; }
.ot-scrollbar::-webkit-scrollbar-thumb:hover { background: var(--ot-bg-4-hover); }

/* Truncate - single line ellipsis */
.ot-truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }

/* Line clamp - multi-line ellipsis */
.ot-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ot-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.ot-clamp-4 { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }

/* Flex */

.ot-flex-vertical { display: flex; flex-direction: column; gap: var(--ot-spacing-l); }
.ot-flex-horizontal { display: flex; gap: var(--ot-spacing-l); }
.ot-flex-between { display: flex; align-items: center; justify-content: space-between; gap: var(--ot-spacing-m); }
.ot-flex-center { display: flex; align-items: center; justify-content: center; gap: var(--ot-spacing-m); }
.ot-flex-start { display: flex; align-items: center; gap: var(--ot-spacing-m); }
.ot-flex-end { display: flex; align-items: center; justify-content: flex-end; gap: var(--ot-spacing-m); }
.ot-flex-wrap { display: flex; flex-wrap: wrap; gap: var(--ot-spacing-m); }
.ot-flex-1 { flex: 1; min-width: 0; }

/* Gap overrides */

.ot-gap-0 { gap: 0; }
.ot-gap-x { gap: var(--ot-spacing-x); }
.ot-gap-s { gap: var(--ot-spacing-s); }
.ot-gap-m { gap: var(--ot-spacing-m); }
.ot-gap-l { gap: var(--ot-spacing-l); }
.ot-p-0 { padding: 0; }
.ot-p-x { padding: var(--ot-spacing-x); }
.ot-p-s { padding: var(--ot-spacing-s); }
.ot-p-m { padding: var(--ot-spacing-m); }
.ot-p-l { padding: var(--ot-spacing-l); }

.ot-px-0 { padding-left: 0; padding-right: 0; }
.ot-px-x { padding-left: var(--ot-spacing-x); padding-right: var(--ot-spacing-x); }
.ot-px-s { padding-left: var(--ot-spacing-s); padding-right: var(--ot-spacing-s); }
.ot-px-m { padding-left: var(--ot-spacing-m); padding-right: var(--ot-spacing-m); }
.ot-px-l { padding-left: var(--ot-spacing-l); padding-right: var(--ot-spacing-l); }

.ot-py-0 { padding-top: 0; padding-bottom: 0; }
.ot-py-x { padding-top: var(--ot-spacing-x); padding-bottom: var(--ot-spacing-x); }
.ot-py-s { padding-top: var(--ot-spacing-s); padding-bottom: var(--ot-spacing-s); }
.ot-py-m { padding-top: var(--ot-spacing-m); padding-bottom: var(--ot-spacing-m); }
.ot-py-l { padding-top: var(--ot-spacing-l); padding-bottom: var(--ot-spacing-l); }

.ot-pt-0 { padding-top: 0; }
.ot-pt-x { padding-top: var(--ot-spacing-x); }
.ot-pt-s { padding-top: var(--ot-spacing-s); }
.ot-pt-m { padding-top: var(--ot-spacing-m); }
.ot-pt-l { padding-top: var(--ot-spacing-l); }

.ot-pr-0 { padding-right: 0; }
.ot-pr-x { padding-right: var(--ot-spacing-x); }
.ot-pr-s { padding-right: var(--ot-spacing-s); }
.ot-pr-m { padding-right: var(--ot-spacing-m); }
.ot-pr-l { padding-right: var(--ot-spacing-l); }

.ot-pb-0 { padding-bottom: 0; }
.ot-pb-x { padding-bottom: var(--ot-spacing-x); }
.ot-pb-s { padding-bottom: var(--ot-spacing-s); }
.ot-pb-m { padding-bottom: var(--ot-spacing-m); }
.ot-pb-l { padding-bottom: var(--ot-spacing-l); }

.ot-pl-0 { padding-left: 0; }
.ot-pl-x { padding-left: var(--ot-spacing-x); }
.ot-pl-s { padding-left: var(--ot-spacing-s); }
.ot-pl-m { padding-left: var(--ot-spacing-m); }
.ot-pl-l { padding-left: var(--ot-spacing-l); }

.ot-m-0 { margin: 0; }
.ot-m-auto { margin: auto; }
.ot-m-x { margin: var(--ot-spacing-x); }
.ot-m-s { margin: var(--ot-spacing-s); }
.ot-m-m { margin: var(--ot-spacing-m); }
.ot-m-l { margin: var(--ot-spacing-l); }

.ot-mx-0 { margin-left: 0; margin-right: 0; }
.ot-mx-auto { margin-left: auto; margin-right: auto; }
.ot-mx-x { margin-left: var(--ot-spacing-x); margin-right: var(--ot-spacing-x); }
.ot-mx-s { margin-left: var(--ot-spacing-s); margin-right: var(--ot-spacing-s); }
.ot-mx-m { margin-left: var(--ot-spacing-m); margin-right: var(--ot-spacing-m); }
.ot-mx-l { margin-left: var(--ot-spacing-l); margin-right: var(--ot-spacing-l); }

.ot-my-0 { margin-top: 0; margin-bottom: 0; }
.ot-my-auto { margin-top: auto; margin-bottom: auto; }
.ot-my-x { margin-top: var(--ot-spacing-x); margin-bottom: var(--ot-spacing-x); }
.ot-my-s { margin-top: var(--ot-spacing-s); margin-bottom: var(--ot-spacing-s); }
.ot-my-m { margin-top: var(--ot-spacing-m); margin-bottom: var(--ot-spacing-m); }
.ot-my-l { margin-top: var(--ot-spacing-l); margin-bottom: var(--ot-spacing-l); }

.ot-mt-0 { margin-top: 0; }
.ot-mt-auto { margin-top: auto; }
.ot-mt-x { margin-top: var(--ot-spacing-x); }
.ot-mt-s { margin-top: var(--ot-spacing-s); }
.ot-mt-m { margin-top: var(--ot-spacing-m); }
.ot-mt-l { margin-top: var(--ot-spacing-l); }

.ot-mr-0 { margin-right: 0; }
.ot-mr-auto { margin-right: auto; }
.ot-mr-x { margin-right: var(--ot-spacing-x); }
.ot-mr-s { margin-right: var(--ot-spacing-s); }
.ot-mr-m { margin-right: var(--ot-spacing-m); }
.ot-mr-l { margin-right: var(--ot-spacing-l); }

.ot-mb-0 { margin-bottom: 0; }
.ot-mb-auto { margin-bottom: auto; }
.ot-mb-x { margin-bottom: var(--ot-spacing-x); }
.ot-mb-s { margin-bottom: var(--ot-spacing-s); }
.ot-mb-m { margin-bottom: var(--ot-spacing-m); }
.ot-mb-l { margin-bottom: var(--ot-spacing-l); }

.ot-ml-0 { margin-left: 0; }
.ot-ml-auto { margin-left: auto; }
.ot-ml-x { margin-left: var(--ot-spacing-x); }
.ot-ml-s { margin-left: var(--ot-spacing-s); }
.ot-ml-m { margin-left: var(--ot-spacing-m); }
.ot-ml-l { margin-left: var(--ot-spacing-l); }

.ot-gap-0 { gap: 0; }
.ot-gap-x { gap: var(--ot-spacing-x); }
.ot-gap-s { gap: var(--ot-spacing-s); }
.ot-gap-m { gap: var(--ot-spacing-m); }
.ot-gap-l { gap: var(--ot-spacing-l); }
*,
*::before,
*::after
{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html
{
	height: 100%;
	scroll-behavior: smooth;
	font-size: 100%;
	tab-size: 4;
}

body
{
	min-height: 100vh;
	font-family: var(--ot-font-primary), system-ui, sans-serif;
	font-size: var(--ot-size-m);
	line-height: 1.5;
	color: var(--ot-text-1);
	background: var(--ot-bg-1);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

:focus-visible
{
	outline: 2px solid var(--ot-brand);
	outline-offset: 2px;
}

:focus:not(:focus-visible)
{
	outline: none;
}

h1, h2, h3, h4, h5, h6
{
	font-family: var(--ot-font-secondary), Georgia, serif;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--ot-text-1);
	font-variation-settings: 'opsz' 144;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p
{
	line-height: 1.6;
	color: var(--ot-text-2);
}

@media screen and (max-width: 768px)
{
	html { font-size: 95%; }
	h1 { line-height: 1.05; }
	p { line-height: 1.5; }
}

@media screen and (max-width: 480px)
{
	html { font-size: 90%; }
	h1 { line-height: 1.05; }
	p { line-height: 1.4; }
}

small
{
	font-size: 0.875em;
}

a
{
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

img,
picture,
video,
canvas,
svg
{
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input,
optgroup,
select,
textarea
{
	font: inherit;
	color: inherit;
	line-height: inherit;
}

button
{
	cursor: pointer;
	background: none;
	border: none;
}

ul, ol
{
	list-style: none;
}

table
{
	border-collapse: collapse;
	width: 100%;
}

i
{
	font-family: 'Material Symbols Rounded';
	font-weight: normal;
	font-style: normal;
	font-size: 20px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	color: inherit;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
	font-variation-settings: 'opsz' 24, 'wght' 300, 'FILL' 0, 'GRAD' 0;
}

*
{
	scrollbar-width: thin;
	scrollbar-color: var(--ot-bg-3) transparent;
}

::-webkit-scrollbar
{
	width: 6px;
	height: 6px;
}

::-webkit-scrollbar-track
{
	background: transparent;
}

::-webkit-scrollbar-thumb
{
	background: var(--ot-bg-3);
	border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover
{
	background: var(--ot-bg-4);
}

@media print
{
	body { background: #fff; color: #000; }
	a { color: #000; text-decoration: underline; }
	@page { margin: 2cm; }
}

hr 
{
	border: 1px solid var(--ot-bg-1-border);
}

hr.bg-2
{
	border: 1px solid var(--ot-bg-2-border);
}

hr.bg-3
{
	border: 1px solid var(--ot-bg-3-border);
}

hr.bg-4
{
	border: 1px solid var(--ot-bg-4-border);
}
:root
{
    --ot-spacing-x: 4px;
    --ot-spacing-s: 8px;
    --ot-spacing-m: 16px;
    --ot-spacing-l: 32px;

    --ot-radius-s: 4px;
    --ot-radius-m: 8px;
    --ot-radius-l: 12px;

    --ot-height-x: 18px;
    --ot-height-s: 28px;
    --ot-height-m: 34px;
    --ot-height-l: 44px;

    --ot-size-s: 11px;
    --ot-size-m: 13px;
    --ot-size-l: 22px;

    --ot-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ot-font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --ot-bg-1: rgba(29, 29, 31, 1);
    --ot-bg-1-border: rgba(43, 43, 45, 1);
    --ot-bg-1-opacity: rgba(29, 29, 31, 0.85);
    --ot-bg-1-hover: rgba(33, 33, 35, 1);

    --ot-bg-2: rgba(34, 34, 36, 1);
    --ot-bg-2-border: rgba(48, 48, 50, 1);
    --ot-bg-2-opacity: rgba(34, 34, 36, 0.85);
    --ot-bg-2-hover: rgba(38, 38, 40, 1);

    --ot-bg-3: rgba(39, 39, 41, 1);
    --ot-bg-3-border: rgba(53, 53, 55, 1);
    --ot-bg-3-opacity: rgba(39, 39, 41, 0.85);
    --ot-bg-3-hover: rgba(43, 43, 45, 1);

    --ot-bg-4: rgba(44, 44, 46, 1);
    --ot-bg-4-border: rgba(58, 58, 60, 1);
    --ot-bg-4-opacity: rgba(44, 44, 46, 0.85);
    --ot-bg-4-hover: rgba(48, 48, 50, 1);

    --ot-text-1: rgb(237, 233, 233);
    --ot-text-2: rgb(161, 153, 153);
    --ot-text-3: rgb(131, 130, 130);

    --ot-brand: rgba(226, 112, 85, 1);
    --ot-brand-border: rgba(236, 142, 120, 1);
    --ot-brand-opacity: rgba(226, 112, 85, 0.12);
    --ot-brand-hover: rgba(206, 92, 65, 1);

    --ot-blue: rgba(56, 189, 248, 1);
    --ot-blue-border: rgba(125, 211, 252, 1);
    --ot-blue-opacity: rgba(56, 189, 248, 0.12);
    --ot-blue-hover: rgba(14, 165, 233, 1);

    --ot-red: rgba(244, 63, 94, 1);
    --ot-red-border: rgba(251, 113, 133, 1);
    --ot-red-opacity: rgba(244, 63, 94, 0.12);
    --ot-red-hover: rgba(225, 29, 72, 1);

    --ot-orange: rgba(251, 146, 60, 1);
    --ot-orange-border: rgba(253, 186, 116, 1);
    --ot-orange-opacity: rgba(251, 146, 60, 0.12);
    --ot-orange-hover: rgba(249, 115, 22, 1);

    --ot-green: rgba(52, 211, 153, 1);
    --ot-green-border: rgba(110, 231, 183, 1);
    --ot-green-opacity: rgba(52, 211, 153, 0.12);
    --ot-green-hover: rgba(16, 185, 129, 1);

    --ot-transition-fast: 120ms cubic-bezier(0.4, 0, 0.2, 1);
    --ot-transition: 180ms cubic-bezier(0.4, 0, 0.2, 1);
    --ot-transition-slow: 280ms cubic-bezier(0.4, 0, 0.2, 1);

    --ot-shadow-s: 0 1px 2px rgba(0, 0, 0, 0.2);
    --ot-shadow-m: 0 4px 12px rgba(0, 0, 0, 0.25);
    --ot-shadow-l: 0 12px 32px rgba(0, 0, 0, 0.35);

    --ot-blur: blur(12px) saturate(180%);
}

@media screen and (max-width: 900px)
{
    :root
    {
        --ot-spacing-l: 16px;
    }
}
.ot-overlay
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 100000;
}

.ot-overlay > .backdrop
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	pointer-events: auto;
}

.ot-overlay > .content
{
	position: absolute;
	pointer-events: auto;
}

.ot-overlay.ot-modal > .content
{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.ot-tooltip
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	background: var(--ot-bg-3);
	border: 1px solid var(--ot-bg-3-border);
	border-radius: var(--ot-radius-m);
	color: var(--ot-text-1);
	font-size: var(--ot-size-s);
	max-width: 280px;
	white-space: normal;
}

.ot-tooltip > .icon
{
	font-size: 16px;
	color: var(--ot-text-2);
}

.ot-tooltip > .content > .title
{
	font-weight: 600;
	margin-bottom: 2px;
}

.ot-tooltip > .content > .text
{
	color: var(--ot-text-2);
}

.ot-tooltip.info > .icon { color: var(--ot-blue); }
.ot-tooltip.success > .icon { color: var(--ot-green); }
.ot-tooltip.warning > .icon { color: var(--ot-orange); }
.ot-tooltip.error > .icon { color: var(--ot-red); }

.ot-toast
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-m);
	padding: 16px 20px;
	background: var(--ot-bg-1);
	border: 1px solid var(--ot-bg-1-border);
	border-radius: var(--ot-radius-l);
	color: var(--ot-text-1);
	font-size: var(--ot-size-m);
	min-width: 320px;
	max-width: 420px;
	animation: toast-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes toast-in
{
	from { opacity: 0; transform: translateY(-12px) scale(0.96); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

.ot-toast > .icon
{
	width: 32px;
	height: 32px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}

.ot-toast > .content
{
	flex: 1;
}

.ot-toast > .content > .title
{
	font-weight: 600;
	font-size: 13.5px;
	margin-bottom: 3px;
	color: var(--ot-text-1);
}

.ot-toast > .content > .message
{
	font-size: var(--ot-size-m);
	font-weight: 600;
	line-height: 1.45;
	color: var(--ot-text-1);
}

.ot-toast > .close
{
	width: 28px;
	height: 28px;
	background: none;
	border: none;
	color: var(--ot-text-3);
	cursor: pointer;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.15s ease, color 0.15s ease;
}

.ot-toast > .close:hover
{
	background: var(--ot-bg-2);
	color: var(--ot-text-1);
}

.ot-toast > .close > i
{
	font-size: 16px;
}

.ot-toast.info > .icon { background: var(--ot-blue-opacity); color: var(--ot-blue); }
.ot-toast.success > .icon { background: var(--ot-green-opacity); color: var(--ot-green); }
.ot-toast.warning > .icon { background: var(--ot-orange-opacity); color: var(--ot-orange); }
.ot-toast.error > .icon { background: var(--ot-red-opacity); color: var(--ot-red); }

/* Confirm */

.ot-confirm
{
	display: flex;
	flex-direction: column;
	padding: 28px 32px 24px;
	background: var(--ot-bg-1);
	border: 1px solid var(--ot-bg-1-border);
	border-radius: 20px;
	min-width: 400px;
	max-width: 460px;
	animation: confirm-in 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes confirm-in
{
	from { opacity: 0; transform: scale(0.95) translateY(8px); }
	to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Icon */

.ot-confirm > .icon
{
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.ot-confirm > .icon > i
{
	font-size: 22px;
}

.ot-confirm > .icon.default { background: var(--ot-brand-opacity); color: var(--ot-brand); }
.ot-confirm > .icon.danger { background: var(--ot-red-opacity); color: var(--ot-red); }
.ot-confirm > .icon.warning { background: var(--ot-orange-opacity); color: var(--ot-orange); }
.ot-confirm > .icon.info { background: var(--ot-blue-opacity); color: var(--ot-blue); }
.ot-confirm > .icon.success { background: var(--ot-green-opacity); color: var(--ot-green); }

/* Title */

.ot-confirm > .title
{
	font-family: var(--ot-font-secondary);
	font-size: 22px;
	font-weight: 500;
	letter-spacing: -0.015em;
	line-height: 1.15;
	color: var(--ot-text-1);
	margin-bottom: 8px;
}

/* Description */

.ot-confirm > .description
{
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--ot-text-2);
	margin-bottom: 24px;
}

/* Input */

.ot-confirm > .input
{
	width: 100%;
	margin-bottom: 24px;
}

/* Actions */

.ot-confirm > .actions
{
	display: flex;
	gap: 10px;
	width: 100%;
	padding-top: 20px;
	border-top: 1px solid var(--ot-bg-1-border);
}

.ot-confirm > .actions > *,
.ot-confirm > .actions > * > *
{
	width: 100%;
}
/* ===== POPUP PANEL — chrome for modals, drawers and sheets ===== */

.e-5ea275cd
{
	display: contents;
}

.e-5ea275cd > .box
{
	display: flex;
	flex-direction: column;
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	overflow: hidden;
}

/* ===== PLACEMENT — all floating cards: full border, radius, margin from edges ===== */

.e-5ea275cd > .box
{
	border-radius: var(--ot-radius-l);
}

/* Center — modal card */
.e-5ea275cd > .box.place-center
{
	max-height: 85vh;
}

/* Right / Left — drawer, full height minus margin */
.e-5ea275cd > .box.place-right,
.e-5ea275cd > .box.place-left
{
	height: calc(100vh - var(--ot-spacing-m) * 2);
}

/* Bottom / Top — sheet, full width minus margin */
.e-5ea275cd > .box.place-bottom,
.e-5ea275cd > .box.place-top
{
	width: calc(100vw - var(--ot-spacing-m) * 2);
	max-height: 85vh;
}

/* ===== WIDTH (center / right / left) ===== */

.e-5ea275cd > .box.place-center.width-s, .e-5ea275cd > .box.place-right.width-s, .e-5ea275cd > .box.place-left.width-s { width: 320px; }
.e-5ea275cd > .box.place-center.width-m, .e-5ea275cd > .box.place-right.width-m, .e-5ea275cd > .box.place-left.width-m { width: 420px; }
.e-5ea275cd > .box.place-center.width-l, .e-5ea275cd > .box.place-right.width-l, .e-5ea275cd > .box.place-left.width-l { width: 560px; }

.e-5ea275cd > .box.place-center { max-width: 90vw; }

/* ===== HEADER ===== */

.e-5ea275cd > .box > .head
{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--ot-spacing-m);
	padding: var(--ot-spacing-m);
	border-bottom: 1px solid var(--ot-bg-2-border);
	flex-shrink: 0;
	align-items: center;
}

.e-5ea275cd > .box > .head > .titles
{
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.e-5ea275cd > .box > .head > .titles > .title
{
	font-size: var(--ot-size-m);
	font-weight: 600;
	color: var(--ot-text-1);
}

.e-5ea275cd > .box > .head > .titles > .description
{
	font-size: var(--ot-size-s);
	color: var(--ot-text-3);
}

.e-5ea275cd > .box > .head > .close
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: var(--ot-radius-s);
	color: var(--ot-text-3);
	cursor: pointer;
	flex-shrink: 0;
	transition: background var(--ot-transition-fast), color var(--ot-transition-fast);
}

.e-5ea275cd > .box > .head > .close:hover
{
	background: var(--ot-bg-3);
	color: var(--ot-text-1);
}

.e-5ea275cd > .box > .head > .close > i
{
	font-size: 18px;
}

/* ===== BODY ===== */

.e-5ea275cd > .box > .body
{
	overflow-y: auto;
	flex: 1;
}

.e-5ea275cd > .box > .body.pad-none { padding: 0; }
.e-5ea275cd > .box > .body.pad-s { padding: var(--ot-spacing-s); }
.e-5ea275cd > .box > .body.pad-m { padding: var(--ot-spacing-m); }
.e-5ea275cd > .box > .body.pad-l { padding: var(--ot-spacing-l); }

.e-5ea275cd > .box.clean > .body
{
	padding: 0;
}

/* ===== FOOTER ===== */

.e-5ea275cd > .box > .foot
{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: var(--ot-spacing-s);
	padding: var(--ot-spacing-m);
	border-top: 1px solid var(--ot-bg-2-border);
	flex-shrink: 0;
}
/* ===== TYPE SYSTEM — global reusable cell styles ===== */

/* Group — recursive layout wrapper */

.ot-type-group
{
	display: flex;
	min-width: 0;
}

.ot-type-group.layout-row
{
	flex-direction: row;
	align-items: center;
}

.ot-type-group.layout-column
{
	flex-direction: column;
	align-items: flex-start;
}

.ot-type-group.gap-none { gap: 0; }
.ot-type-group.gap-small { gap: 4px; }
.ot-type-group.gap-medium { gap: var(--ot-spacing-s); }
.ot-type-group.gap-large { gap: var(--ot-spacing-m); }

/* Text */

.ot-type-text
{
	color: var(--ot-text-1);
	font-weight: 600;
}

/* Description */

.ot-type-description
{
	color: var(--ot-text-2);
	font-weight: 400;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Number */

.ot-type-number
{
	font-variant-numeric: tabular-nums;
	font-weight: 600;
	color: var(--ot-text-1);
}

/* Date / Timeago */

.ot-type-date
{
	color: var(--ot-text-2);
	font-variant-numeric: tabular-nums;
}

/* Boolean */

.ot-type-boolean
{
	font-size: 18px;
}

.ot-type-boolean.yes { color: var(--ot-green); }
.ot-type-boolean.no { color: var(--ot-red); opacity: 0.5; }

/* Icon */

.ot-type-icon
{
	font-size: 18px;
	color: var(--ot-text-2);
}

/* Image */

.ot-type-image
{
	height: 32px;
	padding: 4px;
	border-radius: var(--ot-radius-s);
	border: 1px solid var(--ot-bg-2-border);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	max-width: 64px;
}

.ot-type-image.empty
{
	background-image: none;
}

/* Avatar */

.ot-type-avatar
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--ot-bg-2);
	color: var(--ot-text-3);
}

.ot-type-avatar > img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ot-type-avatar.ot-type-avatar-fallback > i
{
	font-size: 18px;
}

/* Media */

.ot-type-media
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	min-width: 0;
}

.ot-type-media > .ot-type-media-thumb
{
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: var(--ot-radius-s);
	background-size: cover;
	background-position: center;
	background-color: var(--ot-bg-2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ot-text-3);
}

.ot-type-media > .ot-type-media-thumb.empty > i
{
	font-size: 18px;
}

.ot-type-media > .ot-type-media-info
{
	display: flex;
	flex-direction: column;
	min-width: 0;
	gap: 1px;
}

.ot-type-media > .ot-type-media-info > .ot-type-media-title
{
	font-weight: 600;
	color: var(--ot-text-1);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ot-type-media > .ot-type-media-info > .ot-type-media-subtitle
{
	font-size: 11px;
	color: var(--ot-text-3);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Badge */

.ot-type-badge
{
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 8px;
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: 100px;
	font-size: 11px;
	font-weight: 600;
	color: var(--ot-text-2);
}

.ot-type-badge > i
{
	font-size: 13px;
}

.ot-type-badge.color-brand { background: var(--ot-brand-opacity); border-color: var(--ot-brand-border); color: var(--ot-brand); }
.ot-type-badge.color-blue { background: var(--ot-blue-opacity); border-color: var(--ot-blue-border); color: var(--ot-blue); }
.ot-type-badge.color-green { background: var(--ot-green-opacity); border-color: var(--ot-green-border); color: var(--ot-green); }
.ot-type-badge.color-red { background: var(--ot-red-opacity); border-color: var(--ot-red-border); color: var(--ot-red); }
.ot-type-badge.color-orange { background: var(--ot-orange-opacity); border-color: var(--ot-orange-border); color: var(--ot-orange); }

/* Chip */

.ot-type-chip
{
	display: inline-flex;
	align-items: center;
	padding: 2px 8px;
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: var(--ot-radius-s);
	font-size: 11px;
	font-weight: 600;
	color: var(--ot-text-2);
}

/* Tag */

.ot-type-tag
{
	display: inline-flex;
	align-items: center;
	padding: 2px 7px;
	background: var(--ot-bg-3);
	border-radius: var(--ot-radius-s);
	font-size: 10px;
	font-weight: 600;
	color: var(--ot-text-2);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.ot-type-tags
{
	display: flex;
	flex-wrap: wrap;
	gap: 3px;
}

/* Status */

.ot-type-status
{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 3px 10px;
	background: var(--ot-bg-2);
	border-radius: 100px;
	font-size: 11px;
	font-weight: 600;
	color: var(--ot-text-2);
}

.ot-type-status > .ot-type-status-dot
{
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ot-text-3);
}

.ot-type-status.color-green { color: var(--ot-green); background: var(--ot-green-opacity); }
.ot-type-status.color-green > .ot-type-status-dot { background: var(--ot-green); box-shadow: 0 0 0 3px var(--ot-green-opacity); }
.ot-type-status.color-red { color: var(--ot-red); background: var(--ot-red-opacity); }
.ot-type-status.color-red > .ot-type-status-dot { background: var(--ot-red); box-shadow: 0 0 0 3px var(--ot-red-opacity); }
.ot-type-status.color-orange { color: var(--ot-orange); background: var(--ot-orange-opacity); }
.ot-type-status.color-orange > .ot-type-status-dot { background: var(--ot-orange); box-shadow: 0 0 0 3px var(--ot-orange-opacity); }
.ot-type-status.color-blue { color: var(--ot-blue); background: var(--ot-blue-opacity); }
.ot-type-status.color-blue > .ot-type-status-dot { background: var(--ot-blue); }
.ot-type-status.color-brand { color: var(--ot-brand); background: var(--ot-brand-opacity); }
.ot-type-status.color-brand > .ot-type-status-dot { background: var(--ot-brand); }

/* Metric */

.ot-type-metric
{
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	font-variant-numeric: tabular-nums;
}

.ot-type-metric > .ot-type-metric-value
{
	font-weight: 700;
	color: var(--ot-text-1);
}

.ot-type-metric > .ot-type-metric-delta
{
	font-size: 11px;
	font-weight: 700;
	padding: 1px 5px;
	border-radius: var(--ot-radius-s);
}

.ot-type-metric > .ot-type-metric-delta.up { color: var(--ot-green); background: var(--ot-green-opacity); }
.ot-type-metric > .ot-type-metric-delta.down { color: var(--ot-red); background: var(--ot-red-opacity); }

/* Progress */

.ot-type-progress
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
}

.ot-type-progress > .ot-type-progress-track
{
	flex: 1;
	height: 6px;
	background: var(--ot-bg-3);
	border-radius: 100px;
	overflow: hidden;
	min-width: 60px;
}

.ot-type-progress > .ot-type-progress-track > .ot-type-progress-bar
{
	height: 100%;
	border-radius: 100px;
	transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.ot-type-progress > .ot-type-progress-track > .ot-type-progress-bar.color-brand { background: var(--ot-brand); }
.ot-type-progress > .ot-type-progress-track > .ot-type-progress-bar.color-blue { background: var(--ot-blue); }
.ot-type-progress > .ot-type-progress-track > .ot-type-progress-bar.color-green { background: var(--ot-green); }
.ot-type-progress > .ot-type-progress-track > .ot-type-progress-bar.color-red { background: var(--ot-red); }
.ot-type-progress > .ot-type-progress-track > .ot-type-progress-bar.color-orange { background: var(--ot-orange); }

.ot-type-progress > .ot-type-progress-label
{
	font-size: 11px;
	font-weight: 700;
	color: var(--ot-text-2);
	font-variant-numeric: tabular-nums;
	min-width: 32px;
	text-align: right;
}

/* Count */

.ot-type-count
{
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
}

.ot-type-count > .ot-type-count-value
{
	font-weight: 700;
	color: var(--ot-text-1);
	font-variant-numeric: tabular-nums;
}

.ot-type-count > .ot-type-count-label
{
	color: var(--ot-text-3);
	font-weight: 400;
}

/* Color */

.ot-type-color
{
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.ot-type-color > .ot-type-color-swatch
{
	width: 18px;
	height: 18px;
	border-radius: var(--ot-radius-s);
	border: 1px solid var(--ot-bg-2-border);
	flex-shrink: 0;
}

.ot-type-color > .ot-type-color-value
{
	font-size: 11px;
	font-weight: 600;
	color: var(--ot-text-2);
	text-transform: uppercase;
}

/* Link */

.ot-type-link
{
	color: var(--ot-brand);
	text-decoration: none;
	font-weight: 500;
}

.ot-type-link:hover
{
	text-decoration: underline;
}
/* Base page styles */
.ot-page
{
	display: grid;
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100dvh;
	overflow: hidden;
}

/* Page area containers */
.ot-page-area
{
	position: relative;
	overflow: auto;
}

.ot-page-area > div
{
	display: contents;
}
[ot]
{
	opacity: 0;
}
/* Root */

.e-5511e8fd
{
	display: block;
	width: 100%;
}

/* Editor */

.e-5511e8fd > .ot-editor
{
	position: relative;
	max-width: 720px;
	margin: 0 auto;
	padding: var(--ot-spacing-l) 0;
}

/* Blocks Container */

.e-5511e8fd > .ot-editor > .ot-editor-blocks
{
	display: flex;
	flex-direction: column;
}

/* Placeholder */

.e-5511e8fd > .ot-editor > .ot-editor-placeholder
{
	color: var(--ot-text-3);
	font-size: var(--ot-size-m);
	padding: 0 var(--ot-spacing-m);
	padding-left: 44px;
	pointer-events: none;
}

/* Block */

.e-5511e8fd .ot-block
{
	position: relative;
	display: flex;
	align-items: flex-start;
	padding: 2px 0;
	border-radius: var(--ot-radius-m);
	outline: none;
	transition: background 0.1s ease;
}

.e-5511e8fd .ot-block:hover
{
	background: var(--ot-bg-1-hover);
}

/* Gutter */

.e-5511e8fd .ot-block-gutter
{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 44px;
	flex-shrink: 0;
	opacity: 0;
	transition: opacity 0.15s ease;
	padding-top: 2px;
}

.e-5511e8fd .ot-block:hover > .ot-block-gutter
{
	opacity: 1;
}

.e-5511e8fd .ot-block-handle,
.e-5511e8fd .ot-block-add
{
	width: 24px;
	height: 24px;
	border-radius: var(--ot-radius-s);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ot-text-3);
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background 0.15s ease, color 0.15s ease;
}

.e-5511e8fd .ot-block-handle:hover,
.e-5511e8fd .ot-block-add:hover
{
	background: var(--ot-bg-3);
	color: var(--ot-text-1);
}

.e-5511e8fd .ot-block-handle > i,
.e-5511e8fd .ot-block-add > i
{
	font-size: 16px;
}

.e-5511e8fd .ot-block-handle
{
	cursor: grab;
}

.e-5511e8fd .ot-block-handle:active
{
	cursor: grabbing;
}

/* Content */

.e-5511e8fd .ot-block-content
{
	flex: 1;
	min-width: 0;
	min-height: 24px;
	outline: none;
}

.e-5511e8fd .ot-block-content > [contenteditable]
{
	outline: none;
	min-height: 24px;
	word-break: break-word;
	overflow-wrap: break-word;
}

.e-5511e8fd .ot-block-content > [contenteditable]:empty::before
{
	content: attr(data-placeholder);
	color: var(--ot-text-3);
	pointer-events: none;
}

/* Paragraph */

.e-5511e8fd .ot-block-content > p
{
	margin: 0;
	font-size: var(--ot-size-m);
	line-height: 1.7;
	color: var(--ot-text-1);
}

/* Inline Formats */

.e-5511e8fd .ot-block-content strong
{
	font-weight: 600;
	color: var(--ot-text-1);
}

.e-5511e8fd .ot-block-content em
{
	font-style: italic;
}

.e-5511e8fd .ot-block-content code
{
	font-family: ui-monospace, 'SF Mono', Menlo, monospace;
	font-size: 0.9em;
	padding: 0.15em 0.4em;
	border-radius: var(--ot-radius-s);
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
}

.e-5511e8fd .ot-block-content a
{
	color: var(--ot-brand);
	text-decoration: underline;
	text-decoration-color: var(--ot-brand-opacity);
	text-underline-offset: 3px;
}

/* Actions */

.e-5511e8fd .ot-block-actions
{
	display: flex;
	align-items: flex-start;
	flex-shrink: 0;
	opacity: 0;
	transition: opacity 0.15s ease;
	padding-top: 2px;
}

.e-5511e8fd .ot-block:hover > .ot-block-actions
{
	opacity: 1;
}

.e-5511e8fd .ot-block-settings
{
	width: 24px;
	height: 24px;
	border-radius: var(--ot-radius-s);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ot-text-3);
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background 0.15s ease, color 0.15s ease;
}

.e-5511e8fd .ot-block-settings:hover
{
	background: var(--ot-bg-3);
	color: var(--ot-text-1);
}

.e-5511e8fd .ot-block-settings > i
{
	font-size: 16px;
}

/* Selection */

.e-5511e8fd .ot-block-selected
{
	background: var(--ot-brand-opacity);
}

.e-5511e8fd .ot-block-focused
{
	background: transparent;
}

/* Bordered variant */

.e-5511e8fd > .ot-editor.bordered
{
	border: 1px solid var(--ot-bg-1-border);
	border-radius: var(--ot-radius-l);
	padding: var(--ot-spacing-l);
}

/* Compact variant */

.e-5511e8fd > .ot-editor.compact
{
	max-width: 100%;
	padding: var(--ot-spacing-m) 0;
}
/* ===== CLOUDFLARE IMAGES INPUT ===== */

.e-6180cbf3
{
	display: contents;
}
/* ===== CLOUDFLARE IMAGES UPLOAD ===== */

.e-1cd2e108
{
	display: contents;
}
body
{
	background-color: var(--ot-bg-2);
}
:root
{
    --ot-spacing-x: 4px;
    --ot-spacing-s: 8px;
    --ot-spacing-m: 16px;
    --ot-spacing-l: 32px;

    --ot-radius-s: 8px;
    --ot-radius-m: 12px;
    --ot-radius-l: 16px;

    --ot-height-x: 20px;
    --ot-height-s: 32px;
    --ot-height-m: 38px;
    --ot-height-l: 46px;

    --ot-size-s: 12px;
    --ot-size-m: 13px;
    --ot-size-l: 28px;

    --ot-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ot-font-secondary: 'Fraunces', 'Inter', Georgia, serif;

    --ot-bg-1: rgba(255, 255, 255, 1);
    --ot-bg-1-border: rgba(234, 232, 226, 1);
    --ot-bg-1-opacity: rgba(255, 255, 255, 0.85);
    --ot-bg-1-hover: rgba(250, 249, 246, 1);

    --ot-bg-2: rgba(252, 251, 249, 1);
    --ot-bg-2-border: rgba(236, 234, 228, 1);
    --ot-bg-2-opacity: rgba(252, 251, 249, 0.85);
    --ot-bg-2-hover: rgba(247, 246, 241, 1);

    --ot-bg-3: rgba(248, 247, 243, 1);
    --ot-bg-3-border: rgba(230, 227, 220, 1);
    --ot-bg-3-opacity: rgba(248, 247, 243, 0.85);
    --ot-bg-3-hover: rgba(243, 241, 234, 1);

    --ot-bg-4: rgba(243, 241, 235, 1);
    --ot-bg-4-border: rgba(224, 220, 210, 1);
    --ot-bg-4-opacity: rgba(243, 241, 235, 0.85);
    --ot-bg-4-hover: rgba(236, 233, 224, 1);

    --ot-text-1: rgba(10, 10, 14, 1);
    --ot-text-2: rgba(62, 62, 72, 1);
    --ot-text-3: rgba(105, 105, 118, 1);

    --ot-brand: rgba(202, 86, 60, 1);
    --ot-brand-border: rgba(216, 116, 92, 1);
    --ot-brand-opacity: rgba(202, 86, 60, 0.10);
    --ot-brand-hover: rgba(178, 70, 46, 1);

    --ot-blue: rgba(14, 116, 180, 1);
    --ot-blue-border: rgba(56, 152, 208, 1);
    --ot-blue-opacity: rgba(14, 116, 180, 0.10);
    --ot-blue-hover: rgba(8, 96, 156, 1);

    --ot-red: rgba(200, 40, 60, 1);
    --ot-red-border: rgba(224, 80, 96, 1);
    --ot-red-opacity: rgba(200, 40, 60, 0.10);
    --ot-red-hover: rgba(176, 28, 48, 1);

    --ot-orange: rgba(214, 138, 58, 1);
    --ot-orange-border: rgba(232, 168, 100, 1);
    --ot-orange-opacity: rgba(214, 138, 58, 0.10);
    --ot-orange-hover: rgba(190, 116, 36, 1);

    --ot-green: rgba(20, 144, 95, 1);
    --ot-green-border: rgba(60, 176, 130, 1);
    --ot-green-opacity: rgba(20, 144, 95, 0.10);
    --ot-green-hover: rgba(12, 120, 78, 1);
}
/* Root */

.e-60cd2d73
{
	display: block;
	width: 100%;
	min-height: 100vh;
}

/* Split */

.e-60cd2d73 > .split
{
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	min-height: 100vh;
	width: 100%;
}

/* Showcase */

.e-60cd2d73 > .split > .showcase
{
	position: relative;
	overflow: hidden;
	display: flex;
	padding: var(--ot-spacing-l);
}

.e-60cd2d73 > .split > .showcase > .e-18fbce40
{
	width: 100%;
	height: 100%;
}

.e-60cd2d73 > .split > .showcase > .e-18fbce40 > .holder
{
	height: 100%;
}

.e-60cd2d73 > .split > .showcase > .overlay
{
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20, 20, 30, 0.05) 0%, rgba(20, 20, 30, 0.7) 100%);
	pointer-events: none;
}

.e-60cd2d73 > .split > .showcase > .content
{
	position: relative;
	padding: 56px 56px;
	color: white;
	max-width: 640px;
}

.e-60cd2d73 > .split > .showcase > .content > .brand
{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 6px 14px 6px 8px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 100px;
	margin-bottom: var(--ot-spacing-l);
	backdrop-filter: blur(12px);
}

.e-60cd2d73 > .split > .showcase > .content > .brand > i
{
	font-size: 16px;
	color: #ffd9a8;
}

.e-60cd2d73 > .split > .showcase > .content > .brand > span
{
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: white;
}

.e-60cd2d73 > .split > .showcase > .content > h2
{
	font-family: var(--ot-font-secondary);
	font-size: 56px;
	font-weight: 400;
	line-height: 1.0;
	letter-spacing: -0.025em;
	color: white;
	margin: 0 0 var(--ot-spacing-m);
	font-variation-settings: 'opsz' 144, 'wght' 400;
}

.e-60cd2d73 > .split > .showcase > .content > h2 em
{
	font-style: italic;
	color: #ffd9a8;
	font-weight: 400;
}

.e-60cd2d73 > .split > .showcase > .content > p
{
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	max-width: 500px;
	margin: 0 0 var(--ot-spacing-l);
}

.e-60cd2d73 > .split > .showcase > .content > .stats
{
	display: flex;
	gap: var(--ot-spacing-l);
	padding-top: var(--ot-spacing-m);
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.e-60cd2d73 > .split > .showcase > .content > .stats > .stat > strong
{
	display: block;
	font-family: var(--ot-font-secondary);
	font-size: 26px;
	font-weight: 500;
	color: white;
	font-variation-settings: 'opsz' 144;
	line-height: 1;
	margin-bottom: 4px;
}

.e-60cd2d73 > .split > .showcase > .content > .stats > .stat > span
{
	font-size: 11px;
	color: rgba(255, 255, 255, 0.65);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* Form */

.e-60cd2d73 > .split > .form
{
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ot-bg-1);
	padding: var(--ot-spacing-l);
}

.e-60cd2d73 > .split > .form > .holder
{
	width: 100%;
	max-width: 420px;
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-l);
}

.e-60cd2d73 > .split > .form > .holder > .header > h1
{
	font-family: var(--ot-font-secondary);
	font-size: 36px;
	font-weight: 500;
	letter-spacing: -0.022em;
	color: var(--ot-text-1);
	margin: 0 0 6px;
	font-variation-settings: 'opsz' 144;
}

.e-60cd2d73 > .split > .form > .holder > .header > p
{
	font-size: 14px;
	color: var(--ot-text-2);
	margin: 0;
}

.e-60cd2d73 > .split > .form > .holder .auth-field
{
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: var(--ot-spacing-m);
}

.e-60cd2d73 > .split > .form > .holder .auth-field > label
{
	font-size: 12px;
	font-weight: 600;
	color: var(--ot-text-1);
	font-family: var(--ot-font-primary);
}

.e-60cd2d73 > .split > .form > .holder .footer
{
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--ot-text-2);
	padding-top: var(--ot-spacing-s);
	border-top: 1px solid var(--ot-bg-1-border);
}

.e-60cd2d73 > .split > .form > .holder .footer > a
{
	color: var(--ot-brand);
	font-weight: 600;
	text-decoration: none;
}

.e-60cd2d73 > .split > .form > .holder .footer > a:hover
{
	text-decoration: underline;
}

.e-60cd2d73 > .split > .form > .holder .redirect-notice
{
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 14px;
	background: var(--ot-brand-opacity);
	border-radius: var(--ot-radius-m);
	font-size: 12px;
	color: var(--ot-brand);
}

.e-60cd2d73 > .split > .form > .holder .redirect-notice > i
{
	font-size: 16px;
}

.e-60cd2d73 > .split > .form > .holder .redirect-notice strong
{
	font-weight: 700;
}

@media screen and (max-width: 900px)
{
	.e-60cd2d73 > .split
	{
		grid-template-columns: 1fr;
	}

	.e-60cd2d73 > .split > .showcase
	{
		min-height: 320px;
	}

	.e-60cd2d73 > .split > .showcase > .content
	{
		padding: 36px;
	}

	.e-60cd2d73 > .split > .showcase > .content > h2
	{
		font-size: 36px;
	}
}
/* Root */

.e-47276740
{
	display: block;
	width: 100%;
	min-height: 100vh;
}

/* Split */

.e-47276740 > .split
{
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	min-height: 100vh;
	width: 100%;
}

/* Showcase */

.e-47276740 > .split > .showcase
{
	position: relative;
	overflow: hidden;
	display: flex;
	padding: var(--ot-spacing-l);
}

.e-47276740 > .split > .showcase > .e-18fbce40
{
	width: 100%;
	height: 100%;
}

.e-47276740 > .split > .showcase > .e-18fbce40 > .holder
{
	height: 100%;
}

/* Form */

.e-47276740 > .split > .form
{
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ot-bg-1);
	padding: var(--ot-spacing-l);
}

.e-47276740 > .split > .form > .holder
{
	width: 100%;
	max-width: 420px;
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-l);
}

.e-47276740 > .split > .form > .holder > .header > h1
{
	font-family: var(--ot-font-secondary);
	font-size: 36px;
	font-weight: 500;
	letter-spacing: -0.022em;
	color: var(--ot-text-1);
	margin: 0 0 6px;
	font-variation-settings: 'opsz' 144;
}

.e-47276740 > .split > .form > .holder > .header > p
{
	font-size: 14px;
	line-height: 1.6;
	color: var(--ot-text-2);
	margin: 0;
}

.e-47276740 > .split > .form > .holder > .actions
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
}

@media screen and (max-width: 900px)
{
	.e-47276740 > .split
	{
		grid-template-columns: 1fr;
	}

	.e-47276740 > .split > .showcase
	{
		min-height: 320px;
	}
}
/* Root */

.e-4308bc59
{
	display: block;
	width: 100%;
	min-height: 100vh;
}

/* Split */

.e-4308bc59 > .split
{
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	min-height: 100vh;
	width: 100%;
}

/* Showcase */

.e-4308bc59 > .split > .showcase
{
	position: relative;
	overflow: hidden;
	display: flex;
	padding: var(--ot-spacing-l);
}

.e-4308bc59 > .split > .showcase > .e-18fbce40
{
	width: 100%;
	height: 100%;
}

.e-4308bc59 > .split > .showcase > .e-18fbce40 > .holder
{
	height: 100%;
}

.e-4308bc59 > .split > .showcase > .overlay
{
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20, 20, 30, 0.05) 0%, rgba(20, 20, 30, 0.7) 100%);
	pointer-events: none;
}

.e-4308bc59 > .split > .showcase > .content
{
	position: relative;
	padding: 56px 56px;
	color: white;
	max-width: 640px;
}

.e-4308bc59 > .split > .showcase > .content > .brand
{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 6px 14px 6px 8px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 100px;
	margin-bottom: var(--ot-spacing-l);
	backdrop-filter: blur(12px);
}

.e-4308bc59 > .split > .showcase > .content > .brand > i
{
	font-size: 16px;
	color: #ffd9a8;
}

.e-4308bc59 > .split > .showcase > .content > .brand > span
{
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: white;
}

.e-4308bc59 > .split > .showcase > .content > h2
{
	font-family: var(--ot-font-secondary);
	font-size: 56px;
	font-weight: 400;
	line-height: 1.0;
	letter-spacing: -0.025em;
	color: white;
	margin: 0 0 var(--ot-spacing-m);
	font-variation-settings: 'opsz' 144, 'wght' 400;
}

.e-4308bc59 > .split > .showcase > .content > h2 em
{
	font-style: italic;
	color: #ffd9a8;
	font-weight: 400;
}

.e-4308bc59 > .split > .showcase > .content > p
{
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	max-width: 500px;
	margin: 0 0 var(--ot-spacing-l);
}

.e-4308bc59 > .split > .showcase > .content > .stats
{
	display: flex;
	gap: var(--ot-spacing-l);
	padding-top: var(--ot-spacing-m);
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.e-4308bc59 > .split > .showcase > .content > .stats > .stat > strong
{
	display: block;
	font-family: var(--ot-font-secondary);
	font-size: 26px;
	font-weight: 500;
	color: white;
	font-variation-settings: 'opsz' 144;
	line-height: 1;
	margin-bottom: 4px;
}

.e-4308bc59 > .split > .showcase > .content > .stats > .stat > span
{
	font-size: 11px;
	color: rgba(255, 255, 255, 0.65);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* Form */

.e-4308bc59 > .split > .form
{
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ot-bg-1);
	padding: var(--ot-spacing-l);
}

.e-4308bc59 > .split > .form > .holder
{
	width: 100%;
	max-width: 460px;
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-l);
}

.e-4308bc59 > .split > .form > .holder > .header > h1
{
	font-family: var(--ot-font-secondary);
	font-size: 36px;
	font-weight: 500;
	letter-spacing: -0.022em;
	color: var(--ot-text-1);
	margin: 0 0 6px;
	font-variation-settings: 'opsz' 144;
}

.e-4308bc59 > .split > .form > .holder > .header > p
{
	font-size: 14px;
	color: var(--ot-text-2);
	margin: 0;
}

.e-4308bc59 > .split > .form > .holder .auth-field
{
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: var(--ot-spacing-m);
}

.e-4308bc59 > .split > .form > .holder .auth-field > label
{
	font-size: 12px;
	font-weight: 600;
	color: var(--ot-text-1);
	font-family: var(--ot-font-primary);
}

/* Rules */

.e-4308bc59 > .split > .form > .holder .rules
{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px 14px;
	margin-top: 10px;
}

.e-4308bc59 > .split > .form > .holder .rule
{
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: var(--ot-text-3);
	transition: color 0.2s;
}

.e-4308bc59 > .split > .form > .holder .rule > i
{
	font-size: 14px;
}

.e-4308bc59 > .split > .form > .holder .rule.pass
{
	color: var(--ot-green);
}

.e-4308bc59 > .split > .form > .holder .rule.fail
{
	color: var(--ot-red);
}

.e-4308bc59 > .split > .form > .holder .footer
{
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--ot-text-2);
	padding-top: var(--ot-spacing-s);
	border-top: 1px solid var(--ot-bg-1-border);
}

.e-4308bc59 > .split > .form > .holder .footer > a
{
	color: var(--ot-brand);
	font-weight: 600;
	text-decoration: none;
}

.e-4308bc59 > .split > .form > .holder .footer > a:hover
{
	text-decoration: underline;
}

.e-4308bc59 > .split > .form > .holder .redirect-notice
{
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 14px;
	background: var(--ot-brand-opacity);
	border-radius: var(--ot-radius-m);
	font-size: 12px;
	color: var(--ot-brand);
}

.e-4308bc59 > .split > .form > .holder .redirect-notice > i
{
	font-size: 16px;
}

.e-4308bc59 > .split > .form > .holder .redirect-notice strong
{
	font-weight: 700;
}

@media screen and (max-width: 900px)
{
	.e-4308bc59 > .split
	{
		grid-template-columns: 1fr;
	}

	.e-4308bc59 > .split > .showcase
	{
		min-height: 320px;
	}

	.e-4308bc59 > .split > .showcase > .content
	{
		padding: 36px;
	}

	.e-4308bc59 > .split > .showcase > .content > h2
	{
		font-size: 36px;
	}
}
/* ===== CARDS INFO ===== */

.e-7e93ff6e
{
	display: contents;
}

/* Box */

.e-7e93ff6e > .box
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-m);
	width: 100%;
	border: 1px solid transparent;
	border-radius: var(--ot-radius-l);
}

.e-7e93ff6e > .box.bg-1,
.e-7e93ff6e > .box.bg-2,
.e-7e93ff6e > .box.bg-3,
.e-7e93ff6e > .box.bg-4,
.e-7e93ff6e > .box.border
{
	padding: var(--ot-spacing-m);
}

/* ===== HEADER ===== */

.e-7e93ff6e > .box > .header
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-m);
}

/* Header icon */

.e-7e93ff6e > .box > .header > .icon
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: var(--ot-radius-m);
	background: var(--ot-brand-opacity);
	color: var(--ot-brand);
	flex-shrink: 0;
}

.e-7e93ff6e > .box > .header > .icon > i
{
	font-size: 22px;
}

/* Header text */

.e-7e93ff6e > .box > .header > .text
{
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	flex: 1;
}

.e-7e93ff6e > .box > .header > .text > .title
{
	margin: 0;
	font-family: var(--ot-font-secondary);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--ot-text-1);
	font-variation-settings: 'opsz' 144;
	line-height: 1.2;
}

.e-7e93ff6e > .box > .header > .text > .description
{
	margin: 0;
	font-size: 12px;
	color: var(--ot-text-2);
	line-height: 1.4;
	font-family: var(--ot-font-primary);
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
}

/* Header badge */

.e-7e93ff6e > .box > .header > .badge
{
	display: inline-flex;
	align-items: center;
	padding: var(--ot-spacing-x) 10px;
	background: var(--ot-brand-opacity);
	color: var(--ot-brand);
	border-radius: 100px;
	font-size: 10.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-family: var(--ot-font-primary);
	flex-shrink: 0;
}

/* ===== STATUS ===== */

.e-7e93ff6e > .box > .status
{
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: var(--ot-spacing-s);
	padding: 6px 12px;
	border-radius: 100px;
	font-size: 12px;
	font-weight: 600;
	font-family: var(--ot-font-primary);
}

.e-7e93ff6e > .box > .status > .dot
{
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
	position: relative;
}

.e-7e93ff6e > .box > .status > .dot::before
{
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 50%;
	opacity: 0.3;
	animation: e-7e93ff6e-pulse 2.4s ease-in-out infinite;
}

@keyframes e-7e93ff6e-pulse
{
	0%, 100% { transform: scale(1); opacity: 0.3; }
	50% { transform: scale(1.4); opacity: 0.1; }
}

.e-7e93ff6e > .box > .status.color-brand { background: var(--ot-brand-opacity); color: var(--ot-brand); }
.e-7e93ff6e > .box > .status.color-brand > .dot { background: var(--ot-brand); }
.e-7e93ff6e > .box > .status.color-brand > .dot::before { background: var(--ot-brand); }

.e-7e93ff6e > .box > .status.color-blue { background: var(--ot-blue-opacity); color: var(--ot-blue); }
.e-7e93ff6e > .box > .status.color-blue > .dot { background: var(--ot-blue); }
.e-7e93ff6e > .box > .status.color-blue > .dot::before { background: var(--ot-blue); }

.e-7e93ff6e > .box > .status.color-red { background: var(--ot-red-opacity); color: var(--ot-red); }
.e-7e93ff6e > .box > .status.color-red > .dot { background: var(--ot-red); }
.e-7e93ff6e > .box > .status.color-red > .dot::before { background: var(--ot-red); }

.e-7e93ff6e > .box > .status.color-orange { background: var(--ot-orange-opacity); color: var(--ot-orange); }
.e-7e93ff6e > .box > .status.color-orange > .dot { background: var(--ot-orange); }
.e-7e93ff6e > .box > .status.color-orange > .dot::before { background: var(--ot-orange); }

.e-7e93ff6e > .box > .status.color-green { background: var(--ot-green-opacity); color: var(--ot-green); }
.e-7e93ff6e > .box > .status.color-green > .dot { background: var(--ot-green); }
.e-7e93ff6e > .box > .status.color-green > .dot::before { background: var(--ot-green); }

/* ===== STATS ===== */

.e-7e93ff6e > .box > .stats
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: var(--ot-spacing-m);
	padding: var(--ot-spacing-m) 0;
	border-top: 1px solid var(--ot-bg-2-border);
	border-bottom: 1px solid var(--ot-bg-2-border);
}

.e-7e93ff6e > .box > .stats > .stat
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
}

.e-7e93ff6e > .box > .stats > .stat > .stat-icon
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: var(--ot-radius-m);
	background: var(--ot-brand-opacity);
	color: var(--ot-brand);
	font-size: 18px;
	flex-shrink: 0;
}

.e-7e93ff6e > .box > .stats > .stat > .stat-text
{
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.e-7e93ff6e > .box > .stats > .stat > .stat-text > .value
{
	font-family: var(--ot-font-secondary);
	font-size: 20px;
	font-weight: 600;
	color: var(--ot-text-1);
	line-height: 1;
	font-variation-settings: 'opsz' 144;
}

.e-7e93ff6e > .box > .stats > .stat > .stat-text > .label
{
	font-size: 10.5px;
	font-weight: 600;
	color: var(--ot-text-3);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-family: var(--ot-font-primary);
}

.e-7e93ff6e > .box > .stats > .stat.color-brand > .stat-icon { background: var(--ot-brand-opacity); color: var(--ot-brand); }
.e-7e93ff6e > .box > .stats > .stat.color-blue > .stat-icon { background: var(--ot-blue-opacity); color: var(--ot-blue); }
.e-7e93ff6e > .box > .stats > .stat.color-red > .stat-icon { background: var(--ot-red-opacity); color: var(--ot-red); }
.e-7e93ff6e > .box > .stats > .stat.color-orange > .stat-icon { background: var(--ot-orange-opacity); color: var(--ot-orange); }
.e-7e93ff6e > .box > .stats > .stat.color-green > .stat-icon { background: var(--ot-green-opacity); color: var(--ot-green); }

/* ===== ROWS ===== */

.e-7e93ff6e > .box > .rows
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-x);
}

.e-7e93ff6e > .box > .rows > .row
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ot-spacing-m);
	padding: 6px 0;
	font-size: var(--ot-size-m);
	font-family: var(--ot-font-primary);
}

.e-7e93ff6e > .box > .rows > .row > .row-label
{
	display: inline-flex;
	align-items: center;
	gap: var(--ot-spacing-x);
	color: var(--ot-text-2);
}

.e-7e93ff6e > .box > .rows > .row > .row-label > i
{
	font-size: 16px;
	color: var(--ot-text-3);
}

.e-7e93ff6e > .box > .rows > .row > .row-value
{
	font-weight: 600;
	color: var(--ot-text-1);
	text-align: right;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.e-7e93ff6e > .box > .rows > .row.color-brand > .row-value { color: var(--ot-brand); }
.e-7e93ff6e > .box > .rows > .row.color-blue > .row-value { color: var(--ot-blue); }
.e-7e93ff6e > .box > .rows > .row.color-red > .row-value { color: var(--ot-red); }
.e-7e93ff6e > .box > .rows > .row.color-orange > .row-value { color: var(--ot-orange); }
.e-7e93ff6e > .box > .rows > .row.color-green > .row-value { color: var(--ot-green); }

/* ===== TAGS ===== */

.e-7e93ff6e > .box > .tags
{
	display: flex;
	flex-wrap: wrap;
	gap: var(--ot-spacing-x);
}

.e-7e93ff6e > .box > .tags > .tag
{
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: var(--ot-spacing-x) 10px;
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: 100px;
	font-size: var(--ot-size-s);
	font-weight: 600;
	color: var(--ot-text-2);
	font-family: var(--ot-font-primary);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.e-7e93ff6e > .box > .tags > .tag > i
{
	font-size: 13px;
}

.e-7e93ff6e > .box > .tags > .tag.color-brand { background: var(--ot-brand-opacity); border-color: var(--ot-brand-opacity); color: var(--ot-brand); }
.e-7e93ff6e > .box > .tags > .tag.color-blue { background: var(--ot-blue-opacity); border-color: var(--ot-blue-opacity); color: var(--ot-blue); }
.e-7e93ff6e > .box > .tags > .tag.color-red { background: var(--ot-red-opacity); border-color: var(--ot-red-opacity); color: var(--ot-red); }
.e-7e93ff6e > .box > .tags > .tag.color-orange { background: var(--ot-orange-opacity); border-color: var(--ot-orange-opacity); color: var(--ot-orange); }
.e-7e93ff6e > .box > .tags > .tag.color-green { background: var(--ot-green-opacity); border-color: var(--ot-green-opacity); color: var(--ot-green); }

/* ===== NOTICE ===== */

.e-7e93ff6e > .box > .notice
{
	display: flex;
	align-items: flex-start;
	gap: var(--ot-spacing-s);
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	border-radius: var(--ot-radius-m);
	font-size: 12.5px;
	line-height: 1.5;
	font-family: var(--ot-font-primary);
}

.e-7e93ff6e > .box > .notice > i
{
	font-size: 18px;
	flex-shrink: 0;
	margin-top: 1px;
}

.e-7e93ff6e > .box > .notice.color-brand { background: var(--ot-brand-opacity); color: var(--ot-brand); }
.e-7e93ff6e > .box > .notice.color-blue { background: var(--ot-blue-opacity); color: var(--ot-blue); }
.e-7e93ff6e > .box > .notice.color-red { background: var(--ot-red-opacity); color: var(--ot-red); }
.e-7e93ff6e > .box > .notice.color-orange { background: var(--ot-orange-opacity); color: var(--ot-orange); }
.e-7e93ff6e > .box > .notice.color-green { background: var(--ot-green-opacity); color: var(--ot-green); }

/* ===== BODY ===== */

.e-7e93ff6e > .box > .body
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
}

/* ===== ACTIONS ===== */

.e-7e93ff6e > .box > .actions
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
}

.e-7e93ff6e > .box > .actions:empty
{
	display: none;
}

/* ===== BACKGROUND ===== */

.e-7e93ff6e > .box.bg-1 { background: var(--ot-bg-1); }
.e-7e93ff6e > .box.bg-1 > .stats { border-color: var(--ot-bg-1-border); }
.e-7e93ff6e > .box.bg-1 > .tags > .tag { background: var(--ot-bg-2); border-color: var(--ot-bg-1-border); }

.e-7e93ff6e > .box.bg-2 { background: var(--ot-bg-2); }
.e-7e93ff6e > .box.bg-2 > .stats { border-color: var(--ot-bg-2-border); }
.e-7e93ff6e > .box.bg-2 > .tags > .tag { background: var(--ot-bg-1); border-color: var(--ot-bg-2-border); }

.e-7e93ff6e > .box.bg-3 { background: var(--ot-bg-3); }
.e-7e93ff6e > .box.bg-3 > .stats { border-color: var(--ot-bg-3-border); }
.e-7e93ff6e > .box.bg-3 > .tags > .tag { background: var(--ot-bg-2); border-color: var(--ot-bg-3-border); }

.e-7e93ff6e > .box.bg-4 { background: var(--ot-bg-4); }
.e-7e93ff6e > .box.bg-4 > .stats { border-color: var(--ot-bg-4-border); }
.e-7e93ff6e > .box.bg-4 > .tags > .tag { background: var(--ot-bg-3); border-color: var(--ot-bg-4-border); }

/* ===== BORDER ===== */

.e-7e93ff6e > .box.border { border-color: var(--ot-bg-2-border); }
.e-7e93ff6e > .box.bg-1.border { border-color: var(--ot-bg-1-border); }
.e-7e93ff6e > .box.bg-2.border { border-color: var(--ot-bg-2-border); }
.e-7e93ff6e > .box.bg-3.border { border-color: var(--ot-bg-3-border); }
.e-7e93ff6e > .box.bg-4.border { border-color: var(--ot-bg-4-border); }

/* ===== SIZE ===== */

.e-7e93ff6e > .box.size-s
{
	padding: var(--ot-spacing-m);
	gap: var(--ot-spacing-s);
}

.e-7e93ff6e > .box.size-s > .header > .icon { width: 32px; height: 32px; }
.e-7e93ff6e > .box.size-s > .header > .icon > i { font-size: 18px; }
.e-7e93ff6e > .box.size-s > .header > .text > .title { font-size: 14px; }
.e-7e93ff6e > .box.size-s > .rows > .row { font-size: 12px; padding: 4px 0; }

.e-7e93ff6e > .box.size-l
{
	padding: var(--ot-spacing-l);
	gap: var(--ot-spacing-l);
}

.e-7e93ff6e > .box.size-l > .header > .icon { width: 48px; height: 48px; }
.e-7e93ff6e > .box.size-l > .header > .icon > i { font-size: 26px; }
.e-7e93ff6e > .box.size-l > .header > .text > .title { font-size: 20px; }
.e-7e93ff6e > .box.size-l > .rows > .row { font-size: 14px; padding: 8px 0; }
.e-7e93ff6e > .box.size-l > .stats > .stat > .stat-icon { width: 40px; height: 40px; font-size: 22px; }
.e-7e93ff6e > .box.size-l > .stats > .stat > .stat-text > .value { font-size: 24px; }
/* ===== CARDS PROFILE ===== */

.e-7dbb0917
{
	display: contents;
}

/* Box */

.e-7dbb0917 > .box
{
	position: relative;
	display: flex;
	width: 100%;
	border-radius: var(--ot-radius-l);
	overflow: hidden;
	transition: border-color var(--ot-transition), box-shadow var(--ot-transition), transform var(--ot-transition);
}

.e-7dbb0917 > .box.vertical
{
	flex-direction: column;
}

.e-7dbb0917 > .box.horizontal
{
	flex-direction: row;
	align-items: center;
	gap: var(--ot-spacing-m);
}

/* Link overlay */

.e-7dbb0917 > .box > .link
{
	position: absolute;
	inset: 0;
	z-index: 1;
}

.e-7dbb0917 > .box:has(> .link):hover
{
	transform: translateY(-2px);
	box-shadow: var(--ot-shadow-m);
}

/* Cover */

.e-7dbb0917 > .box > .cover
{
	height: 120px;
	background-size: cover;
	background-position: center;
	background-color: var(--ot-bg-3);
}

.e-7dbb0917 > .box.horizontal > .cover
{
	display: none;
}

/* Body */

.e-7dbb0917 > .box > .body
{
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-m);
	padding: var(--ot-spacing-l);
	flex: 1;
	min-width: 0;
}

/* Cover offset */

.e-7dbb0917 > .box.vertical:has(> .cover) > .body
{
	margin-top: -36px;
}

/* Head */

.e-7dbb0917 > .box > .body > .head
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-m);
	min-width: 0;
}

/* Avatar */

.e-7dbb0917 > .box > .body > .head > .avatar
{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: var(--ot-bg-3);
	background-size: cover;
	background-position: center;
	border: 3px solid var(--ot-bg-1);
	box-shadow: var(--ot-shadow-s);
	flex-shrink: 0;
}

.e-7dbb0917 > .box > .body > .head > .avatar > i
{
	font-size: 28px;
	color: var(--ot-text-3);
}

/* Identity */

.e-7dbb0917 > .box > .body > .head > .identity
{
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	flex: 1;
}

.e-7dbb0917 > .box > .body > .head > .identity > .name
{
	display: flex;
	align-items: center;
	gap: 5px;
	font-family: var(--ot-font-secondary);
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--ot-text-1);
	line-height: 1.2;
	font-variation-settings: 'opsz' 144;
}

.e-7dbb0917 > .box > .body > .head > .identity > .name > .verified
{
	font-size: 15px;
	color: var(--ot-blue);
	font-variation-settings: 'FILL' 1;
}

.e-7dbb0917 > .box > .body > .head > .identity > .role
{
	font-size: 12px;
	color: var(--ot-text-2);
}

/* Description */

.e-7dbb0917 > .box > .body > .description
{
	margin: 0;
	font-size: var(--ot-size-m);
	line-height: 1.55;
	color: var(--ot-text-2);
}

/* Tags */

.e-7dbb0917 > .box > .body > .tags
{
	display: flex;
	flex-wrap: wrap;
	gap: var(--ot-spacing-x);
}

.e-7dbb0917 > .box > .body > .tags > .tag
{
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px 9px;
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: 100px;
	font-size: var(--ot-size-s);
	font-weight: 600;
	color: var(--ot-text-2);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.e-7dbb0917 > .box > .body > .tags > .tag > i
{
	font-size: 13px;
}

/* Meta */

.e-7dbb0917 > .box > .body > .meta
{
	font-size: var(--ot-size-s);
	color: var(--ot-text-3);
}

/* Stats */

.e-7dbb0917 > .box > .body > .stats
{
	display: flex;
	gap: var(--ot-spacing-l);
	padding: var(--ot-spacing-m) 0;
	border-top: 1px solid var(--ot-bg-2-border);
	border-bottom: 1px solid var(--ot-bg-2-border);
}

.e-7dbb0917 > .box > .body > .stats > .stat > .num
{
	font-family: var(--ot-font-secondary);
	font-size: 18px;
	font-weight: 600;
	color: var(--ot-text-1);
	line-height: 1;
	font-variation-settings: 'opsz' 144;
	margin-bottom: 3px;
}

.e-7dbb0917 > .box > .body > .stats > .stat > .label
{
	font-size: 10px;
	font-weight: 600;
	color: var(--ot-text-3);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Socials */

.e-7dbb0917 > .box > .body > .socials
{
	display: flex;
	gap: var(--ot-spacing-s);
}

.e-7dbb0917 > .box > .body > .socials > .social
{
	position: relative;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--ot-height-m);
	height: var(--ot-height-m);
	border-radius: var(--ot-radius-m);
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	color: var(--ot-text-2);
	text-decoration: none;
	transition: background var(--ot-transition-fast), color var(--ot-transition-fast), border-color var(--ot-transition-fast), transform var(--ot-transition-fast);
}

.e-7dbb0917 > .box > .body > .socials > .social:hover
{
	background: var(--ot-brand-opacity);
	color: var(--ot-brand);
	border-color: var(--ot-brand);
	transform: translateY(-1px);
}

.e-7dbb0917 > .box > .body > .socials > .social > i
{
	font-size: 16px;
}

/* Actions */

.e-7dbb0917 > .box > .body > .actions
{
	position: relative;
	z-index: 3;
	display: flex;
	gap: var(--ot-spacing-s);
}

/* Follow */

.e-7dbb0917 > .box > .body > .follow
{
	position: relative;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--ot-spacing-x);
	height: var(--ot-height-m);
	padding: 0 var(--ot-spacing-m);
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: 100px;
	font-size: var(--ot-size-m);
	font-weight: 600;
	color: var(--ot-text-1);
	cursor: pointer;
	transition: background var(--ot-transition), border-color var(--ot-transition), color var(--ot-transition), transform var(--ot-transition);
	align-self: flex-start;
}

.e-7dbb0917 > .box > .body > .follow:hover
{
	border-color: var(--ot-text-1);
	transform: translateY(-1px);
}

.e-7dbb0917 > .box > .body > .follow > i
{
	font-size: 16px;
}

.e-7dbb0917 > .box > .body > .follow.active
{
	background: var(--ot-text-1);
	border-color: var(--ot-text-1);
	color: var(--ot-bg-1);
}

/* ===== HORIZONTAL ===== */

.e-7dbb0917 > .box.horizontal > .body
{
	padding: var(--ot-spacing-m);
	gap: var(--ot-spacing-s);
}

.e-7dbb0917 > .box.horizontal > .body > .stats
{
	padding: 0;
	border: none;
	gap: var(--ot-spacing-m);
}

/* ===== BACKGROUND ===== */

.e-7dbb0917 > .box.bg-1 { background: var(--ot-bg-1); }
.e-7dbb0917 > .box.bg-1 .avatar { border-color: var(--ot-bg-1); }
.e-7dbb0917 > .box.bg-1 .tag { background: var(--ot-bg-2); border-color: var(--ot-bg-1-border); }
.e-7dbb0917 > .box.bg-1 .social { background: var(--ot-bg-2); border-color: var(--ot-bg-1-border); }
.e-7dbb0917 > .box.bg-1 .stats { border-color: var(--ot-bg-1-border); }

.e-7dbb0917 > .box.bg-2 { background: var(--ot-bg-2); }
.e-7dbb0917 > .box.bg-2 .avatar { border-color: var(--ot-bg-2); }
.e-7dbb0917 > .box.bg-2 .tag { background: var(--ot-bg-1); border-color: var(--ot-bg-2-border); }
.e-7dbb0917 > .box.bg-2 .social { background: var(--ot-bg-1); border-color: var(--ot-bg-2-border); }
.e-7dbb0917 > .box.bg-2 .stats { border-color: var(--ot-bg-2-border); }

.e-7dbb0917 > .box.bg-3 { background: var(--ot-bg-3); }
.e-7dbb0917 > .box.bg-3 .avatar { border-color: var(--ot-bg-3); }
.e-7dbb0917 > .box.bg-3 .tag { background: var(--ot-bg-2); border-color: var(--ot-bg-3-border); }
.e-7dbb0917 > .box.bg-3 .social { background: var(--ot-bg-2); border-color: var(--ot-bg-3-border); }
.e-7dbb0917 > .box.bg-3 .stats { border-color: var(--ot-bg-3-border); }

.e-7dbb0917 > .box.bg-4 { background: var(--ot-bg-4); }
.e-7dbb0917 > .box.bg-4 .avatar { border-color: var(--ot-bg-4); }
.e-7dbb0917 > .box.bg-4 .tag { background: var(--ot-bg-3); border-color: var(--ot-bg-4-border); }
.e-7dbb0917 > .box.bg-4 .social { background: var(--ot-bg-3); border-color: var(--ot-bg-4-border); }
.e-7dbb0917 > .box.bg-4 .stats { border-color: var(--ot-bg-4-border); }

/* Border */

.e-7dbb0917 > .box.border { border: 1px solid var(--ot-bg-2-border); }
.e-7dbb0917 > .box.bg-1.border { border-color: var(--ot-bg-1-border); }
.e-7dbb0917 > .box.bg-2.border { border-color: var(--ot-bg-2-border); }
.e-7dbb0917 > .box.bg-3.border { border-color: var(--ot-bg-3-border); }
.e-7dbb0917 > .box.bg-4.border { border-color: var(--ot-bg-4-border); }

/* ===== SIZE ===== */

/* Small */

.e-7dbb0917 > .box.size-s > .body
{
	padding: var(--ot-spacing-m);
	gap: var(--ot-spacing-s);
}

.e-7dbb0917 > .box.size-s .avatar { width: 44px; height: 44px; }
.e-7dbb0917 > .box.size-s .avatar > i { font-size: 22px; }
.e-7dbb0917 > .box.size-s .identity > .name { font-size: 15px; }
.e-7dbb0917 > .box.size-s .identity > .role { font-size: var(--ot-size-s); }
.e-7dbb0917 > .box.size-s .description { font-size: 12px; }
.e-7dbb0917 > .box.size-s .stats > .stat > .num { font-size: 16px; }
.e-7dbb0917 > .box.size-s.vertical:has(> .cover) > .body { margin-top: -28px; }

/* Medium */

.e-7dbb0917 > .box.size-m > .body
{
	padding: var(--ot-spacing-l);
	gap: var(--ot-spacing-m);
}

.e-7dbb0917 > .box.size-m .avatar { width: 56px; height: 56px; }
.e-7dbb0917 > .box.size-m .avatar > i { font-size: 28px; }
.e-7dbb0917 > .box.size-m .identity > .name { font-size: 17px; }

/* Large */

.e-7dbb0917 > .box.size-l > .body
{
	padding: var(--ot-spacing-l);
	gap: var(--ot-spacing-m);
}

.e-7dbb0917 > .box.size-l .avatar { width: 72px; height: 72px; }
.e-7dbb0917 > .box.size-l .avatar > i { font-size: 36px; }
.e-7dbb0917 > .box.size-l .identity > .name { font-size: 20px; }
.e-7dbb0917 > .box.size-l .identity > .role { font-size: var(--ot-size-m); }
.e-7dbb0917 > .box.size-l .description { font-size: 14px; }
.e-7dbb0917 > .box.size-l .stats > .stat > .num { font-size: var(--ot-size-l); }
.e-7dbb0917 > .box.size-l.vertical:has(> .cover) > .body { margin-top: -44px; }
.e-7dbb0917 > .box.size-l > .cover { height: 140px; }
/* ===== CARDS SHARE ===== */

.e-54760d1f
{
	display: contents;
}

/* Box */

.e-54760d1f > .box
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-m);
	width: 100%;
	padding: var(--ot-spacing-l);
	border-radius: var(--ot-radius-l);
}

/* Title */

.e-54760d1f > .box > .title
{
	font-size: var(--ot-size-s);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--ot-text-3);
	font-family: var(--ot-font-primary);
}

/* Actions */

.e-54760d1f > .box > .actions
{
	display: flex;
	gap: var(--ot-spacing-s);
	flex-wrap: wrap;
}

/* Action button */

.e-54760d1f > .box > .actions > .action
{
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--ot-spacing-x);
	min-width: 38px;
	height: 38px;
	padding: 0 var(--ot-spacing-s);
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: 100px;
	color: var(--ot-text-2);
	cursor: pointer;
	font-family: var(--ot-font-primary);
	font-size: 12.5px;
	font-weight: 600;
	outline: none;
	transition: background var(--ot-transition), border-color var(--ot-transition), color var(--ot-transition), transform var(--ot-transition);
}

.e-54760d1f > .box > .actions > .action:hover
{
	background: var(--ot-bg-2-hover);
	color: var(--ot-text-1);
	transform: translateY(-1px);
}

.e-54760d1f > .box > .actions > .action:active
{
	transform: translateY(0) scale(0.95);
	transition-duration: 100ms;
}

.e-54760d1f > .box > .actions > .action > i
{
	font-size: 17px;
	transition: transform var(--ot-transition);
}

.e-54760d1f > .box > .actions > .action > .count
{
	font-variant-numeric: tabular-nums;
}

/* Copied state */

.e-54760d1f > .box > .actions > .action.copied
{
	background: var(--ot-green-opacity);
	border-color: var(--ot-green);
	color: var(--ot-green);
}

.e-54760d1f > .box > .actions > .action.copied > i
{
	animation: e-54760d1f-pop 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes e-54760d1f-pop
{
	0% { transform: scale(0.5); opacity: 0; }
	60% { transform: scale(1.2); opacity: 1; }
	100% { transform: scale(1); }
}

/* Saved state */

.e-54760d1f > .box > .actions > .action.saved
{
	background: var(--ot-text-1);
	border-color: var(--ot-text-1);
	color: var(--ot-bg-1);
}

.e-54760d1f > .box > .actions > .action.saved > i
{
	font-variation-settings: 'FILL' 1;
	animation: e-54760d1f-pop 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Liked state */

.e-54760d1f > .box > .actions > .action.liked
{
	background: var(--ot-brand);
	border-color: var(--ot-brand);
	color: #fff;
}

.e-54760d1f > .box > .actions > .action.liked > i
{
	font-variation-settings: 'FILL' 1;
	animation: e-54760d1f-heart 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes e-54760d1f-heart
{
	0% { transform: scale(1); }
	30% { transform: scale(0.7); }
	60% { transform: scale(1.3); }
	100% { transform: scale(1); }
}

/* Platforms */

.e-54760d1f > .box > .platforms
{
	display: flex;
	gap: var(--ot-spacing-s);
	padding-top: var(--ot-spacing-m);
	border-top: 1px solid var(--ot-bg-2-border);
	flex-wrap: wrap;
}

.e-54760d1f > .box > .platforms > .platform
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	color: var(--ot-text-2);
	text-decoration: none;
	transition: background var(--ot-transition), border-color var(--ot-transition), color var(--ot-transition), transform var(--ot-transition);
}

.e-54760d1f > .box > .platforms > .platform > i
{
	font-size: 17px;
}

.e-54760d1f > .box > .platforms > .platform > svg
{
	width: 16px;
	height: 16px;
	display: block;
}

.e-54760d1f > .box > .platforms > .platform:hover
{
	transform: translateY(-2px);
}

.e-54760d1f > .box > .platforms > .platform[data-platform="twitter"]:hover { background: #1DA1F2; border-color: #1DA1F2; color: #fff; }
.e-54760d1f > .box > .platforms > .platform[data-platform="facebook"]:hover { background: #1877F2; border-color: #1877F2; color: #fff; }
.e-54760d1f > .box > .platforms > .platform[data-platform="linkedin"]:hover { background: #0A66C2; border-color: #0A66C2; color: #fff; }
.e-54760d1f > .box > .platforms > .platform[data-platform="whatsapp"]:hover { background: #25D366; border-color: #25D366; color: #fff; }
.e-54760d1f > .box > .platforms > .platform[data-platform="telegram"]:hover { background: #26A5E4; border-color: #26A5E4; color: #fff; }
.e-54760d1f > .box > .platforms > .platform[data-platform="email"]:hover { background: var(--ot-text-1); border-color: var(--ot-text-1); color: var(--ot-bg-1); }

/* ===== ORIENTATION: VERTICAL ===== */

.e-54760d1f > .box.vertical > .actions
{
	flex-direction: column;
	align-items: stretch;
}

.e-54760d1f > .box.vertical > .actions > .action
{
	justify-content: center;
}

.e-54760d1f > .box.vertical > .platforms
{
	flex-direction: column;
	align-items: stretch;
}

.e-54760d1f > .box.vertical > .platforms > .platform
{
	width: 100%;
	height: 38px;
	border-radius: var(--ot-radius-m);
	justify-content: center;
	gap: var(--ot-spacing-s);
}

/* ===== VARIANT: INLINE ===== */

.e-54760d1f > .box.inline
{
	padding: 0;
	background: transparent !important;
	border: none !important;
	border-radius: 0;
	flex-direction: row;
	align-items: center;
	gap: var(--ot-spacing-m);
}

.e-54760d1f > .box.inline > .title
{
	margin: 0;
}

.e-54760d1f > .box.inline > .platforms
{
	padding-top: 0;
	border-top: none;
	border-left: 1px solid var(--ot-bg-2-border);
	padding-left: var(--ot-spacing-m);
}

/* ===== VARIANT: COMPACT ===== */

.e-54760d1f > .box.compact
{
	padding: var(--ot-spacing-s);
	gap: var(--ot-spacing-x);
}

.e-54760d1f > .box.compact > .title
{
	display: none;
}

.e-54760d1f > .box.compact > .actions > .action
{
	min-width: 34px;
	height: 34px;
	padding: 0 var(--ot-spacing-x);
}

/* ===== BACKGROUND ===== */

.e-54760d1f > .box.bg-1 { background: var(--ot-bg-1); }
.e-54760d1f > .box.bg-1 > .actions > .action { background: var(--ot-bg-2); border-color: var(--ot-bg-1-border); }
.e-54760d1f > .box.bg-1 > .actions > .action:hover { background: var(--ot-bg-1-hover); }
.e-54760d1f > .box.bg-1 > .platforms { border-color: var(--ot-bg-1-border); }
.e-54760d1f > .box.bg-1 > .platforms > .platform { background: var(--ot-bg-2); border-color: var(--ot-bg-1-border); }

.e-54760d1f > .box.bg-2 { background: var(--ot-bg-2); }
.e-54760d1f > .box.bg-2 > .actions > .action { background: var(--ot-bg-1); border-color: var(--ot-bg-2-border); }
.e-54760d1f > .box.bg-2 > .actions > .action:hover { background: var(--ot-bg-2-hover); }
.e-54760d1f > .box.bg-2 > .platforms { border-color: var(--ot-bg-2-border); }
.e-54760d1f > .box.bg-2 > .platforms > .platform { background: var(--ot-bg-1); border-color: var(--ot-bg-2-border); }

.e-54760d1f > .box.bg-3 { background: var(--ot-bg-3); }
.e-54760d1f > .box.bg-3 > .actions > .action { background: var(--ot-bg-2); border-color: var(--ot-bg-3-border); }
.e-54760d1f > .box.bg-3 > .actions > .action:hover { background: var(--ot-bg-3-hover); }
.e-54760d1f > .box.bg-3 > .platforms { border-color: var(--ot-bg-3-border); }
.e-54760d1f > .box.bg-3 > .platforms > .platform { background: var(--ot-bg-2); border-color: var(--ot-bg-3-border); }

.e-54760d1f > .box.bg-4 { background: var(--ot-bg-4); }
.e-54760d1f > .box.bg-4 > .actions > .action { background: var(--ot-bg-3); border-color: var(--ot-bg-4-border); }
.e-54760d1f > .box.bg-4 > .actions > .action:hover { background: var(--ot-bg-4-hover); }
.e-54760d1f > .box.bg-4 > .platforms { border-color: var(--ot-bg-4-border); }
.e-54760d1f > .box.bg-4 > .platforms > .platform { background: var(--ot-bg-3); border-color: var(--ot-bg-4-border); }

/* ===== VARIANT: BORDER ===== */

.e-54760d1f > .box.border { border: 1px solid var(--ot-bg-2-border); }
.e-54760d1f > .box.bg-1.border { border-color: var(--ot-bg-1-border); }
.e-54760d1f > .box.bg-2.border { border-color: var(--ot-bg-2-border); }
.e-54760d1f > .box.bg-3.border { border-color: var(--ot-bg-3-border); }
.e-54760d1f > .box.bg-4.border { border-color: var(--ot-bg-4-border); }

/* ===== SIZE ===== */

.e-54760d1f > .box.size-s
{
	padding: var(--ot-spacing-m);
	gap: var(--ot-spacing-s);
}

.e-54760d1f > .box.size-s > .actions > .action
{
	min-width: 32px;
	height: 32px;
	font-size: var(--ot-size-s);
}

.e-54760d1f > .box.size-s > .actions > .action > i
{
	font-size: 15px;
}

.e-54760d1f > .box.size-s > .platforms > .platform
{
	width: 32px;
	height: 32px;
}

.e-54760d1f > .box.size-s > .platforms > .platform > i
{
	font-size: 15px;
}

.e-54760d1f > .box.size-s > .platforms > .platform > svg
{
	width: 14px;
	height: 14px;
}

.e-54760d1f > .box.size-l
{
	padding: var(--ot-spacing-l);
	gap: var(--ot-spacing-l);
}

.e-54760d1f > .box.size-l > .title
{
	font-size: 12.5px;
}

.e-54760d1f > .box.size-l > .actions > .action
{
	min-width: 44px;
	height: 44px;
	padding: 0 var(--ot-spacing-m);
	font-size: 13.5px;
}

.e-54760d1f > .box.size-l > .actions > .action > i
{
	font-size: 19px;
}

.e-54760d1f > .box.size-l > .platforms > .platform
{
	width: 44px;
	height: 44px;
}

.e-54760d1f > .box.size-l > .platforms > .platform > i
{
	font-size: 19px;
}

.e-54760d1f > .box.size-l > .platforms > .platform > svg
{
	width: 18px;
	height: 18px;
}
/* ===== CORE BUILDER ===== */

.e-7d599f7d
{
	display: flex;
	width: 100%;
}

/* Box */

.e-7d599f7d > .box
{
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: var(--ot-spacing-l);
}

.e-7d599f7d > .box.has-steps.steps-vertical
{
	flex-direction: row;
	align-items: flex-start;
	gap: var(--ot-spacing-m);
}

.e-7d599f7d > .box.has-steps.steps-horizontal
{
	flex-direction: column;
	gap: var(--ot-spacing-m);
}

/* Steps sidebar */

.e-7d599f7d > .box.steps-vertical > .steps
{
	flex-shrink: 0;
	width: 260px;
	min-width: 260px;
	max-width: 260px;
	position: sticky;
	top: 0;
}

.e-7d599f7d > .box.steps-horizontal > .steps
{
	width: 100%;
}

/* Main */

.e-7d599f7d > .box > .main
{
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
	gap: var(--ot-spacing-l);
}

/* Sections */

.e-7d599f7d > .box > .main > .sections
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-l);
}

.e-7d599f7d > .box > .main > .sections > .step-panel
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-l);
}

/* Grid */

.e-7d599f7d .grid
{
	display: grid;
	gap: var(--ot-spacing-m);
	width: 100%;
}

/* Footer */

.e-7d599f7d > .box > .main > .footer
{
	display: flex;
	justify-content: flex-end;
}

/* ===== BACKGROUND ===== */

.e-7d599f7d > .box.bg-1 { background: var(--ot-bg-1); padding: var(--ot-spacing-l); border-radius: var(--ot-radius-m); }
.e-7d599f7d > .box.bg-2 { background: var(--ot-bg-2); padding: var(--ot-spacing-l); border-radius: var(--ot-radius-m); }
.e-7d599f7d > .box.bg-3 { background: var(--ot-bg-3); padding: var(--ot-spacing-l); border-radius: var(--ot-radius-m); }
.e-7d599f7d > .box.bg-4 { background: var(--ot-bg-4); padding: var(--ot-spacing-l); border-radius: var(--ot-radius-m); }

/* ===== BORDER ===== */

.e-7d599f7d > .box.border
{
	border: 1px solid var(--ot-bg-2-border);
	padding: var(--ot-spacing-l);
	border-radius: var(--ot-radius-m);
}

/* ===== SIZE ===== */

.e-7d599f7d > .box.size-s { gap: var(--ot-spacing-m); }
.e-7d599f7d > .box.size-s > .main { gap: var(--ot-spacing-m); }
.e-7d599f7d > .box.size-s > .main > .sections { gap: var(--ot-spacing-m); }
.e-7d599f7d > .box.size-s > .main > .sections > .step-panel { gap: var(--ot-spacing-m); }
.e-7d599f7d > .box.size-s .grid { gap: var(--ot-spacing-s); }

.e-7d599f7d > .box.size-l .grid { gap: var(--ot-spacing-l); }

/* ===== RESPONSIVE ===== */

@media (max-width: 900px)
{
	.e-7d599f7d > .box.has-steps
	{
		flex-direction: column;
	}

	.e-7d599f7d > .box > .steps
	{
		width: 100%;
		position: static;
	}

	.e-7d599f7d .grid
	{
		grid-template-columns: 1fr !important;
	}
}
/* ===== CORE REPEATER ===== */

.e-d62eba0
{
	display: flex;
	width: 100%;
}

/* Box */

.e-d62eba0 > .box
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-m);
	width: 100%;
	border-radius: var(--ot-radius-m);
	border: 1px solid transparent;
}

/* ===== ROWS ===== */

.e-d62eba0 > .box > .rows
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
}

/* Row */

.e-d62eba0 > .box > .rows > .row
{
	position: relative;
	display: flex;
	align-items: stretch;
	gap: var(--ot-spacing-s);
	padding: var(--ot-spacing-s);
	border: 1px solid transparent;
	border-radius: var(--ot-radius-m);
	transition: background var(--ot-transition), border-color var(--ot-transition);
}

.e-d62eba0 > .box > .rows > .row:hover
{
	border-color: var(--ot-bg-3-border);
}

/* Reorder */

.e-d62eba0 > .box > .rows > .row > .reorder
{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	gap: 2px;
	align-self: center;
}

.e-d62eba0 > .box > .rows > .row > .reorder > .action
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 18px;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: var(--ot-radius-s);
	color: var(--ot-text-3);
	cursor: pointer;
	outline: none;
	transition: background var(--ot-transition), color var(--ot-transition);
}

.e-d62eba0 > .box > .rows > .row > .reorder > .action:hover:not(:disabled)
{
	background: var(--ot-bg-2);
	color: var(--ot-text-1);
}

.e-d62eba0 > .box > .rows > .row > .reorder > .action:disabled
{
	opacity: 0.3;
	cursor: not-allowed;
}

.e-d62eba0 > .box > .rows > .row > .reorder > .action > i
{
	font-size: 18px;
}

/* Number */

.e-d62eba0 > .box > .rows > .row > .number
{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	align-self: center;
	border: 1px solid transparent;
	border-radius: 50%;
	font-family: var(--ot-font-primary);
	font-size: 11px;
	font-weight: 700;
	color: var(--ot-text-2);
}

/* Fields */

.e-d62eba0 > .box > .rows > .row > .fields
{
	display: flex;
	flex: 1;
	gap: var(--ot-spacing-s);
	min-width: 0;
}

.e-d62eba0 > .box.vertical > .rows > .row > .fields
{
	flex-direction: column;
}

/* Field */

.e-d62eba0 > .box > .rows > .row > .fields > .field
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-x);
	flex: 1;
	min-width: 0;
}

.e-d62eba0 > .box > .rows > .row > .fields > .field > .field-info
{
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.e-d62eba0 > .box > .rows > .row > .fields > .field > .field-info > .field-label
{
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
	font-weight: 600;
	color: var(--ot-text-2);
	line-height: 1.2;
}

.e-d62eba0 > .box > .rows > .row > .fields > .field > .field-info > .field-description
{
	font-family: var(--ot-font-primary);
	font-size: 10.5px;
	color: var(--ot-text-3);
	line-height: 1.3;
}

/* Hide labels on subsequent rows in horizontal mode */

.e-d62eba0 > .box.horizontal > .rows > .row:not(:first-child) .field > .field-info
{
	display: none;
}

/* Row actions */

.e-d62eba0 > .box > .rows > .row > .actions
{
	display: flex;
	align-items: center;
	gap: 2px;
	flex-shrink: 0;
	align-self: center;
}

.e-d62eba0 > .box > .rows > .row > .actions > .action
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: var(--ot-radius-s);
	color: var(--ot-text-3);
	cursor: pointer;
	outline: none;
	transition: background var(--ot-transition), color var(--ot-transition);
}

.e-d62eba0 > .box > .rows > .row > .actions > .action:hover
{
	background: var(--ot-bg-2);
	color: var(--ot-text-1);
}

.e-d62eba0 > .box > .rows > .row > .actions > .action.danger:hover
{
	background: var(--ot-red-opacity);
	color: var(--ot-red);
}

.e-d62eba0 > .box > .rows > .row > .actions > .action > i
{
	font-size: 16px;
}

/* ===== EMPTY ===== */

.e-d62eba0 > .box > .empty
{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--ot-spacing-m);
	padding: var(--ot-spacing-l);
	border: 1px dashed var(--ot-bg-2-border);
	border-radius: var(--ot-radius-m);
}

.e-d62eba0 > .box > .empty > .empty-icon
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--ot-bg-2);
	color: var(--ot-text-3);
}

.e-d62eba0 > .box > .empty > .empty-icon > i
{
	font-size: 24px;
}

.e-d62eba0 > .box > .empty > .empty-text
{
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-m);
	color: var(--ot-text-2);
}

/* ===== FOOTER ===== */

.e-d62eba0 > .box > .footer
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ot-spacing-s);
}

.e-d62eba0 > .box > .footer > .counter
{
	font-family: var(--ot-font-primary);
	font-size: 11px;
	font-weight: 600;
	color: var(--ot-text-3);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.e-d62eba0 > .box > .footer > .footer-actions
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
}

.e-d62eba0 > .box > .empty > .empty-actions
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
}

/* ===== ITERATION ===== */

.e-d62eba0 > .box > .iteration
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
}

/* Iteration chip */

.e-d62eba0 > .box > .iteration > .iteration-chip
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	background: var(--ot-brand-opacity);
	border: 1px solid var(--ot-brand-opacity);
	border-radius: var(--ot-radius-m);
	transition: border-color var(--ot-transition);
}

.e-d62eba0 > .box > .iteration > .iteration-chip:hover
{
	border-color: var(--ot-brand);
}

.e-d62eba0 > .box > .iteration > .iteration-chip > .iteration-icon
{
	flex-shrink: 0;
	font-size: 18px;
	color: var(--ot-brand);
}

.e-d62eba0 > .box > .iteration > .iteration-chip > .iteration-text
{
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
	gap: 2px;
}

.e-d62eba0 > .box > .iteration > .iteration-chip > .iteration-text > .iteration-label
{
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ot-text-3);
}

.e-d62eba0 > .box > .iteration > .iteration-chip > .iteration-text > .iteration-expression
{
	font-family: var(--ot-font-mono, ui-monospace, Menlo, Consolas, monospace);
	font-size: var(--ot-size-m);
	font-weight: 600;
	color: var(--ot-brand);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.e-d62eba0 > .box > .iteration > .iteration-chip > .iteration-count
{
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	padding: 2px var(--ot-spacing-s);
	background: var(--ot-bg-1);
	border-radius: 100px;
	font-size: var(--ot-size-s);
	font-weight: 600;
	color: var(--ot-text-2);
}

.e-d62eba0 > .box > .iteration > .iteration-chip > .iteration-action
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: var(--ot-radius-s);
	color: var(--ot-brand);
	cursor: pointer;
	outline: none;
	transition: background var(--ot-transition), color var(--ot-transition);
}

.e-d62eba0 > .box > .iteration > .iteration-chip > .iteration-action:hover
{
	background: var(--ot-bg-1);
}

.e-d62eba0 > .box > .iteration > .iteration-chip > .iteration-action.danger:hover
{
	background: rgba(244,63,94,0.18);
	color: var(--ot-red);
}

.e-d62eba0 > .box > .iteration > .iteration-chip > .iteration-action > i
{
	font-size: 14px;
}

/* Iteration template editor */

.e-d62eba0 > .box > .iteration > .iteration-template
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
	padding: var(--ot-spacing-m);
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: var(--ot-radius-m);
}

.e-d62eba0 > .box > .iteration > .iteration-template > .iteration-template-head
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	padding-bottom: var(--ot-spacing-s);
	border-bottom: 1px solid var(--ot-bg-2-border);
}

.e-d62eba0 > .box > .iteration > .iteration-template > .iteration-template-head > i
{
	font-size: 16px;
	color: var(--ot-brand);
	flex-shrink: 0;
}

.e-d62eba0 > .box > .iteration > .iteration-template > .iteration-template-head > .iteration-template-label
{
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ot-text-2);
}

.e-d62eba0 > .box > .iteration > .iteration-template > .iteration-template-head > .iteration-template-hint
{
	font-size: var(--ot-size-s);
	color: var(--ot-text-3);
}

.e-d62eba0 > .box > .iteration > .iteration-template > .iteration-template-head > .iteration-template-hint > code
{
	padding: 1px 5px;
	background: var(--ot-bg-1);
	border-radius: var(--ot-radius-s);
	font-family: var(--ot-font-mono, ui-monospace, Menlo, Consolas, monospace);
	font-size: 11px;
	color: var(--ot-text-2);
}

.e-d62eba0 > .box > .iteration > .iteration-template > .fields
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
}

/* Iteration preview */

.e-d62eba0 > .box > .iteration > .iteration-preview
{
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: var(--ot-spacing-s);
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: var(--ot-radius-m);
	max-height: 200px;
	overflow-y: auto;
}

.e-d62eba0 > .box > .iteration > .iteration-preview > .iteration-preview-head
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	padding: var(--ot-spacing-x) var(--ot-spacing-s);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ot-text-3);
}

.e-d62eba0 > .box > .iteration > .iteration-preview > .iteration-preview-head > i
{
	font-size: 13px;
}

.e-d62eba0 > .box > .iteration > .iteration-preview > .iteration-row
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	padding: 4px var(--ot-spacing-s);
	border-radius: var(--ot-radius-s);
	font-family: var(--ot-font-mono, ui-monospace, Menlo, Consolas, monospace);
	font-size: var(--ot-size-s);
}

.e-d62eba0 > .box > .iteration > .iteration-preview > .iteration-row:nth-child(odd)
{
	background: var(--ot-bg-1);
}

.e-d62eba0 > .box > .iteration > .iteration-preview > .iteration-row > .iteration-row-index
{
	flex-shrink: 0;
	width: 22px;
	color: var(--ot-text-3);
	font-weight: 700;
	text-align: right;
}

.e-d62eba0 > .box > .iteration > .iteration-preview > .iteration-row > .iteration-row-text
{
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--ot-text-2);
}

/* Iteration empty */

.e-d62eba0 > .box > .iteration > .iteration-empty
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	padding: var(--ot-spacing-m);
	background: var(--ot-bg-2);
	border: 1px dashed var(--ot-bg-2-border);
	border-radius: var(--ot-radius-m);
	color: var(--ot-text-3);
	font-size: var(--ot-size-s);
}

.e-d62eba0 > .box > .iteration > .iteration-empty > i
{
	font-size: 16px;
}

/* ===== BACKGROUND ===== */

.e-d62eba0 > .box.bg-1 > .rows > .row { background: var(--ot-bg-1); border-color: var(--ot-bg-1-border); }
.e-d62eba0 > .box.bg-1 > .rows > .row:hover { background: var(--ot-bg-1-hover); }
.e-d62eba0 > .box.bg-1 > .empty { background: var(--ot-bg-1); border-color: var(--ot-bg-1-border); }
.e-d62eba0 > .box.bg-1 .number { background: var(--ot-bg-2); border-color: var(--ot-bg-1-border); }

.e-d62eba0 > .box.bg-2 > .rows > .row { background: var(--ot-bg-2); border-color: var(--ot-bg-2-border); }
.e-d62eba0 > .box.bg-2 > .rows > .row:hover { background: var(--ot-bg-2-hover); }
.e-d62eba0 > .box.bg-2 > .empty { background: var(--ot-bg-2); border-color: var(--ot-bg-2-border); }
.e-d62eba0 > .box.bg-2 .number { background: var(--ot-bg-3); border-color: var(--ot-bg-2-border); }
.e-d62eba0 > .box.bg-2 .action:hover { background: var(--ot-bg-1); }

.e-d62eba0 > .box.bg-3 > .rows > .row { background: var(--ot-bg-3); border-color: var(--ot-bg-3-border); }
.e-d62eba0 > .box.bg-3 > .rows > .row:hover { background: var(--ot-bg-3-hover); }
.e-d62eba0 > .box.bg-3 > .empty { background: var(--ot-bg-3); border-color: var(--ot-bg-3-border); }
.e-d62eba0 > .box.bg-3 .number { background: var(--ot-bg-4); border-color: var(--ot-bg-3-border); }
.e-d62eba0 > .box.bg-3 .action:hover { background: var(--ot-bg-2); }

.e-d62eba0 > .box.bg-4 > .rows > .row { background: var(--ot-bg-4); border-color: var(--ot-bg-4-border); }
.e-d62eba0 > .box.bg-4 > .rows > .row:hover { background: var(--ot-bg-4-hover); }
.e-d62eba0 > .box.bg-4 > .empty { background: var(--ot-bg-4); border-color: var(--ot-bg-4-border); }
.e-d62eba0 > .box.bg-4 .number { background: var(--ot-bg-3); border-color: var(--ot-bg-4-border); }
.e-d62eba0 > .box.bg-4 .action:hover { background: var(--ot-bg-3); }

/* ===== BORDER ===== */

.e-d62eba0 > .box.border { border-color: var(--ot-bg-2-border); padding: var(--ot-spacing-m); }
.e-d62eba0 > .box.bg-1.border { border-color: var(--ot-bg-1-border); }
.e-d62eba0 > .box.bg-2.border { border-color: var(--ot-bg-2-border); }
.e-d62eba0 > .box.bg-3.border { border-color: var(--ot-bg-3-border); }
.e-d62eba0 > .box.bg-4.border { border-color: var(--ot-bg-4-border); }

/* ===== SIZE ===== */

.e-d62eba0 > .box.size-s > .rows > .row { padding: var(--ot-spacing-x); gap: var(--ot-spacing-x); }
.e-d62eba0 > .box.size-s > .rows > .row > .fields { gap: var(--ot-spacing-x); }
.e-d62eba0 > .box.size-s .action { width: 24px; height: 24px; }
.e-d62eba0 > .box.size-s .action > i { font-size: 14px; }

.e-d62eba0 > .box.size-m > .rows > .row { padding: var(--ot-spacing-s); gap: var(--ot-spacing-s); }
.e-d62eba0 > .box.size-m > .rows > .row > .fields { gap: var(--ot-spacing-s); }

.e-d62eba0 > .box.size-l > .rows > .row { padding: var(--ot-spacing-m); gap: var(--ot-spacing-m); }
.e-d62eba0 > .box.size-l > .rows > .row > .fields { gap: var(--ot-spacing-m); }
.e-d62eba0 > .box.size-l .action { width: 32px; height: 32px; }
.e-d62eba0 > .box.size-l .action > i { font-size: 18px; }

/* ===== DISABLED ===== */

.e-d62eba0 > .box.disabled > .rows > .row
{
	opacity: 0.7;
	cursor: not-allowed;
}
/* ===== DATA FILTERS ===== */

.e-435be612
{
	display: contents;
}

/* Box */

.e-435be612 > .box
{
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	border: 1px solid transparent;
	border-radius: var(--ot-radius-m);
	overflow: hidden;
}

.e-435be612 > .box.sticky
{
	position: sticky;
	top: var(--ot-spacing-m);
	max-height: calc(100vh - var(--ot-spacing-l));
}

/* ===== BACKGROUND ===== */

.e-435be612 > .box.bg-1 { background: var(--ot-bg-1); }
.e-435be612 > .box.bg-2 { background: var(--ot-bg-2); }
.e-435be612 > .box.bg-3 { background: var(--ot-bg-3); }
.e-435be612 > .box.bg-4 { background: var(--ot-bg-4); }

/* ===== BORDER ===== */

.e-435be612 > .box.border { border-color: var(--ot-bg-2-border); }
.e-435be612 > .box.bg-1.border { border-color: var(--ot-bg-1-border); }
.e-435be612 > .box.bg-2.border { border-color: var(--ot-bg-2-border); }
.e-435be612 > .box.bg-3.border { border-color: var(--ot-bg-3-border); }
.e-435be612 > .box.bg-4.border { border-color: var(--ot-bg-4-border); }

/* ===== BORDER-LEFT ===== */

.e-435be612 > .box.border-left
{
	border: none;
	border-left: 1px solid var(--ot-bg-2-border);
	border-radius: 0;
}

.e-435be612 > .box.bg-1.border-left { border-left-color: var(--ot-bg-1-border); }
.e-435be612 > .box.bg-2.border-left { border-left-color: var(--ot-bg-2-border); }
.e-435be612 > .box.bg-3.border-left { border-left-color: var(--ot-bg-3-border); }
.e-435be612 > .box.bg-4.border-left { border-left-color: var(--ot-bg-4-border); }

/* ===== MODIFIERS ===== */

.e-435be612 > .box.clean
{
	background: transparent;
	border-color: transparent;
}

/* ===== HEAD ===== */

.e-435be612 > .box > .head
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	height: 65px;
	padding: 0 var(--ot-spacing-m);
	border-bottom: 1px solid var(--ot-bg-2-border);
}

.e-435be612 > .box > .head > .head-title
{
	display: flex;
	align-items: center;
	gap: 6px;
	flex: 1;
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-m);
	font-weight: 700;
	color: var(--ot-text-1);
	min-width: 0;
}

.e-435be612 > .box > .head > .head-title > i
{
	font-size: 18px;
	color: var(--ot-text-2);
}

.e-435be612 > .box > .head > .head-title > .head-count
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	background: var(--ot-brand);
	color: #fff;
	border-radius: 100px;
	font-size: 11px;
	font-weight: 700;
	margin-left: 4px;
}

.e-435be612 > .box > .head > .head-clear
{
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 10px;
	background: transparent;
	border: 1px solid var(--ot-bg-2-border);
	border-radius: var(--ot-radius-s);
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
	font-weight: 500;
	color: var(--ot-text-2);
	cursor: pointer;
	transition: background var(--ot-transition), color var(--ot-transition), border-color var(--ot-transition);
}

.e-435be612 > .box > .head > .head-clear:hover
{
	background: var(--ot-bg-2);
	color: var(--ot-text-1);
	border-color: var(--ot-bg-3-border);
}

.e-435be612 > .box > .head > .head-clear > i
{
	font-size: 14px;
}

/* ===== GROUPS ===== */

.e-435be612 > .box > .groups
{
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	flex: 1;
}

.e-435be612 > .box > .groups > .group
{
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid var(--ot-bg-2-border);
}

.e-435be612 > .box > .groups > .group:last-child
{
	border-bottom: none;
}

/* Group head */

.e-435be612 > .box > .groups > .group > .group-head
{
	display: flex;
	align-items: center;
	gap: 6px;
	height: 44px;
	padding: 0 var(--ot-spacing-m);
	user-select: none;
}

.e-435be612 > .box > .groups > .group > .group-head.collapsible
{
	cursor: pointer;
}

.e-435be612 > .box > .groups > .group > .group-head > .group-label
{
	font-family: var(--ot-font-primary);
	font-size: 11px;
	font-weight: 700;
	color: var(--ot-text-3);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.e-435be612 > .box > .groups > .group > .group-head > .group-count
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 16px;
	padding: 0 5px;
	background: var(--ot-brand-opacity);
	color: var(--ot-brand);
	border-radius: 100px;
	font-size: 10px;
	font-weight: 700;
}

.e-435be612 > .box > .groups > .group > .group-head > .group-spacer
{
	flex: 1;
}

.e-435be612 > .box > .groups > .group > .group-head > .group-clear
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: var(--ot-radius-s);
	color: var(--ot-text-3);
	cursor: pointer;
	transition: background var(--ot-transition), color var(--ot-transition);
}

.e-435be612 > .box > .groups > .group > .group-head > .group-clear:hover
{
	background: var(--ot-red-opacity);
	color: var(--ot-red);
}

.e-435be612 > .box > .groups > .group > .group-head > .group-clear > i
{
	font-size: 14px;
}

.e-435be612 > .box > .groups > .group > .group-head > .group-chevron
{
	font-size: 18px;
	color: var(--ot-text-3);
	transition: transform var(--ot-transition);
}

.e-435be612 > .box > .groups > .group.collapsed > .group-head > .group-chevron
{
	transform: rotate(-90deg);
}

/* Group body */

.e-435be612 > .box > .groups > .group > .group-body
{
	padding: 0 var(--ot-spacing-m) var(--ot-spacing-m);
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.e-435be612 > .box > .groups > .group > .group-body:first-child
{
	padding-top: var(--ot-spacing-m);
}

/* ===== OPTIONS (checkbox / radio wrappers) ===== */

.e-435be612 > .box > .groups > .group > .group-body > .options
{
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.e-435be612 > .box > .groups > .group > .group-body > .options > .search
{
	margin-bottom: var(--ot-spacing-s);
}

/* Show more */

.e-435be612 > .box > .groups > .group > .group-body > .options > .show-more
{
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: 4px;
	padding: 6px 10px;
	background: transparent;
	border: none;
	border-radius: var(--ot-radius-s);
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
	font-weight: 600;
	color: var(--ot-brand);
	cursor: pointer;
	transition: background var(--ot-transition);
	align-self: flex-start;
}

.e-435be612 > .box > .groups > .group > .group-body > .options > .show-more:hover
{
	background: var(--ot-brand-opacity);
}

.e-435be612 > .box > .groups > .group > .group-body > .options > .show-more > i
{
	font-size: 16px;
}

/* ===== TAGS ===== */

.e-435be612 > .box > .groups > .group > .group-body > .tags
{
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.e-435be612 > .box > .groups > .group > .group-body > .tags > .tag
{
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 5px 10px;
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: 100px;
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
	font-weight: 500;
	color: var(--ot-text-2);
	cursor: pointer;
	transition: background var(--ot-transition), color var(--ot-transition), border-color var(--ot-transition);
}

.e-435be612 > .box > .groups > .group > .group-body > .tags > .tag:hover
{
	background: var(--ot-bg-3);
	color: var(--ot-text-1);
}

.e-435be612 > .box > .groups > .group > .group-body > .tags > .tag.active
{
	background: var(--ot-brand);
	border-color: var(--ot-brand);
	color: #fff;
}

.e-435be612 > .box > .groups > .group > .group-body > .tags > .tag > i
{
	font-size: 15px;
}

.e-435be612 > .box > .groups > .group > .group-body > .tags > .tag > .tag-count
{
	font-size: 11px;
	font-weight: 700;
	opacity: 0.75;
	font-variant-numeric: tabular-nums;
}

/* ===== RANGE ===== */

.e-435be612 > .box > .groups > .group > .group-body > .range
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
}

.e-435be612 > .box > .groups > .group > .group-body > .range > .range-dash
{
	color: var(--ot-text-3);
	font-weight: 500;
}

/* ===== DATE RANGE ===== */

.e-435be612 > .box > .groups > .group > .group-body > .date-range
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
}

/* ===== TOGGLE ===== */

.e-435be612 > .box > .groups > .group > .group-body > .toggle-wrap
{
	padding: 4px 0;
}

/* ===== FOOT ===== */

.e-435be612 > .box > .foot
{
	padding: var(--ot-spacing-m);
	border-top: 1px solid var(--ot-bg-2-border);
}

/* ===== HORIZONTAL ===== */

.e-435be612 > .box.horizontal > .groups
{
	flex-direction: row;
	align-items: flex-start;
	gap: var(--ot-spacing-m);
	padding: var(--ot-spacing-m);
	overflow-x: auto;
	overflow-y: visible;
}

.e-435be612 > .box.horizontal > .groups > .group
{
	min-width: 200px;
	border-bottom: none;
	border-right: 1px solid var(--ot-bg-2-border);
	padding-right: var(--ot-spacing-m);
}

.e-435be612 > .box.horizontal > .groups > .group:last-child
{
	border-right: none;
	padding-right: 0;
}

.e-435be612 > .box.horizontal > .groups > .group > .group-head,
.e-435be612 > .box.horizontal > .groups > .group > .group-body
{
	padding-left: 0;
	padding-right: 0;
}
/* ===== DATA TABLE ===== */

.e-305e9281
{
	display: block;
	width: 100%;
}

/* Box */

.e-305e9281 > .box
{
	display: flex;
	flex-direction: column;
	width: 100%;
	border: 1px solid transparent;
	border-radius: var(--ot-radius-m);
	overflow: hidden;
}

/* ===== BACKGROUND ===== */

.e-305e9281 > .box.bg-1 { background: var(--ot-bg-1); }
.e-305e9281 > .box.bg-2 { background: var(--ot-bg-2); }
.e-305e9281 > .box.bg-3 { background: var(--ot-bg-3); }
.e-305e9281 > .box.bg-4 { background: var(--ot-bg-4); }

/* ===== BORDER ===== */

.e-305e9281 > .box.border { border-color: var(--ot-bg-2-border); }
.e-305e9281 > .box.bg-1.border { border-color: var(--ot-bg-1-border); }
.e-305e9281 > .box.bg-2.border { border-color: var(--ot-bg-2-border); }
.e-305e9281 > .box.bg-3.border { border-color: var(--ot-bg-3-border); }
.e-305e9281 > .box.bg-4.border { border-color: var(--ot-bg-4-border); }

/* ===== MODIFIERS ===== */

.e-305e9281 > .box.border-bottom
{
	border-color: transparent;
	border-bottom-color: var(--ot-bg-2-border);
	border-radius: 0;
}

.e-305e9281 > .box.bg-1.border-bottom { border-bottom-color: var(--ot-bg-1-border); }
.e-305e9281 > .box.bg-2.border-bottom { border-bottom-color: var(--ot-bg-2-border); }
.e-305e9281 > .box.bg-3.border-bottom { border-bottom-color: var(--ot-bg-3-border); }
.e-305e9281 > .box.bg-4.border-bottom { border-bottom-color: var(--ot-bg-4-border); }

.e-305e9281 > .box.clean
{
	border-color: transparent;
	border-radius: 0;
}

/* ===== HEAD ===== */

.e-305e9281 > .box > .head
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-m);
	padding: var(--ot-spacing-m);
	border-bottom: 1px solid var(--ot-bg-2-border);
}

.e-305e9281 > .box > .head > .head-icon
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: var(--ot-radius-m);
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	color: var(--ot-text-1);
	flex-shrink: 0;
}

.e-305e9281 > .box > .head > .head-icon > i
{
	font-size: 22px;
}

.e-305e9281 > .box > .head > .head-text
{
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
	gap: 2px;
}

.e-305e9281 > .box > .head > .head-text > .head-title
{
	margin: 0;
	font-family: var(--ot-font-secondary);
	font-size: 22px;
	font-weight: 500;
	letter-spacing: -0.018em;
	color: var(--ot-text-1);
	line-height: 1.15;
	font-variation-settings: 'opsz' 144;
}

.e-305e9281 > .box > .head > .head-text > .head-description
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
	color: var(--ot-text-3);
	line-height: 1.5;
}

.e-305e9281 > .box > .head > .head-actions
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
}

/* ===== TOOLBAR ===== */

.e-305e9281 > .box > .toolbar
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-m);
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	border-bottom: 1px solid var(--ot-bg-2-border);
}

.e-305e9281 > .box > .toolbar > .toolbar-search
{
	flex: 1 1 auto;
	max-width: 320px;
}

.e-305e9281 > .box > .toolbar > .toolbar-bulk
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-m);
	margin-left: auto;
	padding: 4px var(--ot-spacing-s) 4px var(--ot-spacing-m);
	background: var(--ot-brand-opacity);
	border: 1px solid var(--ot-brand-border);
	border-radius: var(--ot-radius-s);
	animation: e-305e9281-bulk-in 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes e-305e9281-bulk-in
{
	from { opacity: 0; transform: translateY(-4px); }
	to { opacity: 1; transform: translateY(0); }
}

.e-305e9281 > .box > .toolbar > .toolbar-bulk > .toolbar-bulk-count
{
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
	font-weight: 700;
	color: var(--ot-brand);
}

.e-305e9281 > .box > .toolbar > .toolbar-bulk > .toolbar-bulk-actions
{
	display: flex;
	align-items: center;
	gap: 2px;
}

.e-305e9281 > .box > .toolbar > .toolbar-bulk .bulk-action
{
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 5px 10px;
	background: transparent;
	border: none;
	border-radius: var(--ot-radius-s);
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
	font-weight: 500;
	color: var(--ot-text-1);
	cursor: pointer;
	transition: background var(--ot-transition), color var(--ot-transition);
}

.e-305e9281 > .box > .toolbar > .toolbar-bulk .bulk-action:hover
{
	background: var(--ot-bg-1);
}

.e-305e9281 > .box > .toolbar > .toolbar-bulk .bulk-action.danger:hover
{
	background: var(--ot-red-opacity);
	color: var(--ot-red);
}

.e-305e9281 > .box > .toolbar > .toolbar-bulk .bulk-action > i
{
	font-size: 15px;
}

.e-305e9281 > .box > .toolbar > .toolbar-bulk .bulk-clear
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: var(--ot-radius-s);
	color: var(--ot-brand);
	cursor: pointer;
	margin-left: 4px;
}

.e-305e9281 > .box > .toolbar > .toolbar-bulk .bulk-clear:hover
{
	background: var(--ot-bg-1);
}

.e-305e9281 > .box > .toolbar > .toolbar-bulk .bulk-clear > i
{
	font-size: 16px;
}

/* ===== TABLE ===== */

.e-305e9281 > .box > .table
{
	display: flex;
	flex-direction: column;
	overflow-x: auto;
}

.e-305e9281 > .box > .table > .row,
.e-305e9281 > .box > .table > div > .row
{
	display: grid;
	align-items: center;
	min-height: 48px;
	padding: 0 var(--ot-spacing-m);
	gap: var(--ot-spacing-m);
	transition: background var(--ot-transition);
}

/* Head row */

.e-305e9281 > .box > .table > .head-row
{
	min-height: 42px;
	background: var(--ot-bg-2);
	border-bottom: 1px solid var(--ot-bg-2-border);
	position: sticky;
	top: 0;
	z-index: 2;
}

.e-305e9281 > .box.bg-2 > .table > .head-row { background: var(--ot-bg-3); }
.e-305e9281 > .box.bg-3 > .table > .head-row { background: var(--ot-bg-4); }

.e-305e9281 > .box > .table > .head-row > .cell
{
	font-family: var(--ot-font-primary);
	font-size: 11px;
	font-weight: 700;
	color: var(--ot-text-3);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.e-305e9281 > .box > .table > .head-row > .head-cell
{
	display: flex;
	align-items: center;
	gap: 4px;
	user-select: none;
}

.e-305e9281 > .box > .table > .head-row > .head-cell.sortable
{
	cursor: pointer;
	transition: color var(--ot-transition);
}

.e-305e9281 > .box > .table > .head-row > .head-cell.sortable:hover
{
	color: var(--ot-text-1);
}

.e-305e9281 > .box > .table > .head-row > .head-cell.sorted
{
	color: var(--ot-brand);
}

.e-305e9281 > .box > .table > .head-row > .head-cell > .sort-icon
{
	font-size: 14px;
	opacity: 0.6;
	transition: opacity var(--ot-transition);
}

.e-305e9281 > .box > .table > .head-row > .head-cell.sortable:hover > .sort-icon
{
	opacity: 1;
}

/* Body row */

.e-305e9281 > .box > .table > div > .body-row
{
	border-bottom: 1px solid var(--ot-bg-2-border);
	cursor: default;
}

.e-305e9281 > .box > .table > div > .body-row.clickable
{
	cursor: pointer;
}

.e-305e9281 > .box > .table > div:last-child > .body-row
{
	border-bottom: none;
}

.e-305e9281 > .box > .table > div > .body-row:hover
{
	background: var(--ot-bg-2);
}

.e-305e9281 > .box.bg-2 > .table > div > .body-row:hover { background: var(--ot-bg-3); }
.e-305e9281 > .box.bg-3 > .table > div > .body-row:hover { background: var(--ot-bg-4); }

.e-305e9281 > .box > .table > div > .body-row.selected
{
	background: var(--ot-brand-opacity);
}

/* Striped */

.e-305e9281 > .box.striped > .table > div:nth-child(even) > .body-row
{
	background: var(--ot-bg-2);
}

.e-305e9281 > .box.striped.bg-2 > .table > div:nth-child(even) > .body-row
{
	background: var(--ot-bg-3);
}

/* Sticky */

.e-305e9281 > .box.sticky > .table
{
	max-height: 560px;
	overflow-y: auto;
}

/* Cells */

.e-305e9281 > .box > .table .cell
{
	min-width: 0;
	padding: 10px 0;
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
	color: var(--ot-text-1);
	overflow: hidden;
	text-overflow: ellipsis;
}

.e-305e9281 > .box > .table .cell.align-left { text-align: left; }
.e-305e9281 > .box > .table .cell.align-center { text-align: center; display: flex; justify-content: center; }
.e-305e9281 > .box > .table .cell.align-right { text-align: right; display: flex; justify-content: flex-end; }

/* Select cell */

.e-305e9281 > .box > .table .select-cell
{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.e-305e9281 > .box > .table .select-cell > .select-box
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	padding: 0;
	background: var(--ot-bg-1);
	border: 1.5px solid var(--ot-bg-3-border);
	border-radius: 4px;
	color: transparent;
	cursor: pointer;
	outline: none;
	transition: background var(--ot-transition), border-color var(--ot-transition);
}

.e-305e9281 > .box > .table .select-cell > .select-box:hover
{
	border-color: var(--ot-brand);
}

.e-305e9281 > .box > .table .select-cell > .select-box.checked,
.e-305e9281 > .box > .table .select-cell > .select-box.indeterminate
{
	background: var(--ot-brand);
	border-color: var(--ot-brand);
	color: #fff;
}

.e-305e9281 > .box > .table .select-cell > .select-box > i
{
	font-size: 14px;
	font-weight: 700;
}

/* Actions cell */

.e-305e9281 > .box > .table .actions-cell
{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.e-305e9281 > .box > .table .actions-cell > .actions-trigger
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: var(--ot-radius-s);
	color: var(--ot-text-3);
	cursor: pointer;
	transition: background var(--ot-transition), color var(--ot-transition);
}

.e-305e9281 > .box > .table .actions-cell > .actions-trigger:hover
{
	background: var(--ot-bg-3);
	color: var(--ot-text-1);
}

.e-305e9281 > .box > .table .actions-cell > .actions-trigger > i
{
	font-size: 18px;
}

/* ===== EMPTY ===== */

.e-305e9281 > .box > .empty
{
	padding: var(--ot-spacing-l);
}

/* ===== LOADING SKELETON ===== */

.e-305e9281 > .box > .table .skeleton
{
	background: linear-gradient(90deg, var(--ot-bg-2) 0%, var(--ot-bg-3) 50%, var(--ot-bg-2) 100%);
	background-size: 200% 100%;
	animation: e-305e9281-shimmer 1.4s infinite linear;
	border-radius: var(--ot-radius-s);
}

.e-305e9281 > .box > .table .skeleton-line
{
	height: 14px;
	width: 80%;
}

.e-305e9281 > .box > .table .skeleton-box
{
	width: 18px;
	height: 18px;
}

@keyframes e-305e9281-shimmer
{
	from { background-position: 200% 0; }
	to { background-position: -200% 0; }
}

/* ===== PAGINATION ===== */

.e-305e9281 > .box > .pagination
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ot-spacing-m);
	padding: var(--ot-spacing-s) var(--ot-spacing-l);
	border-top: 1px solid var(--ot-bg-2-border);
}

.e-305e9281 > .box > .pagination > .pagination-info
{
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
	color: var(--ot-text-3);
	font-variant-numeric: tabular-nums;
}

.e-305e9281 > .box > .pagination > .pagination-controls
{
	display: flex;
	align-items: center;
	gap: 2px;
}

.e-305e9281 > .box > .pagination > .pagination-controls > .page-btn
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	background: transparent;
	border: 1px solid transparent;
	border-radius: var(--ot-radius-s);
	color: var(--ot-text-2);
	cursor: pointer;
	transition: background var(--ot-transition), color var(--ot-transition), border-color var(--ot-transition);
}

.e-305e9281 > .box > .pagination > .pagination-controls > .page-btn:hover:not(:disabled)
{
	background: var(--ot-bg-2);
	color: var(--ot-text-1);
	border-color: var(--ot-bg-2-border);
}

.e-305e9281 > .box > .pagination > .pagination-controls > .page-btn:disabled
{
	opacity: 0.35;
	cursor: not-allowed;
}

.e-305e9281 > .box > .pagination > .pagination-controls > .page-btn > i
{
	font-size: 18px;
}

.e-305e9281 > .box > .pagination > .pagination-controls > .page-current
{
	padding: 0 var(--ot-spacing-s);
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
	font-weight: 700;
	color: var(--ot-text-1);
	font-variant-numeric: tabular-nums;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 767.98px)
{
	.e-305e9281 > .box > .toolbar
	{
		flex-direction: column;
		align-items: stretch;
	}

	.e-305e9281 > .box > .toolbar > .toolbar-search
	{
		max-width: 100%;
	}

	.e-305e9281 > .box > .pagination
	{
		flex-direction: column;
		gap: var(--ot-spacing-s);
	}
}
/* ===== FORM BUTTON ===== */

.e-64e877b
{
	display: contents;
}

/* Box */

.e-64e877b > .box
{
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--ot-spacing-s);
	height: var(--ot-height-m);
	padding: 0 var(--ot-spacing-m);
	border: 1px solid transparent;
	border-radius: var(--ot-radius-m);
	background: transparent;
	color: var(--ot-text-1);
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-m);
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	outline: none;
	user-select: none;
	transition: background var(--ot-transition), border-color var(--ot-transition), color var(--ot-transition), box-shadow var(--ot-transition), transform var(--ot-transition);
}

.e-64e877b > .box:hover { transform: translateY(-1px); }
.e-64e877b > .box:active { transform: translateY(0) scale(0.97); transition-duration: 100ms; }
.e-64e877b > .box:focus-visible { box-shadow: 0 0 0 1px var(--ot-brand-opacity); }

/* Body */

.e-64e877b > .box > .body
{
	display: inline-flex;
	align-items: center;
	gap: var(--ot-spacing-s);
}

.e-64e877b > .box > .body > i
{
	font-size: 18px;
	transition: transform var(--ot-transition);
}

.e-64e877b > .box > .body > .left { margin-right: -2px; }
.e-64e877b > .box > .body > .right { margin-left: -2px; }
.e-64e877b > .box:hover > .body > .right { transform: translateX(2px); }

/* Spinner */

.e-64e877b > .box > .spin > i
{
	font-size: 18px;
	animation: e-64e877b-spin 0.8s linear infinite;
}

@keyframes e-64e877b-spin
{
	to { transform: rotate(360deg); }
}

/* States */

.e-64e877b > .box.disabled
{
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
	transform: none;
}

.e-64e877b > .box.loading
{
	cursor: wait;
	pointer-events: none;
}

/* ===== STYLE: SOLID ===== */

.e-64e877b > .box.solid.brand  { background: var(--ot-brand);  border-color: var(--ot-brand);  color: #fff; }
.e-64e877b > .box.solid.blue   { background: var(--ot-blue);   border-color: var(--ot-blue);   color: #fff; }
.e-64e877b > .box.solid.red    { background: var(--ot-red);    border-color: var(--ot-red);    color: #fff; }
.e-64e877b > .box.solid.orange { background: var(--ot-orange); border-color: var(--ot-orange); color: #fff; }
.e-64e877b > .box.solid.green  { background: var(--ot-green);  border-color: var(--ot-green);  color: #fff; }
.e-64e877b > .box.solid.dark   { background: var(--ot-text-1); border-color: var(--ot-text-1); color: var(--ot-bg-1); }

.e-64e877b > .box.solid.brand:hover  { background: var(--ot-brand-hover);  border-color: var(--ot-brand-hover); }
.e-64e877b > .box.solid.blue:hover   { background: var(--ot-blue-hover);   border-color: var(--ot-blue-hover); }
.e-64e877b > .box.solid.red:hover    { background: var(--ot-red-hover);    border-color: var(--ot-red-hover); }
.e-64e877b > .box.solid.orange:hover { background: var(--ot-orange-hover); border-color: var(--ot-orange-hover); }
.e-64e877b > .box.solid.green:hover  { background: var(--ot-green-hover);  border-color: var(--ot-green-hover); }
.e-64e877b > .box.solid.dark:hover   { background: var(--ot-text-2);       border-color: var(--ot-text-2); }

/* ===== STYLE: SOFT ===== */

.e-64e877b > .box.soft.brand  { background: var(--ot-brand-opacity);  color: var(--ot-brand); }
.e-64e877b > .box.soft.blue   { background: var(--ot-blue-opacity);   color: var(--ot-blue); }
.e-64e877b > .box.soft.red    { background: var(--ot-red-opacity);    color: var(--ot-red); }
.e-64e877b > .box.soft.orange { background: var(--ot-orange-opacity); color: var(--ot-orange); }
.e-64e877b > .box.soft.green  { background: var(--ot-green-opacity);  color: var(--ot-green); }

.e-64e877b > .box.soft.brand:hover  { background: var(--ot-brand);  color: #fff; }
.e-64e877b > .box.soft.blue:hover   { background: var(--ot-blue);   color: #fff; }
.e-64e877b > .box.soft.red:hover    { background: var(--ot-red);    color: #fff; }
.e-64e877b > .box.soft.orange:hover { background: var(--ot-orange); color: #fff; }
.e-64e877b > .box.soft.green:hover  { background: var(--ot-green);  color: #fff; }

/* ===== STYLE: OUTLINE ===== */

.e-64e877b > .box.outline.brand  { border-color: var(--ot-brand);  color: var(--ot-brand); }
.e-64e877b > .box.outline.blue   { border-color: var(--ot-blue);   color: var(--ot-blue); }
.e-64e877b > .box.outline.red    { border-color: var(--ot-red);    color: var(--ot-red); }
.e-64e877b > .box.outline.orange { border-color: var(--ot-orange); color: var(--ot-orange); }
.e-64e877b > .box.outline.green  { border-color: var(--ot-green);  color: var(--ot-green); }

.e-64e877b > .box.outline.brand:hover  { background: var(--ot-brand-opacity); }
.e-64e877b > .box.outline.blue:hover   { background: var(--ot-blue-opacity); }
.e-64e877b > .box.outline.red:hover    { background: var(--ot-red-opacity); }
.e-64e877b > .box.outline.orange:hover { background: var(--ot-orange-opacity); }
.e-64e877b > .box.outline.green:hover  { background: var(--ot-green-opacity); }

/* ===== STYLE: GHOST ===== */

.e-64e877b > .box.ghost
{
	background: transparent;
	color: var(--ot-text-2);
}

.e-64e877b > .box.ghost:hover
{
	background: var(--ot-bg-2);
	color: var(--ot-text-1);
}

/* ===== STYLE: LINK ===== */

.e-64e877b > .box.link
{
	height: auto;
	padding: 0;
	background: transparent;
	border-color: transparent;
	color: var(--ot-brand);
}

.e-64e877b > .box.link:hover
{
	background: transparent;
	color: var(--ot-brand-hover);
	transform: none;
}

.e-64e877b > .box.link:hover > .body > .text
{
	text-decoration: underline;
	text-underline-offset: 3px;
}

.e-64e877b > .box.link:active { transform: none; }

/* ===== BACKGROUND ===== */

.e-64e877b > .box.bg-1 { background: var(--ot-bg-1); border-color: var(--ot-bg-1-border); }
.e-64e877b > .box.bg-2 { background: var(--ot-bg-2); border-color: var(--ot-bg-2-border); }
.e-64e877b > .box.bg-3 { background: var(--ot-bg-3); border-color: var(--ot-bg-3-border); }
.e-64e877b > .box.bg-4 { background: var(--ot-bg-4); border-color: var(--ot-bg-4-border); }

.e-64e877b > .box.bg-1:hover { background: var(--ot-bg-1-hover); }
.e-64e877b > .box.bg-2:hover { background: var(--ot-bg-2-hover); }
.e-64e877b > .box.bg-3:hover { background: var(--ot-bg-3-hover); }
.e-64e877b > .box.bg-4:hover { background: var(--ot-bg-4-hover); }

/* Glass */

.e-64e877b > .box.glass
{
	background: var(--ot-bg-1-opacity);
	border-color: var(--ot-bg-2-border);
	backdrop-filter: var(--ot-blur);
	-webkit-backdrop-filter: var(--ot-blur);
}

.e-64e877b > .box.glass:hover { background: var(--ot-bg-2-opacity); }

/* ===== SIZE ===== */

.e-64e877b > .box.size-s
{
	height: var(--ot-height-s);
	padding: 0 var(--ot-spacing-s);
	font-size: var(--ot-size-s);
	gap: var(--ot-spacing-x);
}

.e-64e877b > .box.size-s > .body { gap: var(--ot-spacing-x); }

.e-64e877b > .box.size-s > .body > i,
.e-64e877b > .box.size-s > .spin > i { font-size: 14px; }

.e-64e877b > .box.size-l
{
	height: var(--ot-height-l);
	padding: 0 var(--ot-spacing-l);
}

.e-64e877b > .box.size-l > .body > i,
.e-64e877b > .box.size-l > .spin > i { font-size: 20px; }

/* ===== MODIFIERS ===== */

.e-64e877b > .box.full
{
	width: 100%;
}

.e-64e877b > .box.rounded
{
	border-radius: 100px;
}

.e-64e877b > .box.icon-only
{
	padding: 0;
	width: var(--ot-height-m);
	gap: 0;
}

.e-64e877b > .box.icon-only.size-s { width: var(--ot-height-s); }
.e-64e877b > .box.icon-only.size-l { width: var(--ot-height-l); }

/* Link size resets */

.e-64e877b > .box.link.size-s,
.e-64e877b > .box.link.size-l
{
	height: auto;
	padding: 0;
}
/* ===== FORM CHECKBOX ===== */

.e-f249baa
{
	display: contents;
}

/* Expression wrapper */

.e-f249baa > .expression
{
	display: block;
	width: 100%;
}

/* Variable button */

.e-f249baa > .box > .variable-btn
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: var(--ot-height-s);
	height: var(--ot-height-s);
	padding: 0;
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: var(--ot-radius-s);
	color: var(--ot-text-3);
	cursor: pointer;
	outline: none;
	transition: background var(--ot-transition), color var(--ot-transition), border-color var(--ot-transition);
}

.e-f249baa > .box > .variable-btn:hover
{
	background: var(--ot-brand-opacity);
	border-color: var(--ot-brand-opacity);
	color: var(--ot-brand);
}

.e-f249baa > .box > .variable-btn > i
{
	font-size: 14px;
}

/* Box */

.e-f249baa > .box
{
	position: relative;
	display: inline-flex;
	align-items: flex-start;
	gap: var(--ot-spacing-s);
	cursor: pointer;
	font-family: var(--ot-font-primary);
}

.e-f249baa > .box.reverse
{
	flex-direction: row-reverse;
}

/* Input — hidden but accessible */

.e-f249baa > .box > input
{
	position: absolute;
	opacity: 0;
	cursor: pointer;
	width: 0;
	height: 0;
	margin: 0;
}

/* Info */

.e-f249baa > .box > .info
{
	display: inline-flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	padding-top: 1px;
}

.e-f249baa > .box > .info > .label
{
	font-size: var(--ot-size-m);
	font-weight: 500;
	color: var(--ot-text-1);
	line-height: 1.3;
	user-select: none;
	transition: color var(--ot-transition);
}

.e-f249baa > .box > .info > .description
{
	font-size: var(--ot-size-s);
	color: var(--ot-text-3);
	line-height: 1.4;
	user-select: none;
	transition: color var(--ot-transition);
}

/* Mark */

.e-f249baa > .box > .mark
{
	position: relative;
	display: block;
	flex-shrink: 0;
	border-radius: var(--ot-radius-s);
	border: 1px solid transparent;
	background: transparent;
	transition: background var(--ot-transition), border-color var(--ot-transition), transform var(--ot-transition-fast), box-shadow var(--ot-transition);
}

/* Checkmark */

.e-f249baa > .box > .mark::after
{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	border: solid white;
	transform: translate(-50%, -60%) rotate(45deg) scale(0);
	opacity: 0;
	transition: transform var(--ot-transition), opacity var(--ot-transition-fast);
}

.e-f249baa > .box > input:checked ~ .mark::after
{
	transform: translate(-50%, -60%) rotate(45deg) scale(1);
	opacity: 1;
}

/* Indeterminate */

.e-f249baa > .box.indeterminate > .mark::after
{
	transform: translate(-50%, -50%) rotate(0) scale(1);
	opacity: 1;
	border: none;
	background: white;
	border-radius: 1px;
}

/* Focus */

.e-f249baa > .box > input:focus-visible ~ .mark
{
	box-shadow: 0 0 0 1px var(--ot-brand-opacity);
}

/* Active */

.e-f249baa > .box:active > .mark
{
	transform: scale(0.92);
}

/* Disabled */

.e-f249baa > .box.disabled
{
	cursor: not-allowed;
}

.e-f249baa > .box.disabled > .mark
{
	opacity: 0.45;
}

.e-f249baa > .box.disabled > .info > .label,
.e-f249baa > .box.disabled > .info > .description
{
	color: var(--ot-text-3);
	opacity: 0.6;
}

/* ===== SIZE ===== */

/* Small */

.e-f249baa > .box.size-s > .mark
{
	width: 16px;
	height: 16px;
}

.e-f249baa > .box.size-s > .mark::after
{
	width: 3px;
	height: 6px;
	border-width: 0 1.5px 1.5px 0;
}

.e-f249baa > .box.size-s.indeterminate > .mark::after
{
	width: 8px;
	height: 1.5px;
}

.e-f249baa > .box.size-s > .info > .label
{
	font-size: var(--ot-size-s);
}

.e-f249baa > .box.size-s > .info > .description
{
	font-size: 10.5px;
}

.e-f249baa > .box.size-s > .icon { font-size: 16px; }

/* Medium */

.e-f249baa > .box.size-m > .mark
{
	width: 20px;
	height: 20px;
}

.e-f249baa > .box.size-m > .mark::after
{
	width: 4px;
	height: 8px;
	border-width: 0 2px 2px 0;
}

.e-f249baa > .box.size-m.indeterminate > .mark::after
{
	width: 10px;
	height: 2px;
}

.e-f249baa > .box.size-m > .info > .label
{
	font-size: var(--ot-size-m);
}

/* Large */

.e-f249baa > .box.size-l > .mark
{
	width: 24px;
	height: 24px;
}

.e-f249baa > .box.size-l > .mark::after
{
	width: 5px;
	height: 10px;
	border-width: 0 2.5px 2.5px 0;
}

.e-f249baa > .box.size-l.indeterminate > .mark::after
{
	width: 12px;
	height: 2.5px;
}

.e-f249baa > .box.size-l > .info > .label
{
	font-size: var(--ot-size-m);
}

.e-f249baa > .box.size-l > .icon { font-size: 20px; }

/* ===== BACKGROUND ===== */

.e-f249baa > .box.bg-1 > .mark { background: var(--ot-bg-1); border-color: var(--ot-bg-1-border); }
.e-f249baa > .box.bg-2 > .mark { background: var(--ot-bg-2); border-color: var(--ot-bg-2-border); }
.e-f249baa > .box.bg-3 > .mark { background: var(--ot-bg-3); border-color: var(--ot-bg-3-border); }
.e-f249baa > .box.bg-4 > .mark { background: var(--ot-bg-4); border-color: var(--ot-bg-4-border); }

.e-f249baa > .box.bg-1:hover:not(.disabled):not(.indeterminate) > input:not(:checked) ~ .mark { background: var(--ot-bg-1-hover); }
.e-f249baa > .box.bg-2:hover:not(.disabled):not(.indeterminate) > input:not(:checked) ~ .mark { background: var(--ot-bg-2-hover); }
.e-f249baa > .box.bg-3:hover:not(.disabled):not(.indeterminate) > input:not(:checked) ~ .mark { background: var(--ot-bg-3-hover); }
.e-f249baa > .box.bg-4:hover:not(.disabled):not(.indeterminate) > input:not(:checked) ~ .mark { background: var(--ot-bg-4-hover); }

/* Transparent */

.e-f249baa > .box.transparent > .mark
{
	background: transparent;
	border-color: transparent;
}

/* Border */

.e-f249baa > .box.border > .mark
{
	border-color: var(--ot-bg-2-border);
}

.e-f249baa > .box.border:hover:not(.disabled) > .mark
{
	border-color: var(--ot-text-3);
}

/* ===== COLOR (checked state) ===== */

.e-f249baa > .box > input:checked ~ .mark,
.e-f249baa > .box.indeterminate > .mark
{
	background: var(--ot-brand);
	border-color: var(--ot-brand);
}

.e-f249baa > .box.color-blue > input:checked ~ .mark,
.e-f249baa > .box.color-blue.indeterminate > .mark
{
	background: var(--ot-blue);
	border-color: var(--ot-blue);
}

.e-f249baa > .box.color-red > input:checked ~ .mark,
.e-f249baa > .box.color-red.indeterminate > .mark
{
	background: var(--ot-red);
	border-color: var(--ot-red);
}

.e-f249baa > .box.color-orange > input:checked ~ .mark,
.e-f249baa > .box.color-orange.indeterminate > .mark
{
	background: var(--ot-orange);
	border-color: var(--ot-orange);
}

.e-f249baa > .box.color-green > input:checked ~ .mark,
.e-f249baa > .box.color-green.indeterminate > .mark
{
	background: var(--ot-green);
	border-color: var(--ot-green);
}

/* Focus per color */

.e-f249baa > .box.color-blue > input:focus-visible ~ .mark { box-shadow: 0 0 0 1px var(--ot-blue-opacity); }
.e-f249baa > .box.color-red > input:focus-visible ~ .mark { box-shadow: 0 0 0 1px var(--ot-red-opacity); }
.e-f249baa > .box.color-orange > input:focus-visible ~ .mark { box-shadow: 0 0 0 1px var(--ot-orange-opacity); }
.e-f249baa > .box.color-green > input:focus-visible ~ .mark { box-shadow: 0 0 0 1px var(--ot-green-opacity); }

/* Icon */

.e-f249baa > .box > .icon
{
	font-size: 18px;
	color: var(--ot-text-2);
	flex-shrink: 0;
	align-self: center;
}

/* Count */

.e-f249baa > .box > .count
{
	margin-left: auto;
	padding-left: var(--ot-spacing-s);
	font-size: 11px;
	font-weight: 700;
	color: var(--ot-text-3);
	font-variant-numeric: tabular-nums;
	align-self: center;
}
/* ===== FORM COLOR ===== */

.e-21311850
{
	display: contents;
}

/* Box */

.e-21311850 > .box
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
	width: 100%;
}

/* Field */

.e-21311850 > .box > .field
{
	position: relative;
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	width: 100%;
	padding: 0 var(--ot-spacing-s);
	border: 1px solid transparent;
	border-radius: var(--ot-radius-m);
	background: transparent;
	transition: background var(--ot-transition), border-color var(--ot-transition), box-shadow var(--ot-transition);
}

.e-21311850 > .box > .field:focus-within
{
	box-shadow: 0 0 0 1px var(--ot-brand-opacity);
}

/* Swatch */

.e-21311850 > .box > .field > .swatch
{
	position: relative;
	flex-shrink: 0;
	border-radius: var(--ot-radius-s);
	border: 1px solid var(--ot-bg-2-border);
	cursor: pointer;
	overflow: hidden;
	padding: 0;
	outline: none;
	background-color: transparent;
	background-image: linear-gradient(45deg, var(--ot-bg-3) 25%, transparent 25%), linear-gradient(-45deg, var(--ot-bg-3) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, var(--ot-bg-3) 75%), linear-gradient(-45deg, transparent 75%, var(--ot-bg-3) 75%);
	background-size: 8px 8px;
	background-position: 0 0, 0 4px, 4px -4px, -4px 0;
	transition: border-color var(--ot-transition), transform var(--ot-transition);
}

.e-21311850 > .box > .field > .swatch:hover
{
	transform: scale(1.08);
}

/* Native color input */

.e-21311850 > .box > .field > .swatch > .native
{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	border: none;
	padding: 0;
}

/* Hex input */

.e-21311850 > .box > .field > .input
{
	flex: 1;
	min-width: 0;
	background: transparent;
	border: none;
	outline: none;
	color: var(--ot-text-1);
	font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
	font-size: var(--ot-size-m);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 0;
}

.e-21311850 > .box > .field > .input::placeholder
{
	color: var(--ot-text-3);
	text-transform: none;
}

/* Action */

.e-21311850 > .box > .field > .action
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	padding: 0;
	border: none;
	background: transparent;
	border-radius: var(--ot-radius-s);
	color: var(--ot-text-3);
	cursor: pointer;
	outline: none;
	transition: background var(--ot-transition), color var(--ot-transition);
}

.e-21311850 > .box > .field > .action:hover
{
	background: var(--ot-bg-2-hover);
	color: var(--ot-text-1);
}

.e-21311850 > .box > .field > .action > i
{
	font-size: 14px;
}

.e-21311850 > .box > .field > .action.copied
{
	color: var(--ot-green);
	background: var(--ot-green-opacity);
}

/* Presets */

.e-21311850 > .box > .presets
{
	display: flex;
	flex-wrap: wrap;
	gap: var(--ot-spacing-x);
}

.e-21311850 > .box > .presets > .preset
{
	width: 22px;
	height: 22px;
	padding: 0;
	border: 1px solid var(--ot-bg-2-border);
	border-radius: var(--ot-radius-s);
	cursor: pointer;
	outline: none;
	transition: border-color var(--ot-transition), transform var(--ot-transition), box-shadow var(--ot-transition);
}

.e-21311850 > .box > .presets > .preset:hover
{
	transform: scale(1.1);
}

.e-21311850 > .box > .presets > .preset.active
{
	box-shadow: 0 0 0 2px var(--ot-bg-1), 0 0 0 4px var(--ot-brand);
}

/* Disabled */

.e-21311850 > .box.disabled > .field
{
	cursor: not-allowed;
	opacity: 0.55;
}

.e-21311850 > .box.disabled > .field > .swatch
{
	cursor: not-allowed;
	transform: none;
}

.e-21311850 > .box.disabled > .field > .input
{
	cursor: not-allowed;
}

/* ===== BACKGROUND ===== */

.e-21311850 > .box.bg-1 > .field { background: var(--ot-bg-1); }
.e-21311850 > .box.bg-2 > .field { background: var(--ot-bg-2); }
.e-21311850 > .box.bg-3 > .field { background: var(--ot-bg-3); }
.e-21311850 > .box.bg-4 > .field { background: var(--ot-bg-4); }

.e-21311850 > .box.bg-1 > .field:hover:not(:focus-within) { background: var(--ot-bg-1-hover); }
.e-21311850 > .box.bg-2 > .field:hover:not(:focus-within) { background: var(--ot-bg-2-hover); }
.e-21311850 > .box.bg-3 > .field:hover:not(:focus-within) { background: var(--ot-bg-3-hover); }
.e-21311850 > .box.bg-4 > .field:hover:not(:focus-within) { background: var(--ot-bg-4-hover); }

.e-21311850 > .box.bg-1 > .field > .swatch { border-color: var(--ot-bg-1-border); }
.e-21311850 > .box.bg-2 > .field > .swatch { border-color: var(--ot-bg-2-border); }
.e-21311850 > .box.bg-3 > .field > .swatch { border-color: var(--ot-bg-3-border); }
.e-21311850 > .box.bg-4 > .field > .swatch { border-color: var(--ot-bg-4-border); }

.e-21311850 > .box.bg-1 > .field > .action:hover { background: var(--ot-bg-1-hover); }
.e-21311850 > .box.bg-2 > .field > .action:hover { background: var(--ot-bg-2-hover); }
.e-21311850 > .box.bg-3 > .field > .action:hover { background: var(--ot-bg-3-hover); }
.e-21311850 > .box.bg-4 > .field > .action:hover { background: var(--ot-bg-4-hover); }

/* Transparent */

.e-21311850 > .box.transparent > .field
{
	background: transparent;
	padding: 0;
}

/* Border */

.e-21311850 > .box.border > .field { border-color: var(--ot-bg-2-border); }
.e-21311850 > .box.bg-1.border > .field { border-color: var(--ot-bg-1-border); }
.e-21311850 > .box.bg-2.border > .field { border-color: var(--ot-bg-2-border); }
.e-21311850 > .box.bg-3.border > .field { border-color: var(--ot-bg-3-border); }
.e-21311850 > .box.bg-4.border > .field { border-color: var(--ot-bg-4-border); }

/* ===== SIZE ===== */

.e-21311850 > .box.size-s > .field
{
	height: var(--ot-height-s);
	padding: 0 var(--ot-spacing-x);
}

.e-21311850 > .box.size-s > .field > .swatch { width: 18px; height: 18px; }
.e-21311850 > .box.size-s > .field > .input { font-size: var(--ot-size-s); }
.e-21311850 > .box.size-s > .field > .action { width: 18px; height: 18px; }
.e-21311850 > .box.size-s > .field > .action > i { font-size: 13px; }
.e-21311850 > .box.size-s > .presets > .preset { width: 18px; height: 18px; }

.e-21311850 > .box.size-m > .field
{
	height: var(--ot-height-m);
	padding: 0 var(--ot-spacing-s);
}

.e-21311850 > .box.size-m > .field > .swatch { width: 22px; height: 22px; }
.e-21311850 > .box.size-m > .field > .input { font-size: var(--ot-size-m); }

.e-21311850 > .box.size-l > .field
{
	height: var(--ot-height-l);
	padding: 0 var(--ot-spacing-m);
}

.e-21311850 > .box.size-l > .field > .swatch { width: 28px; height: 28px; }
.e-21311850 > .box.size-l > .field > .input { font-size: var(--ot-size-m); }
.e-21311850 > .box.size-l > .field > .action { width: 26px; height: 26px; }
.e-21311850 > .box.size-l > .field > .action > i { font-size: 16px; }
.e-21311850 > .box.size-l > .presets > .preset { width: 28px; height: 28px; }
/* ===== FORM DATE ===== */

.e-283879c1
{
	display: contents;
}

/* Box */

.e-283879c1 > .box
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
	width: 100%;
}

/* Field */

.e-283879c1 > .box > .field
{
	position: relative;
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	width: 100%;
	padding: 0 var(--ot-spacing-m);
	border: 1px solid transparent;
	border-radius: var(--ot-radius-m);
	background: transparent;
	cursor: pointer;
	transition: background var(--ot-transition), border-color var(--ot-transition), box-shadow var(--ot-transition);
}

.e-283879c1 > .box > .field:focus-within
{
	box-shadow: 0 0 0 1px var(--ot-brand-opacity);
}

/* Icon */

.e-283879c1 > .box > .field > .icon
{
	flex-shrink: 0;
	font-size: 18px;
	color: var(--ot-text-3);
	transition: color var(--ot-transition);
}

.e-283879c1 > .box.today > .field > .icon
{
	color: var(--ot-brand);
}

/* Input */

.e-283879c1 > .box > .field > .input
{
	flex: 1;
	min-width: 0;
	padding: 0;
	background: transparent;
	border: none;
	outline: none;
	color: var(--ot-text-1);
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-m);
	font-weight: 500;
	cursor: pointer;
}

.e-283879c1 > .box > .field > .input::placeholder
{
	color: var(--ot-text-3);
	font-weight: 400;
}

/* Hide native indicator — the whole field opens the picker now. */
.e-283879c1 > .box > .field > .input::-webkit-calendar-picker-indicator
{
	display: none;
}

.e-283879c1 > .box > .field > .input:disabled
{
	cursor: not-allowed;
}

/* Action */

.e-283879c1 > .box > .field > .action
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	padding: 0;
	border: none;
	background: transparent;
	border-radius: var(--ot-radius-s);
	color: var(--ot-text-3);
	cursor: pointer;
	outline: none;
	transition: background var(--ot-transition), color var(--ot-transition);
}

.e-283879c1 > .box > .field > .action:hover
{
	background: var(--ot-bg-2-hover);
	color: var(--ot-text-1);
}

.e-283879c1 > .box > .field > .action > i
{
	font-size: 14px;
}

/* Presets */

.e-283879c1 > .box > .presets
{
	display: flex;
	flex-wrap: wrap;
	gap: var(--ot-spacing-x);
}

.e-283879c1 > .box > .presets > .preset
{
	display: inline-flex;
	align-items: center;
	padding: var(--ot-spacing-x) 10px;
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: 100px;
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
	font-weight: 500;
	color: var(--ot-text-2);
	cursor: pointer;
	outline: none;
	transition: background var(--ot-transition), border-color var(--ot-transition), color var(--ot-transition), transform var(--ot-transition);
}

.e-283879c1 > .box > .presets > .preset:hover:not(.disabled):not(.active)
{
	background: var(--ot-bg-2-hover);
	color: var(--ot-text-1);
	transform: translateY(-1px);
}

.e-283879c1 > .box > .presets > .preset.active
{
	background: var(--ot-brand-opacity);
	border-color: var(--ot-brand);
	color: var(--ot-brand);
}

.e-283879c1 > .box > .presets > .preset.disabled
{
	opacity: 0.4;
	cursor: not-allowed;
}

/* Disabled */

.e-283879c1 > .box.disabled > .field
{
	cursor: not-allowed;
	opacity: 0.55;
}

/* ===== BACKGROUND ===== */

.e-283879c1 > .box.bg-1 > .field { background: var(--ot-bg-1); }
.e-283879c1 > .box.bg-2 > .field { background: var(--ot-bg-2); }
.e-283879c1 > .box.bg-3 > .field { background: var(--ot-bg-3); }
.e-283879c1 > .box.bg-4 > .field { background: var(--ot-bg-4); }

.e-283879c1 > .box.bg-1 > .field:hover:not(:focus-within) { background: var(--ot-bg-1-hover); }
.e-283879c1 > .box.bg-2 > .field:hover:not(:focus-within) { background: var(--ot-bg-2-hover); }
.e-283879c1 > .box.bg-3 > .field:hover:not(:focus-within) { background: var(--ot-bg-3-hover); }
.e-283879c1 > .box.bg-4 > .field:hover:not(:focus-within) { background: var(--ot-bg-4-hover); }

.e-283879c1 > .box.bg-1 > .field > .action:hover { background: var(--ot-bg-1-hover); }
.e-283879c1 > .box.bg-2 > .field > .action:hover { background: var(--ot-bg-2-hover); }
.e-283879c1 > .box.bg-3 > .field > .action:hover { background: var(--ot-bg-3-hover); }
.e-283879c1 > .box.bg-4 > .field > .action:hover { background: var(--ot-bg-4-hover); }

/* Transparent */

.e-283879c1 > .box.transparent > .field
{
	background: transparent;
	padding: 0;
}

/* Border */

.e-283879c1 > .box.border > .field { border-color: var(--ot-bg-2-border); }
.e-283879c1 > .box.bg-1.border > .field { border-color: var(--ot-bg-1-border); }
.e-283879c1 > .box.bg-2.border > .field { border-color: var(--ot-bg-2-border); }
.e-283879c1 > .box.bg-3.border > .field { border-color: var(--ot-bg-3-border); }
.e-283879c1 > .box.bg-4.border > .field { border-color: var(--ot-bg-4-border); }

/* Today */

.e-283879c1 > .box.today > .field,
.e-283879c1 > .box.today.border > .field
{
	border-color: var(--ot-brand);
}

/* ===== SIZE ===== */

.e-283879c1 > .box.size-s > .field
{
	height: var(--ot-height-s);
	padding: 0 var(--ot-spacing-s);
}

.e-283879c1 > .box.size-s > .field > .icon { font-size: 15px; }
.e-283879c1 > .box.size-s > .field > .input { font-size: var(--ot-size-s); }
.e-283879c1 > .box.size-s > .field > .action { width: 18px; height: 18px; }
.e-283879c1 > .box.size-s > .field > .action > i { font-size: 13px; }
.e-283879c1 > .box.size-s > .presets > .preset { font-size: 10.5px; padding: 3px 8px; }

.e-283879c1 > .box.size-m > .field
{
	height: var(--ot-height-m);
	padding: 0 var(--ot-spacing-m);
}

.e-283879c1 > .box.size-l > .field
{
	height: var(--ot-height-l);
	padding: 0 var(--ot-spacing-l);
}

.e-283879c1 > .box.size-l > .field > .icon { font-size: 20px; }
.e-283879c1 > .box.size-l > .field > .action { width: 26px; height: 26px; }
.e-283879c1 > .box.size-l > .field > .action > i { font-size: 16px; }
.e-283879c1 > .box.size-l > .presets > .preset { font-size: 12.5px; padding: 5px 12px; }
/* ===== FORM EDITOR ===== */

.e-2248d40
{
	display: contents;
}

/* Box */

.e-2248d40 > .box
{
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	border-radius: var(--ot-radius-m);
	overflow: visible;
	transition: border-color var(--ot-transition), box-shadow var(--ot-transition);
}

.e-2248d40 > .box:focus-within
{
	box-shadow: 0 0 0 1px var(--ot-brand-opacity);
}

/* Toolbar */

.e-2248d40 > .box > .bar
{
	display: flex;
	align-items: center;
	gap: 2px;
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	border-bottom: 1px solid var(--ot-bg-2-border);
	flex-wrap: wrap;
	border-radius: var(--ot-radius-m) var(--ot-radius-m) 0 0;
}

.e-2248d40 > .box > .bar > div
{
	display: inline-flex;
	align-items: center;
}

.e-2248d40 > .box > .bar .btn
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: var(--ot-radius-s);
	color: var(--ot-text-2);
	cursor: pointer;
	outline: none;
	transition: background var(--ot-transition-fast), color var(--ot-transition-fast);
}

.e-2248d40 > .box > .bar .btn:hover
{
	background: var(--ot-bg-3);
	color: var(--ot-text-1);
}

.e-2248d40 > .box > .bar .btn.active
{
	background: var(--ot-brand-opacity);
	color: var(--ot-brand);
}

.e-2248d40 > .box > .bar .btn > i
{
	font-size: 18px;
}

.e-2248d40 > .box > .bar .sep
{
	width: 1px;
	height: 20px;
	background: var(--ot-bg-2-border);
	margin: 0 6px;
}

/* Area */

.e-2248d40 > .box > .area
{
	position: relative;
	padding: var(--ot-spacing-l);
	width: 100%;
	border-radius: 0 0 var(--ot-radius-m) var(--ot-radius-m);
}

/* Body (contenteditable) */

.e-2248d40 > .box > .area > .body
{
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-m);
	line-height: 1.75;
	color: var(--ot-text-1);
	outline: none;
	min-height: 200px;
	word-break: break-word;
	overflow-wrap: break-word;
}

/* Placeholder */

.e-2248d40 > .box > .area > .body:empty::before,
.e-2248d40 > .box > .area > .body > p:only-child:empty::before
{
	content: attr(data-placeholder);
	color: var(--ot-text-3);
	pointer-events: none;
}

.e-2248d40 > .box > .area > .body > *:first-child { margin-top: 0; }
.e-2248d40 > .box > .area > .body > *:last-child { margin-bottom: 0; }

/* Headings */

.e-2248d40 > .box > .area > .body :is(h2, h3, h4)
{
	font-family: var(--ot-font-secondary);
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--ot-text-1);
	line-height: 1.2;
}

.e-2248d40 > .box > .area > .body h2 { font-size: 26px; margin: 1.2em 0 0.5em; }
.e-2248d40 > .box > .area > .body h3 { font-size: 21px; margin: 1.1em 0 0.45em; }
.e-2248d40 > .box > .area > .body h4 { font-size: 17px; margin: 1em 0 0.4em; }

.e-2248d40 > .box > .area > .body :is(h2, h3, h4) + :is(h2, h3, h4)
{
	margin-top: 0;
}

/* Paragraphs */

.e-2248d40 > .box > .area > .body p
{
	margin: 0 0 1em;
	color: var(--ot-text-2);
}

/* Inline formatting */

.e-2248d40 > .box > .area > .body strong { font-weight: 700; color: var(--ot-text-1); }
.e-2248d40 > .box > .area > .body em { font-style: italic; }
.e-2248d40 > .box > .area > .body s { text-decoration: line-through; color: var(--ot-text-3); }
.e-2248d40 > .box > .area > .body u { text-decoration: underline; }

/* Links */

.e-2248d40 > .box > .area > .body a
{
	color: var(--ot-brand);
	text-decoration: underline;
	text-decoration-color: var(--ot-brand-opacity);
	text-underline-offset: 3px;
	transition: text-decoration-color var(--ot-transition-fast);
}

.e-2248d40 > .box > .area > .body a:hover
{
	text-decoration-color: var(--ot-brand);
}

/* Lists */

.e-2248d40 > .box > .area > .body :is(ul, ol)
{
	margin: 0 0 1em;
	padding-left: 1.6em;
}

.e-2248d40 > .box > .area > .body ul { list-style: disc; }
.e-2248d40 > .box > .area > .body ol { list-style: decimal; }

.e-2248d40 > .box > .area > .body li
{
	margin: 0 0 0.3em;
	color: var(--ot-text-2);
}

.e-2248d40 > .box > .area > .body li:last-child
{
	margin-bottom: 0;
}

/* Blockquote */

.e-2248d40 > .box > .area > .body blockquote
{
	margin: 1.3em 0;
	padding: 0.2em 0 0.2em 1em;
	border-left: 3px solid var(--ot-brand);
	font-family: var(--ot-font-secondary);
	font-size: 1.15em;
	font-style: italic;
	line-height: 1.5;
	color: var(--ot-text-1);
}

.e-2248d40 > .box > .area > .body blockquote p
{
	margin: 0;
	color: inherit;
}

/* Inline code */

.e-2248d40 > .box > .area > .body code
{
	font-family: ui-monospace, 'SF Mono', Menlo, monospace;
	font-size: 0.9em;
	padding: 0.1em 0.35em;
	border-radius: var(--ot-radius-s);
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	color: var(--ot-text-1);
}

/* Pre / code block */

.e-2248d40 > .box > .area > .body pre
{
	margin: 1.3em 0;
	padding: 1em 1.2em;
	border-radius: var(--ot-radius-m);
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	overflow-x: auto;
	font-family: ui-monospace, 'SF Mono', Menlo, monospace;
	font-size: 0.9em;
	line-height: 1.6;
}

.e-2248d40 > .box > .area > .body pre > code
{
	background: transparent;
	border: none;
	padding: 0;
}

/* Images */

.e-2248d40 > .box > .area > .body img
{
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: var(--ot-radius-m);
	margin: 1.5em 0;
}

/* HR */

.e-2248d40 > .box > .area > .body hr
{
	border: none;
	height: 1px;
	background: var(--ot-bg-2-border);
	margin: 2em 0;
}

/* Tables */

.e-2248d40 > .box > .area > .body table
{
	width: 100%;
	border-collapse: collapse;
	margin: 1.5em 0;
	font-size: var(--ot-size-s);
}

.e-2248d40 > .box > .area > .body th,
.e-2248d40 > .box > .area > .body td
{
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	border: 1px solid var(--ot-bg-2-border);
	text-align: left;
	vertical-align: top;
}

.e-2248d40 > .box > .area > .body thead td,
.e-2248d40 > .box > .area > .body th
{
	font-weight: 600;
	color: var(--ot-text-1);
	background: var(--ot-bg-2);
}

.e-2248d40 > .box > .area > .body td
{
	color: var(--ot-text-2);
}

/* ===== BACKGROUND ===== */

.e-2248d40 > .box.bg-1 { background: var(--ot-bg-1); }
.e-2248d40 > .box.bg-1 > .bar { background: var(--ot-bg-1); }

.e-2248d40 > .box.bg-2 { background: var(--ot-bg-2); }
.e-2248d40 > .box.bg-2 > .bar { background: var(--ot-bg-2); border-bottom-color: var(--ot-bg-2-border); }
.e-2248d40 > .box.bg-2 > .bar .btn:hover { background: var(--ot-bg-3); }
.e-2248d40 > .box.bg-2 > .bar .sep { background: var(--ot-bg-2-border); }

.e-2248d40 > .box.bg-3 { background: var(--ot-bg-3); }
.e-2248d40 > .box.bg-3 > .bar { background: var(--ot-bg-3); border-bottom-color: var(--ot-bg-3-border); }
.e-2248d40 > .box.bg-3 > .bar .btn:hover { background: var(--ot-bg-4); }
.e-2248d40 > .box.bg-3 > .bar .sep { background: var(--ot-bg-3-border); }

.e-2248d40 > .box.bg-4 { background: var(--ot-bg-4); }
.e-2248d40 > .box.bg-4 > .bar { background: var(--ot-bg-4); border-bottom-color: var(--ot-bg-4-border); }
.e-2248d40 > .box.bg-4 > .bar .btn:hover { background: var(--ot-bg-3); }
.e-2248d40 > .box.bg-4 > .bar .sep { background: var(--ot-bg-4-border); }

/* ===== BORDER ===== */

.e-2248d40 > .box.border { border: 1px solid var(--ot-bg-2-border); }
.e-2248d40 > .box.bg-1.border { border-color: var(--ot-bg-1-border); }
.e-2248d40 > .box.bg-2.border { border-color: var(--ot-bg-2-border); }
.e-2248d40 > .box.bg-3.border { border-color: var(--ot-bg-3-border); }
.e-2248d40 > .box.bg-4.border { border-color: var(--ot-bg-4-border); }

/* ===== SIZE ===== */

.e-2248d40 > .box.size-s > .bar { padding: var(--ot-spacing-x) var(--ot-spacing-s); }
.e-2248d40 > .box.size-s > .bar .btn { width: 26px; height: 26px; }
.e-2248d40 > .box.size-s > .bar .btn > i { font-size: 16px; }
.e-2248d40 > .box.size-s > .area { padding: var(--ot-spacing-m); }
.e-2248d40 > .box.size-s > .area > .body { font-size: var(--ot-size-s); min-height: 140px; }

.e-2248d40 > .box.size-m > .bar { padding: var(--ot-spacing-s) var(--ot-spacing-m); }
.e-2248d40 > .box.size-m > .area { padding: var(--ot-spacing-l); }

.e-2248d40 > .box.size-l > .bar { padding: var(--ot-spacing-m) var(--ot-spacing-l); }
.e-2248d40 > .box.size-l > .bar .btn { width: 34px; height: 34px; }
.e-2248d40 > .box.size-l > .bar .btn > i { font-size: 20px; }
.e-2248d40 > .box.size-l > .area { padding: var(--ot-spacing-l); }
.e-2248d40 > .box.size-l > .area > .body { min-height: 280px; }

/* ===== COMPACT ===== */

.e-2248d40 > .box.compact > .area { padding: var(--ot-spacing-m); }
.e-2248d40 > .box.compact > .area > .body { min-height: 120px; }
/* ===== FORM FIELD ===== */

.e-2109a6b9
{
	display: contents;
}

/* Box */

.e-2109a6b9 > .box
{
	display: flex;
	width: 100%;
	padding: var(--ot-spacing-m);
	gap: var(--ot-spacing-l);
}

.e-2109a6b9 > .box.horizontal
{
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
}

.e-2109a6b9 > .box.vertical
{
	flex-direction: column;
	gap: var(--ot-spacing-s);
}

/* Info */

.e-2109a6b9 > .box > .info
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-x);
	min-width: 0;
	flex: 1;
}

.e-2109a6b9 > .box.horizontal > .info
{
	padding-top: 6px;
	max-width: 240px;
}

/* Label */

.e-2109a6b9 > .box > .info > .label
{
	display: inline-flex;
	align-items: center;
	gap: var(--ot-spacing-x);
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-m);
	font-weight: 500;
	color: var(--ot-text-1);
	line-height: 1.3;
	cursor: default;
}

.e-2109a6b9 > .box > .info > .label > .required
{
	color: var(--ot-red);
	font-weight: 600;
}

.e-2109a6b9 > .box > .info > .label > .hint
{
	font-size: 16px;
	color: var(--ot-text-3);
	cursor: help;
	transition: color var(--ot-transition);
}

.e-2109a6b9 > .box > .info > .label > .hint:hover
{
	color: var(--ot-text-1);
}

/* Description */

.e-2109a6b9 > .box > .info > .description
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
	color: var(--ot-text-3);
	line-height: 1.5;
}

/* Control */

.e-2109a6b9 > .box > .control
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-x);
	flex: 1;
	min-width: 0;
}

.e-2109a6b9 > .box.horizontal > .control
{
	flex: 1.5;
}

.e-2109a6b9 > .box.vertical > .control
{
	width: 100%;
}

/* Input slot */

.e-2109a6b9 > .box > .control > .input
{
	display: flex;
	width: 100%;
}

.e-2109a6b9 > .box > .control > .input > *
{
	width: 100%;
}

/* Error message */

.e-2109a6b9 > .box > .control > .message
{
	display: inline-flex;
	align-items: center;
	gap: var(--ot-spacing-x);
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
	color: var(--ot-red);
	animation: e-2109a6b9-shake 0.3s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

.e-2109a6b9 > .box > .control > .message > i
{
	font-size: 14px;
	font-variation-settings: 'FILL' 1;
}

@keyframes e-2109a6b9-shake
{
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-3px); }
	75% { transform: translateX(3px); }
}

/* Error state */

.e-2109a6b9 > .box.error > .control > .input > *
{
	--ot-brand: var(--ot-red);
	--ot-brand-opacity: var(--ot-red-opacity);
}

/* ===== VARIANT ===== */

.e-2109a6b9 > .box.clean
{
	padding: 0;
}

.e-2109a6b9 > .box.border
{
	border-bottom: 1px solid var(--ot-bg-2-border);
}

/* ===== SIZE ===== */

/* Small */

.e-2109a6b9 > .box.size-s
{
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	gap: var(--ot-spacing-m);
}

.e-2109a6b9 > .box.size-s.vertical
{
	gap: var(--ot-spacing-x);
}

.e-2109a6b9 > .box.size-s > .info > .label
{
	font-size: var(--ot-size-s);
}

.e-2109a6b9 > .box.size-s > .info > .description
{
	font-size: var(--ot-size-s);
}

/* Medium */

.e-2109a6b9 > .box.size-m
{
	padding: var(--ot-spacing-m);
	gap: var(--ot-spacing-m);
}

/* Large */

.e-2109a6b9 > .box.size-l
{
	padding: var(--ot-spacing-l) var(--ot-spacing-m);
	gap: var(--ot-spacing-l);
}

.e-2109a6b9 > .box.size-l.vertical
{
	gap: var(--ot-spacing-s);
}

.e-2109a6b9 > .box.size-l > .info > .label
{
	font-size: 15px;
}

.e-2109a6b9 > .box.size-l > .info > .description
{
	font-size: var(--ot-size-m);
}

/* Clean overrides */

.e-2109a6b9 > .box.clean.size-s,
.e-2109a6b9 > .box.clean.size-m,
.e-2109a6b9 > .box.clean.size-l
{
	padding: 0;
}
/* ===== FORM INPUT ===== */

.e-20dcefe9
{
	display: contents;
}

/* Box */

.e-20dcefe9 > .box
{
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	border: 1px solid transparent;
	border-radius: var(--ot-radius-m);
	background: transparent;
	transition: background var(--ot-transition), border-color var(--ot-transition), box-shadow var(--ot-transition);
}

.e-20dcefe9 > .box:focus-within
{
	border-color: var(--ot-brand);
	box-shadow: 0 0 0 1px var(--ot-brand-opacity);
}

/* Field */

.e-20dcefe9 > .box > .field
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	width: 100%;
	height: var(--ot-height-m);
	padding: 0 var(--ot-spacing-m);
}

/* Icon */

.e-20dcefe9 > .box > .field > .icon
{
	flex-shrink: 0;
	font-size: 18px;
	color: var(--ot-text-3);
	transition: color var(--ot-transition);
}

.e-20dcefe9 > .box:focus-within > .field > .icon
{
	color: var(--ot-text-1);
}

/* Affix */

.e-20dcefe9 > .box > .field > .affix
{
	flex-shrink: 0;
	color: var(--ot-text-3);
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-m);
	font-weight: 500;
	user-select: none;
}

/* Input */

.e-20dcefe9 > .box > .field > .input
{
	flex: 1;
	min-width: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	background: transparent;
	border: none;
	outline: none;
	color: var(--ot-text-1);
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-m);
	font-weight: 500;
}

.e-20dcefe9 > .box > .field > .input::placeholder
{
	color: var(--ot-text-3);
	font-weight: 400;
}

.e-20dcefe9 > .box > .field > .input:disabled
{
	cursor: not-allowed;
}

/* Action */

.e-20dcefe9 > .box > .field > .action
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	padding: 0;
	border: none;
	background: transparent;
	border-radius: var(--ot-radius-s);
	color: var(--ot-text-3);
	cursor: pointer;
	outline: none;
	transition: background var(--ot-transition), color var(--ot-transition);
}

.e-20dcefe9 > .box > .field > .action:hover
{
	background: var(--ot-bg-3);
	color: var(--ot-text-1);
}

.e-20dcefe9 > .box > .field > .action > i
{
	font-size: 14px;
}

/* Dropdown */

.e-20dcefe9 > .box > .dropdown
{
	position: absolute;
	top: calc(100% + var(--ot-spacing-x));
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	padding: var(--ot-spacing-x);
	background: var(--ot-bg-1);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: var(--ot-radius-m);
	box-shadow: var(--ot-shadow-m);
	z-index: 10;
	max-height: 240px;
	overflow-y: auto;
	animation: e-20dcefe9-drop var(--ot-transition);
}

@keyframes e-20dcefe9-drop
{
	from { opacity: 0; transform: translateY(-4px); }
	to { opacity: 1; transform: translateY(0); }
}

.e-20dcefe9 > .box > .dropdown > .option
{
	display: flex;
	align-items: center;
	width: 100%;
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	background: transparent;
	border: none;
	border-radius: var(--ot-radius-s);
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-m);
	font-weight: 500;
	color: var(--ot-text-1);
	text-align: left;
	cursor: pointer;
	outline: none;
	transition: background var(--ot-transition-fast), color var(--ot-transition-fast);
}

.e-20dcefe9 > .box > .dropdown > .option:hover,
.e-20dcefe9 > .box > .dropdown > .option.active
{
	background: var(--ot-brand-opacity);
	color: var(--ot-brand);
}

/* Disabled */

.e-20dcefe9 > .box.disabled
{
	cursor: not-allowed;
	opacity: 0.5;
}

/* ===== BACKGROUND ===== */

.e-20dcefe9 > .box.bg-1 { background: var(--ot-bg-1); }
.e-20dcefe9 > .box.bg-2 { background: var(--ot-bg-2); }
.e-20dcefe9 > .box.bg-3 { background: var(--ot-bg-3); }
.e-20dcefe9 > .box.bg-4 { background: var(--ot-bg-4); }
.e-20dcefe9 > .box.transparent { background: transparent; }

.e-20dcefe9 > .box.bg-1:hover:not(:focus-within):not(.disabled) { background: var(--ot-bg-1-hover); }
.e-20dcefe9 > .box.bg-2:hover:not(:focus-within):not(.disabled) { background: var(--ot-bg-2-hover); }
.e-20dcefe9 > .box.bg-3:hover:not(:focus-within):not(.disabled) { background: var(--ot-bg-3-hover); }
.e-20dcefe9 > .box.bg-4:hover:not(:focus-within):not(.disabled) { background: var(--ot-bg-4-hover); }

/* ===== BORDER ===== */

.e-20dcefe9 > .box.border { border-color: var(--ot-bg-2-border); }
.e-20dcefe9 > .box.bg-1.border { border-color: var(--ot-bg-1-border); }
.e-20dcefe9 > .box.bg-2.border { border-color: var(--ot-bg-2-border); }
.e-20dcefe9 > .box.bg-3.border { border-color: var(--ot-bg-3-border); }
.e-20dcefe9 > .box.bg-4.border { border-color: var(--ot-bg-4-border); }

/* ===== SIZE ===== */

.e-20dcefe9 > .box.size-s > .field
{
	height: var(--ot-height-s);
	padding: 0 var(--ot-spacing-s);
}

.e-20dcefe9 > .box.size-s > .field > .icon
{
	font-size: 15px;
}

.e-20dcefe9 > .box.size-s > .field > .affix,
.e-20dcefe9 > .box.size-s > .field > .input
{
	font-size: var(--ot-size-s);
}

.e-20dcefe9 > .box.size-s > .field > .action
{
	width: 18px;
	height: 18px;
}

.e-20dcefe9 > .box.size-s > .field > .action > i
{
	font-size: 13px;
}

.e-20dcefe9 > .box.size-m > .field
{
	height: var(--ot-height-m);
	padding: 0 var(--ot-spacing-m);
}

.e-20dcefe9 > .box.size-l > .field
{
	height: var(--ot-height-l);
	padding: 0 var(--ot-spacing-l);
}

.e-20dcefe9 > .box.size-l > .field > .icon
{
	font-size: 20px;
}

.e-20dcefe9 > .box.size-l > .field > .action
{
	width: 26px;
	height: 26px;
}

.e-20dcefe9 > .box.size-l > .field > .action > i
{
	font-size: 16px;
}
/* ===== FORM RADIO ===== */

.e-206433b8
{
	display: contents;
}

/* Box */

.e-206433b8 > .box
{
	position: relative;
	display: inline-flex;
	align-items: flex-start;
	gap: var(--ot-spacing-s);
	cursor: pointer;
	font-family: var(--ot-font-primary);
}

.e-206433b8 > .box.reverse
{
	flex-direction: row-reverse;
}

/* Input */

.e-206433b8 > .box > input
{
	position: absolute;
	opacity: 0;
	cursor: pointer;
	width: 0;
	height: 0;
	margin: 0;
}

/* Info */

.e-206433b8 > .box > .info
{
	display: inline-flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	padding-top: 1px;
}

.e-206433b8 > .box > .info > .label
{
	font-size: var(--ot-size-m);
	font-weight: 500;
	color: var(--ot-text-1);
	line-height: 1.3;
	user-select: none;
	transition: color var(--ot-transition);
}

.e-206433b8 > .box > .info > .description
{
	font-size: var(--ot-size-s);
	color: var(--ot-text-3);
	line-height: 1.4;
	user-select: none;
	transition: color var(--ot-transition);
}

/* Mark */

.e-206433b8 > .box > .mark
{
	position: relative;
	display: block;
	flex-shrink: 0;
	border-radius: 50%;
	border: 1px solid transparent;
	background: transparent;
	transition: background var(--ot-transition), border-color var(--ot-transition), transform var(--ot-transition-fast), box-shadow var(--ot-transition);
}

/* Dot */

.e-206433b8 > .box > .mark::after
{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 50%;
	background: white;
	transform: translate(-50%, -50%) scale(0);
	opacity: 0;
	transition: transform var(--ot-transition), opacity var(--ot-transition-fast);
}

.e-206433b8 > .box > input:checked ~ .mark::after
{
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}

/* Focus */

.e-206433b8 > .box > input:focus-visible ~ .mark
{
	box-shadow: 0 0 0 1px var(--ot-brand-opacity);
}

/* Active */

.e-206433b8 > .box:active > .mark
{
	transform: scale(0.92);
}

/* Disabled */

.e-206433b8 > .box.disabled
{
	cursor: not-allowed;
}

.e-206433b8 > .box.disabled > .mark
{
	opacity: 0.45;
}

.e-206433b8 > .box.disabled > .info > .label,
.e-206433b8 > .box.disabled > .info > .description
{
	color: var(--ot-text-3);
	opacity: 0.6;
}

/* ===== SIZE ===== */

.e-206433b8 > .box.size-s > .mark
{
	width: 16px;
	height: 16px;
}

.e-206433b8 > .box.size-s > .mark::after
{
	width: 6px;
	height: 6px;
}

.e-206433b8 > .box.size-s > .info > .label
{
	font-size: var(--ot-size-s);
}

.e-206433b8 > .box.size-s > .info > .description
{
	font-size: 10.5px;
}

.e-206433b8 > .box.size-m > .mark
{
	width: 20px;
	height: 20px;
}

.e-206433b8 > .box.size-m > .mark::after
{
	width: 8px;
	height: 8px;
}

.e-206433b8 > .box.size-m > .info > .label
{
	font-size: var(--ot-size-m);
}

.e-206433b8 > .box.size-l > .mark
{
	width: 24px;
	height: 24px;
}

.e-206433b8 > .box.size-l > .mark::after
{
	width: 10px;
	height: 10px;
}

.e-206433b8 > .box.size-l > .info > .label
{
	font-size: var(--ot-size-m);
}

/* ===== BACKGROUND ===== */

.e-206433b8 > .box.bg-1 > .mark
{
	background: var(--ot-bg-1);
	border-color: var(--ot-bg-1-border);
}

.e-206433b8 > .box.bg-1:hover:not(.disabled) > input:not(:checked) ~ .mark
{
	background: var(--ot-bg-1-hover);
}

.e-206433b8 > .box.bg-2 > .mark
{
	background: var(--ot-bg-2);
	border-color: var(--ot-bg-2-border);
}

.e-206433b8 > .box.bg-2:hover:not(.disabled) > input:not(:checked) ~ .mark
{
	background: var(--ot-bg-2-hover);
}

.e-206433b8 > .box.bg-3 > .mark
{
	background: var(--ot-bg-3);
	border-color: var(--ot-bg-3-border);
}

.e-206433b8 > .box.bg-3:hover:not(.disabled) > input:not(:checked) ~ .mark
{
	background: var(--ot-bg-3-hover);
}

.e-206433b8 > .box.bg-4 > .mark
{
	background: var(--ot-bg-4);
	border-color: var(--ot-bg-4-border);
}

.e-206433b8 > .box.bg-4:hover:not(.disabled) > input:not(:checked) ~ .mark
{
	background: var(--ot-bg-4-hover);
}

/* Transparent */

.e-206433b8 > .box.transparent > .mark
{
	background: transparent;
	border-color: transparent;
}

.e-206433b8 > .box.transparent > input:not(:checked) ~ .mark::after
{
	background: var(--ot-text-1);
}

/* Border */

.e-206433b8 > .box.border > .mark
{
	background: transparent;
	border-color: var(--ot-bg-2-border);
}

.e-206433b8 > .box.border:hover:not(.disabled) > input:not(:checked) ~ .mark
{
	border-color: var(--ot-text-3);
}

/* ===== CHECKED ===== */

.e-206433b8 > .box.bg-1 > input:checked ~ .mark,
.e-206433b8 > .box.bg-2 > input:checked ~ .mark,
.e-206433b8 > .box.bg-3 > input:checked ~ .mark,
.e-206433b8 > .box.bg-4 > input:checked ~ .mark,
.e-206433b8 > .box.transparent > input:checked ~ .mark,
.e-206433b8 > .box.border > input:checked ~ .mark
{
	background: var(--ot-brand);
	border-color: var(--ot-brand);
}

/* ===== COLOR ===== */

.e-206433b8 > .box.color-brand > input:checked ~ .mark
{
	background: var(--ot-brand);
	border-color: var(--ot-brand);
}

.e-206433b8 > .box.color-blue > input:checked ~ .mark
{
	background: var(--ot-blue);
	border-color: var(--ot-blue);
}

.e-206433b8 > .box.color-red > input:checked ~ .mark
{
	background: var(--ot-red);
	border-color: var(--ot-red);
}

.e-206433b8 > .box.color-orange > input:checked ~ .mark
{
	background: var(--ot-orange);
	border-color: var(--ot-orange);
}

.e-206433b8 > .box.color-green > input:checked ~ .mark
{
	background: var(--ot-green);
	border-color: var(--ot-green);
}

/* Color focus rings */

.e-206433b8 > .box.color-blue > input:focus-visible ~ .mark
{
	box-shadow: 0 0 0 1px var(--ot-blue-opacity);
}

.e-206433b8 > .box.color-red > input:focus-visible ~ .mark
{
	box-shadow: 0 0 0 1px var(--ot-red-opacity);
}

.e-206433b8 > .box.color-orange > input:focus-visible ~ .mark
{
	box-shadow: 0 0 0 1px var(--ot-orange-opacity);
}

.e-206433b8 > .box.color-green > input:focus-visible ~ .mark
{
	box-shadow: 0 0 0 1px var(--ot-green-opacity);
}

/* ===== ICON ===== */

.e-206433b8 > .box > .icon
{
	font-size: 18px;
	color: var(--ot-text-2);
	flex-shrink: 0;
	align-self: center;
}

.e-206433b8 > .box.size-s > .icon { font-size: 16px; }
.e-206433b8 > .box.size-l > .icon { font-size: 20px; }

/* ===== COUNT ===== */

.e-206433b8 > .box > .count
{
	margin-left: auto;
	padding-left: var(--ot-spacing-s);
	font-size: var(--ot-size-s);
	font-weight: 700;
	color: var(--ot-text-3);
	font-variant-numeric: tabular-nums;
	align-self: center;
}
/* ===== FORM SECTION ===== */

.e-5c75a80e
{
	display: contents;
}

/* Box */

.e-5c75a80e > .box
{
	display: flex;
	flex-direction: column;
	width: 100%;
	border: 1px solid transparent;
	border-radius: var(--ot-radius-l);
	transition: border-color var(--ot-transition);
}

/* ===== HEADER ===== */

.e-5c75a80e > .box > .head
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-m);
	padding: var(--ot-spacing-m);
	border-bottom: 1px solid transparent;
	transition: border-color var(--ot-transition);
}

.e-5c75a80e > .box:not(.collapsed) > .head
{
	border-bottom-color: var(--ot-bg-2-border);
}

/* Head main */

.e-5c75a80e > .box > .head > .head-main
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-m);
	flex: 1;
	min-width: 0;
}

.e-5c75a80e > .box.collapsible > .head > .head-main
{
	cursor: pointer;
}

/* Icon */

.e-5c75a80e > .box > .head > .head-main > .icon
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: var(--ot-radius-m);
	background: var(--ot-brand-opacity);
	color: var(--ot-brand);
	flex-shrink: 0;
}

.e-5c75a80e > .box > .head > .head-main > .icon > i
{
	font-size: 22px;
}

/* Text */

.e-5c75a80e > .box > .head > .head-main > .text
{
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	flex: 1;
}

.e-5c75a80e > .box > .head > .head-main > .text > .eyebrow
{
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--ot-brand);
}

.e-5c75a80e > .box > .head > .head-main > .text > .title
{
	margin: 0;
	font-family: var(--ot-font-secondary);
	font-size: 18px;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--ot-text-1);
	line-height: 1.25;
	font-variation-settings: 'opsz' 144;
}

.e-5c75a80e > .box > .head > .head-main > .text > .description
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-m);
	color: var(--ot-text-2);
	line-height: 1.5;
}

/* Chevron */

.e-5c75a80e > .box > .head > .head-main > .chevron
{
	flex-shrink: 0;
	font-size: 22px;
	color: var(--ot-text-3);
	transition: transform var(--ot-transition-slow), color var(--ot-transition);
}

.e-5c75a80e > .box.collapsible > .head > .head-main:hover > .chevron
{
	color: var(--ot-text-1);
}

.e-5c75a80e > .box.collapsed > .head > .head-main > .chevron
{
	transform: rotate(-90deg);
}

/* Actions */

.e-5c75a80e > .box > .head > .actions
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	flex-shrink: 0;
}

/* ===== CONTENT ===== */

.e-5c75a80e > .box > .content
{
	display: flex;
	flex-direction: column;
	animation: e-5c75a80e-expand 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes e-5c75a80e-expand
{
	from { opacity: 0; transform: translateY(-4px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Padded content */

.e-5c75a80e > .box.padded > .content
{
	padding: var(--ot-spacing-m);
	gap: var(--ot-spacing-m);
}

.e-5c75a80e > .box.padded.size-s > .content
{
	padding: var(--ot-spacing-m);
	gap: var(--ot-spacing-s);
}

.e-5c75a80e > .box.padded.size-l > .content
{
	padding: var(--ot-spacing-l);
	gap: var(--ot-spacing-l);
}

/* ===== BACKGROUND ===== */

.e-5c75a80e > .box.bg-1 { background: var(--ot-bg-1); }
.e-5c75a80e > .box.bg-2 { background: var(--ot-bg-2); }
.e-5c75a80e > .box.bg-3 { background: var(--ot-bg-3); }
.e-5c75a80e > .box.bg-4 { background: var(--ot-bg-4); }

.e-5c75a80e > .box.bg-1:not(.collapsed) > .head { border-bottom-color: var(--ot-bg-1-border); }
.e-5c75a80e > .box.bg-2:not(.collapsed) > .head { border-bottom-color: var(--ot-bg-2-border); }
.e-5c75a80e > .box.bg-3:not(.collapsed) > .head { border-bottom-color: var(--ot-bg-3-border); }
.e-5c75a80e > .box.bg-4:not(.collapsed) > .head { border-bottom-color: var(--ot-bg-4-border); }

/* ===== BORDER ===== */

.e-5c75a80e > .box.border { border-color: var(--ot-bg-2-border); }
.e-5c75a80e > .box.bg-1.border { border-color: var(--ot-bg-1-border); }
.e-5c75a80e > .box.bg-2.border { border-color: var(--ot-bg-2-border); }
.e-5c75a80e > .box.bg-3.border { border-color: var(--ot-bg-3-border); }
.e-5c75a80e > .box.bg-4.border { border-color: var(--ot-bg-4-border); }

/* ===== CLEAN ===== */

.e-5c75a80e > .box.clean
{
	background: transparent;
	border: none;
	border-radius: 0;
	gap: var(--ot-spacing-m);
}

.e-5c75a80e > .box.clean > .head
{
	padding: 0 0 var(--ot-spacing-m);
	border-bottom: 1px solid var(--ot-bg-2-border);
}

.e-5c75a80e > .box.clean > .content
{
	padding: 0;
}

/* ===== SIZE: SMALL ===== */

.e-5c75a80e > .box.size-s > .head
{
	padding: var(--ot-spacing-m);
}

.e-5c75a80e > .box.size-s > .head > .head-main
{
	gap: var(--ot-spacing-s);
}

.e-5c75a80e > .box.size-s > .head > .head-main > .icon
{
	width: 34px;
	height: 34px;
	border-radius: var(--ot-radius-s);
}

.e-5c75a80e > .box.size-s > .head > .head-main > .icon > i
{
	font-size: 18px;
}

.e-5c75a80e > .box.size-s > .head > .head-main > .text > .eyebrow
{
	font-size: 10px;
}

.e-5c75a80e > .box.size-s > .head > .head-main > .text > .title
{
	font-size: 15px;
}

.e-5c75a80e > .box.size-s > .head > .head-main > .text > .description
{
	font-size: var(--ot-size-s);
}

.e-5c75a80e > .box.size-s > .head > .head-main > .chevron
{
	font-size: 20px;
}

/* ===== SIZE: LARGE ===== */

.e-5c75a80e > .box.size-l > .head
{
	padding: var(--ot-spacing-l);
}

.e-5c75a80e > .box.size-l > .head > .head-main > .icon
{
	width: 52px;
	height: 52px;
	border-radius: var(--ot-radius-l);
}

.e-5c75a80e > .box.size-l > .head > .head-main > .icon > i
{
	font-size: 26px;
}

.e-5c75a80e > .box.size-l > .head > .head-main > .text > .title
{
	font-size: 22px;
}

.e-5c75a80e > .box.size-l > .head > .head-main > .text > .description
{
	font-size: 14px;
}

.e-5c75a80e > .box.size-l > .head > .head-main > .chevron
{
	font-size: 26px;
}

/* Clean size overrides */

.e-5c75a80e > .box.clean.size-s > .head { padding: 0 0 var(--ot-spacing-s); }
.e-5c75a80e > .box.clean.size-l > .head { padding: 0 0 var(--ot-spacing-l); }
/* ===== FORM SELECT ===== */

.e-15ce864f
{
	display: contents;
}

/* Box */

.e-15ce864f > .box
{
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	border: 1px solid transparent;
	border-radius: var(--ot-radius-m);
	background: transparent;
	transition: background var(--ot-transition), border-color var(--ot-transition), box-shadow var(--ot-transition);
}

.e-15ce864f > .box.open
{
	box-shadow: 0 0 0 1px var(--ot-brand-opacity);
}

/* Trigger */

.e-15ce864f > .box > .trigger
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	height: var(--ot-height-m);
	padding: 0 var(--ot-spacing-m);
	cursor: pointer;
	user-select: none;
}

.e-15ce864f > .box > .trigger > .icon
{
	flex-shrink: 0;
	font-size: 18px;
	color: var(--ot-text-3);
	transition: color var(--ot-transition);
}

.e-15ce864f > .box.open > .trigger > .icon
{
	color: var(--ot-text-1);
}

.e-15ce864f > .box > .trigger > .selected
{
	flex: 1;
	min-width: 0;
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-m);
	font-weight: 500;
	color: var(--ot-text-1);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.e-15ce864f > .box > .trigger > .placeholder
{
	flex: 1;
	min-width: 0;
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-m);
	color: var(--ot-text-3);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Action (clear) */

.e-15ce864f > .box > .trigger > .action
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	padding: 0;
	margin-left: auto;
	border: none;
	background: transparent;
	border-radius: var(--ot-radius-s);
	color: var(--ot-text-3);
	cursor: pointer;
	outline: none;
	transition: background var(--ot-transition), color var(--ot-transition);
}

.e-15ce864f > .box > .trigger > .action:hover
{
	background: var(--ot-bg-2-hover);
	color: var(--ot-text-1);
}

.e-15ce864f > .box > .trigger > .action > i
{
	font-size: 14px;
}

/* Arrow */

.e-15ce864f > .box > .trigger > .arrow
{
	flex-shrink: 0;
	font-size: 20px;
	color: var(--ot-text-3);
	margin-left: auto;
	transition: transform var(--ot-transition), color var(--ot-transition);
}

.e-15ce864f > .box > .trigger > .action + .arrow
{
	margin-left: 0;
}

.e-15ce864f > .box.open > .trigger > .arrow
{
	transform: rotate(180deg);
	color: var(--ot-brand);
}

/* ===== DROPDOWN (rendered via float overlay) ===== */

.e-15ce864f > .box > .dropdown
{
	position: absolute;
	top: calc(100% + var(--ot-spacing-x));
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	background: var(--ot-bg-1);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: var(--ot-radius-m);
	box-shadow: var(--ot-shadow-m);
	z-index: 100;
	overflow: hidden;
	animation: e-15ce864f-drop var(--ot-transition);
}

@keyframes e-15ce864f-drop
{
	from { opacity: 0; transform: translateY(-4px); }
	to { opacity: 1; transform: translateY(0); }
}

.e-15ce864f > .box.above > .dropdown
{
	top: auto;
	bottom: calc(100% + var(--ot-spacing-x));
	animation: e-15ce864f-drop-above var(--ot-transition);
}

@keyframes e-15ce864f-drop-above
{
	from { opacity: 0; transform: translateY(4px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Search */

.e-15ce864f > .box > .dropdown > .search
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	padding: 0 var(--ot-spacing-m);
	height: var(--ot-height-m);
	border-bottom: 1px solid var(--ot-bg-2-border);
}

.e-15ce864f > .box > .dropdown > .search > i
{
	flex-shrink: 0;
	font-size: 18px;
	color: var(--ot-text-3);
}

.e-15ce864f > .box > .dropdown > .search > input
{
	flex: 1;
	min-width: 0;
	width: 100%;
	padding: 0;
	background: transparent;
	border: none;
	outline: none;
	color: var(--ot-text-1);
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-m);
	font-weight: 500;
}

.e-15ce864f > .box > .dropdown > .search > input::placeholder
{
	color: var(--ot-text-3);
	font-weight: 400;
}

/* List */

.e-15ce864f > .box > .dropdown > .list
{
	display: flex;
	flex-direction: column;
	padding: var(--ot-spacing-x);
	max-height: 280px;
	overflow-y: auto;
}

/* Option */

.e-15ce864f > .box > .dropdown > .list > .option
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	width: 100%;
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	background: transparent;
	border: none;
	border-radius: var(--ot-radius-s);
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-m);
	font-weight: 500;
	color: var(--ot-text-1);
	text-align: left;
	cursor: pointer;
	outline: none;
	transition: background var(--ot-transition-fast), color var(--ot-transition-fast);
}

.e-15ce864f > .box > .dropdown > .list > .option > .icon
{
	flex-shrink: 0;
	font-size: 18px;
	color: var(--ot-text-3);
	transition: color var(--ot-transition-fast);
}

.e-15ce864f > .box > .dropdown > .list > .option > .text
{
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	flex: 1;
}

.e-15ce864f > .box > .dropdown > .list > .option > .text > .label
{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.e-15ce864f > .box > .dropdown > .list > .option > .text > .description
{
	font-size: var(--ot-size-s);
	font-weight: 400;
	color: var(--ot-text-3);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.e-15ce864f > .box > .dropdown > .list > .option > .check
{
	flex-shrink: 0;
	margin-left: auto;
	font-size: 18px;
	color: var(--ot-brand);
}

.e-15ce864f > .box > .dropdown > .list > .option:hover:not(.disabled),
.e-15ce864f > .box > .dropdown > .list > .option.active:not(.disabled)
{
	background: var(--ot-brand-opacity);
	color: var(--ot-brand);
}

.e-15ce864f > .box > .dropdown > .list > .option:hover:not(.disabled) > .icon,
.e-15ce864f > .box > .dropdown > .list > .option.active:not(.disabled) > .icon
{
	color: var(--ot-brand);
}

.e-15ce864f > .box > .dropdown > .list > .option.selected
{
	color: var(--ot-brand);
}

.e-15ce864f > .box > .dropdown > .list > .option.selected > .icon
{
	color: var(--ot-brand);
}

.e-15ce864f > .box > .dropdown > .list > .option.disabled
{
	opacity: 0.4;
	cursor: not-allowed;
}

/* Empty */

.e-15ce864f > .box > .dropdown > .list > .empty
{
	padding: var(--ot-spacing-m);
	text-align: center;
	font-size: var(--ot-size-s);
	color: var(--ot-text-3);
}

/* ===== DISABLED ===== */

.e-15ce864f > .box.disabled
{
	cursor: not-allowed;
	opacity: 0.55;
}

.e-15ce864f > .box.disabled > .trigger
{
	cursor: not-allowed;
}

/* ===== BACKGROUND ===== */

.e-15ce864f > .box.bg-1 { background: var(--ot-bg-1); }
.e-15ce864f > .box.bg-2 { background: var(--ot-bg-2); }
.e-15ce864f > .box.bg-3 { background: var(--ot-bg-3); }
.e-15ce864f > .box.bg-4 { background: var(--ot-bg-4); }

.e-15ce864f > .box.bg-1:hover:not(.open):not(.disabled) { background: var(--ot-bg-1-hover); }
.e-15ce864f > .box.bg-2:hover:not(.open):not(.disabled) { background: var(--ot-bg-2-hover); }
.e-15ce864f > .box.bg-3:hover:not(.open):not(.disabled) { background: var(--ot-bg-3-hover); }
.e-15ce864f > .box.bg-4:hover:not(.open):not(.disabled) { background: var(--ot-bg-4-hover); }

.e-15ce864f > .box.bg-1 > .trigger > .action:hover { background: var(--ot-bg-1-hover); }
.e-15ce864f > .box.bg-2 > .trigger > .action:hover { background: var(--ot-bg-2-hover); }
.e-15ce864f > .box.bg-3 > .trigger > .action:hover { background: var(--ot-bg-3-hover); }
.e-15ce864f > .box.bg-4 > .trigger > .action:hover { background: var(--ot-bg-4-hover); }

.e-15ce864f > .box.transparent { background: transparent; }

/* Border */

.e-15ce864f > .box.border { border-color: var(--ot-bg-2-border); }
.e-15ce864f > .box.bg-1.border { border-color: var(--ot-bg-1-border); }
.e-15ce864f > .box.bg-2.border { border-color: var(--ot-bg-2-border); }
.e-15ce864f > .box.bg-3.border { border-color: var(--ot-bg-3-border); }
.e-15ce864f > .box.bg-4.border { border-color: var(--ot-bg-4-border); }

/* ===== SIZE ===== */

.e-15ce864f > .box.size-s > .trigger
{
	height: var(--ot-height-s);
	padding: 0 var(--ot-spacing-s);
}

.e-15ce864f > .box.size-s > .trigger > .icon { font-size: 15px; }

.e-15ce864f > .box.size-s > .trigger > .selected,
.e-15ce864f > .box.size-s > .trigger > .placeholder { font-size: var(--ot-size-s); }

.e-15ce864f > .box.size-s > .trigger > .arrow { font-size: 17px; }

.e-15ce864f > .box.size-s > .trigger > .action { width: 18px; height: 18px; }
.e-15ce864f > .box.size-s > .trigger > .action > i { font-size: 13px; }

.e-15ce864f > .box.size-m > .trigger
{
	height: var(--ot-height-m);
	padding: 0 var(--ot-spacing-m);
}

.e-15ce864f > .box.size-l > .trigger
{
	height: var(--ot-height-l);
	padding: 0 var(--ot-spacing-l);
}

.e-15ce864f > .box.size-l > .trigger > .icon { font-size: 20px; }
.e-15ce864f > .box.size-l > .trigger > .arrow { font-size: 22px; }
.e-15ce864f > .box.size-l > .trigger > .action { width: 26px; height: 26px; }
.e-15ce864f > .box.size-l > .trigger > .action > i { font-size: 16px; }
/* ===== FORM TAGS ===== */

.e-283fbe2c
{
	display: contents;
}

/* Box */

.e-283fbe2c > .box
{
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	border: 1px solid transparent;
	border-radius: var(--ot-radius-m);
	background: transparent;
	transition: background var(--ot-transition), border-color var(--ot-transition), box-shadow var(--ot-transition);
}

.e-283fbe2c > .box:focus-within
{
	box-shadow: 0 0 0 1px var(--ot-brand-opacity);
}

/* Field */

.e-283fbe2c > .box > .field
{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--ot-spacing-x);
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	min-height: var(--ot-height-m);
}

/* Tag */

.e-283fbe2c > .box > .field > .tag
{
	display: inline-flex;
	align-items: center;
	gap: var(--ot-spacing-x);
	padding: 3px 4px 3px var(--ot-spacing-s);
	border-radius: 100px;
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	color: var(--ot-text-1);
	font-family: var(--ot-font-primary);
	font-size: 11.5px;
	font-weight: 500;
	line-height: 1;
	transition: background var(--ot-transition), border-color var(--ot-transition), transform var(--ot-transition);
}

.e-283fbe2c > .box > .field > .tag > .text
{
	padding: 0 var(--ot-spacing-x);
}

/* Remove button */

.e-283fbe2c > .box > .field > .tag > .remove
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	padding: 0;
	border: none;
	background: transparent;
	border-radius: 50%;
	color: var(--ot-text-3);
	cursor: pointer;
	outline: none;
	transition: background var(--ot-transition), color var(--ot-transition);
}

.e-283fbe2c > .box > .field > .tag > .remove:hover
{
	background: var(--ot-bg-3);
	color: var(--ot-text-1);
}

.e-283fbe2c > .box > .field > .tag > .remove > i
{
	font-size: 13px;
}

/* Shake */

.e-283fbe2c > .box > .field > .tag.shake
{
	animation: e-283fbe2c-shake 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes e-283fbe2c-shake
{
	0%, 100% { transform: translateX(0); }
	20% { transform: translateX(-3px); }
	40% { transform: translateX(3px); }
	60% { transform: translateX(-2px); }
	80% { transform: translateX(2px); }
}

/* Input */

.e-283fbe2c > .box > .field > .input
{
	flex: 1;
	min-width: 80px;
	padding: 0;
	background: transparent;
	border: none;
	outline: none;
	color: var(--ot-text-1);
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-m);
}

.e-283fbe2c > .box > .field > .input::placeholder
{
	color: var(--ot-text-3);
}

.e-283fbe2c > .box > .field > .input:disabled
{
	cursor: not-allowed;
}

/* Dropdown */

.e-283fbe2c > .box > .dropdown
{
	position: absolute;
	top: calc(100% + var(--ot-spacing-x));
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	padding: var(--ot-spacing-x);
	background: var(--ot-bg-1);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: var(--ot-radius-m);
	box-shadow: var(--ot-shadow-m);
	z-index: 10;
	max-height: 240px;
	overflow-y: auto;
	animation: e-283fbe2c-drop var(--ot-transition);
}

@keyframes e-283fbe2c-drop
{
	from { opacity: 0; transform: translateY(-4px); }
	to { opacity: 1; transform: translateY(0); }
}

.e-283fbe2c > .box.above > .dropdown
{
	top: auto;
	bottom: calc(100% + var(--ot-spacing-x));
	animation: e-283fbe2c-drop-above var(--ot-transition);
}

@keyframes e-283fbe2c-drop-above
{
	from { opacity: 0; transform: translateY(4px); }
	to { opacity: 1; transform: translateY(0); }
}

.e-283fbe2c > .box > .dropdown > .option
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	width: 100%;
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	background: transparent;
	border: none;
	border-radius: var(--ot-radius-s);
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-m);
	color: var(--ot-text-1);
	text-align: left;
	cursor: pointer;
	outline: none;
	transition: background var(--ot-transition-fast), color var(--ot-transition-fast);
}

.e-283fbe2c > .box > .dropdown > .option > .label
{
	font-weight: 500;
	flex-shrink: 0;
}

.e-283fbe2c > .box > .dropdown > .option > .description
{
	color: var(--ot-text-3);
	font-size: var(--ot-size-s);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	min-width: 0;
}

.e-283fbe2c > .box > .dropdown > .option:hover,
.e-283fbe2c > .box > .dropdown > .option.active
{
	background: var(--ot-brand-opacity);
	color: var(--ot-brand);
}

/* Chips (select mode) */

.e-283fbe2c > .box > .chips
{
	display: flex;
	flex-wrap: wrap;
	gap: var(--ot-spacing-x);
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	min-height: var(--ot-height-m);
}

.e-283fbe2c > .box > .chips > .placeholder
{
	color: var(--ot-text-3);
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-m);
	font-weight: 400;
	user-select: none;
}

.e-283fbe2c > .box > .chips > .chip
{
	display: inline-flex;
	align-items: center;
	gap: var(--ot-spacing-x);
	padding: 4px var(--ot-spacing-s);
	border-radius: 100px;
	background: var(--ot-bg-3);
	border: 1px solid var(--ot-bg-3-border);
	color: var(--ot-text-2);
	font-family: var(--ot-font-primary);
	font-size: 11.5px;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
	outline: none;
	user-select: none;
	transition: background var(--ot-transition), border-color var(--ot-transition), color var(--ot-transition), transform var(--ot-transition);
}

.e-283fbe2c > .box > .chips > .chip:hover
{
	background: var(--ot-bg-3-hover);
	color: var(--ot-text-1);
}

.e-283fbe2c > .box > .chips > .chip:active
{
	transform: scale(0.95);
}

.e-283fbe2c > .box > .chips > .chip.selected
{
	background: var(--ot-brand-opacity);
	border-color: var(--ot-brand);
	color: var(--ot-brand);
}

.e-283fbe2c > .box > .chips > .chip:disabled
{
	cursor: not-allowed;
	opacity: 0.5;
}

/* Disabled */

.e-283fbe2c > .box.disabled
{
	cursor: not-allowed;
	opacity: 0.55;
}

.e-283fbe2c > .box.disabled > .field
{
	cursor: not-allowed;
}

/* ===== BACKGROUND ===== */

.e-283fbe2c > .box.bg-1 { background: var(--ot-bg-1); }

.e-283fbe2c > .box.bg-1 > .field > .tag
{
	background: var(--ot-bg-2);
	border-color: var(--ot-bg-1-border);
}

.e-283fbe2c > .box.bg-1 > .field > .tag > .remove:hover { background: var(--ot-bg-3); }
.e-283fbe2c > .box.bg-1 > .dropdown { background: var(--ot-bg-1); border-color: var(--ot-bg-1-border); }

.e-283fbe2c > .box.bg-2 { background: var(--ot-bg-2); }

.e-283fbe2c > .box.bg-2 > .field > .tag
{
	background: var(--ot-bg-1);
	border-color: var(--ot-bg-2-border);
}

.e-283fbe2c > .box.bg-2 > .field > .tag > .remove:hover { background: var(--ot-bg-2-hover); }
.e-283fbe2c > .box.bg-2 > .dropdown { background: var(--ot-bg-2); border-color: var(--ot-bg-2-border); }

.e-283fbe2c > .box.bg-3 { background: var(--ot-bg-3); }

.e-283fbe2c > .box.bg-3 > .field > .tag
{
	background: var(--ot-bg-2);
	border-color: var(--ot-bg-3-border);
}

.e-283fbe2c > .box.bg-3 > .field > .tag > .remove:hover { background: var(--ot-bg-3-hover); }
.e-283fbe2c > .box.bg-3 > .dropdown { background: var(--ot-bg-3); border-color: var(--ot-bg-3-border); }

.e-283fbe2c > .box.bg-4 { background: var(--ot-bg-4); }

.e-283fbe2c > .box.bg-4 > .field > .tag
{
	background: var(--ot-bg-3);
	border-color: var(--ot-bg-4-border);
}

.e-283fbe2c > .box.bg-4 > .field > .tag > .remove:hover { background: var(--ot-bg-4-hover); }
.e-283fbe2c > .box.bg-4 > .dropdown { background: var(--ot-bg-4); border-color: var(--ot-bg-4-border); }

.e-283fbe2c > .box.bg-1:hover:not(:focus-within):not(.disabled) { background: var(--ot-bg-1-hover); }
.e-283fbe2c > .box.bg-2:hover:not(:focus-within):not(.disabled) { background: var(--ot-bg-2-hover); }
.e-283fbe2c > .box.bg-3:hover:not(:focus-within):not(.disabled) { background: var(--ot-bg-3-hover); }
.e-283fbe2c > .box.bg-4:hover:not(:focus-within):not(.disabled) { background: var(--ot-bg-4-hover); }

/* Transparent */

.e-283fbe2c > .box.transparent { background: transparent; }

/* Border */

.e-283fbe2c > .box.border { border-color: var(--ot-bg-2-border); }
.e-283fbe2c > .box.border.bg-1 { border-color: var(--ot-bg-1-border); }
.e-283fbe2c > .box.border.bg-2 { border-color: var(--ot-bg-2-border); }
.e-283fbe2c > .box.border.bg-3 { border-color: var(--ot-bg-3-border); }
.e-283fbe2c > .box.border.bg-4 { border-color: var(--ot-bg-4-border); }

/* ===== COLOR (tag chips) ===== */

.e-283fbe2c > .box.brand > .field > .tag { background: var(--ot-brand-opacity); border-color: var(--ot-brand); color: var(--ot-brand); }
.e-283fbe2c > .box.brand > .field > .tag > .remove { color: var(--ot-brand); }
.e-283fbe2c > .box.brand > .field > .tag > .remove:hover { background: var(--ot-brand); color: #fff; }
.e-283fbe2c > .box.brand > .chips > .chip.selected { background: var(--ot-brand-opacity); border-color: var(--ot-brand); color: var(--ot-brand); }

.e-283fbe2c > .box.blue > .field > .tag { background: var(--ot-blue-opacity); border-color: var(--ot-blue); color: var(--ot-blue); }
.e-283fbe2c > .box.blue > .field > .tag > .remove { color: var(--ot-blue); }
.e-283fbe2c > .box.blue > .field > .tag > .remove:hover { background: var(--ot-blue); color: #fff; }
.e-283fbe2c > .box.blue > .chips > .chip.selected { background: var(--ot-blue-opacity); border-color: var(--ot-blue); color: var(--ot-blue); }

.e-283fbe2c > .box.red > .field > .tag { background: var(--ot-red-opacity); border-color: var(--ot-red); color: var(--ot-red); }
.e-283fbe2c > .box.red > .field > .tag > .remove { color: var(--ot-red); }
.e-283fbe2c > .box.red > .field > .tag > .remove:hover { background: var(--ot-red); color: #fff; }
.e-283fbe2c > .box.red > .chips > .chip.selected { background: var(--ot-red-opacity); border-color: var(--ot-red); color: var(--ot-red); }

.e-283fbe2c > .box.orange > .field > .tag { background: var(--ot-orange-opacity); border-color: var(--ot-orange); color: var(--ot-orange); }
.e-283fbe2c > .box.orange > .field > .tag > .remove { color: var(--ot-orange); }
.e-283fbe2c > .box.orange > .field > .tag > .remove:hover { background: var(--ot-orange); color: #fff; }
.e-283fbe2c > .box.orange > .chips > .chip.selected { background: var(--ot-orange-opacity); border-color: var(--ot-orange); color: var(--ot-orange); }

.e-283fbe2c > .box.green > .field > .tag { background: var(--ot-green-opacity); border-color: var(--ot-green); color: var(--ot-green); }
.e-283fbe2c > .box.green > .field > .tag > .remove { color: var(--ot-green); }
.e-283fbe2c > .box.green > .field > .tag > .remove:hover { background: var(--ot-green); color: #fff; }
.e-283fbe2c > .box.green > .chips > .chip.selected { background: var(--ot-green-opacity); border-color: var(--ot-green); color: var(--ot-green); }

/* ===== SIZE ===== */

/* Small */

.e-283fbe2c > .box.size-s > .field,
.e-283fbe2c > .box.size-s > .chips
{
	padding: var(--ot-spacing-x) var(--ot-spacing-s);
	min-height: var(--ot-height-s);
}

.e-283fbe2c > .box.size-s > .field > .tag
{
	font-size: 10.5px;
	padding: 2px 3px 2px 7px;
}

.e-283fbe2c > .box.size-s > .field > .tag > .remove
{
	width: 14px;
	height: 14px;
}

.e-283fbe2c > .box.size-s > .field > .tag > .remove > i
{
	font-size: 11px;
}

.e-283fbe2c > .box.size-s > .field > .input
{
	font-size: var(--ot-size-s);
}

.e-283fbe2c > .box.size-s > .chips > .chip
{
	font-size: 10.5px;
	padding: 2px var(--ot-spacing-s);
}

/* Medium */

.e-283fbe2c > .box.size-m > .field,
.e-283fbe2c > .box.size-m > .chips
{
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	min-height: var(--ot-height-m);
}

/* Large */

.e-283fbe2c > .box.size-l > .field,
.e-283fbe2c > .box.size-l > .chips
{
	padding: var(--ot-spacing-s) var(--ot-spacing-l);
	min-height: var(--ot-height-l);
}

.e-283fbe2c > .box.size-l > .field > .tag
{
	font-size: 12.5px;
	padding: 4px 5px 4px var(--ot-spacing-s);
}

.e-283fbe2c > .box.size-l > .field > .tag > .remove
{
	width: 18px;
	height: 18px;
}

.e-283fbe2c > .box.size-l > .field > .tag > .remove > i
{
	font-size: 14px;
}

.e-283fbe2c > .box.size-l > .field > .input
{
	font-size: var(--ot-size-m);
}

.e-283fbe2c > .box.size-l > .chips > .chip
{
	font-size: 12.5px;
	padding: 5px var(--ot-spacing-m);
}
/* ===== FORM TEXTAREA ===== */

.e-5973ffcd
{
	display: contents;
}

/* Box */

.e-5973ffcd > .box
{
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	border: 1px solid transparent;
	border-radius: var(--ot-radius-m);
	background: transparent;
	transition: background var(--ot-transition), border-color var(--ot-transition), box-shadow var(--ot-transition);
}

.e-5973ffcd > .box:focus-within
{
	box-shadow: 0 0 0 1px var(--ot-brand-opacity);
}

/* Textarea */

.e-5973ffcd > .box > textarea
{
	width: 100%;
	padding: 0;
	background: transparent;
	border: none;
	outline: none;
	color: var(--ot-text-1);
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-m);
	font-weight: 500;
	line-height: 1.6;
}

.e-5973ffcd > .box > textarea::placeholder
{
	color: var(--ot-text-3);
	font-weight: 400;
}

.e-5973ffcd > .box > textarea:disabled
{
	cursor: not-allowed;
}

/* Counter */

.e-5973ffcd > .box > .counter
{
	display: flex;
	align-items: center;
	gap: 2px;
	align-self: flex-end;
	margin-top: var(--ot-spacing-x);
	padding-top: var(--ot-spacing-x);
	font-family: var(--ot-font-primary);
	font-size: 10.5px;
	font-weight: 500;
	color: var(--ot-text-3);
	font-variant-numeric: tabular-nums;
	transition: color var(--ot-transition);
	pointer-events: none;
}

.e-5973ffcd > .box > .counter > .slash
{
	opacity: 0.5;
}

.e-5973ffcd > .box > .counter > .full
{
	color: var(--ot-red);
	font-weight: 600;
}

/* Disabled */

.e-5973ffcd > .box.disabled
{
	cursor: not-allowed;
	opacity: 0.55;
}

/* ===== BACKGROUND ===== */

.e-5973ffcd > .box.bg-1 { background: var(--ot-bg-1); }
.e-5973ffcd > .box.bg-2 { background: var(--ot-bg-2); }
.e-5973ffcd > .box.bg-3 { background: var(--ot-bg-3); }
.e-5973ffcd > .box.bg-4 { background: var(--ot-bg-4); }

.e-5973ffcd > .box.bg-1:hover:not(:focus-within):not(.disabled) { background: var(--ot-bg-1-hover); }
.e-5973ffcd > .box.bg-2:hover:not(:focus-within):not(.disabled) { background: var(--ot-bg-2-hover); }
.e-5973ffcd > .box.bg-3:hover:not(:focus-within):not(.disabled) { background: var(--ot-bg-3-hover); }
.e-5973ffcd > .box.bg-4:hover:not(:focus-within):not(.disabled) { background: var(--ot-bg-4-hover); }

/* Transparent */

.e-5973ffcd > .box.transparent
{
	background: transparent;
	padding: 0;
}

/* ===== BORDER ===== */

.e-5973ffcd > .box.border { border-color: var(--ot-bg-2-border); }
.e-5973ffcd > .box.bg-1.border { border-color: var(--ot-bg-1-border); }
.e-5973ffcd > .box.bg-2.border { border-color: var(--ot-bg-2-border); }
.e-5973ffcd > .box.bg-3.border { border-color: var(--ot-bg-3-border); }
.e-5973ffcd > .box.bg-4.border { border-color: var(--ot-bg-4-border); }

/* ===== SIZE ===== */

.e-5973ffcd > .box.size-s
{
	padding: var(--ot-spacing-x) var(--ot-spacing-s);
}

.e-5973ffcd > .box.size-s > textarea
{
	font-size: var(--ot-size-s);
	line-height: 1.5;
}

.e-5973ffcd > .box.size-m
{
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
}

.e-5973ffcd > .box.size-m > textarea
{
	font-size: var(--ot-size-m);
	line-height: 1.6;
}

.e-5973ffcd > .box.size-l
{
	padding: var(--ot-spacing-m) var(--ot-spacing-l);
}

.e-5973ffcd > .box.size-l > textarea
{
	font-size: var(--ot-size-m);
	line-height: 1.7;
}

/* Variable button */
.e-5973ffcd > .box
{
	position: relative;
}

.e-5973ffcd > .box > .variable-btn
{
	position: absolute;
	top: 6px;
	right: 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	padding: 0;
	background: var(--ot-bg-1);
	border: 1px solid var(--ot-bg-1-border);
	border-radius: var(--ot-radius-s);
	color: var(--ot-text-3);
	cursor: pointer;
	transition: background var(--ot-transition), color var(--ot-transition);
	z-index: 1;
}

.e-5973ffcd > .box > .variable-btn:hover
{
	background: var(--ot-brand-opacity);
	color: var(--ot-brand);
}

.e-5973ffcd > .box > .variable-btn > i
{
	font-size: 14px;
}
/* ===== FORM TOGGLE ===== */

.e-180e0ca7
{
	display: contents;
}

/* Expression wrapper */

.e-180e0ca7 > .expression
{
	display: block;
	width: 100%;
}

/* Variable button */

.e-180e0ca7 > .box > .variable-btn
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: var(--ot-height-s);
	height: var(--ot-height-s);
	padding: 0;
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: var(--ot-radius-s);
	color: var(--ot-text-3);
	cursor: pointer;
	outline: none;
	transition: background var(--ot-transition), color var(--ot-transition), border-color var(--ot-transition);
}

.e-180e0ca7 > .box > .variable-btn:hover
{
	background: var(--ot-brand-opacity);
	border-color: var(--ot-brand-opacity);
	color: var(--ot-brand);
}

.e-180e0ca7 > .box > .variable-btn > i
{
	font-size: 14px;
}

/* Box */

.e-180e0ca7 > .box
{
	position: relative;
	display: inline-flex;
	align-items: flex-start;
	gap: var(--ot-spacing-s);
	cursor: pointer;
	user-select: none;
	font-family: var(--ot-font-primary);
}

.e-180e0ca7 > .box.reverse
{
	flex-direction: row-reverse;
}

/* Hidden input */

.e-180e0ca7 > .box > input
{
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	margin: 0;
}

/* Track */

.e-180e0ca7 > .box > .track
{
	position: relative;
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	border-radius: 100px;
	background: var(--ot-bg-3);
	transition: background var(--ot-transition), border-color var(--ot-transition), box-shadow var(--ot-transition);
}

/* Thumb */

.e-180e0ca7 > .box > .track > .thumb
{
	position: absolute;
	top: 50%;
	border-radius: 50%;
	background: #fff;
	box-shadow: var(--ot-shadow-s);
	transform: translateY(-50%);
	transition: transform var(--ot-transition);
}

/* Active */

.e-180e0ca7 > .box.active > .track
{
	background: var(--ot-brand);
}

/* Press feedback */

.e-180e0ca7 > .box:active:not(.disabled) > .track > .thumb
{
	transform: translateY(-50%) scaleX(1.1);
}

/* Focus ring */

.e-180e0ca7 > .box > input:focus-visible ~ .track
{
	box-shadow: 0 0 0 1px var(--ot-brand-opacity);
}

/* Info */

.e-180e0ca7 > .box > .info
{
	display: inline-flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	padding-top: 1px;
}

.e-180e0ca7 > .box > .info > .label
{
	font-size: var(--ot-size-m);
	font-weight: 500;
	color: var(--ot-text-1);
	line-height: 1.3;
	transition: color var(--ot-transition);
}

.e-180e0ca7 > .box > .info > .desc
{
	font-size: var(--ot-size-s);
	color: var(--ot-text-3);
	line-height: 1.4;
	transition: color var(--ot-transition);
}

/* Disabled */

.e-180e0ca7 > .box.disabled
{
	cursor: not-allowed;
}

.e-180e0ca7 > .box.disabled > .track
{
	opacity: 0.45;
}

.e-180e0ca7 > .box.disabled > .info > .label,
.e-180e0ca7 > .box.disabled > .info > .desc
{
	color: var(--ot-text-3);
	opacity: 0.6;
}

/* ===== BACKGROUND ===== */

.e-180e0ca7 > .box.bg-1 > .track { background: var(--ot-bg-1); }
.e-180e0ca7 > .box.bg-2 > .track { background: var(--ot-bg-2); }
.e-180e0ca7 > .box.bg-3 > .track { background: var(--ot-bg-3); }
.e-180e0ca7 > .box.bg-4 > .track { background: var(--ot-bg-4); }

/* Border */

.e-180e0ca7 > .box.border.bg-1 > .track { border: 1px solid var(--ot-bg-1-border); }
.e-180e0ca7 > .box.border.bg-2 > .track { border: 1px solid var(--ot-bg-2-border); }
.e-180e0ca7 > .box.border.bg-3 > .track { border: 1px solid var(--ot-bg-3-border); }
.e-180e0ca7 > .box.border.bg-4 > .track { border: 1px solid var(--ot-bg-4-border); }

/* ===== COLOR (active state) ===== */

.e-180e0ca7 > .box.active.brand > .track { background: var(--ot-brand); border-color: var(--ot-brand); }
.e-180e0ca7 > .box.active.blue > .track { background: var(--ot-blue); border-color: var(--ot-blue); }
.e-180e0ca7 > .box.active.red > .track { background: var(--ot-red); border-color: var(--ot-red); }
.e-180e0ca7 > .box.active.orange > .track { background: var(--ot-orange); border-color: var(--ot-orange); }
.e-180e0ca7 > .box.active.green > .track { background: var(--ot-green); border-color: var(--ot-green); }

/* Focus per color */

.e-180e0ca7 > .box.blue > input:focus-visible ~ .track { box-shadow: 0 0 0 1px var(--ot-blue-opacity); }
.e-180e0ca7 > .box.red > input:focus-visible ~ .track { box-shadow: 0 0 0 1px var(--ot-red-opacity); }
.e-180e0ca7 > .box.orange > input:focus-visible ~ .track { box-shadow: 0 0 0 1px var(--ot-orange-opacity); }
.e-180e0ca7 > .box.green > input:focus-visible ~ .track { box-shadow: 0 0 0 1px var(--ot-green-opacity); }

/* ===== SIZE ===== */

/* Small */

.e-180e0ca7 > .box.size-s > .track
{
	width: 28px;
	height: 16px;
}

.e-180e0ca7 > .box.size-s > .track > .thumb
{
	width: 12px;
	height: 12px;
	left: 2px;
}

.e-180e0ca7 > .box.size-s.active > .track > .thumb
{
	transform: translate(12px, -50%);
}

.e-180e0ca7 > .box.size-s:active:not(.disabled) > .track > .thumb
{
	transform: translateY(-50%) scaleX(1.1);
}

.e-180e0ca7 > .box.size-s.active:active:not(.disabled) > .track > .thumb
{
	transform: translate(10px, -50%) scaleX(1.2);
}

.e-180e0ca7 > .box.size-s > .info > .label
{
	font-size: var(--ot-size-s);
}

.e-180e0ca7 > .box.size-s > .info > .desc
{
	font-size: 10.5px;
}

/* Medium */

.e-180e0ca7 > .box.size-m > .track
{
	width: 36px;
	height: 20px;
}

.e-180e0ca7 > .box.size-m > .track > .thumb
{
	width: 16px;
	height: 16px;
	left: 2px;
}

.e-180e0ca7 > .box.size-m.active > .track > .thumb
{
	transform: translate(16px, -50%);
}

.e-180e0ca7 > .box.size-m:active:not(.disabled) > .track > .thumb
{
	transform: translateY(-50%) scaleX(1.15);
}

.e-180e0ca7 > .box.size-m.active:active:not(.disabled) > .track > .thumb
{
	transform: translate(13px, -50%) scaleX(1.25);
}

/* Large */

.e-180e0ca7 > .box.size-l > .track
{
	width: 44px;
	height: 24px;
}

.e-180e0ca7 > .box.size-l > .track > .thumb
{
	width: 20px;
	height: 20px;
	left: 2px;
}

.e-180e0ca7 > .box.size-l.active > .track > .thumb
{
	transform: translate(20px, -50%);
}

.e-180e0ca7 > .box.size-l:active:not(.disabled) > .track > .thumb
{
	transform: translateY(-50%) scaleX(1.15);
}

.e-180e0ca7 > .box.size-l.active:active:not(.disabled) > .track > .thumb
{
	transform: translate(17px, -50%) scaleX(1.25);
}

.e-180e0ca7 > .box.size-l > .info > .label
{
	font-size: var(--ot-size-m);
}
/* ===== FORM TRANSFER ===== */

.e-1e66ff82
{
	display: contents;
}

/* Box */

.e-1e66ff82 > .box
{
	display: flex;
	align-items: stretch;
	gap: var(--ot-spacing-m);
	width: 100%;
	min-height: 320px;
}

/* ===== PANEL ===== */

.e-1e66ff82 > .box > .panel
{
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
	border-radius: var(--ot-radius-m);
	border: 1px solid transparent;
	overflow: hidden;
}

/* Head */

.e-1e66ff82 > .box > .panel > .head
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	flex-shrink: 0;
}

.e-1e66ff82 > .box > .panel > .head > .title
{
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
	font-weight: 700;
	color: var(--ot-text-2);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.e-1e66ff82 > .box > .panel > .head > .counter
{
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
	font-weight: 600;
	color: var(--ot-text-3);
}

/* Search */

.e-1e66ff82 > .box > .panel > .search
{
	padding: 0 var(--ot-spacing-s) var(--ot-spacing-s);
	flex-shrink: 0;
}

/* List */

.e-1e66ff82 > .box > .panel > .list
{
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 0 var(--ot-spacing-s) var(--ot-spacing-s);
	flex: 1;
	min-height: 0;
	max-height: 300px;
	overflow-y: auto;
}

/* Empty */

.e-1e66ff82 > .box > .panel > .list > .empty
{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--ot-spacing-s);
	flex: 1;
	min-height: 160px;
	color: var(--ot-text-3);
}

.e-1e66ff82 > .box > .panel > .list > .empty > i
{
	font-size: 28px;
	opacity: 0.6;
}

.e-1e66ff82 > .box > .panel > .list > .empty > span
{
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
}

/* Item */

.e-1e66ff82 > .box > .panel > .list > .item
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	width: 100%;
	padding: var(--ot-spacing-s);
	background: transparent;
	border: 1px solid transparent;
	border-radius: var(--ot-radius-s);
	text-align: left;
	cursor: pointer;
	outline: none;
	transition: background var(--ot-transition-fast), border-color var(--ot-transition-fast), color var(--ot-transition-fast);
}

.e-1e66ff82 > .box > .panel > .list > .item:hover:not(.disabled)
{
	background: var(--ot-bg-2);
}

.e-1e66ff82 > .box > .panel > .list > .item.disabled
{
	opacity: 0.4;
	cursor: not-allowed;
}

/* Item icon */

.e-1e66ff82 > .box > .panel > .list > .item > .item-icon
{
	flex-shrink: 0;
	font-size: 20px;
	color: var(--ot-text-2);
}


/* Item text */

.e-1e66ff82 > .box > .panel > .list > .item > .item-text
{
	display: flex;
	flex-direction: column;
	gap: 1px;
	flex: 1;
	min-width: 0;
}

.e-1e66ff82 > .box > .panel > .list > .item > .item-text > .item-label
{
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-m);
	font-weight: 500;
	color: var(--ot-text-1);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.e-1e66ff82 > .box > .panel > .list > .item > .item-text > .item-desc
{
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
	color: var(--ot-text-3);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Item move indicator (revealed on hover) */

.e-1e66ff82 > .box > .panel > .list > .item > .item-move
{
	flex-shrink: 0;
	font-size: 18px;
	color: var(--ot-text-3);
	opacity: 0;
	transition: opacity var(--ot-transition-fast), color var(--ot-transition-fast);
}

.e-1e66ff82 > .box > .panel > .list > .item:hover:not(.disabled) > .item-move
{
	opacity: 1;
	color: var(--ot-brand);
}

/* ===== CONTROLS ===== */

.e-1e66ff82 > .box > .controls
{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--ot-spacing-s);
	flex-shrink: 0;
	padding: var(--ot-spacing-s);
}

.e-1e66ff82 > .box > .controls > .control
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--ot-height-m);
	height: var(--ot-height-m);
	padding: 0;
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: var(--ot-radius-s);
	color: var(--ot-text-2);
	cursor: pointer;
	outline: none;
	transition: background var(--ot-transition-fast), color var(--ot-transition-fast), border-color var(--ot-transition-fast), transform var(--ot-transition-fast);
}

.e-1e66ff82 > .box > .controls > .control:hover:not(:disabled)
{
	background: var(--ot-bg-3);
	color: var(--ot-text-1);
	border-color: var(--ot-bg-3-border);
}

.e-1e66ff82 > .box > .controls > .control.accent:not(:disabled)
{
	background: var(--ot-brand);
	border-color: var(--ot-brand);
	color: #fff;
}

.e-1e66ff82 > .box > .controls > .control.accent:hover:not(:disabled)
{
	background: var(--ot-brand-hover);
	border-color: var(--ot-brand-hover);
	transform: translateX(2px);
}

.e-1e66ff82 > .box > .controls > .control.accent:nth-child(3):hover:not(:disabled)
{
	transform: translateX(-2px);
}

.e-1e66ff82 > .box > .controls > .control:disabled
{
	opacity: 0.35;
	cursor: not-allowed;
}

.e-1e66ff82 > .box > .controls > .control > i
{
	font-size: 18px;
}

/* ===== BACKGROUND ===== */

.e-1e66ff82 > .box.bg-1 > .panel { background: var(--ot-bg-1); }
.e-1e66ff82 > .box.bg-2 > .panel { background: var(--ot-bg-2); }
.e-1e66ff82 > .box.bg-3 > .panel { background: var(--ot-bg-3); }
.e-1e66ff82 > .box.bg-4 > .panel { background: var(--ot-bg-4); }

/* Border */

.e-1e66ff82 > .box.border.bg-1 > .panel { border-color: var(--ot-bg-1-border); }
.e-1e66ff82 > .box.border.bg-2 > .panel { border-color: var(--ot-bg-2-border); }
.e-1e66ff82 > .box.border.bg-3 > .panel { border-color: var(--ot-bg-3-border); }
.e-1e66ff82 > .box.border.bg-4 > .panel { border-color: var(--ot-bg-4-border); }

/* ===== SIZE ===== */

.e-1e66ff82 > .box.size-s > .panel > .head
{
	padding: var(--ot-spacing-x) var(--ot-spacing-s);
}

.e-1e66ff82 > .box.size-s > .panel > .list > .item
{
	padding: var(--ot-spacing-x) var(--ot-spacing-s);
	gap: var(--ot-spacing-x);
}

.e-1e66ff82 > .box.size-s > .panel > .list > .item > .item-icon
{
	font-size: 16px;
}

.e-1e66ff82 > .box.size-s > .controls > .control
{
	width: var(--ot-height-s);
	height: var(--ot-height-s);
}

.e-1e66ff82 > .box.size-s > .controls > .control > i
{
	font-size: 15px;
}

.e-1e66ff82 > .box.size-l > .panel > .head
{
	padding: var(--ot-spacing-m) var(--ot-spacing-l);
}

.e-1e66ff82 > .box.size-l > .panel > .list > .item
{
	padding: var(--ot-spacing-m) var(--ot-spacing-l);
	gap: var(--ot-spacing-m);
}

.e-1e66ff82 > .box.size-l > .panel > .list > .item > .item-icon
{
	font-size: 22px;
}

.e-1e66ff82 > .box.size-l > .controls > .control
{
	width: var(--ot-height-l);
	height: var(--ot-height-l);
}

.e-1e66ff82 > .box.size-l > .controls > .control > i
{
	font-size: 20px;
}

/* ===== DISABLED ===== */

.e-1e66ff82 > .box.disabled
{
	opacity: 0.65;
	pointer-events: none;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 767.98px)
{
	.e-1e66ff82 > .box
	{
		flex-direction: column;
	}

	.e-1e66ff82 > .box > .controls
	{
		flex-direction: row;
		width: 100%;
		justify-content: center;
	}
}
/* ===== FORM UPLOAD ===== */

.e-3f8bc2c8
{
	display: contents;
}

/* Box */

.e-3f8bc2c8 > .box
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
	width: 100%;
}

.e-3f8bc2c8 > .box.disabled
{
	opacity: 0.5;
	pointer-events: none;
}

/* ===== DROPZONE ===== */

.e-3f8bc2c8 > .box > .zone
{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 160px;
	padding: var(--ot-spacing-l);
	background: var(--ot-bg-2);
	border: 1.5px dashed var(--ot-bg-2-border);
	border-radius: var(--ot-radius-m);
	cursor: pointer;
	transition: background var(--ot-transition), border-color var(--ot-transition), transform var(--ot-transition);
}

.e-3f8bc2c8 > .box > .zone:hover
{
	background: var(--ot-bg-3);
	border-color: var(--ot-bg-3-border);
}

/* Hidden input */

.e-3f8bc2c8 > .box > .zone > .input
{
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* Prompt */

.e-3f8bc2c8 > .box > .zone > .prompt
{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--ot-spacing-s);
	text-align: center;
	cursor: pointer;
}

.e-3f8bc2c8 > .box > .zone > .prompt > .badge
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: var(--ot-radius-m);
	background: var(--ot-bg-1);
	border: 1px solid var(--ot-bg-2-border);
	color: var(--ot-text-2);
	transition: background var(--ot-transition), color var(--ot-transition), border-color var(--ot-transition), transform var(--ot-transition);
}

.e-3f8bc2c8 > .box > .zone > .prompt > .badge > i
{
	font-size: 24px;
}

.e-3f8bc2c8 > .box > .zone > .prompt > .badge > .spin
{
	font-size: 24px;
	animation: e-3f8bc2c8-spin 0.8s linear infinite;
}

@keyframes e-3f8bc2c8-spin
{
	to { transform: rotate(360deg); }
}

.e-3f8bc2c8 > .box > .zone > .prompt > .text
{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}

.e-3f8bc2c8 > .box > .zone > .prompt > .text > .label
{
	font-size: var(--ot-size-m);
	font-weight: 600;
	color: var(--ot-text-1);
}

.e-3f8bc2c8 > .box > .zone > .prompt > .text > .hint
{
	font-size: var(--ot-size-s);
	color: var(--ot-text-3);
}

/* Has files — zone becomes grid container */

.e-3f8bc2c8 > .box > .zone.compact
{
	min-height: auto;
	padding: var(--ot-spacing-s);
	align-items: stretch;
	justify-content: stretch;
}

/* ===== GRID (inside zone) ===== */

.e-3f8bc2c8 > .box > .zone > .grid
{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	gap: var(--ot-spacing-s);
	width: 100%;
}

/* Card */

.e-3f8bc2c8 > .box > .zone > .grid > .card
{
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: var(--ot-radius-s);
	overflow: hidden;
	background: var(--ot-bg-1);
	border: 1px solid var(--ot-bg-2-border);
	animation: e-3f8bc2c8-in 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes e-3f8bc2c8-in
{
	from { opacity: 0; transform: scale(0.95); }
	to { opacity: 1; transform: scale(1); }
}

/* Drag and drop reorder */

.e-3f8bc2c8 > .box > .zone > .grid > .card[draggable="true"]
{
	cursor: grab;
}

.e-3f8bc2c8 > .box > .zone > .grid > .card.dragging
{
	opacity: 0.4;
	cursor: grabbing;
}

.e-3f8bc2c8 > .box > .zone > .grid > .card.drag-over
{
	border-color: var(--ot-brand);
	background: var(--ot-brand-opacity);
}

/* Thumbnail */

.e-3f8bc2c8 > .box > .zone > .grid > .card > .thumb
{
	width: 100%;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: var(--ot-radius-s);
}

.e-3f8bc2c8 > .box > .zone > .grid > .card > .thumb > img
{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.e-3f8bc2c8 > .box > .zone > .grid > .card > .thumb.placeholder
{
	color: var(--ot-text-3);
}

.e-3f8bc2c8 > .box > .zone > .grid > .card > .thumb.placeholder > i
{
	font-size: 28px;
}

/* Remove button */

.e-3f8bc2c8 > .box > .zone > .grid > .card > .remove
{
	position: absolute;
	top: var(--ot-spacing-x);
	right: var(--ot-spacing-x);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	padding: 0;
	background: var(--ot-bg-1-opacity);
	backdrop-filter: var(--ot-blur);
	-webkit-backdrop-filter: var(--ot-blur);
	border: none;
	border-radius: var(--ot-radius-s);
	color: var(--ot-text-2);
	cursor: pointer;
	opacity: 0;
	transition: opacity var(--ot-transition-fast), background var(--ot-transition-fast), color var(--ot-transition-fast);
}

.e-3f8bc2c8 > .box > .zone > .grid > .card:hover > .remove
{
	opacity: 1;
}

.e-3f8bc2c8 > .box > .zone > .grid > .card > .remove:hover
{
	background: var(--ot-red-opacity);
	color: var(--ot-red);
}

.e-3f8bc2c8 > .box > .zone > .grid > .card > .remove > i
{
	font-size: 14px;
}

/* Add card */

.e-3f8bc2c8 > .box > .zone > .grid > .card.add
{
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1;
	border: 1.5px dashed var(--ot-bg-2-border);
	border-radius: var(--ot-radius-s);
	background: var(--ot-bg-1);
	cursor: pointer;
	color: var(--ot-text-3);
	transition: background var(--ot-transition), border-color var(--ot-transition), color var(--ot-transition);
}

.e-3f8bc2c8 > .box > .zone > .grid > .card.add:hover
{
	background: var(--ot-bg-3);
	border-color: var(--ot-bg-3-border);
	color: var(--ot-text-1);
}

.e-3f8bc2c8 > .box > .zone > .grid > .card.add.loading
{
	cursor: default;
	border-style: solid;
}

.e-3f8bc2c8 > .box > .zone > .grid > .card.add .spin
{
	animation: e-3f8bc2c8-spin 0.8s linear infinite;
}

.e-3f8bc2c8 > .box > .zone > .grid > .card.add > i
{
	font-size: 24px;
}

/* ===== FOOTER ===== */

.e-3f8bc2c8 > .box > .footer
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--ot-spacing-x) var(--ot-spacing-s);
}

.e-3f8bc2c8 > .box > .footer > .count
{
	font-size: var(--ot-size-s);
	font-weight: 700;
	color: var(--ot-text-3);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.e-3f8bc2c8 > .box > .footer > .clear
{
	display: inline-flex;
	align-items: center;
	gap: var(--ot-spacing-x);
	padding: var(--ot-spacing-x) var(--ot-spacing-s);
	background: transparent;
	border: none;
	border-radius: var(--ot-radius-s);
	font-size: var(--ot-size-s);
	font-weight: 500;
	color: var(--ot-text-3);
	cursor: pointer;
	transition: background var(--ot-transition-fast), color var(--ot-transition-fast);
}

.e-3f8bc2c8 > .box > .footer > .clear:hover
{
	background: var(--ot-red-opacity);
	color: var(--ot-red);
}

.e-3f8bc2c8 > .box > .footer > .clear > i
{
	font-size: 14px;
}


/* ===== BACKGROUND ===== */

.e-3f8bc2c8 > .box.bg-1 > .zone { background: var(--ot-bg-1); border-color: var(--ot-bg-1-border); }
.e-3f8bc2c8 > .box.bg-1 > .zone:hover { background: var(--ot-bg-2); }
.e-3f8bc2c8 > .box.bg-1 > .zone > .prompt > .badge { background: var(--ot-bg-2); }

.e-3f8bc2c8 > .box.bg-2 > .zone { background: var(--ot-bg-2); border-color: var(--ot-bg-2-border); }
.e-3f8bc2c8 > .box.bg-2 > .zone:hover { background: var(--ot-bg-3); border-color: var(--ot-bg-3-border); }

.e-3f8bc2c8 > .box.bg-3 > .zone { background: var(--ot-bg-3); border-color: var(--ot-bg-3-border); }
.e-3f8bc2c8 > .box.bg-3 > .zone:hover { background: var(--ot-bg-4); border-color: var(--ot-bg-4-border); }

.e-3f8bc2c8 > .box.bg-4 > .zone { background: var(--ot-bg-4); border-color: var(--ot-bg-4-border); }

/* ===== SIZE ===== */

.e-3f8bc2c8 > .box.size-s > .zone
{
	min-height: 100px;
	padding: var(--ot-spacing-m);
}

.e-3f8bc2c8 > .box.size-s > .zone > .prompt > .badge
{
	width: 36px;
	height: 36px;
}

.e-3f8bc2c8 > .box.size-s > .zone > .prompt > .badge > i
{
	font-size: 18px;
}

.e-3f8bc2c8 > .box.size-s > .zone > .grid
{
	grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
	gap: var(--ot-spacing-x);
}

.e-3f8bc2c8 > .box.size-l > .zone
{
	min-height: 220px;
	padding: var(--ot-spacing-l);
}

.e-3f8bc2c8 > .box.size-l > .zone > .prompt > .badge
{
	width: 60px;
	height: 60px;
}

.e-3f8bc2c8 > .box.size-l > .zone > .prompt > .badge > i
{
	font-size: 30px;
}

.e-3f8bc2c8 > .box.size-l > .zone > .grid
{
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}
/* ===== FORM UPLOAD INPUT ===== */

.e-37c1b86d
{
	display: contents;
}

/* Box */

.e-37c1b86d > .box
{
	display: flex;
	flex-direction: column;
	width: 100%;
}

.e-37c1b86d > .box.disabled
{
	opacity: 0.5;
	pointer-events: none;
}

/* Field */

.e-37c1b86d > .box > .field
{
	display: flex;
	align-items: center;
	width: 100%;
	height: var(--ot-height-m);
	padding: 0 var(--ot-spacing-m);
	border: 1px solid transparent;
	border-radius: var(--ot-radius-m);
	transition: background var(--ot-transition), border-color var(--ot-transition), box-shadow var(--ot-transition);
}

.e-37c1b86d > .box > .field:focus-within
{
	box-shadow: 0 0 0 1px var(--ot-brand-opacity);
}

/* Preview */

.e-37c1b86d > .box > .field > .preview
{
	flex-shrink: 0;
	width: var(--ot-height-s);
	height: var(--ot-height-s);
	border-radius: var(--ot-radius-s);
	overflow: hidden;
	margin-right: var(--ot-spacing-s);
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ot-bg-1);
}

.e-37c1b86d > .box > .field > .preview > img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.e-37c1b86d > .box > .field > .preview.placeholder
{
	color: var(--ot-text-3);
}

.e-37c1b86d > .box > .field > .preview.placeholder > i
{
	font-size: 16px;
}

/* Icon */

.e-37c1b86d > .box > .field > .icon
{
	flex-shrink: 0;
	font-size: 18px;
	color: var(--ot-text-3);
	margin-right: var(--ot-spacing-s);
	transition: color var(--ot-transition);
}

.e-37c1b86d > .box > .field:focus-within > .icon
{
	color: var(--ot-text-1);
}

.e-37c1b86d > .box > .field > .icon.spin
{
	margin-right: 0;
	margin-left: var(--ot-spacing-s);
	animation: e-37c1b86d-spin 0.8s linear infinite;
}

@keyframes e-37c1b86d-spin
{
	to { transform: rotate(360deg); }
}

/* Input */

.e-37c1b86d > .box > .field > .input
{
	flex: 1;
	min-width: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	background: transparent;
	border: none;
	outline: none;
	color: var(--ot-text-1);
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-m);
	font-weight: 500;
}

.e-37c1b86d > .box > .field > .input::placeholder
{
	color: var(--ot-text-3);
	font-weight: 400;
}

/* Action buttons */

.e-37c1b86d > .box > .field > .action
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	padding: 0;
	margin-left: var(--ot-spacing-x);
	border: none;
	background: transparent;
	border-radius: var(--ot-radius-s);
	color: var(--ot-text-3);
	cursor: pointer;
	outline: none;
	transition: background var(--ot-transition), color var(--ot-transition);
}

.e-37c1b86d > .box > .field > .action:hover
{
	background: var(--ot-bg-3);
	color: var(--ot-text-1);
}

.e-37c1b86d > .box > .field > .action > i
{
	font-size: 14px;
}

/* Hidden file input */

.e-37c1b86d > .box > .picker
{
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* ===== BACKGROUNDS ===== */

.e-37c1b86d > .box.bg-1 > .field { background: var(--ot-bg-1); border-color: var(--ot-bg-1-border); }
.e-37c1b86d > .box.bg-2 > .field { background: var(--ot-bg-2); border-color: var(--ot-bg-2-border); }
.e-37c1b86d > .box.bg-3 > .field { background: var(--ot-bg-3); border-color: var(--ot-bg-3-border); }
.e-37c1b86d > .box.bg-4 > .field { background: var(--ot-bg-4); border-color: var(--ot-bg-4-border); }

.e-37c1b86d > .box.bg-1 > .field:hover:not(:focus-within) { background: var(--ot-bg-1-hover); }
.e-37c1b86d > .box.bg-2 > .field:hover:not(:focus-within) { background: var(--ot-bg-2-hover); }
.e-37c1b86d > .box.bg-3 > .field:hover:not(:focus-within) { background: var(--ot-bg-3-hover); }
.e-37c1b86d > .box.bg-4 > .field:hover:not(:focus-within) { background: var(--ot-bg-4-hover); }

/* Border */

.e-37c1b86d > .box.border > .field { border-color: var(--ot-bg-2-border); }
.e-37c1b86d > .box.bg-1.border > .field { border-color: var(--ot-bg-1-border); }
.e-37c1b86d > .box.bg-3.border > .field { border-color: var(--ot-bg-3-border); }
.e-37c1b86d > .box.bg-4.border > .field { border-color: var(--ot-bg-4-border); }

/* Border bottom */

.e-37c1b86d > .box.border-bottom > .field
{
	border-radius: 0;
	border-color: transparent;
	border-bottom-color: var(--ot-bg-2-border);
}

/* ===== SIZES ===== */

.e-37c1b86d > .box.size-s > .field
{
	height: var(--ot-height-s);
	padding: 0 var(--ot-spacing-s);
}

.e-37c1b86d > .box.size-s > .field > .preview
{
	width: 20px;
	height: 20px;
}

.e-37c1b86d > .box.size-s > .field > .icon { font-size: 15px; }
.e-37c1b86d > .box.size-s > .field > .input { font-size: var(--ot-size-s); }
.e-37c1b86d > .box.size-s > .field > .action { width: 18px; height: 18px; }
.e-37c1b86d > .box.size-s > .field > .action > i { font-size: 13px; }

.e-37c1b86d > .box.size-l > .field
{
	height: var(--ot-height-l);
	padding: 0 var(--ot-spacing-l);
}

.e-37c1b86d > .box.size-l > .field > .preview
{
	width: var(--ot-height-m);
	height: var(--ot-height-m);
}

.e-37c1b86d > .box.size-l > .field > .icon { font-size: 20px; }
.e-37c1b86d > .box.size-l > .field > .action { width: 26px; height: 26px; }
.e-37c1b86d > .box.size-l > .field > .action > i { font-size: 16px; }
/* Root */

.e-18fbce40
{
	display: block;
	width: 100%;
}

/* Holder */

.e-18fbce40 > .holder
{
	position: relative;
	width: 100%;
	border-radius: var(--ot-radius-l);
	overflow: hidden;
	background-color: #1a1a20;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
}

/* Overlay */

.e-18fbce40 > .holder > .overlay
{
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.e-18fbce40 > .holder.image > .overlay
{
	background: linear-gradient(180deg, rgba(20, 20, 30, 0.05) 0%, rgba(20, 20, 30, 0.55) 100%);
}

.e-18fbce40 > .holder.dark
{
	background: linear-gradient(160deg, #1a1a20 0%, #2c2632 100%);
}

.e-18fbce40 > .holder.dark > .overlay
{
	background: radial-gradient(circle at 100% 0%, rgba(214, 138, 58, 0.35) 0%, transparent 50%);
}

/* Content */

.e-18fbce40 > .holder > .content
{
	position: relative;
	width: 100%;
	color: white;
	display: flex;
	flex-direction: column;
}

/* Icon (dark variant) */

.e-18fbce40 > .holder > .content > .icon
{
	width: 42px;
	height: 42px;
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--ot-spacing-m);
	flex-shrink: 0;
}

.e-18fbce40 > .holder > .content > .icon > i
{
	color: #ffd9a8;
	font-size: 22px;
}

/* Eyebrow */

.e-18fbce40 > .holder > .content > .eyebrow
{
	display: inline-flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	padding: 5px 12px 5px 7px;
	background: rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 100px;
	font-size: 11.5px;
	font-weight: 500;
	color: white;
	margin-bottom: var(--ot-spacing-m);
	width: fit-content;
	font-family: var(--ot-font-primary);
}

.e-18fbce40 > .holder > .content > .eyebrow > .dot
{
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
}

.e-18fbce40 > .holder > .content > .eyebrow > .dot > i
{
	font-size: 11px;
	color: var(--ot-brand);
}

/* Title */

.e-18fbce40 > .holder > .content > .title
{
	font-family: var(--ot-font-secondary);
	font-weight: 400;
	letter-spacing: -0.025em;
	color: white;
	font-variation-settings: 'opsz' 144, 'wght' 400;
	margin: 0 0 var(--ot-spacing-s);
	max-width: 720px;
}

.e-18fbce40 > .holder > .content > .title em
{
	font-style: italic;
	color: #ffd9a8;
	font-weight: 400;
}

/* Description */

.e-18fbce40 > .holder > .content > .description
{
	font-size: 14.5px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.85);
	max-width: 540px;
	margin: 0;
	font-family: var(--ot-font-primary);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Bottom slot */

.e-18fbce40 > .holder > .content > .bottom:not(:empty)
{
	display: flex;
	align-items: center;
	margin-top: var(--ot-spacing-l);
}

.e-18fbce40 > .holder > .content > .title
{
	line-height: 1.0;
}

.e-18fbce40 > .holder.dark
{
	align-items: flex-start;
}

.e-18fbce40 > .holder.dark > .content > .title
{
	font-size: 26px;
}

/* Size variants */

.e-18fbce40 > .holder.size-s > .content
{
	padding: 32px 24px;
}

.e-18fbce40 > .holder.size-s > .content > .title
{
	font-size: 26px;
}

.e-18fbce40 > .holder.size-s > .content > .description
{
	font-size: 13px;
}

.e-18fbce40 > .holder.size-m > .content
{
	padding: 48px 36px;
}

.e-18fbce40 > .holder.size-m > .content > .title
{
	font-size: 36px;
}

.e-18fbce40 > .holder.size-l > .content
{
	padding: 44px 48px;
}

.e-18fbce40 > .holder.size-l > .content > .title
{
	font-size: 52px;
}
/* ===== GLOBAL CODE ===== */

.e-4a15b201
{
	display: contents;

	--code-background: var(--ot-bg-2);
	--code-border: var(--ot-bg-2-border);
	--code-overlay: var(--ot-bg-1-opacity);
	--code-hover: var(--ot-bg-4);
	--code-text: var(--ot-text-1);
	--code-muted: var(--ot-text-3);

	--code-keyword: #cf222e;
	--code-string: #0a3069;
	--code-number: #953800;
	--code-comment: #6e7781;
	--code-function: #8250df;
	--code-tag: #116329;
	--code-attribute: #0550ae;
}

/* Box */

.e-4a15b201 > .box
{
	display: flex;
	flex-direction: column;
	width: 100%;
	background: var(--code-background);
	border: 1px solid var(--code-border);
	border-radius: var(--ot-radius-m);
	overflow: hidden;
}

.e-4a15b201 > .box.bg-1 { --code-background: var(--ot-bg-1); --code-border: var(--ot-bg-1-border); }
.e-4a15b201 > .box.bg-2 { --code-background: var(--ot-bg-2); --code-border: var(--ot-bg-2-border); }
.e-4a15b201 > .box.bg-3 { --code-background: var(--ot-bg-3); --code-border: var(--ot-bg-3-border); }
.e-4a15b201 > .box.bg-4 { --code-background: var(--ot-bg-4); --code-border: var(--ot-bg-4-border); }

/* Head */

.e-4a15b201 > .box > .head
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	background: var(--code-overlay);
	border-bottom: 1px solid var(--code-border);
}

/* Dots */

.e-4a15b201 > .box > .head > .dots
{
	display: flex;
	gap: 6px;
	flex-shrink: 0;
}

.e-4a15b201 > .box > .head > .dots > span
{
	width: 11px;
	height: 11px;
	border-radius: 50%;
}

.e-4a15b201 > .box > .head > .dots > span:nth-child(1) { background: #ff5f56; }
.e-4a15b201 > .box > .head > .dots > span:nth-child(2) { background: #ffbd2e; }
.e-4a15b201 > .box > .head > .dots > span:nth-child(3) { background: #27c93f; }

/* Filename / Language */

.e-4a15b201 > .box > .head > .filename,
.e-4a15b201 > .box > .head > .language
{
	flex: 1;
	text-align: center;
	font-family: ui-monospace, 'SF Mono', Menlo, monospace;
	font-size: 12px;
	font-weight: 500;
	color: var(--code-muted);
}

.e-4a15b201 > .box > .head > .language
{
	text-transform: uppercase;
	font-size: 10.5px;
	letter-spacing: 0.06em;
}

/* Copy */

.e-4a15b201 > .box > .head > .copy
{
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 10px;
	background: var(--ot-bg-3);
	border: 1px solid var(--ot-bg-3-border);
	border-radius: 100px;
	color: var(--ot-text-2);
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
	font-weight: 600;
	cursor: pointer;
	flex-shrink: 0;
	transition: background var(--ot-transition), color var(--ot-transition), border-color var(--ot-transition);
}

.e-4a15b201 > .box > .head > .copy:hover
{
	background: var(--code-hover);
	color: var(--code-text);
}

.e-4a15b201 > .box > .head > .copy > i
{
	font-size: 13px;
}

.e-4a15b201 > .box > .head > .copy.copied
{
	background: var(--ot-green-opacity);
	border-color: var(--ot-green-border);
	color: var(--ot-green);
}

/* Body */

.e-4a15b201 > .box > .body
{
	margin: 0;
	padding: var(--ot-spacing-m);
	overflow-x: auto;
	font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
	font-size: var(--ot-size-m);
	line-height: 1.65;
	color: var(--code-text);
	tab-size: 4;
}

.e-4a15b201 > .box > .body > code
{
	font-family: inherit;
	font-size: inherit;
	background: none;
	padding: 0;
	border: none;
	color: inherit;
	display: block;
	white-space: pre;
}

/* Scrollbar */

.e-4a15b201 > .box > .body::-webkit-scrollbar { height: 8px; }
.e-4a15b201 > .box > .body::-webkit-scrollbar-track { background: transparent; }
.e-4a15b201 > .box > .body::-webkit-scrollbar-thumb { background: var(--ot-bg-4); border-radius: 100px; }
.e-4a15b201 > .box > .body::-webkit-scrollbar-thumb:hover { background: var(--ot-bg-4-hover); }

/* ===== LINE NUMBERS ===== */

.e-4a15b201 .numbered
{
	display: flex;
	flex-direction: column;
}

.e-4a15b201 .line
{
	display: flex;
	padding: 0 var(--ot-spacing-m) 0 0;
	margin: 0 calc(var(--ot-spacing-m) * -1);
	transition: background var(--ot-transition-fast);
}

.e-4a15b201 .line > .number
{
	width: 40px;
	padding-right: 14px;
	text-align: right;
	color: var(--code-muted);
	user-select: none;
	flex-shrink: 0;
	border-right: 1px solid var(--code-border);
	margin-right: 14px;
}

.e-4a15b201 .line > .code
{
	flex: 1;
	min-width: 0;
}

/* Highlighted line */

.e-4a15b201 .line.highlighted
{
	background: var(--ot-brand-opacity);
	box-shadow: inset 2px 0 0 var(--ot-brand);
}

.e-4a15b201 .line.highlighted > .number
{
	color: var(--ot-brand);
}

/* Plain (no numbers) */

.e-4a15b201 .plain
{
	display: block;
	white-space: pre;
}

/* ===== SYNTAX TOKENS ===== */

.e-4a15b201 .t-keyword { color: var(--code-keyword); font-weight: 500; }
.e-4a15b201 .t-string { color: var(--code-string); }
.e-4a15b201 .t-number { color: var(--code-number); }
.e-4a15b201 .t-comment { color: var(--code-comment); font-style: italic; }
.e-4a15b201 .t-fn { color: var(--code-function); }
.e-4a15b201 .t-tag { color: var(--code-tag); }
.e-4a15b201 .t-attr { color: var(--code-attribute); }
.e-4a15b201 .t-selector { color: var(--code-tag); }
.e-4a15b201 .t-prop { color: var(--code-attribute); }

/* ===== BORDER ===== */

.e-4a15b201 > .box.border { border-color: var(--code-border); }

/* ===== SIZE ===== */

.e-4a15b201 > .box.size-s > .head
{
	padding: var(--ot-spacing-x) var(--ot-spacing-s);
}

.e-4a15b201 > .box.size-s > .body
{
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	font-size: 12px;
	line-height: 1.55;
}

.e-4a15b201 > .box.size-l > .head
{
	padding: var(--ot-spacing-m) var(--ot-spacing-l);
}

.e-4a15b201 > .box.size-l > .body
{
	padding: var(--ot-spacing-l);
	font-size: 14px;
	line-height: 1.75;
}
/* ===== GLOBAL GALLERY ===== */

.e-ee00abe
{
	display: block;
	width: 100%;
}

/* Box */

.e-ee00abe > .box
{
	position: relative;
	width: 100%;
	overflow: hidden;
}

.e-ee00abe > .box.rounded
{
	border-radius: var(--ot-radius-l);
}

/* ===== BENTO LAYOUT ===== */

.e-ee00abe > .box > .bento
{
	display: grid;
	grid-template-columns: 2fr 1fr;
	height: 480px;
	width: 100%;
}

.e-ee00abe > .box.compact > .bento
{
	height: 360px;
}

.e-ee00abe > .box.tall > .bento
{
	height: 560px;
}

/* Bento main */

.e-ee00abe > .box > .bento > .bento-main
{
	overflow: hidden;
	cursor: pointer;
}

.e-ee00abe > .box > .bento > .bento-main > img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: filter var(--ot-transition-slow), transform var(--ot-transition-slow);
}

.e-ee00abe > .box > .bento > .bento-main:hover > img
{
	filter: brightness(0.92);
	transform: scale(1.02);
}

/* Bento side */

.e-ee00abe > .box > .bento > .bento-side
{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
}

.e-ee00abe > .box > .bento > .bento-side > .bento-thumb
{
	overflow: hidden;
	cursor: pointer;
}

.e-ee00abe > .box > .bento > .bento-side > .bento-thumb > img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: filter var(--ot-transition-slow), transform var(--ot-transition-slow);
}

.e-ee00abe > .box > .bento > .bento-side > .bento-thumb:hover > img
{
	filter: brightness(0.88);
	transform: scale(1.03);
}

/* Show all button */

.e-ee00abe > .box > .bento > .show-all
{
	position: absolute;
	bottom: 18px;
	right: 18px;
	display: inline-flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	padding: 10px 20px;
	background: var(--ot-text-1);
	border: none;
	border-radius: 100px;
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
	font-weight: 600;
	color: var(--ot-bg-1);
	cursor: pointer;
	box-shadow: var(--ot-shadow-m);
	transition: transform var(--ot-transition), box-shadow var(--ot-transition);
	z-index: 1;
}

.e-ee00abe > .box > .bento > .show-all:hover
{
	transform: translateY(-2px);
	box-shadow: var(--ot-shadow-l);
}

.e-ee00abe > .box > .bento > .show-all > i
{
	font-size: 16px;
}

/* ===== GRID LAYOUT ===== */

.e-ee00abe > .box > .grid
{
	display: grid;
	width: 100%;
}

.e-ee00abe > .box > .grid > .grid-item
{
	overflow: hidden;
	cursor: pointer;
	border-radius: var(--ot-radius-m);
}

.e-ee00abe > .box > .grid > .grid-item > img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: filter var(--ot-transition-slow), transform var(--ot-transition-slow);
}

.e-ee00abe > .box > .grid > .grid-item:hover > img
{
	filter: brightness(0.92);
	transform: scale(1.04);
}

/* ===== CAROUSEL LAYOUT ===== */

.e-ee00abe > .box > .carousel
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
	width: 100%;
}

/* Carousel stage */

.e-ee00abe > .box > .carousel > .carousel-stage
{
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: var(--ot-radius-m);
	background: var(--ot-bg-2);
}

.e-ee00abe > .box > .carousel > .carousel-stage > img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: zoom-in;
	animation: e-ee00abe-fade var(--ot-transition-slow);
}

@keyframes e-ee00abe-fade
{
	from { opacity: 0; }
	to { opacity: 1; }
}

/* Carousel nav */

.e-ee00abe > .box > .carousel > .carousel-stage > .carousel-nav
{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: var(--ot-bg-1-opacity);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: 50%;
	color: var(--ot-text-1);
	cursor: pointer;
	backdrop-filter: var(--ot-blur);
	-webkit-backdrop-filter: var(--ot-blur);
	box-shadow: var(--ot-shadow-m);
	transition: transform var(--ot-transition), box-shadow var(--ot-transition);
	z-index: 1;
}

.e-ee00abe > .box > .carousel > .carousel-stage > .prev { left: 16px; }
.e-ee00abe > .box > .carousel > .carousel-stage > .next { right: 16px; }

.e-ee00abe > .box > .carousel > .carousel-stage > .carousel-nav:hover
{
	box-shadow: var(--ot-shadow-l);
}

.e-ee00abe > .box > .carousel > .carousel-stage > .prev:hover { transform: translateY(-50%) translateX(-2px); }
.e-ee00abe > .box > .carousel > .carousel-stage > .next:hover { transform: translateY(-50%) translateX(2px); }

.e-ee00abe > .box > .carousel > .carousel-stage > .carousel-nav > i
{
	font-size: 22px;
}

/* Carousel counter */

.e-ee00abe > .box > .carousel > .carousel-stage > .carousel-counter
{
	position: absolute;
	bottom: 16px;
	right: 16px;
	padding: 6px 12px;
	background: var(--ot-bg-1-opacity);
	backdrop-filter: var(--ot-blur);
	-webkit-backdrop-filter: var(--ot-blur);
	border-radius: 100px;
	color: var(--ot-text-1);
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
	font-weight: 700;
	letter-spacing: 0.04em;
}

/* Carousel thumbs */

.e-ee00abe > .box > .carousel > .carousel-thumbs
{
	display: flex;
	gap: var(--ot-spacing-x);
	overflow-x: auto;
	padding: 2px 0;
	scrollbar-width: none;
}

.e-ee00abe > .box > .carousel > .carousel-thumbs::-webkit-scrollbar
{
	display: none;
}

.e-ee00abe > .box > .carousel > .carousel-thumbs > .carousel-thumb
{
	flex-shrink: 0;
	width: 80px;
	height: 56px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: var(--ot-radius-s);
	background: transparent;
	overflow: hidden;
	cursor: pointer;
	transition: border-color var(--ot-transition), opacity var(--ot-transition);
	opacity: 0.65;
}

.e-ee00abe > .box > .carousel > .carousel-thumbs > .carousel-thumb:hover
{
	opacity: 1;
}

.e-ee00abe > .box > .carousel > .carousel-thumbs > .carousel-thumb.active
{
	opacity: 1;
	border-color: var(--ot-brand);
}

.e-ee00abe > .box > .carousel > .carousel-thumbs > .carousel-thumb > img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ===== LIGHTBOX ===== */

.lightbox-box
{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100vh;
	padding: 80px 80px 140px;
	box-sizing: border-box;
}

/* Lightbox close */

.lightbox-close
{
	position: absolute;
	top: 20px;
	right: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: var(--ot-blur);
	-webkit-backdrop-filter: var(--ot-blur);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	transition: background var(--ot-transition), transform var(--ot-transition);
	z-index: 10;
}

.lightbox-close:hover
{
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(90deg);
}

.lightbox-close > i
{
	font-size: 22px;
}

/* Lightbox counter */

.lightbox-counter
{
	position: absolute;
	top: 28px;
	left: 50%;
	transform: translateX(-50%);
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: var(--ot-blur);
	-webkit-backdrop-filter: var(--ot-blur);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 100px;
	color: #fff;
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
	font-weight: 700;
	letter-spacing: 0.04em;
	z-index: 10;
}

/* Lightbox nav */

.lightbox-nav
{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: var(--ot-blur);
	-webkit-backdrop-filter: var(--ot-blur);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	transition: background var(--ot-transition), transform var(--ot-transition);
	z-index: 10;
}

.lightbox-nav.prev { left: 32px; }
.lightbox-nav.next { right: 32px; }

.lightbox-nav:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox-nav.prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox-nav.next:hover { transform: translateY(-50%) translateX(3px); }

.lightbox-nav > i
{
	font-size: 26px;
}

/* Lightbox stage */

.lightbox-stage
{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--ot-spacing-m);
	max-width: 100%;
	max-height: 100%;
}

.lightbox-stage > img
{
	max-width: 100%;
	max-height: calc(100vh - 220px);
	object-fit: contain;
	border-radius: var(--ot-radius-m);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	animation: e-ee00abe-lightbox-in var(--ot-transition-slow);
}

@keyframes e-ee00abe-lightbox-in
{
	from { opacity: 0; transform: scale(0.96); }
	to { opacity: 1; transform: scale(1); }
}

/* Lightbox caption */

.lightbox-caption
{
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-m);
	color: rgba(255, 255, 255, 0.85);
	text-align: center;
	max-width: 600px;
	line-height: 1.5;
}

/* Lightbox thumbs */

.lightbox-thumbs
{
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	max-width: calc(100vw - 64px);
	overflow-x: auto;
	scrollbar-width: none;
	z-index: 10;
}

.lightbox-thumbs::-webkit-scrollbar
{
	display: none;
}

.lightbox-thumbs > .lightbox-thumb
{
	flex-shrink: 0;
	width: 56px;
	height: 44px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: var(--ot-radius-s);
	background: transparent;
	overflow: hidden;
	cursor: pointer;
	transition: border-color var(--ot-transition), opacity var(--ot-transition);
	opacity: 0.55;
}

.lightbox-thumbs > .lightbox-thumb:hover
{
	opacity: 0.9;
}

.lightbox-thumbs > .lightbox-thumb.active
{
	opacity: 1;
	border-color: #fff;
}

.lightbox-thumbs > .lightbox-thumb > img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 767.98px)
{
	.e-ee00abe > .box > .bento
	{
		height: 320px;
	}

	.e-ee00abe > .box > .bento > .bento-side
	{
		display: none;
	}

	.e-ee00abe > .box > .carousel > .carousel-thumbs > .carousel-thumb
	{
		width: 60px;
		height: 42px;
	}

	.lightbox-box
	{
		padding: 60px 16px 120px;
	}

	.lightbox-nav.prev { left: 12px; }
	.lightbox-nav.next { right: 12px; }

	.lightbox-nav
	{
		width: 40px;
		height: 40px;
	}

	.lightbox-nav > i
	{
		font-size: 20px;
	}
}
/* ===== GLOBAL HEADING ===== */

.e-49fb116e
{
	display: contents;
}

/* Box */

.e-49fb116e > .box
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-l);
	width: 100%;
}

.e-49fb116e > .box.border
{
	padding-bottom: var(--ot-spacing-m);
	border-bottom: 1px solid var(--ot-bg-2-border);
}

/* Top */

.e-49fb116e > .box > .top
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-m);
}

/* Icon */

.e-49fb116e > .box > .top > .icon
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: var(--ot-radius-m);
	background: var(--ot-brand-opacity);
	color: var(--ot-brand);
	flex-shrink: 0;
}

.e-49fb116e > .box > .top > .icon > i
{
	font-size: 26px;
}

/* Text */

.e-49fb116e > .box > .top > .text
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
	min-width: 0;
	flex: 1;
}

/* Eyebrow */

.e-49fb116e > .box > .top > .text > .eyebrow
{
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--ot-brand);
}

/* Title */

.e-49fb116e > .box > .top > .text > .title
{
	margin: 0;
	font-family: var(--ot-font-secondary);
	font-weight: 500;
	letter-spacing: -0.022em;
	color: var(--ot-text-1);
	font-variation-settings: 'opsz' 144;
	line-height: 1.05;
}

.e-49fb116e > .box > .top > .text > .title em
{
	font-style: italic;
	color: var(--ot-brand);
	font-weight: 500;
}

/* Description */

.e-49fb116e > .box > .top > .text > .description
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-size: 14px;
	line-height: 1.55;
	color: var(--ot-text-2);
	max-width: 560px;
}

/* Right */

.e-49fb116e > .box > .top > .right
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	flex-shrink: 0;
}

.e-49fb116e > .box > .top > .right:empty
{
	display: none;
}

/* Bottom */

.e-49fb116e > .box > .bottom
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	flex-wrap: wrap;
}

/* ===== ALIGN ===== */

.e-49fb116e > .box.center > .top
{
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.e-49fb116e > .box.center > .top > .text
{
	align-items: center;
	flex: 0 1 auto;
}

.e-49fb116e > .box.center > .top > .text > .description
{
	max-width: 540px;
}

.e-49fb116e > .box.center > .bottom
{
	justify-content: center;
}

.e-49fb116e > .box.right > .top
{
	flex-direction: row-reverse;
	text-align: right;
}

.e-49fb116e > .box.right > .top > .text
{
	align-items: flex-end;
}

.e-49fb116e > .box.right > .bottom
{
	justify-content: flex-end;
}

/* ===== SIZE ===== */

/* Small */

.e-49fb116e > .box.size-s > .top > .icon
{
	width: 36px;
	height: 36px;
}

.e-49fb116e > .box.size-s > .top > .icon > i
{
	font-size: 20px;
}

.e-49fb116e > .box.size-s > .top > .text > .title
{
	font-size: var(--ot-size-l);
	line-height: 1.15;
}

.e-49fb116e > .box.size-s > .top > .text > .description
{
	font-size: var(--ot-size-m);
}

/* Medium */

.e-49fb116e > .box.size-m > .top > .text > .title
{
	font-size: 32px;
	line-height: 1.05;
}

.e-49fb116e > .box.size-m > .top > .text > .description
{
	font-size: 14px;
}

/* Large */

.e-49fb116e > .box.size-l > .top > .icon
{
	width: 60px;
	height: 60px;
}

.e-49fb116e > .box.size-l > .top > .icon > i
{
	font-size: 32px;
}

.e-49fb116e > .box.size-l > .top > .text > .title
{
	font-size: 48px;
	line-height: 1;
}

.e-49fb116e > .box.size-l > .top > .text > .description
{
	font-size: 16px;
	max-width: 640px;
}
/* ===== GLOBAL MARKDOWN ===== */

.e-4696d703
{
	display: contents;
}

/* Box */

.e-4696d703 > .box
{
	position: relative;
	width: 100%;
	overflow: hidden;
}

/* Body */

.e-4696d703 > .box > .body
{
	overflow: hidden;
	transition: max-height var(--ot-transition-slow);
}

.e-4696d703 > .box.expanded > .body
{
	max-height: none !important;
}

/* Prose */

.e-4696d703 .prose
{
	font-family: var(--ot-font-primary);
	font-size: 14px;
	line-height: 1.75;
	color: var(--ot-text-1);
}

.e-4696d703 .prose > .segment + .segment
{
	margin-top: 1.5em;
}

.e-4696d703 .prose > .segment:first-child .line:first-child > *,
.e-4696d703 .prose > .segment:first-child > *:first-child,
.e-4696d703 .prose > *:first-child
{
	margin-top: 0;
	padding-top: 0;
}

.e-4696d703 .prose > .segment:last-child .line:last-child > *,
.e-4696d703 .prose > .segment:last-child > *:last-child,
.e-4696d703 .prose > *:last-child
{
	margin-bottom: 0;
	padding-bottom: 0;
}

/* ===== HEADINGS ===== */

.e-4696d703 .prose :is(h1, h2, h3, h4, h5, h6)
{
	font-family: var(--ot-font-secondary);
	font-weight: 500;
	letter-spacing: -0.02em;
	color: var(--ot-text-1);
	font-variation-settings: 'opsz' 144;
	line-height: 1.15;
}

.e-4696d703 .prose h1 { font-size: 2.25em; margin: 0 0 0.9em; }
.e-4696d703 .prose h2 { font-size: 1.5em; margin: 1em 0 0.75em; }
.e-4696d703 .prose h3 { font-size: 1.25em; margin: 1.6em 0 0.6em; }
.e-4696d703 .prose h4 { font-size: 1.1em; margin: 1.5em 0 0.5em; }

.e-4696d703 .prose :is(h1, h2, h3, h4) + :is(h1, h2, h3, h4)
{
	margin-top: 0;
}

/* ===== INLINE ===== */

.e-4696d703 .prose em
{
	font-style: italic;
	color: var(--ot-brand);
}

.e-4696d703 .prose strong
{
	font-weight: 700;
	color: var(--ot-text-1);
}

.e-4696d703 .prose del
{
	text-decoration: line-through;
	opacity: 0.6;
}

/* ===== PARAGRAPH ===== */

.e-4696d703 .prose p
{
	margin: 0 0 1.25em;
	color: var(--ot-text-2);
	line-height: 1.75;
}

.e-4696d703 .prose > p:first-child
{
	color: var(--ot-text-1);
}

/* ===== LINKS ===== */

.e-4696d703 .prose a
{
	color: var(--ot-brand);
	text-decoration: underline;
	text-decoration-color: var(--ot-brand-opacity);
	text-underline-offset: 3px;
	transition: text-decoration-color var(--ot-transition);
}

.e-4696d703 .prose a:hover
{
	text-decoration-color: var(--ot-brand);
}

/* ===== LISTS ===== */

.e-4696d703 .prose :is(ul, ol)
{
	margin: 0 0 1.25em;
	padding-left: 1.6em;
}

.e-4696d703 .prose ul { list-style: disc; }
.e-4696d703 .prose ol { list-style: decimal; }

.e-4696d703 .prose li
{
	margin: 0 0 0.5em;
	color: var(--ot-text-2);
	line-height: 1.7;
}

.e-4696d703 .prose li::marker
{
	color: var(--ot-brand);
}

.e-4696d703 .prose li:last-child
{
	margin-bottom: 0;
}

/* ===== BLOCKQUOTE ===== */

.e-4696d703 .prose blockquote
{
	margin: 1.6em 0;
	padding: 0.25em 0 0.25em 1.2em;
	border-left: 3px solid var(--ot-brand);
	font-family: var(--ot-font-secondary);
	font-size: 1.3em;
	font-style: italic;
	line-height: 1.45;
	color: var(--ot-text-1);
	font-variation-settings: 'opsz' 144;
}

.e-4696d703 .prose blockquote p
{
	margin: 0;
	color: inherit;
}

/* ===== INLINE CODE ===== */

.e-4696d703 .prose code,
.e-4696d703 .prose code.inline
{
	font-family: ui-monospace, 'SF Mono', Menlo, monospace;
	font-size: 0.88em;
	padding: 0.15em 0.4em;
	border-radius: var(--ot-radius-s);
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	color: var(--ot-brand);
}

/* ===== IMAGES ===== */

.e-4696d703 .prose img
{
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--ot-radius-l);
	margin: 2em 0 0.5em;
}

.e-4696d703 .prose img + em
{
	display: block;
	font-size: 0.85em;
	font-style: italic;
	color: var(--ot-text-3);
	text-align: center;
	margin-bottom: 2em;
}

/* ===== HR ===== */

.e-4696d703 .prose hr
{
	border: none;
	height: 1px;
	background: var(--ot-bg-2-border);
	margin: 3em 0;
}

/* ===== TABLE ===== */

.e-4696d703 .prose table
{
	margin: 1.5em 0;
	width: 100%;
	border-collapse: collapse;
}

.e-4696d703 .prose th
{
	font-size: 0.85em;
	font-weight: 600;
	text-align: left;
	padding: 0.6em 1em;
	border-bottom: 2px solid var(--ot-bg-2-border);
	color: var(--ot-text-1);
}

.e-4696d703 .prose td
{
	font-size: 0.9em;
	padding: 0.6em 1em;
	border-bottom: 1px solid var(--ot-bg-2-border);
	color: var(--ot-text-2);
}

.e-4696d703 .prose tr:last-child td
{
	border-bottom: none;
}

/* ===== LINE WRAPPER ===== */

.e-4696d703 .prose > .line:empty
{
	height: var(--ot-spacing-m);
}

.e-4696d703 .prose > .line:first-child > *
{
	margin-top: 0;
	padding-top: 0;
}

.e-4696d703 .prose > .line:last-child > *
{
	margin-bottom: 0;
	padding-bottom: 0;
}

/* ===== COLLAPSIBLE ===== */

.e-4696d703 > .box.collapsible:not(.expanded) > .fade
{
	position: absolute;
	bottom: 44px;
	left: 0;
	right: 0;
	height: 80px;
	background: linear-gradient(180deg, transparent 0%, var(--ot-bg-1) 100%);
	pointer-events: none;
}

.e-4696d703 > .box.collapsible > .toggle
{
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--ot-spacing-x);
	width: 100%;
	margin-top: var(--ot-spacing-m);
	padding-top: var(--ot-spacing-m);
	background: transparent;
	border: none;
	border-top: 1px solid var(--ot-bg-1-border);
	color: var(--ot-brand);
	font-size: var(--ot-size-s);
	font-weight: 600;
	font-family: var(--ot-font-primary);
	cursor: pointer;
	transition: color var(--ot-transition);
}

.e-4696d703 > .box.collapsible > .toggle:hover
{
	color: var(--ot-brand-hover);
}

.e-4696d703 > .box.collapsible > .toggle > i
{
	font-size: 18px;
}

/* ===== BACKGROUND ===== */

.e-4696d703 > .box.bg-1 { background: var(--ot-bg-1); padding: var(--ot-spacing-l); }
.e-4696d703 > .box.bg-2 { background: var(--ot-bg-2); padding: var(--ot-spacing-l); }
.e-4696d703 > .box.bg-3 { background: var(--ot-bg-3); padding: var(--ot-spacing-l); }
.e-4696d703 > .box.bg-4 { background: var(--ot-bg-4); padding: var(--ot-spacing-l); }

.e-4696d703 > .box.bg-1.collapsible:not(.expanded) > .fade { background: linear-gradient(180deg, transparent 0%, var(--ot-bg-1) 100%); }
.e-4696d703 > .box.bg-2.collapsible:not(.expanded) > .fade { background: linear-gradient(180deg, transparent 0%, var(--ot-bg-2) 100%); }
.e-4696d703 > .box.bg-3.collapsible:not(.expanded) > .fade { background: linear-gradient(180deg, transparent 0%, var(--ot-bg-3) 100%); }
.e-4696d703 > .box.bg-4.collapsible:not(.expanded) > .fade { background: linear-gradient(180deg, transparent 0%, var(--ot-bg-4) 100%); }

.e-4696d703 > .box.bg-1.collapsible > .toggle { border-top-color: var(--ot-bg-1-border); }
.e-4696d703 > .box.bg-2.collapsible > .toggle { border-top-color: var(--ot-bg-2-border); }
.e-4696d703 > .box.bg-3.collapsible > .toggle { border-top-color: var(--ot-bg-3-border); }
.e-4696d703 > .box.bg-4.collapsible > .toggle { border-top-color: var(--ot-bg-4-border); }

/* ===== BORDER ===== */

.e-4696d703 > .box.border { border: 1px solid var(--ot-bg-2-border); }
.e-4696d703 > .box.bg-1.border { border-color: var(--ot-bg-1-border); }
.e-4696d703 > .box.bg-2.border { border-color: var(--ot-bg-2-border); }
.e-4696d703 > .box.bg-3.border { border-color: var(--ot-bg-3-border); }
.e-4696d703 > .box.bg-4.border { border-color: var(--ot-bg-4-border); }
/* ===== GLOBAL MENU ===== */

.e-4a1a1973
{
	display: contents;
}

/* Box */

.e-4a1a1973 > .box
{
	display: flex;
	flex-direction: column;
	min-width: 180px;
	padding: var(--ot-spacing-x);
	background: var(--ot-bg-1);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: var(--ot-radius-m);
	box-shadow: var(--ot-shadow-m);
	overflow: hidden;
}

/* Option */

.e-4a1a1973 > .box > .entry > .option
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	width: 100%;
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	background: transparent;
	border: none;
	border-radius: var(--ot-radius-s);
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-m);
	font-weight: 500;
	color: var(--ot-text-1);
	text-align: left;
	cursor: pointer;
	outline: none;
	transition: background var(--ot-transition-fast), color var(--ot-transition-fast);
}

.e-4a1a1973 > .box > .entry > .option > .icon
{
	flex-shrink: 0;
	font-size: 18px;
	color: var(--ot-text-3);
	transition: color var(--ot-transition-fast);
}

.e-4a1a1973 > .box > .entry > .option > .label
{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.e-4a1a1973 > .box > .entry > .option:hover
{
	background: var(--ot-brand-opacity);
	color: var(--ot-brand);
}

.e-4a1a1973 > .box > .entry > .option:hover > .icon
{
	color: var(--ot-brand);
}

/* Danger */

.e-4a1a1973 > .box > .entry > .option.danger
{
	color: var(--ot-red);
}

.e-4a1a1973 > .box > .entry > .option.danger > .icon
{
	color: var(--ot-red);
}

.e-4a1a1973 > .box > .entry > .option.danger:hover
{
	background: var(--ot-red-opacity);
	color: var(--ot-red);
}

/* Separator */

.e-4a1a1973 > .box > .entry > .separator
{
	height: 1px;
	margin: var(--ot-spacing-x) 0;
	background: var(--ot-bg-2-border);
}

/* Entry wrapper */

.e-4a1a1973 > .box > .entry
{
	display: contents;
}
/* ===== GLOBAL NOTICE ===== */

.e-2e3de5ec
{
	display: contents;
}

/* Box */

.e-2e3de5ec > .box
{
	position: relative;
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-m);
	width: 100%;
	padding: var(--ot-spacing-m);
	border: 1px solid transparent;
	border-radius: var(--ot-radius-m);
	font-family: var(--ot-font-primary);
	transition: opacity var(--ot-transition), transform var(--ot-transition);
}

/* Icon */

.e-2e3de5ec > .box > .icon
{
	flex-shrink: 0;
	font-size: 20px;
	line-height: 1.3;
	font-variation-settings: 'FILL' 1;
}

/* Body */

.e-2e3de5ec > .box > .body
{
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.e-2e3de5ec > .box > .body > .title
{
	font-size: var(--ot-size-m);
	font-weight: 600;
	line-height: 1.3;
}

.e-2e3de5ec > .box > .body > .text
{
	font-size: 12.5px;
	line-height: 1.5;
	opacity: 0.85;
}

/* Actions */

.e-2e3de5ec > .box > .actions
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	flex-shrink: 0;
}

.e-2e3de5ec > .box > .actions:empty
{
	display: none;
}

/* Close */

.e-2e3de5ec > .box > .close
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: var(--ot-radius-s);
	color: currentColor;
	cursor: pointer;
	flex-shrink: 0;
	opacity: 0.6;
	transition: background var(--ot-transition), opacity var(--ot-transition);
}

.e-2e3de5ec > .box > .close:hover
{
	opacity: 1;
	background: rgba(255, 255, 255, 0.1);
}

.e-2e3de5ec > .box > .close > i
{
	font-size: 18px;
}

/* ===== TONE: SOFT (opacity background) ===== */

.e-2e3de5ec > .box.soft.brand  { background: var(--ot-brand-opacity);  border-color: var(--ot-brand-border);  color: var(--ot-brand); }
.e-2e3de5ec > .box.soft.blue   { background: var(--ot-blue-opacity);   border-color: var(--ot-blue-border);   color: var(--ot-blue); }
.e-2e3de5ec > .box.soft.red    { background: var(--ot-red-opacity);    border-color: var(--ot-red-border);    color: var(--ot-red); }
.e-2e3de5ec > .box.soft.orange { background: var(--ot-orange-opacity); border-color: var(--ot-orange-border); color: var(--ot-orange); }
.e-2e3de5ec > .box.soft.green  { background: var(--ot-green-opacity);  border-color: var(--ot-green-border);  color: var(--ot-green); }

.e-2e3de5ec > .box.soft > .body > .title { color: inherit; }
.e-2e3de5ec > .box.soft > .body > .text  { color: var(--ot-text-1); }

/* ===== TONE: FILLED (solid background) ===== */

.e-2e3de5ec > .box.filled.brand  { background: var(--ot-brand);  border-color: var(--ot-brand);  color: #fff; }
.e-2e3de5ec > .box.filled.blue   { background: var(--ot-blue);   border-color: var(--ot-blue);   color: #fff; }
.e-2e3de5ec > .box.filled.red    { background: var(--ot-red);    border-color: var(--ot-red);    color: #fff; }
.e-2e3de5ec > .box.filled.orange { background: var(--ot-orange); border-color: var(--ot-orange); color: #fff; }
.e-2e3de5ec > .box.filled.green  { background: var(--ot-green);  border-color: var(--ot-green);  color: #fff; }

.e-2e3de5ec > .box.filled > .body > .title { color: #fff; }
.e-2e3de5ec > .box.filled > .body > .text  { color: #fff; opacity: 0.9; }

/* ===== TONE: ACCENT (left border bar) ===== */

.e-2e3de5ec > .box.accent
{
	border-left-width: 3px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.e-2e3de5ec > .box.accent.brand  { background: var(--ot-brand-opacity);  border-color: transparent; border-left-color: var(--ot-brand);  color: var(--ot-brand); }
.e-2e3de5ec > .box.accent.blue   { background: var(--ot-blue-opacity);   border-color: transparent; border-left-color: var(--ot-blue);   color: var(--ot-blue); }
.e-2e3de5ec > .box.accent.red    { background: var(--ot-red-opacity);    border-color: transparent; border-left-color: var(--ot-red);    color: var(--ot-red); }
.e-2e3de5ec > .box.accent.orange { background: var(--ot-orange-opacity); border-color: transparent; border-left-color: var(--ot-orange); color: var(--ot-orange); }
.e-2e3de5ec > .box.accent.green  { background: var(--ot-green-opacity);  border-color: transparent; border-left-color: var(--ot-green);  color: var(--ot-green); }

.e-2e3de5ec > .box.accent > .body > .title { color: inherit; }
.e-2e3de5ec > .box.accent > .body > .text  { color: var(--ot-text-1); }

/* ===== BACKGROUND (neutral) ===== */

.e-2e3de5ec > .box.bg-1 { background: var(--ot-bg-1); border-color: var(--ot-bg-1-border); color: var(--ot-text-2); }
.e-2e3de5ec > .box.bg-2 { background: var(--ot-bg-2); border-color: var(--ot-bg-2-border); color: var(--ot-text-2); }
.e-2e3de5ec > .box.bg-3 { background: var(--ot-bg-3); border-color: var(--ot-bg-3-border); color: var(--ot-text-2); }
.e-2e3de5ec > .box.bg-4 { background: var(--ot-bg-4); border-color: var(--ot-bg-4-border); color: var(--ot-text-2); }

.e-2e3de5ec > .box.bg-1 > .body > .title,
.e-2e3de5ec > .box.bg-2 > .body > .title,
.e-2e3de5ec > .box.bg-3 > .body > .title,
.e-2e3de5ec > .box.bg-4 > .body > .title
{
	color: var(--ot-text-1);
}

/* ===== SIZE ===== */

.e-2e3de5ec > .box.size-s
{
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	gap: var(--ot-spacing-s);
}

.e-2e3de5ec > .box.size-s > .icon
{
	font-size: 17px;
}

.e-2e3de5ec > .box.size-s > .body > .title
{
	font-size: 12px;
}

.e-2e3de5ec > .box.size-s > .body > .text
{
	font-size: var(--ot-size-s);
}

.e-2e3de5ec > .box.size-s > .close
{
	width: 24px;
	height: 24px;
}

.e-2e3de5ec > .box.size-s > .close > i
{
	font-size: 15px;
}

.e-2e3de5ec > .box.size-l
{
	padding: var(--ot-spacing-l);
	gap: var(--ot-spacing-m);
}

.e-2e3de5ec > .box.size-l > .icon
{
	font-size: 24px;
}

.e-2e3de5ec > .box.size-l > .body > .title
{
	font-size: 15px;
}

.e-2e3de5ec > .box.size-l > .body > .text
{
	font-size: 13.5px;
}

.e-2e3de5ec > .box.size-l > .close
{
	width: 32px;
	height: 32px;
}

.e-2e3de5ec > .box.size-l > .close > i
{
	font-size: 20px;
}
/* ===== NAVIGATION DOCK ===== */

.e-1a845976
{
	display: contents;
}

/* Box */

.e-1a845976 > .box
{
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
	width: 68px;
	height: 100%;
	padding: var(--ot-spacing-s) 0;
	overflow: hidden;
}

/* Logo */

.e-1a845976 > .box > .logo
{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	margin-bottom: var(--ot-spacing-s);
	transition: transform var(--ot-transition);
}

.e-1a845976 > .box > .logo:hover
{
	transform: scale(1.06);
}

.e-1a845976 > .box > .logo > img
{
	width: 22px;
	height: 22px;
	object-fit: contain;
}

/* Stack */

.e-1a845976 > .box > .stack
{
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
	width: 100%;
}

.e-1a845976 > .box > .stack.bottom
{
	margin-top: auto;
}

/* Separator */

.e-1a845976 .separator
{
	width: 32px;
	height: 1px;
	background: var(--ot-bg-2-border);
	margin: var(--ot-spacing-s) auto;
	flex-shrink: 0;
}

/* Group */

.e-1a845976 .group
{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--ot-spacing-x);
	flex-shrink: 0;
}

/* Item */

.e-1a845976 .item
{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: var(--ot-radius-m);
	color: var(--ot-text-2);
	text-decoration: none;
	transition: background var(--ot-transition), color var(--ot-transition), transform var(--ot-transition);
}

.e-1a845976 .item:hover
{
	background: var(--ot-bg-3);
	color: var(--ot-text-1);
}

.e-1a845976 .item:active
{
	transform: scale(0.94);
	transition-duration: 100ms;
}

.e-1a845976 .item > i
{
	font-size: 20px;
	font-variation-settings: 'wght' 400;
}

/* Active */

.e-1a845976 .item.active
{
	background: var(--ot-brand-opacity);
	color: var(--ot-brand);
}

.e-1a845976 .item.active > i
{
	font-variation-settings: 'wght' 500;
}

.e-1a845976 .item.active::before
{
	content: '';
	position: absolute;
	left: calc(var(--ot-spacing-s) * -1);
	top: 50%;
	width: 3px;
	height: 50%;
	border-radius: 0 3px 3px 0;
	background: var(--ot-brand);
	transform: translateY(-50%);
}

/* Badge */

.e-1a845976 .item > .badge
{
	position: absolute;
	top: 2px;
	right: 2px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: 100px;
	background: var(--ot-brand);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	font-family: var(--ot-font-primary);
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--ot-bg-2);
}

/* ===== BACKGROUND ===== */

.e-1a845976 > .box.bg-1 { background: var(--ot-bg-1); }
.e-1a845976 > .box.bg-1 .item:hover { background: var(--ot-bg-1-hover); }
.e-1a845976 > .box.bg-1 .separator { background: var(--ot-bg-1-border); }
.e-1a845976 > .box.bg-1 .item > .badge { border-color: var(--ot-bg-1); }

.e-1a845976 > .box.bg-2 { background: var(--ot-bg-2); }
.e-1a845976 > .box.bg-2 .item:hover { background: var(--ot-bg-2-hover); }
.e-1a845976 > .box.bg-2 .separator { background: var(--ot-bg-2-border); }
.e-1a845976 > .box.bg-2 .item > .badge { border-color: var(--ot-bg-2); }

.e-1a845976 > .box.bg-3 { background: var(--ot-bg-3); }
.e-1a845976 > .box.bg-3 .item:hover { background: var(--ot-bg-3-hover); }
.e-1a845976 > .box.bg-3 .separator { background: var(--ot-bg-3-border); }
.e-1a845976 > .box.bg-3 .item > .badge { border-color: var(--ot-bg-3); }

.e-1a845976 > .box.bg-4 { background: var(--ot-bg-4); }
.e-1a845976 > .box.bg-4 .item:hover { background: var(--ot-bg-4-hover); }
.e-1a845976 > .box.bg-4 .separator { background: var(--ot-bg-4-border); }
.e-1a845976 > .box.bg-4 .item > .badge { border-color: var(--ot-bg-4); }

/* ===== BORDER ===== */

.e-1a845976 > .box.border { border: 1px solid var(--ot-bg-2-border); }
.e-1a845976 > .box.border-top { border-top: 1px solid var(--ot-bg-2-border); }
.e-1a845976 > .box.border-right { border-right: 1px solid var(--ot-bg-2-border); }
.e-1a845976 > .box.border-bottom { border-bottom: 1px solid var(--ot-bg-2-border); }
.e-1a845976 > .box.border-left { border-left: 1px solid var(--ot-bg-2-border); }

.e-1a845976 > .box.bg-1.border,
.e-1a845976 > .box.bg-1.border-top,
.e-1a845976 > .box.bg-1.border-right,
.e-1a845976 > .box.bg-1.border-bottom,
.e-1a845976 > .box.bg-1.border-left { border-color: var(--ot-bg-1-border); }

.e-1a845976 > .box.bg-2.border,
.e-1a845976 > .box.bg-2.border-top,
.e-1a845976 > .box.bg-2.border-right,
.e-1a845976 > .box.bg-2.border-bottom,
.e-1a845976 > .box.bg-2.border-left { border-color: var(--ot-bg-2-border); }

.e-1a845976 > .box.bg-3.border,
.e-1a845976 > .box.bg-3.border-top,
.e-1a845976 > .box.bg-3.border-right,
.e-1a845976 > .box.bg-3.border-bottom,
.e-1a845976 > .box.bg-3.border-left { border-color: var(--ot-bg-3-border); }

.e-1a845976 > .box.bg-4.border,
.e-1a845976 > .box.bg-4.border-top,
.e-1a845976 > .box.bg-4.border-right,
.e-1a845976 > .box.bg-4.border-bottom,
.e-1a845976 > .box.bg-4.border-left { border-color: var(--ot-bg-4-border); }
/* ===== NAVIGATION SIDEBAR ===== */

/* Root */

.e-210c16c7
{
	display: flex;
	flex-shrink: 0;
	height: 100%;
}

/* Box */

.e-210c16c7 > .box
{
	display: flex;
	flex-direction: column;
	width: 260px;
	height: 100%;
	overflow-y: auto;
}

/* ===== HEAD ===== */

.e-210c16c7 > .box > .head
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-x);
	flex-shrink: 0;
	padding: var(--ot-spacing-m);
	border-bottom: 1px solid var(--ot-bg-2-border);
}

.e-210c16c7 > .box > .head > .title
{
	font-family: var(--ot-font-secondary);
	font-size: var(--ot-size-l);
	font-weight: 500;
	letter-spacing: -0.018em;
	color: var(--ot-text-1);
	font-variation-settings: 'opsz' 144;
	line-height: 1.1;
}

.e-210c16c7 > .box > .head > .subtitle
{
	font-size: var(--ot-size-s);
	color: var(--ot-text-3);
	font-family: var(--ot-font-primary);
	line-height: 1.4;
}

.e-210c16c7 > .box > .head > .version
{
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	padding: 3px 9px;
	margin-top: var(--ot-spacing-x);
	background: var(--ot-brand-opacity);
	color: var(--ot-brand);
	border-radius: 100px;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.04em;
	font-family: var(--ot-font-primary);
}

/* ===== STACK ===== */

.e-210c16c7 > .box > .stack
{
	display: flex;
	flex-direction: column;
	padding: var(--ot-spacing-s);
	gap: var(--ot-spacing-x);
}

.e-210c16c7 > .box > .stack.bottom
{
	margin-top: auto;
	border-top: 1px solid var(--ot-bg-2-border);
}

/* ===== GROUP ===== */

.e-210c16c7 .group
{
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.e-210c16c7 .group + .group
{
	margin-top: var(--ot-spacing-s);
}

.e-210c16c7 .group-title
{
	font-size: 10.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--ot-text-3);
	padding: var(--ot-spacing-s) var(--ot-spacing-s) var(--ot-spacing-x);
	font-family: var(--ot-font-primary);
}

/* ===== ITEM ===== */

.e-210c16c7 .item
{
	position: relative;
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	height: var(--ot-height-m);
	padding: 0 var(--ot-spacing-s);
	border-radius: var(--ot-radius-m);
	color: var(--ot-text-2);
	font-size: 12px;
	font-weight: 500;
	text-decoration: none;
	transition: background var(--ot-transition), color var(--ot-transition);
}

.e-210c16c7 .item.child
{
	margin-left: calc(var(--depth) * 13px + var(--ot-spacing-s));
}

.e-210c16c7 .item.child::before
{
	content: '';
	position: absolute;
	left: calc(var(--ot-spacing-s) * -1);
	top: 0;
	bottom: 0;
	border-left: 1px solid var(--ot-bg-2-border);
}

.e-210c16c7 .item > i
{
	color: var(--ot-text-2);
	font-size: 16px;
	flex-shrink: 0;
	transition: color var(--ot-transition);
}

.e-210c16c7 .item > .label
{
	flex: 1;
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.e-210c16c7 .item > .chevron
{
	opacity: 0;
	font-size: 16px;
	transform: translateX(-4px);
	transition: opacity var(--ot-transition), transform var(--ot-transition);
	margin-left: auto;
}

.e-210c16c7 .item:hover
{
	background: var(--ot-bg-1);
	color: var(--ot-text-1);
}

.e-210c16c7 .item:hover > i
{
	color: var(--ot-text-1);
}

.e-210c16c7 .item:hover > .chevron
{
	opacity: 1;
	transform: translateX(0);
}

/* Active */

.e-210c16c7 .item.active
{
	background: var(--ot-brand-opacity);
	color: var(--ot-brand);
}

.e-210c16c7 .item.active > i
{
	color: var(--ot-brand);
	font-variation-settings: 'FILL' 0, 'wght' 500;
}

.e-210c16c7 .item.active > .chevron
{
	opacity: 1;
	transform: translateX(0);
	color: var(--ot-brand);
}

.e-210c16c7 .item.active::after
{
	content: '';
	position: absolute;
	left: calc(var(--ot-spacing-s) * -1);
	top: 50%;
	width: 3px;
	height: 50%;
	border-radius: 0 3px 3px 0;
	background: var(--ot-brand);
	transform: translateY(-50%);
}


/* ===== BADGE ===== */

.e-210c16c7 .item > .badge
{
	min-width: 20px;
	height: 20px;
	padding: 0 7px;
	background: var(--ot-brand);
	color: white;
	border-radius: 100px;
	font-size: 10px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--ot-font-primary);
	line-height: 1;
	margin-left: auto;
}

/* Count */

.e-210c16c7 .item > .count
{
	min-width: 20px;
	height: 20px;
	padding: 0 7px;
	background: var(--ot-bg-3);
	color: var(--ot-text-2);
	border-radius: 100px;
	font-size: 10.5px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--ot-font-primary);
	line-height: 1;
	margin-left: auto;
}

.e-210c16c7 .item.active > .count
{
	background: var(--ot-brand);
	color: white;
}

/* Soon badge */

.e-210c16c7 .item > .soon-badge
{
	font-size: 9.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 3px 7px;
	background: var(--ot-bg-3);
	color: var(--ot-text-3);
	border-radius: 100px;
	font-family: var(--ot-font-primary);
	margin-left: auto;
}

/* Soon / Disabled */

.e-210c16c7 .item.soon,
.e-210c16c7 .item.disabled
{
	cursor: not-allowed;
	opacity: 0.55;
}

.e-210c16c7 .item.soon:hover,
.e-210c16c7 .item.disabled:hover
{
	background: transparent;
	color: var(--ot-text-2);
}

.e-210c16c7 .item.soon:hover > i,
.e-210c16c7 .item.disabled:hover > i
{
	color: var(--ot-text-3);
}

/* ===== FOOT ===== */

.e-210c16c7 > .box > .foot
{
	flex-shrink: 0;
	padding: var(--ot-spacing-m);
	border-top: 1px solid var(--ot-bg-2-border);
}

/* ===== BACKGROUND ===== */

.e-210c16c7 > .box.bg-1 { background: var(--ot-bg-1); }
.e-210c16c7 > .box.bg-1 > .head,
.e-210c16c7 > .box.bg-1 > .stack.bottom,
.e-210c16c7 > .box.bg-1 > .foot { border-color: var(--ot-bg-1-border); }
.e-210c16c7 > .box.bg-1 .item:hover { background: var(--ot-bg-1-hover); }
.e-210c16c7 > .box.bg-1 .item > .count { background: var(--ot-bg-2); }

.e-210c16c7 > .box.bg-2 { background: var(--ot-bg-2); }
.e-210c16c7 > .box.bg-2 > .head,
.e-210c16c7 > .box.bg-2 > .stack.bottom,
.e-210c16c7 > .box.bg-2 > .foot { border-color: var(--ot-bg-2-border); }
.e-210c16c7 > .box.bg-2 .item:hover { background: var(--ot-bg-2-hover); }
.e-210c16c7 > .box.bg-2 .item > .count { background: var(--ot-bg-3); }

.e-210c16c7 > .box.bg-3 { background: var(--ot-bg-3); }
.e-210c16c7 > .box.bg-3 > .head,
.e-210c16c7 > .box.bg-3 > .stack.bottom,
.e-210c16c7 > .box.bg-3 > .foot { border-color: var(--ot-bg-3-border); }
.e-210c16c7 > .box.bg-3 .item:hover { background: var(--ot-bg-3-hover); }
.e-210c16c7 > .box.bg-3 .item > .count { background: var(--ot-bg-4); }

.e-210c16c7 > .box.bg-4 { background: var(--ot-bg-4); }
.e-210c16c7 > .box.bg-4 > .head,
.e-210c16c7 > .box.bg-4 > .stack.bottom,
.e-210c16c7 > .box.bg-4 > .foot { border-color: var(--ot-bg-4-border); }
.e-210c16c7 > .box.bg-4 .item:hover { background: var(--ot-bg-4-hover); }
.e-210c16c7 > .box.bg-4 .item > .count { background: var(--ot-bg-3); }

/* ===== BORDER ===== */

.e-210c16c7 > .box.border { border: 1px solid var(--ot-bg-2-border); }
.e-210c16c7 > .box.border-top { border-top: 1px solid var(--ot-bg-2-border); }
.e-210c16c7 > .box.border-right { border-right: 1px solid var(--ot-bg-2-border); }
.e-210c16c7 > .box.border-bottom { border-bottom: 1px solid var(--ot-bg-2-border); }
.e-210c16c7 > .box.border-left { border-left: 1px solid var(--ot-bg-2-border); }

.e-210c16c7 > .box.bg-1.border,
.e-210c16c7 > .box.bg-1.border-top,
.e-210c16c7 > .box.bg-1.border-right,
.e-210c16c7 > .box.bg-1.border-bottom,
.e-210c16c7 > .box.bg-1.border-left { border-color: var(--ot-bg-1-border); }

.e-210c16c7 > .box.bg-2.border,
.e-210c16c7 > .box.bg-2.border-top,
.e-210c16c7 > .box.bg-2.border-right,
.e-210c16c7 > .box.bg-2.border-bottom,
.e-210c16c7 > .box.bg-2.border-left { border-color: var(--ot-bg-2-border); }

.e-210c16c7 > .box.bg-3.border,
.e-210c16c7 > .box.bg-3.border-top,
.e-210c16c7 > .box.bg-3.border-right,
.e-210c16c7 > .box.bg-3.border-bottom,
.e-210c16c7 > .box.bg-3.border-left { border-color: var(--ot-bg-3-border); }

.e-210c16c7 > .box.bg-4.border,
.e-210c16c7 > .box.bg-4.border-top,
.e-210c16c7 > .box.bg-4.border-right,
.e-210c16c7 > .box.bg-4.border-bottom,
.e-210c16c7 > .box.bg-4.border-left { border-color: var(--ot-bg-4-border); }
/* ===== NAVIGATION STEPS ===== */

.e-36dc8444
{
	display: contents;
}

/* Box */

.e-36dc8444 > .box
{
	display: flex;
	width: 100%;
	border-radius: var(--ot-radius-l);
	overflow: hidden;
}

.e-36dc8444 > .box.vertical
{
	flex-direction: column;
}

.e-36dc8444 > .box.horizontal
{
	flex-direction: row;
	align-items: stretch;
}

/* Step */

.e-36dc8444 .step
{
	position: relative;
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-m);
	padding: var(--ot-spacing-m);
	background: transparent;
	border: none;
	text-align: left;
	font-family: var(--ot-font-primary);
	cursor: pointer;
	transition: background var(--ot-transition);
}

.e-36dc8444 > .box.vertical > .step
{
	width: 100%;
}

.e-36dc8444 > .box.horizontal > .step
{
	flex: 1;
	flex-direction: column;
	text-align: center;
	align-items: center;
}

.e-36dc8444 .step:hover:not(.disabled)
{
	background: var(--ot-bg-2-opacity);
}

/* Marker */

.e-36dc8444 .step > .marker
{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	color: var(--ot-text-2);
	font-weight: 600;
	z-index: 1;
	transition: background var(--ot-transition), border-color var(--ot-transition), color var(--ot-transition), transform var(--ot-transition);
}

.e-36dc8444 .step > .marker > i
{
	font-variation-settings: 'wght' 500;
}

/* Text */

.e-36dc8444 .step > .text
{
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	flex: 1;
}

.e-36dc8444 .step > .text > .label
{
	font-weight: 600;
	color: var(--ot-text-2);
	line-height: 1.3;
	transition: color var(--ot-transition);
}

.e-36dc8444 .step > .text > .description
{
	color: var(--ot-text-3);
	line-height: 1.4;
	font-weight: 400;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

/* ===== STATES ===== */

/* Done */

.e-36dc8444 .step.done > .marker
{
	background: var(--ot-brand);
	border-color: var(--ot-brand);
	color: #fff;
}

.e-36dc8444 .step.done > .text > .label
{
	color: var(--ot-text-1);
}

/* Active */

.e-36dc8444 .step.active > .marker
{
	background: var(--ot-brand);
	border-color: var(--ot-brand);
	color: #fff;
	transform: scale(1.05);
	box-shadow: 0 0 0 4px var(--ot-brand-opacity);
}

.e-36dc8444 .step.active > .text > .label
{
	color: var(--ot-brand);
}

.e-36dc8444 .step.active > .text > .description
{
	color: var(--ot-text-2);
}

/* Disabled */

.e-36dc8444 .step.disabled
{
	cursor: not-allowed;
	opacity: 0.45;
}

.e-36dc8444 .step.disabled:hover
{
	background: transparent;
}

/* ===== CONNECTED ===== */

.e-36dc8444 > .box.vertical.connected > .step + .step::before
{
	content: '';
	position: absolute;
	width: 2px;
	background: var(--ot-bg-2-border);
	transition: background var(--ot-transition);
	z-index: 0;
}

.e-36dc8444 > .box.vertical.connected > .step.done + .step::before
{
	background: var(--ot-brand);
}

.e-36dc8444 > .box.horizontal.connected > .step + .step::before
{
	content: '';
	position: absolute;
	height: 2px;
	background: var(--ot-bg-2-border);
	transition: background var(--ot-transition);
	z-index: 0;
}

.e-36dc8444 > .box.horizontal.connected > .step.done + .step::before
{
	background: var(--ot-brand);
}

/* ===== CLEAN ===== */

.e-36dc8444 > .box.clean
{
	background: transparent !important;
	border: none !important;
	border-radius: 0;
}

/* ===== BACKGROUND ===== */

.e-36dc8444 > .box.bg-1 { background: var(--ot-bg-1); }
.e-36dc8444 > .box.bg-1 .step.upcoming > .marker { background: var(--ot-bg-2); border-color: var(--ot-bg-2-border); }
.e-36dc8444 > .box.bg-1 .step:hover:not(.disabled) { background: var(--ot-bg-1-hover); }

.e-36dc8444 > .box.bg-2 { background: var(--ot-bg-2); }
.e-36dc8444 > .box.bg-2 .step.upcoming > .marker { background: var(--ot-bg-1); border-color: var(--ot-bg-2-border); }
.e-36dc8444 > .box.bg-2 .step:hover:not(.disabled) { background: var(--ot-bg-2-hover); }

.e-36dc8444 > .box.bg-3 { background: var(--ot-bg-3); }
.e-36dc8444 > .box.bg-3 .step.upcoming > .marker { background: var(--ot-bg-2); border-color: var(--ot-bg-3-border); }
.e-36dc8444 > .box.bg-3 .step:hover:not(.disabled) { background: var(--ot-bg-3-hover); }

.e-36dc8444 > .box.bg-4 { background: var(--ot-bg-4); }
.e-36dc8444 > .box.bg-4 .step.upcoming > .marker { background: var(--ot-bg-3); border-color: var(--ot-bg-4-border); }
.e-36dc8444 > .box.bg-4 .step:hover:not(.disabled) { background: var(--ot-bg-4-hover); }

/* ===== BORDER ===== */

.e-36dc8444 > .box.border { border: 1px solid var(--ot-bg-2-border); }
.e-36dc8444 > .box.border-top { border-top: 1px solid var(--ot-bg-2-border); }
.e-36dc8444 > .box.border-right { border-right: 1px solid var(--ot-bg-2-border); }
.e-36dc8444 > .box.border-bottom { border-bottom: 1px solid var(--ot-bg-2-border); }
.e-36dc8444 > .box.border-left { border-left: 1px solid var(--ot-bg-2-border); }

.e-36dc8444 > .box.bg-1.border,
.e-36dc8444 > .box.bg-1.border-top,
.e-36dc8444 > .box.bg-1.border-right,
.e-36dc8444 > .box.bg-1.border-bottom,
.e-36dc8444 > .box.bg-1.border-left { border-color: var(--ot-bg-1-border); }

.e-36dc8444 > .box.bg-2.border,
.e-36dc8444 > .box.bg-2.border-top,
.e-36dc8444 > .box.bg-2.border-right,
.e-36dc8444 > .box.bg-2.border-bottom,
.e-36dc8444 > .box.bg-2.border-left { border-color: var(--ot-bg-2-border); }

.e-36dc8444 > .box.bg-3.border,
.e-36dc8444 > .box.bg-3.border-top,
.e-36dc8444 > .box.bg-3.border-right,
.e-36dc8444 > .box.bg-3.border-bottom,
.e-36dc8444 > .box.bg-3.border-left { border-color: var(--ot-bg-3-border); }

.e-36dc8444 > .box.bg-4.border,
.e-36dc8444 > .box.bg-4.border-top,
.e-36dc8444 > .box.bg-4.border-right,
.e-36dc8444 > .box.bg-4.border-bottom,
.e-36dc8444 > .box.bg-4.border-left { border-color: var(--ot-bg-4-border); }

/* Connected line per background */

.e-36dc8444 > .box.bg-1.connected > .step + .step::before { background: var(--ot-bg-1-border); }
.e-36dc8444 > .box.bg-2.connected > .step + .step::before { background: var(--ot-bg-2-border); }
.e-36dc8444 > .box.bg-3.connected > .step + .step::before { background: var(--ot-bg-3-border); }
.e-36dc8444 > .box.bg-4.connected > .step + .step::before { background: var(--ot-bg-4-border); }

.e-36dc8444 > .box.bg-1.connected > .step.done + .step::before,
.e-36dc8444 > .box.bg-2.connected > .step.done + .step::before,
.e-36dc8444 > .box.bg-3.connected > .step.done + .step::before,
.e-36dc8444 > .box.bg-4.connected > .step.done + .step::before { background: var(--ot-brand); }

/* ===== SIZE — vertical ===== */

.e-36dc8444 > .box.vertical.size-s > .step { padding: var(--ot-spacing-s) var(--ot-spacing-m); gap: var(--ot-spacing-s); }
.e-36dc8444 > .box.vertical.size-s .step > .marker { width: 24px; height: 24px; font-size: 11px; }
.e-36dc8444 > .box.vertical.size-s .step > .marker > i { font-size: 15px; }
.e-36dc8444 > .box.vertical.size-s .step > .text > .label { font-size: 12px; }
.e-36dc8444 > .box.vertical.size-s .step > .text > .description { font-size: 10.5px; }
.e-36dc8444 > .box.vertical.size-s.connected > .step + .step::before
{
	left: calc(var(--ot-spacing-m) + 12px - 1px);
	top: calc(-1 * var(--ot-spacing-s));
	height: calc(var(--ot-spacing-s) * 2);
}

.e-36dc8444 > .box.vertical.size-m > .step { padding: var(--ot-spacing-m); gap: var(--ot-spacing-m); }
.e-36dc8444 > .box.vertical.size-m .step > .marker { width: 32px; height: 32px; font-size: 13px; }
.e-36dc8444 > .box.vertical.size-m .step > .marker > i { font-size: 18px; }
.e-36dc8444 > .box.vertical.size-m .step > .text > .label { font-size: 13px; }
.e-36dc8444 > .box.vertical.size-m .step > .text > .description { font-size: 11.5px; }
.e-36dc8444 > .box.vertical.size-m.connected > .step + .step::before
{
	left: calc(var(--ot-spacing-m) + 16px - 1px);
	top: calc(-1 * var(--ot-spacing-m));
	height: calc(var(--ot-spacing-m) * 2);
}

.e-36dc8444 > .box.vertical.size-l > .step { padding: var(--ot-spacing-l) var(--ot-spacing-m); gap: var(--ot-spacing-m); }
.e-36dc8444 > .box.vertical.size-l .step > .marker { width: 40px; height: 40px; font-size: 15px; }
.e-36dc8444 > .box.vertical.size-l .step > .marker > i { font-size: 20px; }
.e-36dc8444 > .box.vertical.size-l .step > .text > .label { font-size: 15px; }
.e-36dc8444 > .box.vertical.size-l .step > .text > .description { font-size: 13px; }
.e-36dc8444 > .box.vertical.size-l.connected > .step + .step::before
{
	left: calc(var(--ot-spacing-m) + 20px - 1px);
	top: calc(-1 * var(--ot-spacing-l));
	height: calc(var(--ot-spacing-l) * 2);
}

/* ===== SIZE — horizontal ===== */

.e-36dc8444 > .box.horizontal.size-s > .step { padding: var(--ot-spacing-s); gap: var(--ot-spacing-x); }
.e-36dc8444 > .box.horizontal.size-s .step > .marker { width: 24px; height: 24px; font-size: 11px; }
.e-36dc8444 > .box.horizontal.size-s .step > .marker > i { font-size: 15px; }
.e-36dc8444 > .box.horizontal.size-s .step > .text > .label { font-size: 12px; }
.e-36dc8444 > .box.horizontal.size-s .step > .text > .description { font-size: 10.5px; }
.e-36dc8444 > .box.horizontal.size-s.connected > .step + .step::before
{
	top: calc(var(--ot-spacing-s) + 12px - 1px);
	left: calc(-50% + 12px);
	width: calc(100% - 24px);
}

.e-36dc8444 > .box.horizontal.size-m > .step { padding: var(--ot-spacing-m); gap: var(--ot-spacing-s); }
.e-36dc8444 > .box.horizontal.size-m .step > .marker { width: 32px; height: 32px; font-size: 13px; }
.e-36dc8444 > .box.horizontal.size-m .step > .marker > i { font-size: 18px; }
.e-36dc8444 > .box.horizontal.size-m .step > .text > .label { font-size: 13px; }
.e-36dc8444 > .box.horizontal.size-m .step > .text > .description { font-size: 11.5px; }
.e-36dc8444 > .box.horizontal.size-m.connected > .step + .step::before
{
	top: calc(var(--ot-spacing-m) + 16px - 1px);
	left: calc(-50% + 16px);
	width: calc(100% - 32px);
}

.e-36dc8444 > .box.horizontal.size-l > .step { padding: var(--ot-spacing-l) var(--ot-spacing-m); gap: var(--ot-spacing-s); }
.e-36dc8444 > .box.horizontal.size-l .step > .marker { width: 40px; height: 40px; font-size: 15px; }
.e-36dc8444 > .box.horizontal.size-l .step > .marker > i { font-size: 20px; }
.e-36dc8444 > .box.horizontal.size-l .step > .text > .label { font-size: 15px; }
.e-36dc8444 > .box.horizontal.size-l .step > .text > .description { font-size: 13px; }
.e-36dc8444 > .box.horizontal.size-l.connected > .step + .step::before
{
	top: calc(var(--ot-spacing-l) + 20px - 1px);
	left: calc(-50% + 20px);
	width: calc(100% - 40px);
}
/* ===== NAVIGATION TABS ===== */

.e-1a8b6ac1
{
	display: contents;
}

/* Box */

.e-1a8b6ac1 > .box
{
	display: flex;
	flex-direction: column;
}

/* Tabs nav */

.e-1a8b6ac1 > .box > .tabs
{
	display: flex;
	align-items: center;
	overflow-x: auto;
	scrollbar-width: none;
	overflow: hidden;
}

.e-1a8b6ac1 > .box > .tabs::-webkit-scrollbar
{
	display: none;
}

/* Tab base */

.e-1a8b6ac1 .tab
{
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--ot-spacing-s);
	white-space: nowrap;
	cursor: pointer;
	text-decoration: none;
	font-family: var(--ot-font-primary);
	font-weight: 500;
	color: var(--ot-text-2);
	user-select: none;
	transition: background var(--ot-transition), border-color var(--ot-transition), color var(--ot-transition);
}

.e-1a8b6ac1 .tab:hover:not(.disabled)
{
	color: var(--ot-text-1);
}

.e-1a8b6ac1 .tab.active
{
	color: var(--ot-text-1);
	font-weight: 600;
}

.e-1a8b6ac1 .tab.disabled
{
	cursor: not-allowed;
	opacity: 0.45;
}

/* Count badge */

.e-1a8b6ac1 .tab > .count
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	padding: 0 6px;
	background: var(--ot-bg-2);
	border-radius: 100px;
	font-size: 10.5px;
	font-weight: 600;
	color: var(--ot-text-3);
	line-height: 18px;
	font-family: var(--ot-font-primary);
}

.e-1a8b6ac1 .tab.active > .count
{
	background: var(--ot-brand-opacity);
	color: var(--ot-brand);
}

/* Content panels */

.e-1a8b6ac1 > .box > .body
{
	padding-top: var(--ot-spacing-l);
}

/* When a background or border is set, wrap the panel content in a card. */

.e-1a8b6ac1 > .box.border > .body,
.e-1a8b6ac1 > .box.bg-1 > .body,
.e-1a8b6ac1 > .box.bg-2 > .body,
.e-1a8b6ac1 > .box.bg-3 > .body,
.e-1a8b6ac1 > .box.bg-4 > .body
{
	margin-top: var(--ot-spacing-s);
	padding: var(--ot-spacing-m) var(--ot-spacing-l);
	border-radius: var(--ot-radius-l);
}

.e-1a8b6ac1 > .box.bg-1 > .body { background: var(--ot-bg-1); }
.e-1a8b6ac1 > .box.bg-2 > .body { background: var(--ot-bg-2); }
.e-1a8b6ac1 > .box.bg-3 > .body { background: var(--ot-bg-3); }
.e-1a8b6ac1 > .box.bg-4 > .body { background: var(--ot-bg-4); }

.e-1a8b6ac1 > .box.border > .body
{
	border: 1px solid var(--ot-bg-2-border);
}

.e-1a8b6ac1 > .box > .body .panel
{
	display: none;
}

.e-1a8b6ac1 > .box > .body .panel.active
{
	display: block;
	animation: e-1a8b6ac1-fade 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes e-1a8b6ac1-fade
{
	from { opacity: 0; transform: translateY(4px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ===== TONE: UNDERLINE ===== */

.e-1a8b6ac1 > .box.underline > .tabs
{
	gap: var(--ot-spacing-l);
}

.e-1a8b6ac1 > .box.underline > .tabs > .tab
{
	padding: 14px 0;
}

.e-1a8b6ac1 > .box.underline > .tabs > .tab.active::after
{
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--ot-brand);
	border-radius: 2px 2px 0 0;
}

/* ===== TONE: PILLS ===== */

.e-1a8b6ac1 > .box.pills > .tabs
{
	gap: var(--ot-spacing-s);
}

.e-1a8b6ac1 > .box.pills > .tabs > .tab
{
	padding: 8px 16px;
	border-radius: 100px;
	background: transparent;
	border: 1px solid transparent;
}

.e-1a8b6ac1 > .box.pills > .tabs > .tab:hover:not(.disabled)
{
	background: var(--ot-bg-2);
}

.e-1a8b6ac1 > .box.pills > .tabs > .tab.active
{
	background: var(--ot-brand-opacity);
	color: var(--ot-brand);
}

.e-1a8b6ac1 > .box.pills > .tabs > .tab.active > .count
{
	background: var(--ot-brand);
	color: white;
}

/* ===== TONE: CONTAINED ===== */

.e-1a8b6ac1 > .box.contained > .tabs
{
	padding: var(--ot-spacing-x);
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: var(--ot-radius-m);
	gap: 2px;
}

.e-1a8b6ac1 > .box.contained > .tabs > .tab
{
	padding: 8px 14px;
	border-radius: calc(var(--ot-radius-m) - 2px);
}

.e-1a8b6ac1 > .box.contained > .tabs > .tab:hover:not(.disabled)
{
	background: var(--ot-bg-2-hover);
}

.e-1a8b6ac1 > .box.contained > .tabs > .tab.active
{
	background: var(--ot-brand-opacity);
	color: var(--ot-brand);
}

.e-1a8b6ac1 > .box.contained > .tabs > .tab.active > .count
{
	background: var(--ot-brand);
	color: white;
}

/* ===== TONE: SEGMENTED ===== */

.e-1a8b6ac1 > .box.segmented > .tabs
{
	padding: 3px;
	background: var(--ot-bg-3);
	border-radius: 100px;
	gap: 0;
	display: inline-flex;
	align-self: flex-start;
}

.e-1a8b6ac1 > .box.segmented > .tabs > .tab
{
	padding: 8px 18px;
	border-radius: 100px;
	flex: 1;
}

.e-1a8b6ac1 > .box.border.segmented > .tabs { border: 1px solid var(--ot-bg-2-border); }
.e-1a8b6ac1 > .box.bg-1.border.segmented > .tabs { border-color: var(--ot-bg-1-border); }
.e-1a8b6ac1 > .box.bg-2.border.segmented > .tabs { border-color: var(--ot-bg-2-border); }
.e-1a8b6ac1 > .box.bg-3.border.segmented > .tabs { border-color: var(--ot-bg-3-border); }
.e-1a8b6ac1 > .box.bg-4.border.segmented > .tabs { border-color: var(--ot-bg-4-border); }

.e-1a8b6ac1 > .box.segmented > .tabs > .tab:hover:not(.disabled)
{
	color: var(--ot-text-1);
}

.e-1a8b6ac1 > .box.segmented > .tabs > .tab.active
{
	background: var(--ot-brand-opacity);
	color: var(--ot-brand);
}

.e-1a8b6ac1 > .box.segmented > .tabs > .tab.active > .count
{
	background: var(--ot-brand);
	color: white;
}

/* ===== BACKGROUND ===== */

/* underline / pills — bg on box */

.e-1a8b6ac1 > .box.bg-1.underline,
.e-1a8b6ac1 > .box.bg-1.pills { background: var(--ot-bg-1); padding: 0 var(--ot-spacing-m); }

.e-1a8b6ac1 > .box.bg-2.underline,
.e-1a8b6ac1 > .box.bg-2.pills { background: var(--ot-bg-2); padding: 0 var(--ot-spacing-m); }

.e-1a8b6ac1 > .box.bg-3.underline,
.e-1a8b6ac1 > .box.bg-3.pills { background: var(--ot-bg-3); padding: 0 var(--ot-spacing-m); }

.e-1a8b6ac1 > .box.bg-4.underline,
.e-1a8b6ac1 > .box.bg-4.pills { background: var(--ot-bg-4); padding: 0 var(--ot-spacing-m); }

/* contained — bg on track */

.e-1a8b6ac1 > .box.bg-1.contained > .tabs { background: var(--ot-bg-1); border-color: var(--ot-bg-1-border); }
.e-1a8b6ac1 > .box.bg-2.contained > .tabs { background: var(--ot-bg-2); border-color: var(--ot-bg-2-border); }
.e-1a8b6ac1 > .box.bg-3.contained > .tabs { background: var(--ot-bg-3); border-color: var(--ot-bg-3-border); }
.e-1a8b6ac1 > .box.bg-4.contained > .tabs { background: var(--ot-bg-4); border-color: var(--ot-bg-4-border); }

/* segmented — bg on track */

.e-1a8b6ac1 > .box.bg-1.segmented > .tabs { background: var(--ot-bg-1); }
.e-1a8b6ac1 > .box.bg-2.segmented > .tabs { background: var(--ot-bg-2); }
.e-1a8b6ac1 > .box.bg-3.segmented > .tabs { background: var(--ot-bg-3); }
.e-1a8b6ac1 > .box.bg-4.segmented > .tabs { background: var(--ot-bg-4); }

/* pills hover per bg */

.e-1a8b6ac1 > .box.bg-1.pills > .tabs > .tab:hover:not(.disabled) { background: var(--ot-bg-1-hover); }
.e-1a8b6ac1 > .box.bg-2.pills > .tabs > .tab:hover:not(.disabled) { background: var(--ot-bg-2-hover); }
.e-1a8b6ac1 > .box.bg-3.pills > .tabs > .tab:hover:not(.disabled) { background: var(--ot-bg-3-hover); }
.e-1a8b6ac1 > .box.bg-4.pills > .tabs > .tab:hover:not(.disabled) { background: var(--ot-bg-4-hover); }

/* contained hover per bg */

.e-1a8b6ac1 > .box.bg-1.contained > .tabs > .tab:hover:not(.disabled) { background: var(--ot-bg-1-hover); }
.e-1a8b6ac1 > .box.bg-2.contained > .tabs > .tab:hover:not(.disabled) { background: var(--ot-bg-2-hover); }
.e-1a8b6ac1 > .box.bg-3.contained > .tabs > .tab:hover:not(.disabled) { background: var(--ot-bg-3-hover); }
.e-1a8b6ac1 > .box.bg-4.contained > .tabs > .tab:hover:not(.disabled) { background: var(--ot-bg-4-hover); }

/* count badge per bg */

.e-1a8b6ac1 > .box.bg-1 .tab > .count { background: var(--ot-bg-2); }
.e-1a8b6ac1 > .box.bg-2 .tab > .count { background: var(--ot-bg-3); }
.e-1a8b6ac1 > .box.bg-3 .tab > .count { background: var(--ot-bg-4); }
.e-1a8b6ac1 > .box.bg-4 .tab > .count { background: var(--ot-bg-3); }

/* ===== BORDER ===== */

.e-1a8b6ac1 > .box.border.underline,
.e-1a8b6ac1 > .box.border.pills { border-bottom: 1px solid var(--ot-bg-2-border); }

.e-1a8b6ac1 > .box.bg-1.border.underline,
.e-1a8b6ac1 > .box.bg-1.border.pills { border-bottom-color: var(--ot-bg-1-border); }

.e-1a8b6ac1 > .box.bg-2.border.underline,
.e-1a8b6ac1 > .box.bg-2.border.pills { border-bottom-color: var(--ot-bg-2-border); }

.e-1a8b6ac1 > .box.bg-3.border.underline,
.e-1a8b6ac1 > .box.bg-3.border.pills { border-bottom-color: var(--ot-bg-3-border); }

.e-1a8b6ac1 > .box.bg-4.border.underline,
.e-1a8b6ac1 > .box.bg-4.border.pills { border-bottom-color: var(--ot-bg-4-border); }

/* ===== STRETCH ===== */

.e-1a8b6ac1 > .box.stretch > .tabs
{
	width: 100%;
}

.e-1a8b6ac1 > .box.stretch.segmented > .tabs
{
	align-self: stretch;
}

.e-1a8b6ac1 > .box.stretch > .tabs > .tab
{
	flex: 1;
}

/* ===== SIZE: S ===== */

.e-1a8b6ac1 > .box.size-s .tab
{
	font-size: 12px;
}

.e-1a8b6ac1 > .box.size-s .tab > i
{
	font-size: 14px;
}

.e-1a8b6ac1 > .box.size-s .tab > .count
{
	min-width: 16px;
	font-size: 10px;
	line-height: 16px;
	padding: 0 5px;
}

.e-1a8b6ac1 > .box.size-s.underline > .tabs > .tab { padding: 10px 0; }
.e-1a8b6ac1 > .box.size-s.underline > .tabs { gap: var(--ot-spacing-m); }
.e-1a8b6ac1 > .box.size-s.pills > .tabs > .tab { padding: 6px 12px; }
.e-1a8b6ac1 > .box.size-s.contained > .tabs > .tab { padding: 6px 10px; }
.e-1a8b6ac1 > .box.size-s.segmented > .tabs > .tab { padding: 6px 14px; }

/* ===== SIZE: M ===== */

.e-1a8b6ac1 > .box.size-m .tab
{
	font-size: 13px;
}

.e-1a8b6ac1 > .box.size-m .tab > i
{
	font-size: 16px;
}

/* ===== SIZE: L ===== */

.e-1a8b6ac1 > .box.size-l .tab
{
	font-size: 14px;
}

.e-1a8b6ac1 > .box.size-l .tab > i
{
	font-size: 18px;
}

.e-1a8b6ac1 > .box.size-l .tab > .count
{
	min-width: 22px;
	font-size: 11.5px;
	line-height: 22px;
	padding: 0 8px;
}

.e-1a8b6ac1 > .box.size-l.underline > .tabs > .tab { padding: 18px 0; }
.e-1a8b6ac1 > .box.size-l.pills > .tabs > .tab { padding: 12px 22px; }
.e-1a8b6ac1 > .box.size-l.contained > .tabs > .tab { padding: 12px 18px; }
.e-1a8b6ac1 > .box.size-l.segmented > .tabs > .tab { padding: 12px 24px; }
/* ===== STATUS CODE ===== */

.e-471f3f12
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 320px;
	padding: var(--ot-spacing-l);
}

/* Box */

.e-471f3f12 > .box
{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--ot-spacing-m);
	text-align: center;
	max-width: 480px;
}

/* Code number */

.e-471f3f12 > .box > .code
{
	font-family: var(--ot-font-secondary);
	font-size: 140px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.04em;
	color: var(--ot-brand);
	background: linear-gradient(180deg, var(--ot-brand) 0%, var(--ot-brand-hover) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-variation-settings: 'opsz' 144;
	user-select: none;
	margin-bottom: var(--ot-spacing-s);
}

/* Title */

.e-471f3f12 > .box > .title
{
	margin: 0;
	font-family: var(--ot-font-secondary);
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--ot-text-1);
	line-height: 1.15;
	font-variation-settings: 'opsz' 144;
}

/* Description */

.e-471f3f12 > .box > .description
{
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--ot-text-2);
	font-family: var(--ot-font-primary);
}

/* ===== COLOR ===== */

.e-471f3f12 > .box.brand > .code  { background: linear-gradient(180deg, var(--ot-brand) 0%, var(--ot-brand-hover) 100%);   -webkit-background-clip: text; background-clip: text; }
.e-471f3f12 > .box.blue > .code   { background: linear-gradient(180deg, var(--ot-blue) 0%, var(--ot-blue-hover) 100%);     -webkit-background-clip: text; background-clip: text; }
.e-471f3f12 > .box.red > .code    { background: linear-gradient(180deg, var(--ot-red) 0%, var(--ot-red-hover) 100%);       -webkit-background-clip: text; background-clip: text; }
.e-471f3f12 > .box.orange > .code { background: linear-gradient(180deg, var(--ot-orange) 0%, var(--ot-orange-hover) 100%); -webkit-background-clip: text; background-clip: text; }
.e-471f3f12 > .box.green > .code  { background: linear-gradient(180deg, var(--ot-green) 0%, var(--ot-green-hover) 100%);   -webkit-background-clip: text; background-clip: text; }

/* ===== SIZE ===== */

.e-471f3f12 > .box.size-s
{
	min-height: 240px;
	padding: var(--ot-spacing-m);
}

.e-471f3f12 > .box.size-s > .code        { font-size: 96px; }
.e-471f3f12 > .box.size-s > .title       { font-size: 20px; }
.e-471f3f12 > .box.size-s > .description { font-size: var(--ot-size-m); }

.e-471f3f12 > .box.size-m > .code  { font-size: 140px; }
.e-471f3f12 > .box.size-m > .title { font-size: 26px; }

.e-471f3f12 > .box.size-l
{
	min-height: 480px;
}

.e-471f3f12 > .box.size-l > .code        { font-size: 200px; letter-spacing: -0.05em; }
.e-471f3f12 > .box.size-l > .title       { font-size: 36px; }
.e-471f3f12 > .box.size-l > .description { font-size: 16px; max-width: 560px; }
/* ===== STATUS EMPTY ===== */

.e-631be738
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 320px;
	padding: var(--ot-spacing-l);
}

/* Box */

.e-631be738 > .box
{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--ot-spacing-m);
	text-align: center;
	max-width: 420px;
}

/* Circle */

.e-631be738 > .box > .circle
{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	margin-bottom: var(--ot-spacing-s);
}

.e-631be738 > .box > .circle::before
{
	content: '';
	position: absolute;
	inset: -8px;
	border-radius: 50%;
	opacity: 0.6;
}

.e-631be738 > .box > .circle > i
{
	font-size: 32px;
	font-variation-settings: 'wght' 400;
}

/* Title */

.e-631be738 > .box > .title
{
	margin: 0;
	font-family: var(--ot-font-secondary);
	font-weight: 500;
	font-size: 22px;
	letter-spacing: -0.01em;
	color: var(--ot-text-1);
	line-height: 1.2;
	font-variation-settings: 'opsz' 144;
}

/* Description */

.e-631be738 > .box > .description
{
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--ot-text-2);
	font-family: var(--ot-font-primary);
}

/* ===== COLOR ===== */

.e-631be738 > .box.brand > .circle { background: var(--ot-brand-opacity); color: var(--ot-brand); }
.e-631be738 > .box.brand > .circle::before { border: 1px dashed var(--ot-brand-opacity); }

.e-631be738 > .box.blue > .circle { background: var(--ot-blue-opacity); color: var(--ot-blue); }
.e-631be738 > .box.blue > .circle::before { border: 1px dashed var(--ot-blue-opacity); }

.e-631be738 > .box.red > .circle { background: var(--ot-red-opacity); color: var(--ot-red); }
.e-631be738 > .box.red > .circle::before { border: 1px dashed var(--ot-red-opacity); }

.e-631be738 > .box.orange > .circle { background: var(--ot-orange-opacity); color: var(--ot-orange); }
.e-631be738 > .box.orange > .circle::before { border: 1px dashed var(--ot-orange-opacity); }

.e-631be738 > .box.green > .circle { background: var(--ot-green-opacity); color: var(--ot-green); }
.e-631be738 > .box.green > .circle::before { border: 1px dashed var(--ot-green-opacity); }

/* ===== SIZE ===== */

.e-631be738 > .box.size-s
{
	max-width: 360px;
}

.e-631be738 > .box.size-s > .circle { width: 56px; height: 56px; }
.e-631be738 > .box.size-s > .circle > i { font-size: 26px; }
.e-631be738 > .box.size-s > .title { font-size: 18px; }
.e-631be738 > .box.size-s > .description { font-size: var(--ot-size-m); }

.e-631be738 > .box.size-l
{
	max-width: 500px;
}

.e-631be738 > .box.size-l > .circle { width: 96px; height: 96px; }
.e-631be738 > .box.size-l > .circle::before { inset: -10px; }
.e-631be738 > .box.size-l > .circle > i { font-size: 44px; }
.e-631be738 > .box.size-l > .title { font-size: 28px; }
.e-631be738 > .box.size-l > .description { font-size: 15px; }
/* ===== STATUS LOADING ===== */

.e-691b81f7
{
	display: contents;
}

/* Box */

.e-691b81f7 > .box
{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--ot-spacing-m);
	width: 100%;
	min-height: 320px;
	padding: var(--ot-spacing-l);
}

/* Circle */

.e-691b81f7 > .box > .circle
{
	position: relative;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 2px solid var(--ot-bg-3-border);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: e-691b81f7-pulse 2.4s ease-in-out infinite;
}

.e-691b81f7 > .box > .circle::before
{
	content: '';
	position: absolute;
	inset: -10px;
	border-radius: 50%;
	border: 1px dashed var(--ot-bg-3-border);
	opacity: 0.5;
	animation: e-691b81f7-pulse 2.4s ease-in-out infinite reverse;
}

.e-691b81f7 > .box > .circle > .spin
{
	font-size: 32px;
	animation: e-691b81f7-spin 0.8s linear infinite;
}

/* Text */

.e-691b81f7 > .box > .text
{
	font-size: var(--ot-size-m);
	color: var(--ot-text-2);
	font-family: var(--ot-font-primary);
}

/* ===== COLOR ===== */

.e-691b81f7 > .box.brand > .circle { border-color: var(--ot-brand-opacity); }
.e-691b81f7 > .box.brand > .circle::before { border-color: var(--ot-brand-opacity); }
.e-691b81f7 > .box.brand > .circle > .spin { color: var(--ot-brand); }

.e-691b81f7 > .box.blue > .circle { border-color: var(--ot-blue-opacity); }
.e-691b81f7 > .box.blue > .circle::before { border-color: var(--ot-blue-opacity); }
.e-691b81f7 > .box.blue > .circle > .spin { color: var(--ot-blue); }

.e-691b81f7 > .box.red > .circle { border-color: var(--ot-red-opacity); }
.e-691b81f7 > .box.red > .circle::before { border-color: var(--ot-red-opacity); }
.e-691b81f7 > .box.red > .circle > .spin { color: var(--ot-red); }

.e-691b81f7 > .box.orange > .circle { border-color: var(--ot-orange-opacity); }
.e-691b81f7 > .box.orange > .circle::before { border-color: var(--ot-orange-opacity); }
.e-691b81f7 > .box.orange > .circle > .spin { color: var(--ot-orange); }

.e-691b81f7 > .box.green > .circle { border-color: var(--ot-green-opacity); }
.e-691b81f7 > .box.green > .circle::before { border-color: var(--ot-green-opacity); }
.e-691b81f7 > .box.green > .circle > .spin { color: var(--ot-green); }

/* ===== SIZE ===== */

.e-691b81f7 > .box.size-s
{
	min-height: 200px;
	padding: var(--ot-spacing-m);
}

.e-691b81f7 > .box.size-s > .circle { width: 56px; height: 56px; }
.e-691b81f7 > .box.size-s > .circle > .spin { font-size: 24px; }
.e-691b81f7 > .box.size-s > .text { font-size: var(--ot-size-s); }

.e-691b81f7 > .box.size-l
{
	min-height: 440px;
}

.e-691b81f7 > .box.size-l > .circle { width: 104px; height: 104px; }
.e-691b81f7 > .box.size-l > .circle > .spin { font-size: 44px; }
.e-691b81f7 > .box.size-l > .text { font-size: 15px; }

/* ===== AUTO ===== */

.e-691b81f7 > .box.auto
{
	min-height: auto;
}

/* ===== ANIMATIONS ===== */

@keyframes e-691b81f7-spin
{
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@keyframes e-691b81f7-pulse
{
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.02); }
}
/* ===== VARIABLE BUILDER ===== */

.e-66c5db60
{
	display: contents;
}

/* Box */

.e-66c5db60 > .box
{
	display: flex;
	flex-direction: column;
	width: 70vw;
	max-width: 1000px;
	max-height: 90vh;
	background: var(--ot-bg-1);
	border: 1px solid var(--ot-bg-1-border);
	border-radius: var(--ot-radius-l);
	overflow: hidden;
}

/* ===== HEAD ===== */

.e-66c5db60 > .box > .head
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	padding: var(--ot-spacing-m);
	border-bottom: 1px solid var(--ot-bg-1-border);
	flex-shrink: 0;
}

.e-66c5db60 > .box > .head > .head-icon
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: var(--ot-brand-opacity);
	border-radius: var(--ot-radius-s);
	color: var(--ot-brand);
	flex-shrink: 0;
}

.e-66c5db60 > .box > .head > .head-icon > i
{
	font-size: 16px;
}

.e-66c5db60 > .box > .head > .head-text
{
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.e-66c5db60 > .box > .head > .head-text > .head-eyebrow
{
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ot-text-3);
}

.e-66c5db60 > .box > .head > .head-text > .head-title
{
	font-size: var(--ot-size-m);
	font-weight: 600;
	color: var(--ot-text-1);
}

.e-66c5db60 > .box > .head > .head-close
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: var(--ot-height-s);
	height: var(--ot-height-s);
	padding: 0;
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: var(--ot-radius-s);
	color: var(--ot-text-2);
	cursor: pointer;
	outline: none;
	transition: background var(--ot-transition), color var(--ot-transition);
}

.e-66c5db60 > .box > .head > .head-close:hover
{
	background: var(--ot-bg-3);
	color: var(--ot-text-1);
}

.e-66c5db60 > .box > .head > .head-close > i
{
	font-size: 14px;
}

/* ===== BODY ===== */

.e-66c5db60 > .box > .body
{
	flex: 1;
	display: grid;
	grid-template-columns: 320px 1fr;
	min-height: 0;
	overflow: hidden;
}

/* ===== PICKER ===== */

.e-66c5db60 > .box > .body > .picker
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
	padding: var(--ot-spacing-m);
	background: var(--ot-bg-2);
	border-right: 1px solid var(--ot-bg-1-border);
	min-height: 0;
	overflow: hidden;
}

.e-66c5db60 > .box > .body > .picker > .picker-head
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-shrink: 0;
}

.e-66c5db60 > .box > .body > .picker > .picker-head > .picker-label
{
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ot-text-3);
}

.e-66c5db60 > .box > .body > .picker > .picker-head > .picker-count
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 18px;
	padding: 0 6px;
	background: var(--ot-bg-3);
	border-radius: 100px;
	font-size: 10px;
	font-weight: 700;
	color: var(--ot-text-2);
}

/* Picker search */

.e-66c5db60 > .box > .body > .picker > .picker-search
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	flex-shrink: 0;
	padding: 0 var(--ot-spacing-s);
	height: var(--ot-height-s);
	background: var(--ot-bg-1);
	border: 1px solid var(--ot-bg-1-border);
	border-radius: var(--ot-radius-s);
	transition: border-color var(--ot-transition);
}

.e-66c5db60 > .box > .body > .picker > .picker-search:focus-within
{
	border-color: var(--ot-brand);
}

.e-66c5db60 > .box > .body > .picker > .picker-search > i
{
	font-size: 14px;
	color: var(--ot-text-3);
	flex-shrink: 0;
}

.e-66c5db60 > .box > .body > .picker > .picker-search > input
{
	flex: 1;
	min-width: 0;
	padding: 0;
	background: transparent;
	border: none;
	outline: none;
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
	color: var(--ot-text-1);
}

.e-66c5db60 > .box > .body > .picker > .picker-search > input::placeholder
{
	color: var(--ot-text-3);
}

/* Picker tree */

.e-66c5db60 > .box > .body > .picker > .picker-tree
{
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1px;
	overflow-y: auto;
	min-height: 0;
	scrollbar-width: thin;
	scrollbar-color: var(--ot-bg-3) transparent;
}

.e-66c5db60 > .box > .body > .picker > .picker-tree::-webkit-scrollbar
{
	width: 6px;
}

.e-66c5db60 > .box > .body > .picker > .picker-tree::-webkit-scrollbar-thumb
{
	background: var(--ot-bg-3);
	border-radius: 100px;
}

/* Node */

.e-66c5db60 .node
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	width: 100%;
	padding: 0 var(--ot-spacing-s) 0 calc(var(--ot-spacing-s) + var(--depth, 0) * 14px);
	height: 28px;
	background: transparent;
	border: 1px solid transparent;
	border-radius: var(--ot-radius-s);
	color: var(--ot-text-1);
	font-family: var(--ot-font-primary);
	font-size: var(--ot-size-s);
	text-align: left;
	cursor: pointer;
	outline: none;
	transition: background var(--ot-transition), border-color var(--ot-transition);
}

.e-66c5db60 .node:hover
{
	background: var(--ot-bg-3);
}

.e-66c5db60 .node.active
{
	background: var(--ot-brand-opacity);
	border-color: var(--ot-brand-opacity);
}

/* Chevron */

.e-66c5db60 .node > .node-chevron
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	color: var(--ot-text-3);
}

.e-66c5db60 .node > .node-chevron > i
{
	font-size: 14px;
	transition: transform var(--ot-transition);
}

.e-66c5db60 .node.expandable.expanded > .node-chevron > i
{
	transform: rotate(90deg);
}

/* Key */

.e-66c5db60 .node > .node-key
{
	font-family: var(--ot-font-mono, ui-monospace, Menlo, Consolas, monospace);
	font-size: var(--ot-size-s);
	font-weight: 600;
	color: var(--ot-text-1);
	flex-shrink: 0;
}

/* Preview value */

.e-66c5db60 .node > .node-preview
{
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-family: var(--ot-font-mono, ui-monospace, Menlo, Consolas, monospace);
	font-size: var(--ot-size-s);
	color: var(--ot-text-3);
}

/* Type chip */

.e-66c5db60 .node > .node-type
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 2px 6px;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: 100px;
	background: var(--ot-bg-1);
	color: var(--ot-text-3);
}

.e-66c5db60 .node.type-object  > .node-type { background: rgba(56,189,248,0.12);  color: var(--ot-blue); }
.e-66c5db60 .node.type-array   > .node-type { background: rgba(251,146,60,0.12);  color: var(--ot-orange); }
.e-66c5db60 .node.type-string  > .node-type { background: rgba(52,211,153,0.12);  color: var(--ot-green); }
.e-66c5db60 .node.type-number  > .node-type { background: rgba(226,112,85,0.12);  color: var(--ot-brand); }
.e-66c5db60 .node.type-boolean > .node-type { background: rgba(244,63,94,0.12);   color: var(--ot-red); }
.e-66c5db60 .node.type-date    > .node-type { background: var(--ot-bg-3);          color: var(--ot-text-2); }
.e-66c5db60 .node.type-null    > .node-type { background: var(--ot-bg-3);          color: var(--ot-text-3); }

/* Empty */

.e-66c5db60 > .box > .body > .picker > .picker-tree > .picker-empty,
.e-66c5db60 > .box > .body > .picker .picker-empty
{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: var(--ot-spacing-m);
	border: 1px dashed var(--ot-bg-2-border);
	border-radius: var(--ot-radius-s);
	color: var(--ot-text-3);
	font-size: var(--ot-size-s);
}

.e-66c5db60 .picker-empty > i
{
	font-size: 18px;
}

/* ===== EDITOR ===== */

.e-66c5db60 > .box > .body > .editor
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-m);
	padding: var(--ot-spacing-m);
	overflow-y: auto;
	min-height: 0;
}

.e-66c5db60 > .box > .body > .editor > .editor-field
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
}

.e-66c5db60 > .box > .body > .editor > .editor-field > .editor-label
{
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ot-text-3);
}

.e-66c5db60 > .box > .body > .editor > .editor-field > .editor-area
{
	width: 100%;
	min-height: 96px;
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: var(--ot-radius-m);
	color: var(--ot-text-1);
	font-family: var(--ot-font-mono, ui-monospace, Menlo, Consolas, monospace);
	font-size: var(--ot-size-m);
	line-height: 1.5;
	resize: vertical;
	outline: none;
	transition: background var(--ot-transition), border-color var(--ot-transition), box-shadow var(--ot-transition);
}

.e-66c5db60 > .box > .body > .editor > .editor-field > .editor-area::placeholder
{
	color: var(--ot-text-3);
	font-family: var(--ot-font-primary);
}

.e-66c5db60 > .box > .body > .editor > .editor-field > .editor-area:focus
{
	border-color: var(--ot-brand);
	box-shadow: 0 0 0 1px var(--ot-brand-opacity);
}

.e-66c5db60 > .box > .body > .editor > .editor-field > .editor-hint
{
	font-size: var(--ot-size-s);
	color: var(--ot-text-3);
	line-height: 1.5;
}

.e-66c5db60 > .box > .body > .editor > .editor-field > .editor-hint > code
{
	padding: 1px 6px;
	background: var(--ot-bg-2);
	border-radius: var(--ot-radius-s);
	font-family: var(--ot-font-mono, ui-monospace, Menlo, Consolas, monospace);
	font-size: 11px;
	color: var(--ot-text-2);
}

/* ===== QUICK INSERTS ===== */

.e-66c5db60 > .box > .body > .editor > .editor-quick
{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--ot-spacing-s);
}

.e-66c5db60 > .box > .body > .editor > .editor-quick > .editor-quick-label
{
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ot-text-3);
}

.e-66c5db60 > .box > .body > .editor > .editor-quick > .editor-quick-item
{
	display: inline-flex;
	align-items: center;
	padding: 0 var(--ot-spacing-s);
	height: 24px;
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: 100px;
	font-family: var(--ot-font-mono, ui-monospace, Menlo, Consolas, monospace);
	font-size: var(--ot-size-s);
	color: var(--ot-text-2);
	cursor: pointer;
	outline: none;
	transition: background var(--ot-transition), border-color var(--ot-transition), color var(--ot-transition);
}

.e-66c5db60 > .box > .body > .editor > .editor-quick > .editor-quick-item:hover
{
	background: var(--ot-brand-opacity);
	border-color: var(--ot-brand-opacity);
	color: var(--ot-brand);
}

/* ===== PREVIEW ===== */

.e-66c5db60 > .box > .body > .editor > .editor-field > .editor-preview
{
	display: flex;
	align-items: flex-start;
	gap: var(--ot-spacing-s);
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	border: 1px solid transparent;
	border-radius: var(--ot-radius-m);
	font-size: var(--ot-size-m);
}

.e-66c5db60 > .box > .body > .editor > .editor-field > .editor-preview > i
{
	font-size: 16px;
	flex-shrink: 0;
	margin-top: 2px;
}

.e-66c5db60 > .box > .body > .editor > .editor-field > .editor-preview > pre
{
	flex: 1;
	margin: 0;
	font-family: var(--ot-font-mono, ui-monospace, Menlo, Consolas, monospace);
	font-size: var(--ot-size-m);
	line-height: 1.5;
	white-space: pre-wrap;
	word-break: break-word;
	color: var(--ot-text-1);
}

.e-66c5db60 > .box > .body > .editor > .editor-field > .editor-preview.ok
{
	background: rgba(52,211,153,0.08);
	border-color: rgba(52,211,153,0.18);
	color: var(--ot-text-1);
}

.e-66c5db60 > .box > .body > .editor > .editor-field > .editor-preview.ok > i
{
	color: var(--ot-green);
}

.e-66c5db60 > .box > .body > .editor > .editor-field > .editor-preview.error
{
	background: rgba(244,63,94,0.08);
	border-color: rgba(244,63,94,0.18);
	color: var(--ot-red);
}

.e-66c5db60 > .box > .body > .editor > .editor-field > .editor-preview.error > i
{
	color: var(--ot-red);
}

.e-66c5db60 > .box > .body > .editor > .editor-field > .editor-preview.empty
{
	background: var(--ot-bg-2);
	border: 1px dashed var(--ot-bg-2-border);
	color: var(--ot-text-3);
}

/* ===== FOOT ===== */

.e-66c5db60 > .box > .foot
{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: var(--ot-spacing-s);
	padding: var(--ot-spacing-m);
	border-top: 1px solid var(--ot-bg-1-border);
	flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px)
{
	.e-66c5db60 > .box
	{
		width: 95vw;
		max-height: 95vh;
	}

	.e-66c5db60 > .box > .body
	{
		grid-template-columns: 1fr;
	}

	.e-66c5db60 > .box > .body > .picker
	{
		border-right: none;
		border-bottom: 1px solid var(--ot-bg-1-border);
		max-height: 40vh;
	}
}
/* ===== DASHBOARD CHART ===== */

.e-2c458a8f
{
	display: contents;
}

.e-2c458a8f > .box
{
	display: flex;
	align-items: stretch;
	gap: var(--ot-spacing-s);
	flex: 1;
	min-height: 90px;
}

.e-2c458a8f .bar
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-x);
	flex: 1;
	min-width: 0;
}

.e-2c458a8f .bar > .holder
{
	display: flex;
	align-items: flex-end;
	flex: 1;
	border-radius: var(--ot-radius-s);
	background: var(--ot-bg-2);
}

.e-2c458a8f .bar > .holder > .fill
{
	width: 100%;
	border-radius: var(--ot-radius-s);
	background: linear-gradient(180deg, var(--ot-brand-border), var(--ot-brand));
	transition: height var(--ot-transition-slow);
}

.e-2c458a8f .bar > .label
{
	font-size: 10px;
	font-weight: 500;
	color: var(--ot-text-3);
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
/* ===== DASHBOARD LIST ===== */

.e-27d89c33
{
	display: contents;
}

.e-27d89c33 > .box
{
	display: flex;
	flex-direction: column;
	flex: 1;
	margin: 0 calc(var(--ot-spacing-s) * -1);
}

.e-27d89c33 .row
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	padding: 7px var(--ot-spacing-s);
	border-radius: var(--ot-radius-s);
	text-decoration: none;
	transition: background var(--ot-transition);
}

.e-27d89c33 .row:hover
{
	background: var(--ot-bg-2);
}

.e-27d89c33 .row > i
{
	font-size: 17px;
	color: var(--ot-text-3);
}

.e-27d89c33 .row > .label
{
	flex: 1;
	min-width: 0;
	font-size: var(--ot-size-m);
	color: var(--ot-text-2);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.e-27d89c33 .row > .value
{
	font-size: var(--ot-size-s);
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	color: var(--ot-text-1);
	background: var(--ot-bg-3);
	border-radius: 999px;
	padding: 2px 9px;
}
/* ===== DASHBOARD STAT ===== */

.e-27d5467d
{
	display: contents;
}

.e-27d5467d > .box
{
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1;
	justify-content: flex-end;
}

.e-27d5467d .row
{
	display: flex;
	align-items: baseline;
	gap: var(--ot-spacing-s);
}

.e-27d5467d .value
{
	font-family: var(--ot-font-secondary);
	font-size: 34px;
	font-weight: 500;
	letter-spacing: -0.02em;
	color: var(--ot-text-1);
	font-variation-settings: 'opsz' 144;
	line-height: 1;
}

.e-27d5467d .delta
{
	display: inline-flex;
	align-items: center;
	gap: 3px;
	padding: 2px 8px;
	font-size: 11px;
	font-weight: 600;
	border-radius: 999px;
}

.e-27d5467d .delta i
{
	font-size: 13px;
}

.e-27d5467d .delta.up
{
	color: var(--ot-green);
	background: var(--ot-green-opacity);
}

.e-27d5467d .delta.down
{
	color: var(--ot-red);
	background: var(--ot-red-opacity);
}

.e-27d5467d .label
{
	font-size: var(--ot-size-s);
	color: var(--ot-text-3);
}

.e-27d5467d svg
{
	display: block;
	width: 100%;
	height: 30px;
	margin-top: var(--ot-spacing-s);
	color: var(--ot-brand);
	opacity: 0.9;
}
/* ===== DASHBOARD WIDGETS ===== */

.e-54e3b920
{
	display: contents;
}

/* Box — dot mesh podloga preko celog area */

.e-54e3b920 > .box
{
	height: 100%;
	padding: var(--ot-spacing-l);
	overflow: auto;
	background-color: var(--ot-bg-2);
	background-image: radial-gradient(circle at 1px 1px, var(--ot-bg-4-border) 1px, transparent 0);
	background-size: 22px 22px;
}

/* ===== GRID ===== */

.e-54e3b920 .widgets
{
	display: grid;
	grid-auto-rows: minmax(150px, auto);
	grid-auto-flow: dense;
	gap: var(--ot-spacing-m);
	max-width: 1280px;
	margin: 0 auto;
}

.e-54e3b920 .widgets.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.e-54e3b920 .widgets.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.e-54e3b920 .widgets.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.e-54e3b920 .widgets.cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

/* ===== WIDGET ===== */

.e-54e3b920 .widget
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-m);
	padding: var(--ot-spacing-m);
	background: var(--ot-bg-1);
	border: 1px solid var(--ot-bg-1-border);
	border-radius: var(--ot-radius-l);
	transition: border-color var(--ot-transition);
}

/* ===== HEADER ===== */

.e-54e3b920 .widget > .header
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
}

/* Icon chip */

.e-54e3b920 .widget > .header > .icon
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: var(--ot-radius-m);
	background: var(--ot-brand-opacity);
	color: var(--ot-brand);
	flex-shrink: 0;
}

.e-54e3b920 .widget > .header > .icon > i
{
	font-size: 20px;
}

/* Text */

.e-54e3b920 .widget > .header > .text
{
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
	flex: 1;
}

.e-54e3b920 .widget .title
{
	margin: 0;
	font-family: var(--ot-font-secondary);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--ot-text-1);
	font-variation-settings: 'opsz' 144;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.e-54e3b920 .widget .description
{
	margin: 0;
	font-size: var(--ot-size-s);
	color: var(--ot-text-3);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ===== SKELETON ===== */

.e-54e3b920 .widget > .skeleton
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
	flex: 1;
	justify-content: center;
}

.e-54e3b920 .widget > .skeleton > .line
{
	height: 12px;
	border-radius: 6px;
	background: linear-gradient(90deg, var(--ot-bg-3) 25%, var(--ot-bg-4) 50%, var(--ot-bg-3) 75%);
	background-size: 200% 100%;
	animation: e-54e3b920-shimmer 1.2s ease-in-out infinite;
}

.e-54e3b920 .widget > .skeleton > .line.short
{
	width: 55%;
}

@keyframes e-54e3b920-shimmer
{
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

/* ===== CUSTOM CONTENT ===== */

.e-54e3b920 .widget > .content
{
	flex: 1;
	font-size: var(--ot-size-m);
	line-height: 1.55;
	color: var(--ot-text-2);
}

.e-54e3b920 .widget > .content p
{
	margin: 0;
}

/* ===== FOOTER ===== */

.e-54e3b920 .widget > .footer
{
	display: flex;
	flex-wrap: wrap;
	gap: var(--ot-spacing-s);
	margin-top: auto;
	padding-top: var(--ot-spacing-s);
	border-top: 1px solid var(--ot-bg-2-border);
}

.e-54e3b920 .widget .action
{
	display: inline-flex;
	align-items: center;
	gap: 5px;
	height: var(--ot-height-s);
	padding: 0 14px;
	font-size: var(--ot-size-s);
	font-weight: 500;
	color: var(--ot-text-2);
	background: var(--ot-bg-1);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: 999px;
	text-decoration: none;
	transition: background var(--ot-transition), color var(--ot-transition), border-color var(--ot-transition);
}

.e-54e3b920 .widget .action:hover
{
	color: var(--ot-brand);
	background: var(--ot-brand-opacity);
	border-color: var(--ot-brand-border);
}

.e-54e3b920 .widget .action i
{
	font-size: 16px;
}
.e-19663623
{
	display: contents;
}

.e-19663623 .group-body .options
{
	max-height: 250px;
	overflow-y: auto;
}
.e-2262da0c
{
	display: block;
	height: 100%;
}

.e-2262da0c > .holder
{
	height: 100%;
	padding: var(--ot-spacing-m);
	padding-left: 0;
}
.e-5281e6a5 .card
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-m);
	padding: var(--ot-spacing-m);
	background: var(--ot-bg-1);
	border: 1px solid var(--ot-bg-1-border);
	border-radius: var(--ot-radius-m);
}

.e-5281e6a5 .card > .icon
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--ot-height-l);
	height: var(--ot-height-l);
	border-radius: var(--ot-radius-s);
	flex-shrink: 0;
}

.e-5281e6a5 .card.color-brand  > .icon { background: var(--ot-brand-opacity);  color: var(--ot-brand); }
.e-5281e6a5 .card.color-blue   > .icon { background: var(--ot-blue-opacity);   color: var(--ot-blue); }
.e-5281e6a5 .card.color-red    > .icon { background: var(--ot-red-opacity);    color: var(--ot-red); }
.e-5281e6a5 .card.color-orange > .icon { background: var(--ot-orange-opacity); color: var(--ot-orange); }
.e-5281e6a5 .card.color-green  > .icon { background: var(--ot-green-opacity);  color: var(--ot-green); }

.e-5281e6a5 .card > .text
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-x);
	min-width: 0;
}

.e-5281e6a5 .card > .text > .label
{
	font-size: var(--ot-size-s);
	color: var(--ot-text-2);
}

.e-5281e6a5 .card > .text > .value
{
	font-family: var(--ot-font-secondary);
	font-size: var(--ot-size-l);
	color: var(--ot-text-1);
}
.e-9706fa6
{
	display: block;
}
.e-6a2ccec2
{
    display: contents;
}
.e-600372a1
{
	display: block;
	width: 100%;
}

.e-600372a1 > .holder
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
	width: 100%;
}

/* Empty */

.e-600372a1 > .holder > .empty
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	padding: var(--ot-spacing-m);
	border: 1px dashed var(--ot-bg-3-border);
	border-radius: var(--ot-radius-m);
	color: var(--ot-text-3);
	font-size: var(--ot-size-s);
}

.e-600372a1 > .holder > .empty > i
{
	font-size: 20px;
}

/* List */

.e-600372a1 > .holder > .list
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-x);
}

.e-600372a1 > .holder > .list > .card
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ot-spacing-s);
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: var(--ot-radius-m);
	transition: border-color var(--ot-transition);
}

.e-600372a1 > .holder > .list > .card:hover
{
	border-color: var(--ot-bg-3-border);
}

.e-600372a1 > .holder > .list > .card > .info
{
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.e-600372a1 > .holder > .list > .card > .info > .name
{
	font-size: var(--ot-size-m);
	font-weight: 600;
	color: var(--ot-text-1);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.e-600372a1 > .holder > .list > .card > .info > .meta
{
	font-size: var(--ot-size-s);
	color: var(--ot-text-3);
}

.e-600372a1 > .holder > .list > .card > .actions
{
	display: flex;
	gap: 2px;
	flex-shrink: 0;
}

.e-600372a1 > .holder > .list > .card > .actions > .action
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: none;
	background: transparent;
	border-radius: var(--ot-radius-s);
	color: var(--ot-text-3);
	cursor: pointer;
	transition: background var(--ot-transition), color var(--ot-transition);
}

.e-600372a1 > .holder > .list > .card > .actions > .action:hover
{
	background: var(--ot-bg-3);
	color: var(--ot-text-1);
}

.e-600372a1 > .holder > .list > .card > .actions > .action.danger:hover
{
	background: var(--ot-red-opacity);
	color: var(--ot-red);
}

.e-600372a1 > .holder > .list > .card > .actions > .action > i
{
	font-size: 18px;
}

/* Add */

.e-600372a1 > .holder > .add
{
	display: inline-flex;
	align-items: center;
	gap: var(--ot-spacing-x);
	align-self: flex-start;
	padding: var(--ot-spacing-x) var(--ot-spacing-s);
	border: 1px solid var(--ot-bg-2-border);
	background: var(--ot-bg-1);
	border-radius: var(--ot-radius-s);
	color: var(--ot-brand);
	font-size: var(--ot-size-s);
	font-weight: 600;
	cursor: pointer;
	transition: border-color var(--ot-transition), background var(--ot-transition);
}

.e-600372a1 > .holder > .add:hover
{
	border-color: var(--ot-brand-border);
	background: var(--ot-brand-opacity);
}

.e-600372a1 > .holder > .add > i
{
	font-size: 18px;
}

.e-600372a1 > .holder > .add-row
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-x);
}

.e-600372a1 > .holder > .add-row > .cancel-add
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	flex-shrink: 0;
	border: none;
	background: transparent;
	border-radius: var(--ot-radius-s);
	color: var(--ot-text-3);
	cursor: pointer;
}

.e-600372a1 > .holder > .add-row > .cancel-add:hover
{
	color: var(--ot-text-1);
}

/* ===== Configure modal (renderuje se van scope-a, na body) ===== */

.e-600372a1-modal
{
	display: flex;
	flex-direction: column;
	width: 100%;
	max-height: 80vh;
	background: var(--ot-bg-1);
	border-radius: var(--ot-radius-l);
	overflow: hidden;
}

.e-600372a1-modal > .head
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ot-spacing-s);
	padding: var(--ot-spacing-m);
	border-bottom: 1px solid var(--ot-bg-2-border);
}

.e-600372a1-modal > .head > .title
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	font-family: var(--ot-font-secondary);
	font-size: 18px;
	font-weight: 600;
	color: var(--ot-text-1);
}

.e-600372a1-modal > .head > .title > i
{
	font-size: 20px;
	color: var(--ot-brand);
}

.e-600372a1-modal > .head > .close
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: none;
	background: transparent;
	border-radius: var(--ot-radius-s);
	color: var(--ot-text-3);
	cursor: pointer;
	transition: background var(--ot-transition), color var(--ot-transition);
}

.e-600372a1-modal > .head > .close:hover
{
	background: var(--ot-bg-2);
	color: var(--ot-text-1);
}

.e-600372a1-modal > .body
{
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	padding: var(--ot-spacing-m);
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
}

.e-600372a1-modal > .body > .hint
{
	margin: 0;
	font-size: var(--ot-size-s);
	color: var(--ot-text-3);
	line-height: 1.5;
}

.e-600372a1-modal > .foot
{
	display: flex;
	justify-content: flex-end;
	gap: var(--ot-spacing-s);
	padding: var(--ot-spacing-m);
	border-top: 1px solid var(--ot-bg-2-border);
}
.e-2a8d7230
{
    display: contents;
}
.e-2a6b4ea3
{
	display: block;
}

.e-2a6b4ea3 > .holder
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-m);
	padding: 0 var(--ot-spacing-m);
	background: var(--ot-bg-1);
	border-bottom: 1px solid var(--ot-bg-1-border);
}

.e-2a6b4ea3 > .holder > .record
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	flex-shrink: 0;
	min-width: 0;
	padding: var(--ot-spacing-s) 0;
}

.e-2a6b4ea3 > .holder > .record > .record-back
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: var(--ot-radius-m);
	border: 1px solid var(--ot-bg-2-border);
	background: var(--ot-bg-1);
	color: var(--ot-text-2);
	flex-shrink: 0;
	transition: background var(--ot-transition), color var(--ot-transition), border-color var(--ot-transition);
}

.e-2a6b4ea3 > .holder > .record > .record-back:hover
{
	background: var(--ot-bg-2);
	color: var(--ot-text-1);
	border-color: var(--ot-bg-3-border);
}

.e-2a6b4ea3 > .holder > .record > .record-back > i
{
	font-size: 19px;
}

.e-2a6b4ea3 > .holder > .record > .record-icon
{
	font-size: 22px;
	color: var(--ot-brand);
	flex-shrink: 0;
}

.e-2a6b4ea3 > .holder > .record > .record-title
{
	font-family: var(--ot-font-secondary);
	font-size: 20px;
	font-weight: 600;
	color: var(--ot-text-1);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 480px;
}

.e-2a6b4ea3 > .holder > .record + .tabs::before
{
	content: '';
	width: 1px;
	height: 20px;
	margin-right: var(--ot-spacing-m);
	background: var(--ot-bg-2-border);
	flex-shrink: 0;
}

.e-2a6b4ea3 > .holder > .tabs
{
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.ot-page[data-page^="template-2-"]
{
	--ot-orange: rgba(241, 223, 17, 1);
	--ot-orange-border: rgba(241, 223, 17, 1);
	--ot-orange-opacity: rgba(241, 223, 17, 0.18);
	--ot-orange-hover: rgba(34, 33, 87, 1);

	--t3-accent-fill-hover: color-mix(in srgb, var(--ot-orange) 86%, rgb(0, 0, 0));

	--t3-navy: rgb(44, 41, 112);
	--t3-navy-deep: color-mix(in srgb, var(--t3-navy) 78%, rgb(0, 0, 0));
	--t3-navy-line: color-mix(in srgb, var(--t3-navy) 18%, transparent);
	--t3-navy-veil: color-mix(in srgb, var(--t3-navy) 78%, transparent);
	--t3-navy-veil-mid: color-mix(in srgb, var(--t3-navy) 45%, transparent);
	--t3-navy-veil-thin: color-mix(in srgb, var(--t3-navy) 10%, transparent);
	--t3-sky: color-mix(in srgb, var(--t3-navy) 9%, var(--ot-bg-1));
	--t3-sand: color-mix(in srgb, var(--ot-orange) 7%, var(--ot-bg-1));
	--t3-skew: -14deg;
	--t3-skew-back: 14deg;
	--t3-shadow-card: 0 10px 28px color-mix(in srgb, var(--t3-navy) 14%, transparent);
	--t3-shadow-card-hover: 0 18px 42px color-mix(in srgb, var(--t3-navy) 22%, transparent);
	--t3-shadow-dark: 0 12px 30px color-mix(in srgb, var(--ot-text-1) 40%, transparent);
	--t3-shadow-dark-hover: 0 22px 46px color-mix(in srgb, var(--ot-text-1) 52%, transparent);
	--t3-shadow-strap: 0 6px 16px color-mix(in srgb, var(--t3-navy) 24%, transparent);
	--t3-shadow-cta: 0 10px 28px color-mix(in srgb, var(--t3-navy) 24%, transparent);
	--t3-shadow-cta-hover: 0 16px 36px color-mix(in srgb, var(--t3-navy) 32%, transparent);
	--t3-text-shadow-title: 0 6px 24px color-mix(in srgb, var(--t3-navy) 35%, transparent);
	--t3-text-shadow-text: 0 2px 12px color-mix(in srgb, var(--t3-navy) 35%, transparent);
	--t3-light-line: rgba(255, 255, 255, 0.16);
	--t3-light-line-strong: rgba(255, 255, 255, 0.28);
	--t3-light-text: rgba(255, 255, 255, 0.92);
	--t3-light-text-soft: rgba(255, 255, 255, 0.62);
}

.e-2a72a301 > .holder
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-m);
	padding: var(--ot-spacing-m);
	background: var(--t3-sky);
	border: 1px solid var(--t3-navy-line);
	border-radius: var(--ot-radius-m);
}

.e-2a72a301 > .holder > .head
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-x);
	min-width: 0;
}

.e-2a72a301 > .holder > .head > .head-icon
{
	font-size: 20px;
	color: var(--ot-orange);
	flex: 0 0 auto;
}

.e-2a72a301 > .holder > .head > .head-title
{
	font-family: var(--ot-font-primary);
	font-size: 15px;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--t3-navy);
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.e-2a72a301 > .holder > .head > .head-count
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	flex: 0 0 auto;
	border-radius: 0;
	background: var(--t3-navy);
	font-family: var(--ot-font-primary);
	font-size: 12px;
	font-weight: 800;
	color: rgb(255, 255, 255);
}

.e-2a72a301 > .holder > .grid
{
	display: grid;
	grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
	gap: var(--ot-spacing-s) var(--ot-spacing-m);
}

.e-2a72a301 > .holder > .grid > .item
{
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.e-2a72a301 > .holder > .grid > .item > .item-icon-wrap
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	flex: 0 0 auto;
	border-radius: var(--ot-radius-s);
	background: var(--ot-bg-1);
	border: 1px solid var(--t3-navy-line);
}

.e-2a72a301 > .holder > .grid > .item > .item-icon-wrap > .item-icon
{
	font-size: 18px;
	color: var(--t3-navy);
}

.e-2a72a301 > .holder > .grid > .item > .item-name
{
	font-family: var(--ot-font-primary);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
	color: var(--ot-text-1);
	min-width: 0;
}

@media screen and (max-width: 1024px)
{
	.e-2a72a301 > .holder > .grid
	{
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media screen and (max-width: 768px)
{
	.e-2a72a301 > .holder > .grid
	{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 460px)
{
	.e-2a72a301 > .holder > .grid
	{
		grid-template-columns: minmax(0, 1fr);
	}
}

.e-6db836aa > .holder
{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--ot-spacing-m);
	align-items: stretch;
}

.e-6db836aa > .holder > .attraction
{
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--ot-bg-1);
	border: 1px solid var(--t3-navy-line);
	border-radius: var(--ot-radius-m);
	box-shadow: var(--t3-shadow-card);
	overflow: hidden;
	transition: transform var(--ot-transition), border-color var(--ot-transition), box-shadow var(--ot-transition);
}

.e-6db836aa > .holder > .attraction:hover
{
	transform: translateY(-6px);
	border-color: var(--ot-orange);
	box-shadow: var(--t3-shadow-card-hover);
}

.e-6db836aa > .holder > .attraction > .cover
{
	position: relative;
	display: block;
	flex: 0 0 auto;
}

.e-6db836aa > .holder > .attraction > .cover > .badge
{
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	display: block;
}

.e-6db836aa > .holder > .attraction > .body
{
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
	min-width: 0;
	padding: var(--ot-spacing-m);
}

.e-6db836aa > .holder > .attraction > .body > .name
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-size: 17px;
	font-weight: 800;
	font-variation-settings: normal;
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: var(--t3-navy);
	min-width: 0;
}

.e-6db836aa > .holder > .attraction > .body > .city
{
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	gap: 5px;
	max-width: calc(100% + var(--ot-spacing-m) + 6px);
	margin-left: calc(var(--ot-spacing-m) * -1 - 6px);
	padding: 6px 16px 6px 24px;
	background: var(--t3-navy);
	transform: skewX(var(--t3-skew));
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: rgb(255, 255, 255);
	min-width: 0;
}

.e-6db836aa > .holder > .attraction > .body > .city > .city-icon
{
	font-size: 16px;
	color: var(--ot-orange);
	transform: skewX(var(--t3-skew-back));
	flex: 0 0 auto;
}

.e-6db836aa > .holder > .attraction > .body > .city > .city-text
{
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transform: skewX(var(--t3-skew-back));
}

.e-6db836aa > .holder > .attraction > .body > .description
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-size: 14px;
	line-height: 1.65;
	color: var(--ot-text-2);
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.e-6db836aa > .holder > .attraction > .body > .link
{
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: auto;
	padding-top: 4px;
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--ot-orange-hover);
	text-decoration: none;
	transition: opacity var(--ot-transition);
}

.e-6db836aa > .holder > .attraction > .body > .link:hover
{
	opacity: 0.75;
}

.e-6db836aa > .holder > .attraction > .body > .link > .link-icon
{
	font-size: 16px;
	flex: 0 0 auto;
}

@media screen and (max-width: 1024px)
{
	.e-6db836aa > .holder
	{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 560px)
{
	.e-6db836aa > .holder
	{
		grid-template-columns: minmax(0, 1fr);
	}
}

.e-32f37a61 > .holder.variant-chips
{
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--ot-spacing-s);
}

.e-32f37a61 > .holder > .city
{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	padding: 12px 14px;
	background: var(--ot-bg-1);
	border: 1px solid var(--t3-navy-line);
	border-radius: var(--ot-radius-s);
	box-shadow: var(--t3-shadow-card);
	transition: border-color var(--ot-transition), transform var(--ot-transition), box-shadow var(--ot-transition);
}

.e-32f37a61 > .holder > .city:hover
{
	border-color: var(--ot-orange);
	transform: translateY(-4px);
	box-shadow: var(--t3-shadow-card-hover);
}

.e-32f37a61 > .holder > .city > .city-icon
{
	font-size: 17px;
	color: var(--ot-orange);
	flex: 0 0 auto;
}

.e-32f37a61 > .holder > .city > .city-name
{
	font-family: var(--ot-font-primary);
	font-size: 14px;
	font-weight: 700;
	color: var(--t3-navy);
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.e-32f37a61 > .holder.variant-cards
{
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--ot-spacing-m);
	align-items: stretch;
}

.e-32f37a61 > .holder.variant-cards > .place:last-child:nth-child(odd)
{
	grid-column: 1 / -1;
}

.e-32f37a61 > .holder > .place
{
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--ot-bg-1);
	border: 1px solid var(--t3-navy-line);
	border-radius: var(--ot-radius-m);
	box-shadow: var(--t3-shadow-card);
	overflow: hidden;
	transition: transform var(--ot-transition), border-color var(--ot-transition), box-shadow var(--ot-transition);
}

.e-32f37a61 > .holder > .place:hover
{
	transform: translateY(-6px);
	border-color: var(--ot-orange);
	box-shadow: var(--t3-shadow-card-hover);
}

.e-32f37a61 > .holder > .place > .cover
{
	position: relative;
	display: block;
	flex: 0 0 auto;
	min-width: 0;
	aspect-ratio: 16 / 9;
	max-height: 280px;
	overflow: hidden;
}

.e-32f37a61 > .holder > .place > .cover > .frames
{
	display: flex;
	align-items: stretch;
	height: 100%;
	transition: transform var(--ot-transition);
}

.e-32f37a61 > .holder > .place > .cover > .frames > .frame
{
	flex: 0 0 100%;
	min-width: 0;
}

.e-32f37a61 > .holder > .place > .cover > .frames > .frame > .frame-image
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: var(--ot-bg-2);
}

.e-32f37a61 > .holder > .place > .cover > .frame-arrow
{
	position: absolute;
	top: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	border-radius: 50%;
	background: var(--ot-bg-1);
	box-shadow: var(--ot-shadow-s);
	opacity: 0;
	cursor: pointer;
	transition: opacity var(--ot-transition), transform var(--ot-transition);
}

.e-32f37a61 > .holder > .place:hover > .cover > .frame-arrow
{
	opacity: 1;
}

.e-32f37a61 > .holder > .place > .cover > .frame-arrow:hover
{
	transform: scale(1.1);
}

.e-32f37a61 > .holder > .place > .cover > .frame-prev
{
	left: 10px;
}

.e-32f37a61 > .holder > .place > .cover > .frame-next
{
	right: 10px;
}

.e-32f37a61 > .holder > .place > .cover > .frame-arrow > .frame-icon
{
	font-size: 20px;
	color: var(--t3-navy);
}

.e-32f37a61 > .holder > .place > .cover > .dots
{
	position: absolute;
	right: 0;
	bottom: 10px;
	left: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	pointer-events: none;
}

.e-32f37a61 > .holder > .place > .cover > .dots > .dot
{
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ot-bg-1);
	box-shadow: 0 1px 4px rgba(14, 14, 18, 0.55);
	opacity: 0.7;
	cursor: pointer;
	pointer-events: auto;
	transition: width var(--ot-transition), border-radius var(--ot-transition), opacity var(--ot-transition);
}

.e-32f37a61 > .holder > .place > .cover > .dots > .dot.is-active
{
	width: 16px;
	border-radius: 0;
	opacity: 1;
}

.e-32f37a61 > .holder > .place > .body
{
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
	min-width: 0;
	padding: var(--ot-spacing-m);
}

.e-32f37a61 > .holder > .place > .body > .head
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ot-spacing-s);
	flex-wrap: nowrap;
}

.e-32f37a61 > .holder > .place > .body > .head > .name
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-size: 18px;
	font-weight: 800;
	font-variation-settings: normal;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--t3-navy);
	min-width: 0;
	flex: 1 1 auto;
}

.e-32f37a61 > .holder > .place > .body > .description
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-size: 14px;
	line-height: 1.65;
	color: var(--ot-text-2);
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.e-32f37a61 > .holder > .place > .body > .meta
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	flex-wrap: wrap;
	margin-top: auto;
	padding-top: 4px;
}

.e-32f37a61 > .holder > .place > .body > .meta > .meta-item,
.e-32f37a61 > .holder > .place > .body > .meta > .meta-link
{
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-family: var(--ot-font-primary);
	font-size: 13px;
	color: var(--ot-text-1);
	min-width: 0;
}

.e-32f37a61 > .holder > .place > .body > .meta > .meta-link
{
	color: var(--ot-orange-hover);
	font-weight: 700;
	text-decoration: none;
	transition: opacity var(--ot-transition);
}

.e-32f37a61 > .holder > .place > .body > .meta > .meta-link:hover
{
	opacity: 0.75;
}

.e-32f37a61 > .holder > .place > .body > .meta > .meta-item > .meta-icon
{
	font-size: 16px;
	color: var(--t3-navy);
	flex: 0 0 auto;
}

.e-32f37a61 > .holder > .place > .body > .meta > .meta-link > .meta-icon
{
	font-size: 16px;
	flex: 0 0 auto;
}

@media screen and (max-width: 900px)
{
	.e-32f37a61 > .holder.variant-chips
	{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 768px)
{
	.e-32f37a61 > .holder.variant-cards
	{
		grid-template-columns: minmax(0, 1fr);
	}

	.e-32f37a61 > .holder > .place > .cover
	{
		max-height: 240px;
	}

	.e-32f37a61 > .holder > .place > .cover > .frame-arrow
	{
		opacity: 1;
	}
}

@media screen and (max-width: 560px)
{
	.e-32f37a61 > .holder.variant-chips
	{
		grid-template-columns: minmax(0, 1fr);
	}
}

.e-5cf3727 > .holder
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
}

.e-5cf3727 > .holder > .excursion
{
	display: flex;
	flex-direction: column;
	background: var(--ot-bg-1);
	border: 1px solid var(--t3-navy-line);
	border-radius: var(--ot-radius-m);
	box-shadow: var(--t3-shadow-card);
	overflow: hidden;
	transition: border-color var(--ot-transition), box-shadow var(--ot-transition);
}

.e-5cf3727 > .holder > .excursion:hover
{
	border-color: var(--ot-orange);
}

.e-5cf3727 > .holder > .excursion.is-open
{
	border-color: var(--ot-orange);
	box-shadow: var(--t3-shadow-card-hover);
}

.e-5cf3727 > .holder > .excursion > .head
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ot-spacing-m);
	width: 100%;
	padding: var(--ot-spacing-m);
	text-align: left;
	transition: background-color var(--ot-transition);
}

.e-5cf3727 > .holder > .excursion > .head:hover
{
	background: var(--t3-sky);
}

.e-5cf3727 > .holder > .excursion > .head > .head-left
{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.e-5cf3727 > .holder > .excursion > .head > .head-left > .dot
{
	width: 8px;
	height: 8px;
	flex: 0 0 auto;
	border-radius: 0;
	background: var(--ot-orange);
	transform: skewX(var(--t3-skew));
}

.e-5cf3727 > .holder > .excursion > .head > .head-left > .name
{
	font-family: var(--ot-font-primary);
	font-size: 17px;
	font-weight: 800;
	font-variation-settings: normal;
	letter-spacing: -0.01em;
	color: var(--t3-navy);
	min-width: 0;
}

.e-5cf3727 > .holder > .excursion > .head > .head-right
{
	display: inline-flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	flex: 0 0 auto;
}

.e-5cf3727 > .holder > .excursion > .head > .head-right > .chevron
{
	font-size: 22px;
	color: var(--t3-navy);
	transition: transform var(--ot-transition);
}

.e-5cf3727 > .holder > .excursion.is-open > .head > .head-right > .chevron
{
	transform: rotate(180deg);
}

.e-5cf3727 > .holder > .excursion > .body
{
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows var(--ot-transition-slow);
}

.e-5cf3727 > .holder > .excursion.is-open > .body
{
	grid-template-rows: 1fr;
}

.e-5cf3727 > .holder > .excursion > .body > .description
{
	margin: 0;
	overflow: hidden;
	padding: 0 var(--ot-spacing-m);
	font-family: var(--ot-font-primary);
	font-size: 14.5px;
	line-height: 1.75;
	color: var(--ot-text-2);
}

.e-5cf3727 > .holder > .excursion.is-open > .body > .description
{
	padding-bottom: var(--ot-spacing-m);
}

@media screen and (max-width: 560px)
{
	.e-5cf3727 > .holder > .excursion > .head
	{
		flex-wrap: wrap;
		gap: var(--ot-spacing-s);
	}
}

.e-721e8a71 > .holder
{
	display: grid;
	grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
	gap: var(--ot-spacing-m);
	padding: var(--ot-spacing-m);
	background: var(--t3-sky);
	border: 1px solid var(--t3-navy-line);
	border-radius: var(--ot-radius-m);
}

.e-721e8a71 > .holder > .item
{
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.e-721e8a71 > .holder > .item > .item-icon-wrap
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex: 0 0 auto;
	border-radius: var(--ot-radius-s);
	background: var(--ot-bg-1);
	border: 1px solid var(--t3-navy-line);
}

.e-721e8a71 > .holder > .item > .item-icon-wrap > .item-icon
{
	font-size: 19px;
	color: var(--t3-navy);
}

.e-721e8a71 > .holder > .item > .item-text
{
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.e-721e8a71 > .holder > .item > .item-text > .item-label
{
	font-family: var(--ot-font-primary);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ot-text-3);
}

.e-721e8a71 > .holder > .item > .item-text > .item-value
{
	font-family: var(--ot-font-primary);
	font-size: 15px;
	font-weight: 700;
	color: var(--t3-navy);
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media screen and (max-width: 1024px)
{
	.e-721e8a71 > .holder
	{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 460px)
{
	.e-721e8a71 > .holder
	{
		grid-template-columns: minmax(0, 1fr);
	}
}

.e-5e8a3ee7 > .holder
{
	display: block;
	min-width: 0;
}

.e-5e8a3ee7 > .holder > .note-skeleton
{
	width: 62%;
	max-width: 100%;
	height: 13px;
	border-radius: var(--ot-radius-s);
	background: var(--ot-bg-3);
	opacity: 0.5;
}

.e-5e8a3ee7 > .holder > .note
{
	font-family: var(--ot-font-primary);
	font-size: 13px;
	line-height: 1.6;
	color: var(--ot-text-2);
	min-width: 0;
	overflow-wrap: anywhere;
}

.e-5e8a3ee7 > .holder > .note > .line-link
{
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: var(--ot-transition-fast);
}

.e-5e8a3ee7 > .holder > .note > .line-link:hover
{
	color: var(--ot-orange-hover);
}

@media screen and (max-width: 560px)
{
	.e-5e8a3ee7 > .holder > .note
	{
		font-size: 12px;
	}
}

.e-72de5824 > .holder
{
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--ot-spacing-m);
	align-items: stretch;
}

.e-72de5824 > .holder > .stay
{
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--ot-bg-1);
	border: 1px solid var(--t3-navy-line);
	border-radius: var(--ot-radius-m);
	box-shadow: var(--t3-shadow-card);
	overflow: hidden;
	transition: transform var(--ot-transition), border-color var(--ot-transition), box-shadow var(--ot-transition);
}

.e-72de5824 > .holder > .stay:hover
{
	transform: translateY(-6px);
	border-color: var(--ot-orange);
	box-shadow: var(--t3-shadow-card-hover);
}

.e-72de5824 > .holder > .stay > .cover
{
	flex: 0 0 auto;
}

.e-72de5824 > .holder > .stay > .body
{
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
	min-width: 0;
	padding: var(--ot-spacing-m);
}

.e-72de5824 > .holder > .stay > .body > .head
{
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--ot-spacing-s);
	flex-wrap: wrap;
}

.e-72de5824 > .holder > .stay > .body > .head > .name
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-size: 17px;
	font-weight: 800;
	font-variation-settings: normal;
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: var(--t3-navy);
	min-width: 0;
	flex: 1;
}

.e-72de5824 > .holder > .stay > .body > .city
{
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	gap: 5px;
	max-width: calc(100% + var(--ot-spacing-m) + 6px);
	margin-left: calc(var(--ot-spacing-m) * -1 - 6px);
	padding: 6px 16px 6px 24px;
	background: var(--t3-navy);
	transform: skewX(var(--t3-skew));
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: rgb(255, 255, 255);
	min-width: 0;
}

.e-72de5824 > .holder > .stay > .body > .city > .city-icon
{
	font-size: 16px;
	color: var(--ot-orange);
	transform: skewX(var(--t3-skew-back));
	flex: 0 0 auto;
}

.e-72de5824 > .holder > .stay > .body > .city > .city-text
{
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transform: skewX(var(--t3-skew-back));
}

.e-72de5824 > .holder > .stay > .body > .description
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-size: 14px;
	line-height: 1.65;
	color: var(--ot-text-2);
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media screen and (max-width: 768px)
{
	.e-72de5824 > .holder
	{
		grid-template-columns: minmax(0, 1fr);
	}
}

.e-6f0f9b54 > .holder
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-m);
}

.e-6f0f9b54 > .holder > .tabs
{
	display: flex;
	align-items: center;
	gap: 4px;
	flex-wrap: wrap;
	padding-bottom: var(--ot-spacing-s);
	border-bottom: 1px solid var(--t3-navy-line);
}

.e-6f0f9b54 > .holder > .tabs > .tab
{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 18px;
	border-radius: 0;
	font-family: var(--ot-font-primary);
	font-size: 14px;
	font-weight: 700;
	color: var(--ot-text-2);
	white-space: nowrap;
	transition: background-color var(--ot-transition), color var(--ot-transition);
}

.e-6f0f9b54 > .holder > .tabs > .tab:hover
{
	background: var(--t3-sky);
	color: var(--t3-navy);
}

.e-6f0f9b54 > .holder > .tabs > .tab.is-active
{
	background: var(--t3-navy);
	color: rgb(255, 255, 255);
	font-weight: 800;
}

.e-6f0f9b54 > .holder > .tabs > .tab > .tab-icon
{
	font-size: 17px;
}

.e-6f0f9b54 > .holder > .panel
{
	font-family: var(--ot-font-primary);
	font-size: 15px;
	line-height: 1.75;
	color: var(--ot-text-2);
	min-width: 0;
	overflow-x: auto;
}

.e-6f0f9b54 > .holder > .panel > h1,
.e-6f0f9b54 > .holder > .panel > h2,
.e-6f0f9b54 > .holder > .panel > h3,
.e-6f0f9b54 > .holder > .panel > h4
{
	margin: var(--ot-spacing-m) 0 var(--ot-spacing-s);
	font-family: var(--ot-font-primary);
	font-size: 21px;
	font-weight: 800;
	font-variation-settings: normal;
	letter-spacing: -0.02em;
	color: var(--t3-navy);
}

.e-6f0f9b54 > .holder > .panel > p
{
	margin-bottom: var(--ot-spacing-s);
}

.e-6f0f9b54 > .holder > .panel > ul,
.e-6f0f9b54 > .holder > .panel > ol
{
	margin: var(--ot-spacing-s) 0;
	padding-left: var(--ot-spacing-m);
	list-style: disc;
}

.e-6f0f9b54 > .holder > .panel > ul li,
.e-6f0f9b54 > .holder > .panel > ol li
{
	margin-bottom: 6px;
}

.e-6f0f9b54 > .holder > .panel .table-wrap
{
	margin: var(--ot-spacing-m) 0;
	border: 1px solid var(--t3-navy-line);
	border-radius: var(--ot-radius-m);
	background: var(--ot-bg-1);
	overflow-x: auto;
	overflow-y: hidden;
}

.e-6f0f9b54 > .holder > .panel .table-wrap > table
{
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	font-family: var(--ot-font-primary);
	font-size: 14px;
	line-height: 1.5;
}

.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr > td,
.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr > th
{
	padding: 11px 14px;
	border-right: 1px solid var(--ot-bg-2-border);
	border-bottom: 1px solid var(--ot-bg-2-border);
	background: var(--ot-bg-1);
	color: var(--ot-text-2);
	text-align: center;
	vertical-align: middle;
	font-weight: 400;
}

.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr > td *,
.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr > th *
{
	color: inherit;
	line-height: inherit;
}

.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr.is-alt > td,
.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr.is-alt > th
{
	background: var(--ot-bg-2);
}

.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr > td:first-child:not(:only-child),
.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr > th:first-child:not(:only-child)
{
	position: sticky;
	left: 0;
	z-index: 1;
	min-width: 132px;
	background: var(--ot-bg-3);
	color: var(--ot-text-1);
	font-weight: 600;
	text-align: left;
}

.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr > td:last-child,
.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr > th:last-child
{
	border-right: 0;
}

.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr:last-child > td,
.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr:last-child > th
{
	border-bottom: 0;
}

.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr:hover > td,
.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr:hover > th
{
	background: var(--ot-bg-3);
}

.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr:hover > td:first-child:not(:only-child),
.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr:hover > th:first-child:not(:only-child)
{
	background: var(--ot-bg-3-border);
}

.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr.is-head > td,
.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr.is-head > th
{
	border-right-color: rgba(255, 255, 255, .24);
	border-bottom-color: rgba(255, 255, 255, .24);
	background: var(--t3-navy);
	color: rgb(255, 255, 255);
	font-weight: 700;
}

.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr.is-head > td:first-child:not(:only-child),
.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr.is-head > th:first-child:not(:only-child)
{
	background: var(--t3-navy);
	color: rgb(255, 255, 255);
}

.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr.is-note > td,
.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr.is-note > th
{
	border-top: 2px solid var(--t3-navy-line);
	background: var(--ot-bg-2);
	color: var(--ot-text-2);
	font-size: 13px;
	line-height: 1.6;
}

.e-6f0f9b54 > .holder > .panel > img
{
	max-width: 100%;
	height: auto;
	border-radius: var(--ot-radius-m);
	margin: var(--ot-spacing-s) 0;
}

.e-6f0f9b54 > .holder > .panel > a
{
	color: var(--ot-orange-hover);
	text-decoration: underline;
}

@media screen and (max-width: 768px)
{
	.e-6f0f9b54 > .holder > .tabs
	{
		flex-wrap: nowrap;
		overflow-x: auto;
	}

	.e-6f0f9b54 > .holder > .panel .table-wrap > table
	{
		font-size: 13px;
	}

	.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr > td,
	.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr > th
	{
		padding: 8px 10px;
	}

	.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr > td:first-child:not(:only-child),
	.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr > th:first-child:not(:only-child)
	{
		min-width: 104px;
	}

	.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr.is-note > td,
	.e-6f0f9b54 > .holder > .panel .table-wrap > table > tbody > tr.is-note > th
	{
		font-size: 12px;
	}
}

.e-523b3c19
{
	height: 100%;
}

.e-523b3c19 > .holder
{
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--ot-bg-1);
	border: 1px solid var(--t3-navy-line);
	border-radius: var(--ot-radius-m);
	overflow: hidden;
	box-shadow: var(--t3-shadow-card);
	transition: transform var(--ot-transition), box-shadow var(--ot-transition), border-color var(--ot-transition);
}

.e-523b3c19 > .holder:hover
{
	transform: translateY(-6px);
	box-shadow: var(--t3-shadow-card-hover);
	border-color: var(--ot-orange);
}

.e-523b3c19 > .holder > .cover
{
	display: block;
	flex: 0 0 auto;
}

.e-523b3c19 > .holder:hover > .cover .e-690d6f8e > .holder.zoom > .image
{
	transform: scale(1.04);
}

.e-523b3c19 > .holder > .body
{
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
	min-width: 0;
	padding: var(--ot-spacing-m);
}

.e-523b3c19 > .holder > .body > .category
{
	font-family: var(--ot-font-primary);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ot-orange-hover);
}

.e-523b3c19 > .holder > .body > .head
{
	display: block;
	min-width: 0;
}

.e-523b3c19 > .holder > .body > .head > .title
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-size: 20px;
	font-weight: 800;
	font-variation-settings: normal;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: var(--t3-navy);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color var(--ot-transition);
}

.e-523b3c19 > .holder:hover > .body > .head > .title
{
	color: var(--ot-orange-hover);
}

.e-523b3c19 > .holder > .body > .excerpt
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-size: 14px;
	line-height: 1.6;
	color: var(--ot-text-2);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.e-523b3c19 > .holder > .body > .foot
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ot-spacing-s);
	flex-wrap: wrap;
	margin-top: auto;
	padding-top: var(--ot-spacing-s);
	border-top: 1px solid var(--t3-navy-line);
	font-family: var(--ot-font-primary);
	font-size: 12px;
	color: var(--ot-text-3);
}

.e-523b3c19 > .holder > .body > .foot > .reading
{
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.e-523b3c19 > .holder > .body > .foot > .reading > .reading-icon
{
	font-size: 15px;
}

.e-523b3c19 > .holder.variant-horizontal
{
	flex-direction: row;
}

.e-523b3c19 > .holder.variant-horizontal > .cover
{
	width: 40%;
	flex: 0 0 40%;
}

.e-523b3c19 > .holder.variant-horizontal > .cover > .e-690d6f8e,
.e-523b3c19 > .holder.variant-horizontal > .cover > .e-690d6f8e > .holder
{
	height: 100%;
}

.e-523b3c19 > .holder.variant-horizontal > .cover > .e-690d6f8e > .holder
{
	aspect-ratio: auto;
	border-radius: 0;
}

@media screen and (max-width: 768px)
{
	.e-523b3c19 > .holder.variant-horizontal
	{
		flex-direction: column;
	}

	.e-523b3c19 > .holder.variant-horizontal > .cover
	{
		width: 100%;
		flex: 0 0 auto;
	}
}

.e-52396a61
{
	height: 100%;
}

.e-52396a61 > .holder
{
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--ot-bg-1);
	border: 1px solid var(--t3-navy-line);
	border-radius: var(--ot-radius-m);
	overflow: hidden;
	box-shadow: var(--t3-shadow-card);
	transition: transform var(--ot-transition), box-shadow var(--ot-transition), border-color var(--ot-transition);
}

.e-52396a61 > .holder:hover
{
	transform: translateY(-6px);
	border-color: var(--ot-orange);
	box-shadow: var(--t3-shadow-card-hover);
}

.e-52396a61 > .holder > .cover
{
	position: relative;
	display: block;
	flex: 0 0 auto;
	border-radius: var(--ot-radius-m) var(--ot-radius-m) 0 0;
	overflow: hidden;
}

.e-52396a61 > .holder > .cover > .frames
{
	display: flex;
	align-items: stretch;
	transition: transform var(--ot-transition);
}

.e-52396a61 > .holder > .cover > .frames > .frame
{
	flex: 0 0 100%;
	min-width: 0;
}

.e-52396a61 > .holder > .cover > .cover-link
{
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
}

.e-52396a61 > .holder:hover > .cover .e-690d6f8e > .holder.zoom > .image
{
	transform: scale(1.04);
}

.e-52396a61 > .holder > .cover > .frame-arrow
{
	position: absolute;
	top: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	border-radius: 50%;
	background: var(--ot-bg-1);
	box-shadow: var(--ot-shadow-s);
	opacity: 0;
	cursor: pointer;
	transition: opacity var(--ot-transition), transform var(--ot-transition);
}

.e-52396a61 > .holder:hover > .cover > .frame-arrow
{
	opacity: 1;
}

.e-52396a61 > .holder > .cover > .frame-arrow:hover
{
	transform: scale(1.1);
}

.e-52396a61 > .holder > .cover > .frame-prev
{
	left: 10px;
}

.e-52396a61 > .holder > .cover > .frame-next
{
	right: 10px;
}

.e-52396a61 > .holder > .cover > .frame-arrow > .frame-icon
{
	font-size: 20px;
	color: var(--ot-text-2);
}

.e-52396a61 > .holder > .cover > .dots
{
	position: absolute;
	right: 0;
	bottom: 10px;
	left: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	pointer-events: none;
}

.e-52396a61 > .holder > .cover > .dots > .dot
{
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ot-bg-1);
	box-shadow: 0 1px 4px rgba(14, 14, 18, 0.55);
	opacity: 0.7;
	cursor: pointer;
	pointer-events: auto;
	transition: width var(--ot-transition), border-radius var(--ot-transition), opacity var(--ot-transition);
}

.e-52396a61 > .holder > .cover > .dots > .dot.is-active
{
	width: 16px;
	border-radius: 3px;
	opacity: 1;
}

.e-52396a61 > .holder > .cover > .badge
{
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
}

.e-52396a61 > .holder > .save
{
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--ot-bg-1);
	box-shadow: var(--ot-shadow-s);
	cursor: pointer;
	transition: transform var(--ot-transition);
}

.e-52396a61 > .holder > .save:hover
{
	transform: scale(1.08);
}

.e-52396a61 > .holder > .save > .save-icon
{
	font-size: 18px;
	color: var(--ot-text-2);
	font-variation-settings: 'FILL' 0, 'opsz' 24, 'wght' 400;
	transition: color var(--ot-transition);
}

.e-52396a61 > .holder.is-saved > .save > .save-icon
{
	color: var(--ot-orange);
	font-variation-settings: 'FILL' 1, 'opsz' 24, 'wght' 400;
}

.e-52396a61 > .holder > .body
{
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
	min-width: 0;
	padding: var(--ot-spacing-m);
}

.e-52396a61 > .holder > .body > .head
{
	display: block;
	min-width: 0;
	order: 2;
}

.e-52396a61 > .holder > .body > .head > .name
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-size: 17px;
	font-weight: 800;
	font-variation-settings: normal;
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: var(--t3-navy);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.7em;
	transition: color var(--ot-transition);
}

.e-52396a61 > .holder:hover > .body > .head > .name
{
	color: var(--ot-orange-hover);
}

.e-52396a61 > .holder > .body > .location
{
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	gap: 5px;
	order: 1;
	max-width: calc(100% + var(--ot-spacing-m) + 6px);
	margin: calc(var(--ot-spacing-m) * -1 - 18px) 0 4px calc(var(--ot-spacing-m) * -1 - 6px);
	padding: 7px 18px 7px 26px;
	background: var(--t3-navy);
	transform: skewX(var(--t3-skew));
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: rgb(255, 255, 255);
}

.e-52396a61 > .holder > .body > .location > .location-icon
{
	font-size: 16px;
	color: var(--ot-orange);
	transform: skewX(var(--t3-skew-back));
}

.e-52396a61 > .holder > .body > .location > .location-text
{
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transform: skewX(var(--t3-skew-back));
}

.e-52396a61 > .holder > .body > .e-6968c40b
{
	order: 3;
}

.e-52396a61 > .holder > .body > .description
{
	margin: 0;
	order: 4;
	font-family: var(--ot-font-primary);
	font-size: 13px;
	line-height: 1.6;
	color: var(--ot-text-2);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.e-52396a61 > .holder > .body > .meta
{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 18px;
	order: 5;
}

.e-52396a61 > .holder > .body > .meta > .e-21305e3c > .holder
{
	gap: 6px;
	font-size: 13px;
	color: var(--ot-text-1);
}

.e-52396a61 > .holder > .body > .meta > .e-21305e3c > .holder > .icon
{
	font-size: 18px;
	color: var(--t3-navy);
}

.e-52396a61 > .holder > .body > .highlights
{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px 8px;
	order: 6;
}

.e-52396a61 > .holder > .body > .highlights > .e-21305e3c > .holder
{
	height: auto;
	gap: 5px;
	padding: 4px 9px;
	border-radius: 100px;
	font-weight: 600;
	color: var(--ot-text-1);
}

.e-52396a61 > .holder > .body > .highlights > .e-21305e3c > .holder > .icon
{
	font-size: 16px;
	color: var(--t3-navy);
}

.e-52396a61 > .holder > .body > .foot
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	order: 7;
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid var(--t3-navy-line);
}

.e-52396a61 > .holder > .body > .foot > .action
{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--ot-orange-hover);
	white-space: nowrap;
}

.e-52396a61 > .holder > .body > .foot > .action > .action-icon
{
	font-size: 17px;
	transition: transform var(--ot-transition);
}

.e-52396a61 > .holder:hover > .body > .foot > .action > .action-icon
{
	transform: translateX(3px);
}

.e-52396a61 > .holder > .body > .round
{
	display: none;
}

.e-52396a61 > .holder.variant-horizontal > .body > .location,
.e-52396a61 > .holder.variant-overlay > .body > .location,
.e-52396a61 > .holder.variant-float > .body > .location
{
	margin: 0;
	padding: 0;
	background: none;
	transform: none;
	font-weight: 500;
	color: var(--ot-text-3);
}

.e-52396a61 > .holder.variant-horizontal > .body > .location > .location-icon,
.e-52396a61 > .holder.variant-overlay > .body > .location > .location-icon,
.e-52396a61 > .holder.variant-float > .body > .location > .location-icon,
.e-52396a61 > .holder.variant-horizontal > .body > .location > .location-text,
.e-52396a61 > .holder.variant-overlay > .body > .location > .location-text,
.e-52396a61 > .holder.variant-float > .body > .location > .location-text
{
	transform: none;
}

.e-52396a61 > .holder.variant-overlay > .cover
{
	position: absolute;
	inset: 0;
	border-radius: var(--ot-radius-m);
}

.e-52396a61 > .holder.variant-overlay
{
	min-height: 340px;
	background: var(--ot-bg-3);
}

.e-52396a61 > .holder.variant-overlay > .cover > .dots
{
	top: 16px;
	bottom: auto;
}

.e-52396a61 > .holder.variant-overlay > .body
{
	position: relative;
	z-index: 2;
	justify-content: flex-end;
	padding: 18px;
}

.e-52396a61 > .holder.variant-overlay > .body > .head > .name,
.e-52396a61 > .holder.variant-overlay > .body > .location,
.e-52396a61 > .holder.variant-overlay > .body > .description
{
	color: var(--ot-bg-1);
}

.e-52396a61 > .holder.variant-overlay:hover > .body > .head > .name
{
	color: var(--ot-bg-1);
}

.e-52396a61 > .holder.variant-overlay > .body > .location > .location-icon
{
	color: var(--ot-bg-1);
}

.e-52396a61 > .holder.variant-overlay > .body > .foot
{
	padding-top: 12px;
}

.e-52396a61 > .holder.variant-overlay > .body > .foot > .action
{
	color: var(--ot-bg-1);
}

.e-52396a61 > .holder.variant-horizontal
{
	flex-direction: row;
	align-items: stretch;
	gap: 16px;
}

.e-52396a61 > .holder.variant-horizontal > .cover
{
	width: 210px;
	flex: 0 0 auto;
}

.e-52396a61 > .holder.variant-horizontal > .body
{
	padding: var(--ot-spacing-m) var(--ot-spacing-m) var(--ot-spacing-m) 0;
}

.e-52396a61 > .holder.variant-float > .body
{
	position: relative;
	z-index: 2;
	margin: -46px 12px 0;
	padding: 16px;
	background: var(--ot-bg-1);
	border-radius: 18px;
	box-shadow: 0 14px 30px -18px rgba(14, 14, 18, 0.45);
}

@media screen and (max-width: 1024px)
{
	.e-52396a61 > .holder > .cover > .frame-arrow
	{
		opacity: 1;
	}
}

@media screen and (max-width: 768px)
{
	.e-52396a61 > .holder.variant-horizontal
	{
		flex-direction: column;
		gap: 0;
	}

	.e-52396a61 > .holder.variant-horizontal > .cover
	{
		width: 100%;
	}

	.e-52396a61 > .holder.variant-horizontal > .body
	{
		padding: var(--ot-spacing-m);
	}
}

@media screen and (max-width: 560px)
{
	.e-52396a61 > .holder > .body > .head > .name
	{
		font-size: 16px;
	}
}

.e-67186a99 > .holder
{
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 2px;
	min-width: 0;
	max-width: 100%;
}

.e-67186a99 > .holder.variant-pill
{
	padding: 5px 14px 5px 6px;
	border-radius: 999px;
	background: var(--t3-navy-veil-thin);
}

.e-67186a99 > .holder.variant-pill.tone-light
{
	background: rgba(255, 255, 255, 0.16);
}

.e-67186a99 > .holder > .crumb
{
	display: inline-flex;
	align-items: center;
	gap: 2px;
	min-width: 0;
}

.e-67186a99 > .holder > .crumb > .crumb-link,
.e-67186a99 > .holder > .crumb > .crumb-text
{
	display: inline-flex;
	align-items: center;
	gap: 5px;
	min-width: 0;
	font-family: var(--ot-font-primary);
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	white-space: nowrap;
	border-radius: 999px;
}

.e-67186a99 > .holder.variant-pill > .crumb > .crumb-link,
.e-67186a99 > .holder.variant-pill > .crumb > .crumb-text
{
	padding: 4px 10px;
}

.e-67186a99 > .holder > .crumb > .crumb-link > .crumb-label,
.e-67186a99 > .holder > .crumb > .crumb-text > .crumb-label
{
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

.e-67186a99 > .holder > .crumb > .crumb-link > .crumb-icon,
.e-67186a99 > .holder > .crumb > .crumb-text > .crumb-icon
{
	font-size: 16px;
	flex: 0 0 auto;
}

.e-67186a99 > .holder > .crumb.is-current > .crumb-text > .crumb-label
{
	max-width: 320px;
}

.e-67186a99 > .holder.tone-dark > .crumb > .crumb-link
{
	color: var(--ot-text-2);
	transition: color var(--ot-transition), background-color var(--ot-transition);
}

.e-67186a99 > .holder.tone-dark > .crumb > .crumb-link:hover
{
	color: var(--ot-orange-hover);
	background: var(--ot-bg-1);
}

.e-67186a99 > .holder.variant-bare.tone-dark > .crumb > .crumb-link:hover
{
	background: transparent;
}

.e-67186a99 > .holder.tone-dark > .crumb.is-current > .crumb-text
{
	color: var(--t3-navy);
	font-weight: 700;
}

.e-67186a99 > .holder.variant-pill.tone-dark > .crumb.is-current > .crumb-text
{
	background: var(--ot-bg-1);
}

.e-67186a99 > .holder.tone-light > .crumb > .crumb-link
{
	color: rgba(255, 255, 255, 0.78);
	transition: color var(--ot-transition), background-color var(--ot-transition);
}

.e-67186a99 > .holder.tone-light > .crumb > .crumb-link:hover
{
	color: var(--ot-bg-1);
	background: rgba(255, 255, 255, 0.16);
}

.e-67186a99 > .holder.tone-light > .crumb.is-current > .crumb-text
{
	color: var(--ot-bg-1);
	font-weight: 600;
}

.e-67186a99 > .holder.variant-pill.tone-light > .crumb.is-current > .crumb-text
{
	background: rgba(255, 255, 255, 0.2);
}

.e-67186a99 > .holder > .crumb > .crumb-sep
{
	display: block;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--ot-bg-4-border);
	flex: 0 0 auto;
	margin-inline: 5px;
}

.e-67186a99 > .holder.tone-light > .crumb > .crumb-sep
{
	background: rgba(255, 255, 255, 0.45);
}

@media screen and (max-width: 768px)
{
	.e-67186a99 > .holder > .crumb.is-current > .crumb-text > .crumb-label
	{
		max-width: 180px;
	}
}

@media screen and (max-width: 560px)
{
	.e-67186a99 > .holder > .crumb.is-middle
	{
		display: none;
	}

	.e-67186a99 > .holder > .crumb.is-first > .crumb-link > .crumb-label
	{
		display: none;
	}

	.e-67186a99 > .holder.variant-pill > .crumb.is-first > .crumb-link
	{
		padding-inline: 8px;
	}

	.e-67186a99 > .holder > .crumb.is-current > .crumb-text > .crumb-label
	{
		max-width: 210px;
	}
}

.e-593be338 > .holder
{
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--ot-font-primary);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.005em;
	white-space: nowrap;
	border: 1px solid transparent;
	border-radius: 999px;
	cursor: pointer;
	transition:
		background-color var(--ot-transition),
		border-color var(--ot-transition),
		color var(--ot-transition),
		box-shadow var(--ot-transition),
		transform var(--ot-transition-fast);
}

.e-593be338 > .holder.block
{
	display: flex;
	width: 100%;
}

.e-593be338 > .holder.size-s
{
	height: 38px;
	padding-inline: 18px;
	font-size: 13px;
}

.e-593be338 > .holder.size-m
{
	height: 46px;
	padding-inline: 24px;
	font-size: 14px;
}

.e-593be338 > .holder.size-l
{
	height: 54px;
	padding-inline: 32px;
	font-size: 15px;
}

.e-593be338 > .holder > .label
{
	display: block;
}

.e-593be338 > .holder > .icon
{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex: 0 0 auto;
	transition: transform var(--ot-transition);
}

.e-593be338 > .holder.size-s > .icon
{
	font-size: 16px;
}

.e-593be338 > .holder.icon-right:hover > .icon
{
	transform: translateX(3px);
}

.e-593be338 > .holder.icon-left:hover > .icon
{
	transform: translateX(-3px);
}

.e-593be338 > .holder.variant-solid.tone-brand
{
	background: var(--t3-navy);
	color: rgb(255, 255, 255);
	box-shadow: var(--t3-shadow-cta);
}

.e-593be338 > .holder.variant-solid.tone-brand:hover
{
	background: var(--t3-navy-deep);
	transform: translateY(-3px);
	box-shadow: var(--t3-shadow-cta-hover);
}

.e-593be338 > .holder.variant-solid.tone-accent
{
	background: var(--ot-orange);
	color: var(--ot-text-1);
	box-shadow: var(--t3-shadow-cta);
}

.e-593be338 > .holder.variant-solid.tone-accent:hover
{
	background: var(--ot-orange-hover);
	transform: translateY(-3px);
	box-shadow: var(--t3-shadow-cta-hover);
}

.e-593be338 > .holder.variant-solid.tone-light
{
	background: var(--ot-bg-1);
	color: var(--ot-text-1);
	box-shadow: var(--ot-shadow-m);
}

.e-593be338 > .holder.variant-solid.tone-light:hover
{
	transform: translateY(-2px);
	box-shadow: var(--ot-shadow-l);
}

.e-593be338 > .holder.variant-outline.tone-brand
{
	background: transparent;
	border-color: var(--t3-navy);
	color: var(--t3-navy);
}

.e-593be338 > .holder.variant-outline.tone-brand:hover
{
	background: var(--t3-navy);
	border-color: var(--t3-navy);
	color: rgb(255, 255, 255);
	transform: translateY(-2px);
}

.e-593be338 > .holder.variant-outline.tone-accent
{
	background: transparent;
	border-color: var(--ot-orange);
	color: var(--ot-orange-hover);
}

.e-593be338 > .holder.variant-outline.tone-accent:hover
{
	background: var(--ot-orange);
	border-color: var(--ot-orange);
	color: var(--ot-text-1);
	transform: translateY(-2px);
}

.e-593be338 > .holder.variant-outline.tone-light
{
	background: transparent;
	border-color: rgba(255, 255, 255, 0.55);
	color: var(--ot-bg-1);
}

.e-593be338 > .holder.variant-outline.tone-light:hover
{
	background: var(--ot-bg-1);
	border-color: var(--ot-bg-1);
	color: var(--ot-text-1);
}

.e-593be338 > .holder.variant-ghost.tone-brand
{
	background: transparent;
	color: var(--t3-navy);
	padding-inline: 0;
}

.e-593be338 > .holder.variant-ghost.tone-accent
{
	background: transparent;
	color: var(--ot-orange-hover);
	padding-inline: 0;
}

.e-593be338 > .holder.variant-ghost.tone-brand:hover,
.e-593be338 > .holder.variant-ghost.tone-accent:hover
{
	color: var(--ot-orange-hover);
}

.e-593be338 > .holder.variant-ghost.tone-light
{
	background: transparent;
	color: var(--ot-bg-1);
	padding-inline: 0;
}

.e-593be338 > .holder.variant-ghost.tone-light:hover
{
	opacity: 0.75;
}

.e-593be338 > .holder:active
{
	transform: translateY(1px) scale(0.99);
}

@media screen and (max-width: 768px)
{
	.e-593be338 > .holder.size-l
	{
		height: 48px;
		padding-inline: 26px;
		font-size: 14px;
	}
}

.e-68a084f7 > .holder
{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--ot-spacing-s);
	padding: 72px var(--ot-spacing-m);
	text-align: center;
	background:
		radial-gradient(circle at 50% 0%, var(--t3-navy-veil-thin), transparent 60%),
		var(--t3-sky);
	border: 1px dashed var(--t3-navy-line);
	border-radius: var(--ot-radius-l);
	overflow: hidden;
}

.e-68a084f7 > .holder > .icon-wrap
{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	margin-bottom: 6px;
	border-radius: var(--ot-radius-m);
	background: var(--ot-bg-1);
	border: 1px solid var(--t3-navy-line);
	box-shadow: var(--t3-shadow-card);
}

.e-68a084f7 > .holder > .icon-wrap::after
{
	content: '';
	position: absolute;
	inset: -8px;
	border-radius: var(--ot-radius-l);
	border: 1px solid var(--t3-navy-line);
	opacity: 0.45;
}

.e-68a084f7 > .holder > .icon-wrap > .icon
{
	font-size: 30px;
	color: var(--ot-orange);
}

.e-68a084f7 > .holder > .title
{
	font-family: var(--ot-font-primary);
	font-size: 22px;
	font-weight: 800;
	font-variation-settings: normal;
	letter-spacing: -0.02em;
	color: var(--t3-navy);
}

.e-68a084f7 > .holder > .message
{
	font-family: var(--ot-font-primary);
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--ot-text-2);
	max-width: 44ch;
	text-wrap: pretty;
}

.e-68a084f7 > .holder > .action
{
	margin-top: 8px;
}

.e-17a9347c > .holder
{
	display: block;
}

.e-17a9347c > .holder > .grid
{
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: var(--ot-spacing-s);
}

.e-17a9347c > .holder > .grid > .main
{
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--ot-radius-l);
	cursor: zoom-in;
	box-shadow: var(--ot-shadow-s);
	transition: box-shadow var(--ot-transition);
}

.e-17a9347c > .holder > .grid > .main::after
{
	content: 'zoom_in';
	position: absolute;
	right: var(--ot-spacing-s);
	bottom: var(--ot-spacing-s);
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.94);
	color: var(--t3-navy);
	font-family: 'Material Symbols Rounded';
	font-size: 20px;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity var(--ot-transition), transform var(--ot-transition);
	backdrop-filter: blur(6px);
}

.e-17a9347c > .holder > .grid > .main:hover
{
	box-shadow: var(--t3-shadow-card-hover);
}

.e-17a9347c > .holder > .grid > .main:hover::after
{
	opacity: 1;
	transform: translateY(0);
}

.e-17a9347c > .holder > .grid > .main:hover .e-690d6f8e > .holder > .image
{
	transform: scale(1.03);
}

.e-17a9347c > .holder > .grid > .main > .e-21305e3c
{
	position: absolute;
	left: var(--ot-spacing-s);
	bottom: var(--ot-spacing-s);
	z-index: 3;
	max-width: calc(100% - 96px);
	text-align: left;
	pointer-events: none;
}

.e-17a9347c > .holder > .grid > .thumbs
{
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: var(--ot-spacing-s);
}

.e-17a9347c > .holder > .grid > .thumbs > .thumb
{
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--ot-radius-m);
	cursor: zoom-in;
	min-height: 0;
	transition: box-shadow var(--ot-transition);
}

.e-17a9347c > .holder > .grid > .thumbs > .thumb:hover
{
	box-shadow: var(--t3-shadow-card-hover);
}

.e-17a9347c > .holder > .grid > .thumbs > .thumb > .e-690d6f8e,
.e-17a9347c > .holder > .grid > .thumbs > .thumb > .e-690d6f8e > .holder
{
	height: 100%;
}

.e-17a9347c > .holder > .grid > .thumbs > .thumb > .e-690d6f8e > .holder
{
	aspect-ratio: auto;
}

.e-17a9347c > .holder > .grid > .thumbs > .thumb:hover .e-690d6f8e > .holder > .image
{
	transform: scale(1.04);
}

.e-17a9347c > .holder > .grid > .thumbs > .thumb > .more
{
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	background: rgba(12, 12, 14, 0.66);
	color: var(--ot-bg-1);
	border-radius: var(--ot-radius-m);
	backdrop-filter: blur(2px);
	transition: background-color var(--ot-transition);
}

.e-17a9347c > .holder > .grid > .thumbs > .thumb:hover > .more
{
	background: rgba(12, 12, 14, 0.5);
}

.e-17a9347c > .holder > .grid > .thumbs > .thumb > .more > .more-count
{
	font-family: var(--ot-font-primary);
	font-size: 28px;
	font-weight: 800;
	font-variation-settings: normal;
	line-height: 1;
}

.e-17a9347c > .holder > .grid > .thumbs > .thumb > .more > .more-label
{
	font-family: var(--ot-font-primary);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.e-17a9347c > .holder > .viewer
{
	position: fixed;
	inset: 0;
	z-index: 90;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--ot-spacing-m);
	padding: var(--ot-spacing-l);
	background: rgba(8, 8, 10, 0.94);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--ot-transition), visibility var(--ot-transition);
}

.e-17a9347c > .holder.is-open > .viewer
{
	opacity: 1;
	visibility: visible;
}

.e-17a9347c > .holder > .viewer > .viewer-image
{
	max-width: min(1200px, 88vw);
	max-height: 82vh;
	width: auto;
	object-fit: contain;
	border-radius: var(--ot-radius-m);
	box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
}

.e-17a9347c > .holder > .viewer > .viewer-close
{
	position: absolute;
	top: var(--ot-spacing-m);
	right: var(--ot-spacing-m);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: var(--ot-bg-1);
	transition: background-color var(--ot-transition);
}

.e-17a9347c > .holder > .viewer > .viewer-close:hover
{
	background: rgba(255, 255, 255, 0.24);
}

.e-17a9347c > .holder > .viewer > .viewer-arrow
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: var(--ot-bg-1);
	transition: background-color var(--ot-transition);
}

.e-17a9347c > .holder > .viewer > .viewer-arrow:hover
{
	background: var(--ot-orange);
	color: var(--ot-text-1);
}

.e-17a9347c > .holder > .viewer > .viewer-bar
{
	position: absolute;
	bottom: var(--ot-spacing-m);
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--ot-spacing-s);
	max-width: min(1200px, 88vw);
}

.e-17a9347c > .holder > .viewer > .viewer-bar > .e-21305e3c
{
	min-width: 0;
}

.e-17a9347c > .holder > .viewer > .viewer-bar > .viewer-count
{
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 600;
	color: var(--ot-bg-1);
	opacity: 0.7;
	flex: 0 0 auto;
}

@media screen and (max-width: 768px)
{
	.e-17a9347c > .holder > .grid
	{
		grid-template-columns: minmax(0, 1fr);
	}

	.e-17a9347c > .holder > .grid > .thumbs
	{
		grid-template-rows: auto;
	}

	.e-17a9347c > .holder > .viewer
	{
		padding: var(--ot-spacing-m);
	}

	.e-17a9347c > .holder > .viewer > .viewer-arrow
	{
		width: 40px;
		height: 40px;
	}

	.e-17a9347c > .holder > .grid > .main > .e-21305e3c
	{
		max-width: calc(100% - 80px);
	}
}

.e-52c43b2c > .holder
{
	display: flex;
	flex-direction: column;
	gap: 14px;
	max-width: 720px;
}

.e-52c43b2c > .holder.align-center
{
	align-items: center;
	text-align: center;
	max-width: 760px;
	margin-inline: auto;
}

.e-52c43b2c > .holder > .eyebrow
{
	display: inline-flex;
	align-items: center;
	gap: 9px;
	align-self: flex-start;
	padding: 7px 18px;
	border-radius: 0;
	background: var(--t3-navy-deep);
	box-shadow: var(--t3-shadow-strap);
	transform: skewX(var(--t3-skew));
	font-family: var(--ot-font-primary);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgb(255, 255, 255);
}

.e-52c43b2c > .holder.align-center > .eyebrow
{
	align-self: center;
}

.e-52c43b2c > .holder > .eyebrow > .eyebrow-rule
{
	display: block;
	width: 7px;
	height: 7px;
	border-radius: 0;
	background: var(--ot-orange);
	transform: skewX(var(--t3-skew-back));
	flex: 0 0 auto;
}

.e-52c43b2c > .holder > .eyebrow > span
{
	display: block;
	transform: skewX(var(--t3-skew-back));
}

.e-52c43b2c > .holder > .title
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-weight: 800;
	font-variation-settings: normal;
	line-height: 1.14;
	letter-spacing: -0.02em;
	color: var(--t3-navy);
	text-wrap: balance;
}

.e-52c43b2c > .holder > .title em
{
	font-style: normal;
	font-weight: 800;
	font-variation-settings: normal;
	color: var(--ot-orange-hover);
}

.e-52c43b2c > .holder.size-s > .title { font-size: 24px; font-weight: 800; }
.e-52c43b2c > .holder.size-m > .title { font-size: 34px; font-weight: 800; }
.e-52c43b2c > .holder.size-l > .title { font-size: 56px; font-weight: 800; }

.e-52c43b2c > .holder.size-s > .title em { font-weight: 800; }
.e-52c43b2c > .holder.size-l > .title em { font-weight: 800; }

.e-52c43b2c > .holder.size-l > .title
{
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.e-52c43b2c > .holder > .subtitle
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
	color: var(--ot-text-2);
	max-width: 58ch;
	text-wrap: pretty;
}

.e-52c43b2c > .holder.align-center > .subtitle
{
	margin-inline: auto;
}

.e-52c43b2c > .holder.tone-light > .title
{
	color: var(--ot-bg-1);
}

.e-52c43b2c > .holder.tone-light > .title em
{
	color: var(--ot-orange);
	opacity: 1;
}

.e-52c43b2c > .holder.tone-light > .subtitle
{
	color: var(--t3-light-text);
}

.e-52c43b2c > .holder.tone-light > .eyebrow
{
	background: rgb(255, 255, 255);
	color: var(--t3-navy-deep);
}

.e-52c43b2c > .holder.tone-light > .eyebrow > .eyebrow-rule
{
	background: var(--ot-orange);
}

@media screen and (max-width: 1024px)
{
	.e-52c43b2c > .holder.size-l > .title { font-size: 44px; }
	.e-52c43b2c > .holder.size-m > .title { font-size: 30px; }
}

@media screen and (max-width: 768px)
{
	.e-52c43b2c > .holder.size-l > .title { font-size: 36px; }
	.e-52c43b2c > .holder.size-m > .title { font-size: 27px; }
	.e-52c43b2c > .holder.size-s > .title { font-size: 21px; }
	.e-52c43b2c > .holder > .subtitle { font-size: 15px; }
}

@media screen and (max-width: 560px)
{
	.e-52c43b2c > .holder.size-l > .title { font-size: 30px; }
}

.e-690d6f8e > .holder
{
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	background: var(--ot-bg-2);
	flex: 0 0 auto;
}

.e-690d6f8e > .holder::before
{
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, var(--ot-bg-2) 30%, var(--ot-bg-3) 50%, var(--ot-bg-2) 70%);
	background-size: 300% 100%;
	animation: e690d6f8e-shimmer 1.6s ease-in-out infinite;
}

@keyframes e690d6f8e-shimmer
{
	0%   { background-position: 100% 0; }
	100% { background-position: 0 0; }
}

.e-690d6f8e > .holder.radius-none { border-radius: 0; }
.e-690d6f8e > .holder.radius-s { border-radius: 12px; }
.e-690d6f8e > .holder.radius-m { border-radius: 20px; }
.e-690d6f8e > .holder.radius-l { border-radius: 26px; }

.e-690d6f8e > .holder.radius-top
{
	border-radius: 20px;
}

.e-690d6f8e > .holder > .image
{
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--ot-transition-slow), filter var(--ot-transition);
}

.e-690d6f8e > .holder > .placeholder
{
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: var(--ot-bg-4);
	background: var(--ot-bg-2);
}

.e-690d6f8e > .holder > .shade
{
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
}

.e-690d6f8e > .holder.shade-bottom > .shade
{
	background: linear-gradient(to top, rgba(12, 12, 14, 0.80) 0%, rgba(12, 12, 14, 0.34) 40%, rgba(12, 12, 14, 0) 72%);
}

.e-690d6f8e > .holder.shade-full > .shade
{
	background:
		linear-gradient(to right, rgba(12, 12, 14, 0.76) 0%, rgba(12, 12, 14, 0.45) 46%, rgba(12, 12, 14, 0.10) 78%),
		linear-gradient(to top, rgba(12, 12, 14, 0.52) 0%, rgba(12, 12, 14, 0.10) 42%, rgba(12, 12, 14, 0.34) 100%);
}

.e-727a7230 > .holder
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ot-spacing-m);
	flex-wrap: wrap;
	padding-top: var(--ot-spacing-m);
	border-top: 1px solid var(--t3-navy-line);
}

.e-727a7230 > .holder > .arrow
{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 11px 20px;
	border: 1px solid var(--t3-navy-line);
	border-radius: 100px;
	font-family: var(--ot-font-primary);
	font-size: 14px;
	font-weight: 700;
	color: var(--t3-navy);
	background: var(--ot-bg-1);
	white-space: nowrap;
	transition: border-color var(--ot-transition), color var(--ot-transition), background-color var(--ot-transition), box-shadow var(--ot-transition), transform var(--ot-transition-fast);
}

.e-727a7230 > .holder > .arrow:hover:not(:disabled)
{
	border-color: var(--t3-navy);
	background: var(--t3-navy);
	color: rgb(255, 255, 255);
	box-shadow: var(--t3-shadow-cta);
	transform: translateY(-1px);
}

.e-727a7230 > .holder > .arrow:active:not(:disabled)
{
	transform: translateY(1px);
}

.e-727a7230 > .holder > .arrow:disabled
{
	opacity: 0.35;
	cursor: default;
}

.e-727a7230 > .holder > .arrow > .arrow-icon
{
	font-size: 18px;
	transition: transform var(--ot-transition);
}

.e-727a7230 > .holder > .arrow:hover:not(:disabled) > .arrow-icon
{
	transform: translateX(2px);
}

.e-727a7230 > .holder > .slots
{
	display: flex;
	align-items: center;
	gap: 4px;
	flex-wrap: wrap;
	justify-content: center;
	min-width: 0;
}

.e-727a7230 > .holder > .slots > .slot,
.e-727a7230 > .holder > .slots > .gap
{
	display: flex;
	align-items: center;
	justify-content: center;
}

.e-727a7230 > .holder > .slots > .gap > .gap-mark
{
	width: 26px;
	text-align: center;
	font-family: var(--ot-font-primary);
	font-size: 14px;
	color: var(--ot-text-3);
}

.e-727a7230 > .holder > .slots > .slot > .slot-button
{
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 10px;
	border-radius: 50%;
	font-family: var(--ot-font-primary);
	font-size: 14px;
	font-weight: 700;
	color: var(--ot-text-2);
	font-feature-settings: 'tnum';
	transition: background-color var(--ot-transition), color var(--ot-transition), box-shadow var(--ot-transition);
}

.e-727a7230 > .holder > .slots > .slot > .slot-button:hover
{
	background: var(--t3-sky);
	color: var(--t3-navy);
}

.e-727a7230 > .holder > .slots > .slot.is-active > .slot-button
{
	background: var(--t3-navy);
	color: rgb(255, 255, 255);
	font-weight: 800;
	box-shadow: var(--t3-shadow-cta);
}

@media screen and (max-width: 768px)
{
	.e-727a7230 > .holder
	{
		justify-content: center;
	}

	.e-727a7230 > .holder > .arrow > .arrow-label
	{
		display: none;
	}

	.e-727a7230 > .holder > .arrow
	{
		padding: 11px;
		border-radius: 50%;
	}
}

.e-693db0f3 > .holder
{
	display: flex;
	flex-direction: column;
	gap: 1px;
	font-family: var(--ot-font-primary);
	min-width: 0;
}

.e-693db0f3 > .holder.align-right
{
	align-items: flex-end;
	text-align: right;
}

.e-693db0f3 > .holder > .prefix,
.e-693db0f3 > .holder > .suffix
{
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.3;
	color: var(--ot-text-3);
}

.e-693db0f3 > .holder > .row
{
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
	min-width: 0;
}

.e-693db0f3 > .holder > .row > .value
{
	font-family: var(--ot-font-primary);
	font-weight: 800;
	font-variation-settings: normal;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--t3-navy);
	white-space: nowrap;
	font-feature-settings: 'tnum';
}

.e-693db0f3 > .holder > .row > .old
{
	font-size: 14px;
	font-weight: 500;
	color: var(--ot-text-3);
	text-decoration: line-through;
	text-decoration-color: var(--ot-orange);
	text-decoration-thickness: 1.5px;
	white-space: nowrap;
}

.e-693db0f3 > .holder.size-s > .row > .value { font-size: 19px; }
.e-693db0f3 > .holder.size-m > .row > .value { font-size: 24px; }
.e-693db0f3 > .holder.size-l > .row > .value { font-size: 30px; }

.e-693db0f3 > .holder.size-s > .row > .old { font-size: 13px; }

.e-3cbd9189 > .holder
{
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-m);
	min-width: 0;
}

.e-3cbd9189 > .holder > .viewport
{
	overflow: hidden;
	min-width: 0;
	padding-block: 4px;
	margin-block: -4px;
}

.e-3cbd9189 > .holder > .viewport > .track
{
	transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.e-3cbd9189 > .holder > .viewport > .track > .cells
{
	display: flex;
	align-items: stretch;
	gap: var(--ot-spacing-m);
}

.e-3cbd9189 > .holder > .viewport > .track > .cells > *
{
	flex: 0 0 calc((100% - (var(--per-view) - 1) * var(--ot-spacing-m)) / var(--per-view));
	min-width: 0;
}

.e-3cbd9189 > .holder > .controls
{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: var(--ot-spacing-s);
}

.e-3cbd9189 > .holder > .controls > .arrow
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: var(--ot-bg-1);
	border: 1px solid var(--t3-navy-line);
	color: var(--t3-navy);
	box-shadow: var(--t3-shadow-card);
	transition: background-color var(--ot-transition), color var(--ot-transition), border-color var(--ot-transition), opacity var(--ot-transition), box-shadow var(--ot-transition), transform var(--ot-transition-fast);
}

.e-3cbd9189 > .holder > .controls > .arrow:hover:not(:disabled)
{
	background: var(--ot-orange);
	border-color: var(--ot-orange);
	color: var(--ot-text-1);
	box-shadow: var(--t3-shadow-cta);
	transform: translateY(-2px);
}

.e-3cbd9189 > .holder > .controls > .arrow:active:not(:disabled)
{
	transform: translateY(1px) scale(0.97);
}

.e-3cbd9189 > .holder > .controls > .arrow:disabled
{
	opacity: 0.3;
	cursor: default;
	box-shadow: none;
}

.e-3cbd9189 > .holder > .controls > .arrow > .arrow-icon
{
	font-size: 20px;
}

.e-3cbd9189 > .holder > .controls > .counter
{
	font-family: var(--ot-font-primary);
	font-size: 22px;
	font-weight: 800;
	font-variation-settings: normal;
	letter-spacing: -0.02em;
	color: var(--t3-navy);
	font-feature-settings: 'tnum';
	margin-left: 8px;
	min-width: 68px;
	text-align: right;
}

.e-3cbd9189 > .holder.arrows-sides > .controls
{
	position: absolute;
	inset: 0;
	z-index: 3;
	justify-content: space-between;
	align-items: center;
	pointer-events: none;
	padding: 0;
}

.e-3cbd9189 > .holder.arrows-sides > .controls > .arrow
{
	pointer-events: auto;
	margin-inline: -24px;
}

.e-3cbd9189 > .holder.arrows-sides > .controls > .counter
{
	display: none;
}

@media screen and (max-width: 768px)
{
	.e-3cbd9189 > .holder > .controls > .arrow
	{
		width: 42px;
		height: 42px;
	}

	.e-3cbd9189 > .holder > .controls > .counter
	{
		font-size: 19px;
		min-width: 60px;
	}

	.e-3cbd9189 > .holder.arrows-sides > .controls > .arrow
	{
		margin-inline: 4px;
	}
}

.e-6968c40b > .holder
{
	display: inline-flex;
	align-items: center;
	gap: 3px;
	line-height: 1;
	flex: 0 0 auto;
}

.e-6968c40b > .holder > .star
{
	display: block;
	background: var(--ot-orange);
	clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
	flex: 0 0 auto;
}

.e-6968c40b > .holder.size-s > .star
{
	width: 13px;
	height: 13px;
}

.e-6968c40b > .holder.size-m > .star
{
	width: 16px;
	height: 16px;
}

.e-6968c40b > .holder.tone-light > .star
{
	background: var(--ot-bg-1);
}

.e-21305e3c > .holder
{
	display: inline-flex;
	align-items: center;
	gap: 5px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: var(--ot-font-primary);
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	max-width: 100%;
}

.e-21305e3c > .holder.size-s
{
	height: 26px;
	padding-inline: 10px;
	font-size: 12px;
}

.e-21305e3c > .holder.size-m
{
	height: 32px;
	padding-inline: 14px;
	font-size: 13px;
}

.e-21305e3c > .holder.emphasis-strong
{
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.e-21305e3c > .holder > .label
{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.e-21305e3c > .holder > .icon
{
	font-size: 15px;
	flex: 0 0 auto;
}

.e-21305e3c > .holder.size-m > .icon
{
	font-size: 17px;
}

.e-21305e3c > .holder > .image
{
	width: 18px;
	height: 13px;
	border-radius: 3px;
	object-fit: cover;
	flex: 0 0 auto;
}

.e-21305e3c > .holder.variant-soft.tone-plain
{
	background: var(--ot-bg-2);
	color: var(--ot-text-2);
}

.e-21305e3c > .holder.variant-soft.tone-brand
{
	background: var(--t3-navy-veil-thin);
	color: var(--t3-navy);
}

.e-21305e3c > .holder.variant-soft.tone-accent
{
	background: var(--ot-orange-opacity);
	color: var(--ot-orange-hover);
}

.e-21305e3c > .holder.variant-soft.tone-light
{
	background: rgba(255, 255, 255, 0.2);
	color: var(--ot-bg-1);
}

.e-21305e3c > .holder.variant-soft.tone-dark
{
	background: var(--t3-navy-veil);
	color: rgb(255, 255, 255);
}

.e-21305e3c > .holder.variant-solid.tone-plain
{
	background: var(--t3-navy-deep);
	color: rgb(255, 255, 255);
}

.e-21305e3c > .holder.variant-solid.tone-brand
{
	background: var(--t3-navy);
	color: rgb(255, 255, 255);
	font-weight: 700;
}

.e-21305e3c > .holder.variant-solid.tone-accent
{
	background: var(--ot-orange);
	color: var(--ot-text-1);
	font-weight: 700;
}

.e-21305e3c > .holder.variant-solid.tone-light
{
	background: var(--ot-bg-1);
	color: var(--ot-text-1);
	font-weight: 600;
	box-shadow: var(--ot-shadow-s);
}

.e-21305e3c > .holder.variant-solid.tone-dark
{
	background: var(--ot-text-1);
	color: var(--ot-bg-1);
}

.e-21305e3c > .holder.variant-outline.tone-plain
{
	border-color: var(--ot-bg-2-border);
	color: var(--ot-text-2);
}

.e-21305e3c > .holder.variant-outline.tone-brand
{
	border-color: var(--t3-navy);
	color: var(--t3-navy);
}

.e-21305e3c > .holder.variant-outline.tone-accent
{
	border-color: var(--ot-orange);
	color: var(--ot-orange-hover);
}

.e-21305e3c > .holder.variant-outline.tone-light
{
	border-color: rgba(255, 255, 255, 0.5);
	color: var(--ot-bg-1);
}

.e-21305e3c > .holder.variant-outline.tone-dark
{
	border-color: var(--ot-text-1);
	color: var(--ot-text-1);
}

.e-21305e3c > .holder.variant-bare
{
	padding-inline: 0;
	height: auto;
	background: transparent;
	color: var(--ot-text-3);
}

.e-21305e3c > .holder.variant-bare > .icon
{
	color: var(--ot-text-3);
}

.e-21305e3c > .holder.variant-bare.tone-light
{
	color: rgba(255, 255, 255, 0.85);
}

.e-21305e3c > .holder.variant-bare.tone-light > .icon
{
	color: rgba(255, 255, 255, 0.85);
}

.e-318b5d08 > .holder
{
	display: block;
	padding-block: 64px;
	background: var(--ot-bg-1);
}

.e-318b5d08 > .holder.background-soft
{
	background: var(--ot-bg-2);
}

.e-318b5d08 > .holder > .inner
{
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.e-318b5d08 > .holder > .inner > .mosaic
{
	display: grid;
	gap: 16px;
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed
{
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-template-rows: 210px 210px 210px;
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-flow
{
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: 210px;
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-even
{
	grid-template-columns: repeat(5, minmax(0, 1fr));
	grid-auto-rows: 260px;
	gap: 24px;
}

.e-318b5d08 > .holder > .inner > .mosaic > .cell
{
	position: relative;
	display: block;
	border-radius: 20px;
	overflow: hidden;
	background: var(--ot-bg-3);
	min-width: 0;
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-flow > .cell-1
{
	grid-column: 1 / span 2;
	grid-row: 1 / span 2;
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed > .cell-1
{
	grid-column: 1 / span 2;
	grid-row: 1 / span 2;
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed > .cell-2
{
	grid-column: 3 / span 1;
	grid-row: 1 / span 1;
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed > .cell-3
{
	grid-column: 4 / span 1;
	grid-row: 1 / span 1;
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed > .cell-4
{
	grid-column: 3 / span 2;
	grid-row: 2 / span 1;
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed > .cell-5
{
	grid-column: 1 / span 2;
	grid-row: 3 / span 1;
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed > .cell-6
{
	grid-column: 3 / span 2;
	grid-row: 3 / span 1;
}

.e-318b5d08 > .holder > .inner > .mosaic > .cell > .cell-image
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--ot-transition-slow);
}

.e-318b5d08 > .holder > .inner > .mosaic > .cell:hover > .cell-image
{
	transform: scale(1.05);
}

.e-318b5d08 > .holder > .inner > .mosaic > .cell > .cell-placeholder
{
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: var(--ot-bg-4);
}

.e-318b5d08 > .holder > .inner > .mosaic > .cell > .cell-shade
{
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(14, 14, 18, 0.86) 0%, rgba(14, 14, 18, 0.28) 48%, rgba(14, 14, 18, 0) 76%);
}

.e-318b5d08 > .holder > .inner > .mosaic > .cell > .cell-badge
{
	position: absolute;
	top: 12px;
	right: 12px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	height: 27px;
	padding-inline: 10px;
	border-radius: 999px;
	background: var(--ot-bg-1);
	font-family: var(--ot-font-primary);
	font-size: 12px;
	font-weight: 700;
	color: var(--ot-text-1);
	box-shadow: var(--ot-shadow-s);
}

.e-318b5d08 > .holder > .inner > .mosaic > .cell > .cell-badge > .cell-badge-icon
{
	font-size: 14px;
	color: var(--ot-orange);
	font-variation-settings: 'FILL' 1, 'opsz' 24, 'wght' 500;
}

.e-318b5d08 > .holder > .inner > .mosaic > .cell > .cell-body
{
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 14px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.e-318b5d08 > .holder > .inner > .mosaic > .cell > .cell-body > .cell-name
{
	font-family: var(--ot-font-primary);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 1.32;
	color: var(--ot-bg-1);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed > .cell-1 > .cell-body > .cell-name,
.e-318b5d08 > .holder > .inner > .mosaic.layout-flow > .cell-1 > .cell-body > .cell-name
{
	font-size: 22px;
	-webkit-line-clamp: 3;
}

.e-318b5d08 > .holder > .inner > .mosaic > .cell > .cell-body > .cell-text
{
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.82);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed > .cell-1 > .cell-body > .cell-text,
.e-318b5d08 > .holder > .inner > .mosaic.layout-flow > .cell-1 > .cell-body > .cell-text
{
	font-size: 15px;
	-webkit-line-clamp: 3;
	max-width: 460px;
}

.e-318b5d08 > .holder > .inner > .mosaic > .cell > .cell-body > .cell-location
{
	display: inline-flex;
	align-items: center;
	gap: 4px;
	min-width: 0;
	font-family: var(--ot-font-primary);
	font-size: 12px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.82);
}

.e-318b5d08 > .holder > .inner > .mosaic > .cell > .cell-body > .cell-location > .cell-location-icon
{
	font-size: 15px;
	flex: 0 0 auto;
}

.e-318b5d08 > .holder > .inner > .mosaic > .cell > .cell-body > .cell-location > .cell-location-text
{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-even > .cell
{
	border-radius: var(--ot-radius-m);
	overflow: visible;
	box-shadow: var(--t3-shadow-card);
	transition: transform var(--ot-transition), box-shadow var(--ot-transition);
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-even > .cell:hover
{
	transform: translateY(-6px);
	box-shadow: var(--t3-shadow-card-hover);
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-even > .cell > .cell-image,
.e-318b5d08 > .holder > .inner > .mosaic.layout-even > .cell > .cell-placeholder
{
	border-radius: var(--ot-radius-m);
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-even > .cell:hover > .cell-image
{
	transform: none;
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-even > .cell > .cell-shade
{
	border-radius: var(--ot-radius-m);
	background: linear-gradient(to top, var(--t3-navy-veil) 0%, var(--t3-navy-veil-thin) 52%, rgba(0, 0, 0, 0) 78%);
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-even > .cell > .cell-body
{
	left: auto;
	right: -14px;
	bottom: 48px;
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 0;
	max-width: calc(100% + 14px);
	padding: 8px 22px;
	background: var(--t3-navy);
	transform: skewX(var(--t3-skew));
	transition: transform var(--ot-transition);
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-even > .cell:hover > .cell-body
{
	transform: skewX(var(--t3-skew)) translateX(-6px);
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-even > .cell > .cell-body > .cell-name
{
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 18px;
	font-weight: 800;
	color: rgb(255, 255, 255);
	transform: skewX(var(--t3-skew-back));
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-even > .cell > .cell-body > .cell-text,
.e-318b5d08 > .holder > .inner > .mosaic.layout-even > .cell > .cell-body > .cell-location
{
	display: none;
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-even > .cell > .cell-badge
{
	top: auto;
	right: 6px;
	bottom: 22px;
	height: auto;
	padding: 6px 26px;
	border-radius: 0;
	background: var(--ot-orange);
	box-shadow: none;
	transform: skewX(var(--t3-skew));
	font-size: 13px;
	letter-spacing: 0.03em;
	transition: transform var(--ot-transition);
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-even > .cell:hover > .cell-badge
{
	transform: skewX(var(--t3-skew)) translateX(-10px);
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-even > .cell > .cell-badge > .cell-badge-icon,
.e-318b5d08 > .holder > .inner > .mosaic.layout-even > .cell > .cell-badge > .cell-badge-text
{
	transform: skewX(var(--t3-skew-back));
}

.e-318b5d08 > .holder > .inner > .mosaic.layout-even > .cell > .cell-badge > .cell-badge-icon
{
	font-size: 16px;
	color: var(--ot-text-1);
}

.e-318b5d08 > .holder > .inner > .action
{
	display: flex;
	justify-content: center;
}

.e-318b5d08 > .holder.align-left > .inner > .action
{
	justify-content: flex-start;
}

@media screen and (max-width: 1200px)
{
	.e-318b5d08 > .holder > .inner > .mosaic.layout-even
	{
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media screen and (max-width: 1024px)
{
	.e-318b5d08 > .holder
	{
		padding-block: 48px;
	}

	.e-318b5d08 > .holder > .inner > .mosaic.layout-even
	{
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: 190px;
	}

	.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed
	{
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: repeat(4, 190px);
	}

	.e-318b5d08 > .holder > .inner > .mosaic.layout-flow
	{
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: 190px;
	}

	.e-318b5d08 > .holder > .inner > .mosaic.layout-flow > .cell-1
	{
		grid-column: 1 / span 2;
		grid-row: auto;
	}

	.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed > .cell-1
	{
		grid-column: 1 / span 2;
		grid-row: 1 / span 1;
	}

	.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed > .cell-2
	{
		grid-column: 1 / span 1;
		grid-row: 2 / span 1;
	}

	.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed > .cell-3
	{
		grid-column: 2 / span 1;
		grid-row: 2 / span 1;
	}

	.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed > .cell-4
	{
		grid-column: 1 / span 2;
		grid-row: 3 / span 1;
	}

	.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed > .cell-5
	{
		grid-column: 1 / span 1;
		grid-row: 4 / span 1;
	}

	.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed > .cell-6
	{
		grid-column: 2 / span 1;
		grid-row: 4 / span 1;
	}
}

@media screen and (max-width: 560px)
{
	.e-318b5d08 > .holder
	{
		padding-block: 34px;
	}

	.e-318b5d08 > .holder > .inner
	{
		gap: 24px;
	}

	.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed,
	.e-318b5d08 > .holder > .inner > .mosaic.layout-flow,
	.e-318b5d08 > .holder > .inner > .mosaic.layout-even
	{
		grid-template-columns: minmax(0, 1fr);
		grid-auto-rows: 190px;
		grid-template-rows: none;
		gap: 12px;
	}

	.e-318b5d08 > .holder > .inner > .mosaic.layout-flow > .cell-1,
	.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed > .cell-1,
	.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed > .cell-2,
	.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed > .cell-3,
	.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed > .cell-4,
	.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed > .cell-5,
	.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed > .cell-6
	{
		grid-column: auto;
		grid-row: auto;
	}

	.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed > .cell-1 > .cell-body > .cell-name,
	.e-318b5d08 > .holder > .inner > .mosaic.layout-flow > .cell-1 > .cell-body > .cell-name
	{
		font-size: 18px;
	}

	.e-318b5d08 > .holder > .inner > .mosaic.layout-fixed > .cell-1 > .cell-body > .cell-text,
	.e-318b5d08 > .holder > .inner > .mosaic.layout-flow > .cell-1 > .cell-body > .cell-text
	{
		font-size: 13px;
		-webkit-line-clamp: 2;
	}

	.e-318b5d08 > .holder > .inner > .mosaic.layout-even
	{
		grid-auto-rows: 220px;
		gap: 16px;
	}

	.e-318b5d08 > .holder > .inner > .mosaic.layout-even > .cell > .cell-body
	{
		bottom: 44px;
		padding: 6px 18px;
	}

	.e-318b5d08 > .holder > .inner > .mosaic.layout-even > .cell > .cell-body > .cell-name
	{
		font-size: 16px;
	}

	.e-318b5d08 > .holder > .inner > .mosaic.layout-even > .cell > .cell-badge
	{
		padding: 5px 20px;
		font-size: 12px;
	}
}

.e-421ec462 > .holder
{
	display: block;
	padding-block: 72px 96px;
}

.e-421ec462 > .holder > .inner
{
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: var(--ot-spacing-l);
	align-items: start;
}

.e-421ec462 > .holder > .inner > .info
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-m);
	min-width: 0;
}

.e-421ec462 > .holder > .inner > .info > .rows
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--ot-spacing-m);
}

.e-421ec462 > .holder > .inner > .info > .rows > .row
{
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	padding: var(--ot-spacing-s);
	border: 1px solid var(--t3-navy-line);
	border-radius: var(--ot-radius-m);
	background: var(--ot-bg-1);
	box-shadow: var(--t3-shadow-card);
	transition: border-color var(--ot-transition), box-shadow var(--ot-transition), transform var(--ot-transition);
}

.e-421ec462 > .holder > .inner > .info > .rows > .row:hover
{
	border-color: var(--ot-orange);
	box-shadow: var(--t3-shadow-card-hover);
	transform: translateY(-3px);
}

.e-421ec462 > .holder > .inner > .info > .rows > .row > .row-icon-wrap
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	flex: 0 0 auto;
	border-radius: var(--ot-radius-s);
	background: var(--t3-navy-veil-thin);
}

.e-421ec462 > .holder > .inner > .info > .rows > .row > .row-icon-wrap > .row-icon
{
	font-size: 19px;
	color: var(--t3-navy);
}

.e-421ec462 > .holder > .inner > .info > .rows > .row > .row-text
{
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.e-421ec462 > .holder > .inner > .info > .rows > .row > .row-text > .row-label
{
	font-family: var(--ot-font-primary);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ot-text-3);
}

.e-421ec462 > .holder > .inner > .info > .rows > .row > .row-text > .row-value
{
	font-family: var(--ot-font-primary);
	font-size: 14px;
	font-weight: 700;
	color: var(--t3-navy);
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

.e-421ec462 > .holder > .inner > .info > .map
{
	overflow: hidden;
	border-radius: var(--ot-radius-m);
	border: 1px solid var(--t3-navy-line);
	aspect-ratio: 16/9;
}

.e-421ec462 > .holder > .inner > .info > .map > .map-frame
{
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

@media screen and (max-width: 1024px)
{
	.e-421ec462 > .holder
	{
		padding-block: 48px 64px;
	}
}

@media screen and (max-width: 560px)
{
	.e-421ec462 > .holder > .inner > .info > .rows
	{
		grid-template-columns: minmax(0, 1fr);
	}
}

.e-5ec86cae > .holder
{
	display: block;
	padding-block: 64px;
	background: var(--ot-bg-1);
}

.e-5ec86cae > .holder.background-soft
{
	background: var(--ot-bg-2);
}

.e-5ec86cae > .holder > .inner > .card
{
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: stretch;
	overflow: hidden;
	border-radius: 26px;
	background: var(--ot-bg-1);
	border: 1px solid var(--t3-navy-line);
	box-shadow: var(--t3-shadow-card);
}

.e-5ec86cae > .holder > .inner > .card.has-media
{
	grid-template-columns: minmax(240px, 32%) minmax(0, 1fr) auto;
}

.e-5ec86cae > .holder > .inner > .card.has-media.side-right
{
	grid-template-columns: minmax(0, 1fr) auto minmax(240px, 32%);
}

.e-5ec86cae > .holder > .inner > .card.has-media.side-right > .media
{
	grid-column: 3;
}

.e-5ec86cae > .holder > .inner > .card.has-media.side-right > .body
{
	grid-column: 1;
}

.e-5ec86cae > .holder > .inner > .card.has-media.side-right > .action
{
	grid-column: 2;
}

.e-5ec86cae > .holder > .inner > .card > .media
{
	position: relative;
	min-width: 0;
	overflow: hidden;
	background: var(--ot-bg-2);
}

.e-5ec86cae > .holder > .inner > .card > .media > .media-image
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.e-5ec86cae > .holder > .inner > .card > .media > .decor
{
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(155deg, var(--t3-navy-veil-mid), rgba(255, 255, 255, 0) 62%);
}

.e-5ec86cae > .holder > .inner > .card > .media > .decor::before
{
	content: '';
	position: absolute;
	left: -46px;
	bottom: -58px;
	width: 190px;
	height: 190px;
	border-radius: 50%;
	background: var(--t3-navy);
	opacity: 0.18;
}

.e-5ec86cae > .holder > .inner > .card > .media > .decor::after
{
	content: '';
	position: absolute;
	right: -34px;
	top: -34px;
	width: 128px;
	height: 128px;
	border-radius: 50%;
	border: 14px solid var(--ot-orange);
	opacity: 0.35;
}

.e-5ec86cae > .holder > .inner > .card > .body
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 22px;
	min-width: 0;
	padding: 40px;
}

.e-5ec86cae > .holder > .inner > .card > .body > .points
{
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.e-5ec86cae > .holder > .inner > .card > .body > .points > .point
{
	display: flex;
	align-items: center;
	gap: 12px;
}

.e-5ec86cae > .holder > .inner > .card > .body > .points > .point > .point-dot
{
	display: block;
	width: 10px;
	height: 14px;
	background: var(--ot-orange);
	transform: skewX(var(--t3-skew));
	flex: 0 0 auto;
}

.e-5ec86cae > .holder > .inner > .card > .body > .points > .point > .point-label
{
	font-family: var(--ot-font-primary);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--ot-text-2);
}

.e-5ec86cae > .holder > .inner > .card > .action
{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 40px 40px 40px 0;
}

.e-5ec86cae > .holder > .inner > .card > .action > .action-note
{
	font-family: var(--ot-font-primary);
	font-size: 12px;
	line-height: 1.5;
	color: var(--ot-text-3);
	text-align: center;
}

@media screen and (max-width: 1024px)
{
	.e-5ec86cae > .holder
	{
		padding-block: 48px;
	}

	.e-5ec86cae > .holder > .inner > .card
	{
		grid-template-columns: minmax(0, 1fr);
	}

	.e-5ec86cae > .holder > .inner > .card.has-media
	{
		grid-template-columns: minmax(200px, 34%) minmax(0, 1fr);
	}

	.e-5ec86cae > .holder > .inner > .card.has-media.side-right
	{
		grid-template-columns: minmax(0, 1fr) minmax(200px, 34%);
	}

	.e-5ec86cae > .holder > .inner > .card.has-media > .media
	{
		grid-column: 1;
		grid-row: 1 / span 2;
	}

	.e-5ec86cae > .holder > .inner > .card.has-media.side-right > .media
	{
		grid-column: 2;
		grid-row: 1 / span 2;
	}

	.e-5ec86cae > .holder > .inner > .card.has-media > .body
	{
		grid-column: 2;
		grid-row: 1;
	}

	.e-5ec86cae > .holder > .inner > .card.has-media > .action
	{
		grid-column: 2;
		grid-row: 2;
	}

	.e-5ec86cae > .holder > .inner > .card.has-media.side-right > .body,
	.e-5ec86cae > .holder > .inner > .card.has-media.side-right > .action
	{
		grid-column: 1;
	}

	.e-5ec86cae > .holder > .inner > .card > .body
	{
		padding: 34px 34px 20px 34px;
	}

	.e-5ec86cae > .holder > .inner > .card > .action
	{
		align-items: flex-start;
		justify-content: flex-start;
		gap: 8px;
		padding: 0 34px 34px 34px;
	}

	.e-5ec86cae > .holder > .inner > .card > .action > .action-note
	{
		text-align: left;
	}
}

@media screen and (max-width: 768px)
{
	.e-5ec86cae > .holder
	{
		padding-block: 40px;
	}

	.e-5ec86cae > .holder > .inner > .card.has-media,
	.e-5ec86cae > .holder > .inner > .card.has-media.side-right
	{
		grid-template-columns: minmax(0, 1fr);
	}

	.e-5ec86cae > .holder > .inner > .card.has-media > .media,
	.e-5ec86cae > .holder > .inner > .card.has-media.side-right > .media
	{
		grid-column: 1;
		grid-row: 1;
	}

	.e-5ec86cae > .holder > .inner > .card.has-media > .body,
	.e-5ec86cae > .holder > .inner > .card.has-media.side-right > .body
	{
		grid-column: 1;
		grid-row: 2;
	}

	.e-5ec86cae > .holder > .inner > .card.has-media > .action,
	.e-5ec86cae > .holder > .inner > .card.has-media.side-right > .action
	{
		grid-column: 1;
		grid-row: 3;
	}

	.e-5ec86cae > .holder > .inner > .card > .media > .media-image
	{
		height: auto;
		aspect-ratio: 16/9;
	}

	.e-5ec86cae > .holder > .inner > .card > .action
	{
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.e-5ec86cae > .holder > .inner > .card > .action > .e-593be338 > .holder
	{
		display: flex;
		width: 100%;
	}

	.e-5ec86cae > .holder > .inner > .card > .action > .action-note
	{
		text-align: center;
	}
}

@media screen and (max-width: 560px)
{
	.e-5ec86cae > .holder
	{
		padding-block: 34px;
	}

	.e-5ec86cae > .holder > .inner > .card
	{
		border-radius: 20px;
	}

	.e-5ec86cae > .holder > .inner > .card > .body
	{
		padding: 24px 24px 16px 24px;
	}

	.e-5ec86cae > .holder > .inner > .card > .action
	{
		padding: 0 24px 24px 24px;
	}

	.e-5ec86cae > .holder > .inner > .card > .media > .media-image
	{
		aspect-ratio: 3/2;
	}
}

.e-1b0188dd > .holder
{
	display: block;
	padding-block: 72px;
}

.e-1b0188dd > .holder.background-soft { background: var(--ot-bg-2); }
.e-1b0188dd > .holder.background-sand { background: var(--t3-sand); }
.e-1b0188dd > .holder.background-sky  { background: var(--t3-sky); }

.e-1b0188dd > .holder > .inner
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-m);
}

.e-1b0188dd > .holder > .inner > .tabs
{
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.e-1b0188dd > .holder > .inner > .tabs > .tab
{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 40px;
	padding-inline: 18px;
	border-radius: 999px;
	border: 1px solid var(--t3-navy-line);
	background: var(--ot-bg-1);
	font-family: var(--ot-font-primary);
	font-size: 14px;
	font-weight: 700;
	color: var(--ot-text-2);
	white-space: nowrap;
	cursor: pointer;
	transition: background-color var(--ot-transition), color var(--ot-transition), border-color var(--ot-transition);
}

.e-1b0188dd > .holder > .inner > .tabs > .tab:hover
{
	border-color: var(--ot-orange);
	color: var(--ot-text-1);
}

.e-1b0188dd > .holder > .inner > .tabs > .tab.is-active
{
	background: var(--t3-navy);
	border-color: var(--t3-navy);
	color: rgb(255, 255, 255);
}

.e-1b0188dd > .holder > .inner > .tabs > .tab > .tab-flag
{
	width: 22px;
	height: 16px;
	object-fit: cover;
	border-radius: 2px;
	flex: 0 0 auto;
}

.e-1b0188dd > .holder > .inner > .grid
{
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: var(--ot-spacing-s);
}

.e-1b0188dd > .holder > .inner > .grid > .skeleton
{
	height: 56px;
	border-radius: var(--ot-radius-s);
	background: var(--ot-bg-3);
}

.e-1b0188dd > .holder > .inner > .grid > .place
{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-width: 0;
	padding: 15px 12px 15px 24px;
	overflow: hidden;
	background: var(--ot-bg-1);
	border: 1px solid var(--t3-navy-line);
	border-radius: var(--ot-radius-s);
	box-shadow: var(--t3-shadow-card);
	transition: border-color var(--ot-transition), transform var(--ot-transition), box-shadow var(--ot-transition);
}

.e-1b0188dd > .holder > .inner > .grid > .place::before
{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: -6px;
	width: 12px;
	background: var(--ot-orange);
	transform: skewX(var(--t3-skew));
	transition: width var(--ot-transition);
}

.e-1b0188dd > .holder > .inner > .grid > .place:hover
{
	border-color: var(--ot-orange);
	transform: translateY(-3px);
	box-shadow: var(--t3-shadow-card-hover);
}

.e-1b0188dd > .holder > .inner > .grid > .place:hover::before
{
	width: 20px;
}

.e-1b0188dd > .holder > .inner > .grid > .place > .place-name
{
	font-family: var(--ot-font-primary);
	font-size: 15px;
	font-weight: 700;
	color: var(--t3-navy);
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.e-1b0188dd > .holder > .inner > .grid > .place > .place-count
{
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	height: 22px;
	padding-inline: 9px;
	border-radius: 999px;
	background: var(--t3-navy-veil-thin);
	font-family: var(--ot-font-primary);
	font-size: 12px;
	font-weight: 700;
	color: var(--t3-navy);
	font-variant-numeric: tabular-nums;
}

.e-1b0188dd > .holder > .inner > .grid > .place > .place-chevron
{
	font-size: 18px;
	color: var(--ot-orange-hover);
	flex: 0 0 auto;
	transition: transform var(--ot-transition);
}

.e-1b0188dd > .holder > .inner > .grid > .place:hover > .place-chevron
{
	transform: translateX(3px);
}

.e-1b0188dd > .holder > .inner > .cards
{
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--ot-spacing-m);
	align-items: stretch;
}

.e-1b0188dd > .holder > .inner > .cards > .skeleton
{
	height: 380px;
	border-radius: var(--ot-radius-m);
	background: var(--ot-bg-3);
}

.e-1b0188dd > .holder > .inner > .action
{
	display: flex;
	justify-content: center;
	margin-top: var(--ot-spacing-s);
}

@media screen and (max-width: 1200px)
{
	.e-1b0188dd > .holder > .inner > .grid
	{
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media screen and (max-width: 1024px)
{
	.e-1b0188dd > .holder
	{
		padding-block: 56px;
	}

	.e-1b0188dd > .holder > .inner > .grid
	{
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.e-1b0188dd > .holder > .inner > .cards
	{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.e-1b0188dd > .holder > .inner > .tabs
	{
		flex-wrap: nowrap;
		overflow-x: auto;
	}
}

@media screen and (max-width: 560px)
{
	.e-1b0188dd > .holder
	{
		padding-block: 40px;
	}

	.e-1b0188dd > .holder > .inner > .grid
	{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.e-1b0188dd > .holder > .inner > .cards
	{
		grid-template-columns: minmax(0, 1fr);
	}
}

.e-12394c3b > .holder
{
	display: block;
	padding-block: 72px;
}

.e-12394c3b > .holder.background-soft
{
	background: var(--ot-bg-2);
}

.e-12394c3b > .holder.background-brand
{
	background: var(--ot-brand-opacity);
}

.e-12394c3b > .holder > .inner
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-l);
}

.e-12394c3b > .holder > .inner > .grid
{
	display: grid;
	grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
	gap: var(--ot-spacing-m);
	align-items: stretch;
}

.e-12394c3b > .holder > .inner > .grid > .item
{
	display: flex;
	flex-direction: column;
	gap: 8px;
	height: 100%;
	padding: var(--ot-spacing-m);
	background: var(--ot-bg-1);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: var(--ot-radius-m);
	transition: transform var(--ot-transition), box-shadow var(--ot-transition), border-color var(--ot-transition);
}

.e-12394c3b > .holder > .inner > .grid > .item:hover
{
	transform: translateY(-4px);
	box-shadow: var(--ot-shadow-m);
	border-color: var(--ot-brand);
}

.e-12394c3b > .holder > .inner > .grid > .item > .item-icon-wrap
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 4px;
	border-radius: 50%;
	background: var(--ot-brand-opacity);
}

.e-12394c3b > .holder > .inner > .grid > .item > .item-icon-wrap > .item-icon
{
	font-size: 24px;
	color: var(--ot-brand);
}

.e-12394c3b > .holder > .inner > .grid > .item > .item-title
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-size: 17px;
	font-weight: 600;
	font-variation-settings: normal;
	line-height: 1.35;
	letter-spacing: 0;
	color: var(--ot-text-1);
}

.e-12394c3b > .holder > .inner > .grid > .item > .item-text
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-size: 14px;
	line-height: 1.65;
	color: var(--ot-text-2);
}

@media screen and (max-width: 1024px)
{
	.e-12394c3b > .holder
	{
		padding-block: 56px;
	}

	.e-12394c3b > .holder > .inner > .grid
	{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 560px)
{
	.e-12394c3b > .holder
	{
		padding-block: 40px;
	}

	.e-12394c3b > .holder > .inner
	{
		gap: var(--ot-spacing-m);
	}

	.e-12394c3b > .holder > .inner > .grid
	{
		grid-template-columns: minmax(0, 1fr);
	}
}

.e-2987bbc3 > .holder
{
	display: flex;
	flex-direction: column;
	background: var(--ot-bg-1);
	border: 1px solid var(--t3-navy-line);
	border-radius: var(--ot-radius-m);
	box-shadow: var(--t3-shadow-card);
	overflow: hidden;
}

.e-2987bbc3 > .holder > .head
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ot-spacing-s);
	padding: var(--ot-spacing-m);
	border-bottom: 1px solid var(--t3-navy-line);
}

.e-2987bbc3 > .holder > .head > .head-left
{
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.e-2987bbc3 > .holder > .head > .head-left > .head-icon
{
	font-size: 20px;
	color: var(--ot-orange);
}

.e-2987bbc3 > .holder > .head > .head-left > .head-title
{
	font-family: var(--ot-font-primary);
	font-size: 19px;
	font-weight: 800;
	font-variation-settings: normal;
	letter-spacing: -0.02em;
	color: var(--t3-navy);
}

.e-2987bbc3 > .holder > .head > .reset
{
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 700;
	color: var(--ot-orange-hover);
	white-space: nowrap;
}

.e-2987bbc3 > .holder > .chips
{
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	border-bottom: 1px solid var(--t3-navy-line);
	background: var(--t3-sky);
}

.e-2987bbc3 > .holder > .chips > .chip
{
	display: inline-flex;
	align-items: center;
	gap: 5px;
	max-width: 100%;
	padding: 5px 8px 5px 11px;
	border-radius: 100px;
	background: var(--t3-navy);
	color: rgb(255, 255, 255);
	font-family: var(--ot-font-primary);
	font-size: 12px;
	font-weight: 700;
	transition: background-color var(--ot-transition);
}

.e-2987bbc3 > .holder > .chips > .chip:hover
{
	background: var(--ot-orange);
	color: var(--ot-text-1);
}

.e-2987bbc3 > .holder > .chips > .chip > .chip-label
{
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.e-2987bbc3 > .holder > .chips > .chip > .chip-icon
{
	font-size: 15px;
	flex: 0 0 auto;
}

.e-2987bbc3 > .holder > .group
{
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--t3-navy-line);
}

.e-2987bbc3 > .holder > .group-search
{
	border-top: none;
	padding: var(--ot-spacing-m);
}

.e-2987bbc3 > .holder > .group-search > .search
{
	position: relative;
	display: flex;
	align-items: center;
}

.e-2987bbc3 > .holder > .group-search > .search > .search-icon
{
	position: absolute;
	left: 12px;
	font-size: 18px;
	color: var(--ot-text-3);
	pointer-events: none;
}

.e-2987bbc3 > .holder > .group-search > .search > .search-input
{
	width: 100%;
	padding: 12px 14px 12px 38px;
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: var(--ot-radius-s);
	font-family: var(--ot-font-primary);
	font-size: 14px;
	color: var(--ot-text-1);
	transition: border-color var(--ot-transition), background-color var(--ot-transition);
}

.e-2987bbc3 > .holder > .group-search > .search > .search-input:focus
{
	outline: none;
	background: var(--ot-bg-1);
	border-color: var(--t3-navy);
}

.e-2987bbc3 > .holder > .group > .group-head
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ot-spacing-s);
	padding: 14px var(--ot-spacing-m);
	font-family: var(--ot-font-primary);
	font-size: 15px;
	font-weight: 700;
	color: var(--t3-navy);
	text-align: left;
	transition: background-color var(--ot-transition);
}

.e-2987bbc3 > .holder > .group > .group-head:hover
{
	background: var(--t3-sky);
}

.e-2987bbc3 > .holder > .group > .group-head > .group-left
{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.e-2987bbc3 > .holder > .group > .group-head > .group-left > .group-icon
{
	font-size: 18px;
	color: var(--ot-text-3);
}

.e-2987bbc3 > .holder > .group > .group-head > .group-left > .group-badge
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	border-radius: 100px;
	background: var(--ot-orange);
	color: var(--ot-text-1);
	font-size: 11px;
	font-weight: 700;
}

.e-2987bbc3 > .holder > .group > .group-head > .group-chevron
{
	font-size: 20px;
	color: var(--ot-text-3);
	transition: transform var(--ot-transition);
}

.e-2987bbc3 > .holder > .group.is-closed > .group-head > .group-chevron
{
	transform: rotate(-90deg);
}

.e-2987bbc3 > .holder > .group > .group-body
{
	display: grid;
	grid-template-rows: 1fr;
	transition: grid-template-rows var(--ot-transition-slow);
}

.e-2987bbc3 > .holder > .group.is-closed > .group-body
{
	grid-template-rows: 0fr;
}

.e-2987bbc3 > .holder > .group > .group-body > .group-inner
{
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-height: 0;
}

.e-2987bbc3 > .holder > .group > .group-body > .group-inner > .group-note
{
	margin: 0 var(--ot-spacing-m) 8px;
	font-family: var(--ot-font-primary);
	font-size: 12px;
	line-height: 1.45;
	color: var(--ot-text-3);
}

.e-2987bbc3 > .holder > .group > .group-body > .group-inner > .group-search-field
{
	position: relative;
	display: flex;
	align-items: center;
	margin: 0 var(--ot-spacing-m) 8px;
}

.e-2987bbc3 > .holder > .group > .group-body > .group-inner > .group-search-field > .group-search-icon
{
	position: absolute;
	left: 10px;
	font-size: 16px;
	color: var(--ot-text-3);
	pointer-events: none;
}

.e-2987bbc3 > .holder > .group > .group-body > .group-inner > .group-search-field > .group-search-input
{
	width: 100%;
	padding: 8px 10px 8px 32px;
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: var(--ot-radius-s);
	font-family: var(--ot-font-primary);
	font-size: 13px;
	color: var(--ot-text-1);
	transition: border-color var(--ot-transition), background-color var(--ot-transition);
}

.e-2987bbc3 > .holder > .group > .group-body > .group-inner > .group-search-field > .group-search-input:focus
{
	outline: none;
	background: var(--ot-bg-1);
	border-color: var(--t3-navy);
}

.e-2987bbc3 > .holder > .group > .group-body > .group-inner > .option
{
	display: flex;
	align-items: center;
	gap: 9px;
	width: 100%;
	min-width: 0;
	padding: 7px var(--ot-spacing-m);
	text-align: left;
	cursor: pointer;
	transition: background-color var(--ot-transition);
}

.e-2987bbc3 > .holder > .group > .group-body > .group-inner > .option:hover
{
	background: var(--t3-sky);
}

.e-2987bbc3 > .holder > .group > .group-body > .group-inner > .option > .option-box
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	border: 1.5px solid var(--ot-bg-4-border);
	border-radius: 4px;
	transition: background-color var(--ot-transition), border-color var(--ot-transition);
}

.e-2987bbc3 > .holder > .group > .group-body > .group-inner > .option > .option-box > .option-check
{
	font-size: 14px;
	color: var(--ot-bg-1);
	opacity: 0;
	transition: opacity var(--ot-transition);
}

.e-2987bbc3 > .holder > .group > .group-body > .group-inner > .option.is-checked > .option-box
{
	background: var(--t3-navy);
	border-color: var(--t3-navy);
}

.e-2987bbc3 > .holder > .group > .group-body > .group-inner > .option.is-checked > .option-box > .option-check
{
	opacity: 1;
}

.e-2987bbc3 > .holder > .group > .group-body > .group-inner > .option > .option-icon
{
	font-size: 17px;
	color: var(--ot-text-3);
	flex: 0 0 auto;
	transition: color var(--ot-transition);
}

.e-2987bbc3 > .holder > .group > .group-body > .group-inner > .option.is-checked > .option-icon
{
	color: var(--ot-orange-hover);
}

.e-2987bbc3 > .holder > .group > .group-body > .group-inner > .option > .option-label
{
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-family: var(--ot-font-primary);
	font-size: 14px;
	color: var(--ot-text-2);
}

.e-2987bbc3 > .holder > .group > .group-body > .group-inner > .option.is-checked > .option-label
{
	color: var(--t3-navy);
	font-weight: 700;
}

.e-2987bbc3 > .holder > .group > .group-body > .group-inner > .option > .option-count
{
	font-family: var(--ot-font-primary);
	font-size: 12px;
	color: var(--ot-text-3);
	flex: 0 0 auto;
}

.e-2987bbc3 > .holder > .group > .group-body > .group-inner > .group-empty
{
	padding: 8px var(--ot-spacing-m) var(--ot-spacing-s);
	font-family: var(--ot-font-primary);
	font-size: 13px;
	color: var(--ot-text-3);
}

.e-2987bbc3 > .holder > .group > .group-body > .group-inner > .more
{
	display: inline-flex;
	align-items: center;
	gap: 4px;
	align-self: flex-start;
	margin: 4px var(--ot-spacing-m) var(--ot-spacing-s);
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 700;
	color: var(--ot-orange-hover);
}

.e-2987bbc3 > .holder > .group > .group-body > .group-inner > .more > .more-icon
{
	font-size: 17px;
	transition: transform var(--ot-transition);
}

.e-2987bbc3 > .holder > .group.is-expanded > .group-body > .group-inner > .more > .more-icon
{
	transform: rotate(180deg);
}

.e-3c4a3357 > .holder
{
	position: fixed;
	right: var(--ot-spacing-m);
	bottom: var(--ot-spacing-m);
	z-index: 80;
	display: block;
}

.e-3c4a3357 > .holder.is-raised
{
	bottom: calc(var(--ot-spacing-m) + var(--ot-ticker-height));
}

.e-3c4a3357 > .holder > .trigger
{
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	margin-left: auto;
	border-radius: 50%;
	background: var(--ot-orange);
	color: var(--ot-text-1);
	box-shadow: var(--t3-shadow-cta);
	transition: background-color var(--ot-transition), transform var(--ot-transition);
}

.e-3c4a3357 > .holder > .trigger:hover
{
	transform: scale(1.05);
}

.e-3c4a3357 > .holder.is-open > .trigger
{
	background: var(--t3-navy);
	color: rgb(255, 255, 255);
}

.e-3c4a3357 > .holder > .trigger > .trigger-icon
{
	position: absolute;
	font-size: 26px;
	transition: opacity var(--ot-transition), transform var(--ot-transition);
}

.e-3c4a3357 > .holder > .trigger > .close-icon
{
	opacity: 0;
	transform: rotate(-90deg);
}

.e-3c4a3357 > .holder.is-open > .trigger > .open-icon
{
	opacity: 0;
	transform: rotate(90deg);
}

.e-3c4a3357 > .holder.is-open > .trigger > .close-icon
{
	opacity: 1;
	transform: rotate(0deg);
}

.e-3c4a3357 > .holder > .panel
{
	position: absolute;
	right: 0;
	bottom: 74px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
	width: 340px;
	max-height: min(560px, calc(100vh - 140px));
	overflow-y: auto;
	padding: var(--ot-spacing-m);
	background: var(--ot-bg-1);
	border: 1px solid var(--t3-navy-line);
	border-radius: var(--ot-radius-l);
	box-shadow: var(--t3-shadow-card-hover);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px) scale(0.98);
	transform-origin: bottom right;
	transition: opacity var(--ot-transition), transform var(--ot-transition), visibility var(--ot-transition);
}

.e-3c4a3357 > .holder.is-open > .panel
{
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.e-3c4a3357 > .holder > .panel > .panel-head
{
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-bottom: var(--ot-spacing-s);
	border-bottom: 1px solid var(--t3-navy-line);
}

.e-3c4a3357 > .holder > .panel > .panel-head > .panel-title
{
	font-family: var(--ot-font-primary);
	font-size: 21px;
	font-weight: 800;
	font-variation-settings: normal;
	letter-spacing: -0.02em;
	color: var(--t3-navy);
}

.e-3c4a3357 > .holder > .panel > .panel-head > .panel-subtitle
{
	font-family: var(--ot-font-primary);
	font-size: 13px;
	color: var(--ot-text-2);
}

.e-3c4a3357 > .holder > .panel > .quick
{
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.e-3c4a3357 > .holder > .panel > .quick > .quick-item
{
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	padding: 9px 10px;
	border-radius: var(--ot-radius-s);
	border: 1px solid var(--t3-navy-line);
	transition: border-color var(--ot-transition), background-color var(--ot-transition);
}

.e-3c4a3357 > .holder > .panel > .quick > .quick-item:hover
{
	background: var(--t3-sky);
	border-color: var(--ot-orange);
}

.e-3c4a3357 > .holder > .panel > .quick > .quick-item > .quick-icon-wrap
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	flex: 0 0 auto;
	border-radius: var(--ot-radius-s);
}

.e-3c4a3357 > .holder > .panel > .quick > .accent-brand > .quick-icon-wrap { background: var(--t3-navy-veil-thin); }
.e-3c4a3357 > .holder > .panel > .quick > .accent-green > .quick-icon-wrap { background: var(--ot-green-opacity); }
.e-3c4a3357 > .holder > .panel > .quick > .accent-orange  > .quick-icon-wrap { background: var(--ot-orange-opacity); }

.e-3c4a3357 > .holder > .panel > .quick > .quick-item > .quick-icon-wrap > .quick-icon
{
	font-size: 18px;
}

.e-3c4a3357 > .holder > .panel > .quick > .accent-brand > .quick-icon-wrap > .quick-icon { color: var(--t3-navy); }
.e-3c4a3357 > .holder > .panel > .quick > .accent-green > .quick-icon-wrap > .quick-icon { color: var(--ot-green); }
.e-3c4a3357 > .holder > .panel > .quick > .accent-orange  > .quick-icon-wrap > .quick-icon { color: var(--ot-orange); }

.e-3c4a3357 > .holder > .panel > .quick > .quick-item > .quick-text
{
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.e-3c4a3357 > .holder > .panel > .quick > .quick-item > .quick-text > .quick-label
{
	font-family: var(--ot-font-primary);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--ot-text-3);
}

.e-3c4a3357 > .holder > .panel > .quick > .quick-item > .quick-text > .quick-value
{
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 700;
	color: var(--t3-navy);
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.e-3c4a3357 > .holder > .panel > .hours
{
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 10px;
	border-radius: var(--ot-radius-s);
	background: var(--t3-sky);
	font-family: var(--ot-font-primary);
	font-size: 12.5px;
	color: var(--ot-text-2);
}

.e-3c4a3357 > .holder > .panel > .hours > .hours-icon
{
	font-size: 17px;
	color: var(--ot-text-3);
	flex: 0 0 auto;
}

.e-3c4a3357 > .holder > .panel > .form-wrap
{
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-top: var(--ot-spacing-s);
	border-top: 1px solid var(--t3-navy-line);
}

.e-3c4a3357 > .holder > .panel > .form-wrap > .form-title
{
	font-family: var(--ot-font-primary);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--t3-navy);
}

.e-3c4a3357 > .holder > .panel > .form-wrap > .form
{
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.e-3c4a3357 > .holder > .panel > .form-wrap > .form > .form-input,
.e-3c4a3357 > .holder > .panel > .form-wrap > .form > .form-area
{
	width: 100%;
	padding: 10px 12px;
	background: var(--ot-bg-2);
	border: 1px solid var(--t3-navy-line);
	border-radius: var(--ot-radius-s);
	font-family: var(--ot-font-primary);
	font-size: 13px;
	color: var(--ot-text-1);
	transition: border-color var(--ot-transition), background-color var(--ot-transition);
}

.e-3c4a3357 > .holder > .panel > .form-wrap > .form > .form-area
{
	resize: vertical;
	min-height: 72px;
}

.e-3c4a3357 > .holder > .panel > .form-wrap > .form > .form-input:focus,
.e-3c4a3357 > .holder > .panel > .form-wrap > .form > .form-area:focus
{
	outline: none;
	background: var(--ot-bg-1);
	border-color: var(--t3-navy);
}

.e-3c4a3357 > .holder > .panel > .form-wrap > .form > .form-submit
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 12px 20px;
	background: var(--ot-orange);
	color: var(--ot-text-1);
	border-radius: 100px;
	font-family: var(--ot-font-primary);
	font-size: 14px;
	font-weight: 700;
	box-shadow: var(--t3-shadow-cta);
	transition: background-color var(--ot-transition);
}

.e-3c4a3357 > .holder > .panel > .form-wrap > .form > .form-submit:hover
{
	background: var(--ot-orange-hover);
	color: rgb(255, 255, 255);
}

.e-3c4a3357 > .holder > .panel > .form-wrap > .form > .form-submit > .form-submit-icon
{
	font-size: 17px;
}

.e-3c4a3357 > .holder > .backdrop
{
	position: fixed;
	inset: 0;
	z-index: 1;
	background: rgba(12, 12, 14, 0.35);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--ot-transition), visibility var(--ot-transition);
}

.e-3c4a3357 > .holder.is-open > .backdrop
{
	opacity: 1;
	visibility: visible;
}

@media screen and (max-width: 560px)
{
	.e-3c4a3357 > .holder > .panel
	{
		width: calc(100vw - var(--ot-spacing-m) * 2);
		right: 0;
	}

	.e-3c4a3357 > .holder > .trigger
	{
		width: 54px;
		height: 54px;
	}
}

.e-7410519 > .holder
{
	display: block;
	background: var(--t3-sky);
	border-top: 3px solid var(--t3-navy);
}

.e-7410519 > .holder > .inner
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-l);
	padding-block: 64px 32px;
}

.e-7410519 > .holder > .inner > .brand-zone
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ot-spacing-m);
	flex-wrap: wrap;
	padding-bottom: var(--ot-spacing-m);
	border-bottom: 1px solid var(--t3-navy-line);
}

.e-7410519 > .holder > .inner > .brand-zone > .brand > .brand-mark
{
	position: relative;
	display: block;
}

.e-7410519 > .holder > .inner > .brand-zone > .brand > .brand-mark > .brand-logo
{
	display: block;
	height: 106px;
	width: auto;
	object-fit: contain;
}

.e-7410519 > .holder > .inner > .brand-zone > .brand > .brand-mark > .brand-logo-light
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	filter: brightness(0) invert(1);
	pointer-events: none;
}

.e-7410519 > .holder > .inner > .brand-zone > .brand > .brand-name
{
	font-family: var(--ot-font-primary);
	font-size: 24px;
	font-weight: 800;
	font-variation-settings: normal;
	letter-spacing: -0.02em;
	color: var(--t3-navy);
}

.e-7410519 > .holder > .inner > .brand-zone > .socials
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
}

.e-7410519 > .holder > .inner > .brand-zone > .socials > .social
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: var(--ot-radius-s);
	border: 1px solid var(--t3-navy-line);
	color: var(--t3-navy);
	transition: background-color var(--ot-transition), color var(--ot-transition), border-color var(--ot-transition), transform var(--ot-transition);
}

.e-7410519 > .holder > .inner > .brand-zone > .socials > .social:hover
{
	background: var(--t3-navy);
	border-color: var(--t3-navy);
	color: rgb(255, 255, 255);
	transform: translateY(-3px);
}

.e-7410519 > .holder > .inner > .brand-zone > .socials > .social > .social-icon
{
	font-size: 19px;
}

.e-7410519 > .holder > .inner > .brand-zone > .socials > .social > .social-mark
{
	width: 19px;
	height: 19px;
	background: currentColor;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
}

.e-7410519 > .holder > .inner > .brand-zone > .socials > .social > .social-mark.is-facebook
{
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.5 21.9v-8.4h2.82l.42-3.27H13.5V8.13c0-.95.26-1.59 1.62-1.59h1.73V3.61c-.3-.04-1.33-.13-2.52-.13-2.5 0-4.2 1.52-4.2 4.32v2.41H7.3v3.27h2.83v8.4h3.37z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.5 21.9v-8.4h2.82l.42-3.27H13.5V8.13c0-.95.26-1.59 1.62-1.59h1.73V3.61c-.3-.04-1.33-.13-2.52-.13-2.5 0-4.2 1.52-4.2 4.32v2.41H7.3v3.27h2.83v8.4h3.37z'/%3E%3C/svg%3E");
}

.e-7410519 > .holder > .inner > .brand-zone > .socials > .social > .social-mark.is-instagram
{
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7zm5 3a5 5 0 1 1 0 10 5 5 0 0 1 0-10zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6zm5.5-3.5a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7zm5 3a5 5 0 1 1 0 10 5 5 0 0 1 0-10zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6zm5.5-3.5a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5z'/%3E%3C/svg%3E");
}

.e-7410519 > .holder > .inner > .main-zone
{
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: var(--ot-spacing-l);
}

.e-7410519 > .holder > .inner > .main-zone > .columns
{
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--ot-spacing-l);
}

.e-7410519 > .holder > .inner > .main-zone > .columns > .column
{
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}

.e-7410519 > .holder > .inner > .main-zone > .columns > .column > .column-title,
.e-7410519 > .holder > .inner > .main-zone > .contact > .column-title
{
	font-family: var(--ot-font-primary);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--t3-navy);
	margin-bottom: 6px;
}

.e-7410519 > .holder > .inner > .main-zone > .columns > .column > .column-link
{
	font-family: var(--ot-font-primary);
	font-size: 14px;
	color: var(--ot-text-2);
	transition: color var(--ot-transition), transform var(--ot-transition);
}

.e-7410519 > .holder > .inner > .main-zone > .columns > .column > .column-link:hover
{
	color: var(--ot-orange-hover);
	transform: translateX(3px);
}

.e-7410519 > .holder > .inner > .main-zone > .columns > .column > .column-link.is-skeleton
{
	height: 14px;
	border-radius: var(--ot-radius-s);
	background: var(--ot-bg-3);
}

.e-7410519 > .holder > .inner > .main-zone > .contact
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
	min-width: 0;
}

.e-7410519 > .holder > .inner > .main-zone > .contact > .contact-row
{
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.e-7410519 > .holder > .inner > .main-zone > .contact > .contact-row > .contact-icon-wrap
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: var(--ot-radius-s);
	background: var(--t3-navy-veil-thin);
	flex: 0 0 auto;
	transition: background-color var(--ot-transition);
}

.e-7410519 > .holder > .inner > .main-zone > .contact > .contact-row:hover > .contact-icon-wrap
{
	background: var(--t3-navy);
}

.e-7410519 > .holder > .inner > .main-zone > .contact > .contact-row > .contact-icon-wrap > .contact-icon
{
	font-size: 18px;
	color: var(--t3-navy);
	transition: color var(--ot-transition);
}

.e-7410519 > .holder > .inner > .main-zone > .contact > .contact-row:hover > .contact-icon-wrap > .contact-icon
{
	color: var(--ot-bg-1);
}

.e-7410519 > .holder > .inner > .main-zone > .contact > .contact-row > .contact-text
{
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.e-7410519 > .holder > .inner > .main-zone > .contact > .contact-row > .contact-text > .contact-label
{
	font-family: var(--ot-font-primary);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ot-text-3);
}

.e-7410519 > .holder > .inner > .main-zone > .contact > .contact-row > .contact-text > .contact-value
{
	font-family: var(--ot-font-primary);
	font-size: 14px;
	font-weight: 700;
	color: var(--t3-navy);
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

.e-7410519 > .holder > .inner > .legal-zone
{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	padding-top: var(--ot-spacing-m);
	border-top: 1px solid var(--t3-navy-line);
	font-family: var(--ot-font-primary);
}

.e-7410519 > .holder > .inner > .legal-zone > .legal-title
{
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--t3-navy);
}

.e-7410519 > .holder > .inner > .legal-zone > .legal-role
{
	max-width: 90ch;
	font-size: 12px;
	line-height: 1.7;
	color: var(--ot-text-3);
}

.e-7410519 > .holder > .inner > .legal-zone > .legal-grid
{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--ot-spacing-s) var(--ot-spacing-m);
	width: 100%;
	margin-top: var(--ot-spacing-s);
}

.e-7410519 > .holder > .inner > .legal-zone > .legal-grid > .legal-row
{
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.e-7410519 > .holder > .inner > .legal-zone > .legal-grid > .legal-row > .legal-label
{
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ot-text-3);
}

.e-7410519 > .holder > .inner > .legal-zone > .legal-grid > .legal-row > .legal-value
{
	font-size: 13px;
	line-height: 1.5;
	color: var(--ot-text-1);
	overflow-wrap: anywhere;
	transition: color var(--ot-transition);
}

.e-7410519 > .holder > .inner > .legal-zone > .legal-grid > .legal-row > a.legal-value:hover
{
	color: var(--ot-orange-hover);
}

.e-7410519 > .holder > .inner > .bottom-zone
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ot-spacing-m);
	flex-wrap: wrap;
	padding-top: var(--ot-spacing-m);
	border-top: 1px solid var(--t3-navy-line);
}

.e-7410519 > .holder > .inner > .bottom-zone > .copy
{
	font-family: var(--ot-font-primary);
	font-size: 13px;
	color: var(--ot-text-3);
}

.e-7410519 > .holder > .inner > .bottom-zone > .bottom-links
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-m);
	flex-wrap: wrap;
}

.e-7410519 > .holder > .inner > .bottom-zone > .bottom-links > .bottom-link
{
	font-family: var(--ot-font-primary);
	font-size: 13px;
	color: var(--ot-text-3);
	transition: color var(--ot-transition);
}

.e-7410519 > .holder > .inner > .bottom-zone > .bottom-links > .bottom-link:hover
{
	color: var(--ot-orange-hover);
}

.e-7410519 > .holder > .inner > .note-zone
{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	padding-top: var(--ot-spacing-m);
	border-top: 1px solid var(--t3-navy-line);
	font-family: var(--ot-font-primary);
	font-size: 12px;
	line-height: 1.7;
	color: var(--ot-text-3);
}

.e-7410519 > .holder > .inner > .note-zone > .note-label
{
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--t3-navy);
}

.e-7410519 > .holder > .inner > .note-zone > .note-text
{
	max-width: 90ch;
	font-size: 12px;
	line-height: 1.7;
	color: inherit;
}

.e-7410519 > .holder > .inner > .note-zone > .e-593be338
{
	margin-top: var(--ot-spacing-s);
	max-width: 100%;
}

.e-7410519 > .holder > .credits-band
{
	background: var(--ot-bg-1);
	padding-block: var(--ot-spacing-m);
}

.e-7410519 > .holder > .credits-band > .credits-zone
{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: calc(var(--ot-spacing-s) + 25px);
}

.e-7410519 > .holder > .credits-band > .credits-zone > .credits-title
{
	font-family: var(--ot-font-primary);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ot-text-2);
}

.e-7410519 > .holder > .credits-band > .credits-zone > .credits-logos
{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--ot-spacing-l);
	flex-wrap: wrap;
}

.e-7410519 > .holder > .credits-band > .credits-zone > .credits-logos > .credit
{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 29px;
	transition: transform var(--ot-transition), opacity var(--ot-transition);
}

.e-7410519 > .holder > .credits-band > .credits-zone > .credits-logos > .credit:hover
{
	transform: translateY(-2px);
	opacity: 0.75;
}

.e-7410519 > .holder > .credits-band > .credits-zone > .credits-logos > .credit > .credit-image
{
	height: 29px;
	max-width: 100%;
	width: auto;
	object-fit: contain;
}

.e-7410519 > .holder > .credits-band > .credits-zone > .credits-logos > .credit > .credit-cover
{
	position: absolute;
	inset: 0;
}

@media screen and (max-width: 1200px)
{
	.e-7410519 > .holder > .inner > .main-zone
	{
		grid-template-columns: minmax(0, 1fr) 280px;
	}

	.e-7410519 > .holder > .inner > .main-zone > .columns
	{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 900px)
{
	.e-7410519 > .holder > .inner > .main-zone
	{
		grid-template-columns: minmax(0, 1fr);
	}

	.e-7410519 > .holder > .inner > .legal-zone > .legal-grid
	{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 768px)
{
	.e-7410519 > .holder > .credits-band
	{
		padding-bottom: calc(var(--ot-spacing-l) * 2 + var(--ot-spacing-m));
	}
}

@media screen and (max-width: 560px)
{
	.e-7410519 > .holder > .inner
	{
		gap: var(--ot-spacing-m);
		padding-block: 40px 28px;
	}

	.e-7410519 > .holder > .inner > .brand-zone > .brand > .brand-mark > .brand-logo
	{
		height: 80px;
	}

	.e-7410519 > .holder > .inner > .main-zone
	{
		grid-template-columns: minmax(0, 1fr);
		gap: var(--ot-spacing-m);
	}

	.e-7410519 > .holder > .inner > .main-zone > .columns
	{
		grid-template-columns: minmax(0, 1fr);
		gap: var(--ot-spacing-m);
	}

	.e-7410519 > .holder > .inner > .legal-zone > .legal-grid
	{
		grid-template-columns: minmax(0, 1fr);
	}

	.e-7410519 > .holder > .credits-band > .credits-zone > .credits-logos > .credit
	{
		height: 26px;
	}

	.e-7410519 > .holder > .credits-band > .credits-zone > .credits-logos > .credit > .credit-image
	{
		height: 26px;
	}
}

.e-7410519 > .holder
{
	background: var(--ot-text-1);
	border-top: 0;
}

.e-7410519 > .holder > .inner > .brand-zone
{
	border-bottom-color: rgba(255, 255, 255, 0.12);
}

.e-7410519 > .holder > .inner > .brand-zone > .brand > .brand-name
{
	font-family: var(--ot-font-primary);
	font-variation-settings: normal;
	letter-spacing: -0.02em;
	color: var(--ot-bg-1);
}

.e-7410519 > .holder > .inner > .brand-zone > .socials > .social
{
	border-color: rgba(255, 255, 255, 0.2);
	color: var(--ot-bg-1);
}

.e-7410519 > .holder > .inner > .brand-zone > .socials > .social:hover
{
	background: var(--ot-orange);
	border-color: var(--ot-orange);
	color: var(--ot-text-1);
}

.e-7410519 > .holder > .inner > .main-zone > .columns > .column > .column-title,
.e-7410519 > .holder > .inner > .main-zone > .contact > .column-title
{
	color: var(--ot-bg-1);
}

.e-7410519 > .holder > .inner > .main-zone > .columns > .column > .column-link
{
	color: rgba(255, 255, 255, 0.62);
}

.e-7410519 > .holder > .inner > .main-zone > .columns > .column > .column-link:hover
{
	color: var(--ot-bg-1);
}

.e-7410519 > .holder > .inner > .main-zone > .columns > .column > .column-link.is-skeleton
{
	background: rgba(255, 255, 255, 0.1);
}

.e-7410519 > .holder > .inner > .main-zone > .contact > .contact-row > .contact-icon-wrap
{
	background: rgba(255, 255, 255, 0.1);
}

.e-7410519 > .holder > .inner > .main-zone > .contact > .contact-row:hover > .contact-icon-wrap
{
	background: rgba(255, 255, 255, 0.22);
}

.e-7410519 > .holder > .inner > .main-zone > .contact > .contact-row > .contact-icon-wrap > .contact-icon
{
	color: var(--ot-bg-1);
}

.e-7410519 > .holder > .inner > .main-zone > .contact > .contact-row > .contact-text > .contact-label
{
	color: rgba(255, 255, 255, 0.5);
}

.e-7410519 > .holder > .inner > .main-zone > .contact > .contact-row > .contact-text > .contact-value
{
	color: var(--ot-bg-1);
}

.e-7410519 > .holder > .inner > .legal-zone,
.e-7410519 > .holder > .inner > .bottom-zone,
.e-7410519 > .holder > .inner > .note-zone
{
	border-top-color: rgba(255, 255, 255, 0.12);
}

.e-7410519 > .holder > .inner > .bottom-zone > .copy,
.e-7410519 > .holder > .inner > .bottom-zone > .bottom-links > .bottom-link,
.e-7410519 > .holder > .inner > .note-zone > .note-label,
.e-7410519 > .holder > .inner > .note-zone > .note-text,
.e-7410519 > .holder > .inner > .legal-zone > .legal-role,
.e-7410519 > .holder > .inner > .legal-zone > .legal-grid > .legal-row > .legal-label
{
	color: rgba(255, 255, 255, 0.55);
}

.e-7410519 > .holder > .inner > .legal-zone > .legal-grid > .legal-row > .legal-value
{
	color: rgba(255, 255, 255, 0.82);
}

.e-7410519 > .holder > .inner > .bottom-zone > .bottom-links > .bottom-link:hover
{
	color: var(--ot-bg-1);
}

.e-7410519 > .holder > .inner > .note-zone > .note-label,
.e-7410519 > .holder > .inner > .legal-zone > .legal-title
{
	color: var(--ot-bg-1);
}

.e-7a431908
{
	display: block;
	width: 100%;
}

.e-7a431908 > .holder
{
	display: block;
	width: 100%;
	background: var(--ot-bg-1);
}

.e-7a431908 > .holder > .stage
{
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	border-radius: 0;
	box-shadow: none;
	background: var(--t3-navy);
	isolation: isolate;
	outline: none;
}

.e-7a431908 > .holder.height-s > .stage { height: clamp(380px, 58vh, 560px); }
.e-7a431908 > .holder.height-m > .stage { height: clamp(420px, 66vh, 660px); }
.e-7a431908 > .holder.height-l > .stage { height: clamp(440px, 72vh, 760px); }

.e-7a431908 > .holder > .stage > .skeleton
{
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, var(--ot-bg-2) 30%, var(--ot-bg-3) 50%, var(--ot-bg-2) 70%);
	background-size: 300% 100%;
	animation: e7a431908-shimmer 1.6s ease-in-out infinite;
}

@keyframes e7a431908-shimmer
{
	0%   { background-position: 100% 0; }
	100% { background-position: 0 0; }
}

@keyframes e7a431908-fill
{
	0%   { transform: scaleX(0); }
	100% { transform: scaleX(1); }
}

.e-7a431908 > .holder > .stage > .slide
{
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.e-7a431908 > .holder > .stage > .slide.is-active
{
	opacity: 1;
	visibility: visible;
}

.e-7a431908 > .holder > .stage > .slide > .image
{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.02);
	transform-origin: center;
	transition: transform 6000ms cubic-bezier(0.22, 1, 0.36, 1);
}

.e-7a431908 > .holder > .stage > .slide.is-active > .image
{
	transform: scale(1.08);
}

.e-7a431908 > .holder > .stage > .slide > .shade
{
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, var(--t3-navy-veil) 0%, var(--t3-navy-veil-mid) 45%, var(--t3-navy-veil-thin) 100%);
}

.e-7a431908 > .holder > .stage > .slide > .inner
{
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 18px;
	padding-inline: max(calc(var(--ot-spacing-m) * 2), calc((100% - (1440px - var(--ot-spacing-m) * 4)) / 2));
}

.e-7a431908 > .holder > .stage > .slide > .inner > .straps
{
	position: relative;
	display: inline-block;
	min-height: 76px;
}

.e-7a431908 > .holder > .stage > .slide > .inner > .straps > .strap
{
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0;
	box-shadow: var(--t3-shadow-strap);
	transform: skewX(var(--t3-skew));
	font-family: var(--ot-font-primary);
	line-height: 1.2;
	white-space: nowrap;
}

.e-7a431908 > .holder > .stage > .slide > .inner > .straps > .strap > .strap-text
{
	display: block;
	transform: skewX(var(--t3-skew-back));
	text-align: center;
}

.e-7a431908 > .holder > .stage > .slide > .inner > .straps > .strap-eyebrow
{
	left: 0;
	top: 0;
	z-index: 3;
	padding: 7px 22px;
	background: var(--t3-navy-deep);
	color: rgb(255, 255, 255);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.e-7a431908 > .holder > .stage > .slide > .inner > .straps > .strap-count
{
	left: 22px;
	top: 40px;
	z-index: 2;
	padding: 8px 30px;
	background: var(--ot-orange);
	color: var(--ot-text-1);
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.01em;
}

.e-7a431908 > .holder > .stage > .slide > .inner > .e-52c43b2c > .holder
{
	gap: 18px;
	max-width: 620px;
}

.e-7a431908 > .holder > .stage > .slide > .inner > .e-52c43b2c > .holder > .title
{
	font-family: var(--ot-font-secondary);
	font-size: clamp(34px, 5.4vw, 64px);
	font-weight: 700;
	font-variation-settings: 'opsz' 144, 'wght' 700;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: rgb(255, 255, 255);
	text-shadow: var(--t3-text-shadow-title);
}

.e-7a431908 > .holder > .stage > .slide > .inner > .e-52c43b2c > .holder > .title em
{
	font-weight: inherit;
	font-variation-settings: inherit;
	color: inherit;
	opacity: 1;
}

.e-7a431908 > .holder > .stage > .slide > .inner > .e-52c43b2c > .holder > .subtitle
{
	max-width: 520px;
	font-size: clamp(15px, 1.6vw, 19px);
	font-weight: 400;
	line-height: 1.5;
	color: var(--t3-light-text);
	text-shadow: var(--t3-text-shadow-text);
}

.e-7a431908 > .holder > .stage > .slide > .inner > .action
{
	display: block;
	margin-top: 6px;
}

.e-7a431908 > .holder > .stage > .slide > .inner > .action > .e-593be338 > .holder
{
	height: 44px;
	padding-inline: 26px;
	font-size: 15px;
	font-weight: 700;
	box-shadow: var(--t3-shadow-cta);
}

.e-7a431908 > .holder > .stage > .slide > .inner > .action > .e-593be338 > .holder:hover
{
	background: var(--ot-orange);
	transform: translateY(-3px);
	box-shadow: var(--t3-shadow-cta-hover);
}

.e-7a431908 > .holder > .stage > .slide > .inner > .action > .e-593be338 > .holder > .icon
{
	font-size: 20px;
}

.e-7a431908 > .holder > .stage > .stage-arrow
{
	position: absolute;
	top: 50%;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-top: -24px;
	padding: 0;
	border-radius: 999px;
	background: var(--t3-light-line);
	border: 1px solid var(--t3-light-line-strong);
	backdrop-filter: blur(6px);
	color: rgb(255, 255, 255);
	cursor: pointer;
	transition: background-color var(--ot-transition), border-color var(--ot-transition), color var(--ot-transition), transform var(--ot-transition);
}

.e-7a431908 > .holder > .stage > .stage-arrow:hover
{
	background: var(--ot-orange);
	border-color: var(--ot-orange);
	color: var(--ot-text-1);
}

.e-7a431908 > .holder > .stage > .stage-arrow:active
{
	transform: translateY(1px) scale(0.99);
}

.e-7a431908 > .holder > .stage > .arrow-prev { left: var(--ot-spacing-m); }
.e-7a431908 > .holder > .stage > .arrow-next { right: var(--ot-spacing-m); }

.e-7a431908 > .holder > .stage > .stage-arrow > .arrow-icon
{
	font-size: 24px;
}

.e-7a431908 > .holder > .stage > .dots
{
	position: absolute;
	left: 50%;
	bottom: 24px;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 10px;
	transform: translateX(-50%);
}

.e-7a431908 > .holder > .stage > .dots > .dot
{
	position: relative;
	width: 34px;
	height: 6px;
	padding: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.4);
	overflow: hidden;
	cursor: pointer;
	transition: background-color var(--ot-transition);
}

.e-7a431908 > .holder > .stage > .dots > .dot:hover
{
	background: rgba(255, 255, 255, 0.62);
}

.e-7a431908 > .holder > .stage > .dots > .dot > .dot-progress
{
	position: absolute;
	inset: 0;
	background: var(--ot-orange);
	transform: scaleX(0);
	transform-origin: left center;
}

.e-7a431908 > .holder > .stage > .dots > .dot.is-active > .dot-progress
{
	animation: e7a431908-fill var(--t3-hero-interval, 6000ms) linear forwards;
}

@media screen and (max-width: 1024px)
{
	.e-7a431908 > .holder.height-s > .stage { height: clamp(360px, 54vh, 480px); }
	.e-7a431908 > .holder.height-m > .stage { height: clamp(380px, 58vh, 520px); }
	.e-7a431908 > .holder.height-l > .stage { height: clamp(400px, 60vh, 560px); }
}

@media screen and (max-width: 900px)
{
	.e-7a431908 > .holder > .stage > .slide > .inner
	{
		padding-inline: var(--ot-spacing-m);
	}
}

@media screen and (max-width: 640px)
{
	.e-7a431908 > .holder.height-s > .stage,
	.e-7a431908 > .holder.height-m > .stage,
	.e-7a431908 > .holder.height-l > .stage
	{
		height: clamp(380px, 70vh, 500px);
	}

	.e-7a431908 > .holder > .stage > .slide > .inner
	{
		gap: 14px;
	}

	.e-7a431908 > .holder > .stage > .stage-arrow
	{
		width: 40px;
		height: 40px;
		margin-top: -20px;
	}

	.e-7a431908 > .holder > .stage > .stage-arrow > .arrow-icon
	{
		font-size: 20px;
	}
}

.e-2e3275a0 > .holder
{
	position: relative;
	display: block;
	width: 100%;
	height: 38px;
	overflow: hidden;
}

.e-2e3275a0 > .holder.tone-brand { background: var(--t3-navy-deep); }
.e-2e3275a0 > .holder.tone-dark { background: var(--t3-navy-deep); }
.e-2e3275a0 > .holder.tone-accent { background: var(--ot-orange); }

.e-2e3275a0 > .holder > .track > .message > .message-icon
{
	color: var(--ot-orange);
}

.e-2e3275a0 > .holder.tone-accent > .track > .message > .message-icon
{
	color: var(--ot-text-1);
}

.e-2e3275a0 > .holder > .track
{
	position: relative;
	height: 100%;
}

.e-2e3275a0 > .holder > .track > .message
{
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 var(--ot-spacing-m);
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 600;
	color: var(--t3-light-text);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity var(--ot-transition), transform var(--ot-transition);
}

.e-2e3275a0 > .holder > .track > .message.is-active
{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.e-2e3275a0 > .holder > .track > .message > .message-icon
{
	font-size: 17px;
	flex: 0 0 auto;
}

.e-2e3275a0 > .holder > .track > .message > .message-label
{
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.e-2e3275a0 > .holder > .track > .message > .message-arrow
{
	font-size: 16px;
	flex: 0 0 auto;
	transition: transform var(--ot-transition);
}

.e-2e3275a0 > .holder > .track > .message:hover > .message-arrow
{
	transform: translateX(4px);
}

@media screen and (max-width: 768px)
{
	.e-2e3275a0 > .holder > .track > .message
	{
		font-size: 12px;
	}
}

.e-7dfa2a09 > .holder
{
	display: block;
	padding-block: 72px;
	background: var(--ot-bg-2);
}

.e-7dfa2a09 > .holder > .inner
{
	display: block;
}

.e-7dfa2a09 > .holder > .inner > .card
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-m);
	max-width: 720px;
	margin-inline: auto;
	padding: var(--ot-spacing-l);
	background: var(--ot-bg-1);
	border: 1px solid var(--t3-navy-line);
	border-radius: var(--ot-radius-m);
	box-shadow: var(--t3-shadow-card);
	min-width: 0;
}

.e-7dfa2a09 > .holder > .inner > .card > .head
{
	display: block;
}

.e-7dfa2a09 > .holder > .inner > .card > .done
{
	display: flex;
	align-items: center;
	gap: 12px;
	padding: var(--ot-spacing-m);
	background: var(--ot-green-opacity);
	border: 1px solid var(--ot-green);
	border-radius: var(--ot-radius-m);
}

.e-7dfa2a09 > .holder > .inner > .card > .done > .done-icon
{
	flex: 0 0 auto;
	font-size: 28px;
	color: var(--ot-green);
}

.e-7dfa2a09 > .holder > .inner > .card > .done > .done-text
{
	font-family: var(--ot-font-primary);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
	color: var(--ot-green);
}

.e-7dfa2a09 > .holder > .inner > .card > .steps
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
	min-width: 0;
	padding-bottom: var(--ot-spacing-s);
	border-bottom: 1px solid var(--t3-navy-line);
}

.e-7dfa2a09 > .holder > .inner > .card > .steps > .steps-track
{
	display: flex;
	align-items: flex-start;
	min-width: 0;
}

.e-7dfa2a09 > .holder > .inner > .card > .steps > .steps-track > .crumb
{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	position: relative;
	flex: 1 1 0;
	min-width: 0;
	padding: 0;
	text-align: center;
	cursor: pointer;
}

.e-7dfa2a09 > .holder > .inner > .card > .steps > .steps-track > .crumb[disabled]
{
	cursor: default;
}

.e-7dfa2a09 > .holder > .inner > .card > .steps > .steps-track > .crumb::after
{
	content: '';
	position: absolute;
	top: 15px;
	left: calc(50% + 24px);
	right: calc(-50% + 24px);
	height: 2px;
	border-radius: 2px;
	background: var(--t3-navy-line);
	transition: background-color var(--ot-transition);
}

.e-7dfa2a09 > .holder > .inner > .card > .steps > .steps-track > .crumb:last-child::after
{
	display: none;
}

.e-7dfa2a09 > .holder > .inner > .card > .steps > .steps-track > .is-done::after
{
	background: var(--t3-navy);
}

.e-7dfa2a09 > .holder > .inner > .card > .steps > .steps-track > .crumb > .crumb-dot
{
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--ot-bg-2);
	border: 2px solid var(--t3-navy-line);
	color: var(--ot-text-3);
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 700;
	transition: background-color var(--ot-transition), border-color var(--ot-transition), color var(--ot-transition);
}

.e-7dfa2a09 > .holder > .inner > .card > .steps > .steps-track > .is-now > .crumb-dot
{
	background: var(--t3-navy);
	border-color: var(--t3-navy);
	color: var(--ot-bg-1);
}

.e-7dfa2a09 > .holder > .inner > .card > .steps > .steps-track > .is-done > .crumb-dot
{
	background: var(--t3-navy-veil-thin);
	border-color: var(--t3-navy);
	color: var(--ot-orange-hover);
}

.e-7dfa2a09 > .holder > .inner > .card > .steps > .steps-track > .crumb:hover > .crumb-dot
{
	border-color: var(--t3-navy);
}

.e-7dfa2a09 > .holder > .inner > .card > .steps > .steps-track > .crumb > .crumb-dot > .crumb-mark
{
	font-size: 18px;
}

.e-7dfa2a09 > .holder > .inner > .card > .steps > .steps-track > .crumb > .crumb-dot > .crumb-icon
{
	font-size: 18px;
}

.e-7dfa2a09 > .holder > .inner > .card > .steps > .steps-track > .crumb > .crumb-label
{
	display: block;
	max-width: 100%;
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--ot-text-3);
	transition: color var(--ot-transition);
}

.e-7dfa2a09 > .holder > .inner > .card > .steps > .steps-track > .is-now > .crumb-label
{
	color: var(--ot-orange-hover);
}

.e-7dfa2a09 > .holder > .inner > .card > .steps > .steps-track > .is-done > .crumb-label
{
	color: var(--ot-text-2);
}

.e-7dfa2a09 > .holder > .inner > .card > .steps > .steps-compact
{
	display: none;
	font-family: var(--ot-font-primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-align: center;
	color: var(--ot-text-3);
}

.e-7dfa2a09 > .holder > .inner > .card > .form
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-m);
	min-width: 0;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body
{
	display: block;
	min-width: 0;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
	min-width: 0;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .is-off
{
	display: none;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .panel-head
{
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .panel-head > .panel-titles
{
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .panel-head > .panel-titles > .panel-title
{
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--t3-navy);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .panel-head > .panel-titles > .panel-note
{
	font-family: var(--ot-font-primary);
	font-size: 13px;
	line-height: 1.5;
	color: var(--ot-text-3);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields
{
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--ot-spacing-s);
	align-items: start;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field
{
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .is-full
{
	grid-column: 1 / -1;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .type-check
{
	padding-top: calc(var(--ot-spacing-m) + var(--ot-spacing-x));
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .label
{
	display: flex;
	align-items: baseline;
	gap: 3px;
	min-width: 0;
	font-family: var(--ot-font-primary);
	font-size: 12px;
	font-weight: 600;
	color: var(--ot-text-2);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .label > .label-star
{
	color: var(--ot-red);
	font-weight: 700;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .help
{
	font-family: var(--ot-font-primary);
	font-size: 12px;
	line-height: 1.5;
	color: var(--ot-text-3);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control
{
	display: block;
	position: relative;
	min-width: 0;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control > .input
{
	display: block;
	width: 100%;
	min-height: 46px;
	padding: 12px 14px;
	background: var(--ot-bg-2);
	border: 1px solid var(--t3-navy-line);
	border-radius: var(--ot-radius-s);
	font-family: var(--ot-font-primary);
	font-size: 14px;
	color: var(--ot-text-1);
	transition: border-color var(--ot-transition), background-color var(--ot-transition);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control > .input:focus
{
	outline: none;
	background: var(--ot-bg-1);
	border-color: var(--t3-navy);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control > .area
{
	resize: vertical;
	min-height: 140px;
	line-height: 1.6;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control > .select
{
	appearance: none;
	padding-right: 40px;
	cursor: pointer;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control > .chevron
{
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	pointer-events: none;
	font-size: 20px;
	color: var(--ot-text-3);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control-choices
{
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control-choices > .choice
{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	position: relative;
	min-height: 44px;
	padding: 8px 14px 8px 12px;
	background: var(--ot-bg-2);
	border: 1px solid var(--t3-navy-line);
	border-radius: 100px;
	cursor: pointer;
	transition: border-color var(--ot-transition), background-color var(--ot-transition);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control-choices > .choice:hover
{
	border-color: var(--t3-navy);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control-choices > .is-on
{
	background: var(--t3-navy-veil-thin);
	border-color: var(--t3-navy);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control-choices > .choice > .choice-input
{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control-choices > .choice > .choice-box
{
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	border: 1px solid var(--t3-navy-line);
	border-radius: var(--ot-radius-s);
	background: var(--ot-bg-1);
	transition: border-color var(--ot-transition), background-color var(--ot-transition);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control-choices > .is-on > .choice-box
{
	background: var(--t3-navy);
	border-color: var(--t3-navy);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control-choices > .choice > .choice-box > .choice-mark
{
	font-size: 14px;
	color: var(--ot-bg-1);
	opacity: 0;
	transition: opacity var(--ot-transition);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control-choices > .is-on > .choice-box > .choice-mark
{
	opacity: 1;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control-choices > .choice > .choice-label
{
	font-family: var(--ot-font-primary);
	font-size: 14px;
	font-weight: 500;
	color: var(--ot-text-1);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control-stepper
{
	display: inline-flex;
	align-items: center;
	gap: 4px;
	width: fit-content;
	padding: 4px;
	background: var(--ot-bg-2);
	border: 1px solid var(--t3-navy-line);
	border-radius: 100px;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control-stepper > .step
{
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--ot-bg-1);
	border: 1px solid var(--t3-navy-line);
	color: var(--ot-text-1);
	cursor: pointer;
	transition: background-color var(--ot-transition), color var(--ot-transition), border-color var(--ot-transition);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control-stepper > .step:hover
{
	background: var(--t3-navy);
	border-color: var(--t3-navy);
	color: var(--ot-bg-1);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control-stepper > .step > .step-icon
{
	font-size: 20px;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control-stepper > .step-value
{
	width: 48px;
	background: transparent;
	border: 0;
	text-align: center;
	font-family: var(--ot-font-primary);
	font-size: 16px;
	font-weight: 700;
	color: var(--ot-text-1);
	pointer-events: none;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control-ages
{
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control-ages > .age
{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control-ages > .age > .age-index
{
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 600;
	color: var(--ot-text-3);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control-ages > .age > .age-select
{
	appearance: none;
	width: 76px;
	min-height: 44px;
	padding: 10px 12px;
	background: var(--ot-bg-2);
	border: 1px solid var(--t3-navy-line);
	border-radius: var(--ot-radius-s);
	font-family: var(--ot-font-primary);
	font-size: 14px;
	color: var(--ot-text-1);
	text-align: center;
	cursor: pointer;
	transition: border-color var(--ot-transition), background-color var(--ot-transition);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control-ages > .age > .age-select:focus
{
	outline: none;
	background: var(--ot-bg-1);
	border-color: var(--t3-navy);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .foot
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
	min-width: 0;
	padding-top: var(--ot-spacing-s);
	border-top: 1px solid var(--t3-navy-line);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .foot > .consents
{
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .foot > .consents > .consent
{
	display: flex;
	align-items: flex-start;
	gap: 10px;
	position: relative;
	min-width: 0;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .foot > .consents > .consent > .choice-input
{
	position: absolute;
	top: 2px;
	left: 0;
	width: 20px;
	height: 20px;
	opacity: 0;
	cursor: pointer;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .foot > .consents > .consent > .choice-box
{
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	margin-top: 1px;
	border: 1px solid var(--t3-navy-line);
	border-radius: var(--ot-radius-s);
	background: var(--ot-bg-1);
	cursor: pointer;
	transition: border-color var(--ot-transition), background-color var(--ot-transition);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .foot > .consents > .is-on > .choice-box
{
	background: var(--t3-navy);
	border-color: var(--t3-navy);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .foot > .consents > .consent > .choice-box > .choice-mark
{
	font-size: 15px;
	color: var(--ot-bg-1);
	opacity: 0;
	transition: opacity var(--ot-transition);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .foot > .consents > .is-on > .choice-box > .choice-mark
{
	opacity: 1;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .foot > .consents > .consent > .consent-text
{
	display: block;
	min-width: 0;
	font-family: var(--ot-font-primary);
	font-size: 13px;
	line-height: 1.6;
	color: var(--ot-text-2);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .foot > .consents > .consent > .consent-text > .consent-label
{
	cursor: pointer;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .foot > .consents > .consent > .consent-text > .label-star
{
	color: var(--ot-red);
	font-weight: 700;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .foot > .consents > .consent > .consent-text > .consent-link
{
	margin-left: 4px;
	color: var(--ot-orange-hover);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .foot > .note
{
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	color: var(--ot-text-3);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .foot > .note > .note-icon
{
	font-size: 17px;
	flex: 0 0 auto;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .foot > .note > .note-text
{
	font-family: var(--ot-font-primary);
	font-size: 12px;
	line-height: 1.5;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .trap
{
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .nav
{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: var(--ot-spacing-s);
	min-width: 0;
	padding-top: var(--ot-spacing-s);
	border-top: 1px solid var(--t3-navy-line);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .nav > .act
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 52px;
	padding: 15px 30px;
	border: 1px solid transparent;
	border-radius: 100px;
	font-family: var(--ot-font-primary);
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color var(--ot-transition), color var(--ot-transition), border-color var(--ot-transition), opacity var(--ot-transition);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .nav > .act-back
{
	margin-right: auto;
	background: var(--ot-bg-1);
	border-color: var(--t3-navy-line);
	color: var(--ot-text-2);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .nav > .act-back:hover
{
	border-color: var(--t3-navy);
	color: var(--ot-orange-hover);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .nav > .act-next
{
	background: var(--t3-navy);
	color: var(--ot-bg-1);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .nav > .act-next:hover
{
	background: var(--t3-navy-deep);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .nav > .act-submit
{
	background: var(--t3-navy);
	color: var(--ot-bg-1);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .nav > .act-submit:hover
{
	background: var(--t3-navy-deep);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .nav > .act-submit[disabled]
{
	opacity: 0.45;
	cursor: not-allowed;
	background: var(--t3-navy);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .nav > .act > .act-icon
{
	font-size: 18px;
	transition: transform var(--ot-transition);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .nav > .act:hover > .act-icon
{
	transform: translateX(3px);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .nav > .act:hover > .act-icon-left
{
	transform: translateX(-3px);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .form-notice
{
	display: flex;
	align-items: center;
	gap: 10px;
	padding: var(--ot-spacing-s);
	border-radius: var(--ot-radius-m);
	font-family: var(--ot-font-primary);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .success
{
	background: var(--ot-green-opacity);
	border: 1px solid var(--ot-green);
	color: var(--ot-green);
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .success::before
{
	content: 'check_circle';
	font-family: 'Material Symbols Rounded';
	font-size: 24px;
	font-weight: 400;
	flex: 0 0 auto;
}

.e-7dfa2a09 > .holder > .inner > .card > .form > .error
{
	background: var(--ot-red-opacity);
	border: 1px solid var(--ot-red);
	color: var(--ot-red);
}

@media screen and (max-width: 1024px)
{
	.e-7dfa2a09 > .holder
	{
		padding-block: 56px;
	}

	.e-7dfa2a09 > .holder > .inner > .card
	{
		padding: var(--ot-spacing-m);
	}
}

@media screen and (max-width: 768px)
{
	.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields
	{
		grid-template-columns: minmax(0, 1fr);
	}

	.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .type-check
	{
		padding-top: 0;
	}

	.e-7dfa2a09 > .holder > .inner > .card > .steps > .steps-track > .crumb > .crumb-label
	{
		font-size: 12px;
	}
}

@media screen and (max-width: 560px)
{
	.e-7dfa2a09 > .holder
	{
		padding-block: 40px;
	}

	.e-7dfa2a09 > .holder > .inner > .card
	{
		padding: var(--ot-spacing-s);
	}

	.e-7dfa2a09 > .holder > .inner > .card > .steps > .steps-track > .crumb > .crumb-label
	{
		display: none;
	}

	.e-7dfa2a09 > .holder > .inner > .card > .steps > .steps-compact
	{
		display: block;
	}

	.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control-choices > .choice
	{
		width: 100%;
	}

	.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control-stepper
	{
		width: 100%;
		justify-content: space-between;
	}

	.e-7dfa2a09 > .holder > .inner > .card > .form > .nav
	{
		flex-direction: column-reverse;
		align-items: stretch;
	}

	.e-7dfa2a09 > .holder > .inner > .card > .form > .nav > .act
	{
		width: 100%;
	}

	.e-7dfa2a09 > .holder > .inner > .card > .form > .nav > .act-back
	{
		margin-right: 0;
	}
}

@media screen and (max-width: 390px)
{
	.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control-ages > .age
	{
		flex: 1 1 auto;
	}

	.e-7dfa2a09 > .holder > .inner > .card > .form > .body > .panel > .fields > .field > .control-ages > .age > .age-select
	{
		width: 100%;
	}
}

.e-32182b7b > .holder
{
	display: block;
	padding-block: 72px 96px;
}

.e-32182b7b > .holder > .inner > .rich
{
	font-family: var(--ot-font-primary);
	font-size: 16px;
	line-height: 1.8;
	color: var(--ot-text-2);
}

.e-32182b7b > .holder > .inner > .rich > h2
{
	margin: var(--ot-spacing-l) 0 var(--ot-spacing-s);
	font-family: var(--ot-font-primary);
	font-size: 26px;
	font-weight: 800;
	font-variation-settings: normal;
	letter-spacing: -0.02em;
	color: var(--t3-navy);
}

.e-32182b7b > .holder > .inner > .rich > h2:first-child
{
	margin-top: 0;
}

.e-32182b7b > .holder > .inner > .rich > h3
{
	margin: var(--ot-spacing-m) 0 var(--ot-spacing-s);
	font-family: var(--ot-font-primary);
	font-size: 20px;
	font-weight: 700;
	font-variation-settings: normal;
	letter-spacing: -0.01em;
	color: var(--t3-navy);
}

.e-32182b7b > .holder > .inner > .rich > p
{
	margin-bottom: var(--ot-spacing-m);
}

.e-32182b7b > .holder > .inner > .rich > ul,
.e-32182b7b > .holder > .inner > .rich > ol
{
	margin: var(--ot-spacing-s) 0 var(--ot-spacing-m);
	padding-left: var(--ot-spacing-m);
	list-style: disc;
}

.e-32182b7b > .holder > .inner > .rich > a
{
	color: var(--ot-orange-hover);
	text-decoration: underline;
}

@media screen and (max-width: 768px)
{
	.e-32182b7b > .holder
	{
		padding-block: 48px 64px;
	}

	.e-32182b7b > .holder > .inner > .rich
	{
		font-size: 15px;
	}
}

.e-14405ac6 > .holder
{
	display: block;
}

.e-14405ac6 > .holder > .head
{
	background: var(--t3-sky);
	border-bottom: 1px solid var(--t3-navy-line);
	padding-block: 56px;
}

.e-14405ac6 > .holder > .body
{
	display: grid;
	grid-template-columns: 324px minmax(0, 1fr);
	gap: var(--ot-spacing-l);
	align-items: start;
	padding-block: var(--ot-spacing-l) 96px;
}

.e-14405ac6 > .holder > .body > .sidebar
{
	position: sticky;
	top: 96px;
	min-width: 0;
}

.e-14405ac6 > .holder > .body > .content
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-m);
	min-width: 0;
}

.e-14405ac6 > .holder > .body > .content > .grid
{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--ot-spacing-m);
	align-items: stretch;
}

.e-14405ac6 > .holder > .body > .content > .grid > .skeleton
{
	height: 400px;
	border-radius: var(--ot-radius-m);
	background: var(--ot-bg-2);
	border: 1px solid var(--t3-navy-line);
}

.e-14405ac6 > .holder > .filters-overlay
{
	position: fixed;
	inset: 0;
	z-index: 60;
	background: rgba(12, 12, 14, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--ot-transition), visibility var(--ot-transition);
}

.e-14405ac6 > .holder.is-filters-open > .filters-overlay
{
	opacity: 1;
	visibility: visible;
}

@media screen and (max-width: 1200px)
{
	.e-14405ac6 > .holder > .body
	{
		grid-template-columns: 280px minmax(0, 1fr);
	}

	.e-14405ac6 > .holder > .body > .content > .grid
	{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 1024px)
{
	.e-14405ac6 > .holder > .head
	{
		padding-block: 40px;
	}

	.e-14405ac6 > .holder > .body
	{
		grid-template-columns: minmax(0, 1fr);
		padding-block: var(--ot-spacing-m) 64px;
	}

	.e-14405ac6 > .holder > .body > .sidebar
	{
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		z-index: 70;
		width: min(340px, 88vw);
		overflow-y: auto;
		padding: var(--ot-spacing-m);
		background: var(--ot-bg-1);
		transform: translateX(-100%);
		transition: transform var(--ot-transition-slow);
	}

	.e-14405ac6 > .holder.is-filters-open > .body > .sidebar
	{
		transform: translateX(0);
	}
}

@media screen and (max-width: 560px)
{
	.e-14405ac6 > .holder > .body > .content > .grid
	{
		grid-template-columns: minmax(0, 1fr);
	}
}

.e-321a2c57 > .holder
{
	display: block;
	padding-block: 72px;
}

.e-321a2c57 > .holder.background-soft
{
	background: var(--ot-bg-2);
}

.e-321a2c57 > .holder > .inner
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-l);
}

.e-321a2c57 > .holder > .inner > .grid
{
	display: grid;
	grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
	gap: var(--ot-spacing-m);
	align-items: stretch;
}

.e-321a2c57 > .holder > .inner > .grid > .card
{
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	background: var(--ot-bg-1);
	border: 1px solid var(--t3-navy-line);
	border-radius: var(--ot-radius-m);
	box-shadow: var(--t3-shadow-card);
	transition: transform var(--ot-transition), box-shadow var(--ot-transition), border-color var(--ot-transition);
}

.e-321a2c57 > .holder > .inner > .grid > .card:hover
{
	transform: translateY(-6px);
	box-shadow: var(--t3-shadow-card-hover);
	border-color: var(--ot-orange);
}

.e-321a2c57 > .holder > .inner > .grid > .card.is-skeleton
{
	gap: 1px;
	box-shadow: none;
}

.e-321a2c57 > .holder > .inner > .grid > .card.is-skeleton:hover
{
	transform: none;
	box-shadow: none;
	border-color: var(--t3-navy-line);
}

.e-321a2c57 > .holder > .inner > .grid > .card > .skeleton-head
{
	height: 92px;
	background: var(--ot-bg-2);
}

.e-321a2c57 > .holder > .inner > .grid > .card > .skeleton-list
{
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 1px;
}

.e-321a2c57 > .holder > .inner > .grid > .card > .skeleton-list > .skeleton-row
{
	height: 58px;
	background: var(--ot-bg-2);
	opacity: 0.6;
}

.e-321a2c57 > .holder > .inner > .grid > .card > .card-head
{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: var(--ot-spacing-m);
	text-align: center;
	transition: background var(--ot-transition);
}

.e-321a2c57 > .holder > .inner > .grid > .card > .card-head > .card-title
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-size: 20px;
	font-weight: 800;
	font-variation-settings: normal;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.e-321a2c57 > .holder > .inner > .grid > .card > .card-head > .card-note
{
	display: inline-flex;
	align-items: center;
	gap: 2px;
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 600;
}

.e-321a2c57 > .holder > .inner > .grid > .card > .card-head > .card-note > .card-note-icon
{
	font-size: 16px;
	transition: transform var(--ot-transition-fast);
}

.e-321a2c57 > .holder > .inner > .grid > .card:hover > .card-head > .card-note > .card-note-icon
{
	transform: translateX(3px);
}

.e-321a2c57 > .holder > .inner > .grid > .card.tone-accent > .card-head
{
	background: var(--ot-orange);
}

.e-321a2c57 > .holder > .inner > .grid > .card.tone-accent > .card-head > .card-title
{
	color: var(--ot-text-1);
}

.e-321a2c57 > .holder > .inner > .grid > .card.tone-accent > .card-head > .card-note
{
	color: var(--ot-text-1);
	opacity: 0.85;
}

.e-321a2c57 > .holder > .inner > .grid > .card.tone-soft > .card-head
{
	background: var(--t3-navy);
}

.e-321a2c57 > .holder > .inner > .grid > .card.tone-soft > .card-head > .card-title
{
	color: rgb(255, 255, 255);
}

.e-321a2c57 > .holder > .inner > .grid > .card.tone-soft > .card-head > .card-note
{
	color: var(--t3-light-text-soft);
}

.e-321a2c57 > .holder > .inner > .grid > .card.tone-plain > .card-head
{
	background: var(--t3-sky);
	border-bottom: 1px solid var(--t3-navy-line);
}

.e-321a2c57 > .holder > .inner > .grid > .card.tone-plain > .card-head > .card-title
{
	color: var(--t3-navy);
}

.e-321a2c57 > .holder > .inner > .grid > .card.tone-plain > .card-head > .card-note
{
	color: var(--ot-orange-hover);
}

.e-321a2c57 > .holder > .inner > .grid > .card > .card-list
{
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	margin: 0;
	padding: 0;
}

.e-321a2c57 > .holder > .inner > .grid > .card > .card-list > .card-row
{
	display: flex;
	min-height: 58px;
	border-top: 1px solid var(--t3-navy-line);
}

.e-321a2c57 > .holder > .inner > .grid > .card > .card-list > .card-row:first-child
{
	border-top: 0;
}

.e-321a2c57 > .holder > .inner > .grid > .card > .card-list > .card-row > .row-link
{
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	gap: 10px;
	min-width: 0;
	padding: 10px var(--ot-spacing-m);
	transition: background var(--ot-transition-fast);
}

.e-321a2c57 > .holder > .inner > .grid > .card > .card-list > .card-row > .row-link:hover
{
	background: var(--t3-sky);
}

.e-321a2c57 > .holder > .inner > .grid > .card > .card-list > .card-row > .row-link > .row-icon
{
	flex: 0 0 auto;
	font-size: 18px;
	color: var(--ot-text-3);
	transition: color var(--ot-transition-fast);
}

.e-321a2c57 > .holder > .inner > .grid > .card > .card-list > .card-row > .row-link:hover > .row-icon
{
	color: var(--ot-orange);
}

.e-321a2c57 > .holder > .inner > .grid > .card > .card-list > .card-row > .row-link > .row-text
{
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.e-321a2c57 > .holder > .inner > .grid > .card > .card-list > .card-row > .row-link > .row-text > .row-name
{
	display: block;
	font-family: var(--ot-font-primary);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--t3-navy);
}

.e-321a2c57 > .holder > .inner > .grid > .card > .card-list > .card-row > .row-link > .row-text > .row-place
{
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--ot-text-2);
}

.e-321a2c57 > .holder > .inner > .action
{
	display: flex;
	justify-content: center;
}

@media screen and (max-width: 1024px)
{
	.e-321a2c57 > .holder
	{
		padding-block: 56px;
	}

	.e-321a2c57 > .holder > .inner > .grid
	{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 768px)
{
	.e-321a2c57 > .holder > .inner > .grid
	{
		grid-template-columns: minmax(0, 1fr);
	}
}

@media screen and (max-width: 560px)
{
	.e-321a2c57 > .holder
	{
		padding-block: 40px;
	}

	.e-321a2c57 > .holder > .inner
	{
		gap: var(--ot-spacing-m);
	}
}

.e-3b708864 > .holder
{
	display: block;
	padding-block: 72px;
	background: var(--ot-bg-1);
}

.e-3b708864 > .holder.background-sky { background: var(--t3-sky); }
.e-3b708864 > .holder.background-sand { background: var(--t3-sand); }

.e-3b708864 > .holder > .inner
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-l);
}

.e-3b708864 > .holder > .inner > .row
{
	position: relative;
	overflow: hidden;
	padding-block: 14px;
	margin-inline: calc(var(--ot-spacing-m) * -1);
}

@keyframes e3b708864-slide
{
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@keyframes e3b708864-shimmer
{
	0%   { background-position: 100% 0; }
	100% { background-position: 0 0; }
}

.e-3b708864 > .holder > .inner > .row > .track
{
	display: flex;
	align-items: stretch;
	gap: 24px;
	width: max-content;
	padding-inline: var(--ot-spacing-m);
	animation: e3b708864-slide var(--t3-marquee-speed, 90s) linear infinite;
}

.e-3b708864 > .holder > .inner > .row:hover > .track
{
	animation-play-state: paused;
}

.e-3b708864 > .holder > .inner > .row.is-right > .track
{
	animation-direction: reverse;
}

.e-3b708864 > .holder > .inner > .row > .skeletons
{
	display: flex;
	gap: 24px;
	padding-inline: var(--ot-spacing-m);
}

.e-3b708864 > .holder > .inner > .row > .skeletons > .skeleton
{
	flex: 0 0 auto;
	width: 300px;
	aspect-ratio: 4 / 5;
	border-radius: var(--ot-radius-m);
	background: linear-gradient(100deg, var(--ot-bg-2) 30%, var(--ot-bg-3) 50%, var(--ot-bg-2) 70%);
	background-size: 300% 100%;
	animation: e3b708864-shimmer 1.6s ease-in-out infinite;
}

.e-3b708864 > .holder > .inner > .row > .track > .card
{
	position: relative;
	flex: 0 0 auto;
	display: block;
	width: 300px;
	aspect-ratio: 4 / 5;
	text-decoration: none;
	transition: transform var(--ot-transition);
}

.e-3b708864 > .holder > .inner > .row > .track > .card:hover
{
	transform: translateY(-6px);
}

.e-3b708864 > .holder > .inner > .row > .track > .card > .frame
{
	position: absolute;
	inset: 0;
	display: block;
	overflow: hidden;
	border-radius: var(--ot-radius-m);
	background: var(--ot-bg-2);
	box-shadow: var(--t3-shadow-card);
	transition: box-shadow var(--ot-transition);
}

.e-3b708864 > .holder > .inner > .row > .track > .card:hover > .frame
{
	box-shadow: var(--t3-shadow-card-hover);
}

.e-3b708864 > .holder > .inner > .row > .track > .card > .frame > .image
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--ot-transition-slow);
}

.e-3b708864 > .holder > .inner > .row > .track > .card:hover > .frame > .image
{
	transform: scale(1.04);
}

.e-3b708864 > .holder > .inner > .row > .track > .card > .strap
{
	position: absolute;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	max-width: calc(100% + 14px);
	transform: skewX(var(--t3-skew));
	font-family: var(--ot-font-primary);
	white-space: nowrap;
	transition: transform var(--ot-transition);
}

.e-3b708864 > .holder > .inner > .row > .track > .card > .strap > .strap-text
{
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	transform: skewX(var(--t3-skew-back));
}

.e-3b708864 > .holder > .inner > .row > .track > .card > .strap-name
{
	right: -14px;
	bottom: 46px;
	padding: 8px 22px;
	background: var(--t3-navy);
	color: rgb(255, 255, 255);
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.01em;
}

.e-3b708864 > .holder > .inner > .row > .track > .card > .strap-tag
{
	right: 6px;
	bottom: 20px;
	padding: 6px 30px;
	background: var(--ot-orange);
	color: var(--ot-text-1);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.e-3b708864 > .holder > .inner > .row > .track > .card:hover > .strap-name
{
	transform: skewX(var(--t3-skew)) translateX(-6px);
}

.e-3b708864 > .holder > .inner > .row > .track > .card:hover > .strap-tag
{
	transform: skewX(var(--t3-skew)) translateX(-10px);
}

.e-3b708864 > .holder > .inner > .action
{
	display: flex;
	justify-content: center;
}

@media screen and (max-width: 1024px)
{
	.e-3b708864 > .holder
	{
		padding-block: 56px;
	}

	.e-3b708864 > .holder > .inner > .row > .track,
	.e-3b708864 > .holder > .inner > .row > .skeletons
	{
		gap: 18px;
	}

	.e-3b708864 > .holder > .inner > .row > .track > .card,
	.e-3b708864 > .holder > .inner > .row > .skeletons > .skeleton
	{
		width: 260px;
	}
}

@media screen and (max-width: 640px)
{
	.e-3b708864 > .holder > .inner > .row > .track,
	.e-3b708864 > .holder > .inner > .row > .skeletons
	{
		gap: 14px;
	}

	.e-3b708864 > .holder > .inner > .row > .track > .card,
	.e-3b708864 > .holder > .inner > .row > .skeletons > .skeleton
	{
		width: 210px;
	}

	.e-3b708864 > .holder > .inner > .row > .track > .card > .strap-name
	{
		bottom: 40px;
		padding: 6px 18px;
		font-size: 15px;
	}

	.e-3b708864 > .holder > .inner > .row > .track > .card > .strap-tag
	{
		padding: 5px 22px;
		font-size: 12px;
	}
}

@media screen and (max-width: 560px)
{
	.e-3b708864 > .holder
	{
		padding-block: 40px;
	}
}

.e-14256b8e > .holder
{
	position: sticky;
	top: 0;
	z-index: 60;
	background: var(--ot-bg-1);
	border-bottom: 1px solid var(--t3-navy-line);
	box-shadow: var(--ot-shadow-s);
}

.e-14256b8e > .holder > .inner
{
	display: flex;
	align-items: center;
	gap: 18px;
	height: 88px;
}

.e-14256b8e > .holder > .inner > .brand
{
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}

.e-14256b8e > .holder > .inner > .brand > .brand-logo
{
	height: 56px;
	width: auto;
	object-fit: contain;
}

.e-14256b8e > .holder > .inner > .brand > .brand-name
{
	font-family: var(--ot-font-primary);
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t3-navy);
}

.e-14256b8e > .holder > .inner > .links
{
	display: flex;
	align-items: center;
	gap: 2px;
	flex: 1;
	min-width: 0;
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .link
{
	display: inline-flex;
	align-items: center;
	gap: 2px;
	height: 88px;
	padding-inline: 10px;
	font-family: var(--ot-font-primary);
	font-size: 14px;
	font-weight: 600;
	color: var(--t3-navy);
	white-space: nowrap;
	cursor: pointer;
	transition: color var(--ot-transition);
}

.e-14256b8e > .holder > .inner > .links > .link-wrap:hover > .link,
.e-14256b8e > .holder > .inner > .links > .link-wrap.is-active > .link
{
	color: var(--ot-orange-hover);
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .link > .link-chevron
{
	font-size: 18px;
	color: var(--ot-text-3);
	transition: transform var(--ot-transition), color var(--ot-transition);
}

.e-14256b8e > .holder > .inner > .links > .link-wrap:hover > .link > .link-chevron,
.e-14256b8e > .holder > .inner > .links > .link-wrap.is-active > .link > .link-chevron
{
	color: var(--ot-orange-hover);
}

.e-14256b8e > .holder > .inner > .links > .link-wrap.is-active > .link > .link-chevron
{
	transform: rotate(180deg);
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega
{
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 20;
	padding-bottom: 12px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity var(--ot-transition), transform var(--ot-transition), visibility var(--ot-transition);
}

.e-14256b8e > .holder > .inner > .links > .link-wrap.is-active > .mega
{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega.cols-2
{
	--cols: 2;
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega.cols-3
{
	--cols: 3;
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega.cols-4
{
	--cols: 4;
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega.cols-5
{
	--cols: 5;
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega.cols-6
{
	--cols: 6;
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega > .mega-card
{
	padding: 24px 20px 0;
	background: var(--ot-bg-1);
	border: 1px solid var(--t3-navy-line);
	border-radius: var(--ot-radius-m);
	box-shadow: var(--t3-shadow-card-hover);
	overflow: hidden;
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega > .mega-card > .mega-grid
{
	display: grid;
	grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
	column-gap: var(--ot-spacing-m);
	row-gap: 4px;
	align-items: start;
	padding-bottom: 20px;
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega > .mega-card > .mega-grid > .mega-cell
{
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 9px 10px;
	border-radius: var(--ot-radius-m);
	transition: background-color var(--ot-transition);
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega > .mega-card > .mega-grid > .mega-cell:hover
{
	background: var(--t3-sky);
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega > .mega-card > .mega-grid > .mega-cell > .mega-flag
{
	flex: 0 0 auto;
	width: 24px;
	font-size: 18px;
	line-height: 22px;
	text-align: center;
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega > .mega-card > .mega-grid > .mega-cell > .mega-flag-image
{
	flex: 0 0 auto;
	width: 24px;
	height: 18px;
	margin-top: 2px;
	border-radius: 3px;
	object-fit: cover;
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega > .mega-card > .mega-grid > .mega-cell > .mega-icon
{
	flex: 0 0 auto;
	width: 24px;
	font-size: 20px;
	color: var(--ot-text-3);
	transition: color var(--ot-transition);
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega > .mega-card > .mega-grid > .mega-cell:hover > .mega-icon
{
	color: var(--ot-orange-hover);
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega > .mega-card > .mega-grid > .mega-cell > .mega-text
{
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega > .mega-card > .mega-grid > .mega-cell > .mega-text > .mega-label
{
	font-family: var(--ot-font-primary);
	font-size: 14px;
	font-weight: 700;
	color: var(--t3-navy);
	transition: color var(--ot-transition);
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega > .mega-card > .mega-grid > .mega-cell:hover > .mega-text > .mega-label
{
	color: var(--ot-orange-hover);
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega > .mega-card > .mega-grid > .mega-cell > .mega-text > .mega-note
{
	font-family: var(--ot-font-primary);
	font-size: 12px;
	font-weight: 400;
	color: var(--ot-text-3);
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega > .mega-card > .mega-cols
{
	display: grid;
	grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
	column-gap: var(--ot-spacing-m);
	row-gap: var(--ot-spacing-m);
	align-items: start;
	padding-bottom: 20px;
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega > .mega-card > .mega-cols > .mega-col
{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	min-width: 0;
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega > .mega-card > .mega-cols > .mega-col > .mega-title
{
	margin-bottom: 6px;
	padding-inline: 6px;
	font-family: var(--ot-font-primary);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--t3-navy);
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega > .mega-card > .mega-cols > .mega-col > .mega-link
{
	max-width: 100%;
	padding: 5px 6px;
	border-radius: var(--ot-radius-s);
	font-family: var(--ot-font-primary);
	font-size: 14px;
	font-weight: 600;
	color: var(--t3-navy);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color var(--ot-transition);
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega > .mega-card > .mega-cols > .mega-col > .mega-link:hover
{
	color: var(--ot-orange-hover);
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega > .mega-card > .mega-cols > .mega-col > .mega-more
{
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: 4px;
	padding: 5px 6px;
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 700;
	color: var(--ot-orange-hover);
	white-space: nowrap;
	transition: color var(--ot-transition);
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega > .mega-card > .mega-cols > .mega-col > .mega-more:hover
{
	color: var(--t3-navy);
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega > .mega-card > .mega-cols > .mega-col > .mega-more > .mega-more-icon
{
	font-size: 16px;
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega > .mega-card > .mega-foot
{
	display: flex;
	align-items: center;
	gap: 8px;
	margin-inline: -20px;
	padding: 14px 26px;
	background: var(--t3-sky);
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 700;
	color: var(--t3-navy);
	transition: color var(--ot-transition), background-color var(--ot-transition);
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega > .mega-card > .mega-foot:hover
{
	background: var(--t3-navy-veil-thin);
	color: var(--ot-orange-hover);
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega > .mega-card > .mega-foot > .mega-foot-icon
{
	font-size: 18px;
	color: var(--t3-navy);
	flex: 0 0 auto;
	transition: color var(--ot-transition);
}

.e-14256b8e > .holder > .inner > .links > .link-wrap > .mega > .mega-card > .mega-foot:hover > .mega-foot-icon
{
	color: var(--ot-orange-hover);
}

.e-14256b8e > .holder > .inner > .right
{
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
	margin-left: auto;
}

.e-14256b8e > .holder > .inner > .right > .burger
{
	display: none;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: var(--ot-radius-s);
	background: var(--t3-sky);
	color: var(--t3-navy);
	cursor: pointer;
	transition: background-color var(--ot-transition), color var(--ot-transition);
}

.e-14256b8e > .holder > .inner > .right > .burger:hover
{
	background: var(--t3-navy);
	color: rgb(255, 255, 255);
}

.e-14256b8e > .holder > .mobile-overlay
{
	position: fixed;
	inset: 0;
	z-index: 70;
	background: rgba(14, 14, 18, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--ot-transition), visibility var(--ot-transition);
}

.e-14256b8e > .holder.is-open > .mobile-overlay
{
	opacity: 1;
	visibility: visible;
}

.e-14256b8e > .holder > .mobile-panel
{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 80;
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: min(380px, 90vw);
	padding: 22px;
	background: var(--ot-bg-1);
	transform: translateX(100%);
	transition: transform var(--ot-transition);
	overflow-y: auto;
}

.e-14256b8e > .holder.is-open > .mobile-panel
{
	transform: translateX(0);
}

.e-14256b8e > .holder > .mobile-panel > .mobile-head
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.e-14256b8e > .holder > .mobile-panel > .mobile-head > .brand > .brand-logo
{
	height: 49px;
	width: auto;
	object-fit: contain;
}

.e-14256b8e > .holder > .mobile-panel > .mobile-head > .mobile-close
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: var(--ot-radius-s);
	background: var(--t3-sky);
	color: var(--t3-navy);
	cursor: pointer;
}

.e-14256b8e > .holder > .mobile-panel > .mobile-nav
{
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.e-14256b8e > .holder > .mobile-panel > .mobile-nav > .mobile-item > .mobile-link
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	width: 100%;
	padding: 13px 14px;
	border-radius: 14px;
	font-family: var(--ot-font-primary);
	font-size: 15px;
	font-weight: 700;
	color: var(--t3-navy);
	text-align: left;
	cursor: pointer;
	transition: background-color var(--ot-transition), color var(--ot-transition);
}

.e-14256b8e > .holder > .mobile-panel > .mobile-nav > .mobile-item > .mobile-link:hover
{
	background: var(--t3-sky);
	color: var(--ot-orange-hover);
}

.e-14256b8e > .holder > .mobile-panel > .mobile-nav > .mobile-item > .mobile-link > .mobile-chevron
{
	font-size: 20px;
	color: var(--ot-text-3);
	flex: 0 0 auto;
	transition: transform var(--ot-transition);
}

.e-14256b8e > .holder > .mobile-panel > .mobile-nav > .mobile-item.is-expanded > .mobile-link > .mobile-chevron
{
	transform: rotate(180deg);
}

.e-14256b8e > .holder > .mobile-panel > .mobile-nav > .mobile-item > .mobile-sub
{
	display: none;
	flex-direction: column;
	gap: 10px;
	padding: 4px 0 10px 14px;
}

.e-14256b8e > .holder > .mobile-panel > .mobile-nav > .mobile-item.is-expanded > .mobile-sub
{
	display: flex;
}

.e-14256b8e > .holder > .mobile-panel > .mobile-nav > .mobile-item > .mobile-sub > .mobile-group
{
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.e-14256b8e > .holder > .mobile-panel > .mobile-nav > .mobile-item > .mobile-sub > .mobile-group > .mobile-group-title
{
	margin-bottom: 4px;
	padding-inline: 14px;
	font-family: var(--ot-font-primary);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--t3-navy);
}

.e-14256b8e > .holder > .mobile-panel > .mobile-nav > .mobile-item > .mobile-sub > .mobile-group > .mobile-sub-link
{
	padding: 9px 14px;
	border-radius: 12px;
	font-family: var(--ot-font-primary);
	font-size: 14px;
	color: var(--ot-text-2);
	transition: background-color var(--ot-transition), color var(--ot-transition);
}

.e-14256b8e > .holder > .mobile-panel > .mobile-nav > .mobile-item > .mobile-sub > .mobile-group > .mobile-sub-link:hover
{
	background: var(--t3-sky);
	color: var(--ot-orange-hover);
}

.e-14256b8e > .holder > .mobile-panel > .mobile-nav > .mobile-item > .mobile-sub > .mobile-sub-all
{
	padding: 9px 14px;
	border-radius: 12px;
	background: var(--t3-sky);
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 700;
	color: var(--ot-orange-hover);
}

.e-14256b8e > .holder > .mobile-panel > .mobile-cta
{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 50px;
	margin-top: auto;
	border-radius: 999px;
	background: var(--ot-orange);
	color: var(--ot-text-1);
	font-family: var(--ot-font-primary);
	font-size: 15px;
	font-weight: 700;
	box-shadow: var(--t3-shadow-cta);
	flex: 0 0 auto;
}

.e-14256b8e > .holder > .mobile-panel > .mobile-cta > .mobile-cta-icon
{
	font-size: 18px;
	order: 2;
}

@media screen and (max-width: 1360px)
{
	.e-14256b8e > .holder > .inner > .links > .link-wrap > .link
	{
		padding-inline: 8px;
		font-size: 13px;
	}
}

@media screen and (max-width: 1200px)
{
	.e-14256b8e > .holder > .inner
	{
		gap: 10px;
	}

	.e-14256b8e > .holder > .inner > .links > .link-wrap > .link
	{
		padding-inline: 6px;
		font-size: 13px;
	}

	.e-14256b8e > .holder > .inner > .links > .link-wrap > .link > .link-chevron
	{
		font-size: 16px;
	}
}

@media screen and (max-width: 1024px)
{
	.e-14256b8e > .holder > .inner
	{
		height: 80px;
	}

	.e-14256b8e > .holder > .inner > .links
	{
		display: none;
	}

	.e-14256b8e > .holder > .inner > .right > .burger
	{
		display: flex;
	}
}

@media screen and (max-width: 560px)
{
	.e-14256b8e > .holder > .inner
	{
		height: 70px;
	}

	.e-14256b8e > .holder > .inner > .brand > .brand-logo
	{
		height: 46px;
	}
}

.e-4c359ac9 > .holder
{
	display: block;
	padding-block: 64px;
	background: var(--ot-bg-1);
}

.e-4c359ac9 > .holder > .inner > .panel
{
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: center;
	gap: 40px;
	padding: 48px;
	border-radius: var(--ot-radius-l);
	background: var(--t3-sky);
	border: 1px solid var(--t3-navy-line);
	box-shadow: var(--t3-shadow-card);
}

.e-4c359ac9 > .holder.has-image > .inner > .panel
{
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.e-4c359ac9 > .holder > .inner > .panel > .text
{
	display: flex;
	flex-direction: column;
	gap: 22px;
	min-width: 0;
}

.e-4c359ac9 > .holder > .inner > .panel > .text > .form
{
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: 520px;
}

.e-4c359ac9 > .holder > .inner > .panel > .text > .form > .field
{
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
	min-width: 0;
	height: 54px;
	padding-inline: 18px;
	border-radius: 999px;
	background: var(--ot-bg-1);
	border: 1px solid var(--t3-navy-line);
	transition: border-color var(--ot-transition);
}

.e-4c359ac9 > .holder > .inner > .panel > .text > .form > .field:focus-within
{
	border-color: var(--t3-navy);
}

.e-4c359ac9 > .holder > .inner > .panel > .text > .form > .field > .field-icon
{
	font-size: 19px;
	color: var(--ot-text-3);
	flex: 0 0 auto;
}

.e-4c359ac9 > .holder > .inner > .panel > .text > .form > .field > .field-input
{
	flex: 1;
	min-width: 0;
	border: 0;
	background: transparent;
	padding: 0;
	font-family: var(--ot-font-primary);
	font-size: 14px;
	font-weight: 500;
	color: var(--ot-text-1);
}

.e-4c359ac9 > .holder > .inner > .panel > .text > .form > .field > .field-input::placeholder
{
	color: var(--ot-text-3);
}

.e-4c359ac9 > .holder > .inner > .panel > .text > .form > .submit
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 54px;
	padding-inline: 28px;
	border-radius: 999px;
	background: var(--ot-orange);
	color: var(--ot-text-1);
	font-family: var(--ot-font-primary);
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	cursor: pointer;
	flex: 0 0 auto;
	transition: transform var(--ot-transition-fast), background-color var(--ot-transition), color var(--ot-transition), box-shadow var(--ot-transition);
}

.e-4c359ac9 > .holder > .inner > .panel > .text > .form > .submit:hover
{
	transform: translateY(-3px);
	background: var(--ot-orange-hover);
	color: rgb(255, 255, 255);
	box-shadow: var(--t3-shadow-cta);
}

.e-4c359ac9 > .holder > .inner > .panel > .text > .form > .submit > .submit-icon
{
	font-size: 18px;
	transition: transform var(--ot-transition);
}

.e-4c359ac9 > .holder > .inner > .panel > .text > .form > .submit:hover > .submit-icon
{
	transform: translateX(3px);
}

.e-4c359ac9 > .holder > .inner > .panel > .text > .note
{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--ot-font-primary);
	font-size: 12px;
	color: var(--ot-text-3);
}

.e-4c359ac9 > .holder > .inner > .panel > .text > .note > .note-icon
{
	font-size: 15px;
}

.e-4c359ac9 > .holder > .inner > .panel > .text > .perks
{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 22px;
}

.e-4c359ac9 > .holder > .inner > .panel > .text > .perks > .perk
{
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 600;
	color: var(--ot-text-2);
}

.e-4c359ac9 > .holder > .inner > .panel > .text > .perks > .perk > .perk-icon
{
	font-size: 17px;
	color: var(--ot-orange);
}

.e-4c359ac9 > .holder > .inner > .panel > .media
{
	min-width: 0;
}

.e-4c359ac9 > .holder > .inner > .panel > .media > .media-image
{
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	border-radius: var(--ot-radius-m);
}

@media screen and (max-width: 1024px)
{
	.e-4c359ac9 > .holder
	{
		padding-block: 48px;
	}

	.e-4c359ac9 > .holder.has-image > .inner > .panel
	{
		grid-template-columns: minmax(0, 1fr);
	}

	.e-4c359ac9 > .holder > .inner > .panel > .media
	{
		order: -1;
	}

	.e-4c359ac9 > .holder > .inner > .panel
	{
		padding: 34px;
		gap: 28px;
	}
}

@media screen and (max-width: 768px)
{
	.e-4c359ac9 > .holder > .inner > .panel > .text > .form
	{
		flex-wrap: wrap;
	}

	.e-4c359ac9 > .holder > .inner > .panel > .text > .form > .field,
	.e-4c359ac9 > .holder > .inner > .panel > .text > .form > .submit
	{
		flex: 1 1 100%;
	}
}

@media screen and (max-width: 560px)
{
	.e-4c359ac9 > .holder
	{
		padding-block: 34px;
	}

	.e-4c359ac9 > .holder > .inner > .panel
	{
		padding: 24px;
		border-radius: var(--ot-radius-m);
	}
}

.e-3242e31e > .holder
{
	display: block;
}

.e-3242e31e > .holder > .head
{
	background: var(--t3-sky);
	border-bottom: 1px solid var(--t3-navy-line);
	padding-block: var(--ot-spacing-m) var(--ot-spacing-l);
}

.e-3242e31e > .holder > .head > .head-inner
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-m);
}

.e-3242e31e > .holder > .head > .head-inner > .chips
{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--ot-spacing-s);
}

.e-3242e31e > .holder > .head > .head-inner > .title-row
{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--ot-spacing-m);
	flex-wrap: wrap;
}

.e-3242e31e > .holder > .head > .head-inner > .code
{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	align-self: flex-start;
	padding: 7px 18px;
	background: var(--t3-navy);
	box-shadow: var(--t3-shadow-strap);
	transform: skewX(var(--t3-skew));
	font-family: var(--ot-font-primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--t3-light-text-soft);
}

.e-3242e31e > .holder > .head > .head-inner > .code > .code-label
{
	display: block;
	transform: skewX(var(--t3-skew-back));
}

.e-3242e31e > .holder > .head > .head-inner > .code > .code-value
{
	display: block;
	transform: skewX(var(--t3-skew-back));
	font-family: var(--ot-font-primary);
	font-size: 14px;
	font-weight: 800;
	font-variation-settings: normal;
	color: rgb(255, 255, 255);
	letter-spacing: 0.01em;
	text-transform: none;
}

.e-3242e31e > .holder > .gallery
{
	padding-block: var(--ot-spacing-l) 0;
}

.e-3242e31e > .holder > .body
{
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: var(--ot-spacing-l);
	align-items: start;
	padding-block: var(--ot-spacing-l) 96px;
}

.e-3242e31e > .holder > .body > .content
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-l);
	min-width: 0;
}

.e-3242e31e > .holder > .body > .content > .section
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-m);
	min-width: 0;
}

.e-3242e31e > .holder > .body > .content > .section > .rich
{
	font-family: var(--ot-font-primary);
	font-size: 15px;
	line-height: 1.75;
	color: var(--ot-text-2);
	min-width: 0;
	overflow-x: auto;
}

.e-3242e31e > .holder > .body > .content > .section > .rich > h1,
.e-3242e31e > .holder > .body > .content > .section > .rich > h2,
.e-3242e31e > .holder > .body > .content > .section > .rich > h3,
.e-3242e31e > .holder > .body > .content > .section > .rich > h4
{
	margin: var(--ot-spacing-m) 0 var(--ot-spacing-s);
	font-family: var(--ot-font-primary);
	font-size: 21px;
	font-weight: 800;
	font-variation-settings: normal;
	letter-spacing: -0.02em;
	color: var(--t3-navy);
}

.e-3242e31e > .holder > .body > .content > .section > .rich > p
{
	margin-bottom: var(--ot-spacing-s);
	color: var(--ot-text-2);
}

.e-3242e31e > .holder > .body > .content > .section > .rich > table
{
	width: 100%;
	margin: var(--ot-spacing-m) 0;
	border: 1px solid var(--t3-navy-line);
	border-radius: var(--ot-radius-s);
	overflow: hidden;
	font-size: 14px;
}

.e-3242e31e > .holder > .body > .content > .section > .rich > table td,
.e-3242e31e > .holder > .body > .content > .section > .rich > table th
{
	padding: 10px 14px !important;
	border-bottom: 1px solid var(--ot-bg-2-border) !important;
	background: var(--ot-bg-1) !important;
	color: var(--ot-text-2) !important;
	text-align: left;
}

.e-3242e31e > .holder > .body > .content > .section > .rich > table th
{
	background: var(--ot-bg-2) !important;
	color: var(--ot-text-1) !important;
	font-weight: 600;
}

.e-3242e31e > .holder > .body > .content > .section > .rich > ul,
.e-3242e31e > .holder > .body > .content > .section > .rich > ol
{
	margin: var(--ot-spacing-s) 0;
	padding-left: var(--ot-spacing-m);
	list-style: disc;
}

.e-3242e31e > .holder > .body > .content > .section > .rich > ul li,
.e-3242e31e > .holder > .body > .content > .section > .rich > ol li
{
	margin-bottom: 6px;
}

.e-3242e31e > .holder > .body > .content > .section > .rich > img
{
	max-width: 100%;
	height: auto;
	border-radius: var(--ot-radius-m);
	margin: var(--ot-spacing-s) 0;
}

.e-3242e31e > .holder > .body > .content > .section > .rich > a
{
	color: var(--ot-orange-hover);
	text-decoration: underline;
}

.e-3242e31e > .holder > .body > .sidebar
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-m);
	align-self: stretch;
	min-width: 0;
}

.e-3242e31e > .holder > .body > .sidebar > .panel
{
	position: sticky;
	top: 96px;
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
	padding: var(--ot-spacing-m);
	background: var(--ot-bg-1);
	border: 1px solid var(--t3-navy-line);
	border-radius: var(--ot-radius-m);
	box-shadow: var(--t3-shadow-card);
}

.e-3242e31e > .holder > .body > .sidebar > .panel > .panel-title
{
	font-family: var(--ot-font-primary);
	font-size: 21px;
	font-weight: 800;
	font-variation-settings: normal;
	letter-spacing: -0.02em;
	color: var(--t3-navy);
}

.e-3242e31e > .holder > .body > .sidebar > .panel > .panel-text
{
	font-family: var(--ot-font-primary);
	font-size: 14px;
	line-height: 1.6;
	color: var(--ot-text-2);
	margin-bottom: 4px;
}

.e-3242e31e > .holder > .body > .sidebar > .panel > .panel-note
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-family: var(--ot-font-primary);
	font-size: 13px;
	color: var(--ot-text-3);
}

.e-3242e31e > .holder > .body > .sidebar > .panel > .panel-note > .panel-note-icon
{
	font-size: 16px;
	color: var(--ot-orange-hover);
}

.e-3242e31e > .holder > .body > .sidebar > .panel > .trust
{
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-top: var(--ot-spacing-s);
	border-top: 1px solid var(--t3-navy-line);
}

.e-3242e31e > .holder > .body > .sidebar > .panel > .trust > .trust-row
{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--ot-font-primary);
	font-size: 14px;
	color: var(--ot-text-2);
}

.e-3242e31e > .holder > .body > .sidebar > .panel > .trust > .trust-row > .trust-icon
{
	font-size: 18px;
	color: var(--t3-navy);
	flex: 0 0 auto;
}

@media screen and (max-width: 1024px)
{
	.e-3242e31e > .holder > .body
	{
		grid-template-columns: minmax(0, 1fr);
		padding-block: var(--ot-spacing-m) 64px;
	}

	.e-3242e31e > .holder > .body > .sidebar > .panel
	{
		position: static;
	}
}

@media screen and (max-width: 560px)
{
	.e-3242e31e > .holder > .gallery
	{
		padding-block: var(--ot-spacing-m) 0;
	}
}

.e-7fe96620 > .holder
{
	display: block;
	background: var(--t3-sky);
	border-bottom: 1px solid var(--t3-navy-line);
	padding-block: 56px;
}

.e-7fe96620 > .holder > .inner
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-m);
}

.e-7fe96620 > .holder.align-center > .inner
{
	align-items: center;
}

@media screen and (max-width: 1024px)
{
	.e-7fe96620 > .holder
	{
		padding-block: 40px;
	}
}

@media screen and (max-width: 560px)
{
	.e-7fe96620 > .holder
	{
		padding-block: 32px;
	}

	.e-7fe96620 > .holder > .inner
	{
		gap: var(--ot-spacing-s);
	}
}

.e-6a6b24a9 > .holder
{
	display: block;
	padding-block: 56px;
	background: var(--ot-bg-1);
	border-top: 1px solid var(--ot-bg-2-border);
}

.e-6a6b24a9 > .holder.background-soft
{
	background: var(--ot-bg-2);
	border-top: 0;
}

.e-6a6b24a9 > .holder > .inner
{
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.e-6a6b24a9 > .holder > .inner > .viewport
{
	min-width: 0;
}

.e-6a6b24a9 > .holder > .inner > .viewport > .row
{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.e-6a6b24a9 > .holder > .inner > .viewport > .row > .item
{
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
	padding: 16px 18px;
	background: var(--ot-bg-1);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: 16px;
	transition: transform var(--ot-transition), box-shadow var(--ot-transition), border-color var(--ot-transition);
}

.e-6a6b24a9 > .holder.background-soft > .inner > .viewport > .row > .item
{
	border-color: transparent;
}

.e-6a6b24a9 > .holder > .inner > .viewport > .row > .item:hover
{
	transform: translateY(-3px);
	box-shadow: 0 16px 30px -18px rgba(14, 14, 18, 0.4);
	border-color: var(--ot-brand);
}

.e-6a6b24a9 > .holder > .inner > .viewport > .row > .item > .item-mark
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 13px;
	background: var(--ot-bg-2);
	flex: 0 0 auto;
	overflow: hidden;
	transition: background-color var(--ot-transition);
}

.e-6a6b24a9 > .holder.background-soft > .inner > .viewport > .row > .item > .item-mark
{
	background: var(--ot-bg-3);
}

.e-6a6b24a9 > .holder > .inner > .viewport > .row > .item:hover > .item-mark
{
	background: var(--ot-brand-opacity);
}

.e-6a6b24a9 > .holder > .inner > .viewport > .row > .item > .item-mark > .item-image
{
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 6px;
}

.e-6a6b24a9 > .holder > .inner > .viewport > .row > .item > .item-mark > .item-monogram
{
	font-family: var(--ot-font-primary);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--ot-text-2);
	transition: color var(--ot-transition);
}

.e-6a6b24a9 > .holder > .inner > .viewport > .row > .item:hover > .item-mark > .item-monogram
{
	color: var(--ot-brand-hover);
}

.e-6a6b24a9 > .holder > .inner > .viewport > .row > .item > .item-text
{
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	flex: 1;
}

.e-6a6b24a9 > .holder > .inner > .viewport > .row > .item > .item-text > .item-label
{
	font-family: var(--ot-font-primary);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--ot-text-1);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.e-6a6b24a9 > .holder > .inner > .viewport > .row > .item > .item-text > .item-note
{
	font-family: var(--ot-font-primary);
	font-size: 12px;
	font-weight: 500;
	color: var(--ot-text-3);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.e-6a6b24a9 > .holder.variant-marquee > .inner > .viewport
{
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.e-6a6b24a9 > .holder.variant-marquee > .inner > .viewport > .row
{
	display: flex;
	width: max-content;
	gap: 14px;
	animation: e6a6b24a9-slide 46s linear infinite;
}

.e-6a6b24a9 > .holder.variant-marquee > .inner > .viewport:hover > .row
{
	animation-play-state: paused;
}

.e-6a6b24a9 > .holder.variant-marquee > .inner > .viewport > .row > .item
{
	width: 260px;
	flex: 0 0 auto;
}

@keyframes e6a6b24a9-slide
{
	0%   { transform: translateX(0); }
	100% { transform: translateX(calc(-50% - 7px)); }
}

.e-6a6b24a9 > .holder.variant-plain > .inner > .viewport > .row
{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px 48px;
}

.e-6a6b24a9 > .holder.variant-plain > .inner > .viewport > .row > .item
{
	padding: 0;
	border: 0;
	background: transparent;
	opacity: 0.5;
	filter: grayscale(1);
	transition: opacity var(--ot-transition), filter var(--ot-transition);
}

.e-6a6b24a9 > .holder.variant-plain > .inner > .viewport > .row > .item:hover
{
	opacity: 1;
	filter: grayscale(0);
	transform: none;
	box-shadow: none;
}

.e-6a6b24a9 > .holder.variant-plain > .inner > .viewport > .row > .item > .item-mark
{
	display: none;
}

@media screen and (max-width: 1024px)
{
	.e-6a6b24a9 > .holder
	{
		padding-block: 44px;
	}

	.e-6a6b24a9 > .holder > .inner > .viewport > .row
	{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 560px)
{
	.e-6a6b24a9 > .holder
	{
		padding-block: 34px;
	}

	.e-6a6b24a9 > .holder > .inner > .viewport > .row
	{
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
	}

	.e-6a6b24a9 > .holder.variant-marquee > .inner > .viewport > .row > .item
	{
		width: 220px;
	}
}

.e-7a3f5062 > .holder
{
	display: block;
	padding-bottom: 96px;
}

.e-7a3f5062 > .holder > .head
{
	background: var(--t3-sky);
	border-bottom: 1px solid var(--t3-navy-line);
	padding-block: var(--ot-spacing-m) var(--ot-spacing-l);
	margin-bottom: var(--ot-spacing-l);
}

.e-7a3f5062 > .holder > .head > .head-inner
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-m);
}

.e-7a3f5062 > .holder > .head > .head-inner > .meta
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-m);
	flex-wrap: wrap;
}

.e-7a3f5062 > .holder > .head > .head-inner > .meta > .meta-item
{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--ot-font-primary);
	font-size: 13px;
	color: var(--ot-text-2);
}

.e-7a3f5062 > .holder > .head > .head-inner > .meta > .meta-item > .meta-icon
{
	font-size: 17px;
	color: var(--ot-orange);
}

.e-7a3f5062 > .holder > .cover
{
	margin-bottom: var(--ot-spacing-l);
}

.e-7a3f5062 > .holder > .body
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-m);
}

.e-7a3f5062 > .holder > .body > .lead
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-size: 19px;
	line-height: 1.65;
	font-weight: 500;
	color: var(--t3-navy);
	padding-left: var(--ot-spacing-m);
	border-left: 3px solid var(--ot-orange);
}

.e-7a3f5062 > .holder > .body > .rich
{
	font-family: var(--ot-font-primary);
	font-size: 16px;
	line-height: 1.8;
	color: var(--ot-text-2);
	min-width: 0;
	overflow-x: auto;
}

.e-7a3f5062 > .holder > .body > .rich > h2,
.e-7a3f5062 > .holder > .body > .rich > h3
{
	margin: var(--ot-spacing-l) 0 var(--ot-spacing-s);
	font-family: var(--ot-font-primary);
	font-size: 26px;
	font-weight: 800;
	font-variation-settings: normal;
	letter-spacing: -0.02em;
	color: var(--t3-navy);
}

.e-7a3f5062 > .holder > .body > .rich > h3
{
	font-size: 20px;
	font-weight: 700;
}

.e-7a3f5062 > .holder > .body > .rich > p
{
	margin-bottom: var(--ot-spacing-m);
}

.e-7a3f5062 > .holder > .body > .rich > img
{
	max-width: 100%;
	height: auto;
	border-radius: var(--ot-radius-m);
	margin: var(--ot-spacing-m) 0;
}

.e-7a3f5062 > .holder > .body > .rich > ul,
.e-7a3f5062 > .holder > .body > .rich > ol
{
	margin: var(--ot-spacing-s) 0 var(--ot-spacing-m);
	padding-left: var(--ot-spacing-m);
	list-style: disc;
}

.e-7a3f5062 > .holder > .body > .rich > blockquote
{
	margin: var(--ot-spacing-m) 0;
	padding: var(--ot-spacing-m);
	background: var(--t3-sky);
	border-left: 3px solid var(--t3-navy);
	border-radius: 0 var(--ot-radius-s) var(--ot-radius-s) 0;
	font-style: italic;
	color: var(--ot-text-1);
}

.e-7a3f5062 > .holder > .body > .rich > a
{
	color: var(--ot-orange-hover);
	text-decoration: underline;
}

@media screen and (max-width: 768px)
{
	.e-7a3f5062 > .holder
	{
		padding-bottom: 64px;
	}

	.e-7a3f5062 > .holder > .body > .lead
	{
		font-size: 17px;
	}

	.e-7a3f5062 > .holder > .body > .rich
	{
		font-size: 15px;
	}
}

.e-32554495 > .holder
{
	display: block;
	padding-block: 72px;
}

.e-32554495 > .holder.background-soft
{
	background: var(--ot-bg-2);
}

.e-32554495 > .holder > .inner
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-l);
}

.e-32554495 > .holder > .inner > .grid
{
	display: grid;
	grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
	gap: var(--ot-spacing-m);
	align-items: stretch;
}

.e-32554495 > .holder > .inner > .grid > .skeleton
{
	height: 380px;
	border-radius: var(--ot-radius-m);
	background: var(--ot-bg-2);
	border: 1px solid var(--t3-navy-line);
}

.e-32554495 > .holder > .inner > .action
{
	display: flex;
	justify-content: center;
}

@media screen and (max-width: 1024px)
{
	.e-32554495 > .holder
	{
		padding-block: 56px;
	}

	.e-32554495 > .holder > .inner > .grid
	{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 560px)
{
	.e-32554495 > .holder
	{
		padding-block: 40px;
	}

	.e-32554495 > .holder > .inner
	{
		gap: var(--ot-spacing-m);
	}

	.e-32554495 > .holder > .inner > .grid
	{
		grid-template-columns: minmax(0, 1fr);
	}
}

.e-f60f7ab > .holder
{
	display: block;
	padding-block: 72px;
}

.e-f60f7ab > .holder.background-soft { background: var(--ot-bg-2); }
.e-f60f7ab > .holder.background-sand { background: var(--ot-orange-opacity); }
.e-f60f7ab > .holder.background-sky  { background: var(--ot-brand-opacity); }

.e-f60f7ab > .holder > .inner
{
	display: grid;
	grid-template-columns: 340px minmax(0, 1fr);
	gap: var(--ot-spacing-l);
	align-items: start;
}

.e-f60f7ab > .holder > .inner > .intro
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
	min-width: 0;
	padding-top: var(--ot-spacing-s);
}

.e-f60f7ab > .holder > .inner > .intro > .eyebrow
{
	font-family: var(--ot-font-primary);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ot-brand-hover);
}

.e-f60f7ab > .holder > .inner > .intro > .title
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-size: 34px;
	font-weight: 700;
	font-variation-settings: normal;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--ot-text-1);
}

.e-f60f7ab > .holder > .inner > .intro > .title em
{
	font-style: normal;
	font-weight: 800;
	font-variation-settings: normal;
	color: var(--ot-orange);
}

.e-f60f7ab > .holder > .inner > .intro > .lead
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.45;
	color: var(--ot-text-1);
}

.e-f60f7ab > .holder > .inner > .intro > .description
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-size: 15px;
	line-height: 1.7;
	color: var(--ot-text-2);
}

.e-f60f7ab > .holder > .inner > .intro > .action
{
	margin-top: 4px;
}

.e-f60f7ab > .holder > .inner > .stage
{
	min-width: 0;
}

.e-f60f7ab > .holder > .inner > .stage > .skeletons
{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--ot-spacing-m);
}

.e-f60f7ab > .holder > .inner > .stage > .skeletons > .skeleton
{
	height: 420px;
	border-radius: var(--ot-radius-l);
	background: var(--ot-bg-3);
}

@media screen and (max-width: 1024px)
{
	.e-f60f7ab > .holder
	{
		padding-block: 56px;
	}

	.e-f60f7ab > .holder > .inner
	{
		grid-template-columns: minmax(0, 1fr);
		gap: var(--ot-spacing-m);
	}

	.e-f60f7ab > .holder > .inner > .stage > .skeletons
	{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 560px)
{
	.e-f60f7ab > .holder
	{
		padding-block: 40px;
	}

	.e-f60f7ab > .holder > .inner > .intro > .title
	{
		font-size: 28px;
	}

	.e-f60f7ab > .holder > .inner > .stage > .skeletons
	{
		grid-template-columns: minmax(0, 1fr);
	}
}

.e-327fe3dc > .holder
{
	display: block;
	padding-block: 64px;
	background: var(--ot-bg-1);
}

.e-327fe3dc > .holder.background-soft
{
	background: var(--ot-bg-2);
}

.e-327fe3dc > .holder > .inner
{
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	align-items: center;
	gap: 56px;
}

.e-327fe3dc > .holder.side-right > .inner > .intro
{
	order: 2;
}

.e-327fe3dc > .holder > .inner > .intro
{
	display: flex;
	flex-direction: column;
	gap: 26px;
	align-items: flex-start;
}

.e-327fe3dc > .holder > .inner > .stage
{
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 0;
}

.e-327fe3dc > .holder > .inner > .stage > .viewport
{
	overflow: hidden;
	min-width: 0;
}

.e-327fe3dc > .holder > .inner > .stage > .viewport > .skeletons
{
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.e-327fe3dc > .holder > .inner > .stage > .viewport > .skeletons > .skeleton
{
	aspect-ratio: 3/4;
	border-radius: 18px;
	background: linear-gradient(100deg, var(--ot-bg-2) 30%, var(--ot-bg-3) 50%, var(--ot-bg-2) 70%);
	background-size: 300% 100%;
	animation: e327fe3dc-shimmer 1.6s ease-in-out infinite;
}

@keyframes e327fe3dc-shimmer
{
	0%   { background-position: 100% 0; }
	100% { background-position: 0 0; }
}

.e-327fe3dc > .holder > .inner > .stage > .viewport > .track
{
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - (var(--per) - 1) * var(--gap, 14px)) / var(--per));
	gap: var(--gap, 14px);
	transition: transform var(--ot-transition-slow);
}

.e-327fe3dc > .holder > .inner > .stage > .viewport > .track.is-auto
{
	transition: none;
	animation: e327fe3dc-drift var(--cycle, 40s) linear infinite;
	will-change: transform;
}

.e-327fe3dc > .holder > .inner > .stage > .viewport > .track.is-auto:hover,
.e-327fe3dc > .holder > .inner > .stage > .viewport > .track.is-auto:focus-within
{
	animation-play-state: paused;
}

@keyframes e327fe3dc-drift
{
	0%   { transform: translateX(0); }
	100% { transform: translateX(calc(-1 * var(--count) * (100% + var(--gap, 14px)) / var(--per))); }
}

@media (prefers-reduced-motion: reduce)
{
	.e-327fe3dc > .holder > .inner > .stage > .viewport > .track.is-auto
	{
		animation: none;
	}
}

.e-327fe3dc > .holder > .inner > .stage > .viewport > .track > .cell
{
	position: relative;
	display: block;
	aspect-ratio: 3/4;
	border-radius: 18px;
	overflow: hidden;
	background: var(--ot-bg-3);
	min-width: 0;
}

.e-327fe3dc > .holder > .inner > .stage > .viewport > .track > .cell > .cell-image
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--ot-transition-slow);
}

.e-327fe3dc > .holder > .inner > .stage > .viewport > .track > .cell:hover > .cell-image
{
	transform: scale(1.06);
}

.e-327fe3dc > .holder > .inner > .stage > .viewport > .track > .cell > .cell-placeholder
{
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(150deg, var(--ot-bg-3) 0%, var(--ot-bg-4) 100%);
	font-size: 56px;
	font-variation-settings: 'FILL' 1, 'opsz' 48, 'wght' 300;
	color: var(--ot-text-3);
}

.e-327fe3dc > .holder > .inner > .stage > .viewport > .track > .cell > .cell-shade
{
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(14, 14, 18, 0.82) 0%, rgba(14, 14, 18, 0.2) 46%, rgba(14, 14, 18, 0) 72%);
}

.e-327fe3dc > .holder > .inner > .stage > .viewport > .track > .cell > .cell-text
{
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 14px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.e-327fe3dc > .holder > .inner > .stage > .viewport > .track > .cell > .cell-text > .cell-name
{
	font-family: var(--ot-font-primary);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--ot-bg-1);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.e-327fe3dc > .holder > .inner > .stage > .viewport > .track > .cell > .cell-text > .cell-note
{
	font-family: var(--ot-font-primary);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.3;
	color: rgba(255, 255, 255, 0.78);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.e-327fe3dc > .holder > .inner > .stage > .viewport > .track > .cell > .cell-badge
{
	position: absolute;
	top: 12px;
	left: 12px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	height: 26px;
	padding-inline: 9px;
	border-radius: 999px;
	background: var(--ot-orange);
	font-family: var(--ot-font-primary);
	font-size: 12px;
	font-weight: 700;
	color: var(--ot-text-1);
}

.e-327fe3dc > .holder > .inner > .stage > .viewport > .track > .cell > .cell-badge > .cell-badge-icon
{
	font-size: 14px;
	font-variation-settings: 'FILL' 1, 'opsz' 24, 'wght' 500;
}

.e-327fe3dc > .holder > .inner > .stage > .controls
{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

.e-327fe3dc > .holder > .inner > .stage > .controls > .control
{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 40px;
	padding-inline: 16px;
	border-radius: 999px;
	border: 1px solid var(--t3-navy-line);
	background: var(--ot-bg-1);
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 700;
	color: var(--t3-navy);
	cursor: pointer;
	transition: background-color var(--ot-transition), color var(--ot-transition), border-color var(--ot-transition), opacity var(--ot-transition);
}

.e-327fe3dc > .holder > .inner > .stage > .controls > .control:hover
{
	background: var(--t3-navy);
	border-color: var(--t3-navy);
	color: rgb(255, 255, 255);
}

.e-327fe3dc > .holder > .inner > .stage > .controls > .control:disabled
{
	opacity: 0.4;
	cursor: default;
}

.e-327fe3dc > .holder > .inner > .stage > .controls > .control:disabled:hover
{
	background: var(--ot-bg-1);
	border-color: var(--ot-bg-2-border);
	color: var(--ot-text-2);
}

.e-327fe3dc > .holder > .inner > .stage > .controls > .control > .control-icon
{
	font-size: 18px;
}

.e-327fe3dc > .holder.background-navy
{
	background: var(--t3-navy);
}

.e-327fe3dc > .holder.variant-circles > .inner
{
	grid-template-columns: minmax(0, 1fr);
	gap: 34px;
}

.e-327fe3dc > .holder.variant-circles > .inner > .intro
{
	align-items: center;
	gap: 18px;
}

.e-327fe3dc > .holder.variant-circles > .inner > .stage
{
	position: relative;
	gap: 0;
}

.e-327fe3dc > .holder.variant-circles > .inner > .stage > .viewport > .skeletons
{
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 24px;
}

.e-327fe3dc > .holder.variant-circles > .inner > .stage > .viewport > .skeletons > .skeleton
{
	aspect-ratio: 1;
	border-radius: 50%;
}

.e-327fe3dc > .holder.variant-circles > .inner > .stage > .viewport > .track > .cell
{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	aspect-ratio: auto;
	overflow: visible;
	border-radius: 0;
	background: none;
}

.e-327fe3dc > .holder.variant-circles > .inner > .stage > .viewport > .track > .cell > .cell-image,
.e-327fe3dc > .holder.variant-circles > .inner > .stage > .viewport > .track > .cell > .cell-placeholder
{
	position: relative;
	inset: auto;
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	border-radius: 50%;
	border: 3px solid var(--t3-light-line-strong);
	background: var(--ot-bg-3);
	transition: transform var(--ot-transition), border-color var(--ot-transition);
}

.e-327fe3dc > .holder.variant-circles > .inner > .stage > .viewport > .track > .cell:hover > .cell-image,
.e-327fe3dc > .holder.variant-circles > .inner > .stage > .viewport > .track > .cell:hover > .cell-placeholder
{
	transform: translateY(-4px);
	border-color: var(--ot-orange);
}

.e-327fe3dc > .holder.variant-circles > .inner > .stage > .viewport > .track > .cell > .cell-shade
{
	display: none;
}

.e-327fe3dc > .holder.variant-circles > .inner > .stage > .viewport > .track > .cell > .cell-text
{
	position: relative;
	left: auto;
	right: auto;
	bottom: auto;
	align-items: center;
	gap: 3px;
	width: 100%;
	text-align: center;
}

.e-327fe3dc > .holder.variant-circles > .inner > .stage > .viewport > .track > .cell > .cell-text > .cell-name
{
	font-size: 17px;
	font-weight: 800;
}

.e-327fe3dc > .holder.variant-circles > .inner > .stage > .viewport > .track > .cell > .cell-text > .cell-note
{
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--t3-light-text-soft);
}

.e-327fe3dc > .holder.variant-circles > .inner > .stage > .viewport > .track > .cell > .cell-badge
{
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	bottom: auto;
	align-self: center;
	justify-content: center;
	height: 32px;
	padding-inline: 20px;
	font-size: 13px;
	transform: skewX(var(--t3-skew));
	border-radius: 0;
}

.e-327fe3dc > .holder.variant-circles > .inner > .stage > .viewport > .track > .cell > .cell-badge > .cell-badge-icon,
.e-327fe3dc > .holder.variant-circles > .inner > .stage > .viewport > .track > .cell > .cell-badge > .cell-badge-text
{
	transform: skewX(var(--t3-skew-back));
}

.e-327fe3dc > .holder.variant-circles > .inner > .stage > .viewport > .track > .cell > .cell-badge > .cell-badge-icon
{
	font-size: 16px;
}

.e-327fe3dc > .holder.variant-circles > .inner > .stage > .controls
{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	justify-content: space-between;
	pointer-events: none;
}

.e-327fe3dc > .holder.variant-circles > .inner > .stage > .controls > .control
{
	width: 44px;
	height: 44px;
	padding-inline: 0;
	justify-content: center;
	border-radius: 999px;
	pointer-events: auto;
	margin-top: calc((100% - (var(--per) - 1) * var(--gap)) / var(--per) / 2 - 22px);
	background: var(--t3-light-line);
	border-color: var(--t3-light-line-strong);
	color: rgb(255, 255, 255);
	backdrop-filter: blur(6px);
}

.e-327fe3dc > .holder.variant-circles > .inner > .stage > .controls > .control:hover
{
	background: var(--ot-orange);
	border-color: var(--ot-orange);
	color: var(--ot-text-1);
}

.e-327fe3dc > .holder.variant-circles > .inner > .stage > .controls > .control:disabled:hover
{
	background: var(--t3-light-line);
	border-color: var(--t3-light-line-strong);
	color: rgb(255, 255, 255);
}

.e-327fe3dc > .holder.variant-circles > .inner > .stage > .controls > .control > .control-label
{
	display: none;
}

@media screen and (max-width: 1024px)
{
	.e-327fe3dc > .holder
	{
		padding-block: 48px;
	}

	.e-327fe3dc > .holder > .inner
	{
		grid-template-columns: minmax(0, 1fr);
		gap: 30px;
	}

	.e-327fe3dc > .holder.variant-circles > .inner > .stage > .viewport > .skeletons
	{
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.e-327fe3dc > .holder.side-right > .inner > .intro
	{
		order: 0;
	}

	.e-327fe3dc > .holder > .inner > .stage > .viewport > .skeletons
	{
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media screen and (max-width: 768px)
{
	.e-327fe3dc > .holder > .inner > .stage > .viewport > .skeletons
	{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.e-327fe3dc > .holder.variant-circles > .inner > .stage > .viewport > .skeletons
	{
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media screen and (max-width: 560px)
{
	.e-327fe3dc > .holder
	{
		padding-block: 34px;
	}

	.e-327fe3dc > .holder.variant-circles > .inner > .stage > .viewport > .skeletons
	{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.e-327fe3dc > .holder.variant-circles > .inner > .stage > .viewport > .track > .cell > .cell-text > .cell-name
	{
		font-size: 15px;
	}

	.e-327fe3dc > .holder.variant-circles > .inner > .stage > .controls > .control
	{
		width: 38px;
		height: 38px;
		margin-top: calc((100% - (var(--per) - 1) * var(--gap)) / var(--per) / 2 - 19px);
	}
}

.e-32818d61 > .holder
{
	display: block;
	padding-block: 56px;
	background: var(--ot-bg-1);
}

.e-32818d61 > .holder.background-soft
{
	background: var(--ot-bg-2);
}

.e-32818d61 > .holder.is-overlap
{
	padding-top: 0;
	margin-top: -40px;
	background: transparent;
	position: relative;
	z-index: 5;
}

.e-32818d61 > .holder > .inner > .grid
{
	display: grid;
	grid-template-columns: repeat(var(--columns, 4), minmax(0, 1fr));
	gap: 20px;
}

.e-32818d61 > .holder > .inner > .grid > .item
{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 26px 18px;
	text-align: center;
	background: var(--ot-bg-1);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: 18px;
	transition: transform var(--ot-transition), box-shadow var(--ot-transition), border-color var(--ot-transition);
}

.e-32818d61 > .holder > .inner > .grid > .item:hover
{
	transform: translateY(-4px);
	box-shadow: 0 18px 34px -20px rgba(14, 14, 18, 0.4);
	border-color: transparent;
}

.e-32818d61 > .holder > .inner > .grid > .item > .item-icon-wrap
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: var(--ot-brand-opacity);
	color: var(--ot-brand);
	flex: 0 0 auto;
}

.e-32818d61 > .holder > .inner > .grid > .item > .item-icon-wrap > .item-icon
{
	font-size: 23px;
}

.e-32818d61 > .holder > .inner > .grid > .item > .item-value
{
	font-family: var(--ot-font-primary);
	font-size: 26px;
	font-weight: 800;
	font-variation-settings: normal;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: var(--ot-orange);
	font-feature-settings: 'tnum';
}

.e-32818d61 > .holder > .inner > .grid > .item > .item-label
{
	font-family: var(--ot-font-primary);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--ot-text-1);
}

@media screen and (max-width: 1024px)
{
	.e-32818d61 > .holder
	{
		padding-block: 44px;
	}

	.e-32818d61 > .holder > .inner > .grid
	{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.e-32818d61 > .holder.is-overlap
	{
		margin-top: -24px;
		padding-top: 0;
	}
}

@media screen and (max-width: 560px)
{
	.e-32818d61 > .holder
	{
		padding-block: 32px;
	}

	.e-32818d61 > .holder > .inner > .grid
	{
		grid-template-columns: minmax(0, 1fr);
		gap: 12px;
	}

	.e-32818d61 > .holder > .inner > .grid > .item
	{
		flex-direction: row;
		align-items: center;
		text-align: left;
		padding: 18px;
		gap: 14px;
	}

	.e-32818d61 > .holder > .inner > .grid > .item > .item-value
	{
		font-size: 22px;
	}
}

.e-3281cbda > .holder
{
	display: block;
	padding-block: 56px;
	background: var(--ot-bg-1);
}

.e-3281cbda > .holder.background-soft
{
	background: var(--ot-bg-2);
}

.e-3281cbda > .holder > .inner > .head
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 22px;
}

.e-3281cbda > .holder > .inner > .head > .title
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-size: 24px;
	font-weight: 700;
	font-variation-settings: normal;
	letter-spacing: -0.03em;
	line-height: 1.2;
	color: var(--ot-text-1);
}

.e-3281cbda > .holder > .inner > .head > .title em
{
	font-style: normal;
	color: var(--ot-orange);
}

.e-3281cbda > .holder > .inner > .head > .head-right
{
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 0 0 auto;
}

.e-3281cbda > .holder > .inner > .head > .head-right > .action
{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 600;
	color: var(--ot-brand-hover);
	white-space: nowrap;
}

.e-3281cbda > .holder > .inner > .head > .head-right > .action > .action-icon
{
	font-size: 17px;
	transition: transform var(--ot-transition);
}

.e-3281cbda > .holder > .inner > .head > .head-right > .action:hover > .action-icon
{
	transform: translateX(3px);
}

.e-3281cbda > .holder > .inner > .head > .head-right > .arrows
{
	display: flex;
	align-items: center;
	gap: 8px;
}

.e-3281cbda > .holder > .inner > .head > .head-right > .arrows > .arrow
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--ot-bg-2-border);
	background: var(--ot-bg-1);
	color: var(--ot-text-1);
	cursor: pointer;
	transition: background-color var(--ot-transition), color var(--ot-transition), border-color var(--ot-transition);
}

.e-3281cbda > .holder > .inner > .head > .head-right > .arrows > .arrow:hover
{
	background: var(--ot-brand);
	border-color: var(--ot-brand);
	color: var(--ot-bg-1);
}

.e-3281cbda > .holder > .inner > .head > .head-right > .arrows > .arrow > .arrow-icon
{
	font-size: 18px;
}

.e-3281cbda > .holder > .inner > .track
{
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(220px, 1fr);
	gap: 16px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	padding-bottom: 6px;
}

.e-3281cbda > .holder > .inner > .track > .skeleton
{
	height: 260px;
	border-radius: 18px;
	background: linear-gradient(100deg, var(--ot-bg-2) 30%, var(--ot-bg-3) 50%, var(--ot-bg-2) 70%);
	background-size: 300% 100%;
	animation: e3281cbda-shimmer 1.6s ease-in-out infinite;
}

@keyframes e3281cbda-shimmer
{
	0%   { background-position: 100% 0; }
	100% { background-position: 0 0; }
}

.e-3281cbda > .holder > .inner > .track > .cell
{
	display: flex;
	flex-direction: column;
	gap: 10px;
	scroll-snap-align: start;
	min-width: 0;
}

.e-3281cbda > .holder > .inner > .track > .cell > .cell-cover
{
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 4/5;
	border-radius: 18px;
	overflow: hidden;
	background: var(--ot-bg-2);
}

.e-3281cbda > .holder > .inner > .track > .cell > .cell-cover > .cell-image
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--ot-transition-slow);
}

.e-3281cbda > .holder > .inner > .track > .cell:hover > .cell-cover > .cell-image
{
	transform: scale(1.06);
}

.e-3281cbda > .holder > .inner > .track > .cell > .cell-cover > .cell-placeholder
{
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: var(--ot-bg-4);
}

.e-3281cbda > .holder > .inner > .track > .cell > .cell-cover > .cell-badge
{
	position: absolute;
	top: 10px;
	left: 10px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	height: 26px;
	padding-inline: 9px;
	border-radius: 999px;
	background: var(--ot-bg-1);
	font-family: var(--ot-font-primary);
	font-size: 12px;
	font-weight: 700;
	color: var(--ot-text-1);
	box-shadow: var(--ot-shadow-s);
}

.e-3281cbda > .holder > .inner > .track > .cell > .cell-cover > .cell-badge > .cell-badge-icon
{
	font-size: 14px;
	color: var(--ot-orange);
	font-variation-settings: 'FILL' 1, 'opsz' 24, 'wght' 500;
}

.e-3281cbda > .holder > .inner > .track > .cell > .cell-body
{
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.e-3281cbda > .holder > .inner > .track > .cell > .cell-body > .cell-name
{
	font-family: var(--ot-font-primary);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--ot-text-1);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color var(--ot-transition);
}

.e-3281cbda > .holder > .inner > .track > .cell:hover > .cell-body > .cell-name
{
	color: var(--ot-brand-hover);
}

.e-3281cbda > .holder > .inner > .track > .cell > .cell-body > .cell-location
{
	font-family: var(--ot-font-primary);
	font-size: 12px;
	color: var(--ot-text-3);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.e-3281cbda > .holder > .inner > .empty
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-size: 14px;
	color: var(--ot-text-3);
}

@media screen and (max-width: 1024px)
{
	.e-3281cbda > .holder
	{
		padding-block: 44px;
	}

	.e-3281cbda > .holder > .inner > .track
	{
		grid-auto-columns: minmax(190px, 1fr);
	}
}

@media screen and (max-width: 768px)
{
	.e-3281cbda > .holder > .inner > .head > .head-right > .arrows
	{
		display: none;
	}

	.e-3281cbda > .holder > .inner > .head > .title
	{
		font-size: 21px;
	}
}

@media screen and (max-width: 560px)
{
	.e-3281cbda > .holder
	{
		padding-block: 32px;
	}

	.e-3281cbda > .holder > .inner > .track
	{
		grid-auto-columns: minmax(158px, 1fr);
		gap: 12px;
	}
}

.e-1ecaba88 > .holder
{
	display: block;
}

.e-1ecaba88 > .holder > .bar
{
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 50;
	display: flex;
	align-items: stretch;
	height: var(--ot-ticker-height);
	overflow: hidden;
	border-top: 1px solid var(--ot-orange);
	box-shadow: var(--ot-shadow-l);
}

.e-1ecaba88 > .holder.tone-dark > .bar { background: var(--t3-navy-deep); }
.e-1ecaba88 > .holder.tone-brand > .bar { background: var(--t3-navy); border-top-color: var(--ot-orange); }
.e-1ecaba88 > .holder.tone-accent > .bar { background: var(--ot-orange); border-top-color: var(--t3-navy); }

.e-1ecaba88 > .holder > .bar > .label
{
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	height: 100%;
	padding: 0 var(--ot-spacing-m);
	background: var(--ot-orange);
	color: var(--ot-text-1);
	font-family: var(--ot-font-primary);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	white-space: nowrap;
}

.e-1ecaba88 > .holder.tone-brand > .bar > .label,
.e-1ecaba88 > .holder.tone-accent > .bar > .label
{
	background: var(--t3-navy-deep);
	color: rgb(255, 255, 255);
}

.e-1ecaba88 > .holder > .bar > .viewport
{
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	height: 100%;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 3%, #000 94%, transparent);
}

.e-1ecaba88 > .holder > .bar > .viewport > .track
{
	display: flex;
	align-items: center;
	width: max-content;
	height: 100%;
	gap: 32px;
	padding-left: 32px;
	animation-name: e1ecaba88-ticker;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.e-1ecaba88 > .holder > .bar > .viewport > .track.is-static
{
	animation-name: none;
}

.e-1ecaba88 > .holder > .bar:hover > .viewport > .track
{
	animation-play-state: paused;
}

.e-1ecaba88 > .holder > .bar > .viewport > .track > .item
{
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 8px;
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 600;
	color: var(--t3-light-text);
	white-space: nowrap;
	transition: color var(--ot-transition);
}

.e-1ecaba88 > .holder > .bar > .viewport > .track > .item:hover
{
	color: var(--ot-orange);
}

.e-1ecaba88 > .holder.tone-accent > .bar > .viewport > .track > .item:hover
{
	color: var(--ot-text-1);
}

.e-1ecaba88 > .holder > .bar > .viewport > .track > .item > .item-icon
{
	flex: 0 0 auto;
	font-size: 17px;
	color: var(--ot-orange);
}

.e-1ecaba88 > .holder.tone-brand > .bar > .viewport > .track > .item > .item-icon,
.e-1ecaba88 > .holder.tone-accent > .bar > .viewport > .track > .item > .item-icon
{
	color: var(--ot-bg-1);
}

.e-1ecaba88 > .holder > .bar > .viewport > .track > .item > .item-label
{
	white-space: nowrap;
}

.e-1ecaba88 > .holder > .bar > .viewport > .track > .item::after
{
	content: '';
	display: block;
	flex: 0 0 auto;
	width: 5px;
	height: 5px;
	border-radius: 0;
	transform: skewX(var(--t3-skew));
	background: var(--ot-orange);
	opacity: 0.65;
}

.e-1ecaba88 > .holder.tone-brand > .bar > .viewport > .track > .item::after,
.e-1ecaba88 > .holder.tone-accent > .bar > .viewport > .track > .item::after
{
	background: var(--ot-bg-1);
}

@keyframes e1ecaba88-ticker
{
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@media screen and (max-width: 560px)
{
	.e-1ecaba88 > .holder > .bar > .label
	{
		padding: 0 var(--ot-spacing-s);
		font-size: 11px;
		letter-spacing: 0.08em;
	}

	.e-1ecaba88 > .holder > .bar > .viewport > .track > .item
	{
		font-size: 12px;
	}
}

@media (prefers-reduced-motion: reduce)
{
	.e-1ecaba88 > .holder > .bar > .viewport
	{
		overflow-x: auto;
	}

	.e-1ecaba88 > .holder > .bar > .viewport > .track
	{
		animation-name: none;
	}
}

.e-3a8cd443 > .holder
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ot-spacing-m);
	flex-wrap: wrap;
	padding-bottom: var(--ot-spacing-m);
	border-bottom: 1px solid var(--t3-navy-line);
}

.e-3a8cd443 > .holder > .left
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-m);
	min-width: 0;
}

.e-3a8cd443 > .holder > .left > .filters-trigger
{
	display: none;
	align-items: center;
	gap: 6px;
	padding: 10px 16px;
	border: 1px solid var(--t3-navy-line);
	border-radius: 100px;
	font-family: var(--ot-font-primary);
	font-size: 14px;
	font-weight: 700;
	color: var(--t3-navy);
}

.e-3a8cd443 > .holder > .left > .filters-trigger > .filters-icon
{
	font-size: 18px;
	color: var(--ot-orange);
}

.e-3a8cd443 > .holder > .left > .count
{
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	min-width: 0;
}

.e-3a8cd443 > .holder > .left > .count > .count-value
{
	font-family: var(--ot-font-primary);
	font-size: 26px;
	font-weight: 800;
	font-variation-settings: normal;
	letter-spacing: -0.02em;
	color: var(--t3-navy);
}

.e-3a8cd443 > .holder > .left > .count > .count-unit
{
	font-family: var(--ot-font-primary);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ot-text-3);
}

.e-3a8cd443 > .holder > .right
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-m);
	flex-wrap: wrap;
}

.e-3a8cd443 > .holder > .right > .sorts,
.e-3a8cd443 > .holder > .right > .pers
{
	display: flex;
	align-items: center;
	gap: 4px;
	flex-wrap: wrap;
}

.e-3a8cd443 > .holder > .right > .sorts > .sorts-label,
.e-3a8cd443 > .holder > .right > .pers > .pers-label
{
	font-family: var(--ot-font-primary);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ot-text-3);
	margin-right: 4px;
}

.e-3a8cd443 > .holder > .right > .sorts > .sort-option
{
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 8px 14px;
	border-radius: 100px;
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 600;
	color: var(--ot-text-2);
	transition: background-color var(--ot-transition), color var(--ot-transition);
}

.e-3a8cd443 > .holder > .right > .sorts > .sort-option > .sort-icon
{
	font-size: 16px;
}

.e-3a8cd443 > .holder > .right > .sorts > .sort-option:hover
{
	background: var(--t3-sky);
	color: var(--t3-navy);
}

.e-3a8cd443 > .holder > .right > .sorts > .sort-option.is-active
{
	background: var(--t3-navy);
	color: rgb(255, 255, 255);
	font-weight: 700;
}

.e-3a8cd443 > .holder > .right > .pers > .per-option
{
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 32px;
	border-radius: var(--ot-radius-s);
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 600;
	color: var(--ot-text-2);
	transition: background-color var(--ot-transition), color var(--ot-transition);
}

.e-3a8cd443 > .holder > .right > .pers > .per-option:hover
{
	background: var(--t3-sky);
	color: var(--t3-navy);
}

.e-3a8cd443 > .holder > .right > .pers > .per-option.is-active
{
	background: var(--t3-navy);
	color: rgb(255, 255, 255);
}

@media screen and (max-width: 1024px)
{
	.e-3a8cd443 > .holder > .left > .filters-trigger
	{
		display: inline-flex;
	}

	.e-3a8cd443 > .holder > .right > .pers
	{
		display: none;
	}
}

@media screen and (max-width: 560px)
{
	.e-3a8cd443 > .holder > .right > .sorts > .sorts-label
	{
		display: none;
	}
}

.e-1f250e1c > .holder
{
	display: block;
	width: 100%;
	background: var(--ot-bg-1);
	border-bottom: 1px solid var(--t3-navy-line);
}

.e-1f250e1c > .holder > .accent
{
	height: 3px;
	width: 100%;
	background: var(--t3-navy);
}

.e-1f250e1c > .holder > .inner
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ot-spacing-m);
	height: 42px;
}

.e-1f250e1c > .holder > .inner > .left,
.e-1f250e1c > .holder > .inner > .right
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-m);
	min-width: 0;
}

.e-1f250e1c > .holder > .inner > .left > .item,
.e-1f250e1c > .holder > .inner > .right > .item
{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
	font-family: var(--ot-font-primary);
	font-size: 13px;
	font-weight: 500;
	color: var(--ot-text-2);
	white-space: nowrap;
	transition: color var(--ot-transition);
}

.e-1f250e1c > .holder > .inner > .left > .item:first-child
{
	font-weight: 700;
	color: var(--t3-navy);
}

.e-1f250e1c > .holder > .inner > .left > .item:hover,
.e-1f250e1c > .holder > .inner > .right > .item:hover
{
	color: var(--ot-orange-hover);
}

.e-1f250e1c > .holder > .inner > .left > .item > .item-icon,
.e-1f250e1c > .holder > .inner > .right > .item > .item-icon
{
	font-size: 17px;
	color: var(--ot-text-3);
	flex: 0 0 auto;
	transition: color var(--ot-transition);
}

.e-1f250e1c > .holder > .inner > .left > .item:hover > .item-icon,
.e-1f250e1c > .holder > .inner > .right > .item:hover > .item-icon
{
	color: var(--ot-orange-hover);
}

.e-1f250e1c > .holder > .inner > .left > .item > .item-label,
.e-1f250e1c > .holder > .inner > .right > .item > .item-label
{
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media screen and (max-width: 1024px)
{
	.e-1f250e1c > .holder > .inner
	{
		height: 38px;
		gap: var(--ot-spacing-s);
	}

	.e-1f250e1c > .holder > .inner > .left,
	.e-1f250e1c > .holder > .inner > .right
	{
		gap: var(--ot-spacing-s);
	}

	.e-1f250e1c > .holder > .inner > .left > .item > .item-label,
	.e-1f250e1c > .holder > .inner > .right > .item > .item-label
	{
		display: none;
	}

	.e-1f250e1c > .holder > .inner > .left > .item > .item-icon,
	.e-1f250e1c > .holder > .inner > .right > .item > .item-icon
	{
		font-size: 19px;
	}
}

@media screen and (max-width: 768px)
{
	.e-1f250e1c > .holder > .inner > .right
	{
		display: none;
	}
}

.e-328da9dd > .holder
{
	display: block;
	padding-block: 72px;
}

.e-328da9dd > .holder.background-soft
{
	background: var(--ot-bg-2);
}

.e-328da9dd > .holder.background-brand
{
	background: var(--t3-sky);
}

.e-328da9dd > .holder > .inner
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-l);
}

.e-328da9dd > .holder > .inner > .grid
{
	display: grid;
	grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
	gap: var(--ot-spacing-m);
	align-items: stretch;
}

.e-328da9dd > .holder > .inner > .grid > .skeleton
{
	height: 380px;
	border-radius: var(--ot-radius-m);
	background: var(--ot-bg-2);
	border: 1px solid var(--t3-navy-line);
}

.e-328da9dd > .holder > .inner > .empty
{
	margin: 0;
	font-family: var(--ot-font-primary);
	font-size: 15px;
	color: var(--ot-text-3);
}

.e-328da9dd > .holder > .inner > .action
{
	display: flex;
	justify-content: center;
}

@media screen and (max-width: 1200px)
{
	.e-328da9dd > .holder > .inner > .grid
	{
		grid-template-columns: repeat(min(var(--columns), 3), minmax(0, 1fr));
	}
}

@media screen and (max-width: 1024px)
{
	.e-328da9dd > .holder
	{
		padding-block: 56px;
	}

	.e-328da9dd > .holder > .inner > .grid
	{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 560px)
{
	.e-328da9dd > .holder
	{
		padding-block: 40px;
	}

	.e-328da9dd > .holder > .inner
	{
		gap: var(--ot-spacing-m);
	}

	.e-328da9dd > .holder > .inner > .grid
	{
		grid-template-columns: minmax(0, 1fr);
	}
}
.e-59ffb03
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.e-59ffb03 .social-icon
{
	display: block;
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.e-59ffb03 .social-icon.size-s
{
	width: 15px;
	height: 15px;
}

.e-59ffb03 .social-icon.size-l
{
	width: 22px;
	height: 22px;
}

.e-59ffb03 .social-icon.fallback
{
	font-family: 'Material Symbols Rounded';
	font-style: normal;
	font-size: 18px;
}
.e-49a5f2a5
{
	display: block;
	width: 100%;
	min-height: 100vh;
}

.e-49a5f2a5 > .split
{
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	min-height: 100vh;
	width: 100%;
}

/* ===== SHOWCASE ===== */

.e-49a5f2a5 > .split > .showcase
{
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	padding: var(--ot-spacing-l);
	background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1800&q=80');
	background-size: cover;
	background-position: center;
}

.e-49a5f2a5 > .split > .showcase > .overlay
{
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20, 20, 30, 0.15) 0%, rgba(20, 20, 30, 0.72) 100%);
	pointer-events: none;
}

.e-49a5f2a5 > .split > .showcase > .content
{
	position: relative;
	padding: 48px;
	color: white;
	max-width: 600px;
}

.e-49a5f2a5 > .split > .showcase > .content > .brand
{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 6px 14px 6px 12px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.20);
	border-radius: 100px;
	margin-bottom: var(--ot-spacing-l);
	backdrop-filter: blur(12px);
}

.e-49a5f2a5 > .split > .showcase > .content > .brand > i
{
	font-family: 'Material Symbols Rounded';
	font-size: 18px;
	color: white;
}

.e-49a5f2a5 > .split > .showcase > .content > .brand > span
{
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: white;
}

.e-49a5f2a5 > .split > .showcase > .content > h2
{
	font-family: var(--ot-font-secondary);
	font-size: 52px;
	font-weight: 400;
	line-height: 1.02;
	letter-spacing: -0.025em;
	color: white;
	margin: 0 0 var(--ot-spacing-m);
	font-variation-settings: 'opsz' 144;
}

.e-49a5f2a5 > .split > .showcase > .content > h2 em
{
	font-style: italic;
	color: white;
	opacity: 0.92;
}

.e-49a5f2a5 > .split > .showcase > .content > p
{
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	max-width: 460px;
	margin: 0;
}

/* ===== FORM ===== */

.e-49a5f2a5 > .split > .form
{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--ot-spacing-l);
	background: var(--ot-bg-1);
}

.e-49a5f2a5 > .split > .form > .holder
{
	width: 100%;
	max-width: 380px;
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-m);
}

.e-49a5f2a5 > .split > .form > .holder > .header > h1
{
	font-family: var(--ot-font-secondary);
	font-size: 32px;
	font-weight: 400;
	color: var(--ot-text-1);
	margin: 0 0 6px;
	font-variation-settings: 'opsz' 144;
}

.e-49a5f2a5 > .split > .form > .holder > .header > p
{
	font-size: 14px;
	color: var(--ot-text-2);
	margin: 0;
}

.e-49a5f2a5 .auth-field
{
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: var(--ot-spacing-s);
}

.e-49a5f2a5 .auth-field > label
{
	font-size: 12px;
	font-weight: 600;
	color: var(--ot-text-2);
}

.e-49a5f2a5 > .split > .form > .holder > .footer
{
	text-align: center;
	padding-top: var(--ot-spacing-s);
}

.e-49a5f2a5 > .split > .form > .holder > .footer > a
{
	font-size: 13px;
	color: var(--ot-text-2);
	text-decoration: none;
	transition: color var(--ot-transition);
}

.e-49a5f2a5 > .split > .form > .holder > .footer > a:hover
{
	color: var(--ot-brand);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px)
{
	.e-49a5f2a5 > .split
	{
		grid-template-columns: 1fr;
	}

	.e-49a5f2a5 > .split > .showcase
	{
		min-height: 280px;
	}
}
.p-6aaecdd6 .content
{
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - 80px);
	padding: 80px 0;
}
/* ===== FORM NOTICE ===== */

.form-notice
{
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	margin-top: var(--ot-spacing-m);
	border-radius: var(--ot-radius-m);
	font-size: var(--ot-size-m);
	font-weight: 500;
	line-height: 1.4;
}

.form-notice.success
{
	background: var(--ot-green-opacity);
	border: 1px solid var(--ot-green-border);
	color: var(--ot-green);
}

.form-notice.error
{
	background: var(--ot-red-opacity);
	border: 1px solid var(--ot-red-border);
	color: var(--ot-red);
}
/* ===== ATLAS — Mondorama brand ===== */

:root
{
	--ot-spacing-x: 4px;
	--ot-spacing-s: 10px;
	--ot-spacing-m: 20px;
	--ot-spacing-l: 40px;

	--ot-radius-s: 6px;
	--ot-radius-m: 10px;
	--ot-radius-l: 18px;

	--ot-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--ot-font-secondary: 'Fraunces', 'Inter', Georgia, serif;

	/* Pure white surfaces, neutral light borders */

	--ot-bg-1: rgba(255, 255, 255, 1);
	--ot-bg-1-border: rgba(232, 232, 232, 1);
	--ot-bg-1-opacity: rgba(255, 255, 255, 0.94);
	--ot-bg-1-hover: rgba(250, 250, 250, 1);

	--ot-bg-2: rgba(248, 248, 248, 1);
	--ot-bg-2-border: rgba(228, 228, 228, 1);
	--ot-bg-2-opacity: rgba(248, 248, 248, 0.92);
	--ot-bg-2-hover: rgba(243, 243, 243, 1);

	--ot-bg-3: rgba(240, 240, 240, 1);
	--ot-bg-3-border: rgba(218, 218, 218, 1);
	--ot-bg-3-opacity: rgba(240, 240, 240, 0.92);
	--ot-bg-3-hover: rgba(232, 232, 232, 1);

	--ot-bg-4: rgba(228, 228, 228, 1);
	--ot-bg-4-border: rgba(208, 208, 208, 1);
	--ot-bg-4-opacity: rgba(228, 228, 228, 0.92);
	--ot-bg-4-hover: rgba(218, 218, 218, 1);

	--ot-text-1: rgba(18, 18, 20, 1);
	--ot-text-2: rgba(72, 72, 76, 1);
	--ot-text-3: rgba(120, 120, 124, 1);

	/* Mondorama brand red — #ed1c24 */

	--ot-brand: rgba(237, 28, 36, 1);
	--ot-brand-border: rgba(243, 76, 82, 1);
	--ot-brand-opacity: rgba(237, 28, 36, 0.10);
	--ot-brand-hover: rgba(204, 16, 24, 1);

	--ot-shadow-s: 0 1px 3px rgba(0, 0, 0, 0.06);
	--ot-shadow-m: 0 8px 24px -8px rgba(0, 0, 0, 0.10);
	--ot-shadow-l: 0 24px 60px -16px rgba(0, 0, 0, 0.14);

	/* Visina fiksnog kajrona (layout-ticker-1) na dnu ekrana */

	--ot-ticker-height: 38px;
}

/* Rezerviši prostor na dnu skrol kontejnera da fiksni kajron ne prekriva napomene */

.ot-page-area
{
	padding-bottom: var(--ot-ticker-height);
}

body
{
	background: var(--ot-bg-1);
	font-family: var(--ot-font-primary);
	color: var(--ot-text-1);
}

h1, h2, h3, h4, h5, h6
{
	font-family: var(--ot-font-secondary);
	font-weight: 400;
	letter-spacing: -0.025em;
	line-height: 1.05;
	color: var(--ot-text-1);
	font-variation-settings: 'opsz' 144, 'wght' 400;
}

h1 em, h2 em, h3 em, h4 em
{
	font-style: italic;
	font-weight: 400;
	color: var(--ot-brand);
}

a
{
	color: inherit;
	text-decoration: none;
	transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
}