@font-face {
    font-family: 'Q_R';
    src: url('/_CSS/Roboto-Regular.ttf') format('truetype');
    font-display: block;
}

@font-face {
    font-family: 'Q_D';
    src: url('/_CSS/druktextwidecyr-medium.otf') format('truetype');
    font-display: block;
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
    scrollbar-color: rgba(0, 0, 0, 0.1) rgba(255, 255, 255, 0.1);
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

.NoSelect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: 'Q_R',Arial,sans-serif;
    margin: 0;
    line-height: 1.5em;
    scroll-behavior: smooth;

}

h1, h2, h3, h4, h5 {
    font-family: 'Q_D',Arial,sans-serif, 'Q_R', Serif;
    line-height: 1.5em;
    text-align: justify;
}

h1 {
    font-size: 1.5em;
}

p {
    text-indent: 3em;
}

p, li {
    text-align: justify;
}

textarea {
    font-family: 'Q_R', Serif;
    font-size: 100%;
}

body.enlarged {
    font-size: 120%;
}

a {
    text-decoration: none;

    -webkit-transition: color .2s;
    -moz-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s;
}

a:link, a:visited {
    color: var(--c-3);
}

a:hover {
    color: var(--c-4);
}

ul > li {
    list-style-type: none;
    margin-bottom: 20px;
}

ul > li::before {
    content: ' ';
    display: inline-block;
    height: 12px;
    width: 12px;
    margin-right: 20px;
    background-image: url('/_CONTENT/_SVG/li_before.svg');
}


.Rotate_90 {
    transform: rotate(-90deg);
    -webkit-transition: transform .2s;
    -moz-transition: transform .2s;
    -o-transition: transform .2s;
    transition: transform .2s;
}
.Rotate_0 {
    transform: rotate(0deg);
    -webkit-transition: transform .2s;
    -moz-transition: transform .2s;
    -o-transition: transform .2s;
    transition: transform .2s;
}



::-webkit-scrollbar {
    width: 1em;
    height: 1em;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
}
::-webkit-scrollbar-track {
    border-radius: 5px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.1);
    outline: 1px solid transparent;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    transition: .5s;
}
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.8);
}