.sidebar{
    position:fixed;
    width:100%;
    height:67px;
    bottom:0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 50px;
    z-index:3;
    background:linear-gradient(var(--color0301),var(--color0302));
}
.sidebar-item{
    width:70px;
    text-align:center;
    text-decoration:none;
    font-family:Sahel-Light;
    font-size:12px;
    color:var(--color0304);
}
.sidebar-item i{
    font-size:25px;
    color:var(--color0303);
}
.sidebar span{
    font-family:Sahel-Bold;
}
.sidebar-home{
    margin-top:-50px;
    padding-top:8px;
    height:70px;
    border-radius:50px;
    background:var(--color0302);
    border:3px solid var(--color0303);
    width:70px;
    text-align:center;
}
.sidebar-home i{
    font-size:44px!important;
    color:var(--color0303);
}
@media screen and (max-width:600px){
    .sidebar{
        height:61px;
        padding:0 10px;
    }
}