.slide_menu {
    background-color: rgba(0,0,0,0.0);
}

.slide_menu .stage {
    /* position: absolute;
    top: 0;
    width: 100%; height: 100%;
    display: inline-block;
    transition: left 0.5s;
    overflow: hidden; */
}

.slide_menu .stage > div:first-child {
    /* position: relative;
    width: 100%; height: 100%;
    overflow-x: hidden;
    overflow-y: auto; */
}

.slide_menu .stage > div:first-child .item {
    position: relative;
    box-sizing: border-box;
    border-radius: 0.8rem;
    width: calc(100% - 2px); 
    overflow: hidden;
    margin: 2px 0 2px 0;
}

.slide_menu .stage > div:first-child .item .title {
    position: relative;
    box-sizing: border-box;
    width: 100%; 
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.slide_menu .stage > div:first-child > .item > .title {
    padding: 0; padding-left: 2rem;
    line-height: 5rem;
    background-color: rgba(255,255,255,0.03);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.6rem;
    color: #fff;
}

.slide_menu .stage > div:first-child > .item > .title:hover {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
}

.slide_menu .stage > div:first-child > .item.active > .title {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
}

.slide_menu .stage > div:first-child > .item.active > .title:hover {
    background-color: rgba(255,255,255,0.3);
    color: #fff;
}

.slide_menu .stage > div:first-child > .item.group > .title {
    padding: 0; padding-left: 2rem;
    line-height: 5rem;
    background-color: rgba(255,255,255,0.03);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
}

.slide_menu .stage > div:first-child > .item.group > .title:hover {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
}

.slide_menu .stage > div:first-child > .item.group.active > .title {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
}

.slide_menu .stage > div:first-child > .item.group.active > .title:hover {
    background-color: rgba(255,255,255,0.3);
    color: #fff;
}

.slide_menu .stage > div:first-child > .item.group > .title:after {
    content: '⟩';
    position: absolute;
    right: 2.4rem; top: 50%; 
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2.4rem; color: #fff;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    transform-origin: center;
    transform: translateY(-50%) rotate(0deg) scaleY(0.7);
    z-index: 2;
    transition: transform 0.3s;
}

.slide_menu .stage > div:first-child > .item.back > .title {
    padding: 0; padding-left: 2rem;
    line-height: 4rem;
    width: 4rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 0.8rem;
    padding-left: 3.6rem;
    color: orange;
}

.slide_menu .stage > div:first-child > .item.back > .title:hover {
    background-color: rgba(255,255,255,0.3);
    color: orange;
}

.slide_menu .stage > div:first-child > .item.back > .title:after {
    content: '⟩';
    position: absolute;
    left: 1.4rem; top: 50%; 
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2.4rem; color: #fff;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    transform-origin: center;
    transform: translateY(-50%) rotate(180deg) scaleY(0.7);
    z-index: 2;
    transition: transform 0.3s;
}

