.tpg-mega-menu {
    --tpg-menu-nav-bg: rgba(255, 255, 255, 0.94);
    --tpg-menu-nav-border: rgba(15, 23, 42, 0.12);
    --tpg-menu-nav-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --tpg-menu-link: #061a44;
    --tpg-menu-link-hover: #0057b8;
    --tpg-menu-active-bg: #eef5ff;
    --tpg-menu-active-text: #1f5fd1;
    --tpg-menu-bg: #ffffff;
    --tpg-menu-bg-soft: #f8fbff;
    --tpg-menu-text: #10253f;
    --tpg-menu-muted: #5d7086;
    --tpg-menu-border: rgba(16, 37, 63, 0.14);
    --tpg-menu-shadow: 0 22px 50px rgba(10, 29, 59, 0.16);
    --tpg-menu-accent: #0f63c9;
    --tpg-menu-accent-soft: rgba(15, 99, 201, 0.12);
    --tpg-menu-inner-max-width: 1170px;
    position: relative;
    z-index: 1000;
    width: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    font-size: 16px;
    margin-top: 12px;
    overflow: visible;
}

.tpg-mega-menu__list {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    list-style: none;
    margin: 0;
    width: 100%;
    max-width: var(--tpg-menu-inner-max-width);
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    padding: 0;
    gap: clamp(1rem, 1.8vw, 2.1rem);
}

.tpg-mega-menu .tpg-mega-menu__list,
.tpg-mega-menu .tpg-mega-menu__item {
    font-size: 16px;
}

.tpg-mega-menu__item {
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 15px;
}

.tpg-mega-menu__trigger-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 0;
    transition: color 0.16s ease;
}

.tpg-mega-menu__link {
    display: inline-flex;
    align-items: center;
    position: relative;
    min-height: 50px;
    padding: 0;
    color: var(--tpg-menu-link);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1;
    text-decoration: none;
    border-radius: 0;
    transition: color 0.16s ease;
}

.tpg-mega-menu .tpg-mega-menu__link,
.tpg-mega-menu .tpg-mega-menu__toggle {
    font-size: 16px !important;
}

.tpg-mega-menu__link:hover,
.tpg-mega-menu__link:focus-visible {
    color: var(--tpg-menu-link-hover);
    text-decoration: none;
    background: transparent;
}

.tpg-mega-menu__link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.5rem;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.16s ease;
}

.tpg-mega-menu__link:hover::after,
.tpg-mega-menu__link:focus-visible::after,
.tpg-mega-menu__link.is-active::after,
.tpg-mega-menu__item--active > .tpg-mega-menu__link::after,
.tpg-mega-menu__item--active > .tpg-mega-menu__trigger-wrap .tpg-mega-menu__link::after {
    transform: scaleX(1);
}

.tpg-mega-menu__item--has-panel .tpg-mega-menu__link {
    padding-right: 0;
}

.tpg-mega-menu__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    transition: color 0.16s ease;
}

.tpg-mega-menu__toggle:hover {
    color: var(--tpg-menu-link-hover);
    background: transparent;
}

.tpg-mega-menu__toggle:focus-visible {
    outline: 2px solid var(--tpg-menu-link-hover);
    outline-offset: 2px;
}

.tpg-mega-menu__chevron {
    width: 0.4rem;
    height: 0.4rem;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    transform: rotate(45deg);
    transition: transform 160ms ease;
}

.tpg-mega-menu__trigger-wrap:hover,
.tpg-mega-menu__trigger-wrap:focus-within,
.tpg-mega-menu__item:hover > .tpg-mega-menu__link,
.tpg-mega-menu__item:focus-within > .tpg-mega-menu__link {
    background: transparent;
}

.tpg-mega-menu__trigger-wrap:hover .tpg-mega-menu__link,
.tpg-mega-menu__trigger-wrap:hover .tpg-mega-menu__toggle,
.tpg-mega-menu__trigger-wrap:focus-within .tpg-mega-menu__link,
.tpg-mega-menu__trigger-wrap:focus-within .tpg-mega-menu__toggle,
.tpg-mega-menu__item:hover > .tpg-mega-menu__link,
.tpg-mega-menu__item:focus-within > .tpg-mega-menu__link {
    color: var(--tpg-menu-link-hover);
}

