@keyframes dropdownFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes dropdownFadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.dropdown_enter {
    animation: dropdownFadeIn 0.3s ease forwards;
}

.dropdown_leave {
    animation: dropdownFadeOut 0.3s ease forwards;
}

.gnb_dropdown_wrapper {
    position: absolute;
    top: 88px;
    left: 260px;
    display: flex;
    z-index: var(--z-index-3);
    box-shadow: 0px 0px 12px 0px rgba(48, 53, 63, 0.06);
    border-radius: 4px;
}

.gnb_dropdown_panel {
    width: 200px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 8px 0 28px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    overflow: hidden;
}

.gnb_dropdown_panel.gnb_dropdown_panel_open {
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.gnb_dropdown_sub {
    width: 200px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-left: 0;
    border-radius: 0 4px 4px 0;
    padding: 8px 0 28px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    overflow: hidden;
}

.gnb_dropdown_option {
    width: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    height: 40px;
    padding: 12px 12px 12px 20px;
    background: #ffffff;
    cursor: pointer;
    text-decoration: none;
}

.gnb_dropdown_option span {
    font-size: 14px;
    font-weight: 400;
    color: #292a2d;
    line-height: 1.3;
    white-space: nowrap;
}

.gnb_dropdown_option_active,
.gnb_dropdown_option:hover {
    background: #f5f6f7;
}