:root {
    --dash-green: #3086FF;
    --dash-green-dark: #0a58ca;
    --dash-ink: #111715;
    --dash-muted: #5f6b66;
    --dash-line: rgba(17, 23, 21, .12);
    --dash-soft: #f5f8f6;
    --dash-blue: #1d5fd1;
    --dash-blue-dark: #0a58ca;
    --dash-blue-bright: #3b8cff;
    --dash-blue-accent: #66a3ff;
    --dash-blue-deep: #084298;
    --dash-blue-gradient: linear-gradient(135deg, var(--dash-blue-bright) 0%, #3086FF 48%, var(--dash-blue-dark) 100%);
    --dash-blue-gradient-hover: linear-gradient(135deg, #247cf5 0%, #0b5ed7 48%, var(--dash-blue-deep) 100%);
    --dash-coral: #3086FF;
    --bs-primary: #3086FF;
    --bs-primary-rgb: 48, 134, 255;
}

.text-primary {
    color: #3086FF !important;
}

.text-dash-blue-accent {
    color: var(--dash-blue-accent) !important;
}

.bg-primary,
.text-bg-primary {
    color: #fff !important;
    background-color: #3086FF !important;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #3086FF;
    --bs-btn-border-color: #3086FF;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0b5ed7;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #3086FF;
    --bs-btn-disabled-border-color: #3086FF;
    background-color: var(--dash-blue);
    background-image: var(--dash-blue-gradient);
    border-color: var(--dash-blue-dark);
    box-shadow: 0 3px 8px rgba(48, 134, 255, .14);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background-color: var(--dash-blue-dark);
    background-image: var(--dash-blue-gradient-hover);
    border-color: var(--dash-blue-deep);
    box-shadow: 0 5px 12px rgba(10, 88, 202, .18);
    transform: translateY(-1px);
}

.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
    background-color: var(--dash-blue-deep);
    background-image: linear-gradient(135deg, var(--dash-blue-dark), var(--dash-blue-deep));
    border-color: var(--dash-blue-deep);
    box-shadow: 0 2px 5px rgba(10, 66, 152, .16);
    transform: translateY(0);
}

.btn-primary:disabled,
.btn-primary.disabled {
    background-image: var(--dash-blue-gradient);
    box-shadow: none;
    transform: none;
}

.btn-outline-primary {
    --bs-btn-color: #3086FF;
    --bs-btn-border-color: #3086FF;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #3086FF;
    --bs-btn-hover-border-color: #3086FF;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #3086FF;
    --bs-btn-active-border-color: #3086FF;
    --bs-btn-disabled-color: #3086FF;
    --bs-btn-disabled-border-color: #3086FF;
    background-color: rgba(255, 255, 255, .92);
    background-image: linear-gradient(135deg, rgba(59, 140, 255, .08), rgba(48, 134, 255, .02));
    box-shadow: 0 2px 5px rgba(48, 134, 255, .05);
    transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus-visible {
    color: #fff;
    background-color: var(--dash-blue-dark);
    background-image: var(--dash-blue-gradient-hover);
    border-color: var(--dash-blue-deep);
    box-shadow: 0 4px 10px rgba(10, 88, 202, .16);
    transform: translateY(-1px);
}

.btn-outline-primary:active,
.btn-outline-primary.active,
.show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--dash-blue-deep);
    background-image: linear-gradient(135deg, var(--dash-blue-dark), var(--dash-blue-deep));
    border-color: var(--dash-blue-deep);
    box-shadow: 0 2px 5px rgba(10, 66, 152, .14);
    transform: translateY(0);
}

.btn-outline-primary:disabled,
.btn-outline-primary.disabled {
    color: var(--dash-blue);
    background-color: transparent;
    background-image: none;
    box-shadow: none;
    transform: none;
}

html,
body {
    width: 100%;
    min-height: 100%;
    overflow-x: clip;
}

body {
    color: var(--dash-ink);
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0;
}

.container {
    max-width: 1480px;
}

main,
section,
.container,
.container-fluid,
.row,
[class*="col-"],
.dash-card,
.dash-panel {
    min-width: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
.lead,
.btn,
.badge,
.dash-title,
.dash-subtitle,
.dash-card,
.dash-panel,
.dash-profile-field {
    overflow-wrap: anywhere;
}

.btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
}

.d-grid > .btn {
    width: auto;
    justify-self: start;
}

.dash-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1030;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--dash-line);
    box-shadow: 0 14px 38px rgba(17, 23, 21, .1);
    backdrop-filter: blur(18px);
    transition: transform .28s ease, opacity .28s ease, box-shadow .25s ease;
}

.dash-header.is-hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.dash-header.event-site-header {
    background: #fff;
    border-bottom: 1px solid var(--dash-line);
    box-shadow: 0 14px 38px rgba(17, 23, 21, .1);
    backdrop-filter: blur(18px);
}

.dash-header.event-site-header .navbar {
    background: #fff;
    backdrop-filter: none;
}

.dash-logo {
    width: 100px;
    max-width: 45vw;
}

.dash-event-nav-logo {
    width: 128px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
}

.dash-event-nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: .08rem;
}

.dash-event-nav-title {
    max-width: 240px;
    color: var(--dash-ink);
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.dash-logo-label {
    align-self: flex-end;
    margin-bottom: .28rem;
    color: transparent;
    background: linear-gradient(135deg, var(--dash-green), var(--dash-green-dark) 58%, var(--dash-ink));
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 1.68rem;
    font-style: italic;
    font-weight: 1000;
    letter-spacing: .065em;
    line-height: 1;
    text-transform: uppercase;
    -webkit-text-stroke: .55px var(--dash-green-dark);
    text-shadow: .45px 0 0 var(--dash-green-dark), 0 .45px 0 var(--dash-green-dark), 0 10px 24px rgba(48, 134, 255, .22);
}

.dash-nav-link {
    color: var(--dash-ink);
    font-weight: 800;
    padding: 1.45rem 1rem;
    position: relative;
}

.dash-nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    height: 3px;
    border-radius: 999px;
    background: var(--dash-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.dash-nav-link:hover::after,
.dash-nav-link:focus-visible::after {
    transform: scaleX(1);
}

.event-site-header .dash-nav-link {
    padding-left: .58rem;
    padding-right: .58rem;
    font-size: .94rem;
}

.event-site-header .dash-nav-link::after {
    left: .58rem;
    right: .58rem;
}

/* Header system adapted from the Dash3 Golf header2 design. */
.dash-header2,
.dash-header2.event-site-header {
    --dash-h2-ink: #071426;
    --dash-h2-blue: #3086FF;
    --dash-h2-accent: #66a3ff;
    color: #fff;
    background: var(--dash-h2-ink);
    border: 0;
    box-shadow: 0 8px 30px rgba(7, 20, 38, .16);
    backdrop-filter: none;
}

.dash-header2.event-site-header .navbar,
.dash-header2 .navbar {
    color: #fff;
    background: var(--dash-h2-ink);
}

.dash-header2-shell {
    width: min(1480px, 100%);
    min-height: 76px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    margin-inline: auto;
    padding: 10px 12px 10px 18px;
}

.dash-header2-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: #fff;
    text-decoration: none;
}

.dash-header2-brand:hover,
.dash-header2-brand:focus-visible {
    color: #fff;
}

.dash-header2-brand-mark {
    width: 52px;
    height: 52px;
    display: inline-flex;
    flex: 0 0 52px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
}

.dash-header2.event-site-header .dash-header2-brand-mark {
    border-color: #fff;
    background: #fff;
}

.dash-header2-brand-mark img {
    width: 43px;
    height: 38px;
    object-fit: contain;
}

.dash-header2-brand-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.dash-header2-brand-copy strong {
    max-width: 260px;
    overflow: hidden;
    color: #fff;
    font-size: 1.18rem;
    font-weight: 850;
    letter-spacing: -.035em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dash-header2-brand-copy strong em {
    color: var(--dash-h2-blue);
    font-style: normal;
}

.dash-header2-brand-copy span {
    margin-top: 6px;
    color: rgba(255, 255, 255, .56);
    font-size: .66rem;
    font-weight: 750;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.dash-header2 .navbar-collapse {
    min-width: 0;
    align-items: center;
}

.dash-header2 .dash-header2-search {
    flex: 1 1 340px;
    width: min(390px, 31vw);
    max-width: 390px;
    min-width: 290px;
    margin: 0 12px 0 20px;
    border-color: rgba(255, 255, 255, .16);
    box-shadow: none;
}

.dash-header2 .dash-header2-search .dash-search-input {
    min-height: 42px;
    font-size: .85rem;
}

.dash-header2-nav {
    gap: 2px;
}

.dash-header2 .dash-nav-link,
.dash-header2.event-site-header .dash-nav-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, .78);
    font-size: .92rem;
    font-weight: 750;
    line-height: 1;
    white-space: nowrap;
    transition: color .18s ease, background-color .18s ease;
}

.dash-header2 .dash-nav-link::after {
    display: none;
}

.dash-header2 .dash-nav-link:hover,
.dash-header2 .dash-nav-link:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, .09);
}

.dash-header2-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-left: auto;
}

.dash-header2-action-link,
.dash-header2-action-primary {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.dash-header2-action-link {
    color: #fff;
    border-color: rgba(255, 255, 255, .24);
    background-color: rgba(255, 255, 255, .04);
    background-image: linear-gradient(135deg, rgba(59, 140, 255, .16), rgba(48, 134, 255, .03));
    box-shadow: 0 2px 5px rgba(48, 134, 255, .06);
}

.dash-header2-action-link:hover,
.dash-header2-action-link:focus-visible {
    color: #fff;
    border-color: var(--dash-blue-deep);
    background-color: var(--dash-blue-dark);
    background-image: var(--dash-blue-gradient-hover);
    box-shadow: 0 4px 10px rgba(10, 88, 202, .16);
    transform: translateY(-1px);
}

.dash-header2-action-primary {
    color: #fff;
    border-color: var(--dash-blue-dark);
    background-color: var(--dash-h2-blue);
    background-image: var(--dash-blue-gradient);
    box-shadow: 0 5px 14px rgba(48, 134, 255, .16);
}

.dash-header2-action-primary:hover,
.dash-header2-action-primary:focus-visible {
    color: #fff;
    border-color: var(--dash-blue-deep);
    background-color: var(--dash-blue-dark);
    background-image: var(--dash-blue-gradient-hover);
    box-shadow: 0 7px 16px rgba(10, 88, 202, .2);
    transform: translateY(-1px);
}

.dash-header2-menu-toggle {
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    justify-self: end;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .07);
    font-size: 1.3rem;
}

body.dash-header2-menu-open {
    overflow: hidden;
}

.dash-search-form {
    display: flex;
    align-items: center;
    flex: 1 1 440px;
    max-width: 560px;
    min-width: 340px;
    margin-left: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(17, 23, 21, .14);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(17, 23, 21, .06);
}

.dash-search-field {
    position: relative;
    min-width: 0;
    margin: 0;
}

.dash-search-field-main {
    flex: 1 1 58%;
}

.dash-search-field-location {
    flex: 1 1 42%;
    border-left: 1px solid rgba(17, 23, 21, .12);
}

.dash-search-field i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dash-green);
    pointer-events: none;
}

.dash-search-input {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 16px;
    background: #fff;
    color: var(--dash-ink);
    padding: .68rem 1rem .68rem 2.7rem;
    font-weight: 700;
    outline: none;
    box-shadow: none;
}

.dash-search-input:focus {
    box-shadow: inset 0 0 0 .2rem rgba(48, 134, 255, .14);
}

.dash-search-submit {
    color: #fff;
    background: linear-gradient(135deg, var(--dash-blue), var(--dash-blue-dark));
    border: 0;
    min-height: 40px;
    width: 42px;
    margin-right: 2px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
}

.dash-search-submit:hover,
.dash-search-submit:focus {
    color: #fff;
    background: linear-gradient(135deg, var(--dash-blue), var(--dash-blue-dark));
    filter: brightness(.96);
}

