.bh_left_menu{
    display: flex;
    flex-flow: column;
    font-size: 1.15rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    gap: 20px;
}
.bh_left_menu_l{
    position: relative;
    outline: none;
    text-decoration: none;
    background-color: #ffffff;
    color: #000;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 10px;
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
}
.bh_left_menu_l:hover{
    background-color: #fff464;
    color: #000;
}

.bh_left_menu_l.active:before,
.bh_left_menu_l.active:after{
    content: "";
    position: absolute;
    top: 20px;
    width: 50px;
    height: 2px;
    background-color: #fff;
}
.bh_left_menu_l.active:hover{
    background-color: #fff;
    cursor: default;;
}
.bh_left_menu_l.active:before{
    right: -49px;
}
.bh_left_menu_l.active:after{
    left: -49px;
}
.bh_left_menu_l.bh_left_menu_l_order{
    background-color: #e5913f;
    color: #fff;
}
.bh_left_menu_l.bh_left_menu_l_order:hover{
    background-color: #fb9b2d;
}
.bh_left_menu_l.active.bh_left_menu_l_order,
.bh_left_menu_l.active.bh_left_menu_l_order:hover{
    background-color: #fb9b2d;
}
.bh_left_menu_l.active.bh_left_menu_l_order:before,
.bh_left_menu_l.active.bh_left_menu_l_order:after{
    background-color: #fb9b2d;
}