@font-face {
    font-family: "Noto sans";
    font-display: swap;
    font-style: normal;
    font-weight: 300;
    src: url("/Assets/fonts/noto-sans-v38-latin-300.woff2") format("woff2"), url("/Assets/fonts/noto-sans-v38-latin-300.ttf") format("truetype");
}

@font-face {
    font-family: "Noto sans";
    font-display: swap;
    font-style: normal;
    font-weight: 400;
    src: url("/Assets/fonts/noto-sans-v38-latin-regular.woff2") format("woff2"), url("/Assets/fonts/noto-sans-v38-latin-regular.ttf") format("truetype");
}

@font-face {
    font-family: "Noto sans";
    font-display: swap;
    font-style: normal;
    font-weight: 600;
    src: url("/Assets/fonts/noto-sans-v38-latin-600.woff2") format("woff2"), url("/Assets/fonts/noto-sans-v38-latin-600.ttf") format("truetype");
}

@font-face {
    font-family: "Noto sans";
    font-display: swap;
    font-style: normal;
    font-weight: 700;
    src: url("/Assets/fonts/noto-sans-v38-latin-700.woff2") format("woff2"), url("/Assets/fonts/noto-sans-v38-latin-700.ttf") format("truetype");
}

.ff-primary {
    font-family: var(--bs-font-primary);
}

.ff-secondary {
    font-family: var(--bs-font-secondary);
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
}

.list-inline-item {
    display: inline-block;
}

.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}

ul.list-disc,
ul.list-square {
    list-style: none;
    margin: 0;
}

ul.list-disc > li::before,
ul.list-square > li::before {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    left: calc(-1rem - 5px);
    background-color: var(--bs-primary);
    width: 10px;
    height: 10px;
}

ul.list-disc > li::before {
    border-radius: 50%;
}

ul.list-disc > li,
ul.list-square > li {
    position: relative;
    text-align: left;
}

ol.list-progress li::after {
    content: "";
    position: absolute;
    top: 0;
    right: -2px;
    width: 0.35rem;
    height: 100%;
}

ol.list-progress li.is-active::after {
    background-color: var(--bs-info);
}

ol.list-progress li::before {
    content: "";
    display: inline-block;
    width: 0.5rem;
}

ol.list-progress li:not(:last-child) {
    margin-bottom: 0.5rem;
}

ol.list-progress li {
    list-style-position: inside;
    position: relative;
    color: rgba(var(--bs-light-rgb), 0.75);
    padding: 0.25rem 0;
}

ol.list-progress li.is-active,
ol.list-progress li.is-complete {
    color: var(--bs-body-color);
}

.list-seperated {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.list-seperated > li:not(:last-child) {
    border-bottom: 1px solid rgba(var(--bs-light-rgb), 0.5);
    padding-bottom: 1.25rem;
}

.list-seperated > li {
    padding-top: 1.25rem;
}