.w-max-165 { max-width: 165px; }
.w-max-300 { max-width: 300px; }
.w-max-310 { max-width: 310px; }
.w-max-480 { max-width: 480px; }
.w-max-728 { max-width: 728px; }

.none {
    display: none !important;
}

.block {
    display: block;
}

.inline-flex {
    display: inline-flex;
}

.grid {
    display: grid;
}

.svg-white {
    fill: white;
}

.svg-black {
    fill: black;
}

.svg-pink {
    fill: var(--color-pink);
}

.svg-brand {
    fill: var(--color-brand);
}

.svg-red {
    fill: var(--color-red);
}

.svg-txt {
    fill: var(--color-txtSecondary);
}

.svg-third {
    fill: var(--color-txtThird);
}

.bg-con {
    display: inline-flex;
    align-items: center;
    position: relative;
    border-radius: 8px;
    padding: 5px;
    transition: all var(--transition-delay) ease;
}

.bg-con:hover {
    background-color: var(--color-bgTheme-small);
}

.bg-con:active {
    transform: scale(var(--scale-hover));
}

.bg-none {
    background-color: transparent;
}

.bg-primary {
    background-color: var(--color-bgPrimary);
}

.bg-secondary {
    background-color: var(--color-bgSecondary);
}

.bg-navs {
    background-color: var(--color-bgTheme-navs);
}

.bg-tiny {
    background-color: var(--color-bgTheme-tiny);
}

.bg-small {
    background-color: var(--color-bgTheme-small);
}

.bg-default {
    background-color: var(--color-bgTheme-default);
}

.bg-big {
    background-color: var(--color-bgTheme-big);
}

.bg-950 {
    background-color: var(--color-bg950);
}

.bg-900 {
    background-color: var(--color-bg900);
}

.bg-800 {
    background-color: var(--color-bg800);
}

.bg-700 {
    background-color: var(--color-bg700);
}

.bg-red {
    background-color: var(--color-red);
}

.bg-aqua {
    background-color: var(--color-aqua);
}

.bg-pink {
    background-color: var(--color-pink);
}

.bg-peach {
    background-color: var(--color-peach);
}

.bg-green {
    background-color: var(--color-green);
}

.bg-brand {
    background-color: var(--color-brand);
}

.bg-orange {
    background-color: var(--color-orange);
}

.bg-accent-brand {
    background-color: var(--accent-brand);
}

.bg-accent-orange {
    background-color: var(--accent-orange);
}

.color-primary {
    color: var(--color-txtPrimary);
}

.color-secondary {
    color: var(--color-txtSecondary);
}

.color-third {
    color: var(--color-txtThird);
}

.color-red {
    color: var(--color-red);
}

.color-green {
    color: var(--color-green);
}

.color-orange {
    color: var(--color-orange);
}

.color-peach {
    color: var(--color-peach);
}

.color-pink {
    color: var(--color-pink);
}

.color-aqua {
    color: var(--color-aqua);
}

.color-brand {
    color: var(--color-brand);
}

.color-theme {
    color: var(--color-bg950);
}

.br-4 {
    border-radius: 4px;
}

.br-6 {
    border-radius: 6px;
}

.br-8 {
    border-radius: 8px;
}

.br-12 {
    border-radius: 12px;
}

.br-16 {
    border-radius: 16px;
}

.br-22 {
    border-radius: 22px;
}

.br-32 {
    border-radius: 32px;
}

.br-avatar {
    border-radius: 50%;
}

.br-primary {
    border: 1px solid var(--color-bgPrimary);
}

.br-secondary {
    border: 1px solid var(--color-bgSecondary);
}

.br-tiny {
    border: 1px solid var(--color-bgTheme-tiny);
}

.br-small {
    border: 1px solid var(--color-bgTheme-small);
}

.br-default {
    border: 1px solid var(--color-bgTheme-default);
}

.br-big {
    border: 1px solid var(--color-bgTheme-big);
}

.br-peach {
    border: 1px solid var(--color-peach);
}

.br-aqua {
    border: 1px solid var(--color-aqua);
}

.br-950 {
    border: 1px solid var(--color-bg950);
}

.br-900 {
    border: 1px solid var(--color-bg900);
}

.br-800 {
    border: 1px solid var(--color-bg800);
}

.br-700 {
    border: 1px solid var(--color-bg700);
}

.br-orange {
    border: 1px solid var(--color-orange);
}

.br-red {
    border: 1px solid var(--color-red);
}

.br-pink {
    border: 1px solid var(--color-pink);
}

.br-brand {
    border: 1px solid var(--color-brand);
}

.link {
    cursor: pointer;
    text-decoration: none;
}

.scale {
    transition: transform var(--transition-delay) ease;
    will-change: transform;
    backface-visibility: hidden;
}

.scale:hover {
    transform: scale(var(--scale-hover));
}