.dash-btn-primary {
    color: #fff;
    background-color: var(--dash-blue);
    background-image: var(--dash-blue-gradient);
    border: 0;
    box-shadow: 0 5px 14px rgba(48, 134, 255, .16);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.dash-btn-primary:hover,
.dash-btn-primary:focus-visible {
    color: #fff;
    background-image: var(--dash-blue-gradient-hover);
    box-shadow: 0 7px 16px rgba(10, 88, 202, .2);
    transform: translateY(-1px);
}

.dash-btn-primary:active,
.dash-btn-primary.active {
    color: #fff;
    background-image: linear-gradient(135deg, var(--dash-blue-dark), var(--dash-blue-deep));
    box-shadow: 0 3px 8px rgba(10, 66, 152, .16);
    transform: translateY(0);
}

.dash-btn-primary:disabled,
.dash-btn-primary.disabled {
    background-image: var(--dash-blue-gradient);
    box-shadow: none;
    transform: none;
}

.dash-page-main {
    padding-top: 76px;
    min-height: 75vh;
}

.dash-page-hero {
    padding: 4.5rem 0;
    background:
        linear-gradient(110deg, rgba(3, 6, 8, .9), rgba(3, 6, 8, .58)),
        url("../../images/dash3_events_front_hero.png") center/cover no-repeat;
    color: #fff;
}

.dash-page-hero .lead {
    color: var(--dash-blue-accent) !important;
    font-weight: 700;
}

.event-site-footer {
    background:
        radial-gradient(circle at 12% 20%, rgba(48, 134, 255, .18), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f5f8f6 52%, #e7f4ee 100%) !important;
    box-shadow: 0 -16px 40px rgba(17, 23, 21, .05);
}

.event-site-powered {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
}

.event-site-powered img {
    width: 116px;
    max-width: 44vw;
}

.event-site-legal a:hover,
.event-site-footer a:hover {
    color: var(--dash-green) !important;
}

.dash-title {
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    line-height: 1;
    letter-spacing: 0;
}

.dash-subtitle {
    max-width: 780px;
    color: #5f6b66;
    font-size: 1.1rem;
    line-height: 1.65;
}

.dash-card {
    height: 100%;
    border: 1px solid var(--dash-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(17, 23, 21, .08);
}

.dash-card .d-flex > div,
.dash-panel .d-flex > div {
    min-width: 0;
}

.dash-event-listing-card {
    height: 100%;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid rgba(17, 23, 21, .1);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(17, 23, 21, .08);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.dash-event-listing-card:hover {
    border-color: rgba(48, 134, 255, .28);
    box-shadow: 0 18px 38px rgba(17, 23, 21, .12);
    transform: translateY(-4px);
}

.dash-event-listing-media {
    aspect-ratio: 16 / 9;
    position: relative;
    display: block;
    overflow: hidden;
    background: #eaf2ff;
}

.dash-event-listing-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 20, 38, .04), transparent 56%, rgba(7, 20, 38, .26));
    content: "";
    pointer-events: none;
}

.dash-event-listing-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.dash-event-listing-card:hover .dash-event-listing-media img {
    transform: scale(1.035);
}

.dash-event-listing-date,
.dash-event-listing-status {
    position: absolute;
    z-index: 2;
    top: 14px;
    box-shadow: 0 8px 18px rgba(7, 20, 38, .14);
}

.dash-event-listing-date {
    left: 14px;
    width: 58px;
    min-height: 62px;
    display: grid;
    place-items: center;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 13px;
    color: var(--dash-ink);
    background: rgba(255, 255, 255, .94);
    line-height: 1;
    backdrop-filter: blur(10px);
}

.dash-event-listing-date span {
    color: var(--dash-blue);
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .08em;
}

.dash-event-listing-date strong {
    font-size: 1.45rem;
    font-weight: 850;
}

.dash-event-listing-status {
    right: 14px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 999px;
    color: #fff;
    background: rgba(7, 20, 38, .82);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .04em;
    backdrop-filter: blur(10px);
}

.dash-event-listing-status.is-published {
    background-image: var(--dash-blue-gradient);
}

.dash-event-listing-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 1.45rem 1.45rem 1.2rem;
}

.dash-event-listing-body h2 a {
    color: var(--dash-ink);
    text-decoration: none;
}

.dash-event-listing-body h2 a:hover,
.dash-event-listing-body h2 a:focus-visible {
    color: var(--dash-blue);
}

.dash-event-listing-meta {
    display: grid;
    gap: .65rem;
    color: var(--dash-muted);
    font-size: .9rem;
    font-weight: 650;
}

.dash-event-listing-meta span {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    overflow-wrap: anywhere;
}

.dash-event-listing-meta i {
    flex: 0 0 auto;
    color: var(--dash-blue);
    font-size: 1rem;
}

.dash-event-listing-description {
    display: -webkit-box;
    overflow: hidden;
    margin: 1rem 0 0;
    color: var(--dash-muted);
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.dash-event-listing-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.45rem;
    border-top: 1px solid rgba(17, 23, 21, .08);
    color: var(--dash-blue);
    background: linear-gradient(135deg, rgba(59, 140, 255, .07), rgba(48, 134, 255, .015));
    font-weight: 800;
    text-decoration: none;
    transition: color .18s ease, background .18s ease;
}

.dash-event-listing-action:hover,
.dash-event-listing-action:focus-visible {
    color: #fff;
    background-image: var(--dash-blue-gradient-hover);
}

.dash-event-location-text,
.dash-mobile-wrap-text {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.dash-panel {
    border: 1px solid var(--dash-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(17, 23, 21, .08);
}

.dash-admin-events-width {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-right: clamp(1rem, 2.5vw, 3rem);
    padding-left: clamp(1rem, 2.5vw, 3rem);
}

.dash-admin-events-hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.dash-admin-events-summary {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--dash-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17, 23, 21, .07);
}

.dash-admin-events-summary > div {
    min-width: 0;
    padding: 1rem 1.15rem;
    border-right: 1px solid var(--dash-line);
}

.dash-admin-events-summary > div:last-child {
    border-right: 0;
}

.dash-admin-events-summary span,
.dash-admin-event-details span,
.dash-admin-event-stat-grid span {
    display: block;
    color: var(--dash-muted);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.dash-admin-events-summary strong {
    display: block;
    margin-top: .25rem;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.dash-admin-events-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--dash-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(17, 23, 21, .06);
}

.dash-admin-events-filters {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .65rem;
}

.dash-admin-events-filters .form-select {
    width: auto;
    min-width: 155px;
}

.dash-admin-events-search {
    width: min(320px, 100%);
    flex-wrap: nowrap;
}

.dash-admin-events-search .form-control {
    min-width: 210px;
    border-radius: 999px 0 0 999px !important;
}

.dash-admin-events-search .btn {
    border-radius: 0 999px 999px 0 !important;
}

.dash-admin-event-card {
    overflow: hidden;
    border: 1px solid var(--dash-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17, 23, 21, .08);
}

.dash-admin-event-media {
    min-height: 250px;
    overflow: hidden;
    background: #eaf2ff;
}

.dash-admin-event-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dash-admin-event-placeholder {
    width: 100%;
    height: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    color: var(--dash-blue-dark);
    background: linear-gradient(135deg, rgba(59, 140, 255, .2), rgba(48, 134, 255, .05));
    font-weight: 800;
}

.dash-admin-event-placeholder i {
    font-size: 3rem;
}

.dash-admin-event-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .7rem 1rem;
}

.dash-admin-event-details > div:last-child {
    grid-column: 1 / -1;
}

.dash-admin-event-details strong {
    display: block;
    margin-top: .15rem;
    overflow-wrap: anywhere;
}

.dash-admin-event-metric-card {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border: 1px solid var(--dash-line);
    border-radius: 16px;
    background: #f7f9fc;
}

.dash-admin-event-card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .8rem;
    color: var(--dash-blue-dark);
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.dash-admin-event-card-title i {
    font-size: 1.2rem;
}

.dash-admin-event-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem;
    margin-bottom: .8rem;
}

.dash-admin-event-stat-grid > div {
    min-width: 0;
    padding: .65rem;
    border: 1px solid rgba(17, 23, 21, .08);
    border-radius: 10px;
    background: #fff;
}

.dash-admin-event-stat-grid strong {
    display: block;
    margin-top: .15rem;
    font-size: 1.05rem;
}

.dash-admin-event-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: auto;
    color: var(--dash-blue-dark);
    font-size: .86rem;
    font-weight: 800;
    text-decoration: none;
}

.dash-admin-event-link:hover {
    color: var(--dash-blue-deep);
}

.dash-admin-event-financials > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .35rem 0;
    border-bottom: 1px solid rgba(17, 23, 21, .08);
    font-size: .84rem;
}

.dash-admin-event-financials > div:last-child {
    border-bottom: 0;
}

.dash-admin-event-financial-total {
    margin-top: .25rem;
    padding-top: .65rem !important;
    font-size: .98rem !important;
    font-weight: 900;
}

@media (max-width: 1199.98px) {
    .dash-admin-events-summary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .dash-admin-events-summary > div:nth-child(3n) {
        border-right: 0;
    }

    .dash-admin-events-summary > div:nth-child(-n+3) {
        border-bottom: 1px solid var(--dash-line);
    }

    .dash-admin-events-toolbar,
    .dash-admin-events-filters {
        align-items: stretch;
        flex-direction: column;
    }

    .dash-admin-events-filters .form-select,
    .dash-admin-events-search {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .dash-admin-events-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dash-admin-events-summary > div,
    .dash-admin-events-summary > div:nth-child(3n) {
        border-right: 1px solid var(--dash-line);
        border-bottom: 1px solid var(--dash-line);
    }

    .dash-admin-events-summary > div:nth-child(2n) {
        border-right: 0;
    }

    .dash-admin-events-summary > div:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .dash-admin-event-media,
    .dash-admin-event-placeholder {
        min-height: 190px;
    }

    .dash-admin-event-details {
        grid-template-columns: 1fr;
    }

    .dash-admin-event-details > div:last-child {
        grid-column: auto;
    }
}

.dash-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    max-width: 52px;
    flex: 0 0 52px;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: var(--dash-blue);
    background-image: var(--dash-blue-gradient);
    box-shadow: 0 3px 8px rgba(48, 134, 255, .14);
    font-size: 1.45rem;
}

.dash-ticket-event-logo {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--dash-line);
    border-radius: 10px;
    background: #fff;
}

.dash-ticket-event-logo img {
    width: 100%;
    height: 100%;
    padding: 3px;
    object-fit: contain;
}

.dash-ticket-details .dash-profile-field > span {
    color: var(--dash-green);
}

.dash-ticket-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dash-ticket-filter {
    display: grid;
    grid-template-columns: minmax(190px, 1fr) minmax(150px, 180px) auto;
    align-items: start;
    align-self: flex-start;
    gap: .5rem;
    width: min(100%, 610px);
    flex: 0 1 610px;
}

.dash-ticket-filter .form-control,
.dash-ticket-filter .form-select,
.dash-ticket-filter .btn {
    height: 62px;
    min-height: 62px;
}

.dash-ticket-filter .btn {
    display: inline-flex;
    min-width: 104px;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.dash-ticket-holder-group-row > td {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.dash-ticket-group-heading {
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1rem;
    border-radius: 0;
    color: #fff;
    background-color: var(--dash-blue);
    background-image: var(--dash-blue-gradient);
    box-shadow: none;
    font-weight: 800;
}

.dash-ticket-group-heading i {
    font-size: 1.1rem;
}

.dash-ticket-purchaser-icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background-color: var(--dash-blue);
    background-image: var(--dash-blue-gradient);
    font-size: .82rem;
    line-height: 1;
}

.dash-ticket-payment-breakdown {
    display: grid;
    width: 100%;
    gap: .6rem;
    margin-top: .35rem;
}

.dash-ticket-payment-breakdown > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.dash-ticket-receipt-modal .dash-ticket-payment-breakdown > div > span {
    display: inline;
    margin-bottom: 0;
    color: var(--dash-ink);
    font-size: 1rem;
    font-weight: 700;
    text-transform: none;
}

.dash-ticket-payment-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .45rem;
}

