#media{
    background-color: RGBA(222, 222, 222, 0.7);
    color: #000;
    width: max-content;
    height: 25px;
    padding: 3px 6px;
    position: fixed;
    top: 5px;
    left: 5px;
    z-index: 99999;
    text-align: right;
    outline: 1px solid #000;
    display: none;
}

#media:before{
    content: 'Базис';
}

@media all and (min-width: 300px){
    #media:before{
        content: '@media - min-width: 300px';
    }
}

@media all and (min-width: 310px){
    #media:before{
        content: '@media - min-width: 310px';
    }
}

@media all and (min-width: 320px){
    #media:before{
        content: '@media - min-width: 320px';
    }
}

@media all and (min-width: 330px){
    #media:before{
        content: '@media - min-width: 330px';
    }
}

@media all and (min-width: 340px){
    #media:before{
        content: '@media - min-width: 340px';
    }
}

@media all and (min-width: 350px){
    #media:before{
        content: '@media - min-width: 350px';
    }
}

@media all and (min-width: 360px){
    #media:before{
        content: '@media - min-width: 360px';
    }

    header .auth_informer{
        display: grid;
    }
}

@media all and (min-width: 480px){
    #media:before{
        content: '@media - min-width: 480px';
    }

    header .auth_button > :nth-child(-n+2),
    header .auth_informer > :nth-child(-n+2){
        display: block;
    }
}

@media all and (min-width: 576px){
    #media:before{
        content: '@media - min-width: 576px';
    }
}

@media all and (min-width: 640px){
    #media:before{
        content: '@media - min-width: 640px';
    }

    :root{
        --header-height: 104px;
        --px: 32px;
        --py: 32px;
    }
}

@media all and (min-width: 768px){
    #media:before{
        content: '@media - min-width: 768px';
    }

    :root{
        --px: 60px;
        --py: 48px;
    }

    header .container-fluid,
    header .auth_informer_wrapper{
        grid-gap: 16px;
    }

    header .container-fluid{
        grid-template-columns: 1fr max-content max-content;
    }

    header .button_blue{
        display: grid;
    }


    .auth_button, .auth_informer{
        padding: 0 16px;
    }

    .fixed{
        width: 120px;
        height: 120px;
        font-size: 14px;
    }

    .fixed svg,
    .fixed img{
        display: block;
        width: 32px;
        height: 32px;
    }

    footer .container-fluid{
        grid-gap: 24px;
        grid-template-columns: 1fr 1fr;
        /*@formatter:off*/
        grid-template-areas:
        "ll ll"
        "ii ii"
        "c1 c2"
        "bb c2"
        "oo oo"
        "cr cr"
        "sa sa";
        /*@formatter:on*/
        align-items: start;
    }
}

@media all and (min-width: 992px){
    #media:before{
        content: '@media - min-width: 992px';
    }

    footer .other{
        width: max-content;
        display: grid;
        grid-template-columns: auto auto;
        justify-items: left;
        grid-gap: 16px 32px;
        margin-left: auto;
    }

    footer .copyright{
        margin-right: 0;
    }
}

@media all and (min-width: 1200px){
    #media:before{
        content: '@media - min-width: 1200px';
    }

    :root{
        --px: 80px;
        --py: 60px;
    }


    .fixed{
        width: 152px;
        height: 152px;
        font-size: 18px;
    }

    .fixed svg,
    .fixed img{
        width: 52px;
        height: 52px;
    }

    footer .container-fluid{
        grid-gap: 32px;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        /*@formatter:off*/
        grid-template-areas:
        "ll ll ll ll c2 c2"
        "ii ii ii ii c2 c2"
        "c1 c1 c1 c1 c2 c2"
        "bb bb bb oo oo oo"
        "cr cr cr cr sa sa";
        /*@formatter:on*/
    }

    footer .logo{
        padding: 0;
    }

    footer .other{
        grid-template-columns: auto;
        grid-gap: 8px;
    }

    footer .contacts2 p{
        margin-bottom: 2rem;
    }
}

@media all and (min-width: 1300px){
    #media:before{
        content: '@media - min-width: 1300px';
    }

    footer .other{
        width: max-content;
        display: grid;
        grid-template-columns: auto auto;
        justify-items: left;
        grid-gap: 16px 32px;
        margin-left: auto;
    }
}

@media all and (min-width: 1400px){
    #media:before{
        content: '@media - min-width: 1400px';
    }

    :root{
        --px: 100px;
        --py: 60px;
    }
}

@media all and (min-width: 1800px){
    #media:before{
        content: '@media - min-width: 1800px';
    }

    :root{
        --px: 120px;
        --py: 60px;
    }
}

@media all and (min-width: 1920px){
    #media:before{
        content: '@media - min-width: 1920px';
    }

    .container-fluid{
        max-width: 1920px;
    }
}
