body * {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: #f1f1f1;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
}
.main-content {
    background-color: #ccc;
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px 10px;
}
.navigation--wrapper .navigation {
    margin: 0;
    margin-bottom: 30px;
    text-align: right;
}
.navigation--wrapper .navigation li {
    display: inline-block;
    font-size: 22px;
    font-weight: lighter;
    list-style-type: none;
}
.navigation--wrapper .navigation li a {
    display: block;
    margin: 0 5px;
    text-decoration: none;
}
h1, h2 {
    color: rgb(8, 34, 121);
    font-size: 28px;
    margin: 0 0 20px;
    text-align: center;
}
.features {
    margin-bottom: 30px;
}
.features li {
    list-style-type: none;
    margin-bottom: 10px;
    text-align: center;
}
pre.code-display {
    border: 10px solid #fff;
    display: grid;
    margin: 10px !important;
}
.hr-line {
    background-color: #000;
    height: 1px;
    border: 0;
    margin: 20px 10px 30px;
    position: relative;
}
.hr-line::after {
    content: '*';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50px, -50px);
}
ap-slider .apslider-list {
    background-color: #fff;
    text-align: center;
}

ap-slider .apslider-active.apslider-center {
    color: orangered;
}

.property {
    font-weight: 500;
}
.type::before {
    content: 'Type: ';
    font-weight: 500;
}
.default::before {
    content: 'Default: ';
    font-weight: 500;
}
.argument::before {
    content: 'Argument: ';
    font-weight: 500;
}
.support {
    bottom: 10px;
    position: fixed;
    right: 10px;
}
.support img {
    display: block;
    height: 45px;
    width: 170px;
}