.scale:active {
    transform: scale(var(--scale-click));
}

.tr-y {
    transition: transform var(--transition-delay) ease;
}

.tr-y:hover {
    transform: translateY(-3px);
}

.tr-s img {
    transition: transform var(--transition-delay) ease;
}

.tr-s:hover img {
    transform: scale(1.05);
}

.lUnder {
    text-decoration: none;
    transition: text-decoration var(--transition-delay) ease;
}

.lColor {
    color: var(--color-pink);
    transition: text-decoration var(--transition-delay) ease;
}

.lColor:hover, .lUnder:hover {
    text-decoration: underline;
}

.lAcUnder {
    text-decoration: underline;
    transition: text-decoration var(--transition-delay) ease;
}

.lAcUnder:hover {
    text-decoration: none;
}

.lAcDot {
    text-underline-offset: 3px;
    text-decoration: underline dotted;
    transition: text-decoration var(--transition-delay) ease;
}

.lAcDot:hover {
    text-decoration: none;
}

.lOpacity {
    transition: opacity var(--transition-delay) ease;
}

.lOpacity:hover {
    opacity: 1;
}

.txt {
    hyphens: auto;
}

.txt-elip {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.txt-nowrap {
    white-space: nowrap;
}

.txt-center {
    text-align: center;
}

.txt-left {
    text-align: left;
}

.txt-right {
    text-align: right;
}

.txt-no {
    text-transform: none;
}

.txt-pre {
    white-space: pre-wrap;
}

.txt-f100 {
    font-weight: 100;
}

.txt-f200 {
    font-weight: 200;
}

.txt-f300 {
    font-weight: 300;
}

.txt-f400 {
    font-weight: 400;
}

.txt-f500 {
    font-weight: 500;
}

.txt-f600 {
    font-weight: 600;
}

.txt-f700 {
    font-weight: 700;
}

.txt-f800 {
    font-weight: 800;
}

.txt-f900 {
    font-weight: 900;
}

.txt-fb {
    font-weight: bold;
}

.txt-12 {
    font-size: 12px;
}

.txt-13 {
    font-size: 13px;
}

.txt-14 {
    font-size: 14px;
}

.txt-15 {
    font-size: 15px;
}

.txt-16 {
    font-size: 16px;
}

.txt-17 {
    font-size: 17px;
}

.txt-18 {
    font-size: 18px;
}

.txt-19 {
    font-size: 19px;
}

.txt-20 {
    font-size: 20px;
}

.txt-21 {
    font-size: 21px;
}

.txt-22 {
    font-size: 22px;
}

.txt-23 {
    font-size: 23px;
}

.txt-24 {
    font-size: 24px;
}

.txt-25 {
    font-size: 25px;
}

.txt-26 {
    font-size: 26px;
}

.txt-27 {
    font-size: 27px;
}

.txt-28 {
    font-size: 28px;
}

.txt-29 {
    font-size: 29px;
}

.txt-30 {
    font-size: 30px;
}

.txt-31 {
    font-size: 31px;
}

.txt-32 {
    font-size: 32px;
}

.unbounded {
    font-family: var(--font-second) !important;
}

.lh-12 {
    line-height: 12px;
}

.lh-14 {
    line-height: 14px;
}

.lh-16 {
    line-height: 16px;
}

.lh-18 {
    line-height: 18px;
}

.lh-19 {
    line-height: 19px;
}

.lh-21 {
    line-height: 21px;
}

.lh-140pc {
    line-height: 1.4;
}

.cover {
    object-fit: cover;
    overflow: hidden;
    opacity: 1;
}

.flex {
    display: flex;
}

.flex-items {
    align-items: center;
}

.flex-startit {
    align-items: flex-start;
}

.flex-endit {
    align-items: flex-end;
}

.flex-just {
    justify-content: center;
}

.flex-evenly {
    justify-content: space-evenly;
}

.flex-between {
    justify-content: space-between;
}

.flex-end {
    justify-content: end;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-shrink {
    flex-shrink: 0;
}

.flex-1 {
    flex: 1;
}

.flex-1-1-0 {
    flex: 1 1 0;
}

.gap-0 {
    gap: 0px;
}

.gap-2 {
    gap: 2px;
}

.gap-4 {
    gap: 4px;
}

.gap-6 {
    gap: 6px;
}

.gap-8 {
    gap: 8px;
}

.gap-12 {
    gap: 12px;
}

.gap-16 {
    gap: 16px;
}

.gap-24 {
    gap: 24px;
}

.gap-32 {
    gap: 32px;
}

.gap-42 {
    gap: 42px;
}

.gap-48 {
    gap: 48px;
}

.gap-52 {
    gap: 52px;
}

.row-gap-0 {
    row-gap: 0px;
}

.row-gap-2 {
    row-gap: 2px;
}

.row-gap-4 {
    row-gap: 4px;
}

.row-gap-8 {
    row-gap: 8px;
}

.row-gap-12 {
    row-gap: 12px;
}

.row-gap-16 {
    row-gap: 16px;
}

.row-gap-24 {
    row-gap: 24px;
}

.row-gap-32 {
    row-gap: 32px;
}

.row-gap-42 {
    row-gap: 42px;
}

.size-12 {
    width: 12px;
    height: 12px;
    max-width: 12px;
    min-width: 12px;
    max-height: 12px;
    min-height: 12px;
}

.size-14 {
    width: 14px;
    height: 14px;
    max-width: 14px;
    min-width: 14px;
    max-height: 14px;
    min-height: 14px;
}

.size-16 {
    width: 16px;
    height: 16px;
    max-width: 16px;
    min-width: 16px;
    max-height: 16px;
    min-height: 16px;
}

.size-18 {
    width: 18px;
    height: 18px;
    max-width: 18px;
    min-width: 18px;
    max-height: 18px;
    min-height: 18px;
}

.size-20 {
    width: 20px;
    height: 20px;
    max-width: 20px;
    min-width: 20px;
    max-height: 20px;
    min-height: 20px;
}

.size-24 {
    width: 24px;
    height: 24px;
    max-width: 24px;
    min-width: 24px;
    max-height: 24px;
    min-height: 24px;
}

.size-28 {
    width: 28px;
    height: 28px;
    max-width: 28px;
    min-width: 28px;
    max-height: 28px;
    min-height: 28px;
}

.size-32 {
    width: 32px;
    height: 32px;
    max-width: 32px;
    min-width: 32px;
    max-height: 32px;
    min-height: 32px;
}

.size-42 {
    width: 42px;
    height: 42px;
    max-width: 42px;
    min-width: 42px;
    max-height: 42px;
    min-height: 42px;
}

.size-48 {
    width: 48px;
    height: 48px;
    max-width: 48px;
    min-width: 48px;
    max-height: 48px;
    min-height: 48px;
}

.size-52 {
    width: 52px;
    height: 52px;
    max-width: 52px;
    min-width: 52px;
    max-height: 52px;
    min-height: 52px;
}

.size-64 {
    width: 64px;
    height: 64px;
    max-width: 64px;
    min-width: 64px;
    max-height: 64px;
    min-height: 64px;
}

.size-128 {
    width: 128px;
    height: 128px;
    max-width: 128px;
    min-width: 128px;
    max-height: 128px;
    min-height: 128px;
}

.size-172 {
    width: 172px;
    height: 172px;
    max-width: 172px;
    min-width: 172px;
    max-height: 172px;
    min-height: 172px;
}

.size-192 {
    width: 192px;
    height: 192px;
    max-width: 192px;
    min-width: 192px;
    max-height: 192px;
    min-height: 192px;
}

.size-256 {
    width: 256px;
    height: 256px;
    max-width: 256px;
    min-width: 256px;
    max-height: 256px;
    min-height: 256px;
}

.margin-auto {
    margin: 0 auto;
}

.mr-auto {
    margin-right: auto;
}

.mr-4 {
    margin-right: 4px;
}

.mr-6 {
    margin-right: 6px;
}

.ml-auto {
    margin-left: auto;
}

.ml--2 {
    margin-left: -2px;
}

.ml--4 {
    margin-left: -4px;
}

.ml--20 {
    margin-left: -20px;
}

.ml-2 {
    margin-left: 2px;
}

.ml-4 {
    margin-left: 4px;
}

.ml-6 {
    margin-left: 6px;
}

.ml-8 {
    margin-left: 8px;
}

.ml-12 {
    margin-left: 12px;
}

.ml-16 {
    margin-left: 16px;
}

.ml-32 {
    margin-left: 32px;
}

.ml-48 {
    margin-left: 48px;
}

.mt--2 {
    margin-top: -2px;
}

.mt-2 {
    margin-top: 2px;
}

.mt-4 {
    margin-top: 4px;
}

.mt-6 {
    margin-top: 6px;
}

.mt-8 {
    margin-top: 8px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-48 {
    margin-top: 48px;
}

.mt-96 {
    margin-top: 96px;
}

.mt-120 {
    margin-top: 120px;
}

.mt--2 {
    margin-top: -2px;
}

.mt--6 {
    margin-top: -6px;
}

.mt--10 {
    margin-top: -10px;
}

.mt--15 {
    margin-top: -15px;
}

.mt--20 {
    margin-top: -20px;
}

.mt--48 {
    margin-top: -48px;
}

.mb-10 {
    margin-bottom: 10px;
}

.min-w-auto {
    min-width: auto;
}

.min-w-0 {
    min-width: 0px;
}

.w-fill {
    width: max-content;
}

.w-full {
    width: 100%;
}

.w-read {
    max-width: var(--width-read);
}

.w-max {
    max-width: var(--width-max);
}

.w-dfcover {
    width: 212px !important;
}

.p-4 {
    padding: 4px;
}

.p-6 {
    padding: 6px;
}

.p-6-10 {
    padding: 6px 10px;
}

.p-8 {
    padding: 8px;
}

.p-12 {
    padding: 12px;
}

.p-16 {
    padding: 16px;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.fixed-center {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
}

.us-none {
    user-select: none;
}

.opacity-035 {
    opacity: 0.35;
}

.opacity-050 {
    opacity: 0.50;
}

.opacity-075 {
    opacity: 0.75;
}

.hover-small:hover {
    background-color: var(--color-bgTheme-small);
}

.hover-default:hover {
    background-color: var(--color-bgTheme-default);
}

.hover-900:hover {
    background-color: var(--color-bg900);
}

.hover-color-txtSecondary:hover {
    color: var(--color-txtSecondary);
}

.shadow-v1 {
    box-shadow: 0px 0px 12px 1px rgb(255, 255, 255, 0.1);
}

.shadow-v2 {
    box-shadow: 0px 0px 12px 1px rgb(0, 0, 0, 0.1);
}

.over-hide {
    overflow: hidden;
}

.cur-pointer {
    cursor: pointer;
}

.cur-grab {
    cursor: grab;
}

.cur-grabbing {
    cursor: grabbing;
}

.badge-soon {
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 8px;
    text-transform: uppercase;
    background-color: var(--color-red);
}

* {
    font-family: var(--font-first);
    color: var(--color-txtPrimary);
    text-transform: lowercase;
    box-sizing: border-box;
    color-scheme: dark;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    scrollbar-gutter: stable;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--color-bgPrimary);
}

img {
    user-select: none !important;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6, select, option {
    text-transform: none;
    margin: 0;
}

button {
    outline: none;
    border: none;
}

button:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

svg {
    flex-shrink: 0;
}

ul {
    margin-left: -17.5px;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: var(--color-bg700);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-bgTheme-big);
}

.--warn {
    padding: 8px;
    font-weight: 500;
    font-size: .90rem;
    text-align: center;
    background-color: var(--color-red);
}

.--wrap {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.--box { 
    padding-bottom: 30px !important;
    max-width: var(--width-max);
    margin: 0 auto;
    width: 100%;
    flex: 1;
}

.--line {
    width: 100%;
    line-height: 1px;
    border: 1px solid var(--color-bgTheme-tiny);
}


.--overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 10000;
}

.--modal-server {
    background-color: white;
    border-radius: 24px;
    width: 90%;
    height: 60%;
    max-width: 450px;
    max-height: 375px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    box-sizing: border-box;
}

.--age-banner {
    position: fixed;
    inset: 0;
    z-index: 999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    animation: bannerFadeIn 0.3s ease-out;
}

@keyframes bannerFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.--age-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 460px;
}

svg.--age-banner-icon {
    width: 84px;
    height: 84px;
}

.--age-banner-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-txtPrimary);
}

