.body_docs h1,
.body_docs h2,
.body_docs h3,
.body_docs h4,
.body_docs h5,
.body_docs h6 {
    font-weight: 700;
    color: var(--global-color-gray_blue_800);
    margin-bottom: 24px;
}
.body_docs h1 {
    font-size: 32px;
    line-height: 40px;
}
@media (max-width: 768px) {
    .body_docs h1 {
        font-size: 24px;
        line-height: 32px;
    }
}
.body_docs h2 {
    font-size: 24px;
}
.body_docs h3 {
    font-size: 22px;
}
.body_docs h4 {
    font-size: 20px;
}
.body_docs h5 {
    font-size: 18px;
}
.body_docs h6 {
    font-size: 16px;
}
.body_docs a {
    color: var(--global-color-blue_700);
    text-decoration: underline;
}
.body_docs p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
}
.body_docs ul {
    list-style: none;
    padding-left: 36px;
    margin-bottom: 24px;
}
.body_docs ol {
    margin-bottom: 24px;
}
.body_docs ul li {
    margin: 10px 0;
}
.body_docs ul li::before {
    content: '';
    display: block;
    height: 6px;
    width: 6px;
    min-width: 6px;
    background-color: var(--global-color-gray_blue_400);
    border-radius: 3px;
    margin-top: 8px;
    position: absolute;
    left: -15px;
}
.body_docs .has_dot {
    position: relative;
    padding-left: 24px;    
}
.body_docs .has_dot::before {
    content: '';
    display: block;
    height: 6px;
    width: 6px;
    background-color: var(--global-color-gray_blue_400);
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 5px;
}
.body_docs blockquote {
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid var(--global-color-gray_blue_100);
    background: var(--global-color-gray_blue_50);
    margin-bottom: 24px;
    font-size: 16px;
}
.body_docs table {
    border-collapse: collapse;
    border-spacing: 0;
    overflow-y: visible;
    max-width: 100%;
    overflow-x: auto;
    white-space: normal;
    margin-bottom: 24px;
}
@media(max-width: 1070px) {
    .body_docs table {
        display: block;
        white-space: nowrap;
    }
}
.body_docs table td {
    border: 1px solid var(--global-color-gray_blue_100);
    padding: var(--global-padding-16px);
    color: var(--global-color-gray_700);
}
.body_docs table th {
    background-color: var(--global-color-gray_blue_50);
    border: 1px solid var(--global-color-gray_blue_100);
    border-right: 1px solid var(--global-color-light_blue_100);
    border-bottom: none;
    padding: var(--global-padding-8px) var(--global-padding-16px);
    text-align: left;
    vertical-align: middle;
    color: var(--global-color-gray_blue_800);
}
.body_docs table thead tr > th:last-child {
    border-right: 1px solid var(--global-color-gray_blue_100);
}

/* img, обертка и кнопка раскрытия */

.body_docs .image_wrapper {
    position: relative;
    display: inline-flex;
    max-width: 100%;
    background-color: var(--global-color-blue_50);
    border: 1px solid var(--global-color-blue_100);
    padding: var(--global-padding-16px);
    border-radius: 4px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    width: 100%;
}

.body_docs .image_wrapper img {
    display: block;
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.body_docs .image_wrapper img.fancybox-ready {
    cursor: pointer;
}

.body_docs hr {
    border: none;
    height: 1px;
    width: 100%;
    background-color: var(--global-color-gray_blue_100);
    margin: 36px 0;
}

@media (max-width: 768px) {
    .body_docs .image_wrapper {
        padding: var(--global-padding-8px);
    }
}