@media only screen and (min-width: 996px) {
    .ml_mbbot {
        display: none;
    }
    .ml_sidebar {
        position: fixed;
        bottom: 20%;
        right: 2%;
        z-index: 99999;
        /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    }
        .ml_sidebar ul {
            background-color: rgb(0,0,0, 0.9);
            border-radius: 40px;
            padding: 20px 0;
        }
    .ml_sidebar ul li {
        width: 65px;
        height: 65px;
        text-align: center;
        color: #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: 50px;
        width: 200px;
        position: absolute;
        background-color: rgb(0,0,0, 0.9);
        color: #fff;
        right: 130%;
        top: 0;
        display: flex;
        align-items: center;
        border-radius: 5px;
        flex-direction: column;
        justify-content: center;
        opacity: 0;
        border-bottom: 1px solid var(--main-color);   visibility: hidden !important;

    }
    .ml_sidebar_pos_code {
        width: 100px !important;
        height: 100px !important;
        padding: 10px;
        border-radius: 5px;
        top: -15px;
    }
    .ml_sidebar_pos_code img {
        width: 100%;
    }
    .ml_sidebar ul li:hover .ml_sidebar_pos {
        opacity: 1 !important;   visibility: visible !important;
    }
    .backtotop {
        border-bottom: none !important;
        height: 0 !important;
        overflow: hidden;
        transition: var(--main-transition);
    }
    .ml_sidebar_show {
        height: 65px !important;
    }
    .ang_ois {
        position: relative;
    }
    .ang_ois::after {
        content: '';
        position: absolute;
        top: 5px;
        /* left: -50px; */
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 15px solid #000;
        right: -50px;
        transform: rotate(90deg);
    }
    .ang_ois1 {
        position: relative;
    }
    .ang_ois1::after {
        content: '';
        position: absolute;
        top: 30px;
        /* left: -50px; */
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 15px solid #000;
        right: -21px;
        transform: rotate(90deg);
    }
}

@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: rgb(0, 0, 0, 0.9);
        width: 100%;
        height: 60px;
    }
    .ml_mbbot li {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /*border-right: 1px solid #fff;*/
        align-items: center;
    }
    .ml_mbbot li i {
        font-size: 20px !important;
        color: #fff;
    }
    .ml_mbbot li p {
        font-size: 14px;
        color: #fff;
    }
}