.--age-banner-desc {
    margin: 0;
    hyphens: auto;
    font-size: 14px;
    margin-top: -8px;
    text-align: center;
    color: var(--color-txtSecondary);
}

.--age-banner-fraud {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 14px 18px;
    background: var(--color-red);
    border-radius: 10px;
}

.--age-banner-warn {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.--age-banner-subtitle {
    font-size: 12px;
    text-wrap: balance;
    color: var(--color-txtSecondary);
}

.--age-banner-btn {
    padding: 14px 48px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    background: var(--color-brand);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-delay) ease;
}

.--age-banner-btn:hover {
    transform: scale(var(--scale-hover));
}

.--age-banner-btn:active {
    transform: scale(var(--scale-click));
}

.--label {
    font-size: 14px;
    position: absolute;
    left: 14px;
    top: 12px;
    transition: all 0.3s ease;
    pointer-events: none;
    user-select: none;
    color: var(--color-bgTheme-big);
}

.--input {
    border-radius: 16px;
    padding: 12px 12px 8px 12px;
    font-size: 15px;
    color: var(--color-txtSecondary);
    background-color: transparent;
    transition: border var(--transition-delay) ease;
    border: 1px solid var(--color-bgTheme-default);
    text-transform: none !important;
    width: 100%;
}

