@charset "UTF-8";

/* cyrillic */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans Regular'), local('OpenSans-Regular'), url(../fonts/mem8YaGs126MiZpBA-UFUZ0bbck.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

*, ::after, ::before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: rgb(var(--color-light)) rgb(var(--background-light));
}

html, body {
    margin: 0;
    padding: 0;
    font-size: calc(13px + 0.238vw);
    line-height: 1.47;
    height: 100%;
}

body {
    background: rgb(235,237,243);
    color: rgb(51,51,51);
    font-family: "Open Sans", sans-serif;
    font-size: 0.938rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.l-inner {
     max-width: 78.625rem;
     min-width: 320px;
     padding: 0 0.938rem;
     margin: 0 auto;
}

.l-grid, [class*="l-grid_pt"] {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 1.25rem;
    min-height: 0;
}

.l-grid__item_2 {
    grid-column: span 2;
}

.l-grid__item_8 {
    grid-column: span 8;
}

.l-grid_pt-8 {
    grid-template-columns: repeat(8, 1fr);
}

.l-grid__item_1 {
    grid-column: span 1;
}

.l-grid__item_6 {
    grid-column: span 6;
}

.o-container {
    border-radius: 5px;
    background-color: rgb(255,255,255);
    margin: 1.25rem 0;
    box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.05);
}

.o-container__header {
    padding: 1.25rem 1.25rem 0;
}

.o-title {
    font-size: 1.5rem;
    color: rgb(51,51,51);
    font-weight: 600;
    line-height: 1.33;
    margin: 2.5rem 0 2.25rem;
}

.o-dialog_page img {
    width: 100%;
}

.l-grid-row {
    padding-bottom: 2.5rem;
}

strong {
    font-weight: bolder;
}

.o-list_ul {
    list-style: none;
    margin: 1.25rem 0;
    padding: 0;
}

.o-list_ul li {
    line-height: 1.47;
    margin: 0;
    padding: 0 0 1rem 2.1875rem;
    position: relative;
}

.o-list_ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background: rgb(56,182,235);
    border-radius: 50%;
}

.o-link,
.o-link:link,
.o-link:visited {
    cursor: pointer;
    text-decoration: underline;
    color: rgb(56,182,235);
    transition: color 300ms linear 0s;
    text-decoration-color: rgba(51,51,51, .15);
    -webkit-text-decoration-color: rgba(51,51,51, .15);
    -moz-text-decoration-color: rgba(51,51,51, .15);
}

@media (min-width: 1258px) {
    html {
        font-size: 16px;
    }
}

@media (max-width: 1000px) {
    .l-grid_form-panel > .l-grid__item_8 {
        grid-column: span 12;
    }
}