.tpg-mega-menu__link.is-active,
.tpg-mega-menu__item--active > .tpg-mega-menu__link,
.tpg-mega-menu__item--active > .tpg-mega-menu__trigger-wrap,
.tpg-mega-menu__item--has-panel.is-open > .tpg-mega-menu__trigger-wrap {
    background: transparent;
    color: var(--tpg-menu-active-text);
}

.tpg-mega-menu__item--active > .tpg-mega-menu__trigger-wrap .tpg-mega-menu__link,
.tpg-mega-menu__item--active > .tpg-mega-menu__trigger-wrap .tpg-mega-menu__toggle,
.tpg-mega-menu__item--has-panel.is-open > .tpg-mega-menu__trigger-wrap .tpg-mega-menu__link,
.tpg-mega-menu__item--has-panel.is-open > .tpg-mega-menu__trigger-wrap .tpg-mega-menu__toggle,
.tpg-mega-menu__link.is-active {
    color: inherit;
}

.tpg-mega-menu__item--open .tpg-mega-menu__chevron,
.tpg-mega-menu__item.is-open .tpg-mega-menu__chevron,
.tpg-mega-menu__item:hover .tpg-mega-menu__chevron,
.tpg-mega-menu__toggle[aria-expanded="true"] .tpg-mega-menu__chevron {
    transform: rotate(225deg);
}