input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.--input:focus, .--input:hover, .--input:active {
    outline: none;
    border: 1px solid var(--color-bgTheme-big);
}

.--input:focus + .--label,
.--input:not(:placeholder-shown) + .--label {
    top: -8px;
    font-size: 12.5px;
    background-color: var(--color-bg950);
}

.--input::placeholder {
    color: transparent;
}

.--textarea {
    min-width: 100%;
    max-width: 100%;
    min-height: 140px;
    max-height: 280px;
}

.--select {
    background-color: var(--color-bg950);
}

.--select:disabled, .--input:disabled + .--label {
    opacity: 0.5;
    cursor: not-allowed;
}

.--multilabel {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 5px;
    margin-top: -5px;
}

.--button, .--c-button, .--r-button {
    border-radius: 8px;
    padding: 8px 18px;
    user-select: none;
    font-weight: 500;
    cursor: pointer;
}

.--c-button {
    padding: 8px 26px;
}

.--r-button {
    padding: 18px 8px;
}

.--list-comics {
    grid-template-columns: repeat(auto-fit, minmax(max(var(--cover-thumb), calc((100% - 60px) / 6)), 1fr));
}

.--cover {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 10px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 21%,rgba(0,0,0,0.82) 40%,rgba(0,0,0,0.82) 70%,rgba(0,0,0,0.52) 85%,rgba(0,0,0,0) 100%);
}

