/* ==========================================================
   UBUD ADVENTURES
   NAVIGATION
   PART 1
   Variables • Header • Navbar • Desktop Navigation
========================================================== */

/* ==========================================================
   VARIABLES
========================================================== */

:root {

    --nav-height: 72px;
    --nav-height-scroll: 64px;

    --nav-radius: 20px;

    --nav-bg: rgba(17, 24, 39, .28);
    --nav-bg-scroll: rgba(255, 255, 255, .96);

    --nav-border: rgba(255, 255, 255, .08);

    --nav-shadow: 0 20px 50px rgba(15, 23, 42, .12);

    --nav-transition: .35s cubic-bezier(.4, 0, .2, 1);

}

a {

    color: inherit;

    text-decoration: none;

    transition: var(--transition);

}

ul {

    list-style: none;

    margin: 0;

    padding: 0;

}

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

.ua-header {

    position: fixed;

    inset: 0 0 auto 0;

    width: 100%;

    z-index: 1100;

    transition: var(--nav-transition);

}

.ua-header::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, .28),
            rgba(0, 0, 0, 0));

    pointer-events: none;

    transition: var(--nav-transition);

}

/* ==========================================================
   NAVBAR
========================================================== */

.ua-navbar {

    position: relative;

    display: flex;

    align-items: center;

    height: var(--nav-height);

    background: var(--nav-bg);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--nav-border);

    transition: var(--nav-transition);

}

.ua-navbar .container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 2rem;

}

/* ==========================================================
   LOGO
========================================================== */

.ua-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}

.ua-logo-mark {
    width: 3px;
    height: 25px;
    border-radius: 999px;
    background: #F4B400;
    flex-shrink: 0;
}

.ua-logo-text {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
}

.ua-logo-ubud {
    color: #FFFFFF;
}

.ua-logo-adventures {
    color: #F4B400;
}

.ua-header.scrolled .ua-logo-ubud {
    color: #111827;
}

.ua-header.scrolled .ua-logo-adventures {
    color: #F4B400;
}

/* ==========================================================
   MOBILE LOGO
========================================================== */

@media (max-width:991.98px) {

    .ua-mobile-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
    }

    .ua-mobile-logo-mark {
        width: 3px;
        height: 22px;
        border-radius: 999px;
        background: #F4B400;
        flex-shrink: 0;
    }

    .ua-mobile-logo-text {
        display: flex;
        align-items: center;
        gap: 4px;
        line-height: 1;
        letter-spacing: -.02em;
        font-size: 1.18rem;
        font-weight: 800;
    }

    .ua-mobile-logo-ubud {
        color: #FFFFFF;
    }

    .ua-mobile-logo-adventures {
        color: #F4B400;
    }

}


/* ==========================================================
   DESKTOP NAVIGATION
========================================================== */

.ua-desktop-nav {

    margin-left: auto;

}

.ua-menu {

    display: flex;

    align-items: center;

    gap: .25rem;

}

.ua-item {

    position: relative;
    font-weight: 800;

}

.ua-link {

    position: relative;

    display: flex;

    align-items: center;

    gap: .45rem;

    height: var(--nav-height);

    padding: 0 18px;

    color: #fff;

    font-size: .95rem;

    font-weight: 600;

    cursor: pointer;

    transition: var(--nav-transition);

}

.ua-link:hover {

    color: var(--primary);

}

.ua-link i {

    font-size: .75rem;

    transition: transform .25s ease;

}

.ua-item:hover .ua-link i {

    transform: rotate(180deg);

}

/* Active Line */

.ua-link::after {

    content: "";

    position: absolute;

    left: 18px;

    bottom: 16px;

    width: 0;

    height: 2px;

    border-radius: 999px;

    background: var(--primary);

    transition: width .3s ease;

}

.ua-link:hover::after {

    width: calc(100% - 36px);

}

.ua-navbar .ua-link {

    color: #fff;

}

.ua-header.scrolled .ua-navbar .ua-link {

    color: var(--dark);

}

.ua-navbar .ua-whatsapp {

    color: #fff;

}

.ua-header.scrolled .ua-navbar .ua-whatsapp {

    color: var(--dark);

}

/* ==========================================================
   MEGA MENU
========================================================== */

.ua-dropdown {

    position: absolute;

    top: 0;

    left: 50%;

    width: min(1180px, 94vw);

    transform: translateX(-50%);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;

}

.ua-mega-wrapper {

    position: absolute;

    top: 100%;

    left: 0;

    width: 100%;

    padding-top: 12px;
    /* Jarak dari navbar */

    z-index: 1500;

    pointer-events: none;

}

