* {
    box-sizing: border-box;
}

a:active,
a:focus {
    outline: none;
}

input,
textarea {
    outline: none;
    outline-offset: 0;
    -webkit-appearance: none;
    outline: none;
}

input:active,
textarea:active {
    outline: none;
}

:focus {
    outline: none;
}

img {
    border: none
}

html {
    font-size: 0.063vw !important;
    /* жесткая резиновая верстка по ширине */
    padding: 0;
    margin: 0;
    height: 100%;
}

@media screen and (min-width: 1590px) {
    html {
        font-size: 1px !important;
        /*если ширина больше min-width переходим на пиксель - убираем резину */
    }
}

body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;

}

body::before {
    width: 300px;
    height: 100px;
    background: red;

}

body::after {
    width: 300rem;
    height: 100rem;
    background: #00ff0099;
}

body:before,
body:after {
    content: "Камертон";
    position: fixed;
    top: 10px;
    left: 20px;
    z-index: 1000000;
    display: none;
    /*показать/спрятать камертон*/
}

header {
    flex: 0 0 auto;
}

article {
    flex: 1 0 auto;
}

footer {
    flex: 0 0 auto;
}

footer.box-page {
    margin-top: auto;
}

.overflow {
    overflow: hidden;
}

.disable {
    pointer-events: none;
    opacity: 0.5;
}

.hidden {
    display: none;
}

.invisible {
    visibility: hidden;
}

.visible {
    visibility: visible;
    display: block !important;
}

.disable {
    pointer-events: none;
}