.--small-cover, .--thumb-cover, .--max-cover {
    aspect-ratio: 2/3;
    object-fit: cover;
    flex-shrink: 0;
}

.--small-cover {
    width: var(--cover-small);
    height: auto;
}

.--thumb-cover {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.--thumb-cover img {
    width: 100%;
    height: auto;
}

.--max-cover {
    width: var(--cover-max);
}

.--comic-name {
    display: -webkit-box;
    hyphens: auto !important;
    word-break: break-word;
    overflow: hidden;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.--genre, .--tag, .--restr {
    width: max-content;
    padding: 6px 8px;
    font-size: 12px;
    font-weight: 400;
    border-radius: 8px;
    border: 1px solid var(--color-bg800);
    background-color: var(--color-bgTheme-small);
}

.--genre {
    font-size: 12.5px;
    font-weight: 500;
}

.--tag {
    color: var(--color-txtSecondary);
    background-color: var(--color-bgTheme-tiny);
}

.--restr {
    font-weight: 500;
    background-color: var(--color-red);
}

.--badge {
    font-size: 11px; 
    padding: 2px 6px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 8px;
    position: relative;
    display: block;
    background-color: var(--color-bgPrimary);
}

.--card-item {
    padding: 12px;
    border-radius: 16px;
    background-color: var(--color-bgTheme-tiny);
    border: 1px solid var(--color-bgTheme-small);
    transition: all 0.3s ease;
}

.--card-item:hover {
    background-color: var(--color-bgTheme-small);
    transform: translateY(-2px);
}

.--scroll {
    overflow-x: auto; 
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}

.--scroll::-webkit-scrollbar { 
    display: none; 
}

.--skan {
    height: auto;
    max-width: 100%;
    min-width: 100%;
    display: block;
}

.--circle_id1, .--circle_id2, .--circle_id3, .--circle_id4, .--circle_id5, .--circle_id6 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.--circle_id1 { background: var(--color-green); }
.--circle_id2 { background: var(--color-aqua); }
.--circle_id3 { background: var(--color-red); }
.--circle_id4, .--circle_id6 { background: var(--color-orange); }
.--circle_id5 { background: var(--color-bgTheme-tiny); }

.--an-loader {
  width: 52px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid var(--color-brand);
  animation:
    l20-1 0.8s infinite linear alternate,
    l20-2 1.6s infinite linear;
}

@keyframes l20-1{
   0%    {clip-path: polygon(50% 50%,0       0,  50%   0%,  50%    0%, 50%    0%, 50%    0%, 50%    0% )}
   12.5% {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100%   0%, 100%   0%, 100%   0% )}
   25%   {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100% 100%, 100% 100%, 100% 100% )}
   50%   {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100% 100%, 50%  100%, 0%   100% )}
   62.5% {clip-path: polygon(50% 50%,100%    0, 100%   0%,  100%   0%, 100% 100%, 50%  100%, 0%   100% )}
   75%   {clip-path: polygon(50% 50%,100% 100%, 100% 100%,  100% 100%, 100% 100%, 50%  100%, 0%   100% )}
   100%  {clip-path: polygon(50% 50%,50%  100%,  50% 100%,   50% 100%,  50% 100%, 50%  100%, 0%   100% )}
}
@keyframes l20-2{ 
  0%    {transform:scaleY(1)  rotate(0deg)}
  49.99%{transform:scaleY(1)  rotate(135deg)}
  50%   {transform:scaleY(-1) rotate(0deg)}
  100%  {transform:scaleY(-1) rotate(-135deg)}
}

.tail-select {
    width: 100% !important;
    padding: 10px !important;
    border-radius: 16px !important;
    background-color: transparent !important;
    border: 1px solid var(--color-bgTheme-default);
}

label.all {
    display: none !important;
}