.ua-dropdown-inner {

    display: grid;

    grid-template-columns: 280px 1fr;

    background: #fff;

    border-radius: 28px;

    overflow: hidden;

    max-height: calc(100vh - 130px);

    overflow-y: auto;

}

@media (max-width:1200px) {

    .ua-dropdown {

        width: min(1000px, 94vw);

    }

    .ua-dropdown-inner {

        grid-template-columns: 220px 1fr;

        gap: 24px;

    }

}

@media (max-width:992px) {

    .ua-mega-wrapper {

        display: none;

    }

}

.ua-dropdown.show {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: translateX(-50%) translateY(0);

}


.ua-item:hover>.ua-dropdown {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: translateX(-50%);

}

/* ==========================================================
   MEGA PANEL
========================================================== */

.ua-mega-panel {

    display: grid;

    grid-template-columns: 320px 1fr;

    background: #fff;

    border-radius: 28px;

    border: 1px solid #ececec;

    box-shadow: 0 30px 80px rgba(15, 23, 42, .12);

    overflow: hidden;

}


/* ==========================================================
   SIDEBAR
========================================================== */

.ua-mega-sidebar {

    padding: 40px;

    border-right: 1px solid #efefef;

    display: flex;

    flex-direction: column;

}


.ua-mega-badge {

    display: inline-flex;

    align-items: center;

    width: max-content;

    padding: 8px 14px;

    border-radius: 999px;

    background: #FFF7E3;

    color: #B7791F;

    font-size: .78rem;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;

}


.ua-mega-title {

    margin: 22px 0 18px;

    color: #111827;

    font-size: 1.8rem;

    font-weight: 800;

    line-height: 1.1;

}


.ua-mega-description {

    color: #6B7280;

    line-height: 1.8;

    font-size: 1rem;

}


.ua-mega-divider {

    width: 70px;

    height: 4px;

    border-radius: 999px;

    background: #F4B400;

    margin: 28px 0;

}


/* ==========================================================
   FEATURES
========================================================== */

.ua-mega-features {

    display: flex;

    flex-direction: column;

    gap: 18px;

}


.ua-feature {

    display: flex;

    align-items: flex-start;

    gap: 14px;

}


.ua-feature-icon {

    width: 46px;

    height: 46px;

    border-radius: 50%;

    background: #FFF9EB;

    color: #F4B400;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.15rem;

    flex-shrink: 0;

}


.ua-feature strong {

    display: block;

    color: #111827;

    font-size: .98rem;

    font-weight: 700;

    margin-bottom: 4px;

}


.ua-feature small {

    display: block;

    color: #6B7280;

    font-size: .88rem;

    line-height: 1.6;

}


/* ==========================================================
   SIDEBAR BUTTON
========================================================== */

.ua-sidebar-button {

    margin-top: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    height: 58px;

    border-radius: 18px;

    border: 2px solid #F4B400;

    color: #B7791F;

    font-weight: 700;

    transition: .3s;

}


.ua-sidebar-button:hover {

    background: #F4B400;

    color: #111827;

}


/* ==========================================================
   RIGHT CONTENT
========================================================== */

.ua-mega-content {

    display: flex;

    flex-direction: column;

    min-height: 100%;

    padding: 36px;

}


/* ==========================================================
   TOUR GRID
========================================================== */

.ua-tour-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    align-content: start;

}

/* ==========================================================
   TOUR CARD
========================================================== */

.ua-tour-card {

    position: relative;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 13px 15px;

    background: #fff;

    border: 1px solid #ECEFF3;

    border-radius: 16px;

    transition: all .28s ease;

}

.ua-tour-card:hover {

    background: #FCFCFD;

    border-color: #F4B400;

    transform: translateY(-3px);

    box-shadow: 0 16px 40px rgba(15, 23, 42, .08);

}


/* ==========================================================
   TOUR ICON
========================================================== */

.ua-tour-icon {

    width: 42px;

    height: 42px;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #FFF8E8;

    color: #F4B400;

    font-size: 1rem;

    flex-shrink: 0;

    transition: .3s;

}

.ua-tour-card:hover .ua-tour-icon {

    background: #F4B400;

    color: #111827;

}


/* ==========================================================
   TOUR INFO
========================================================== */

.ua-tour-info {

    flex: 1;

}

.ua-tour-info h4 {

    margin: 0 0 4px;

    font-size: .95rem;

    font-weight: 700;

    line-height: 1.35;

}

