@media(max-width:480px) {
	
.sidebar {
	position: absolute;
	z-index: 4;
	background: rgba(0, 0, 0, 0.5);
	box-sizing: border-box;
	padding:20px;
	left:-100vw;
	transition: left 0.5s ease;
	min-height:100%;
}

.sidebar.on {
	left:-0vw;
}

.menu {
    width: calc(100vw - 40px);
}

.menu .div {
    width: 100%;
}
.not-mobile {
	display:none;
}

.menu-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
	background-color: var(--backgroundsection);
	border-top: 1px solid var(--neutral-40);
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	z-index:3;
}
.menu-footer a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.menu-footer a .img {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu-footer a.selected .img {
    background: var(--primary-100);
    border-radius: 8px;
}
.menu-footer a.selected .img svg path {
    stroke: var(--neutral-0);
}
.menu-footer .item-name {
    font-size: 12px;
    margin-top: 8px;
    color: var(--neutral-80);
}

}