:root {
    --font-family-Manrope: Manrope;
    --corner-radius-xs: 5px;
    --Borders-Border-radius-Rounded: 99px;

    --Surfaces-on-surface: #FFFFFF;
    --Surfaces-on-surface-variant: #9EA4AE;
    --Surfaces-outline-variant: #E8E8E8;

    --font-size-6xl: 28px;
    --line-height-6xl: 42px;

    --font-size-1xl: 18px;
    --line-height-1xl: 28px;

    --font-size-xl: 16px;
    --line-height-xl: 24px;

    --font-size-l: 14px;
    --line-height-l: 21px;

    --font-size-m: 12px;
    --line-height-m: 18px;

    --font-size-s: 10px;
    --line-height-s: 15px;

    --Surfaces-surface: #1B1927;
    --Surfaces-surface-container: #262238;
    --Surfaces-surface-container-low: #201D2F;
    --Surfaces-surface-container-highest: #3B3953;

    --Main-Colors-primary-container: #1E4143;
    --Main-Colors-on-primary-container: #00BD71;
    --Main-Colors-primary: #00BD71;
    --Button-High-Text: #FFFFFF;
}

* {
    box-sizing: border-box;
}

body {
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: var(--font-family-Manrope);
    background: var(--Surfaces-surface);
    font-size: var(--font-size-l);
    line-height: var(--line-height-l);
    color: var(--Surfaces-on-surface);
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

.container {
    width: 100%;
    max-width: 940px;
    padding: 0 30px;
    margin: 0 auto;
}

.container-full {
    width: 100%;
    padding: 0 30px;
    margin: 0 auto;
}

p {
    font-size: var(--font-size-l);
    line-height: var(--line-height-l);
    margin: 0 0 25px 0;
}

h1 {
    font-size: var(--font-size-6xl);
    line-height: var(--line-height-6xl);
    margin: 0 0 10px 0;
    font-weight: 700;
}

h2 {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-xl);
    margin: 0 0 10px 0;
    font-weight: 700;
}

h3 {
    font-size: var(--font-size-l);
    line-height: var(--line-height-l);
    margin: 0 0 5px 0;
    font-weight: 700;
}

h4 {
    font-size: var(--font-size-l);
    line-height: var(--line-height-l);
    margin: 0 0 5px 0;
    font-weight: 700;
}

h5 {
    font-size: var(--font-size-l);
    line-height: var(--line-height-l);
    margin: 0 0 5px 0;
    font-weight: 700;
}

.fs-1xl {
    font-size: var(--font-size-1xl);
    line-height: var(--line-height-1xl);
}

.lead {
    color: var(--Surfaces-on-surface-variant);
    font-size: var(--font-size-l);
    line-height: var(--line-height-l);
    max-width: 472px;
}

.muted {
    color: var(--Surfaces-on-surface-variant);
}

.highlited {
    color: var(--Main-Colors-primary);
}

.breadcrumbs {
    margin: 0;
    padding: 15px 0;
}

.breadcrumbs li {
    list-style: none;
    display: inline-block;
    font-size: var(--font-size-m);
    font-weight: 700;
    color: var(--Surfaces-on-surface-variant);
}

.breadcrumbs li a {
    color: var(--Surfaces-on-surface-variant);
    text-decoration: none;
}

.breadcrumbs li a:hover {
    color: var(--Surfaces-on-surface);
}

.breadcrumbs li:first-child a {
    color: var(--Surfaces-on-surface);
}

.breadcrumbs li:not(:last-child):after {
    content: '';
    width: 14px;
    height: 13px;
    margin: 0 3px;
    display: inline-block;
    vertical-align: middle;
    background: url(images/arrow-breadcrumbs.svg) center center no-repeat;
}

.btn {
    display: inline-flex;
    padding: 8px 12px;
    align-items: center;
    border-radius: var(--Borders-Border-radius-Rounded);
    background: var(--Surfaces-surface-container);
    color: var(--Surfaces-on-surface-variant);
    font-size: var(--font-size-m);
    line-height: var(--line-height-m);
    font-family: var(--font-family-Manrope);
    font-weight: 700;
    text-decoration: none;
}

.btn.yellow {
    background: var(--Main-Colors-primary-container);
    color: var(--Main-Colors-on-primary-container);
}

.btn.full {
    background: var(--Main-Colors-primary);
    padding: 10px 17px;
    border-radius: var(--corner-radius-xs);
    color: var(--Button-High-Text);
}

.btn svg {
    width: 18px;
    height: auto;
    margin-right: 6px;
}

.btn-group {
    display: flex;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x: scroll;
}

.btn-group::-webkit-scrollbar {
    display: none;
}

.btn-group .btn+.btn {
    margin-left: 6px;
}

