html[dir=rtl] input[type=checkbox],
html[dir=rtl] input[type=radio] {
    position:absolute;
    right:-1000em !important;
    left:0 !important;
    opacity:0;
}
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.content {
    flex: 1 1 auto;
}
body.menu-open {
    overflow: hidden;
}
a {
    /*color:#0645AD;*/
    color: inherit;
    text-decoration:none;
    outline:none
}
a:hover,a:focus,a:active {
    color: inherit;
    text-decoration:none;
    outline:none
}
input:focus,
input:active {
    background-color: var(--grey--grey90, #F7F7F7);
}

input[type="text"], input[type="number"], input[type="password"], input[type="search"], input[type="email"], input[type="tel"] {
    border-radius: 8px;
    border: 1px solid var(--grey--grey80, #D7D7D7);
    font-size: 16px;
    line-height: 1;
    padding: 10px 16px;
}
input[type="text"]::placeholder,
input[type="number"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder {
    font-size: 16px;       /* подогнать под кнопку */
    line-height: 1;
}
.container {
    margin-right:auto;
    margin-left:auto;
    padding-left:15px;
    padding-right:15px
}
.container::before,
.container::after {
    display: none;
}
@media only screen and (min-width:769px) {
    .container {
        width:750px
    }
}
@media only screen and (min-width:992px) {
    .container {
        width:990px
    }
}
@media only screen and (min-width:1200px) {
    .container {
        width:1170px
    }
}
@media only screen and (min-width:1400px) {
    .container {
        width:1260px
    }
}
.link {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0.5rem;
    transition: all .2s ease;
    color: #0a0a0a;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #9ca3af transparent;
}

*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: #9ca3af;
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: content-box;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #6b7280;
}