@media screen and (max-width:992px){
    .for-desktop{
        display: none;
    }
    .for-mobile{
        display: block;
    }

    .display-flex{
        display: block;
    }


    body{

    }

    h1{
        font-size: 28px;
    }

    /* Мобильный header */
    .main-header{
        position: fixed;
        top: 0;
        padding: 0;
        width: 100%;

        z-index: 100;
        height: 70px;
        background-color: #fff;
    }
    #burger{
        position: absolute;
        top: 8px;
        left: 5px;
        width: 55px;
        height: 55px;
        display: grid;
        place-items: center;
        cursor: pointer;
        z-index: 50;
    }

    .mobi-inner{
        position: relative;
        height: 70px;
        user-select: none;
    }
    .logo{
        text-align: center;
        margin-right: 0;
        padding-left: 60px;
        padding-right: 60px;
        height: 100%;
        /*padding-top: 10px;*/
        display: grid;
        align-items: center;
        width: auto;


    }
    .logo a{
        display: grid;
        justify-content: center;
    }

    .logo__link{
        font-size: 23px;
    }

    .pal{
        transition: 0.3s;
        transform-origin: center;
    }
    .animate #pal1{
        transform:  rotate(45deg) translate(0px, 9px);
    }
    .animate #pal2{
        transform: rotate(45deg);
    }
    .animate #pal3{
        transform:  rotate(-45deg) translate(0,-9px);
    }


    .navi1{
        margin: 0;
        padding: 60px 30px 30px 30px;
    }
    .navi1 li{
        list-style: none;
        margin-bottom: 8px;
    }
    .navi1 a{
        color: #2D2D2D;
        font-size: 20px;
        font-weight: 600;
        text-decoration: none;
    }

    .mnavi{
        background-color: #fff;
        position: fixed;
        top: 70px;
        bottom: 0;
        height: 100vh;
        width: 100%;
        z-index: 100;
        /*padding: 10px 30px 80px 30px;*/
        left: -100%;
        transition: 0.25s;
        opacity: 0.5;
        overflow-y: auto;
        box-sizing: border-box;
    }

    .cart-link{
        width: auto;
        margin-bottom: 15px;
    }


    .mobi-cart{
        position: absolute;
        top: 8px;
        right: 4px;
    }

    .mobi-cart a{
        display: grid;
        align-items: center;
        justify-content: center;
        width: 55px;
        height: 55px;

    }

    .cart-link {
        line-height: inherit;
        background-color: inherit;
        border: none;
    }

    .mobi-cart img{
        display: block;
    }





    .mnavi::-webkit-scrollbar { width: 0; }
    .mnavi { -ms-overflow-style: none; }
    .mnavi { overflow: -moz-scrollbars-none; }

    .mnavi {
        -ms-overflow-style: none;  /* IE 10+ */
        scrollbar-width: none; /* Firefox */
        padding-bottom: 150px;
    }

    .show{
        left: 0;
        opacity: 1;
    }



    main{
        overflow: auto;
    }
    .content{
        padding-top: 30px;
    }

    .modal{
        margin-left: 30px;
        margin-right: 30px;
    }



    .grid-4{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-3{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-2{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }



    .mnavi-inner .for-desktop{
        display: block;
    }
    .left-menu{
        width: auto;
        padding: 20px;
        margin-top: 0;
    }
    .left-menu-block{
        margin-top: 0;
    }
    .menu-block a.active-link{
        background-color: #F5F5F5;
    }


    .right-content{
        margin: 20px 20px 60px 20px;
    }


    .panel{
        padding: 20px;
        margin-bottom: 20px;
    }








}