.footer_container{
    width:100%;
    height:60px;
    box-shadow:rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display:flex;
    align-items:center;
    position:fixed;
    bottom:0;
    background:#020c1b;
    z-index:9999;
}
.footer_container .footer_menu{
    display:flex;
    align-items:center;
    justify-content:space-evenly;
    width:100%;
    padding:0px 15px;
}
.footer_container .footer_menu_item{
    display:flex;
    align-items:center;
    flex-direction:column;
    row-gap:5px;
}
.footer_container .footer_menu_item{
    cursor:pointer;
    color:var(--gray);
}
.footer_container .upload_menu_item{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius:50%;
    /*padding:10px;*/
    height:40px;
    width:40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:var(--gradient);
    color:var(--white);
}
.footer_container .upload_menu_item i{
    font-size:25px;
}
.footer_container .footer_menu_item.active{
    color:var(--white);   
}
.footer_container .footer_menu_item span{
    font-size:10px;
    font-weight:bold;
}
@media screen and (max-width: 768px) {
    .footer_container .footer_menu{
        justify-content:space-between;
    }
}