.tag {
    display: inline-flex;
    padding: 3px 8px;
    align-items: center;
    border-radius: var(--Borders-Border-radius-Rounded);
    border: 1px solid var(--Surfaces-outline-variant);
    background: var(--Surfaces-surface-container-low);
    color: var(--Surfaces-on-surface);
    font-size: var(--font-size-s);
    line-height: var(--line-height-s);
    font-family: var(--font-family-Manrope);
    font-weight: 700;
    text-decoration: none
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-space-between {
    justify-content: space-between;
}

form {
    position: relative;
    margin: 0 0 20px 0;
}

form .clear {
    position: absolute;
    top: 50%;
    right: 13px;
    transform: translateY(-50%);
    color: var(--Surfaces-on-surface);
    font-family: var(--font-family-Manrope);
    font-size: var(--font-size-s);
    font-weight: 700;
    line-height: var(--line-height-s);
    text-decoration: none;
}

input[type="submit"] {
    width: 18px;
    height: 18px;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    background: url(images/search.svg) center center no-repeat;
    font-size: 0;
    cursor: pointer;
}

input[type="text"] {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: var(--Surfaces-surface-container-highest);
    border-radius: var(--corner-radius-xs);
    border: none;
    padding: 10px 33px;
    margin: 0;
    color: var(--Surfaces-on-surface);
    font-family: var(--font-family-Manrope);
    font-size: var(--font-size-m);
    font-weight: 500;
    line-height: var(--line-height-m);
}

input[type="text"]:focus {
    outline: none;
}

input[type="text"]::placeholder {
    color: var(--Surfaces-on-surface-variant);
}

.bg-low {
    background: var(--Surfaces-surface-container-low);
}

.pt-5 {
    padding-top: 5x;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-5 {
    padding-bottom: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -4px;
    margin-right: -4px;
}

.row .col {
    width: 50%;
    padding-left: 4px;
    padding-right: 4px;
}

strong {
    font-weight: 700;
}

.fw-500 {
    font-weight: 500;
}

.search-result {
    padding: 20px;
    background: var(--Surfaces-surface-container);
    border-radius: 10px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-result>div {
    max-width: 660px;
}

.search-result h3 {
    margin: 10px 0 5px 0;
}

.search-result p {
    margin: 0;
    opacity: 0.8;
    font-size: var(--font-size-m);
    line-height: var(--line-height-m);
}

.search-result a {
    color: var(--Surfaces-on-surface);
    text-decoration: none;
}

.article-content {
    padding-bottom: 25px;
}

.article-content ul,
.article-content ol {
    margin: 0 0 30px 0;
    padding-left: 20px;
    opacity: 0.8;
}

.article-content p {
    opacity: 0.8;
}

.article-content p+p {
    margin-top: -5px;
}

.article-content .image {
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    background: var(--Surfaces-surface-container);
    margin-bottom: 30px;
}

.article-content .image img {
    max-width: 100%;
    height: auto;
}

.help-box {
    border-radius: 10px;
    background: var(--Surfaces-surface-container);
    padding: 40px 20px;
    text-align: center;
}

.help-box p {
    color: var(--Surfaces-on-surface-variant);
    font-size: var(--font-size-m);
    line-height: var(--line-height-m);
    margin-left: auto;
    margin-right: auto;
    max-width: 330px;
}

.collapse {
    border-radius: var(--corner-radius-xs);
    background: var(--Surfaces-surface-container);
    padding: 10px 10px 10px 15px;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.collapse p {
    margin: 0;
    font-size: var(--font-size-m);
    font-weight: 700;
    line-height: var(--line-height-m);
    color: var(--Surfaces-on-surface);
    padding: 5px 0;
}

.collapse .content {
    display: none;
    width: 100%;
}

.collapse .content p {
    color: var(--Surfaces-on-surface-variant);
    font-size: var(--font-size-s);
    font-weight: 500;
    line-height: var(--line-height-s);
}

.collapse .content p a {
    color: var(--Surfaces-on-surface-variant);
    text-decoration: underline;
}

.collapse .content p a:hover {
    color: var(--Surfaces-on-surface-variant);
    text-decoration: none;
}

.collapse svg {
    transform: scale(1, 1);
    transition: all 0.3s;
}

.collapse.active {
    background: var(--Surfaces-surface-container-highest);
}

.collapse.active svg {
    transform: scale(1, -1);
}

.tabs {
    padding: 0;
    margin: 0;
}

.tabs li {
    display: inline-block;
    vertical-align: bottom;
    list-style: none;
}

.tabs li a {
    padding: 16px 20px;
    color: var(--Surfaces-on-surface);
    font-size: var(--font-size-m);
    font-weight: 700;
    line-height: var(--line-height-m);
    text-decoration: none;
    display: block;
    border-bottom: 1px solid transparent;
}

.tabs li a span {
    height: 16px;
    display: flex;
    align-items: center;
}

.tabs li a svg {
    margin-right: 4px;
}

.tabs li a.active {
    border-bottom: 1px solid var(--Main-Colors-primary);
    color: var(--Main-Colors-primary);
}

.tabs li a.active svg path {
    fill: var(--Main-Colors-primary);
}

@media(max-width: 767px) {

    .container,
    .container-full {
        padding: 0 20px;
    }

    .d-flex {
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    .article-content .image {
        padding: 20px;
    }

    .help-box {
        padding: 20px;
    }

    .row .col {
        width: 100%;
    }

    .tabs li a {
        padding: 16px 12px;
    }
}