.--rank-up::before, .--rank-down::before {
    content: "";
    display: inline-block;
    margin-right: 3px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

.--rank-up::before {
    border-bottom: 6px solid var(--color-green);
}

.--rank-down::before {
    border-top: 6px solid var(--color-peach);
}

.--chart { height: 500px; }

@media(max-width: 728px) {
    .--chart { height: 300px; }
}

.--ajax-fade-in {
    animation: ajaxFadeIn 0.4s ease both;
    will-change: opacity;
}

@keyframes ajaxFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.--load {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    background-color: var(--color-bgPrimary);
    transition: opacity 0.3s ease;
}

.--load.--hidden {
    opacity: 0;
    pointer-events: none;
}

.--load-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.--load-title {
    font-family: var(--font-second);
    font-size: 42px;
    font-weight: 600;
    color: var(--color-txtPrimary);
    white-space: nowrap;
}

.--load-slash span {
    display: inline-block;
    transform: scaleX(0);
    transform-origin: left;
}

.--load-slash span:nth-child(1) {
    animation: loadDrawA 1.3s ease infinite;
}

.--load-slash span:nth-child(2) {
    animation: loadDrawB 1.3s ease infinite;
}

@keyframes loadDrawA {
    0%   { transform: scaleX(0); }
    15%  { transform: scaleX(1); }
    80%  { transform: scaleX(1); }
    95%  { transform: scaleX(0); }
    100% { transform: scaleX(0); }
}

@keyframes loadDrawB {
    0%   { transform: scaleX(0); }
    25%  { transform: scaleX(0); }
    40%  { transform: scaleX(1); }
    60%  { transform: scaleX(1); }
    75%  { transform: scaleX(0); }
    100% { transform: scaleX(0); }
}

.--load-sub {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-txtThird);
}

.--load-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.--load-error-img {
    width: 192px;
    height: 192px;
    flex-shrink: 0;
}

.--load-error-title {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.--load-error-sub {
    max-width: 330px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    color: var(--color-txtThird);
}

.--load-error-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.--load-error-link {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-pink);
    text-decoration: none;
    cursor: pointer;
    transition: text-decoration var(--transition-delay) ease;
}

.--load-error-link:hover {
    text-decoration: underline;
}

@media (max-width: 1320px) {
    .--box {
        padding: 0px 12px;
    }
}

@media (max-width: 728px) {
    .--max-cover {
        width: 200px !important;
    }

    .w-dfcover {
        width: 175px !important;
    }

    .__txt-center {
        text-align: center;
    }

    .__size-24 {
        width: 24px;
        height: 24px;
        max-width: 24px;
        min-width: 24px;
        max-height: 24px;
        min-height: 24px;
    }

    .__flex-col {
        flex-direction: column;
    }

    .__flex-row {
        flex-direction: row;
    }

    .__flex-items {
        align-items: center;
    }

    .__flex-items_left {
        align-items: flex-start;
    }

    .__flex-items_unset {
        align-items: unset;
    }

    .__flex-just {
        justify-content: center;
    }

    .__flex-wrap {
        flex-wrap: wrap;
    }

    .__gap-8 {
        gap: 8px;
    }

    .__gap-16 {
        gap: 16px;
    }

    .__ml-auto {
        margin-left: 0;
    }

    .__w-max-no {
        max-width: none;
    }

    /* vanila */

    #footer {
        padding-bottom: 50px;
    }

    .--list-comics {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .--age-banner-btn {
        width: 100%;
        padding: 14px;
    }
}

:root {
    --color-bgPrimary: #1c1b1b;
    --color-bgSecondary: #181818;
    --color-bgTheme-navs: #171616;
    --color-bgTheme-tiny: #ffffff13;
    --color-bgTheme-small: #ffffff1a;
    --color-bgTheme-default: #ffffff26;
    --color-bgTheme-big: #f0f0f080;
    --color-bg950: #282727;
    --color-bg900: #3d3c3c;
    --color-bg800: #464445;
    --color-bg700: #504e4f;
    --color-txtPrimary: #fafafa;
    --color-txtSecondary: #e5dbdb;
    --color-txtThird: #aaaaaa;

    --width-max: 1300px;
    --width-read: 728px;
    --transition-delay: 0.35s;
    --scale-hover: 0.966;
    --scale-click: 0.935;

    --cover-small: 72px;
    --cover-thumb: 162.5px;
    --cover-max: 250px;

    --color-orange: #C03E0D;
    --color-brand: #0D56E3;
    --color-green: #6DA415;
    --color-peach: #FC466B;
    --color-pink: #FF4FB8;
    --color-aqua: #439EB3;
    --color-red: #A53737;
    --color-bgOld: #0B0C14;

    --accent-brand: color-mix(in srgb, var(--color-brand) 32%, transparent);
    --accent-orange: color-mix(in srgb, var(--color-orange) 32%, transparent);

    --corner-main: 12px;
    --corner-rare: 48px;

    --font-first: 'Wix Madefor Display', sans-serif;
    --font-second: 'Unbounded', sans-serif;
}

