
body {
    color: var(--color-text);
    font-family: var(--font-family);
    font-weight: var(--font-regular);
    line-height: 1.5;
    font-size: 1rem;
}

.font-title {
    font-family: var(--font-title-family, var(--font-family));
}

b,
strong {
    font-weight: var(--font-semibold);
}

h1, .h1 {
    font-size: 5.5rem;
    line-height: 1.05;
    font-weight: var(--font-semibold);
}
h2, .h2 {
    font-size: 4.75rem;
    line-height: 1.05;
    font-weight: var(--font-semibold);
}
h3, .h3 {
    font-size: 4rem;
    line-height: 1.06;
    font-weight: var(--font-semibold);
}
h4, .h4 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: var(--font-semibold);
}
h5, .h5 {
    font-size: 1.875rem;
    line-height: 1.27;
    font-weight: var(--font-semibold);
}
h6, .h6 {
    font-size: 1.5rem;
    line-height: 1.33;
    font-weight: var(--font-semibold);
}

.text-2xl {
    font-size: 1.375rem;
    line-height: 1.36;
}
.text-xl {
    font-size: 1.25rem;
    line-height: 1.4;
}
.text-l {
    font-size: 1.125rem;
    line-height: 1.44;
}
.text-m {
    font-size: 1rem;
    line-height: 1.5;
}
.text-s {
    font-size: 0.875rem;
    line-height: 1.43;
}
.caption-l {
    font-size: 1.125rem;
    line-height: 1.56;
    text-transform: uppercase;
}
.caption-m {
    font-size: 1rem;
    line-height: 1.5;
    text-transform: uppercase;
}


@media screen and (max-width: 1279px) {
    h1, .h1 {
        font-size: 2.25rem;
        line-height: 1.11;
    }
    h2, .h2 {
        font-size: 2rem;
        line-height: 1.125;
    }
    h3, .h3 {
        font-size: 1.75rem;
        line-height: 1.14;
    }
    h4, .h4 {
        font-size: 1.5rem;
        line-height: 1.25;
    }
    h5, .h5 {
        font-size: 1.375rem;
        line-height: 1.27;
    }
    h6, .h6 {
        font-size: 1.125rem;
        line-height: 1.33;
    }
    .text-2xl {
        font-size: 1.125rem;
        line-height: 1.44;
    }
    .text-xl {
        font-size: 1rem;
        line-height: 1.5;
    }
    .text-l {
        font-size: 1rem;
        line-height: 1.5;
    }
    .text-m {
        font-size: 0.9375rem;
        line-height: 1.47;
    }
    .caption-l {
        font-size: 1rem;
        line-height: 1;
    }
    .caption-m {
        font-size: 0.875rem;
        line-height: 1.43;
    }
}

.regular {
    font-weight: var(--font-regular);
}
.medium {
    font-weight: var(--font-semibold);
}
.semibold {
    font-weight: var(--font-semibold);
}
.bold {
    font-weight: var(--font-semibold);
}

/* content */
.content ul:not([class]),
.content ol:not([class]) {
    padding-left: 1.75rem;
}
.content ul:not([class]) li {
    list-style-type: disc;
}
.content ol:not([class]) li {
    list-style-type: numeric;
}

.content p:not(:first-child),
.content ul:not([class]):not(:first-child),
.content ol:not([class]):not(:first-child),
.content li:not([class]):not(:first-child),
.content table:not(:first-child) {
    margin-top: 1em;
}
.content p:not(:last-child),
.content ul:not([class]):not(:last-child),
.content ol:not([class]):not(:last-child),
.content li:not([class]):not(:last-child),
.content table:not(:last-child) {
    margin-bottom: 1em;
}
.content i {
    font-style: italic;
}

.content table {
    --size-selector: 1.5rem;
    --border-element: var(--color-grey-40);

    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    text-align: left;
    border-radius: var(--radius-extrasmall);
    border: 0.0625rem solid var(--border-element);
    border-collapse: separate;
    overflow: hidden;
}

.content table th:not(:last-child),
.content table td:not(:last-child) {
    border-right: 0.0625rem solid var(--border-element);
}
.content table thead th,
.content table tbody tr:not(:last-child) td {
    border-bottom: 0.0625rem solid var(--border-element);
    border-collapse: separate;
}

.content table thead {
    font-weight: var(--font-semibold);
    background-color: var(--color-white-10);
}
.content table th,
.content table td {
    padding: var(--offset-secondary);
}
.content table td {
    padding-top: var(--offset-small);
    padding-bottom: var(--offset-small);
}
.content table td img {
    margin-right: 0.5rem;
}
.content table th[data-sort-table-tab] {
    cursor: pointer;
    user-select: none;
}
.content table th[data-sort-table-tab]::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    min-width: var(--size-selector);
    width: var(--size-selector);
    height: var(--size-selector);
    min-height: var(--size-selector);
    background-image: url('../../images/icons/selector-vertical-color.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: var(--transition);
    opacity: 0;
}

@media screen and (min-width: 1024px) {
    .content table th:hover::after {
        opacity: 0.5;
    }
}
.content table th._active::after {
    opacity: 1;
}

@media screen and (max-width: 1023.5px) {
    .content table th,
    .content table td {
        padding: 0.625rem;
    }
    .content table td {
        padding-top: 0.625rem;
        padding-bottom: 0.625rem;
    }
    .content table td img {
        width: 1.125rem;
        height: 1.125rem;
    }
}

/**/
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
}

/**/
sub {
    vertical-align: sub;
}
sup {
    vertical-align: super;
}
sub,
sup {
    font-size: 0.75em;
}

/**/
[data-content] {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}