.k-mobile-footer {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 55px;
    z-index: 999;
    box-shadow: 0 0 10px rgba(0, 0, 0, .11);
    display: none;
    z-index: 99999;
}

.mobile-footer-link-content {
    display: flex;
    height: 100%;
}

.mobile-tab-link {
    padding: 5px;
    width: calc(100% / 5);
    height: 100%;
    background: white;
    border-right: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-tab-icon {
    /* height: 100%; */
    /* background-color: white; */
    position: relative;
}



.mobile-footer-icon-badge {
    position: absolute;
    top: -11px;
    right: -11px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    padding: 0 3px;
    line-height: 20px;
    text-align: center;
    z-index: 2;
    color: #fff;
    background: var(--btn-bg-color);
}


@media (max-width:1080px) {
    .k-mobile-footer {
        display: block;
    }

}