#menu{
    position: fixed;
    left: 30px;
    display: flex;
    flex-direction: column;
    z-index: 100;
    align-items: flex-start;
    gap: 10px;
}
.check{
    display: inline-block;
    transform: rotate(45deg);
    height: 24px;
    width: 12px;
    border-bottom: 7px solid #78b13f;
    border-right: 7px solid #78b13f;
}
.cabinetwrapper,.menuwrapper, .nav, .menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menuwrapper{



}

.cabinetwrapper{


}

.nav {
    position: relative;
    background-color: #fff;
    padding: 20px;
    transition: 0.5s;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0,0,0,.2);
}

.nav img {
    height: 30px;
    width: 30px;
    position: absolute;
    left: 15px;
    margin: 3px;
}

.menu {
    margin: 0;
    padding: 0;
    width: 0;
    overflow: hidden;
    transition: 0.5s;
}

.nav input:checked ~ .menu {
    width: 450px;
}

.menu li {
    list-style: none;
    margin: 0 10px;
    white-space: nowrap;
}

.menu li a {
    text-decoration: none;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.5s;
}

.menu li a:hover {
    color: #161919;
}

.nav input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0;
}

.nav span {
    position: absolute;
    left: 20px;
    width: 30px;
    height: 4px;
    border-radius: 50px;
    background-color: #666;
    pointer-events: none;
    transition: 0.5s;
}

.nav input:checked ~ span {
    background-color: #f974a1;
}

.nav span:nth-child(2) {
    transform: translateY(-8px);
}

.nav input:checked ~ span:nth-child(2) {
    transform: translateY(0) rotate(-45deg);
}
.nav span:nth-child(3) {
    transform: translateY(8px);
}

.nav input:checked ~ span:nth-child(3) {
    transform: translateY(0) rotate(45deg);
}

#menuTop{
    height: 30px;
    display: flex;
    border-radius: 6px;
    background-image: linear-gradient(#ffffff 0%, #B3C9B2 100%);
    color: #25632C;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(0, 0, 0, .2);
    margin-bottom: 20px;
    justify-content: space-between;
}

#menuTop .nav-item{
    flex-direction: row-reverse;
    font-size: 0.8999rem;
    line-height: 1rem;
    align-items: center;
    min-width: 120px;
    justify-content: space-between;
    transition: all 800ms ease;
    display: flex;
    padding: 0px 5px;
}
#menuTop .nav-item:hover{
    background-color: #6ab99a !important;
}

#menuTop a {
    color: inherit;
    text-decoration: none;
    height: 100%;
    width: 100%;
    line-height: 30px;
    text-align: center;
}
#menuTop .nav-item:not(:last-of-type) {
    border-right: 1px solid #25632C;
}

#menuTop .nav-item:not(:first-of-type) {
    border-left: 1px solid #25632C;
}
#menuTop .nav-item.alert {
    color: red;
}