.ua-tour-info p {

    margin: 0;

    font-size: .82rem;

    line-height: 1.45;

    color: #6B7280;

}


/* ==========================================================
   TOUR ARROW
========================================================== */

.ua-tour-arrow {

    width: 30px;

    height: 30px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #9CA3AF;

}

.ua-tour-arrow i {

    font-size: .9rem;

}

.ua-tour-card:hover .ua-tour-arrow {

    background: #F4B400;

    color: #111827;

}

.ua-tour-card:hover .ua-tour-arrow i {

    transform: translateX(3px);

}


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

.ua-mega-footer {

    margin-top: 32px;

    padding-top: 28px;

    border-top: 1px solid #ECECEC;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 24px;

}


/* ==========================================================
   HELP
========================================================== */

.ua-mega-help {

    display: flex;

    align-items: center;

    gap: 16px;

}

.ua-help-icon {

    width: 54px;

    height: 54px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #FFF8E8;

    color: #F4B400;

    font-size: 1.35rem;

}

.ua-mega-help strong {

    display: block;

    color: #111827;

    font-size: 1rem;

    margin-bottom: 4px;

}

.ua-mega-help p {

    margin: 0;

    color: #6B7280;

    font-size: .9rem;

}


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

.ua-mega-actions {

    display: flex;

    align-items: center;

    gap: 14px;

}


/* ==========================================================
   WHATSAPP BUTTON
========================================================== */

.ua-chat-btn {

    height: 52px;

    padding: 0 22px;

    border-radius: 999px;

    display: flex;

    align-items: center;

    gap: 10px;

    background: #25D366;

    color: #fff;

    font-weight: 700;

    transition: .3s;

}

.ua-chat-btn:hover {

    background: #1EBE5D;

    color: #fff;

    transform: translateY(-2px);

}


/* ==========================================================
   VIEW BUTTON
========================================================== */

.ua-view-btn {

    height: 52px;

    padding: 0 22px;

    border-radius: 999px;

    display: flex;

    align-items: center;

    gap: 10px;

    background: #111827;

    color: #fff;

    font-weight: 700;

    transition: .3s;

}

.ua-view-btn:hover {

    background: #F4B400;

    color: #111827;

}

.ua-view-btn i {

    transition: .3s;

}

.ua-view-btn:hover i {

    transform: translateX(4px);

}

/* ==========================================================
   UBUD ADVENTURES
   NAVIGATION
   PART 2
   Right Actions • Hamburger • Scroll • Responsive
========================================================== */

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

.ua-actions {

    display: flex;

    align-items: center;

    gap: .75rem;

    margin-left: 2rem;

}

/* ==========================================================
   WHATSAPP
========================================================== */

.ua-whatsapp {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 44px;

    height: 44px;

    flex-shrink: 0;

    border-radius: 50%;

    color: #fff;

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition: var(--nav-transition);

}

.ua-whatsapp:hover {

    background: #25D366;

    color: #fff;

    transform: translateY(-2px);

}

/* ==========================================================
   BOOK BUTTON
========================================================== */

.ua-book {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    height: 46px;

    padding: 0 1.6rem;

    border-radius: 999px;

    background: var(--primary);

    color: var(--dark);

    font-weight: 700;

    white-space: nowrap;

    box-shadow:
        0 10px 25px rgba(244, 180, 0, .25);

    transition: var(--nav-transition);

}

.ua-book:hover {

    transform: translateY(-2px);

    box-shadow:
        0 18px 35px rgba(244, 180, 0, .35);

}

/* ==========================================================
   HAMBURGER
========================================================== */

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

.ua-toggle {

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #F4B400;

    transition: .3s;

}

.ua-toggle i {

    font-size: 1.2rem;
    line-height: 1;

}

.ua-toggle:hover {

    background: rgba(244, 180, 0, .10);

}

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

.ua-header.scrolled::before {

    opacity: 0;

}

.ua-header.scrolled .ua-navbar {

    height: var(--nav-height-scroll);

    background: var(--nav-bg-scroll);

    border-bottom: 1px solid rgba(229, 231, 235, .8);

    box-shadow: var(--nav-shadow);

}

.ua-header.scrolled .ua-link {

    color: var(--dark);

}

.ua-header.scrolled .ua-link:hover {

    color: var(--primary);

}

.ua-header.scrolled .ua-whatsapp {

    color: var(--dark);

    background: #F3F4F6;

}

.ua-header.scrolled .ua-toggle {

    color: var(--dark);

}

