/* Quick bar expand motion only */
.menu_btn_box ul {
    height: 0;
    transition: height 0.6s, padding 0.6s;
}

.menu_btn_box ul li {
    opacity: 0;
    transition: opacity 0.5s;
}

.menu_btn_box ul li:nth-of-type(1) { transition-delay: 0s; }
.menu_btn_box ul li:nth-of-type(2) { transition-delay: 0.05s; }
.menu_btn_box ul li:nth-of-type(3) { transition-delay: 0.1s; }
.menu_btn_box ul li:nth-of-type(4) { transition-delay: 0.1s; }

.menu_btn_box ul li + li {
    margin-top: 40px;
}

.menu_btn_box:hover ul,
.menu_btn_box:focus-within ul {
    height: 372px;
    padding: 40px 0;
}

.menu_btn_box:hover ul li,
.menu_btn_box:focus-within ul li {
    opacity: 1;
}

.menu_btn_box:hover ul li:nth-of-type(1),
.menu_btn_box:focus-within ul li:nth-of-type(1) { transition-delay: 0.15s; }
.menu_btn_box:hover ul li:nth-of-type(2),
.menu_btn_box:focus-within ul li:nth-of-type(2) { transition-delay: 0.25s; }
.menu_btn_box:hover ul li:nth-of-type(3),
.menu_btn_box:focus-within ul li:nth-of-type(3) { transition-delay: 0.35s; }
.menu_btn_box:hover ul li:nth-of-type(4),
.menu_btn_box:focus-within ul li:nth-of-type(4) { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
    .menu_btn_box ul,
    .menu_btn_box ul li {
        transition: none !important;
    }
}