.dash-ticket-receipt-modal .dash-ticket-payment-heading > span {
    display: inline;
    margin-bottom: 0;
    color: var(--dash-blue);
    font-size: .8rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.dash-ticket-payment-heading > strong {
    color: var(--dash-ink);
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.1;
}

.dash-ticket-payment-total {
    margin-top: .2rem;
    padding-top: .75rem;
    border-top: 1px solid var(--dash-line);
    font-size: 1.05rem;
}

.dash-ticket-receipt-modal .dash-ticket-payment-breakdown > div > strong,
.dash-ticket-receipt-modal .dash-ticket-payment-total strong {
    color: var(--dash-ink);
    font-size: 1rem;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .dash-ticket-filter {
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
    }

    .dash-ticket-filter .btn {
        width: 100%;
    }
}

.form-control:not(.form-control-plaintext):not(.form-control-sm),
.form-select:not(.form-select-sm) {
    min-height: 62px;
    border-color: rgba(17, 23, 21, .13);
    border-radius: 18px;
    padding: .9rem 1.1rem;
    color: var(--dash-ink);
    background-color: #fbfcff;
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.form-select:not(.form-select-sm) {
    padding-right: 2.8rem;
}

.form-floating > .form-control:not(.form-control-plaintext):not(.form-control-sm),
.form-floating > .form-select:not(.form-select-sm) {
    height: 62px;
    min-height: 62px;
    padding-top: 1.625rem;
    padding-bottom: .625rem;
}

.form-control:not(.form-control-plaintext):not(.form-control-sm):focus,
.form-select:not(.form-select-sm):focus {
    border-color: rgba(48, 134, 255, .66);
    background-color: #fff;
    box-shadow: 0 0 0 .24rem rgba(48, 134, 255, .12);
}

.dash-payment-card {
    position: relative;
    width: 100%;
    max-width: 560px;
    min-height: 230px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 88% 10%, rgba(119, 174, 255, .52), transparent 34%),
        linear-gradient(135deg, #07142c 0%, #123b80 58%, #267df0 100%);
    box-shadow: 0 18px 38px rgba(14, 57, 119, .24);
}

.dash-payment-card::after {
    content: "";
    position: absolute;
    right: -48px;
    bottom: -82px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
}

.dash-payment-card > * {
    position: relative;
    z-index: 1;
}

.dash-payment-card-top,
.dash-payment-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.dash-payment-card-brand {
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dash-payment-card-top .bi-wifi {
    font-size: 1.35rem;
    transform: rotate(90deg);
}

.dash-payment-card-chip {
    width: 48px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffe49b, #c79b3a);
    box-shadow: inset 0 0 0 1px rgba(62, 43, 7, .2);
}

.dash-payment-card-chip span {
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 16px;
    background: rgba(77, 52, 7, .3);
}

.dash-billing-card-element,
.dash-stripe-card-element {
    width: 100%;
    min-height: 62px;
    display: flex;
    align-items: center;
    padding-left: .75rem !important;
    padding-right: .75rem !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden;
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.dash-billing-card-element > .__PrivateStripeElement,
.dash-stripe-card-element > .__PrivateStripeElement {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
}

.dash-billing-card-element.StripeElement--focus,
.dash-stripe-card-element.StripeElement--focus {
    border-color: rgba(48, 134, 255, .66);
    background: #fff;
    box-shadow: 0 0 0 .24rem rgba(48, 134, 255, .12);
}

.dash-billing-card-element > .__PrivateStripeElement > iframe,
.dash-stripe-card-element > .__PrivateStripeElement > iframe {
    width: 100% !important;
    margin: 0 !important;
}

@media (max-width: 575.98px) {
    .dash-billing-card-element,
    .dash-stripe-card-element {
        padding-left: .625rem !important;
        padding-right: .625rem !important;
    }
}

/* Account navigation and shared Help chat */
body.dash-account-admin-layout {
    background: #fff;
}

.dash-account-shell {
    min-height: calc(100dvh - 76px);
}

.dash-account-content > [data-account-section],
.dash-account-topbar {
    margin-left: auto;
    margin-right: auto;
    max-width: 1480px;
}

.dash-account-rail-actions {
    padding: 10px 8px 0;
}

.dash-account-golf-link {
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    margin-top: auto;
    height: 52px;
    margin-left: auto;
    margin-right: auto;
    padding: 4px;
    width: 52px;
}

.dash-account-golf-link img {
    display: block;
    height: 38px;
    object-fit: contain;
    width: 43px;
}

.dash-account-mobile-golf-icon img {
    display: block;
    height: 25px;
    object-fit: contain;
    width: 31px;
}

.dash-account-mobile-golf-icon {
    background: transparent !important;
    border: 0;
    border-radius: 0;
}

.dash-support-unread-badge {
    align-items: center;
    background: #ef4444;
    border: 2px solid #fff;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: .62rem;
    font-weight: 800;
    height: 20px;
    justify-content: center;
    line-height: 1;
    min-width: 20px;
    padding: 2px 5px;
}

.dash-help-modal .modal-header {
    min-height: 108px;
}

.dash-help-modal .modal-dialog,
[data-support-delete-modal] .modal-dialog,
[data-support-photo-modal] .modal-dialog {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 16px auto !important;
    min-height: calc(100vh - 32px);
    min-height: calc(100dvh - 32px);
    width: calc(100% - 32px);
}

.dash-help-modal .modal-dialog {
    max-width: 800px;
}

[data-support-delete-modal] .modal-dialog {
    max-width: 500px;
}

[data-support-photo-modal] .modal-dialog {
    max-width: 1140px;
}

.dash-help-modal .modal-content,
[data-support-delete-modal] .modal-content,
[data-support-photo-modal] .modal-content {
    margin: auto;
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    width: 100%;
}

.dash-help-modal .modal-body,
[data-support-delete-modal] .modal-body,
[data-support-photo-modal] .modal-body {
    overflow-y: auto;
}

.dash-help-modal .modal-title {
    padding-left: 0 !important;
}

.dash-help-modal .modal-title::after {
    display: none !important;
}

.dash-help-modal-icon {
    align-items: center;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 18px;
    color: #fff;
    display: inline-flex;
    flex: 0 0 56px;
    font-size: 1.5rem;
    height: 56px;
    justify-content: center;
    width: 56px;
}

.dash-account-nav .dash-event-admin-nav-icon,
.dash-account-mobile-nav .dash-event-admin-nav-icon {
    position: relative;
}

.dash-account-nav .dash-support-unread-badge,
.dash-account-mobile-nav .dash-support-unread-badge {
    position: absolute;
    right: -9px;
    top: -8px;
}

.dash-chat-unread-badge {
    align-items: center;
    background: #ef4444;
    border: 2px solid #fff;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: .62rem;
    font-weight: 800;
    height: 20px;
    justify-content: center;
    line-height: 1;
    min-width: 20px;
    padding: 2px 5px;
    position: absolute;
    right: -9px;
    top: -8px;
    z-index: 2;
}

.dash-event-list-action {
    align-items: center;
    display: inline-flex;
    flex: 0 0 34px;
    height: 34px;
    justify-content: center;
    padding: 0;
    position: relative;
    width: 34px;
}

.dash-account-chat-panel {
    overflow: hidden;
}

.dash-account-chat-inbox {
    border-top: 1px solid var(--dash-line);
    display: grid;
    grid-template-columns: minmax(290px, 360px) minmax(0, 1fr);
    min-height: 650px;
}

.dash-account-chat-sidebar {
    background: #fff;
    border-right: 1px solid var(--dash-line);
    min-width: 0;
}

.dash-account-chat-sidebar-label {
    border-bottom: 1px solid var(--dash-line);
    color: var(--dash-muted);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .08em;
    padding: 14px 18px;
    text-transform: uppercase;
}

.dash-account-chat-list {
    display: flex;
    flex-direction: column;
}

.dash-account-chat-thread {
    align-items: center;
    background: #fff;
    border: 0;
    border-bottom: 1px solid var(--dash-line);
    color: var(--dash-ink);
    display: grid;
    gap: 12px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 14px 16px;
    text-align: left;
    transition: background .18s ease, color .18s ease;
    width: 100%;
}

.dash-account-chat-thread:hover,
.dash-account-chat-thread.is-active {
    background: rgba(48, 134, 255, .09);
}

.dash-account-chat-thread.is-active {
    box-shadow: inset 4px 0 0 var(--dash-blue);
}

.dash-account-chat-logo {
    align-items: center;
    background: #fff;
    border: 1px solid var(--dash-line);
    border-radius: 12px;
    display: inline-flex;
    flex: 0 0 54px;
    height: 54px;
    justify-content: center;
    overflow: hidden;
    width: 54px;
}

.dash-account-chat-logo img {
    height: 100%;
    object-fit: contain;
    padding: 4px;
    width: 100%;
}

.dash-account-chat-copy {
    display: block;
    min-width: 0;
}

.dash-account-chat-thread-topline {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.dash-account-chat-thread-topline strong,
.dash-account-chat-preview {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dash-account-chat-thread-topline time {
    color: var(--dash-muted);
    flex: 0 0 auto;
    font-size: .7rem;
    font-weight: 700;
}

.dash-account-chat-preview {
    color: var(--dash-muted);
    font-size: .82rem;
    margin-top: 3px;
}

.dash-account-chat-thread-badge {
    align-items: center;
    background: #ef4444;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: .68rem;
    font-weight: 850;
    height: 22px;
    justify-content: center;
    min-width: 22px;
    padding: 2px 6px;
}

.dash-account-chat-conversation {
    background: var(--dash-soft);
    min-width: 0;
}

.dash-account-chat-conversation > [data-account-chat-conversation][hidden] {
    display: none !important;
}

.dash-account-chat-conversation-header {
    align-items: center;
    background: #fff;
    border-bottom: 1px solid var(--dash-line);
    display: flex;
    gap: 12px;
    min-height: 83px;
    padding: 14px 18px;
}

.dash-account-chat-back {
    align-items: center;
    aspect-ratio: 1 / 1;
    border-radius: 50% !important;
    display: inline-flex;
    flex: 0 0 36px;
    height: 36px;
    justify-content: center;
    min-height: 36px;
    min-width: 36px;
    padding: 0;
    width: 36px;
}

.dash-account-chat-mobile-event-links {
    padding: 14px 12px 4px;
    text-align: center;
}

.dash-account-chat-mobile-event-links [hidden] {
    display: none !important;
}

.dash-account-event-chat {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.dash-account-event-chat .dash-event-chat-messages {
    max-height: 470px;
    min-height: 420px;
}

@media (max-width: 767.98px) {
    .dash-account-chat-inbox {
        display: block;
        min-height: 560px;
    }

    .dash-account-chat-sidebar {
        border-right: 0;
    }

    .dash-account-chat-conversation {
        display: none;
    }

    .dash-account-chat-inbox.is-conversation-open .dash-account-chat-sidebar {
        display: none;
    }

    .dash-account-chat-inbox.is-conversation-open .dash-account-chat-conversation {
        display: block;
    }

    .dash-account-chat-conversation-header {
        padding-left: 12px;
        padding-right: 12px;
    }

    .dash-account-chat-conversation-header .btn.rounded-pill {
        font-size: .75rem;
        padding-left: .75rem;
        padding-right: .75rem;
    }

    .dash-account-chat-mobile-event-links .btn {
        min-width: 150px;
    }

    .dash-account-event-chat .dash-event-chat-messages {
        max-height: 52vh;
        min-height: 360px;
    }
}

.dash-support-messages {
    min-height: 300px;
    max-height: 520px;
    overflow-y: auto;
}

.dash-support-message {
    display: flex;
    margin-bottom: 12px;
}

.dash-support-message:last-child {
    margin-bottom: 0;
}

.dash-support-message.is-own {
    justify-content: flex-end;
}

.dash-support-message:not(.is-own) {
    justify-content: flex-start;
}

.dash-support-message-bubble {
    background: #fff;
    border: 1px solid rgba(10, 88, 202, .12);
    border-radius: 18px;
    box-shadow: 0 10px 22px rgba(7, 18, 35, .07);
    color: var(--dash-ink);
    max-width: min(78%, 620px);
    padding: 12px 14px;
}

.dash-support-message.is-own .dash-support-message-bubble {
    background: var(--dash-blue-gradient);
    border-color: transparent;
    color: #fff;
}

.dash-support-message-meta {
    font-size: .72rem;
    font-weight: 800;
    margin-bottom: 4px;
    opacity: .72;
}

.dash-support-message-body {
    font-weight: 650;
    white-space: pre-wrap;
    word-break: break-word;
}

.dash-support-message-actions {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
    margin-top: 9px;
}

.dash-support-message-action {
    align-items: center;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .64);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    flex: 0 0 30px;
    height: 30px;
    justify-content: center;
    padding: 0;
    transition: background-color .16s ease, transform .16s ease;
    width: 30px;
}

.dash-support-message-action:hover,
.dash-support-message-action:focus-visible {
    background: #fff;
    color: var(--dash-blue-dark);
    transform: translateY(-1px);
}

.dash-support-message-action.is-delete:hover,
.dash-support-message-action.is-delete:focus-visible {
    color: #dc3545;
}

.dash-support-message-editor textarea {
    background: #fff;
    border: 0;
    color: var(--dash-ink);
    min-height: 78px;
    resize: vertical;
}

.dash-support-message-photo-link {
    background: #fff;
    border: 1px solid rgba(10, 88, 202, .12);
    border-radius: 16px;
    cursor: zoom-in;
    display: inline-block;
    margin-top: 8px;
    padding: 7px;
}

.dash-support-message-photo {
    border-radius: 12px;
    display: block;
    max-height: 280px;
    max-width: 100%;
    object-fit: contain;
    width: 280px;
}

.dash-support-photo-preview {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(10, 88, 202, .14);
    border-radius: 18px;
    display: flex;
    gap: 10px;
    padding: 10px 12px;
}

.dash-support-photo-preview-image {
    border-radius: 12px;
    height: 56px;
    object-fit: cover;
    width: 56px;
}

.dash-support-photo-preview-name {
    flex: 1 1 auto;
    font-size: .88rem;
    font-weight: 800;
    min-width: 0;
}

.dash-support-photo-modal-image {
    border-radius: 18px;
    display: block;
    max-height: 78vh;
    object-fit: contain;
    width: 100%;
}

.dash-support-admin-layout {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(270px, 350px) minmax(0, 1fr);
}

.dash-support-admin-sidebar {
    border-right: 1px solid rgba(10, 88, 202, .14);
    max-height: 680px;
    overflow-y: auto;
    padding-right: 20px;
}

.dash-support-admin-thread {
    background: #f7faff;
    border: 1px solid rgba(10, 88, 202, .12);
    border-radius: 16px;
    color: var(--dash-ink);
    width: 100%;
}

.dash-support-admin-thread:hover,
.dash-support-admin-thread.active {
    background: #eaf3ff;
    border-color: rgba(10, 88, 202, .35);
    box-shadow: 0 8px 20px rgba(10, 88, 202, .10);
}

@media (max-width: 1199.98px) {
    body.dash-account-admin-layout.dash-account-subnav-open {
        padding-bottom: 134px;
    }

    .dash-account-content {
        padding-bottom: 32px;
    }
}

@media (max-width: 767.98px) {
    .dash-help-modal .modal-dialog,
    [data-support-delete-modal] .modal-dialog,
    [data-support-photo-modal] .modal-dialog {
        margin: 8px auto !important;
        min-height: calc(100vh - 16px);
        min-height: calc(100dvh - 16px);
        width: calc(100% - 16px);
    }

    .dash-help-modal .modal-content,
    [data-support-delete-modal] .modal-content,
    [data-support-photo-modal] .modal-content {
        max-height: calc(100vh - 16px);
        max-height: calc(100dvh - 16px);
    }

    .dash-support-admin-layout {
        grid-template-columns: 1fr;
    }

    .dash-support-admin-sidebar {
        border-bottom: 1px solid rgba(10, 88, 202, .14);
        border-right: 0;
        max-height: 300px;
        padding-bottom: 18px;
        padding-right: 0;
    }

    .dash-support-message-bubble {
        max-width: 90%;
    }
}

.dash-saved-card-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #dfe5ee;
    border-radius: 1rem;
    background: #f8fafc;
}

.dash-saved-card-icon {
    display: inline-grid;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: .8rem;
    color: #fff;
    background: linear-gradient(135deg, #4594ff, #1761d1);
}

.dash-sponsor-drag-cell,
.dash-prize-drag-cell {
    width: 42px;
}

.dash-sponsor-drag-handle,
.dash-prize-drag-handle {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--dash-blue);
    border: 1px solid rgba(48, 134, 255, .28);
    border-radius: 50%;
    background: #fff;
    cursor: grab;
    touch-action: none;
    user-select: none;
}

[data-sponsor-row],
[data-prize-row] {
    cursor: grab;
    transition: opacity .16s ease, background-color .16s ease, box-shadow .16s ease;
}

[data-sponsor-row].is-dragging,
[data-prize-row].is-dragging {
    opacity: .68;
    background: rgba(48, 134, 255, .08);
    box-shadow: 0 12px 28px rgba(48, 134, 255, .16);
}

[data-sponsor-row].is-dragging .dash-sponsor-drag-handle,
[data-prize-row].is-dragging .dash-prize-drag-handle {
    color: #fff;
    background: var(--dash-blue-gradient);
    cursor: grabbing;
}

.dash-list-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: .5rem;
    white-space: nowrap;
}

.dash-list-icon-btn {
    display: inline-flex;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    padding: 0;
    line-height: 1;
}

@media (max-width: 575.98px) {
    .dash-saved-card-item {
        align-items: flex-start;
        flex-direction: column;
    }
}

.dash-payment-card-footer {
    color: rgba(255, 255, 255, .72);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.dash-saved-payment-label {
    display: block;
    margin-bottom: .3rem;
    color: rgba(255, 255, 255, .68);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dash-saved-payment-number {
    color: #fff;
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    font-weight: 800;
    letter-spacing: .035em;
}

.dash-payment-card-footer strong {
    color: #fff;
}

textarea.form-control:not(.form-control-sm) {
    min-height: 128px;
    height: auto;
    resize: vertical;
}

textarea.form-control.auto-resize {
    overflow-y: hidden !important;
    resize: none !important;
}

.form-control:not(.form-control-plaintext):disabled,
.form-control:not(.form-control-plaintext)[readonly],
.form-select:disabled {
    color: #6d7b89;
    background-color: #f1f4f8;
}

.dash-form-control[type="file"] {
    min-height: 62px;
    padding: .35rem .5rem;
}

.dash-form-control[type="file"]::file-selector-button {
    margin: 0 .85rem 0 0;
    padding: .55rem 1.15rem;
    border: 1px solid rgba(17, 23, 21, .12);
    border-radius: 999px;
    color: var(--dash-ink);
    background: linear-gradient(135deg, #fff 0%, #f3f6f9 100%);
    font-weight: 700;
    transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.dash-form-control[type="file"]:hover::file-selector-button,
.dash-form-control[type="file"]:focus::file-selector-button {
    color: var(--dash-blue-dark);
    border-color: rgba(48, 134, 255, .35);
    background: linear-gradient(135deg, #fff 0%, #eaf3ff 100%);
}

.dash-form-control::placeholder,
.form-control::placeholder,
textarea::placeholder {
    color: rgba(33, 47, 61, .42) !important;
    opacity: 1;
}

.form-switch .form-check-input {
    width: 3.4rem;
    height: 1.8rem;
    margin-top: 0;
    border: 0;
    background-color: #8f9aa5;
    background-image:
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"),
        linear-gradient(135deg, #b8c1ca, #7b8794);
    background-position: left center, center;
    background-repeat: no-repeat;
    background-size: contain, cover;
    box-shadow: inset 0 0 0 1px rgba(17, 23, 21, .12);
    cursor: pointer;
    transition: background-position .18s ease, box-shadow .18s ease, filter .18s ease;
}

.form-switch .form-check-input:checked {
    background-color: var(--dash-blue);
    background-image:
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"),
        var(--dash-blue-gradient);
    background-position: right center, center;
    background-repeat: no-repeat;
    background-size: contain, cover;
    border-color: var(--dash-blue-dark);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16), 0 3px 8px rgba(48, 134, 255, .15);
}

.form-switch .form-check-input:checked:hover {
    background-image:
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"),
        var(--dash-blue-gradient-hover);
    filter: brightness(1.04);
}

.form-switch .form-check-input:focus {
    border-color: rgba(48, 134, 255, .45);
    box-shadow: 0 0 0 .2rem rgba(48, 134, 255, .18);
}

.form-switch .form-check-input:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.dash-form-box {
    max-width: 520px;
    margin: 0 auto;
}

.dash-auth-wrap {
    padding: clamp(2.25rem, 6vw, 5.75rem) 0;
    background:
        radial-gradient(circle at 12% 4%, rgba(48, 134, 255, .14), transparent 31%),
        radial-gradient(circle at 92% 94%, rgba(29, 95, 209, .11), transparent 30%),
        linear-gradient(145deg, #f7faff 0%, #eef5ff 100%);
}

.dash-auth-shell {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.dash-auth-split {
    display: grid;
    grid-template-columns: minmax(330px, .96fr) minmax(0, 1.04fr);
    overflow: hidden;
    border: 1px solid rgba(17, 23, 21, .08);
    border-radius: 36px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(8, 42, 88, .16);
}

.dash-auth-split-register {
    grid-template-columns: minmax(330px, .78fr) minmax(0, 1.22fr);
}

.dash-auth-story {
    position: relative;
    display: flex;
    min-height: 650px;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(2rem, 4vw, 4rem);
    isolation: isolate;
    color: #fff;
    background: #061a3c url("../../images/dash3_events_front_hero.png") center/cover no-repeat;
}

.dash-auth-split-register .dash-auth-story {
    min-height: 780px;
}

.dash-auth-story::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(95, 169, 255, .26), transparent 30%),
        linear-gradient(145deg, rgba(3, 18, 46, .92), rgba(5, 55, 130, .72));
    content: "";
}

.dash-auth-eyebrow,
.dash-auth-kicker {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.dash-auth-eyebrow {
    color: #a9d4ff;
}

.dash-auth-eyebrow::before,
.dash-auth-kicker::before {
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

.dash-auth-story h1 {
    max-width: 560px;
    margin: 1.25rem 0 1rem;
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    font-weight: 850;
    letter-spacing: -.055em;
    line-height: .98;
}

.dash-auth-story h1 em {
    display: block;
    color: #8cc5ff;
    font-style: normal;
}

.dash-auth-story-copy > p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 1.02rem;
    line-height: 1.75;
}

.dash-auth-story-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.dash-auth-story-cta strong,
.dash-auth-story-cta span {
    display: block;
}

.dash-auth-story-cta span {
    margin-top: .25rem;
    color: rgba(255, 255, 255, .66);
    font-size: .88rem;
}

.dash-auth-story-cta .btn {
    flex: 0 0 auto;
    padding: .75rem 1.35rem;
    border-color: rgba(255, 255, 255, .46);
    color: #fff;
}

.dash-auth-story-cta .btn:hover,
.dash-auth-story-cta .btn:focus-visible {
    border-color: #fff;
    color: #071b3d;
    background: #fff;
}

.dash-auth-benefits {
    display: grid;
    gap: .9rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.dash-auth-benefits li {
    display: flex;
    align-items: center;
    gap: .85rem;
    color: rgba(255, 255, 255, .84);
    font-weight: 700;
}

.dash-auth-benefits i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    color: #b7dcff;
    background: rgba(255, 255, 255, .1);
}

.dash-auth-panel {
    display: flex;
    align-items: center;
    padding: clamp(2.25rem, 5vw, 5.25rem);
    background: #fff;
}

.dash-auth-split-register .dash-auth-panel {
    padding: clamp(2rem, 4vw, 4.25rem);
}

.dash-auth-form-wrap {
    width: min(100%, 520px);
    margin: 0 auto;
}

.dash-auth-split-register .dash-auth-form-wrap {
    width: min(100%, 720px);
}

.dash-auth-kicker {
    color: var(--dash-blue);
}

.dash-auth-title {
    margin: .9rem 0 .65rem;
    color: #09162a;
    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 850;
    letter-spacing: -.05em;
    line-height: 1.04;
}

.dash-auth-intro {
    margin-bottom: 1.8rem;
    color: var(--dash-muted);
    line-height: 1.7;
}

.dash-auth-platform-note {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    margin: -0.35rem 0 1.5rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(48, 134, 255, .2);
    border-radius: 16px;
    color: #17345d;
    background: rgba(48, 134, 255, .08);
}

.dash-auth-platform-note > i {
    flex: 0 0 auto;
    color: var(--dash-blue);
    font-size: 1.2rem;
    line-height: 1.35;
}

.dash-auth-platform-note strong,
.dash-auth-platform-note span {
    display: block;
}

.dash-auth-platform-note strong {
    margin-bottom: .2rem;
    color: #09162a;
}

.dash-auth-platform-note span {
    color: #425b7b;
    font-size: .94rem;
    line-height: 1.5;
}

.dash-verify-shell {
    width: min(1120px, calc(100% - 32px));
}

.dash-verify-code-area {
    padding-top: 1.5rem;
    border-top: 1px solid var(--dash-line);
}

.dash-verification-code {
    font-weight: 800;
    letter-spacing: .18em;
}

.dash-verify-resend {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    margin-top: 1.25rem;
    color: var(--dash-muted);
    font-size: .94rem;
}

.dash-verify-resend span,
.dash-verify-resend .btn {
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
    overflow-wrap: normal;
}

.dash-auth-form {
    display: grid;
    gap: 1rem;
}

.dash-auth-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.dash-auth-floating {
    margin: 0;
}

.dash-auth-floating .form-control {
    height: 62px;
    min-height: 62px;
    border-color: rgba(17, 23, 21, .13);
    border-radius: 18px;
    padding-right: 3.5rem;
    background: #fbfcff;
}

.dash-auth-floating .form-control:focus {
    border-color: rgba(48, 134, 255, .66);
    background: #fff;
    box-shadow: 0 0 0 .24rem rgba(48, 134, 255, .12);
}

.dash-auth-floating .form-control::placeholder {
    color: transparent !important;
}

.dash-auth-floating label {
    color: #597086;
}

.dash-auth-password-toggle {
    z-index: 5;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
}

.dash-auth-password-toggle:hover,
.dash-auth-password-toggle:focus-visible {
    color: var(--dash-blue-dark) !important;
    background: rgba(48, 134, 255, .1);
}

.dash-auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: .1rem;
    color: var(--dash-muted);
    font-size: .9rem;
}

.dash-auth-terms {
    padding: 1rem 1.1rem;
    border: 1px solid rgba(48, 134, 255, .14);
    border-radius: 18px;
    background: rgba(48, 134, 255, .055);
}

.dash-auth-submit {
    min-height: 54px;
    margin-top: .25rem;
    font-weight: 800;
}

.dash-auth-social {
    min-height: 52px;
    margin-bottom: 1rem;
}

.dash-auth-divider {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin: .1rem 0 1.15rem;
    color: #7d8b98;
    font-size: .78rem;
}

.dash-auth-divider::before,
.dash-auth-divider::after {
    height: 1px;
    flex: 1;
    background: rgba(17, 23, 21, .1);
    content: "";
}

.dash-auth-mobile-cta {
    display: none;
    margin: 1.5rem 0 0;
    color: var(--dash-muted);
    text-align: center;
}

.dash-auth-alert {
    margin-bottom: 1.25rem;
    border: 0;
    border-radius: 18px;
}

.dash-auth-error-list {
    margin: 0;
    padding-left: 1.2rem;
}

.dash-hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.dash-legal-page {
    color: #0a1728;
    background: #f0f5fc;
}

.dash-legal-shell {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.dash-legal-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(68px, 8vw, 112px) 0 clamp(54px, 7vw, 86px);
    color: #fff;
    background:
        radial-gradient(circle at 86% 12%, rgba(102, 163, 255, .24), transparent 27%),
        linear-gradient(135deg, #071426, #0a58ca);
}

.dash-legal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #9ed0ff;
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.dash-legal-eyebrow::before {
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: #9ed0ff;
    content: "";
}

.dash-legal-hero h1 {
    max-width: 900px;
    margin: 0 0 18px;
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 850;
    letter-spacing: -.055em;
    line-height: .96;
}

.dash-legal-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .74);
    font-size: 1.08rem;
    line-height: 1.7;
}

.dash-legal-content {
    padding: clamp(38px, 6vw, 74px) 0 clamp(64px, 8vw, 104px);
}

.dash-legal-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    padding: 8px;
    border: 1px solid rgba(8, 42, 88, .09);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(8, 42, 88, .07);
}

.dash-legal-tabs a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 11px 20px;
    border-radius: 999px;
    color: #536477;
    font-weight: 800;
    text-decoration: none;
}

.dash-legal-tabs a:hover,
.dash-legal-tabs a:focus-visible {
    color: var(--dash-blue-dark);
    background: rgba(48, 134, 255, .08);
}

.dash-legal-tabs a.active {
    color: #fff;
    background: var(--dash-blue-gradient);
    box-shadow: 0 10px 24px rgba(48, 134, 255, .22);
}

.dash-legal-card {
    overflow: hidden;
    border: 1px solid rgba(8, 42, 88, .08);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(8, 42, 88, .1);
}

.dash-legal-card-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(28px, 5vw, 54px);
    border-bottom: 1px solid rgba(8, 42, 88, .08);
    background: linear-gradient(145deg, #fff, #f3f7fd);
}

.dash-legal-card-header span {
    display: block;
    margin-bottom: 8px;
    color: var(--dash-blue);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.dash-legal-card-header h2 {
    margin: 0;
    color: #09162a;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 850;
    letter-spacing: -.045em;
}

.dash-legal-updated {
    flex: 0 0 auto;
    color: #718093;
    font-size: .82rem;
    line-height: 1.5;
    text-align: right;
}

.dash-legal-updated strong {
    color: #26384b;
}

.dash-legal-copy {
    max-width: 940px;
    padding: clamp(28px, 5vw, 58px);
}

.dash-legal-copy h2 {
    margin: 2.5rem 0 1rem;
    color: #0a2242;
    font-size: 1.6rem;
    font-weight: 850;
    letter-spacing: -.025em;
}

.dash-legal-copy h2:first-child {
    margin-top: 0;
}

.dash-legal-copy h3 {
    margin: 1.75rem 0 .75rem;
    color: var(--dash-blue-dark);
    font-size: 1.08rem;
    font-weight: 850;
}

.dash-legal-copy p,
.dash-legal-copy li {
    color: #4f6072;
    line-height: 1.78;
}

.dash-legal-copy p {
    margin: 0 0 1rem;
}

.dash-legal-copy ul {
    display: grid;
    gap: .45rem;
    margin: 0 0 1.25rem;
    padding-left: 1.3rem;
}

.dash-legal-copy li::marker {
    color: var(--dash-blue);
}

.dash-auth-terms a {
    color: var(--dash-blue-dark);
    font-weight: 800;
}

@media (max-width: 575.98px) {
    .dash-legal-shell {
        width: calc(100% - 28px);
    }

    .dash-legal-hero {
        padding: 54px 0 48px;
    }

    .dash-legal-hero h1 {
        font-size: clamp(2.7rem, 13vw, 4rem);
    }

    .dash-legal-tabs {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .dash-legal-tabs a {
        justify-content: center;
    }

    .dash-legal-card {
        border-radius: 24px;
    }

    .dash-legal-card-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .dash-legal-updated {
        text-align: left;
    }
}

.dash-table-empty {
    border: 1px dashed var(--dash-line);
    border-radius: 8px;
    background: var(--dash-soft);
}

.nav-pills .nav-link {
    color: var(--dash-green-dark);
    background: #fff;
    border: 1px solid rgba(48, 134, 255, .18);
}

.nav-pills .nav-link.active {
    color: #fff;
    background-color: var(--dash-blue);
    background-image: var(--dash-blue-gradient);
    border-color: transparent;
    box-shadow: 0 3px 8px rgba(48, 134, 255, .14);
}

.dash-event-status-control {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    width: fit-content;
    padding: .55rem .8rem;
    border: 1px solid rgba(48, 134, 255, .2);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(17, 23, 21, .06);
    white-space: nowrap;
}

.dash-event-status-control > span {
    color: var(--dash-muted);
    font-size: .85rem;
    font-weight: 800;
    transition: color .18s ease;
}

.dash-event-status-control > span.is-active {
    color: var(--dash-green);
}

.dash-event-status-control .form-switch {
    min-height: 0;
    padding-left: 2.8rem;
}

.dash-event-status-control .form-check-input {
    width: 2.35rem;
    height: 1.25rem;
    margin-top: 0;
    margin-left: -2.8rem;
    cursor: pointer;
}

.dash-event-status-control.is-saving {
    opacity: .65;
}

.dash-event-status-control-compact {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.dash-minimal-layout .dash-page-main {
    min-height: 100vh;
    padding-top: 0;
}

.dash-scanner-page {
    min-height: 100vh;
    background: var(--dash-soft);
}

.dash-scanner-shell {
    width: min(100%, 760px);
}

.dash-scanner-shell:fullscreen,
.dash-scanner-shell.is-fullscreen-fallback {
    background: var(--dash-soft);
    box-sizing: border-box;
    height: 100vh;
    max-width: none;
    overflow-y: auto;
    padding: clamp(16px, 3vw, 36px);
    width: 100%;
}

.dash-scanner-shell.is-fullscreen-fallback {
    inset: 0;
    position: fixed;
    z-index: 1090;
}

body.dash-scanner-fullscreen-lock {
    overflow: hidden !important;
}

.dash-scanner-shell:fullscreen > .dash-panel,
.dash-scanner-shell.is-fullscreen-fallback > .dash-panel {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}

.dash-chat-censor-setting {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    min-width: min(100%, 360px);
    padding: 1rem 1.15rem;
    border: 1px solid rgba(48, 134, 255, .18);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(48, 134, 255, .08), #fff);
}

.dash-chat-censor-setting .form-check-input {
    width: 2.8rem;
    height: 1.45rem;
    cursor: pointer;
}

.dash-event-chat {
    overflow: hidden;
    border: 1px solid rgba(17, 23, 21, .1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17, 23, 21, .07);
}

.dash-event-chat > [data-event-chat-status] {
    margin: 0 !important;
    padding: .7rem 1rem;
    border-bottom: 1px solid rgba(17, 23, 21, .08);
    background: var(--dash-soft);
}

.dash-event-chat-messages {
    min-height: 320px;
    max-height: 520px;
    overflow-y: auto;
    padding: 1.25rem;
    background: linear-gradient(180deg, #fbfcff 0%, #f0f5fb 100%);
}

.dash-event-chat-message {
    display: flex;
    justify-content: flex-start;
    margin-bottom: .85rem;
}

.dash-event-chat-message.is-mine {
    justify-content: flex-end;
}

.dash-event-chat-bubble {
    max-width: min(78%, 620px);
    padding: .8rem 1rem;
    border: 1px solid rgba(17, 23, 21, .08);
    border-radius: 20px 20px 20px 6px;
    color: var(--dash-ink);
    background: #fff;
    box-shadow: 0 8px 22px rgba(17, 23, 21, .07);
}

.dash-event-chat-message.is-organizer:not(.is-mine) .dash-event-chat-bubble,
.dash-event-chat-message.is-mine .dash-event-chat-bubble {
    border-color: transparent;
    border-radius: 20px 20px 6px 20px;
    color: #fff;
    background: var(--dash-blue-gradient);
}

.dash-event-chat-meta {
    margin-bottom: .3rem;
    font-size: .72rem;
    font-weight: 850;
    opacity: .72;
}

.dash-event-chat-body {
    white-space: pre-wrap;
    word-break: break-word;
}

.dash-event-chat-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: .4rem;
    font-size: .68rem;
    font-weight: 700;
    opacity: .72;
}

.dash-event-chat-remove {
    color: inherit;
}

.dash-event-chat-actions,
.dash-event-chat-edit-actions {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.dash-event-chat-action {
    display: inline-flex;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    padding: 0;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    line-height: 1;
}

.dash-event-chat-edit-input {
    min-height: 84px;
    margin-top: .35rem;
    background: #fff;
}

.dash-event-chat-compose {
    display: flex;
    align-items: flex-end;
    gap: .75rem;
    padding: 1rem;
    border-top: 1px solid rgba(17, 23, 21, .08);
    background: #fff;
}

.dash-event-chat-compose textarea {
    min-height: 54px;
    resize: vertical;
}

.dash-event-chat-photo-preview {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1rem 0;
    background: #fff;
}

.dash-event-chat-photo-preview img {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 8px;
    object-fit: cover;
}

.dash-event-chat-photo-preview [data-event-chat-photo-preview-name] {
    min-width: 0;
    flex: 1 1 auto;
    color: var(--dash-muted);
    font-size: .86rem;
    font-weight: 700;
}

.dash-event-chat-photo {
    display: block;
    width: min(100%, 420px);
    margin-top: .55rem;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    background: transparent;
}

.dash-event-chat-photo img {
    display: block;
    width: 100%;
    max-height: 360px;
    object-fit: contain;
    background: rgba(255, 255, 255, .9);
}

.dash-event-chat-photo-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(7, 28, 56, .24);
}

.dash-event-chat-photo-modal .modal-body {
    padding: 1rem;
    background: var(--dash-soft);
    text-align: center;
}

.dash-event-chat-photo-modal .modal-body img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 78vh;
    margin: 0 auto;
    border-radius: 10px;
}

.dash-trivia-question {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(17, 23, 21, .09);
    border-radius: 8px;
    background: var(--dash-soft);
}

.dash-trivia-difficulty {
    display: inline-flex;
    padding: .25rem .6rem;
    border-radius: 999px;
    color: var(--dash-blue-dark);
    background: rgba(48, 134, 255, .12);
    font-size: .7rem;
    font-weight: 900;
    text-transform: uppercase;
}

.dash-trivia-difficulty.is-hard {
    color: #8a4b00;
    background: #fff0d5;
}

.dash-trivia-difficulty.is-extreme {
    color: #a5182c;
    background: #ffe1e5;
}

.dash-trivia-question summary {
    width: fit-content;
    cursor: pointer;
}

.dash-trivia-round-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-width: 0;
    padding: 0;
    border: 0;
    color: inherit;
    text-align: left;
    background: transparent;
}

.dash-trivia-round-toggle:focus-visible {
    outline: 3px solid rgba(48, 134, 255, .3);
    outline-offset: 5px;
    border-radius: 6px;
}

.dash-trivia-round-chevron {
    flex: 0 0 auto;
    color: var(--dash-blue);
    font-size: 1.15rem;
}

.dash-trivia-question-refresh {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
    border-radius: 50% !important;
}

.dash-trivia-question.is-refreshed {
    animation: dash-trivia-question-refreshed 2.6s ease-out;
}

@keyframes dash-trivia-question-refreshed {
    0%, 35% {
        border-color: rgba(48, 134, 255, .85);
        background: rgba(48, 134, 255, .16);
        box-shadow: 0 0 0 4px rgba(48, 134, 255, .1);
    }
    100% {
        border-color: rgba(17, 23, 21, .09);
        background: var(--dash-soft);
        box-shadow: none;
    }
}

.dash-event-schedule-timeline {
    position: relative;
    margin-left: .7rem;
    padding-left: 2.1rem;
    border-left: 3px solid rgba(48, 134, 255, .22);
}

.dash-event-schedule-item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1.15rem 1.25rem;
    border: 1px solid rgba(17, 23, 21, .1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(17, 23, 21, .06);
    transition: opacity .15s ease, transform .15s ease, box-shadow .15s ease;
}

.dash-event-schedule-item:last-child {
    margin-bottom: 0;
}

.dash-event-schedule-item.is-draggable {
    cursor: grab;
    touch-action: none;
    user-select: none;
}

.dash-event-schedule-item.is-dragging {
    z-index: 20;
    cursor: grabbing;
    opacity: .82;
    border-color: rgba(48, 134, 255, .5);
    box-shadow: 0 18px 38px rgba(48, 134, 255, .18);
    transform: scale(.995);
}

.dash-event-schedule-node {
    position: absolute;
    left: calc(-2.1rem - 12px);
    top: 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    color: #fff;
    background: var(--dash-blue);
    box-shadow: 0 0 0 6px rgba(48, 134, 255, .13);
    font-size: .7rem;
}

.dash-event-schedule-item.is-custom .dash-event-schedule-node {
    color: var(--dash-blue);
    background: #fff;
    border: 2px solid var(--dash-blue);
}

.dash-event-schedule-content {
    padding-top: 1.45rem;
}

.dash-event-schedule-time {
    margin: 0;
    color: var(--dash-blue);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.dash-event-schedule-node-time {
    position: absolute;
    top: 50%;
    left: calc(100% + .65rem);
    z-index: 2;
    min-width: max-content;
    padding: .2rem .5rem;
    border: 1px solid rgba(48, 134, 255, .18);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(17, 23, 21, .06);
    transform: translateY(-50%);
    pointer-events: none;
}

.dash-event-schedule-item.is-dragging .dash-event-schedule-node {
    z-index: 30;
    color: #fff;
    background: var(--dash-blue);
    box-shadow: 0 0 0 10px rgba(48, 134, 255, .18);
    transform: translateY(var(--dash-schedule-drag-y, 0)) scale(1.16);
}

.dash-event-schedule-item.is-dragging .dash-event-schedule-node-time {
    z-index: 31;
    color: #fff;
    background: var(--dash-blue-gradient);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(48, 134, 255, .28);
}

.dash-event-schedule-actions {
    display: flex;
    align-items: flex-start;
    gap: .45rem;
}

.dash-event-schedule-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    padding: 0;
    border-radius: 50% !important;
    line-height: 1;
}

.dash-expense-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: .45rem;
}

.dash-expense-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    padding: 0;
    border-radius: 50% !important;
    line-height: 1;
}

@media (max-width: 575.98px) {
    .dash-event-chat-compose {
        align-items: stretch;
        flex-direction: column;
    }

    .dash-event-chat-compose .btn {
        width: 100%;
    }

    .dash-event-chat-bubble {
        max-width: 90%;
    }

    .dash-event-schedule-timeline {
        margin-left: .2rem;
        padding-left: 1.45rem;
    }

    .dash-event-schedule-item {
        grid-template-columns: 1fr;
    }

    .dash-event-schedule-node {
        left: calc(-1.45rem - 12px);
    }
}

.dash-step-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    position: relative;
}

.dash-step-timeline::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 25px;
    height: 3px;
    background: rgba(48, 134, 255, .18);
    z-index: 0;
}

.dash-step-item {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0;
    border: 0;
    font: inherit;
    text-align: center;
    background: transparent;
}

.dash-step-item[data-step-jump] {
    cursor: pointer;
}

.dash-step-item:disabled {
    opacity: 1;
}

.dash-step-item[data-step-jump]:hover .dash-step-marker,
.dash-step-item[data-step-jump]:focus-visible .dash-step-marker {
    border-color: var(--dash-green);
    box-shadow: 0 12px 28px rgba(48, 134, 255, .2);
    transform: translateY(-2px);
}

.dash-step-item[data-step-jump]:focus-visible {
    outline: 0;
}

.dash-step-marker {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dash-green);
    background: #fff;
    border: 2px solid rgba(48, 134, 255, .28);
    box-shadow: 0 10px 24px rgba(17, 23, 21, .08);
    font-weight: 900;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.dash-step-item.is-active .dash-step-marker,
.dash-step-item.is-complete .dash-step-marker {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--dash-green), var(--dash-green-dark));
}

.dash-step-label {
    margin-top: .6rem;
    font-weight: 900;
    color: var(--dash-ink);
}

.dash-step-panel {
    display: none;
}

.dash-step-panel.is-active {
    display: block;
}

.dash-ticket-group-row {
    padding: 1rem;
    border: 1px solid var(--dash-line);
    border-radius: 8px;
    background: var(--dash-soft);
}

[data-ticket-groups-list],
[data-ticket-group-pricing-list],
[data-ticket-types-list],
[data-ticket-type-pricing-list] {
    gap: 2.7rem !important;
}

.dash-step-panel[data-step-panel="2"] .dash-form-control::placeholder {
    color: rgba(33, 37, 41, .12) !important;
    opacity: 1;
}

.dash-step-panel[data-step-panel="2"] .form-text,
.dash-step-panel[data-step-panel="2"] .text-muted.small {
    color: rgba(86, 96, 106, .72) !important;
}

.dash-ticket-group-remove {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dash-ticket-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(48, 134, 255, .22);
    border-radius: 8px;
    background: rgba(48, 134, 255, .06);
}

.dash-ticket-total span {
    color: var(--dash-muted);
    font-size: .86rem;
    font-weight: 900;
    text-transform: uppercase;
}

.dash-ticket-total strong {
    color: var(--dash-green-dark);
    font-size: 1.45rem;
    line-height: 1;
}

.dash-add-on-card {
    height: 100%;
    padding: 1.1rem;
    border: 1px solid var(--dash-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(17, 23, 21, .06);
}

.dash-payment-choice,
.dash-payment-fee-box {
    border: 1px solid var(--dash-line);
    border-radius: 8px;
    background: var(--dash-soft);
    padding: 1rem;
}

.dash-toggle-choice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 520px;
    margin-top: .25rem;
}

.dash-toggle-choice span {
    flex: 1 1 0;
    color: var(--dash-muted);
    font-size: .92rem;
    font-weight: 800;
    text-align: center;
    transition: color .18s ease, transform .18s ease;
}

.dash-toggle-choice .form-switch {
    flex: 0 0 auto;
}

.dash-toggle-choice span.is-active {
    color: var(--dash-green);
    transform: scale(1.03);
}

.dash-stripe-setup {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-top: 1rem;
    padding: .9rem;
    border: 1px solid rgba(99, 91, 255, .22);
    border-radius: 8px;
    background: #fff;
}

.dash-payment-method-details {
    margin-top: 1rem;
    padding: .9rem;
    border: 1px solid rgba(99, 91, 255, .22);
    border-radius: 8px;
    background: #fff;
}

.dash-customer-price-preview {
    margin-top: 1rem;
    padding: .9rem;
    border: 1px solid var(--dash-line);
    border-radius: 8px;
    background: #fff;
}

.dash-customer-price-list {
    display: grid;
    gap: .65rem;
}

.dash-customer-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: .65rem;
    border-top: 1px solid var(--dash-line);
}