.shadow {
    -webkit-box-shadow: 0px 0px 13px 1px rgba(237, 242, 246, 0.1);
    -moz-box-shadow: 0px 0px 13px 1px rgba(237, 242, 246, 0.1);
    box-shadow: 0px 0px 13px 1px rgba(237, 242, 246, 0.1);
}

.pre__headerMain {
    position: relative;
    z-index: 15;
    background-color: var(--color-bgTheme-navs);
    border-bottom-left-radius: var(--corner-rare);
    border-bottom-right-radius: var(--corner-rare);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12), 0 10px 26px -10px rgba(255, 255, 255, 0.05);
}

.pre__headerWrap {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: var(--width-max);
    max-width: 100%;
    padding: 16px 0;
}

.pre__headerBrand {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--transition-delay) ease;
    will-change: transform;
    backface-visibility: hidden;
}

.pre__headerBrand:hover {
    transform: scale(var(--scale-hover));
}

.pre__headerBrand:active {
    transform: scale(var(--scale-click));
}

.pre__headerLogo {
    width: 42px;
    height: 42px;
}

.pre__headerBrandText {
    display: flex;
    flex-direction: column;
}

.pre__headerName {
    font-family: var(--font-second);
    font-size: 18px;
    font-weight: 600;
}

.pre__headerBuild {
    font-size: 13px;
    font-weight: 400;
    color: var(--color-txtThird);
}

.pre__headerNav {
    display: flex;
    align-items: center;
    margin-left: 48px;
    padding: 4px;
    border-radius: var(--corner-main);
    background-color: var(--color-bg950);
}

.pre__headerLink {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 6px 14px;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-delay) ease;
    will-change: transform;
    backface-visibility: hidden;
}

.pre__headerLink + .pre__headerLink::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 18px;
    transform: translateY(-50%);
    background-color: var(--color-bgTheme-default);
    transition: opacity var(--transition-delay) ease;
}

.pre__headerLink:hover::before,
.pre__headerLink:hover + .pre__headerLink::before {
    opacity: 0;
}

.pre__headerLinkIcon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: var(--color-txtThird);
    transition: fill var(--transition-delay) ease;
}

.pre__headerLink:hover {
    background-color: var(--color-bgTheme-small);
}

.pre__headerLink:hover .pre__headerLinkIcon {
    fill: var(--color-txtSecondary);
}

.pre__headerLink:active {
    transform: scale(var(--scale-hover));
}

.pre__actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 4px;
    border-radius: var(--corner-main);
    background-color: var(--color-bg950);
}

.pre__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 32px;
    padding: 6px 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-delay) ease;
    will-change: transform;
    backface-visibility: hidden;
}

.pre__action + .pre__action::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 18px;
    transform: translateY(-50%);
    background-color: var(--color-bgTheme-default);
    transition: opacity var(--transition-delay) ease;
}

.pre__action:hover::before,
.pre__action:hover + .pre__action::before {
    opacity: 0;
}

.pre__action:hover {
    background-color: var(--color-bgTheme-small);
}

.pre__action:active {
    transform: scale(var(--scale-hover));
}

.pre__actionOff {
    opacity: 0.35;
    pointer-events: none;
}

.pre__cover {
    aspect-ratio: 2 / 3;
    flex-shrink: 0;
    object-fit: cover;
}

.pre__dropdown {
    position: absolute;
    z-index: 500;
    user-select: none;
    border-radius: 18px;
    width: 250px;
    padding: 8px;
    display: none;
    opacity: 0;
    background-color: var(--color-txtPrimary);
    box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.6);
    transition: all var(--transition-delay) ease;
    transform: scale(0.95);
    transform-origin: top right;
}

.pre__dropdown::before {
    content: "";
    position: absolute;
    top: -5px;
    right: 53px;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    transform: rotate(45deg);
    background-color: var(--color-txtPrimary);
}

.pre__dropdownAnim {
    opacity: 1 !important;
    transform: scale(1) !important;
    transition: opacity 150ms cubic-bezier(.4, 0, .2, 1), transform 150ms cubic-bezier(.4, 0, .2, 1);
}

.pre__dropdownList {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0;
    padding: 2px 0px;
}

.pre__dropdownItem {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--corner-main);
    text-decoration: none;
    cursor: pointer;
    transition: background-color var(--transition-delay) ease;
}

.pre__dropdownItem:hover {
    background-color: var(--color-brand);
}

.pre__dropdownIcon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: var(--color-bgPrimary);
    transition: fill var(--transition-delay) ease;
}

.pre__dropdownItem:hover .pre__dropdownIcon {
    fill: var(--color-txtPrimary);
}

