@media only screen and (min-width: 996px) {
    .ml_mbbot {
        display: none;
    }
    .ml_sidebar {
        position: fixed;
        bottom: 50%;
        right: 0px;
        z-index: 99999;
        /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    }
    .ml_sidebar ul li {
        width: 65px;
        height: 65px;
        background-color: var(--primary-color);
        text-align: center;
        color: #fff;
        border-bottom: 1px solid #fff;
        cursor: pointer;
        position: relative;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
    .ml_sidebar ul li i {
        font-size: 30px !important;
    }
    .ml_sidebar ul li span {
        font-size: 12px !important;
    }
    .ml_sidebar_pos {
        transition: all ease 0.4s;
        height: 65px;
        width: 200px;
        position: absolute;
        background-color: var(--primary-color);
        color: #fff;
        right: 100%;
        top: 0;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        transform: rotateX(90deg);
        border-bottom: 1px solid var(--primary-color);
    }
    .ml_sidebar_pos_code {
        width: 150px !important;
        height: 150px !important;
        padding: 10px;
    }
    .ml_sidebar_pos_code img {
        width: 100%;
    }
    .ml_sidebar ul li:hover .ml_sidebar_pos {
        transform: rotateX(0deg);
    }
    .backtotop {
        border-bottom: none !important;
        transition: var(--main-transition);
        opacity: 0;
        visibility: hidden;
    }
    .ml_sidebar_show1 {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

@media only screen and (max-width: 996px) {
    .ml_sidebar {
        display: none;
    }
    .ml_mbbot {
        z-index: 99999;
        position: fixed;
        bottom: 0;
        display: flex;
        justify-content: space-between;
        left: 0;
        /* background-color: #ff2f2f; */
        width: 100%;
        /* height: 75px; */
    }
    .ml_mbbot li {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-right: 1px solid #fff;
        align-items: center;
        width: 100%;
    }
    .ml_mbbot li a{display: flex;align-items: center;color: #fff;font-size: 24px;width:100%;}
    @keyframes shake {
    0% {
        transform: translateX(0);
    }
    2% {
        transform: translateX(-5px);
    }
    4% {
        transform: translateX(5px);
    }
    6% {
        transform: translateX(-5px);
    }
    8% {
        transform: translateX(5px);
    }
    10% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(0);
    }
}
    .ml_mbbot li a img{animation: shake 5s ease-in-out infinite;width: 100%;}
}