.dash-customer-price-row:first-child {
    padding-top: 0;
    border-top: 0;
}

.dash-customer-price-row strong {
    flex: 0 0 auto;
    color: var(--dash-ink);
}

.dash-stripe-logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 68px;
    min-height: 32px;
    padding: .2rem .65rem;
    border-radius: 6px;
    color: #fff;
    background: #635bff;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0;
}

.dash-profile-avatar {
    width: 108px;
    height: 108px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 4px solid #fff;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dash-green), var(--dash-green-dark));
    box-shadow: 0 18px 40px rgba(17, 23, 21, .16);
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
}

.dash-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dash-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.dash-profile-field {
    height: 100%;
    min-height: 92px;
    padding: 1rem;
    border: 1px solid var(--dash-line);
    border-radius: 8px;
    background: var(--dash-soft);
}

.dash-stripe-status-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.dash-profile-field span {
    display: block;
    margin-bottom: .45rem;
    color: var(--dash-muted);
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.dash-profile-field strong {
    display: block;
    color: var(--dash-ink);
    overflow-wrap: anywhere;
}

.modal .modal-content {
    overflow: hidden;
    border: 1px solid rgba(8, 42, 88, .09) !important;
    border-radius: 28px !important;
    background: #fff;
    box-shadow: 0 28px 80px rgba(8, 42, 88, .24) !important;
}

.modal .modal-header,
.modal-header.dash-modal-header-primary {
    position: static !important;
    display: flex;
    min-height: 116px;
    align-items: center;
    padding: 26px 30px !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: #fff;
    background:
        radial-gradient(circle at 92% 0%, rgba(151, 205, 255, .28), transparent 36%),
        linear-gradient(135deg, #071b3d, var(--dash-blue-dark)) !important;
}

.modal .modal-header.dash-modal-header-danger {
    background:
        radial-gradient(circle at 92% 0%, rgba(255, 255, 255, .14), transparent 36%),
        linear-gradient(135deg, #57151c, #a62530) !important;
}

.modal .modal-header > div {
    min-width: 0;
}

.modal .modal-header .modal-title {
    position: relative;
    margin: 0;
    padding-left: 66px;
    color: #fff;
    font-size: clamp(1.25rem, 3vw, 1.65rem) !important;
    font-weight: 850 !important;
    letter-spacing: -.035em;
    line-height: 1.12;
}

.modal .modal-header .modal-title::before {
    display: block;
    margin-bottom: 5px;
    color: #9ed0ff;
    content: attr(data-dash-kicker);
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .13em;
    line-height: 1;
    text-transform: uppercase;
}

.modal .modal-header .modal-title::after {
    position: absolute;
    top: 50%;
    left: 0;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 16px;
    background:
        radial-gradient(circle, #8cc5ff 0 5px, transparent 6px),
        rgba(255, 255, 255, .1);
    content: "";
    transform: translateY(-50%);
}

.modal .modal-header.dash-modal-header-danger .modal-title::before {
    color: #ffd0d4;
}

.modal .modal-header.dash-modal-header-danger .modal-title::after {
    background:
        radial-gradient(circle, #fff 0 5px, transparent 6px),
        rgba(255, 255, 255, .1);
}

.dash-ticket-receipt-modal .modal-title::after {
    display: none;
}

.dash-ticket-receipt-modal .dash-modal-title-symbol {
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 16px;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    font-size: 1.25rem;
    transform: translateY(-50%);
}

.dash-ticket-receipt-modal .dash-profile-field > span {
    color: var(--dash-blue);
}

.modal .modal-header .text-muted,
.modal .modal-header .text-white-50 {
    margin-top: .35rem;
    color: var(--dash-blue-accent) !important;
}

.modal .modal-header .btn-close {
    position: static !important;
    flex: 0 0 auto;
    margin: 0 0 0 auto;
    border-radius: 50%;
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: .9;
}

.modal .modal-body {
    position: static !important;
    padding: clamp(24px, 4vw, 34px) !important;
    border: 0 !important;
}

.modal .modal-footer {
    position: static !important;
    padding: 18px 30px 24px !important;
    border-top: 1px solid rgba(8, 42, 88, .08) !important;
    background: #fff;
}

.dash-event-qr-modal .modal-dialog {
    max-width: 560px;
}

.dash-event-qr-preview {
    position: relative;
    width: min(100%, 360px);
    margin: 0 auto;
    padding: 14px;
    overflow: hidden;
    border: 1px solid rgba(8, 42, 88, .12);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(8, 42, 88, .14);
}

.dash-event-qr-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
}

.dash-event-qr-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    width: 23%;
    aspect-ratio: 1.18;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    transform: translate(-50%, -50%);
}

.dash-event-qr-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dash-event-qr-status {
    min-height: 1.25rem;
    color: var(--dash-blue);
}

.modal .modal-body .form-control,
.modal .modal-body .form-select,
.modal .modal-body .input-group-text {
    border-radius: 18px;
}

.modal .modal-body .input-group > .input-group-text + .form-control,
.modal .modal-body .input-group > .input-group-text + .form-select {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.dash-event-image-upload {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem;
    border: 1px solid var(--dash-line);
    border-radius: 8px;
    background: var(--dash-soft);
}

.dash-event-logo-upload {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem;
    border: 1px solid var(--dash-line);
    border-radius: 8px;
    background: #fff;
}

.dash-event-logo-preview {
    width: 128px;
    aspect-ratio: 1 / 1;
    flex: 0 0 128px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--dash-line);
    border-radius: 8px;
    background:
        linear-gradient(45deg, #f4f6f5 25%, transparent 25%),
        linear-gradient(-45deg, #f4f6f5 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #f4f6f5 75%),
        linear-gradient(-45deg, transparent 75%, #f4f6f5 75%);
    background-position: 0 0, 0 10px, 10px -10px, -10px 0;
    background-size: 20px 20px;
    box-shadow: 0 14px 30px rgba(17, 23, 21, .08);
}

.dash-event-logo-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: .4rem;
}

.dash-event-logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    color: var(--dash-muted);
    text-align: center;
    font-size: .82rem;
    font-weight: 800;
}

.dash-event-logo-placeholder i {
    color: var(--dash-green);
    font-size: 1.8rem;
}

.dash-ai-logo-grid,
.dash-ai-image-grid {
    display: grid;
    gap: 1rem;
}

.dash-ai-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dash-ai-image-grid {
    grid-template-columns: 1fr;
}

.dash-ai-logo-option,
.dash-ai-image-option {
    padding: .75rem;
    border: 1px solid var(--dash-line);
    border-radius: 8px;
    background: #fff;
}

.dash-ai-logo-option.is-selected,
.dash-ai-image-option.is-selected {
    border-color: var(--dash-green);
    box-shadow: 0 0 0 .2rem rgba(48, 134, 255, .12);
}

.dash-ai-logo-option img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 8px;
    background: var(--dash-soft);
}

.dash-ai-image-option img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    background: var(--dash-soft);
}

.dash-empty-state {
    min-height: 180px;
    display: grid;
    place-items: center;
    padding: 1.25rem;
    border: 1px dashed rgba(17, 23, 21, .2);
    border-radius: 8px;
    background: var(--dash-soft);
    text-align: center;
}

.dash-event-image-preview {
    width: 240px;
    aspect-ratio: 16 / 9;
    flex: 0 0 240px;
    overflow: hidden;
    border: 3px solid #fff;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(17, 23, 21, .12);
}

.dash-event-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dash-event-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    color: var(--dash-muted);
    text-align: center;
    font-size: .82rem;
    font-weight: 800;
}

.dash-event-image-placeholder i {
    color: var(--dash-green);
    font-size: 2rem;
}

.dash-event-cropper {
    max-width: 560px;
    padding: 1rem;
    border: 1px dashed rgba(48, 134, 255, .35);
    border-radius: 8px;
    background: #fff;
}

.dash-event-crop-frame {
    width: min(100%, 480px);
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(48, 134, 255, .5);
    border-radius: 8px;
    background: #f5f7f6;
    cursor: grab;
    touch-action: none;
    user-select: none;
}

.dash-event-crop-frame:active {
    cursor: grabbing;
}

.dash-event-crop-frame.is-dragging {
    cursor: grabbing;
}

.dash-event-crop-frame img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: none;
    transform-origin: top left;
    user-select: none;
    pointer-events: none;
}