.tpg-mega-menu__panel {
    display: none;
    border: 1px solid var(--tpg-menu-border);
    border-radius: 18px;
    background: var(--tpg-menu-bg);
    box-shadow: var(--tpg-menu-shadow);
    overflow: hidden;
    z-index: 120;
    transform: translateY(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.tpg-mega-menu__panel--explore {
    padding: 0;
}

.tpg-mega-menu__panel--news .tpg-mega-menu__columns {
    grid-template-columns: repeat(4, minmax(180px, 1fr));
}

.tpg-mega-menu__panel--queue-times .tpg-mega-menu__columns {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.tpg-mega-menu__panel--tickets .tpg-mega-menu__columns {
    grid-template-columns: repeat(4, minmax(180px, 1fr));
}

.tpg-mega-menu__panel--explore .tpg-mega-menu__columns {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.tpg-mega-menu__panel--live-blogs .tpg-mega-menu__columns {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    max-width: 760px;
}

.tpg-mega-menu__panel--hotels .tpg-mega-menu__columns {
    grid-template-columns: repeat(4, minmax(180px, 1fr));
}

.tpg-mega-menu__news-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tpg-mega-menu__news-item + .tpg-mega-menu__news-item {
    margin-top: 10px;
}

.tpg-mega-menu__news-date {
    display: block;
    margin-top: 4px;
    color: var(--tpg-menu-muted);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
}

.tpg-mega-menu__explore-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tpg-mega-menu__explore-link {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    color: var(--tpg-menu-text);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.tpg-mega-menu__explore-link:hover,
.tpg-mega-menu__explore-link:focus-visible {
    text-decoration: underline;
}

.tpg-mega-menu__item--has-panel.is-open .tpg-mega-menu__panel {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.tpg-mega-menu__panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--tpg-mega-border);
}

.tpg-mega-menu__panel-title {
    margin: 0 0 4px 0;
    color: var(--tpg-mega-text);
    font-size: 18px;
    font-weight: 800;
}

.tpg-mega-menu__panel-link {
    color: var(--tpg-mega-text);
    font-size: 14px;
    font-weight: 700;
}

.tpg-mega-menu__columns {
    display: grid;
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    gap: 0;
}

.tpg-mega-menu__column {
    min-width: 0;
    padding: 18px 18px 20px;
    border-left: 1px solid var(--tpg-menu-border);
}

.tpg-mega-menu__column:first-child {
    border-left: 0;
}

.tpg-mega-menu__column--waterparks {
    background: transparent;
}

.tpg-mega-menu__column-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    margin: 0 0 12px 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.tpg-mega-menu__column-toggle .tpg-mega-menu__sub-heading {
    margin: 0;
}

.tpg-mega-menu__column-toggle-icon {
    display: none;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 1px solid var(--tpg-menu-border);
    border-radius: 999px;
    font-size: 15px;
    line-height: 1;
}

.after-offcanvas,
#block-gavias-tico-tools {
    display: none !important;
}

.tpg-mega-menu__column.is-open .tpg-mega-menu__column-toggle-icon {
    transform: rotate(45deg);
}

.tpg-mega-menu__column-body[hidden] {
    display: none !important;
}

.tpg-mega-menu__sub-heading {
    margin: 0 0 12px 0;
    color: var(--tpg-menu-text);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.tpg-mega-menu__sub-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tpg-mega-menu__sub-list li + li {
    margin-top: 6px;
}

.tpg-mega-menu__sub-link {
    display: block;
    color: var(--tpg-menu-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    padding: 4px 0;
    border-radius: 6px;
    transition: color 0.16s ease, transform 0.16s ease;
}

.tpg-mega-menu__sub-link:hover,
.tpg-mega-menu__sub-link:focus-visible {
    color: var(--tpg-menu-accent);
    text-decoration: none;
    transform: translateX(2px);
}

.tpg-mega-menu__view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: var(--tpg-menu-accent);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: gap 0.16s ease, color 0.16s ease;
}

.tpg-mega-menu__view-all:hover,
.tpg-mega-menu__view-all:focus-visible {
    color: #0a4f9f;
    text-decoration: none;
    gap: 9px;
}

.tpg-mega-menu__secondary-section {
    display: block;
    width: 100%;
    margin: 12px 0 0;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    border: 0;
    text-indent: 0;
    clear: both;
}

.tpg-mega-menu__secondary-heading {
    margin: 12px 0 8px 0 !important;
    padding: 0 !important;
    color: var(--tpg-menu-text);
    font-size: 15px;
    font-weight: 800;
    text-transform: none;
    letter-spacing: 0.01em;
    text-indent: 0;
}

.tpg-mega-menu__secondary-section .tpg-mega-menu__sub-list {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

.tpg-mega-menu__secondary-section .tpg-mega-menu__sub-list li {
    margin-left: 0;
    padding-left: 0;
}

.tpg-mega-menu__secondary-section .tpg-mega-menu__sub-list li + li {
    margin-top: 6px;
}

.tpg-mega-menu__secondary-section .tpg-mega-menu__sub-link {
    display: block;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
    padding: 2px 0;
}

.tpg-mega-menu__parks-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 14px;
}

.tpg-mega-menu__park-card {
    border: 1px solid var(--tpg-mega-border);
    border-radius: 10px;
    background: var(--tpg-mega-surface-2);
    overflow: hidden;
}

.tpg-mega-menu__park-card-link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    color: inherit;
    text-decoration: none;
}

.tpg-mega-menu__park-card-link:hover,
.tpg-mega-menu__park-card-link:focus-visible {
    box-shadow: inset 0 0 0 2px var(--tpg-mega-accent);
}

.tpg-mega-menu__park-logo-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    background: #e7edf7;
    overflow: hidden;
}

.tpg-mega-menu__park-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tpg-mega-menu__park-name {
    color: var(--tpg-mega-text);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
}

.tpg-mega-menu__park-type {
    color: var(--tpg-mega-muted);
    font-size: 12px;
    font-weight: 600;
}

.tpg-mega-menu__park-cta {
    color: var(--tpg-mega-accent);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tpg-mega-menu__empty {
    padding: 10px 0 0;
    margin: 0;
    color: var(--tpg-menu-muted);
    font-size: 13px;
}

body.dark .tpg-mega-menu,
body.dark-mode .tpg-mega-menu,
body.theme-dark .tpg-mega-menu,
html.dark-mode .tpg-mega-menu,
[data-theme="dark"] .tpg-mega-menu,
.dark .tpg-mega-menu,
.dark-mode .tpg-mega-menu,
.theme-dark .tpg-mega-menu {
    --tpg-menu-nav-bg: transparent;
    --tpg-menu-nav-border: transparent;
    --tpg-menu-nav-shadow: none;
    --tpg-menu-link: #ffffff;
    --tpg-menu-link-hover: #ffffff;
    --tpg-menu-active-bg: rgba(125, 211, 252, 0.14);
    --tpg-menu-active-text: #ffffff;
    --tpg-menu-bg: #121c2c;
    --tpg-menu-bg-soft: #162234;
    --tpg-menu-text: #ffffff;
    --tpg-menu-muted: #a8b8cd;
    --tpg-menu-border: rgba(179, 198, 219, 0.2);
    --tpg-menu-shadow: 0 20px 46px rgba(0, 0, 0, 0.44);
    --tpg-menu-accent: #ffffff;
    --tpg-menu-accent-soft: rgba(100, 177, 255, 0.18);
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

body.dark .tpg-mega-menu a.tpg-mega-menu__link,
body.dark-mode .tpg-mega-menu a.tpg-mega-menu__link,
body.theme-dark .tpg-mega-menu a.tpg-mega-menu__link,
html.dark-mode .tpg-mega-menu a.tpg-mega-menu__link,
[data-theme="dark"] .tpg-mega-menu a.tpg-mega-menu__link,
.dark .tpg-mega-menu a.tpg-mega-menu__link,
.dark-mode .tpg-mega-menu a.tpg-mega-menu__link,
.theme-dark .tpg-mega-menu a.tpg-mega-menu__link,
body.dark .tpg-mega-menu a.tpg-mega-menu__sub-link,
body.dark-mode .tpg-mega-menu a.tpg-mega-menu__sub-link,
body.theme-dark .tpg-mega-menu a.tpg-mega-menu__sub-link,
html.dark-mode .tpg-mega-menu a.tpg-mega-menu__sub-link,
[data-theme="dark"] .tpg-mega-menu a.tpg-mega-menu__sub-link,
.dark .tpg-mega-menu a.tpg-mega-menu__sub-link,
.dark-mode .tpg-mega-menu a.tpg-mega-menu__sub-link,
.theme-dark .tpg-mega-menu a.tpg-mega-menu__sub-link,
body.dark .tpg-mega-menu a.tpg-mega-menu__view-all,
body.dark-mode .tpg-mega-menu a.tpg-mega-menu__view-all,
body.theme-dark .tpg-mega-menu a.tpg-mega-menu__view-all,
html.dark-mode .tpg-mega-menu a.tpg-mega-menu__view-all,
[data-theme="dark"] .tpg-mega-menu a.tpg-mega-menu__view-all,
.dark .tpg-mega-menu a.tpg-mega-menu__view-all,
.dark-mode .tpg-mega-menu a.tpg-mega-menu__view-all,
.theme-dark .tpg-mega-menu a.tpg-mega-menu__view-all {
    color: #ffffff;
}

body.dark .tpg-mega-menu > .tpg-mega-menu__list,
body.dark-mode .tpg-mega-menu > .tpg-mega-menu__list,
body.theme-dark .tpg-mega-menu > .tpg-mega-menu__list,
html.dark-mode .tpg-mega-menu > .tpg-mega-menu__list,
[data-theme="dark"] .tpg-mega-menu > .tpg-mega-menu__list,
.dark .tpg-mega-menu > .tpg-mega-menu__list,
.dark-mode .tpg-mega-menu > .tpg-mega-menu__list,
.theme-dark .tpg-mega-menu > .tpg-mega-menu__list,
body.dark .tpg-mega-menu .tpg-mega-menu__item,
body.dark-mode .tpg-mega-menu .tpg-mega-menu__item,
body.theme-dark .tpg-mega-menu .tpg-mega-menu__item,
html.dark-mode .tpg-mega-menu .tpg-mega-menu__item,
[data-theme="dark"] .tpg-mega-menu .tpg-mega-menu__item,
.dark .tpg-mega-menu .tpg-mega-menu__item,
.dark-mode .tpg-mega-menu .tpg-mega-menu__item,
.theme-dark .tpg-mega-menu .tpg-mega-menu__item,
body.dark .tpg-mega-menu .tpg-mega-menu__trigger-wrap,
body.dark-mode .tpg-mega-menu .tpg-mega-menu__trigger-wrap,
body.theme-dark .tpg-mega-menu .tpg-mega-menu__trigger-wrap,
html.dark-mode .tpg-mega-menu .tpg-mega-menu__trigger-wrap,
[data-theme="dark"] .tpg-mega-menu .tpg-mega-menu__trigger-wrap,
.dark .tpg-mega-menu .tpg-mega-menu__trigger-wrap,
.dark-mode .tpg-mega-menu .tpg-mega-menu__trigger-wrap,
.theme-dark .tpg-mega-menu .tpg-mega-menu__trigger-wrap,
body.dark .tpg-mega-menu a.tpg-mega-menu__link,
body.dark-mode .tpg-mega-menu a.tpg-mega-menu__link,
body.theme-dark .tpg-mega-menu a.tpg-mega-menu__link,
html.dark-mode .tpg-mega-menu a.tpg-mega-menu__link,
[data-theme="dark"] .tpg-mega-menu a.tpg-mega-menu__link,
.dark .tpg-mega-menu a.tpg-mega-menu__link,
.dark-mode .tpg-mega-menu a.tpg-mega-menu__link,
.theme-dark .tpg-mega-menu a.tpg-mega-menu__link,
body.dark .tpg-mega-menu .tpg-mega-menu__toggle,
body.dark-mode .tpg-mega-menu .tpg-mega-menu__toggle,
body.theme-dark .tpg-mega-menu .tpg-mega-menu__toggle,
html.dark-mode .tpg-mega-menu .tpg-mega-menu__toggle,
[data-theme="dark"] .tpg-mega-menu .tpg-mega-menu__toggle,
.dark .tpg-mega-menu .tpg-mega-menu__toggle,
.dark-mode .tpg-mega-menu .tpg-mega-menu__toggle,
.theme-dark .tpg-mega-menu .tpg-mega-menu__toggle {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Theme-level dark wrappers can paint a strip behind the mega menu row. */
body.dark-mode .highlighted,
body.dark-mode .before_content,
body.dark-mode .after_content,
html.dark-mode .highlighted,
html.dark-mode .before_content,
html.dark-mode .after_content,
[data-theme="dark"] .highlighted,
[data-theme="dark"] .before_content,
[data-theme="dark"] .after_content {
    background-color: transparent !important;
}

/* Override the theme dark wrapper rule that paints #12161d behind the menu row. */
body.dark-mode .body-page,
body.dark-mode .main,
body.dark-mode .content,
body.dark-mode .before_content,
body.dark-mode .after_content,
body.dark-mode .highlighted {
    background-color: transparent !important;
}

@media (min-width: 901px) {
    .tpg-mega-menu__item--has-panel {
        position: static;
    }

    .tpg-mega-menu__item--has-panel .tpg-mega-menu__panel {
        position: absolute;
        left: 50%;
        right: auto;
        top: calc(100% + 10px);
        width: min(var(--tpg-menu-inner-max-width), calc(100vw - 32px));
        max-width: var(--tpg-menu-inner-max-width);
        display: block;
        transform: translateX(-50%) translateY(0);
        transition: opacity 0.12s ease, visibility 0.12s ease;
    }

    .tpg-mega-menu__item--has-panel.is-open .tpg-mega-menu__panel {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .tpg-mega-menu__panel--queue-times,
    .tpg-mega-menu__panel--explore {
        max-width: 900px;
    }

    .tpg-mega-menu__item--has-panel .tpg-mega-menu__panel--live-blogs {
        width: min(620px, calc(100vw - 32px));
        max-width: 620px;
    }

    .tpg-mega-menu__column-toggle {
        cursor: default;
        pointer-events: none;
    }

    .tpg-mega-menu__column-toggle-icon {
        display: none;
    }
}

@media (max-width: 1100px) and (min-width: 901px) {
    .tpg-mega-menu__list {
        gap: 0.9rem;
    }

    .tpg-mega-menu__link,
    .tpg-mega-menu .tpg-mega-menu__link,
    .tpg-mega-menu .tpg-mega-menu__toggle {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 900px) {
    .tpg-mega-menu {
        border-radius: 14px;
        border: 1px solid var(--tpg-menu-nav-border);
        background: var(--tpg-menu-nav-bg);
        box-shadow: var(--tpg-menu-nav-shadow);
        backdrop-filter: blur(8px);
        font-size: 16px;
    }

    .tpg-mega-menu__list {
        flex-direction: column;
        align-items: stretch;
        padding: 6px;
        gap: 0;
    }

    .tpg-mega-menu__columns {
        grid-template-columns: 1fr;
    }

    .tpg-mega-menu__panel--news .tpg-mega-menu__columns,
    .tpg-mega-menu__panel--queue-times .tpg-mega-menu__columns,
    .tpg-mega-menu__panel--tickets .tpg-mega-menu__columns,
    .tpg-mega-menu__panel--explore .tpg-mega-menu__columns,
    .tpg-mega-menu__panel--live-blogs .tpg-mega-menu__columns,
    .tpg-mega-menu__panel--hotels .tpg-mega-menu__columns {
        grid-template-columns: 1fr;
    }

    .tpg-mega-menu__panel {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        border-radius: 10px;
        border: 1px solid var(--tpg-menu-border);
        box-shadow: none;
        margin: 0 0 6px;
    }

    .tpg-mega-menu__item--has-panel .tpg-mega-menu__panel {
        display: none;
    }

    .tpg-mega-menu__item--has-panel.is-open .tpg-mega-menu__panel {
        display: block;
    }

    .tpg-mega-menu__column {
        border-left: 0;
        border-top: 1px solid var(--tpg-menu-border);
        padding: 14px 14px 16px;
    }

    .tpg-mega-menu__column:first-child {
        border-top: 0;
    }

    .tpg-mega-menu__column--waterparks {
        background: transparent;
    }

    .tpg-mega-menu__trigger-wrap {
        justify-content: space-between;
        min-height: 44px;
    }

    .tpg-mega-menu__link {
        width: 100%;
        min-height: 44px;
        padding: 0 12px;
        border-radius: 10px;
    }

    .tpg-mega-menu__toggle {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        margin-right: 0;
    }

    .tpg-mega-menu__parks-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) and (min-width: 520px) {
    .tpg-mega-menu__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tpg-mega-menu__panel--news .tpg-mega-menu__columns,
    .tpg-mega-menu__panel--tickets .tpg-mega-menu__columns,
    .tpg-mega-menu__panel--hotels .tpg-mega-menu__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tpg-mega-menu__panel--queue-times .tpg-mega-menu__columns,
    .tpg-mega-menu__panel--explore .tpg-mega-menu__columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tpg-mega-menu__panel--live-blogs .tpg-mega-menu__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tpg-mega-menu__column {
        border-top: 0;
        border-left: 1px solid var(--tpg-menu-border);
    }

    .tpg-mega-menu__column:nth-child(2n + 1) {
        border-left: 0;
    }

    .tpg-mega-menu__panel--queue-times .tpg-mega-menu__column,
    .tpg-mega-menu__panel--explore .tpg-mega-menu__column {
        border-left: 1px solid var(--tpg-menu-border);
    }

    .tpg-mega-menu__panel--queue-times .tpg-mega-menu__column:nth-child(2n + 1),
    .tpg-mega-menu__panel--explore .tpg-mega-menu__column:nth-child(2n + 1) {
        border-left: 1px solid var(--tpg-menu-border);
    }

    .tpg-mega-menu__panel--queue-times .tpg-mega-menu__column:nth-child(3n + 1),
    .tpg-mega-menu__panel--explore .tpg-mega-menu__column:nth-child(3n + 1) {
        border-left: 0;
    }
}
