#mobilefixed {
    opacity: 0;
    transition: bottom 600ms linear;
    background: #fff;
    display: block;
    position: fixed;
    z-index: 996;
    right: 0;
    left: 0;
    height: 64px;
    bottom: -100%;
}
.mobile_bottom_fixed_menu {
    padding: 12px 24px;
}
.mobile_bottom_menu {
    display: flex;
    justify-content: space-between;
}
.mobile_bottom_menu-item {
    text-align: center;
}
.mobile_bottom_menu-item svg {
    width: 24px;
    height: 24px;
}
.mobile_bottom_menu-item.active svg {
    fill: #FF8800;
    color: #FF8800;
}
.mobile_bottom_menu-item.active svg path {
    fill: #FF8800;
    color: #FF8800;
}
.mobile_bottom_menu-item_title {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    text-align: center;
    color: #888888;
}
.mobile_bottom_menu-item.active .mobile_bottom_menu-item_title {
    color: #FF8800;
}
.mobile_bottom_menu-item.active {
    color: #FF8800;
}
.mobile_bottom_menu-item_logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 768px)
{
    #mobilefixed {
        opacity: 1;
        bottom: 0;
        border-top: 1px solid #C5C7C9;
    }
}