@charset "utf-8";
/*обнуляем стили по умолчанию*/

* {
    box-sizing: border-box;
    scrollbar-width: thin;
    /*! border: solid 1px red; */
}

::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
    background-color: #cdcdcd;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--grey_05);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Jost', sans-serif;
    font-size: 100%;
    font-kerning: auto;
    line-height: 1rem;
    scrollbar-width: thin;
    color: var(--text_dark);
    overflow: hidden;
}

th, td {
    padding: 0;
}

ul, li, input, label, ol, p, fieldset {
    margin: 0;
    padding: 0;
    display: block;
    border: none;
    font-family: inherit;
    filter: none;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
}

select {
    margin: 0;
    padding: 0;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    font: inherit;
    letter-spacing: inherit;
    word-spacing: inherit;
}

address {
    font-style: normal;
}

a::-moz-focus-inner {
    border: none;
}

:focus {
    outline: none;
}

a, a:focus {
    outline: none;
    text-decoration: none;
    /*display: block;*/
    color: inherit;
    transition: ease-in-out 0.3s;
    white-space: nowrap;
}

/*для адаптивности изображений*/

img {
    max-width: 100%;
    display: block;
    height: auto;
}