.material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'liga';
}

.topbar-brand-wrap {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}


#global-menu-layer.global-menu-layer {
    position: fixed;
    z-index: 10000;
    left: var(--gm-start-left, 0);
    top: var(--gm-start-top, 0);
    width: var(--gm-start-width, 60px);
    height: var(--gm-start-height, 60px);
    background: transparent;
    border-radius: 50%;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    transition:
        top .8s cubic-bezier(0.19, 1, 0.22, 1),
        left .8s cubic-bezier(0.19, 1, 0.22, 1),
        width .8s cubic-bezier(0.19, 1, 0.22, 1),
        height .8s cubic-bezier(0.19, 1, 0.22, 1),
        opacity .4s ease .3s,
        visibility 0s linear .8s,
        border-radius .8s ease;
}

#global-menu-layer.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    border-radius: 0;
    background: transparent;
    transition:
        top .8s cubic-bezier(0.19, 1, 0.22, 1),
        left .8s cubic-bezier(0.19, 1, 0.22, 1),
        width .8s cubic-bezier(0.19, 1, 0.22, 1),
        height .8s cubic-bezier(0.19, 1, 0.22, 1),
        opacity .4s ease,
        border-radius .8s ease;
}

#global-menu-layer.is-closing {
    visibility: visible;
    opacity: 1;
    pointer-events: none;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    border-radius: 0;
    background: transparent;
}

#global-menu-layer .gm-morph {
    position: fixed;
    z-index: 0;
    left: var(--gm-start-left, 0px);
    top: var(--gm-start-top, 0px);
    width: var(--gm-start-width, 36px);
    height: var(--gm-start-height, 36px);
    border-radius: 999px;
    background: rgba(255,255,255,0.98);
    outline: 1px solid rgba(0,0,0,0.08);
    transform: scale(0.7);
    opacity: 0;
    transition:
        left 1.05s cubic-bezier(0.19, 1, 0.22, 1),
        top 1.05s cubic-bezier(0.19, 1, 0.22, 1),
        width 1.05s cubic-bezier(0.19, 1, 0.22, 1),
        height 1.05s cubic-bezier(0.19, 1, 0.22, 1),
        border-radius 1.05s cubic-bezier(0.19, 1, 0.22, 1),
        transform 1.05s cubic-bezier(0.19, 1, 0.22, 1),
        opacity .16s ease .08s;
}

#global-menu-layer.is-open .gm-morph {
    left: 0;
    top: 0;
    width: 100vw;
    height: 100dvh;
    border-radius: 0;
    transform: scale(1);
    opacity: 1;
    background: rgba(255,255,255,0.98);
    outline: 1px solid rgba(0,0,0,0.04);
    transition:
        left 1.05s cubic-bezier(0.19, 1, 0.22, 1),
        top 1.05s cubic-bezier(0.19, 1, 0.22, 1),
        width 1.05s cubic-bezier(0.19, 1, 0.22, 1),
        height 1.05s cubic-bezier(0.19, 1, 0.22, 1),
        border-radius 1.05s cubic-bezier(0.19, 1, 0.22, 1),
        transform 1.05s cubic-bezier(0.19, 1, 0.22, 1),
        opacity .35s ease;
}

#global-menu-layer.is-closing .gm-morph {
    opacity: 0;
    left: calc(var(--gm-start-left) - 6px);
    top: calc(var(--gm-start-top) - 6px);
    width: calc(var(--gm-start-width) + 12px);
    height: calc(var(--gm-start-height) + 12px);
    border-radius: 999px;
    transform: scale(0.82);
}

#global-menu-layer .gm-shell {
    position: absolute;
    inset: 0;
    z-index: 1;
}

#global-menu-layer .gm-inner-container {
    opacity: 0;
    visibility: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: scale(0.985);
    transform-origin: center center;
    transition:
        opacity .18s ease,
        transform .22s ease,
        visibility 0s linear .18s;
}

#global-menu-layer.is-open .gm-inner-container {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition:
        opacity .35s ease .22s,
        transform .42s cubic-bezier(0.19, 1, 0.22, 1) .22s,
        visibility 0s linear 0s;
}