.pre__dropdownItemBody {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pre__dropdownText {
    display: block;
    overflow: hidden;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: var(--color-bgPrimary);
    transition: color var(--transition-delay) ease;
}

.pre__dropdownNote {
    margin-top: -2px;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    white-space: nowrap;
    color: var(--color-bg700);
    transition: color var(--transition-delay) ease;
}

.pre__dropdownItem:hover .pre__dropdownText,
.pre__dropdownItem:hover .pre__dropdownNote {
    color: var(--color-txtPrimary);
}

.pre__dropdownBadge {
    flex-shrink: 0;
    margin-left: auto;
    padding: 3px 7px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 6px;
    background-color: var(--color-brand);
    color: var(--color-txtPrimary);
    transition: all var(--transition-delay) ease;
}

.pre__dropdownItem:hover .pre__dropdownBadge {
    background-color: var(--color-txtPrimary);
    color: var(--color-brand);
}

#head-add {
    top: 64px;
    right: 0;
}

.pre__footerMain {
    margin-top: 60px;
    background-color: var(--color-bgTheme-navs);
    border-top-left-radius: var(--corner-rare);
    border-top-right-radius: var(--corner-rare);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 -10px 26px -10px rgba(255, 255, 255, 0.05);
}

.pre__footerWrap {
    margin: 0 auto;
    width: var(--width-max);
    max-width: 100%;
    padding: 48px 0px 48px;
}

.pre__footerTop {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.pre__footerNav {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 32px 120px;
}

.pre__footerColumn {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
}

.pre__footerTitle {
    color: var(--color-txtThird);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: lowercase;
}

.pre__footerLinks {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pre__footerLink {
    font-size: 15px;
    text-underline-offset: 3px;
    text-decoration: underline dotted;
    transition: text-decoration 0.3s ease;
}

.pre__footerLink:hover {
    text-decoration: none;
}

.pre__footerLogo {
    width: 156px;
    height: auto;
    flex-shrink: 0;
    cursor: grabbing;
    transition: transform 0.3s;
}

.pre__footerLogo:hover {
    transform: rotate(-21.6deg);
}

.pre__footerLogoImg {
    width: 100%;
    height: auto;
    user-select: none;
}

.pre__footerBottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pre__footerContacts {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    align-items: flex-start;
    min-width: 0;
    gap: 24px 30px;
}

.pre__footerContact {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 0px;
}

.pre__footerContactLabel {
    color: var(--color-txtSecondary);
    font-size: 14px;
    font-weight: 500;
}

.pre__footerContactMail {
    font-size: 15px;
    font-family: var(--font-second);
    text-underline-offset: 3px;
    text-decoration: underline dotted;
    transition: text-decoration 0.3s ease;
}

.pre__footerContactMail:hover {
    text-decoration: none;
}

.pre__footerDesk {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-txtSecondary);
}

.pre__footerCopy {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-txtThird);
}

.pre__navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: none;
    width: 100%;
    max-width: var(--width-max);
    margin: 0 auto;
    padding: 10px 8px calc(10px + env(safe-area-inset-bottom, 0px));
    border-radius: 18px 18px 0 0;
    background-color: rgba(28, 27, 27, 0.85);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--color-bgTheme-tiny);
    transform: translateZ(0);
    will-change: transform;
    contain: layout paint style;
}

.pre__nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.pre__navItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 36px;
    cursor: pointer;
    text-decoration: none;
    opacity: 0.5;
    transition: opacity var(--transition-delay) ease;
}

.pre__navItem:hover {
    opacity: 1;
}

.pre__navItem:active {
    opacity: 1;
    transform: scale(var(--scale-hover));
}

.pre__navIcon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    fill: var(--color-txtThird);
}

.pre__navText {
    font-size: 12px;
    line-height: 1;
    color: var(--color-txtThird);
    white-space: nowrap;
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .pre__navbar {
        background-color: var(--color-bgTheme-navs);
    }
}

@media (prefers-reduced-motion: reduce) {
    .pre__navItem {
        transition: none;
    }
}

@media (max-width: 1320px) {
    .pre__headerWrap {
        padding: 16px 24px;
    }

    #head-add {
        right: 24px;
    }

    .pre__footerWrap {
        padding: 32px 24px;
    }

    .pre__footerNav {
        gap: 32px 60px;
    }
}

@media (max-width: 728px) {
    .pre__footerTop {
        margin-bottom: 50px;
    }

    .pre__footerNav {
        gap: 24px;
    }

    .pre__footerContacts {
        flex-direction: column;
        gap: 12px;
    }

    .pre__footerDisclaimer,
    .pre__footerDesk,
    .pre__footerCopy {
        font-size: 13px;
    }

    .pre__footerLogo {
        display: none;
    }

    .pre__navbar {
        display: block;
    }

    #head-links {
        display: none;
    }
}

