
    .html-content h2 {
        font-family: FactorA-Bold, sans-serif;
        font-size: 30px;
        line-height: 120%;
        margin: 32px 0 16px;
    }

.html-content h3 {
        font-family: FactorA-Bold, sans-serif;
        font-size: 24px;
        line-height: 120%;
        margin: 16px 0;
    }

.html-content p {
        padding: 0;
        margin: 0 0 1rem;
    }

.html-content a {
        color: #0070CC
    }

.html-content a:hover {
            text-decoration: underline;
        }

.html-content ul {
        padding: 0;
        margin: 0 0 1.5rem 1.5rem;
        list-style-position: outside;
        list-style-image: none
    }

.html-content ul li {
            padding-left: 0;
        }

.html-content ol {
        padding-left: 24px;
    }

.html-content pre {
        white-space: break-spaces;
        margin: 0 0 1.5rem;
        background: #f5f2f0;
        padding: 1em;
        overflow: auto;
    }

.html-content code {
        background-color: rgba(87, 92, 102, 0.1);
        border-radius: 4px;
        font-family: "Roboto Mono", monospace;
        padding: 0;
    }

.html-content blockquote {
        padding: 2rem;
        margin: 48px 0;
        font-size: 16px;
        line-height: 1.5em;
        background: rgba(255, 178, 110, 0.2);
        border-left: 12px solid #FFB26E;
        border-radius: 6px;
    }

.html-content table {
        width: 100%;
        border-spacing: 0;
        margin-bottom: 1rem;
    }

.html-content table caption {
        font-family: FactorA-Bold, sans-serif;
        font-size: 24px;
        line-height: 120%;
        margin-bottom: 16px;
        text-align: left;
    }

.html-content th {
        text-align: left;
        box-shadow: inset 0 -1px 0 #D9DCE1;
        padding-bottom: 8px;
    }

.html-content td {
        box-shadow: inset 0 -1px 0 #D9DCE1;
        padding: 16px 16px 16px 0;
        min-width: 80px;
        box-sizing: border-box;
    }

.html-content .image {
        margin: 0 0 1.5rem;
        border: 1px solid #D1D4DB;
        border-radius: 6px;
    }

.html-content .image.full-width {
        width: 100%;
        height: 100%;
    }

/* START abbreviation */
.abbreviation {
    margin: 16px 0;
}

.abbreviation__title {
    font-family: FactorA-Bold, sans-serif;
    border-bottom: 1px dashed #575C66;
    cursor: pointer;
    display: inline-block;
}

.abbreviation__content {
    padding-top: 8px;
}

/* END abbreviation */

/* START accordion */
.accordion {
    background: #F6F7F8;
    border-radius: 6px;
    margin: 32px 0;
}

.accordion__title {
    display: flex;
    align-items: center;
    font-size: 18px;
    padding: 20px 16px;
    font-family: FactorA-Bold, sans-serif;
    cursor: pointer;
}

.accordion__chevron {
    margin-right: 8px;
    transition: transform 0.1s;
}

.accordion__content {
    padding: 0 20px 24px 33px;
}

.accordion[data-accordion='true'] .accordion__chevron {
    transform: rotate(90deg);
}

/* END accordion */

/* START additional-info */
.additional-info {
    padding: 24px;
    background: rgba(255, 232, 77, 0.25098);
    border-radius: 6px;
    position: relative;
    margin: 56px 0;
}

.additional-info__bg {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.additional-info__title {
    font-size: 24px;
    font-family: FactorA-Bold, sans-serif;
    line-height: 120%;
    margin-bottom: 8px;
}

/* END additional-info */

/* START section-code */
.section-code {
    margin-bottom: 24px;
    border-radius: 6px;
    font-size: 14px;
    overflow: hidden;
}

.section-code__title {
    background: rgba(87, 92, 102, 0.2);
    padding: 4px 12px;
    color: #575C66;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-code__content {
    background: rgba(87, 92, 102, 0.1);
    font-family: "Roboto Mono", monospace;
    padding: 8px 12px;
    overflow-x: auto;
    white-space: pre !important;
    margin: 0
}

.section-code__content::-webkit-scrollbar {
        /*This value used in check accordion-example*/
        height: 12px;
        background-color: transparent;
    }

.section-code__content::-webkit-scrollbar-thumb {
        border-radius: 20px;
        border-width: 2px;
        border-style: solid;
        border-color: transparent;
    }

.section-code__content--lite:hover::-webkit-scrollbar-track {
            background-color: #f7f7f7;
        }

.section-code__content--lite:hover::-webkit-scrollbar-thumb {
            background-color: #bababa;
            border-color: #f7f7f7;
        }

.section-code__content--dark:hover::-webkit-scrollbar-track {
            background: #363636;
        }

.section-code__content--dark:hover::-webkit-scrollbar-thumb {
            background-color: #787878;
            border-color: #363636;
        }

.section-code__footer {
    background: rgba(87, 92, 102, 0.2);
    color: #575C66;
    padding: 4px 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.section-code__chevron {
    margin-right: 8px;
    transition: transform 0.1s;
}

.section-code[data-accordion-example="true"] .section-code__chevron {
    transform: rotate(90deg);
}

.section-code[data-accordion-example="false"] .section-code__content {
    max-height: 92px;
    overflow-y: hidden;
}

.section-code.-dark .section-code__title, .section-code.-dark .section-code__footer {
        background: #171A22;
        color: #B5BAC4;
    }

.section-code.-dark .section-code__content {
        background: #2E3444;
        color: #D1D4DB;
    }

/* END section-code */

.table-accordion {
    cursor: pointer;
}

.table-accordion-content-hide {
    display: none;
}

.table-accordion-chevron {
    margin-left: -18px;
    transition: transform 0.1s;
}

.table-accordion-opened .table-accordion-chevron {
    transform: rotate(90deg);
}

.table-truncate {
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-color: currentColor;
}

.table-show-more {
    margin-top: 16px;
    margin-bottom: 1rem;
    border-bottom: 1px dashed #575C66;
    cursor: pointer;
    width: -moz-fit-content;
    width: fit-content;
}

.anchor-side-menu {
    position: relative;
}

.anchor-side-menu:hover svg {
    opacity: 1;
}

.anchor-side-menu svg {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    shape-rendering: geometricPrecision;
    box-sizing: content-box;
    fill: currentColor;
    flex-shrink: 0;
    outline: none;


    cursor: pointer;
    color: #a6b0b3;
    position: absolute;
    top: 40%;
    left: -3px;
    transform: translate(-100%, -50%);
    opacity: 0;
    padding: 5px;
}

.anchor-side-menu svg:hover {
    color: #333;
}

.video-responsive {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}