#global-menu-layer.is-closing .gm-inner-container {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity .12s ease,
        visibility 0s linear .12s;
}

#global-menu-layer .gm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 80px 24px;
}

#global-menu-layer .gm-tabs {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

#global-menu-layer .gm-tab-btn {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid transparent;
    background: transparent;
    padding: 0 16px;
    height: 42px;
    border-radius: 21px;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition:
        color .2s ease,
        background-color .2s ease,
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}



#global-menu-layer .gm-tab-btn.active {
    background: #111;
    color: #fff;
    box-shadow:
        0 6px 20px rgba(0,0,0,0.18),
        inset 0 0 0 1px rgba(255,255,255,0.08);
}


#global-menu-layer .gm-content-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    gap: 40px;
    padding: 40px 0;
    width: min(100%, 1040px);
    margin: 0 auto;
    box-sizing: border-box;
}

#global-menu-layer .gm-column {
    flex: 0 0 calc((100% - 80px) / 3);
    max-width: calc((100% - 80px) / 3);
    min-width: 0;
    opacity: 0;
    transform: translateY(16px) scale(0.985);
    transform-origin: center top;
    transition:
        opacity .16s ease,
        transform .18s ease;
}

#global-menu-layer.is-open .gm-tab-content.active .gm-column:nth-child(1) {
    transition:
        opacity .55s var(--gm-ease, cubic-bezier(0.19, 1, 0.22, 1)) .42s,
        transform .55s var(--gm-ease, cubic-bezier(0.19, 1, 0.22, 1)) .42s;
    opacity: 1;
    transform: translateY(0) scale(1);
}

#global-menu-layer.is-open .gm-tab-content.active .gm-column:nth-child(2) {
    transition:
        opacity .55s var(--gm-ease, cubic-bezier(0.19, 1, 0.22, 1)) .52s,
        transform .55s var(--gm-ease, cubic-bezier(0.19, 1, 0.22, 1)) .52s;
    opacity: 1;
    transform: translateY(0) scale(1);
}

#global-menu-layer.is-open .gm-tab-content.active .gm-column:nth-child(3) {
    transition:
        opacity .55s var(--gm-ease, cubic-bezier(0.19, 1, 0.22, 1)) .62s,
        transform .55s var(--gm-ease, cubic-bezier(0.19, 1, 0.22, 1)) .62s;
    opacity: 1;
    transform: translateY(0) scale(1);
}

#global-menu-layer.is-open .gm-tab-content.active .gm-column:nth-child(n+4) {
    transition:
        opacity .55s var(--gm-ease, cubic-bezier(0.19, 1, 0.22, 1)) .72s,
        transform .55s var(--gm-ease, cubic-bezier(0.19, 1, 0.22, 1)) .72s;
    opacity: 1;
    transform: translateY(0) scale(1);
}

#global-menu-layer.is-closing .gm-column {
    opacity: 0 !important;
    transform: translateY(8px) !important;
    transition:
        opacity .12s ease,
        transform .12s ease;
}

#global-menu-layer .gm-column h3 {
    font-size: 18px;
    font-weight: 700;
    border-bottom: 0;
    padding-bottom: 0;
    margin: 0 0 18px;
    color: #111;
}

#global-menu-layer .gm-column,
#global-menu-layer .gm-link-list,
#global-menu-layer .gm-link-btn {
    overflow: visible !important;
}

#global-menu-layer .gm-link-btn {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    min-height: 42px;
    border-radius: 14px;
    color: #444746;
    font-size: 15px;
    font-weight: 500;
    box-sizing: border-box;
    margin-left: -12px;
    padding: 6px 24px 6px 12px !important;
    background: transparent;
    transform: none !important;
    transition:
        background-color .18s ease,
        box-shadow .18s ease;
}

#global-menu-layer .gm-link-btn:hover,
#global-menu-layer .gm-link-btn:focus,
#global-menu-layer .gm-link-btn:active {
    text-decoration: none;
}


#global-menu-layer .gm-link-label {
    display: inline-block;
    width: auto;
    min-width: 0;
    vertical-align: middle;
    pointer-events: none;
    transition: color .2s ease;
}

