.mobile_view {
    display: none;
}
/*Medium Layout: 1280*/
@media only screen and (min-width: 992px) and (max-width: 1200px){

}

/*Tablet Layout: 768px*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    
}

/*Mobile Layout: 320px*/
@media only screen and (max-width: 767px) {
    .mobile_view {
        display: block;
    }
    .logo {
        text-align: center;
    }
    .apps-icon {
        display: none;
    }
    table th, table td {
        font-size: 12px;
    }
    nav.main-menu-section {
        display: none;
    }
    .sticky-area-mobile-view {
        position: fixed;
        bottom: 0;
        z-index: 9999;
        background: var(--primary-color);
        width: 100%;
        height: 65px;
        border-top: 1px solid #fff;
    }
    .mobile-sticky-bar-common-style {
        width: 25%;
        float: left;
        padding: 10px 0;
        cursor: pointer;
    }
    .mobile-sticky-bar-common-style i.fa {
        color: #fff;
        font-size: 22px;
    }
    .mobile-sticky-bar-common-style p {
        color: #fff;
        text-transform: capitalize;
        padding: 0;
        margin: 0;
        margin-top: -3px;
    }
    ul.mobile-menu {
        list-style: none;
        padding: 0;
        margin: 0;
        background: var(--secondary-color);
        position: fixed;
        bottom: 65px;
        right: -100%;
        padding-top: 30px;
        z-index: 9999;
        width: 100%;
        opacity: 0;
        overflow: scroll;
        height: 91.5%;
        transition: all 0.5s;
    }
    ul.mobile-menu #close {
        position: absolute;
        right: 12px;
        top: 20px;
        color: red;
        font-size: 25px;
        cursor: pointer;
        border: 1px solid red;
        padding: 3px 5px;
        background: #fff;
    }
    ul.mobile-menu li a {
        color: #fff;
        font-size: 1em;
        font-weight: 400;
        text-transform: uppercase;
        border-bottom: 1px solid #fff;
        text-decoration: none;
        transition: all 0.5s;
        display: block;
        padding: 10px 20px;
    }
    
}
/*Wide Mobile Layout: 480px*/

@media only screen and (min-width: 480px) and (max-width: 767px) {
    
}