.ua-header.scrolled {

    filter: none;

}

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

body.ua-menu-open {

    overflow: hidden;

}

/* ==========================================================
   DESKTOP
========================================================== */

@media (min-width:992px) {

    .ua-desktop-nav {

        display: flex;

    }

    .ua-toggle {

        display: none;

    }

}

/* ==========================================================
   TABLET & MOBILE
========================================================== */

@media (max-width:991.98px) {

    .ua-navbar {

        height: 64px;

    }

    .ua-desktop-nav {

        display: none;

    }

    .ua-whatsapp {

        display: none;

    }

    .ua-book {

        display: none;

    }

    .ua-toggle {

        display: flex;

    }

}

/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width:576px) {

    .ua-navbar .container {

        gap: 1rem;

    }

    .ua-toggle {

        width: 44px;

        height: 44px;

    }

    .ua-toggle i {

        font-size: 1.65rem;

    }

}

/* ==========================================================
   UBUD ADVENTURES
   NAVIGATION
   PART 3
   Mobile Navigation
========================================================== */

/* ==========================================================
   MOBILE OVERLAY
========================================================== */

.ua-mobile {

    position: fixed;

    inset: 0;

    display: none;

    z-index: 2000;

}

.ua-mobile.active {

    display: block;

}

.ua-mobile-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background: rgba(15, 23, 42, .55);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

}

/* ==========================================================
   MOBILE PANEL
========================================================== */

.ua-mobile-panel {

    position: relative;

    z-index: 2;

    margin-left: auto;

    width: min(390px, 100vw);

    height: 100dvh;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    color: #fff;

    background:
        linear-gradient(180deg,
            #172554 0%,
            #12224F 45%,
            #0F172A 100%);

    box-shadow:
        -24px 0 60px rgba(0, 0, 0, .45);

    animation: uaMobileSlide .35s ease;

}

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

.ua-mobile-header {

    position: relative;

    z-index: 20;

    flex-shrink: 0;

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 24px;

    background: #172554;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

}

.ua-mobile-logo {

    display: flex;

    align-items: center;

    gap: 12px;

}

.ua-mobile-close {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;

    height: 38px;

    flex-shrink: 0;

    border-radius: 34%;

    color: #fff;

    background: rgba(255, 255, 255, .08);

    transition: .3s;

}

.ua-mobile-close:hover {

    background: rgba(158, 22, 22, 0.14);

    transform: rotate(90deg);

}

/* ==========================================================
   MOBILE CONTENT
========================================================== */

.ua-mobile-content {

    flex: 1;

    position: relative;

    overflow: hidden;

}

.ua-mobile-pages {

    position: relative;

    width: 100%;

    height: 100%;

}

.ua-mobile-page {

    display: none;

    width: 100%;

    height: 100%;

    overflow-y: auto;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;

}

.ua-mobile-page::-webkit-scrollbar {

    display: none;

}

.ua-mobile-page.active {

    display: block;

}

/* ==========================================================
   MOBILE MAIN MENU
========================================================== */

.ua-mobile-list {

    padding: 20px;

}

.ua-mobile-item {

    margin-bottom: 14px;

}

.ua-mobile-link {

    width: 100%;

    min-height: 66px;

    padding: 0 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 16px;

    border-radius: 18px;

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .06);

    color: #fff;

    font-size: 16px;

    font-weight: 700 !important;

    transition: .3s;

}

.ua-mobile-link span {

    flex: 1;

    text-align: left;

}

.ua-mobile-link i {

    font-size: 18px;

    color: var(--primary);

    transition: .25s;

}

.ua-mobile-link:hover {

    background: rgba(244, 180, 0, .12);

    border-color: rgba(244, 180, 0, .25);

    transform: translateX(6px);

}

.ua-mobile-link:hover i {

    transform: translateX(3px);

}

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

.ua-submenu-header {

    position: sticky;

    top: 0;

    z-index: 15;

    padding: 22px 24px;

    background: #172554;

    padding: 22px 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.ua-submenu-top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ua-back {
    width: 34px;
    height: 34px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border-radius: 34%;

    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);

    color: #fff;

    transition: .25s ease;
}

.ua-back:hover {
    background: rgba(244, 180, 0, .15);
    border-color: rgba(244, 180, 0, .25);
    color: #F4B400;
}

.ua-back i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;

    transform: translateX(-1px);
}

.ua-submenu-heading {
    flex: 1;
}

.ua-submenu-title {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
}

.ua-submenu-description {
    margin: 10px 0 0;
    max-width: 260px;

    color: #94A3B8;
    font-size: .95rem;
    line-height: 1.6;
}

