html {
    font-display: swap;
    font-family: var(--font);
    font-size: var(--font-size);
    color: var(--font-color);
    background: var(--background);
    line-height: var(--line-height);
    min-height: -webkit-fill-available;
    scroll-behavior: smooth;
    line-height: var(--line-height);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden
}
html {
    overflow-x: hidden;
    overflow-y: scroll
}
footer {
    background: red;
    width: 904px;
    left: calc(50% - 350px);
    position: absolute
}
.seo-error {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: red;
    z-index: 999;
    text-align: center;
    font-weight: 900;
    color: white;
    padding: 10px
}
.color-red {
    color: red
}
.color-green {
    color: green
}
.color {
    color: var(--color)
}
.fat {
    font-weight: 500;
}
#ps-notice-wrapper {
    display: none;
}
html.ps-show-notice #ps-notice-wrapper {
    display: block;
    position: fixed;
    bottom: var(--margin);
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    text-align: center;
    padding: 30px 15px;
    width: 95%;
    max-width: 500px;
    background: var(--background);
    border: 5px solid var(--color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: var(--border-radius);
}
#ps-notice-wrapper .ps-notice-text {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #2d2d2d;
}
html.dark #ps-notice-wrapper .ps-notice-text {
    color: white;
}
#ps-notice-wrapper .ps-notice-text a {
    color: var(--color);
    text-decoration: underline;
}
#ps-notice-wrapper .ps-notice-buttons .btn {
    text-transform: uppercase;
    border: var(--border);
    cursor: pointer;
}
#ps-notice-wrapper .ps-notice-buttons .ps-btn-acc {
    background: green;
    color: white;
}
#ps-notice-wrapper .ps-notice-buttons .ps-btn-cls {
    background: transparent;
    color: inherit;
}
input::-webkit-inner-spin-button {
    -webkit-appearance: inner-spin-button;
    display: inline-block;
    cursor: default;
    flex: 0 0 auto;
    align-self: stretch;
    -webkit-user-select: none;
    opacity: 0;
    pointer-events: none;
    -webkit-user-modify: read-only
}
::-webkit-scrollbar {
    width: 10px;
    height: 10px
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, .075)
}
::-webkit-scrollbar-thumb {
    background: var(--color)
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-dark)
}
a[href^="#"] {
    cursor: default !important
}
.dev-root {
    display: none;
    font-size: 14px;
    line-height: 13px;
    padding: 5px;
    margin: 5px;
    font-weight: 700;
    border-radius: var(--border-radius);
    border: 1px dashed var(--color-root);
    background: var(--color-root);
    color: black;
    font-weight: 400
}
.dev-root.active {
    display: block
}
.dev-root span {
    color: white;
    padding: 2px 3px;
    border-radius: var(--border-radius);
    background: rgba(0, 0, 0, .5)
}
.spinner {
    -webkit-animation: spinner 2s linear infinite;
    animation: spinner 2s linear infinite
}
.grid-page {
    grid-template-columns: 220px minmax(0, 1fr) 330px;
    display: grid;
    width: 1140px;
    margin: auto;
    padding: 0;
    background: #f3f3f3
}
.grid-page.grid-page-wide {
    grid-template-columns: 220px minmax(0, 1fr);
}
html.dark .grid-page {
    background: #171717
}
html.wide .grid-page {
    width: 100%
}
html.mini .grid-page {
    grid-template-columns: 60px minmax(0, 1fr) 330px
}
html.mini .grid-page.grid-page-wide {
    grid-template-columns: 60px minmax(0, 1fr)
}
main {
    position: relative;
    z-index: 1;
    background: var(--background)
}
aside.left {
    position: relative;
    z-index: 3;
    background: var(--background)
}
aside.left .outer {
    position: fixed;
    left: calc(50% - 570px);
    width: 220px;
    height: 100dvh;
    border-right: var(--border);
    z-index: 999;
    background: var(--background)
}
html.wide aside.left .outer {
    left: 0
}
html.mini aside.left .outer {
    width: 60px
}
aside.left .top {
    position: relative;
    display: grid;
    grid-template-columns: 32px 1fr;
    padding: var(--margin);
    padding-bottom: unset;
    z-index: 3;
    grid-gap: 10px
}
html.mini aside.left .top {
    grid-template-columns: 1fr
}
aside.left .top .tools {
    text-align: right
}
html.mini aside.left .top .tools {
    text-align: center
}
aside.left .top .tools .tool {
    display: inline-block;
    vertical-align: middle;
    padding: 4px 4px;
    cursor: pointer;
    position: relative
}
aside.left .top .tools .tool:hover {
    color: var(--color)
}
aside.left .top .tools .tooltip {
    width: 55px;
    left: -12px;
    bottom: -27px
}
aside.left .mobile-menu {
    display: none;
    border-left: var(--border);
    text-align: center;
    font-size: 22px;
    line-height: 22px;
    padding: var(--margin) 25px;
    padding-top: 18px;
    cursor: pointer
}
aside.left .mobile-menu i {
    transform: rotate(0);
    -webkit-transition: all .25s;
    -moz-transition: all .25s;
    -ms-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}