.dash-event-crop-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .9);
    box-shadow: inset 0 0 0 999px rgba(255, 255, 255, .04);
    pointer-events: none;
}

.dash-image-crop-modal {
    z-index: 1080;
}

.dash-image-crop-backdrop {
    z-index: 1075;
}

.dash-image-crop-workspace {
    width: 100%;
    min-height: 300px;
    overflow: hidden;
}

.dash-image-crop-workspace .cr-boundary {
    border: 1px solid rgba(48, 134, 255, .25);
    border-radius: 18px;
    background: #f5f8fc;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .85);
}

.dash-image-crop-workspace .cr-viewport {
    border: 2px solid #fff;
    box-shadow: 0 0 0 9999px rgba(7, 27, 61, .56);
}

.dash-image-crop-workspace .cr-slider-wrap {
    width: min(360px, 82%);
    margin: 22px auto 0;
}

.dash-image-crop-workspace .cr-slider {
    accent-color: var(--dash-blue);
}

.dash-secure-payment-note {
    display: flex;
    align-items: center;
    gap: .45rem;
    margin-top: .7rem;
    color: var(--dash-muted);
    font-size: .82rem;
    font-weight: 700;
}

.dash-payment-action {
    width: 100%;
    text-align: center;
}

.dash-payment-action .btn {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.dash-payment-action .dash-secure-payment-note {
    width: 100%;
    justify-content: center;
}

.dash-secure-payment-note i {
    color: var(--dash-blue);
}

@media (max-width: 575.98px) {
    .dash-image-crop-workspace {
        min-height: 240px;
    }
}

.pac-container {
    z-index: 2000;
}

@media (max-width: 1199.98px) {
    .dash-header2-shell {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
    }

    .dash-header2 .navbar-collapse {
        position: fixed;
        inset: 0;
        z-index: 1050;
        padding: 88px 22px 30px;
        overflow-y: auto;
        color: #fff;
        background: var(--dash-h2-ink);
    }

    .dash-header2 .navbar-collapse.collapsing {
        height: 100vh !important;
        transition: opacity .18s ease;
    }

    .dash-header2 .navbar-collapse:not(.show) {
        display: none;
    }

    .dash-header2 .navbar-collapse.show {
        display: block;
    }

    .dash-header2-menu-toggle {
        position: relative;
        z-index: 1060;
        display: inline-flex;
    }

    .dash-header2-menu-toggle[aria-expanded="true"] i::before {
        content: "\f659";
    }

    .dash-header2-nav {
        display: grid;
        gap: 4px;
        padding: 10px 0 22px;
        border-bottom: 1px solid rgba(255, 255, 255, .13);
    }

    .dash-header2 .dash-header2-search {
        width: 100%;
        max-width: none;
        min-width: 0;
        margin: 0 0 18px;
        border-radius: 16px;
    }

    .dash-header2 .dash-nav-link,
    .dash-header2.event-site-header .dash-nav-link {
        min-height: 52px;
        justify-content: flex-start;
        padding: 14px 10px;
        border-radius: 13px;
        color: #fff;
        font-size: 1.08rem;
    }

    .dash-header2-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding-top: 20px;
    }

    .dash-nav-link {
        padding: .85rem 0;
    }

    .dash-nav-link::after {
        left: 0;
        right: auto;
        width: 44px;
        bottom: .45rem;
    }

    .dash-search-form {
        flex-direction: column;
        align-items: stretch;
        flex: 1 1 auto;
        max-width: none;
        min-width: 0;
        margin: .75rem 0 1rem;
        border-radius: 8px;
    }

    .dash-search-field-location {
        border-left: 0;
        border-top: 1px solid rgba(17, 23, 21, .12);
    }

    .dash-search-input {
        border-radius: 0;
    }

    .dash-search-submit {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .dash-auth-floating {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

@media (max-width: 575.98px) {
    .dash-header2-shell {
        min-height: 66px;
        padding: 7px 8px 7px 10px;
    }

    .dash-header2-brand-mark {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 14px;
    }

    .dash-header2-brand-mark img {
        width: 38px;
        height: 34px;
    }

    .dash-header2-brand-copy strong {
        max-width: 52vw;
        font-size: 1.03rem;
    }

    .dash-header2-brand-copy span {
        display: none;
    }

    .dash-header2-menu-toggle {
        width: 44px;
        height: 44px;
    }

    .dash-header2-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .dash-scanner-camera {
        --bs-aspect-ratio: 125%;
    }

    .d-flex.flex-column > .btn,
    .d-flex.flex-column > a.btn,
    form.d-flex.flex-column > .btn {
        width: auto;
        align-self: flex-start;
    }

    body {
        overflow-x: hidden;
    }

    .container,
    .container-fluid {
        max-width: 100% !important;
    }

    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .dash-page-hero .container,
    .event-site-hero .container {
        max-width: 100% !important;
        overflow: hidden;
    }

    .dash-card,
    .dash-panel {
        max-width: 100%;
        overflow: hidden;
    }

    .dash-panel p,
    .dash-card p,
    .dash-panel .text-muted,
    .dash-card .text-muted {
        max-width: min(100%, 342px);
    }

    .dash-mobile-wrap-text,
    .dash-event-location-text,
    .event-site-hero .lead {
        width: min(calc(100vw - 48px), 342px);
        max-width: min(calc(100vw - 48px), 342px);
    }

    .dash-page-main {
        padding-top: 66px;
    }

    .dash-page-hero {
        padding: 3rem 0;
    }

    .dash-title {
        font-size: clamp(2rem, 12vw, 3rem);
        line-height: 1.06;
    }

    .lead,
    .fs-5 {
        font-size: 1rem !important;
        line-height: 1.55;
    }

    .dash-card,
    .dash-panel {
        box-shadow: 0 12px 28px rgba(17, 23, 21, .07);
    }

    .dash-card.p-4,
    .dash-panel.p-4,
    .dash-panel.p-5,
    .dash-panel.p-lg-5 {
        padding: 1rem !important;
    }

    .nav.nav-pills {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: .35rem;
        scrollbar-width: thin;
    }

    .nav.nav-pills .nav-item {
        flex: 0 0 auto;
    }

    .nav.nav-pills .nav-link {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        white-space: nowrap;
    }

    .table-responsive {
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .table {
        min-width: 680px;
    }

    .dash-profile-grid {
        grid-template-columns: 1fr;
    }

    .dash-profile-field strong,
    .dash-profile-field code,
    td,
    th {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .input-group {
        align-items: stretch;
        flex-direction: column;
        gap: .5rem;
    }

    .input-group > .form-control {
        width: 100%;
        border-radius: 18px !important;
    }

    .input-group > .btn {
        width: auto;
        align-self: flex-start;
        border-radius: 999px !important;
    }

    .dash-panel .d-flex.flex-column.flex-md-row,
    .dash-panel .d-flex.flex-column.flex-lg-row,
    .dash-panel form.d-flex.flex-column.flex-md-row {
        align-items: stretch !important;
    }

    .dash-panel form.d-flex.gap-2.align-items-center {
        align-items: stretch !important;
        flex-direction: column;
    }

    .dash-panel form.d-flex.gap-2.align-items-center .form-select {
        width: 100%;
    }

    .dash-panel form.d-flex.gap-2.align-items-center .btn {
        width: auto;
        align-self: flex-start;
    }

    .dash-header .container-fluid {
        padding-left: .75rem;
        padding-right: .75rem;
    }

    .dash-logo {
        width: 96px;
    }

    .dash-event-nav-logo {
        width: 98px;
        height: 58px;
    }

    .dash-event-nav-title {
        max-width: 52vw;
        font-size: .92rem;
    }

    .dash-auth-wrap {
        padding: 1.25rem 0 2.5rem;
    }

    .dash-auth-shell {
        width: min(100% - 24px, 680px);
    }

    .dash-auth-grid {
        grid-template-columns: 1fr;
    }

    .modal-dialog {
        margin: .5rem;
    }

    .d-flex.flex-wrap.gap-2 > .btn,
    .d-flex.flex-wrap.gap-3 > .btn,
    .d-flex.flex-wrap.gap-2 > a.btn,
    .d-flex.flex-wrap.gap-3 > a.btn {
        flex: 0 0 auto;
    }

    .dash-event-image-upload,
    .dash-event-logo-upload {
        align-items: stretch;
        flex-direction: column;
    }

    .dash-event-image-preview,
    .dash-event-logo-preview {
        width: 100%;
        max-width: 320px;
        flex-basis: auto;
    }

    .dash-ai-logo-grid {
        grid-template-columns: 1fr;
    }

    .dash-step-timeline {
        gap: .35rem;
    }

    .dash-step-timeline::before {
        left: 14%;
        right: 14%;
    }

    .dash-step-marker {
        width: 44px;
        height: 44px;
    }

    .dash-step-label {
        font-size: .82rem;
    }
}

@media (max-width: 991.98px) {
    .dash-auth-split,
    .dash-auth-split-register {
        grid-template-columns: 1fr;
    }

    .dash-auth-story,
    .dash-auth-split-register .dash-auth-story {
        min-height: 440px;
    }

    .dash-auth-panel,
    .dash-auth-split-register .dash-auth-panel {
        padding: clamp(2rem, 7vw, 4rem);
    }
}

@media (max-width: 575.98px) {
    .dash-auth-split {
        border-radius: 25px;
    }

    .dash-auth-story {
        display: none;
    }

    .dash-auth-panel,
    .dash-auth-split-register .dash-auth-panel {
        padding: 2rem 1.25rem;
    }

    .dash-auth-mobile-cta {
        display: block;
    }

    .dash-auth-title {
        font-size: 2.15rem;
    }

    .modal .modal-content {
        border-radius: 23px !important;
    }

    .modal .modal-header,
    .modal-header.dash-modal-header-primary {
        min-height: 102px;
        padding: 22px !important;
    }

    .modal .modal-header .modal-title {
        padding-left: 56px;
    }

    .modal .modal-header .modal-title::after {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .modal .modal-footer {
        padding: 16px 22px 22px !important;
    }
}

body.dash-minimal-layout {
    background: #f5f7fb;
}

.dash-event-admin-shell {
    min-height: 100vh;
    padding: 18px 0 56px;
}

.dash-event-admin-wrap {
    display: grid;
    gap: 18px;
    grid-template-columns: 78px minmax(0, 1fr);
    margin: 0 auto;
    max-width: 1780px;
    padding: 0 18px;
    width: 100%;
}

.dash-event-admin-rail {
    align-self: start;
    background: #eaf3ff;
    border: 1px solid rgba(48, 134, 255, .18);
    border-radius: 24px;
    box-shadow: 0 16px 38px rgba(10, 88, 202, .10);
    flex-direction: column;
    min-height: calc(100vh - 36px);
    padding: 14px;
    position: sticky;
    top: 92px;
}

.dash-event-admin-brand {
    align-items: center;
    color: var(--dash-ink);
    display: flex;
    gap: 12px;
    justify-content: center;
    padding: 8px 8px 16px;
    text-decoration: none;
}

.dash-event-admin-brand-label,
.dash-event-admin-nav-label {
    display: none;
}

.dash-event-admin-brand:hover {
    color: var(--dash-ink);
}

.dash-event-admin-brand-mark {
    align-items: center;
    background: #061527;
    border-radius: 14px;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    overflow: hidden;
    width: 42px;
}

.dash-event-admin-brand-mark img {
    height: 34px;
    object-fit: contain;
    width: 34px;
}

.dash-event-admin-brand strong,
.dash-event-admin-brand small {
    display: block;
    line-height: 1.15;
}

.dash-event-admin-brand small {
    color: var(--dash-muted);
    font-weight: 700;
    margin-top: 3px;
    text-transform: uppercase;
}

.dash-event-admin-nav {
    border: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 0;
}

.dash-event-admin-nav .nav-item,
.dash-event-admin-nav .nav-link {
    width: 100%;
}

.dash-event-admin-nav .nav-link {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 16px;
    color: var(--dash-ink);
    display: flex;
    font-weight: 800;
    gap: 0;
    justify-content: center;
    min-height: 52px;
    padding: 8px;
    position: relative;
    text-align: center;
    transition: background-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.dash-event-admin-nav .nav-link .badge {
    font-size: .62rem;
    line-height: 1;
    min-width: 18px;
    padding: 3px 5px;
    position: absolute;
    right: 5px;
    top: 5px;
}

.dash-event-admin-nav .nav-link:hover {
    background: #fff;
    box-shadow: 0 8px 20px rgba(10, 88, 202, .12);
    transform: translateY(-1px);
}

.dash-event-admin-nav .nav-link.active {
    background: #fff;
    box-shadow: 0 8px 20px rgba(10, 88, 202, .12);
    color: var(--dash-ink);
}

.dash-event-admin-nav-icon {
    align-items: center;
    background: rgba(255, 255, 255, .74);
    border-radius: 12px;
    color: var(--dash-blue-dark);
    display: inline-flex;
    flex: 0 0 34px;
    font-size: 1.05rem;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.dash-event-admin-nav .nav-link.active .dash-event-admin-nav-icon,
.dash-event-admin-mobile-nav .nav-link.active .dash-event-admin-nav-icon {
    background-image: var(--dash-blue-gradient);
    color: #fff;
}

.dash-event-admin-rail-actions {
    display: grid;
    gap: 8px;
    margin-top: auto;
    padding-top: 18px;
}

.dash-event-admin-link {
    align-items: center;
    border-radius: 14px;
    color: var(--dash-ink);
    display: flex;
    font-weight: 800;
    gap: 0;
    justify-content: center;
    min-height: 46px;
    padding: 10px;
    text-decoration: none;
}

.dash-event-admin-link:hover {
    background: #fff;
    color: var(--dash-blue-dark);
}

.dash-event-admin-menu-toggle,
.dash-event-admin-menu-restore {
    display: none;
}

.dash-event-admin-subrail[hidden],
.dash-event-admin-subnav-group[hidden],
.dash-event-admin-mobile-subnav[hidden] {
    display: none !important;
}

.dash-event-admin-subrail {
    flex-direction: column;
}

.dash-event-admin-subnav-group {
    width: 100%;
}

.dash-event-admin-subrail-title {
    border-bottom: 1px solid rgba(48, 134, 255, .18);
    color: var(--dash-blue-dark);
    font-size: 1.12rem;
    font-weight: 800;
    margin: 0 4px 10px;
    padding: 0 8px 12px;
}

.dash-event-admin-subnav {
    border: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding: 0;
    width: 100%;
}

.dash-event-admin-subnav .nav-link {
    background: transparent;
    border: 0;
    border-radius: 10px;
    color: var(--dash-ink);
    font-size: .9rem;
    font-weight: 800;
    min-height: 44px;
    padding: 10px 12px;
    text-align: left;
    width: 100%;
}

.dash-event-admin-subnav .nav-link:hover,
.dash-event-admin-subnav .nav-link:focus-visible {
    background: var(--dash-blue-gradient);
    box-shadow: 0 7px 16px rgba(10, 88, 202, .18);
    color: #fff;
}

.dash-event-admin-subnav .nav-link.active {
    background: var(--dash-blue-gradient);
    box-shadow: 0 7px 16px rgba(10, 88, 202, .18);
    color: #fff;
}

.dash-event-admin-subrail.is-inactive-preview .dash-event-admin-subnav .nav-link.active {
    background: transparent;
    box-shadow: none;
    color: var(--dash-ink);
}

.dash-event-admin-subrail.is-inactive-preview .dash-event-admin-subnav .nav-link:hover,
.dash-event-admin-subrail.is-inactive-preview .dash-event-admin-subnav .nav-link:focus-visible {
    background: var(--dash-blue-gradient);
    box-shadow: 0 7px 16px rgba(10, 88, 202, .18);
    color: #fff;
}

.dash-event-admin-current-event {
    font-size: 1.75rem;
    line-height: 1.2;
    max-width: min(32vw, 460px);
}

.dash-event-admin-date-heading {
    align-items: center;
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.dash-event-admin-native-page .dash-page-hero {
    display: none !important;
}

.dash-event-admin-native-page > section.py-5.bg-light,
.dash-event-admin-native-page > section.dash-scanner-page {
    background: transparent !important;
    min-height: 0;
    padding: 0 !important;
}

.dash-event-admin-native-page > section > .container,
.dash-event-admin-native-page > section > .container-fluid {
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100%;
}

.dash-event-admin-native-scanner > .dash-scanner-page > .container > .d-flex:first-child {
    display: none !important;
}

.dash-event-admin-content {
    min-width: 0;
}

.dash-event-admin-topbar,
.dash-event-admin-statusbar {
    background: #fff;
    border: 1px solid rgba(17, 23, 21, .10);
    border-radius: 24px;
    box-shadow: 0 14px 36px rgba(7, 18, 35, .07);
    margin-bottom: 18px;
    padding: 22px;
}

.dash-event-admin-topbar {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.dash-event-admin-statusbar {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    padding: 12px 8px 12px 32px;
}

.dash-event-admin-embed-frame {
    background: #fff;
    border: 0;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(7, 18, 35, .07);
    display: block;
    min-height: 720px;
    width: 100%;
}

.dash-event-admin-embed-frame-tall {
    min-height: 980px;
}

.dash-event-admin-setup-accordion .accordion-item {
    border: 1px solid rgba(17, 23, 21, .10);
    overflow: hidden;
}

.dash-event-admin-setup-toggle {
    align-items: flex-start;
    background: #fff;
    box-shadow: none !important;
    gap: 16px;
    padding: 24px;
}

.dash-event-admin-setup-toggle:not(.collapsed) {
    background: #fff;
    color: var(--dash-ink);
}

.dash-embedded-page {
    background: transparent !important;
}

.dash-embedded-page .dash-page-hero {
    display: none !important;
}

.dash-embedded-page .dash-page-main > section {
    background: transparent !important;
    padding: 0 !important;
}

.dash-embedded-page .dash-page-main > section > .container,
.dash-embedded-page .dash-page-main > section > .container-fluid {
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media (min-width: 1200px) {
    body.dash-event-admin-layout {
        --dash-event-admin-header-height: 76px;
        --dash-event-admin-rail-width: 78px;
        --dash-event-admin-subrail-width: 220px;
        background: #fff;
    }

    .dash-event-admin-shell {
        min-height: calc(100dvh - var(--dash-event-admin-header-height));
        padding: 0;
    }

    .dash-event-admin-wrap {
        display: block;
        margin: 0;
        max-width: none;
        min-height: calc(100dvh - var(--dash-event-admin-header-height));
        padding: 0;
        width: 100%;
    }

    .dash-event-admin-rail {
        align-self: auto;
        background: #eaf3ff;
        border: 0;
        border-radius: 0;
        bottom: 0;
        box-shadow: none;
        height: 100vh;
        height: 100dvh;
        left: 0;
        min-height: 0;
        overflow: visible;
        padding: var(--dash-event-admin-header-height) 0 16px;
        position: fixed;
        top: 0;
        width: var(--dash-event-admin-rail-width);
        z-index: 1020;
    }

    .dash-event-admin-subrail {
        background: #f1f6ff;
        border-right: 1px solid rgba(48, 134, 255, .18);
        bottom: 0;
        height: 100vh;
        height: 100dvh;
        left: var(--dash-event-admin-rail-width);
        overflow-x: hidden;
        overflow-y: auto;
        padding: calc(var(--dash-event-admin-header-height) + 68px) 12px 24px;
        position: fixed;
        top: 0;
        width: var(--dash-event-admin-subrail-width);
        z-index: 1021;
    }

    .dash-event-admin-brand {
        display: none;
    }

    .dash-event-admin-menu-toggle {
        align-items: center;
        background: var(--dash-blue-gradient);
        border: 1px solid rgba(7, 20, 38, .14);
        border-radius: 999px;
        box-shadow: 0 8px 18px rgba(10, 88, 202, .18);
        color: #fff;
        display: inline-flex;
        flex: 0 0 auto;
        height: 34px;
        justify-content: center;
        position: absolute;
        right: -42px;
        top: calc(var(--dash-event-admin-header-height) + 24px);
        transition: box-shadow .16s ease, transform .16s ease;
        width: 34px;
        z-index: 2;
    }

    .dash-event-admin-menu-toggle:hover,
    .dash-event-admin-menu-toggle:focus-visible {
        box-shadow: 0 10px 22px rgba(10, 88, 202, .24);
        transform: translateX(-2px);
    }

    .dash-event-admin-menu-restore {
        align-items: center;
        background: var(--dash-blue-gradient);
        border: 0;
        border-radius: 0 999px 999px 0;
        box-shadow: 0 8px 22px rgba(10, 88, 202, .22);
        color: #fff;
        font-size: 1.15rem;
        height: 48px;
        justify-content: center;
        left: 0;
        position: fixed;
        top: calc(var(--dash-event-admin-header-height) + 18px);
        width: 46px;
        z-index: 1046;
    }

    .dash-event-admin-nav {
        flex: 0 0 auto;
        gap: 0;
    }

    .dash-event-admin-nav .nav-link,
    .dash-event-admin-link {
        border-radius: 0;
        min-height: 62px;
        padding: 8px;
    }

    .dash-event-admin-nav .nav-link:hover {
        box-shadow: inset 4px 0 0 var(--dash-blue-dark);
        transform: none;
    }

    .dash-event-admin-nav .nav-link.active {
        box-shadow: inset 4px 0 0 var(--dash-blue-dark);
    }

    .dash-event-admin-nav-icon,
    .dash-event-admin-nav .nav-link.active .dash-event-admin-nav-icon {
        background: transparent;
        background-image: none;
        border-radius: 0;
        color: var(--dash-blue-dark);
        flex-basis: auto;
        font-size: 1.5rem;
        height: auto;
        width: auto;
    }

    .dash-event-admin-rail-actions {
        margin-top: auto;
        padding-top: 0;
    }

    .dash-event-admin-link {
        font-size: 1.3rem;
    }

    .dash-event-admin-content {
        margin-left: var(--dash-event-admin-rail-width);
        min-height: calc(100dvh - var(--dash-event-admin-header-height));
        padding: 18px 28px 56px;
        transition: margin-left .16s ease, width .16s ease;
        width: calc(100% - var(--dash-event-admin-rail-width));
    }

    body.dash-event-admin-layout.dash-event-admin-subnav-open .dash-event-admin-content {
        margin-left: calc(var(--dash-event-admin-rail-width) + var(--dash-event-admin-subrail-width));
        width: calc(100% - var(--dash-event-admin-rail-width) - var(--dash-event-admin-subrail-width));
    }

    body.dash-event-admin-layout.dash-account-admin-layout.dash-account-subnav-open .dash-event-admin-content {
        margin-left: var(--dash-event-admin-rail-width);
        width: calc(100% - var(--dash-event-admin-rail-width));
    }

    .dash-event-admin-content > .tab-content,
    .dash-event-admin-topbar,
    .dash-event-admin-statusbar,
    .dash-event-admin-content > .alert {
        margin-left: auto;
        margin-right: auto;
        max-width: 1480px;
    }

    body.dash-event-admin-layout.dash-event-admin-menu-hidden .dash-event-admin-rail,
    body.dash-event-admin-layout.dash-event-admin-menu-hidden .dash-event-admin-subrail {
        display: none !important;
    }

    body.dash-event-admin-layout.dash-event-admin-menu-hidden .dash-event-admin-menu-restore {
        display: inline-flex;
    }

    body.dash-event-admin-layout.dash-event-admin-menu-hidden .dash-event-admin-content {
        margin-left: 0;
        width: 100%;
    }

    body.dash-event-admin-layout footer,
    body.dash-event-admin-layout .d3f2 {
        position: relative;
        z-index: 1025;
    }
}

@media (max-width: 1199.98px) {
    body.dash-minimal-layout,
    body:has(.dash-event-admin-mobile-nav) {
        padding-bottom: 96px;
    }

    body.dash-event-admin-layout.dash-event-admin-mobile-subnav-open {
        padding-bottom: 134px;
    }

    .dash-event-admin-shell {
        padding-top: 10px;
    }

    .dash-event-admin-menu-toggle,
    .dash-event-admin-menu-restore {
        display: none !important;
    }

    .dash-event-admin-mobile-subnav {
        background: #fff;
        border: 0;
        border-top: 1px solid rgba(48, 134, 255, .18);
        bottom: calc(71px + env(safe-area-inset-bottom));
        box-shadow: 0 -8px 20px rgba(10, 88, 202, .08);
        left: 0;
        margin: 0;
        min-height: 54px;
        overflow-x: auto;
        padding: 7px 10px;
        position: fixed;
        right: 0;
        scrollbar-width: none;
        z-index: 1039;
    }

    .dash-event-admin-mobile-subnav::-webkit-scrollbar {
        display: none;
    }

    .dash-event-admin-mobile-subnav .dash-event-admin-subnav {
        flex-direction: row;
        flex-wrap: nowrap;
        min-width: max-content;
    }

    .dash-event-admin-mobile-subnav .dash-event-admin-subnav .nav-link {
        min-height: 40px;
        padding: 8px 14px;
        white-space: nowrap;
        width: auto;
    }

    .dash-event-admin-current-event {
        max-width: 100%;
    }

    .dash-event-admin-wrap {
        display: block;
        padding: 0 12px;
    }

    .dash-event-admin-topbar {
        align-items: stretch;
        flex-direction: column;
        padding: 18px;
    }

    .dash-event-admin-statusbar {
        justify-content: center;
    }

    .dash-event-admin-mobile-nav {
        background: #eaf3ff;
        border-radius: 0;
        border-top: 1px solid rgba(48, 134, 255, .18);
        bottom: 0;
        box-shadow: 0 -10px 30px rgba(10, 88, 202, .14);
        left: 0;
        min-height: calc(70px + env(safe-area-inset-bottom));
        overflow: visible;
        padding: 0 0 env(safe-area-inset-bottom);
        position: fixed;
        right: 0;
        z-index: 1040;
    }

    .dash-event-admin-mobile-scroll {
        -webkit-overflow-scrolling: touch;
        min-height: 70px;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-x: contain;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }

    .dash-event-admin-mobile-scroll::-webkit-scrollbar {
        display: none;
    }

    .dash-event-admin-mobile-nav .nav {
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 0;
        margin: 0;
        min-height: 70px;
        min-width: max-content;
        padding-bottom: 0 !important;
    }

    .dash-event-admin-mobile-nav .nav-item {
        align-items: stretch;
        display: flex;
        flex: 0 0 auto;
        max-width: none;
        min-width: 76px;
    }

    .dash-event-admin-mobile-nav .nav-link {
        align-items: center;
        background: transparent;
        border: 0;
        border-radius: 0;
        color: var(--dash-ink);
        display: flex;
        flex-direction: column;
        font-size: .76rem;
        font-weight: 800;
        gap: 3px;
        justify-content: center;
        min-height: 70px;
        padding: 6px 10px 8px;
        position: relative;
        width: 100%;
    }

    .dash-event-admin-mobile-nav .nav-link.active {
        background: #fff;
        box-shadow: 0 5px 14px rgba(10, 88, 202, .12);
        color: var(--dash-ink);
    }

    .dash-event-admin-mobile-nav .nav-link.active::before {
        background: var(--dash-blue-dark);
        bottom: 0;
        content: "";
        height: 4px;
        left: 0;
        pointer-events: none;
        position: absolute;
        right: 0;
    }

    .dash-event-admin-mobile-nav .dash-event-admin-nav-icon {
        background: transparent;
        flex-basis: auto;
        font-size: 1.25rem;
        height: 1.35rem;
        position: relative;
        width: 1.35rem;
        z-index: 1;
    }

    .dash-event-admin-mobile-nav .nav-link.active .dash-event-admin-nav-icon {
        background: transparent !important;
        background-image: none !important;
        color: var(--dash-blue-dark);
    }

    .dash-event-admin-scroll-arrow {
        align-items: center;
        background: rgba(10, 88, 202, .88);
        border: 1px solid rgba(255, 255, 255, .75);
        border-radius: 999px;
        box-shadow: 0 4px 12px rgba(10, 88, 202, .22);
        color: #fff;
        display: none;
        font-size: 1.75rem;
        height: 34px;
        justify-content: center;
        line-height: 1;
        padding: 0 0 3px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 34px;
        z-index: 5;
    }

    .dash-event-admin-scroll-arrow.left {
        left: 5px;
    }

    .dash-event-admin-scroll-arrow.right {
        right: 5px;
    }

    .dash-event-admin-scroll-arrow.visible {
        display: inline-flex;
    }

    .dash-event-admin-embed-frame,
    .dash-event-admin-embed-frame-tall {
        min-height: 900px;
    }
}

@media (max-width: 575.98px) {
    .dash-event-admin-statusbar > .d-flex:first-child {
        flex-wrap: wrap;
        width: 100%;
    }

    .dash-event-admin-statusbar > .d-flex:first-child .dash-event-admin-current-event {
        flex: 0 0 100%;
        max-width: none;
    }

    .dash-event-admin-statusbar > .d-flex:first-child .btn {
        flex: 1 1 0;
        font-size: .82rem;
        padding-left: 14px !important;
        padding-right: 14px !important;
        white-space: nowrap;
    }

    .dash-event-admin-statusbar > .d-flex:last-child {
        justify-content: center !important;
        width: 100%;
    }

    .dash-event-admin-statusbar > .d-flex:last-child .btn {
        font-size: .8rem;
        padding-left: 14px !important;
        padding-right: 14px !important;
        white-space: nowrap;
    }
}