.ua-submenu-divider {
    display: block;
    width: 54px;
    height: 3px;
    margin-top: 16px;

    border-radius: 999px;
    background: #F4B400;
}

/* ==========================================================
   SUBMENU
========================================================== */

.ua-submenu-nav {

    padding: 20px;

}

.ua-submenu-nav li {

    margin-bottom: 14px;

}

.ua-submenu-link {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 16px;

    min-height: 66px;

    padding: 0 22px;

    border-radius: 18px;

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .06);

    color: #fff;

    font-weight: 700;

    transition: .3s;

}

.ua-submenu-link span {

    flex: 1;

}

.ua-submenu-link i {

    color: var(--primary);

    transition: .25s;

}

.ua-submenu-link:hover {

    background: rgba(244, 180, 0, .12);

    border-color: rgba(244, 180, 0, .25);

    transform: translateX(6px);

}

.ua-submenu-link:hover i {

    transform: translateX(3px);

}

/* ==========================================================
   UBUD ADVENTURES
   NAVIGATION
   PART 4
   Footer • Animation • Responsive • Utilities
========================================================== */

/* ==========================================================
   MOBILE VIEW ALL
========================================================== */

.ua-submenu-footer {

    padding: 0 20px 20px;

}

.ua-mobile-view-all {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: 100%;

    height: 60px;

    border-radius: 18px;

    background: rgba(244, 180, 0, .12);

    border: 1px solid rgba(244, 180, 0, .22);

    color: var(--primary);

    font-weight: 700;

    transition: var(--nav-transition);

}

.ua-mobile-view-all:hover {

    background: var(--primary);

    color: var(--dark);

    transform: translateY(-2px);

}

.ua-mobile-view-all i {

    transition: .25s;

}

.ua-mobile-view-all:hover i {

    transform: translateX(4px);

}

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

.ua-mobile-footer {

    flex-shrink: 0;

    padding: 22px;

    background: #0F172A;

    border-top: 1px solid rgba(255, 255, 255, .08);

}

.ua-mobile-book {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 58px;

    border-radius: 999px;

    background: var(--primary);

    color: var(--dark);

    font-weight: 800;

    box-shadow:
        0 12px 30px rgba(244, 180, 0, .35);

    transition: var(--nav-transition);

}

.ua-mobile-book:hover {

    transform: translateY(-2px);

    box-shadow:
        0 18px 36px rgba(244, 180, 0, .40);

}

.ua-mobile-whatsapp {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 18px;

    color: #86EFAC;

    font-weight: 700;

    transition: var(--nav-transition);

}

.ua-mobile-whatsapp:hover {

    color: #25D366;

}

.ua-mobile-whatsapp i {

    font-size: 1.15rem;

}

/* ==========================================================
   MOBILE ANIMATION
========================================================== */

@keyframes uaMobileSlide {

    from {

        opacity: 0;

        transform: translateX(100%);

    }

    to {

        opacity: 1;

        transform: translateX(0);

    }

}

@keyframes uaFadeIn {

    from {

        opacity: 0;

    }

    to {

        opacity: 1;

    }

}

.ua-mobile.active .ua-mobile-overlay {

    animation: uaFadeIn .3s ease;

}

.ua-mobile.active .ua-mobile-panel {

    animation: uaMobileSlide .35s ease;

}

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

@media (max-width:576px) {

    .ua-mobile-panel {

        width: 100%;

    }

    .ua-mobile-header {

        padding: 0 18px;

    }

    .ua-mobile-content {

        padding: 0;

    }

    .ua-mobile-list,

    .ua-submenu-nav {

        padding: 18px;

    }

    .ua-mobile-link,

    .ua-submenu-link {

        min-height: 62px;

        padding: 0 18px;
        font-weight: 700;

    }

}

/* ==========================================================
   UTILITIES
========================================================== */

body.ua-menu-open {

    overflow: hidden;

    touch-action: none;

}

.ua-mobile a {

    text-decoration: none;

}

.ua-mobile button {

    font: inherit;

}

.ua-mobile img {

    user-select: none;

    -webkit-user-drag: none;

}

.ua-mobile * {

    -webkit-tap-highlight-color: transparent;

}

/* ==========================================================
   PERFORMANCE
========================================================== */

.ua-navbar,

.ua-dropdown,

.ua-mobile-panel,

.ua-mobile-link,

.ua-submenu-link,

.ua-book,

.ua-mobile-book {

    will-change: transform;

}