#global-menu-layer .gm-link-btn.active {
    background: transparent !important;
    box-shadow: none !important;
}

#global-menu-layer .gm-link-btn.active .gm-link-label {
    color: #111;
    font-weight: 700;
    transform: none !important;
}


#global-menu-layer .gm-link-btn.active::before {
    content: "✓";
    position: absolute;
    left: -23px;
    top: 48%;
    transform: translateY(-48%);
    font-family: Arial, sans-serif !important;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    color: #111;
    pointer-events: none;
}

#global-menu-layer .gm-link-inner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    transform: none !important;
    transition: none !important;
}

#global-menu-layer .gm-link-btn:hover .gm-link-inner,
#global-menu-layer .gm-link-btn.active .gm-link-inner,
#global-menu-layer .gm-link-btn.active:hover .gm-link-inner {
    transform: none !important;
}



#global-menu-layer .gm-depth3-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 2px;
    margin-bottom: 2px;
    padding-left: 14px;
}

#global-menu-layer .gm-depth3-list::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(0,0,0,0.14);
    border-radius: 999px;
}

#global-menu-layer .gm-link-btn.gm-link-depth3 {
    margin-left: -8px;
    min-height: 34px;
    padding: 5px 20px 5px 8px !important;
    font-size: 14px;
    border-radius: 10px;
}




#global-menu-layer .gm-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin-left: 4px;
    padding: 2px 8px;
    height: 20px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

#global-menu-layer .gm-tab-content {
    display: none;
    width: 100%;
}

#global-menu-layer .gm-tab-content.active {
    display: block;
}

#global-menu-layer .gm-fixed-links-wrap {
    padding: 0 80px 42px;
    display: flex;
    justify-content: center;
}

#global-menu-layer .gm-fixed-links {
    width: min(100%, 1040px);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
}

#global-menu-layer .gm-fixed-link {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 36px;
    margin-left: -12px;
    padding: 5px 24px 5px 12px !important;
    border-radius: 12px;
    box-sizing: border-box;
    text-decoration: none;
    background: transparent;
    color: #444746;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    overflow: visible !important;
    line-height: 1 !important;
    transform: none !important;
    transition:
        background-color .18s ease,
        box-shadow .18s ease;
}

#global-menu-layer .gm-fixed-link-inner {
    display: inline-flex;
    align-items: center;
    height: 100%;
    gap: 8px;
    transform: none !important;
    transition: none !important;
}

#global-menu-layer .gm-fixed-link:hover .gm-fixed-link-inner,
#global-menu-layer .gm-fixed-link.active .gm-fixed-link-inner,
#global-menu-layer .gm-fixed-link.active:hover .gm-fixed-link-inner {
    transform: none !important;
}

#global-menu-layer .gm-fixed-link-label {
    display: inline-block;
    line-height: 1 !important;
}

#global-menu-layer .gm-fixed-link.active .gm-fixed-link-label {
    color: #111;
    font-weight: 700;
}

#global-menu-layer .gm-fixed-link.active::before {
    content: "✓";
    position: absolute;
    left: -23px;
    top: 50%;
    transform: translateY(-50%);
    font-family: Arial, sans-serif !important;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    color: #111;
}

#global-menu-btn:focus {
    outline: none;
    box-shadow: none;
}



#global-menu-btn.gm-more-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    background: transparent;
    transition: background-color .18s ease;
}


#global-menu-btn .gm-more-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.5px;
    color: #111;
    opacity: .88;
	padding-top: 0;
    padding-bottom: 4px;
    margin-top: -4px;
    margin-bottom: 0;
	padding-left: 2px;
    padding-right: 0;
    transform: translateY(-1px);
    transition:
        opacity .18s ease,
        transform .18s ease;
}

#global-menu-btn.gm-more-btn:hover .gm-more-dots {
    opacity: 1;
    transform: translateY(-1px) scale(1.04);
}

#global-menu-layer .gm-close-x {
    font-size: 32px;
    font-weight: 200;
    color: #111;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
	padding: 3px 11px 6px 11px;
}

