/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1199px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {

    body.lk {
        padding-left: 0;
        padding-bottom: 57px;
    }

    .header-content h1 {
        font-size: 1.5em;
    }

    .main-advantage-icon {
        min-width: 50px;
        height: 50px;
    }

    .aside {
        top: auto;
        right: 0;
        width: 100%;
        height: 57px;
        background-color: #fff;
    }

    .aside-block-menu .am-text {
        display: none;
    }

    /* .lk .header-logo {
        margin-left: 40px;
    } */
    
    .aside-block-menu li:first-child a {
        border-radius: 30px 0 0 0;
    }
    .aside-block-menu li:last-child a {
        border-radius: 0 30px 0 0;
    }

    .aside-block-menu li a span.material-icons {
        width: 100%;
    }

    .aside-block-menu {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .aside-block {
        border-radius: 30px 30px 0 0;
    }

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 479px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 319px) {

}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

    .lk .header .header-panel {
        padding-left: 69px;
    }

    .js-sidebar.opened {
        width: 260px;
        transition: all .35s ease-in-out;
    }
    .js-sidebar.closed {
        width: 57px;
        transition: all .35s ease-in-out;
    }
    .js-sidebar.closed .am-text {
        display: none;
    }
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}


/*==========  Print Method  ==========*/

@media print {

}