html.mobile-menu aside.left .mobile-menu {
    background: var(--color)
}
html.mobile-menu aside.left .mobile-menu i {
    color: white;
    transform: rotate(90deg)
}
html.dark.mobile-menu aside.left .mobile-menu i {
    color: black
}
html.mini aside.left .top .tooltip {
    top: 6px;
    bottom: unset;
    left: 34px
}
html.dark.mini aside.left .top .tooltip {
    background: black
}
aside.left .top .tools .tool.theme .tooltip {
    left: -4px
}
aside.left .top .tools .tool:hover .tooltip {
    visibility: visible;
    opacity: 1
}
html.mini aside.left .top .tools .tool {
    display: none
}
html.mini aside.left .top .tools .tool.mini {
    display: block;
    color: var(--color)
}
aside.left .top .tools .tool.wide .icon {
    transform: rotate(90deg);
    -webkit-transition: transform .5s;
    -moz-transition: transform .5s;
    -ms-transition: transform .5s;
    -o-transition: transform .5s;
    transition: transform .5s;
    position: relative;
    top: 0
}
html.wide aside.left .top .tools .tool.wide .icon {
    transform: rotate(0deg);
    top: 0
}
aside.left .top .tools .theme {
    padding-right: 0
}
aside.left .top .tools .theme .toggle {
    width: 38px;
    height: 23px;
    border: var(--border);
    z-index: 2;
    display: block;
    position: relative;
    position: relative;
    border-radius: 14px;
    cursor: pointer
}
html.dark aside.left .top .tools .theme .toggle {
    border-color: #595959
}
aside.left .top .tools .theme .circle {
    position: absolute;
    height: calc(100% - 4px);
    background: var(--color);
    border-radius: 50%;
    top: 3px;
    left: 3px;
    width: 15px;
    height: 15px
}
html.dark aside.left .top .tools .theme .toggle .circle {
    left: 18px
}
aside.left .logo {
    display: block;
    height: 100%
}
aside.left .logo svg {
    height: 32px;
    width: 32px
}
aside.left .logo .gradient {
    fill: var(--color)
}
aside.left .logo .square {
    animation-iteration-count: infinite;
    animation-duration: 5s;
    transition-timing-function: ease-in-out
}
aside.left .bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 220px
}
html.mini aside.left .bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px
}
aside.left .bottom .link {
    padding: 6px var(--margin);
    display: block;
    font-size: 14px;
    border-top: var(--border);
    opacity: .75;
    font-weight: 500
}
html.mini aside.left .bottom .link {
    padding: 8px 2px;
    text-align: center;
    line-height: 14px;
    font-size: 12px
}
aside.left .bottom .link:hover {
    opacity: 1;
    color: var(--color)
}
aside.left .bottom .link i {
    width: 32px;
    text-align: center;
    margin-right: 7px
}
html.mini aside.left .bottom .link i {
    width: 100%;
    display: block;
    margin: unset;
    margin-bottom: 3px
}
aside.left .bottom .account {
    border-top: var(--border);
    padding: var(--margin);
    display: grid;
    grid-template-columns: 32px 1fr;
    grid-gap: 10px;
    padding: 18px var(--margin);
    color: var(--color);
    cursor: pointer
}
aside.left .bottom .account-menu {
    position: absolute;
    z-index: 9;
    bottom: 12px;
    width: 231px;
    left: var(--margin);
    display: none;
    background: var(--background);
    font-size: 17px;
    line-height: 17px;
    border: 1px solid var(--color);
    border-radius: var(--border-radius);
}
aside.left .bottom .account-menu.active {
    display: block
}
aside.left .bottom .account-menu .profile {
    text-align: center;
    padding: var(--margin)
}
aside.left .bottom .account-menu .profile .image img {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    object-fit: cover
}
aside.left .bottom .account-menu .profile .username {
    font-weight: 600;
    color: var(--color)
}
aside.left .bottom .account-menu li a {
    display: grid;
    grid-template-columns: 35px 1fr;
    padding: 12px 6px;
    cursor: pointer !important
}
aside.left .bottom .account-menu li a:hover {
    color: var(--color);
    background: var(--color-light)
}
aside.left .bottom .account-menu li .image {
    text-align: center;
    position: relative;
    opacity: .5
}
aside.left .bottom .account-menu li:hover .image {
    opacity: 1
}
aside.left .bottom .account-menu li .image i {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto
}
aside.left .bottom .account-menu li .name {
    font-weight: 600
}
aside.left .bottom .account-menu ul {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0
}
aside.left .bottom .account-menu li {
    border-top: var(--border)
}
aside.left .bottom .account-menu-layer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .8);
    z-index: 8;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
    filter: grayscale(0)
}
aside.left .bottom .account-menu-layer.active {
    opacity: 1;
    visibility: visible;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px)
}
html.dark aside.left .bottom .account-menu-layer {
    background: rgba(0, 0, 0, .7)
}
aside.left .bottom .account:hover {
    background: var(--background-hover)
}
aside.left .bottom .account.active {
    background: var(--color-light);
    color: black
}
html.dark aside.left .bottom .account.active {
    background: #0c0c0c
}
html.mini aside.left .bottom .account {
    grid-template-columns: 1fr;
    padding: 0;
    line-height: 15px;
    grid-gap: 2px;
    font-size: 14px;
    text-align: center;
    padding: 18px 0
}
aside.left .bottom .account .image {
    text-align: center;
    position: relative
}
aside.left .bottom .account .image img {
    height: 32px;
    width: 32px;
    position: absolute;
    left: 0;
    top: -5px;
    border-radius: 50%;
    object-fit: cover
}
html.mini aside.left .bottom .account .image {
    font-size: 16px;
    line-height: 16px
}
html.mini aside.left .bottom .account .image {
    height: 16px
}
html.mini aside.left .bottom .account .image img {
    top: 0;
    position: relative;
    left: unset
}
html.mini aside.left .bottom .account .name {
    display: none
}
html.mini aside.left .bottom .link .name {
    display: none
}
aside.left .bottom .account .name {
    font-weight: 600
}
aside.right {
    border-left: var(--border);
    width: calc(100% + 1px);
    position: relative;
    left: -1px;
    z-index: 2;
    background: var(--background)
}
aside.right section.nav {
    border-bottom: var(--border);
}
aside.right section.nav h3 {
    color: var(--color);
    padding: var(--margin);
    border-bottom: var(--border);
}
aside.right section.nav ul {
    margin: var(--margin);
}
aside.right section.nav li {
    padding-left: 14px;
    position: relative;
}
aside.right section.nav li:before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    background: var(--color);
    left: 0;
    top: 13px;
    border-radius: 50%;
}
aside.right section.nav a {
    display: block;
    padding: 4px 0;
}
aside.right section.nav .active a {
    color: var(--color);
    font-weight: 900;
}
aside.right section.nav a:hover {
    color: var(--color);
}
aside.right h3 {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: var(--margin-s)
}
aside.right h3 span.info {
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    color: rgba(0, 0, 0, .5);
    position: relative;
    top: 4px;
    float: right;
    opacity: .5
}
.tooltip {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    background: white;
    font-size: 14px;
    line-height: 14px;
    border-radius: var(--border-radius);
    color: black;
    font-weight: 500;
    border: var(--border);
    padding: 4px 0
}
html.dark .tooltip {
    background: black;
    color: white
}
.tags {
    margin-bottom: 2px;
    font-size: 17px;
    line-height: 29px
}
.tags.small {
    margin-bottom: 2px;
    font-size: 14px;
    line-height: 20px
}
.tags.medium {
    margin-bottom: 2px;
    font-size: 15px;
    line-height: 26px;
}
.tags li {
    display: inline-block;
    background: white;
    padding: 0 5px;
    border-radius: var(--border-radius);
    margin-bottom: 2px;
    font-weight: 500;
}
.tags li.type-article {
    background: var(--color-article);
    color: white
}
.tags li.type-news {
    background: var(--color-news);
    color: white
}
.tags li.category {
    background: #efefef
}
.tags li.category a:hover {
    color: var(--color);
}
html.dark .tags li.category {
    background: #2d2d2d
}
.section-text {
    font-size: 16px;
    line-height: 18px;
    padding: var(--margin);
    border-bottom: var(--border)
}
@media all and (max-width: 1140px) {
    footer {
        width: 744px;
        left: calc(50% - 280px)
    }
    .grid-page {
        width: 960px;
        grid-template-columns: 200px minmax(0, 1fr) 330px
    }
    .grid-page.grid-page-wide {
        grid-template-columns: 200px minmax(0, 1fr)
    }
    aside.left .outer {
        left: calc(50% - 480px);
        width: 200px
    }
    aside.left .top .tools {
        text-align: center !important
    }
    aside.left .bottom {
        width: 200px
    }
}
@media all and (max-width: 960px) {
    footer {
        width: calc(100% - 60px);
        left: 60px
    }
    aside.right section.nav.no-mobile {
        display: none;
    }
    aside.left .tooltip {
        display: none !important
    }
    .grid-page {
        grid-template-columns: minmax(0, 1fr) !important;
        width: 100%;
        padding-left: 60px
    }
    aside.left .outer {
        width: 60px
    }
    aside.left .top {
        grid-template-columns: 1fr !important;
        padding: 10px;
        text-align: center
    }
    aside.left .top .tools {
        text-align: center !important
    }
    aside.left .top .tooltip {
        top: 6px !important;
        bottom: unset !important;
        left: 34px !important
    }
    aside.left .top .tooltip {
        top: 6px !important;
        bottom: unset !important;
        left: 34px !important
    }
    aside.left .top .tools .tool {
        display: none !important
    }
    aside.left .top .tools .tool.mini {
        display: none !important
    }
    aside.left .top .tools .tool.theme {
        display: inline-block !important;
        padding: 0
    }
    aside.left .bottom {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 60px !important
    }
    aside.left .bottom .link {
        padding: 8px 2px !important;
        text-align: center !important;
        line-height: 14px !important;
        font-size: 12px !important
    }
    aside.left .bottom .link i {
        width: 100% !important;
        display: block !important;
        margin: unset !important;
        margin-bottom: 3px !important
    }
    aside.left .bottom .account {
        grid-template-columns: 1fr !important;
        line-height: 15px !important;
        grid-gap: 2px !important;
        font-size: 14px !important;
        text-align: center !important
    }
    aside.left .bottom .account .image {
        font-size: 24px !important;
        line-height: 24px !important;
        height: 32px !important;
        padding-top: 4px
    }
    aside.left .bottom .account .image img {
        top: 0;
        position: relative;
        left: unset
    }
    aside.left .bottom .account .name {
        display: none
    }
    html.mini aside.left .bottom .link .name {
        display: none
    }
}
@media all and (max-width: 720px) {
    html.mini aside.left .bottom .link {
        display: none
    }
}
@media all and (max-width: 540px) {
    html.mini .grid-page {
        padding: 0
    }
    aside.left {
        height: 60px;
        background: var(--background);
        border-bottom: var(--border)
    }
    aside.left .outer {
        top: 0;
        width: 100% !important;
        height: 60px;
        background: var(--background);
        position: fixed;
        border: unset;
        z-index: 2;
        opacity: 1;
        -webkit-transition: top .5s;
        -moz-transition: top .5s;
        -ms-transition: top .5s;
        -o-transition: top .5s;
        transition: top .5s;
        border-bottom: var(--border);
        display: grid;
        grid-template-columns: 1fr auto
    }
    aside.left.mobile-hide .outer {
        top: -60px
    }
    html.mobile-menu aside.left.mobile-hide .outer {
        top: 0 !important
    }
    aside.left .top {
        grid-template-columns: auto auto 1fr !important;
        grid-gap: var(--margin);
        padding: 14px var(--margin)
    }
    html.mini aside.left .top .tools .tool {
        padding: 2px 7px
    }
    aside.left .top .tools .tool.search {
        display: inline-block !important
    }
    aside.left .logo {
        height: 32px;
        width: 32px;
        margin-right: 4px
    }
    aside.left .logo svg {
        width: 30px;
        height: 30px
    }
    aside.left .bottom {
        position: relative !important;
        top: 0;
        right: 0;
        left: unset !important;
        height: unset;
        width: unset !important;
        text-align: right;
        display: grid;
        grid-template-columns: 1fr 1fr
    }
    aside.left .mobile-menu {
        display: block
    }
    aside.left .bottom .account {
        border: unset;
        padding: 12px 25px !important;
        display: inline-block;
        border-left: var(--border);
        font-size: 20px !important;
        height: 100%
    }
    aside.left .bottom .account-menu {
        position: fixed;
        text-align: left;
        width: unset;
        left: var(--margin);
        right: var(--margin);
        bottom: unset;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        margin: auto;
        padding: var(--margin);
        border: var(--border)
    }
    aside.left .bottom .account-menu .profile {
        margin-bottom: var(--margin)
    }
    aside.left .bottom .account-menu li a {
        grid-template-columns: 1fr;
        text-align: center
    }
    aside.left .bottom .account-menu li .image {
        font-size: 22px;
        line-height: 22px;
        margin-bottom: var(--margin);
        opacity: 1
    }
    aside.left .bottom .account-menu li .image i {
        position: relative;
        margin-bottom: 0
    }
    aside.left .bottom .account-menu li .name {
        font-weight: 500;
        color: var(--color)
    }
    aside.left .bottom .account-menu ul {
        grid-template-columns: 1fr 1fr;
        grid-gap: var(--margin)
    }
    aside.left .bottom .account-menu li {
        border: var(--border);
        border-radius: var(--border-radius)
    }
    aside.left .bottom .account-menu-layer.active {
        top: 0;
    }
    aside.left .bottom .account.active {
        background: var(--color)
    }
    aside.left .bottom .account .image img {
        top: -4px !important;
    }
    aside.left .bottom .account.active {
        background: var(--color) !important
    }
    aside.left .bottom .account-menu li:last-of-type {
        position: absolute;
        top: -20px;
        right: var(--margin);
        border: var(--border)
    }
    aside.left .bottom .account-menu li:last-of-type a {
        display: block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        padding: 0;
        background: var(--background);
        border-radius: var(--border-radius)
    }
    aside.left .bottom .account-menu li:last-of-type .image {
        height: unset !important;
        line-height: unset
    }
    aside.left .bottom .account-menu li:last-of-type .image i {
        margin: unset
    }
    aside.left .bottom .account-menu li:last-of-type .name {
        display: none
    }
}
@keyframes spinner {
    from {
        -webkit-transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg)
    }
}