@media (max-width: 980px) {
    #global-menu-layer .gm-header {
        padding: 32px 24px 18px;
        align-items: flex-start;
        gap: 18px;
    }

    #global-menu-layer .gm-content-body-wrap {
        display: flex;
        justify-content: center;
        padding: 40px 24px;
    }

    #global-menu-layer .gm-content-body {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-content: flex-start;
        gap: 28px;
        width: 100%;
        box-sizing: border-box;
        padding: 28px 24px;
    }

    #global-menu-layer .gm-column {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 0;
        opacity: 0;
        transform: translateY(16px) scale(0.985);
        transform-origin: center top;
        transition:
            opacity .16s ease,
            transform .18s ease;
    }

    #global-menu-layer .gm-column h3 {
        font-size: 17px;
        padding-bottom: 0;
        margin: 0 0 14px;
    }

    #global-menu-layer .gm-link-btn {
        min-height: 42px;
        margin-left: -10px;
        padding: 7px 16px 7px 10px !important;
        border-radius: 12px;
        font-size: 14px;
    }

    #global-menu-layer .gm-link-inner {
        gap: 6px;
    }

    #global-menu-layer .gm-link-btn.active::before {
        left: -20px;
        font-size: 18px;
    }

    #global-menu-layer .gm-fixed-links-wrap {
        padding: 0 24px 30px;
        display: block;
    }

    #global-menu-layer .gm-fixed-links {
        width: 100%;
        gap: 10px;
    }

    #global-menu-layer .gm-fixed-link {
        min-height: 36px;
        margin-left: -10px;
        padding: 6px 16px 6px 10px !important;
        font-size: 13px;
        border-radius: 10px;
    }

    #global-menu-layer .gm-fixed-link-inner {
        gap: 6px;
    }

    #global-menu-layer .gm-fixed-link.active::before {
        left: -18px;
        font-size: 18px;
    }
}


#global-menu-layer .gm-close-btn {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: 0 !important;
    outline: 0 !important;
    border-radius: 50%;
    background: transparent;
    color: #111;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none !important;
}

#global-menu-layer .gm-close-btn:hover,
#global-menu-layer .gm-close-btn:focus,
#global-menu-layer .gm-close-btn:active {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

/* 브라우저 기본 세로 스크롤바 얇고 연하게 */
html.gm-open {
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.14) transparent;
}

html.gm-open::-webkit-scrollbar {
    width: 6px;
}

html.gm-open::-webkit-scrollbar-track {
    background: transparent;
}

html.gm-open::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.12);
    border-radius: 999px;
}

html.gm-open::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.18);
}


#global-menu-layer .gm-tab-btn,
#global-menu-layer .gm-link-btn,
#global-menu-layer .gm-fixed-link,
#global-menu-layer .gm-close-btn,
#global-menu-btn.gm-more-btn {
    position: relative;
    overflow: hidden !important;
}


#global-menu-layer .gm-tab-btn > span:not(.ripple-clip-area),
#global-menu-layer .gm-link-btn > span:not(.ripple-clip-area),
#global-menu-layer .gm-link-btn .gm-link-inner,
#global-menu-layer .gm-fixed-link > span:not(.ripple-clip-area),
#global-menu-layer .gm-fixed-link .gm-fixed-link-inner,
#global-menu-layer .gm-close-btn > span:not(.ripple-clip-area),
#global-menu-btn.gm-more-btn > span:not(.ripple-clip-area),
#global-menu-btn.gm-more-btn .gm-more-dots {
    position: relative;
    z-index: 2;
}

#global-menu-layer .ripple-clip-area,
#global-menu-btn.gm-more-btn .ripple-clip-area {
    z-index: 1;
}


#global-menu-layer .gm-tab-btn.hvw-core-hover-menu:not(.active):hover,
#global-menu-layer .gm-link-btn.hvw-core-hover-menu:hover,
#global-menu-layer .gm-fixed-link.hvw-core-hover-menu:hover,
#global-menu-layer .gm-close-btn.hvw-core-hover-menu:hover,
#global-menu-btn.gm-more-btn.hvw-core-hover-menu:hover {
    background: #eceef2 !important;
}