.html-code a,
.html-code a:visited,
.html-code a:hover {
    color: var(--theme2-color);
    text-decoration: underline;
}

.html-code a:hover {
    text-decoration: none;
}

.html-code table {
    border-collapse: collapse;
    border-spacing: 0;
}

.html-code table td {
    vertical-align: middle;
}

.html-code table.specification {
    width: 100%;
}

.html-code table.specification tr {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.html-code table.specification td {
    padding: 6px 15px;
}

.html-code table.specification td:first-child {
    text-align: right;
    font-weight: bold;
    width: 50%;
}

.html-code table.specification tr:nth-child(odd) td:first-child {
    background-color: var(--light-grey-bg);
}

.html-code table.vtop td {
    vertical-align: top;
}

.html-code table.layout-multi-columns td {
    padding: 10px 20px 10px 0px;
}

.html-code table.layout-multi-columns.bordered td {
    padding: 10px 20px;
}

.html-code table.bordered td {
    border: 1px solid var(--border-color);
}

.html-code table.centered th,
.html-code table.centered td {
    text-align: center;
}

.html-code p {
    margin: 0 0 10px;
}

.html-code * + p {
    margin-top: 10px;
}

.html-code h1,
.html-code h2,
.html-code h3,
.html-code h4,
.html-code h5,
.html-code h6 {
    font-weight: 700;
    margin-bottom: 20px;
}

.html-code * + h1,
.html-code * + h2,
.html-code * + h3,
.html-code * + h4,
.html-code * + h5,
.html-code * + h6 {
    margin-top: 32px;
}

.html-code h1 {
    font-size: 24px;
}

.html-code h2 {
    font-size: 20px;
}

.html-code h3 {
    font-size: 18px;
}

.html-code h4 {
    font-size: 16px;
}

.html-code h5 {
    font-size: inherit;
    line-height: inherit;
}

.html-code h6 {
    font-size: inherit;
    line-height: inherit;
}

.html-code ul,
.html-code ol {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}

.html-code li > ul,
.html-code li > ol {
    margin-top: 5px;
    margin-bottom: 0;
}

.html-code li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 3px;
}

.html-code ul > li:before {
    content: "\2022";
    color: var(--theme2-color);
    position: absolute;
    left: 0;
    font-size: 18px;
}

.html-code ol {
    counter-reset: li;
}

.html-code ol > li {
    counter-increment: li;
}

.html-code ol > li:before {
    content: counter(li)'.';
    position: absolute;
    left: 0;
    color: var(--theme2-color);
    font-weight: bold;
}

.html-code ul h5,
.html-code ol h5 {
    margin-bottom: 0;
}

.html-code dt {
    font-weight: bold;
    margin-bottom: 10px;
}

.html-code dd {
    margin: 0 0 3px;
}

.html-code .list-rated1 dd {
    position: relative;
    padding-left: 20px;
    margin-bottom: 3px;
}

.html-code .list-rated1 dd:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f00c";
    color: var(--theme-color);
    position: absolute;
    left: 0;
    top: 1px;
}

.html-code .warning1,
.html-code .warning2 {
    margin: 30px 0px;
    padding: 10px 10px 10px 70px;
    border: 1px solid var(--border-color);
    background-color: var(--light-grey-bg);
    text-align: left;
    font-weight: bold;
    position: relative;
}

.html-code .warning1:before,
.html-code .warning2:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f25a";
    color: var(--theme2-color);
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 32px;
}

.html-code .warning1:first-child,
.html-code .warning2:first-child {
    margin-top: 0px;
}

.html-code .warning1:last-child,
.html-code .warning2:last-child {
    margin-bottom: 0px;
}

.html-code .warning1 dt,
.html-code .warning2 dt {
    margin-bottom: 5px;
}

.html-code .warning1 dd,
.html-code .warning2 dd {
    margin: 0;
}

.html-code .importer {
    font-size: 12px;
    color: var(--secondary-color);
    text-align: center;
}

.html-code .description {
    color: var(--secondary-color);
    font-style: italic;
    padding: 5px 0px;
}

@media (max-width: 767.98px) {
    .html-code table {
        display: block;
        width: calc(100% + 30px);
        overflow-x: auto;
        margin-left: -15px;
        margin-right: -15px;
        padding: 0 15px;
    }

    .html-code table.specification td {
        padding: 6px 7px;
    }
}