.btn-wrap {
    display: flex;
    gap: 16px
}

.btn, .btn-wrap {
    align-items: center
}

.btn {
    border: none;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    font-size: 16px;
    font-weight: 700;
    justify-content: center;
    line-height: 20px;
    padding: 6px 24px;
    transition: box-shadow .4s, border .4s, background .4s, color .4s
}

.btn-primary-big--black, .btn-primary-small--black {
    border: 2px solid #000;
    box-shadow: 2px 2px 0 #000;
    color: #000
}

.btn-primary-big--black:hover, .btn-primary-small--black:hover {
    box-shadow: 4px 4px 0 #000
}

.btn-primary-big--black:active, .btn-primary-big--black:focus, .btn-primary-small--black:active, .btn-primary-small--black:focus {
    box-shadow: none
}

.btn-primary-big--black:disabled, .btn-primary-small--black:disabled {
    background-color: hsla(0, 0%, 100%, .01);
    border: 2px solid rgba(0, 0, 0, .4);
    color: rgba(0, 0, 0, .4)
}

.btn-primary-big--white, .btn-primary-small--white {
    background-color: transparent;
    border: 2px solid #fff;
    box-shadow: 2px 2px 0 #fff;
    color: #fff
}

.btn-primary-big--white:hover, .btn-primary-small--white:hover {
    box-shadow: 4px 4px 0 #fff
}

.btn-primary-big--white:active, .btn-primary-big--white:focus, .btn-primary-small--white:active, .btn-primary-small--white:focus {
    box-shadow: none
}

.btn-primary-big--white:disabled, .btn-primary-small--white:disabled {
    background-color: rgba(0, 0, 0, .01);
    border: 2px solid hsla(0, 0%, 100%, .4);
    color: hsla(0, 0%, 100%, .4)
}

.btn-primary-big {
    padding-bottom: 16px;
    padding-top: 16px
}

.btn-primary-big--black {
    background-color: hsla(0, 0%, 100%, .01)
}

.btn-primary-big--white {
    background-color: rgba(0, 0, 0, .01)
}

.btn-outline-white {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff
}

.btn-outline-white:hover {
    box-shadow: 2px 2px 0 #fff
}

.btn-outline-white:active, .btn-outline-white:focus {
    box-shadow: none
}

.btn-outline-black {
    background-color: transparent;
    border: 1px solid #000;
    color: #000
}

.btn-grey {
    background-color: #f7f5f2;
    color: #000;
    padding-left: 16px;
    padding-right: 16px
}

.btn-grey:hover {
    background: #ffdb26
}

.btn-yellow {
    background-color: #ffdb26;
    border: 2px solid #ffdb26;
    color: #000;
    padding-left: 16px;
    padding-right: 16px
}

.btn-yellow:hover {
    background: #ffb726;
    border: 2px solid #ffb726
}

.btn-yellow:active, .btn-yellow:focus {
    background-color: #ffdb26;
    border: 2px solid #ffdb26
}

.btn-black {
    background-color: #000;
    border: 2px solid #000;
    color: #fff;
    padding-left: 16px;
    padding-right: 16px
}

.btn-black:hover {
    color: #ffdb26
}

.btn-black--big, .btn-yellow--big {
    padding-bottom: 14px;
    padding-top: 14px
}

.btn-black:disabled, .btn-yellow:disabled {
    background: #c4c4c4;
    border-color: #c4c4c4;
    box-shadow: none;
    color: #757575;
    cursor: not-allowed
}

.btn-transparent-link {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px
}

.btn-transparent-link svg {
    transition: margin-left .5s
}

.btn-transparent-link:hover svg {
    margin-left: 5px
}

.btn-icon--before {
    margin-right: 8px
}

.btn-icon--after {
    margin-left: 8px
}

.btn.loading {
    color: transparent !important;
    position: relative
}

.btn.loading img {
    display: none
}

.btn.loading:after {
    animation: spin 1.6s linear infinite;
    background-image: url(/build/images/loader.8f3ecc3f.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    content: " ";
    display: inline-block;
    height: 2em;
    position: absolute;
    width: 2em
}

.btn.loading.white:after {
    filter: invert(1)
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(1turn)
    }
}

.error-title {
    color: #ff514d;
    display: block;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 8px;
    margin-top: 4px;
    padding-left: 16px
}

.form-group {
    margin-bottom: 16px
}

.form-group label {
    color: #666;
    display: block;
    font-size: 12px;
    margin-bottom: 8px
}

.form-control, .form-group label {
    font-weight: 500;
    line-height: 16px
}

.form-control {
    background: #fff;
    border: 2px solid #000;
    border-radius: 999px;
    font-size: 14px;
    padding: 14px 16px
}

.form-control::-webkit-input-placeholder {
    color: #666
}

.form-control::-moz-placeholder {
    color: #666
}

.form-control:-ms-input-placeholder {
    color: #666
}

.form-control.error {
    border: 2px solid #ff514d
}

.form-control.error:focus {
    box-shadow: none
}

.form-control.active {
    border: 1px solid #bfbbb6;
    color: var(--text-color)
}

.form-control.active ~ .toggle-password path {
    fill: #f7f5f2
}

.form-control:focus {
    box-shadow: 2px 2px 0 #000;
    color: #000
}

.form-control:valid {
    box-shadow: none;
    color: #000
}

.form-control:disabled {
    background: hsla(0, 0%, 40%, .1);
    border: 2px solid #666;
    color: #666;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px
}

select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACDSURBVHgB7YzPDUAwHIVff+JuFCOwgVG4OJH01oQIGxiBDaxgFAv40+JQUly4+ZImbd97H/DzPkIk3lWWGzLSH5yHjg1qCpHW56L6I5mVsnMjqIbJIn8GC3TJdmfBKLNIdvQNg4Es4y6NU8cwt3ttHccx789do+AoAa7GjyiJOvj5lgU2KC94Gx76uwAAAABJRU5ErkJggg==);
    background-position: 95%;
    background-repeat: no-repeat
}

textarea.form-control {
    border-radius: 20px;
    height: 118px
}

@media (min-width: 768px) {
    textarea.form-control {
        height: 96px
    }
}

input:-webkit-autofill, input:-webkit-autofill:focus, select:-webkit-autofill, select:-webkit-autofill:focus, textarea:-webkit-autofill, textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text-color);
    border: 2px solid #000;
    -webkit-box-shadow: 0 0 0 1000px var(--bg-color) inset;
    transition: background-color 5000s ease-in-out 0s
}

:focus {
    outline: none
}

.custom-checkbox__label {
    align-items: center;
    color: #666;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.custom-checkbox__label a {
    color: #000
}

.custom-checkbox__label a:hover {
    text-decoration: underline
}

.custom-checkbox__label .custom-checkbox__input {
    cursor: pointer;
    height: 0;
    opacity: 0;
    position: absolute;
    width: 0
}

.custom-checkbox__label .custom-checkbox__input:checked ~ .custom-checkbox__checkmark {
    background: #ffdb26 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABSSURBVHgB7Y3BDQAQEAQv0YASlKAUHSpFCaICJWjBekhESNx5ssn8buaI/hTx54EGiQRrcgF2d6BvZAcyMBK5f4+LyJG8i7DkOVIk8hgJUvm1VeijE0EPLr/wAAAAAElFTkSuQmCC);
    background-position: 50%
}

.custom-checkbox__label .custom-checkbox__checkmark {
    background: hsla(0, 0%, 100%, .01);
    border: 1px solid #000;
    border-radius: 4px;
    box-shadow: 1px 1px 0 #000;
    display: inline-block;
    height: 20px;
    margin-right: 10px;
    min-width: 20px;
    order: -1;
    width: 20px
}

.custom-checkbox__label .custom-checkbox__checkmark:after {
    border: solid #fff;
    border-width: 0 3px 3px 0;
    content: "";
    display: none;
    height: 10px;
    left: 9px;
    position: absolute;
    top: 5px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 5px
}

@font-face {
    font-display: swap;
    font-family: Space-Grotesk;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-display: swap;
    font-family: Space-Grotesk;
    font-style: normal;
    font-weight: 300;

}

@font-face {
    font-display: swap;
    font-family: Space-Grotesk;
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-display: swap;
    font-family: Space-Grotesk;
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-display: swap;
    font-family: Space-Grotesk;
    font-style: normal;
    font-weight: 700;
}

.skeleton {
    position: relative
}

.skeleton:before {
    animation: loading 1.5s infinite;
    background: linear-gradient(90deg, transparent, hsla(0, 0%, 100%, .3), transparent);
    transform: translateX(-100%);
    z-index: 12
}

.skeleton:after, .skeleton:before {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%
}

.skeleton:after {
    background: #eee;
    left: 0;
    top: 0;
    z-index: 10
}

.skeleton.main-slider .swiper-wrapper {
    z-index: 11
}

.skeleton.main-slider .swiper-wrapper .main-slider__slide {
    background: #eee !important;
    pointer-events: none
}

.skeleton.main-slider .main-slider__slide-bg {
    opacity: 0
}

.skeleton.main-slider .main-slider__slide-content__logo {
    background: #d3d3d3;
    border: none;
    border-radius: 8px;
    box-shadow: none;
    font-size: 0;
    height: 30px;
    width: 60%;
    z-index: 11
}

@media (min-width: 992px) {
    .skeleton.main-slider .main-slider__slide-content__logo {
        height: 114px;
        width: 300px
    }
}

.skeleton.main-slider .main-slider__slide-content__logo img {
    display: none;
    opacity: 0
}

.skeleton.main-slider .main-slider__slide-content__labels {
    background: #d3d3d3;
    border: none;
    border-radius: 8px;
    box-shadow: none;
    font-size: 0;
    height: 20px;
    width: 40%;
    z-index: 11
}

@media (min-width: 992px) {
    .skeleton.main-slider .main-slider__slide-content__labels {
        width: 80px
    }
}

.skeleton.main-slider .main-slider__slide-content__labels .label__item {
    display: none;
    opacity: 0
}

.skeleton.main-slider .main-slider__slide-content__desc {
    background: #d3d3d3;
    border: none;
    border-radius: 8px;
    box-shadow: none;
    font-size: 0;
    height: 48px;
    z-index: 11
}

.skeleton.main-slider .btn-transparent-link, .skeleton.main-slider .btn.btn-yellow {
    background: #d3d3d3;
    border: none;
    border-radius: 8px;
    box-shadow: none;
    font-size: 0;
    height: 36px;
    width: 100px;
    z-index: 11
}

.skeleton.main-slider .btn-transparent-link svg, .skeleton.main-slider .btn.btn-yellow svg {
    display: none;
    opacity: 0
}

.skeleton.main-slider .main-slider-control {
    background: #d3d3d3;
    border: none;
    box-shadow: none;
    font-size: 0;
    pointer-events: none;
    z-index: 11
}

.skeleton.main-slider .main-slider-control svg {
    display: none
}

.skeleton.main-slider .main-slider-pagination {
    background: #d3d3d3;
    border-radius: 8px;
    font-size: 0;
    height: 16px;
    left: 50%;
    min-width: 130px;
    transform: translateX(-50%);
    z-index: 11
}

.header .hamburger-menu .menu__btn .skeleton.main-slider .main-slider-pagination span:after, .header .hamburger-menu .menu__btn .skeleton.main-slider .main-slider-pagination span:before, .skeleton.main-slider .main-slider-pagination .header .hamburger-menu .menu__btn span:after, .skeleton.main-slider .main-slider-pagination .header .hamburger-menu .menu__btn span:before, .skeleton.main-slider .main-slider-pagination span {
    display: none
}

.skeleton.preview-card .preview-card__numbering {
    background: #d3d3d3;
    border: none;
    box-shadow: none;
    font-size: 0;
    text-indent: -999px;
    z-index: 11
}

.skeleton.preview-card .preview-card__labels:before {
    background: #d3d3d3;
    border-radius: 8px;
    content: "";
    font-size: 0;
    height: 16px;
    text-indent: -999px;
    width: 30px;
    z-index: 11
}

.skeleton.preview-card .preview-card__body {
    z-index: 11
}

.skeleton.preview-card .preview-card__title {
    background: #d3d3d3;
    border-radius: 8px;
    font-size: 0;
    height: 16px;
    text-indent: -999px;
    width: 90%;
    z-index: 11
}

.skeleton.preview-card .preview-card__category {
    background: #d3d3d3;
    border-radius: 8px;
    font-size: 0;
    height: 16px;
    text-indent: -999px;
    width: 50%;
    z-index: 11
}

.skeleton.comic-book-img {
    overflow: hidden
}

@media (min-width: 992px) {
    .skeleton.comic-book-img {
        border-radius: 8px
    }
}

.skeleton.comic-book-img img {
    border: none;
    filter: none;
    opacity: 0
}

@keyframes loading {
    to {
        transform: translateX(100%)
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body, html {
    height: 100%
}

body {
    background: #fff;
    color: #000;
    display: flex;
    flex-direction: column;
    font-family: Space-Grotesk, sans-serif
}

body.no-scroll {
    overflow: hidden
}

body.add-bg:before {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, .25);
    content: "";
    height: 1000vh;
    position: absolute;
    width: 100%;
    z-index: 11
}

main {
    flex: 1 0 auto;
    margin-top: 100px;
    padding-top: 16px
}

@media (min-width: 768px) {
    main {
        margin-top: 134px;
        padding-top: 24px
    }
}

@media (min-width: 992px) {
    main {
        margin-top: 72px
    }
}

.w-100 {
    width: 100%
}

.mb-0 {
    margin-bottom: 0
}

.mb-12 {
    margin-bottom: 12px
}

.mb-16 {
    margin-bottom: 16px
}

.mb-24 {
    margin-bottom: 24px
}

.mb-32 {
    margin-bottom: 32px
}

.d-block {
    display: block
}

a {
    text-decoration: none
}

button {
    font-family: inherit
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none
}

.section__title--h1, h1, h2, h3, h4 {
    font-weight: 700;
    text-transform: uppercase
}

.section__title--h1, h1 {
    font-size: 32px;
    line-height: 40px
}

@media (min-width: 768px) {
    .section__title--h1, h1 {
        font-size: 40px;
        line-height: 48px
    }
}

@media (min-width: 992px) {
    .section__title--h1, h1 {
        font-size: 48px;
        line-height: 56px
    }
}

h2 {
    font-size: 24px;
    line-height: 32px
}

@media (min-width: 768px) {
    h2 {
        font-size: 40px;
        line-height: 48px
    }
}

h3 {
    font-size: 24px;
    line-height: 32px
}

@media (min-width: 768px) {
    h3 {
        font-size: 32px;
        line-height: 40px
    }
}

h4 {
    font-size: 24px;
    line-height: 32px
}

.desc {
    color: rgba(0, 0, 0, .6);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px
}

@media (min-width: 768px) {
    .desc {
        font-size: 16px;
        line-height: 24px
    }
}

.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1312px;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%
}

.container--small {
    max-width: 752px
}

.alert {
    align-items: center;
    background: rgba(255, 81, 77, .1);
    border-radius: 8px;
    color: #000;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    padding: 8px
}

@media (min-width: 768px) {
    .alert {
        font-size: 16px;
        line-height: 20px;
        padding: 16px
    }
}

.alert svg {
    height: 16px;
    margin-right: 9px;
    min-width: 18px
}

.section {
    padding-bottom: 32px
}

@media (min-width: 768px) {
    .section {
        padding-bottom: 48px
    }
}

@media (min-width: 992px) {
    .section {
        padding-bottom: 80px
    }
}

.section-content {
    padding-top: 24px
}

@media (min-width: 992px) {
    .section-content {
        padding-top: 16px
    }
}

.section-head {
    margin-bottom: 16px
}

@media (min-width: 768px) {
    .section-head {
        align-items: center;
        display: flex;
        justify-content: space-between;
        margin-bottom: 24px
    }
}

.section__button {
    display: none
}

@media (min-width: 768px) {
    .section__button {
        display: inline-flex
    }
}

.header, .section .btn-view-all {
    width: 100%
}

.header {
    background-color: #000;
    padding: 8px 0;
    position: fixed;
    top: 0;
    z-index: 13
}

@media (min-width: 768px) {
    .header {
        padding-bottom: 16px
    }
}

@media (min-width: 992px) {
    .header {
        padding-bottom: 8px
    }
}

.header-inner {
    flex-wrap: wrap;
    justify-content: space-between
}

.header-inner, .header-right {
    align-items: center;
    display: flex
}

@media (min-width: 992px) {
    .header-right {
        margin-left: auto
    }
}

.header__logo {
    display: inline-flex
}

@media (min-width: 992px) {
    .header__logo {
        margin-right: 20px;
        order: -2
    }
}

@media (min-width: 1076px) {
    .header__logo {
        margin-right: 48px
    }
}

.header__logo img {
    height: 40px;
    width: auto
}

@media (min-width: 768px) {
    .header__logo img {
        height: 56px
    }

    .header__logo svg {
        height: 32px;
        width: 156px
    }
}

.header .search-btn {
    align-items: center;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    height: 24px;
    justify-content: center;
    width: 24px
}

@media (min-width: 768px) {
    .header .search-btn {
        display: none
    }
}

.header .search-form {
    display: none;
    position: relative
}

@media (min-width: 768px) {
    .header .search-form {
        display: flex
    }
}

@media (min-width: 992px) {
    .header .search-form {
        width: 220px
    }
}

@media (min-width: 1100px) {
    .header .search-form {
        width: 280px
    }
}

.header .search-form.active {
    background: #1a1817;
    display: block;
    left: 16px;
    position: absolute;
    top: 12px;
    width: calc(100% - 32px);
    z-index: 4
}

.header .search-form.active .search-form__close {
    opacity: 1;
    visibility: visible
}

.header .search-form.active .search-form__btn svg path {
    fill: #000
}

.header .search-form .search-form__search {
    height: 32px;
    width: 100%
}

.header .search-form .search-form__search .search-form__btn {
    background: transparent;
    border: none;
    display: flex;
    left: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1
}

.header .search-form .search-form__search .search-form__input {
    border: none;
    border-radius: 25px;
    padding: 8px 10px 9px 44px;
    width: 100%
}

@media (max-width: 768px) {
    .header .search-form .search-form__search .search-form__input::-webkit-search-cancel-button {
        display: none
    }
}

.header .search-form .search-form__search .search-form__input::-webkit-search-decoration, .header .search-form .search-form__search .search-form__input::-webkit-search-results-button, .header .search-form .search-form__search .search-form__input::-webkit-search-results-decoration {
    display: none
}

.header .search-form .search-form__search .search-form__input:focus {
    outline: none
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-width: 768px) {
    .header .search-form .search-form__search .search-form__input:focus {
        font-size: 17.6px;
        margin-right: -33.333333%;
        padding: 9.68px 0 12px 59px;
        transform: scale(.75);
        transform-origin: left top;
        width: 133.333333333%
    }
}

.header .search-form .search-form__close {
    cursor: pointer;
    height: 16px;
    opacity: 0;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    transition: .35s;
    visibility: hidden;
    width: 16px
}

.header .search-form__result {
    display: none
}

.header .search-form__result.active {
    background: #000;
    border: 1px solid #000;
    border-radius: 16px;
    display: block;
    padding: 16px;
    position: absolute;
    top: 40px;
    width: 100%
}

@media (min-width: 768px) {
    .header .search-form__result.active {
        top: 52px
    }
}

.header .search-form__result .title {
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    margin-bottom: 8px
}

.header .hamburger-menu .menu__btn .search-form__result .title span:after, .header .hamburger-menu .menu__btn .search-form__result .title span:before, .header .search-form__result .title .hamburger-menu .menu__btn span:after, .header .search-form__result .title .hamburger-menu .menu__btn span:before, .header .search-form__result .title span {
    color: #ffdb26
}

.header .search-form__result .card {
    border-top: 1px solid hsla(0, 0%, 100%, .2);
    display: flex;
    margin-top: 8px;
    padding-top: 8px;
    position: relative
}

.header .search-form__result .card .title {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0
}

.header .search-form__result .card .title mark {
    background: transparent;
    color: #ffdb26
}

.header .search-form__result .card__label .label__item {
    border-radius: 8px;
    font-size: 12px;
    line-height: 12px
}

.header .search-form__result .card__link {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.header .search-form__result .card__label {
    position: absolute;
    right: 4px;
    top: 12px
}

.header .search-form__result .card .card__img-wrap {
    height: 64px;
    max-width: 64px;
    min-width: 64px;
    overflow: hidden
}

.header .search-form__result .card .card__img-wrap .card__img {
    border-radius: 8px;
    height: 100%;
    object-fit: cover;
    width: 100%
}

.header .search-form__result .card__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 12px;
    padding: 4px 40px 0 0
}

.header .search-form__result .card__content .card__category {
    height: auto
}

.header .search-form__result .card__content .card__category .category__item {
    font-size: 12px;
    line-height: 16px
}

.header .search-form__result .search-form__empty {
    text-align: center
}

.header .search-form__result .search-form__empty .search-form__empty-icon {
    margin-bottom: 8px
}

.header .search-form__result .search-form__empty .search-form__empty-text {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 8px;
    text-align: center
}

.header .switch-age {
    background: hsla(0, 0%, 100%, .07);
    border-radius: 25px;
    cursor: pointer;
    height: 24px;
    margin-left: 8px;
    margin-right: 11px;
    position: relative;
    width: 48px
}

@media (min-width: 768px) {
    .header .switch-age {
        height: 32px;
        margin-right: 8px;
        width: 64px
    }
}

.header .switch-age input {
    display: none
}

.header .switch-age input:checked ~ .switch-age__color {
    border: 1px solid #ffdb26
}

.header .switch-age input:checked ~ .switch-age__color:before {
    background: #ffdb26;
    color: #1a1817;
    transform: translatex(24px);
    transition: all 1s
}

@media (min-width: 768px) {
    .header .switch-age input:checked ~ .switch-age__color:before {
        transform: translatex(32px)
    }
}

.header .switch-age__color {
    border: 1px solid #fff;
    border-radius: 25px;
    height: 24px;
    left: 0;
    position: absolute;
    top: 0;
    transition: all .5s;
    width: 48px;
    z-index: -1
}

@media (min-width: 768px) {
    .header .switch-age__color {
        height: 32px;
        width: 64px
    }
}

.header .switch-age__color:before {
    align-items: center;
    background: #cfcfcf;
    border-radius: 50%;
    color: #000;
    content: "R";
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    height: 24px;
    justify-content: center;
    left: -1px;
    line-height: 16px;
    position: absolute;
    top: -1px;
    transition: all 1s;
    width: 24px;
    z-index: 1
}

@media (min-width: 768px) {
    .header .switch-age__color:before {
        height: 32px;
        width: 32px
    }
}

.header-menu {
    margin-top: 20px;
    min-width: 100%
}

@media (min-width: 768px) {
    .header-menu {
        margin-top: 26px
    }
}

@media (min-width: 992px) {
    .header-menu {
        margin-top: 0;
        min-width: auto;
        order: -1
    }
}

.header-menu__list {
    display: flex;
    justify-content: space-evenly;
    list-style: none;
    margin: 0;
    padding: 0
}

@media (min-width: 992px) {
    .header-menu__list {
        gap: 8px
    }
}

.header-menu__item, .header-menu__link {
    display: flex;
    width: 100%
}

.header-menu__link {
    align-items: center;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    justify-content: center;
    line-height: 16px;
    padding: 4px 8px
}

@media (min-width: 768px) {
    .header-menu__link {
        font-size: 16px;
        line-height: 20px
    }
}

.header-menu__link-icon {
    height: 16px;
    margin-right: 4px;
    width: 16px
}

@media (min-width: 768px) {
    .header-menu__link-icon {
        height: 20px;
        width: 20px
    }
}

.header-menu__link-icon svg {
    height: 100%;
    width: 100%
}

.header-menu__link.active {
    border-radius: 8px;
    color: #000
}

.header-menu__link.active svg path {
    fill: #000
}

.header-menu__link--genres.active {
    background: #6fc2ff
}

.header-menu__link--new.active {
    background: #8ae58a
}

.header-menu__link--popular.active {
    background: #ffc68c
}

.header .hamburger-menu {
    display: flex
}

@media (min-width: 768px) {
    .header .hamburger-menu {
        display: none
    }
}

.header .hamburger-menu #menu__toggle {
    display: none;
    opacity: 0
}

.header .hamburger-menu #menu__toggle:checked ~ .menu__btn span, .header .hamburger-menu #menu__toggle:checked ~ .menu__btn span:after, .header .hamburger-menu #menu__toggle:checked ~ .menu__btn span:before {
    transform: rotate(45deg)
}

.header .hamburger-menu #menu__toggle:checked ~ .menu__btn span:before {
    top: 0;
    transform: rotate(0)
}

.header .hamburger-menu #menu__toggle:checked ~ .menu__btn span:after {
    top: 0;
    transform: rotate(90deg)
}

.header .hamburger-menu #menu__toggle:checked ~ .menu__box {
    left: 0;
    visibility: visible
}

.header .hamburger-menu .menu__box-inner {
    height: 100%;
    overflow-y: scroll;
    padding-bottom: 30px;
    position: relative;
    z-index: 1
}

.header .hamburger-menu .menu__btn {
    align-items: center;
    cursor: pointer;
    display: inline-flex;
    height: 16px;
    width: 18px;
    z-index: 1
}

.header .hamburger-menu .menu__btn span, .header .hamburger-menu .menu__btn span:after, .header .hamburger-menu .menu__btn span:before {
    background-color: #fff;
    display: block;
    height: 2px;
    position: absolute;
    transition-duration: .25s;
    width: 18px
}

.header .hamburger-menu .menu__btn span:before {
    content: "";
    top: -6px
}

.header .hamburger-menu .menu__btn span:after {
    content: "";
    top: 6px
}

.header .hamburger-menu .menu__box {
    background-color: #000;
    display: block;
    height: 100%;
    left: 0;
    margin: 0;
    padding: 24px 16px;
    position: fixed;
    top: 50px;
    visibility: hidden;
    width: 100%;
    z-index: 2
}

.header .hamburger-menu .menu__box:before {
    background: url(/build/images/bg-pixel.75bec7c4.png), radial-gradient(50% 50% at 50% 50%, #dff9d3 0, rgba(230, 211, 249, 0) 100%, rgba(223, 249, 211, 0) 0);
    background-position: 50%;
    content: "";
    height: 320px;
    left: -181px;
    opacity: .6;
    position: absolute;
    top: 0;
    width: 320px
}

.header .hamburger-menu .menu__box:after {
    background: url(/build/images/bg-pixel.75bec7c4.png), radial-gradient(50% 50% at 50% 50%, #e6d3f9 0, rgba(230, 211, 249, 0) 100%);
    background-position: 50%;
    bottom: -164px;
    content: "";
    height: 328px;
    left: 50%;
    opacity: .6;
    position: absolute;
    transform: translate(-50%);
    width: 328px
}

.header .hamburger-menu .menu__list {
    list-style: none;
    margin-bottom: 32px
}

.header .hamburger-menu .menu__item {
    color: #333;
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px
}

.header .hamburger-menu .menu__item:hover .menu__link {
    color: #ffdb26
}

.header .hamburger-menu .menu__item--last {
    padding-bottom: 0
}

.header .hamburger-menu .menu__item--last .menu__link {
    border-bottom: 1px solid hsla(0, 0%, 100%, .2);
    padding-bottom: 16px
}

.header .hamburger-menu .menu__link {
    align-items: center;
    border-top: 1px solid hsla(0, 0%, 100%, .2);
    color: #fff;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    padding-bottom: 16px;
    padding-top: 16px;
    position: relative
}

.header .hamburger-menu .menu__link-icon {
    height: 20px;
    margin-right: 8px;
    width: 20px
}

.header .hamburger-menu .menu__link:after {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABHSURBVHgB7dOxCQAgDETRwwmysW7oSGdEWyHFBSzyIO1HIQFKKpK2Byoem3c0UQ8NHhV9RxviCBV/UZd9+euYZSy29vRKyAKiP4nIEkDH2QAAAABJRU5ErkJggg==) no-repeat;
    content: "";
    height: 20px;
    position: absolute;
    right: 0;
    width: 20px
}

.header-btns {
    display: none
}

@media (min-width: 768px) {
    .header-btns {
        display: flex;
        gap: 8px
    }

    .header-btns .btn {
        font-size: 14px;
        line-height: 16px;
        padding-left: 12px;
        padding-right: 12px
    }
}

.header-btns .btn-grey {
    padding-bottom: 8px;
    padding-top: 8px
}

.header-btn-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.header-btn-inner .btn {
    width: calc(50% - 4px)
}

.header-btn-inner .btn-yellow {
    margin-top: 16px;
    min-width: 100%
}

.header-btn {
    border-radius: 8px;
    display: flex;
    padding: 16px 8px 16px 16px;
    position: relative;
    width: 100%
}

.header-btn:after {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABHSURBVHgB7dOxCQAgDETRwwmysW7oSGdEWyHFBSzyIO1HIQFKKpK2Byoem3c0UQ8NHhV9RxviCBV/UZd9+euYZSy29vRKyAKiP4nIEkDH2QAAAABJRU5ErkJggg==) no-repeat;
    content: "";
    height: 24px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    transition: right .5s;
    width: 24px
}

.header-btn:hover:after {
    right: 0
}

.header-btn__icon {
    margin-right: 8px
}

.header-btn__title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px
}

.header .hamburger-menu .menu__btn .header-btn__title span:after, .header .hamburger-menu .menu__btn .header-btn__title span:before, .header-btn__title .header .hamburger-menu .menu__btn span:after, .header-btn__title .header .hamburger-menu .menu__btn span:before, .header-btn__title span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    margin-top: 2px
}

.header-btn-premium {
    background: #ffdb26
}

.header-btn-premium:after {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABBSURBVHgB7dOxCQAgDETRjxNkY93QkaJFarW4gEUeXPtBMFCyWUxmxmTRsecVPUYb7xyhjvDJ/8aMhI8tP71ytwBaYRU997o2bAAAAABJRU5ErkJggg==) no-repeat
}

.header-btn-premium .header-btn__title {
    color: #000
}

.header-btn-account {
    background: #666
}

.header .top-comics-type .hamburger-menu .btn {
    font-size: 14px;
    line-height: 16px;
    padding-left: 12px;
    padding-right: 12px
}

.footer {
    background-color: #000;
    border-radius: 24px 24px 0 0;
    padding: 32px 0 16px
}

@media (min-width: 768px) {
    .footer {
        padding-bottom: 24px;
        padding-top: 40px
    }
}

.footer-top {
    margin-bottom: 24px
}

@media (min-width: 768px) {
    .footer-top {
        margin-bottom: 40px
    }
}

.footer__logo {
    height: 40px;
    width: auto
}

@media (min-width: 768px) {
    .footer__logo {
        height: 56px
    }
}

.footer .footer-nav {
    margin-bottom: 48px
}

@media (min-width: 768px) {
    .footer .footer-nav {
        margin-bottom: 64px
    }
}

.footer .footer-nav__list {
    list-style: none;
    margin: 0;
    padding: 0
}

@media (min-width: 768px) {
    .footer .footer-nav__list {
        display: flex;
        flex-wrap: wrap;
        gap: 24px 40px
    }
}

.footer .footer-nav__item {
    margin-bottom: 24px
}

@media (min-width: 768px) {
    .footer .footer-nav__item {
        margin-bottom: 0
    }
}

.footer .footer-nav__link {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    transition: all .3s ease
}

.footer .footer-nav__link:hover {
    color: #ffdb26
}

@media (min-width: 768px) {
    .footer-bottom {
        align-items: center;
        display: flex;
        justify-content: space-between
    }
}

.footer-social {
    margin-bottom: 24px
}

@media (min-width: 768px) {
    .footer-social {
        margin-bottom: 0
    }
}

.footer-copyright {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 0
}

@media (min-width: 768px) {
    .footer .top-comics-type {
        align-items: center;
        display: flex;
        justify-content: space-between
    }

    .footer .top-comics-type .footer-top, .footer .top-comics-type nav.footer-nav {
        margin: 0
    }
}

.modal {
    display: none;
    left: 0;
    opacity: 0;
    overflow: auto;
    position: fixed;
    top: 0;
    transition: all .3s ease;
    visibility: hidden;
    z-index: 13
}

.modal, .modal-bg {
    height: 100%;
    width: 100%
}

.modal-bg {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, .25);
    position: absolute
}

.modal.open, .modal.show {
    display: flex;
    justify-content: center;
    opacity: 1;
    transition-delay: 0s;
    visibility: visible
}

.modal-content {
    background: #fff;
    border: 2px solid #000;
    border-radius: 24px;
    box-shadow: 4px 4px 0 #000;
    display: block;
    margin: auto 16px;
    max-width: 484px;
    overflow: hidden;
    position: relative;
    width: 100%
}

.modal-content .close {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 24px;
    justify-content: center;
    position: absolute;
    right: 16px;
    top: 16px;
    width: 24px
}

.modal-content .modal-body {
    border-radius: 24px;
    height: 100%;
    margin: 0 auto;
    padding: 16px 16px 24px
}

@media (min-width: 768px) {
    .modal-content .modal-body {
        padding: 24px
    }
}

.modal-content .modal-body .modal-form {
    margin-bottom: 16px
}

.modal-content .modal-body .modal-form .form-group {
    margin-bottom: 8px
}

@media screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 2) {
    .modal-content .modal-body .modal-form .form-control {
        font-size: 16px;
        padding: 14px 16px 12px
    }
}

.modal-content .modal-body .modal-form__title {
    color: #000;
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 16px
}

.modal-content .modal-body .modal-form__restore-pass {
    display: block;
    margin-bottom: 16px;
    margin-top: 8px
}

.modal-content .modal-body .modal-form__info {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 0;
    text-align: center
}

.modal-content .modal-body .modal-form__info a, .modal-content .modal-body .modal-form__info button {
    background: transparent;
    border: none;
    color: #000;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    margin-left: 4px;
    text-decoration: underline
}

.modal .modal-error {
    display: none;
    margin-bottom: 0
}

.modal .modal-error.show {
    bottom: -26px;
    color: red;
    display: block;
    font-size: 12px;
    position: absolute
}

@media (min-width: 768px) {
    .modal .modal-error.show {
        font-size: 14px
    }
}

.modal .modal-body__divider {
    color: #000;
    display: block;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
    text-align: center
}

.modal .modal-body__divider:after, .modal .modal-body__divider:before {
    border-bottom: 1px solid #000;
    content: " ";
    display: block;
    height: 1px;
    left: -8px;
    position: absolute;
    top: 47%;
    width: calc(50% - 8px)
}

.modal .modal-body__divider:before {
    left: unset;
    right: -8px
}

.modal .modal-body-btn-social {
    margin-bottom: 16px
}

.modal .modal-body-btn-social__title {
    color: #000;
    display: block;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    margin-bottom: 4px;
    text-align: center
}

.modal .modal-body-btn-social-inner {
    display: flex;
    gap: 24px;
    justify-content: center
}

.modal .modal__title {
    color: #000;
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase
}

@media (min-width: 768px) {
    .modal .modal__title {
        font-size: 24px;
        line-height: 32px
    }
}

.modal .modal__title--left {
    text-align: left
}

.modal .modal__title-main {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px
}

.modal .modal__desc {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 24px
}

.modal .modal__list {
    padding-left: 20px
}

.modal .modal__list li {
    color: #666;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 16px
}

.modal .modal__list li::marker {
    color: #000
}

.modal .modal__subtitle {
    color: #000;
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 32px
}

.modal .modal-list {
    margin-bottom: 25px;
    padding-left: 15px
}

.modal .modal-list__item {
    color: #bfbbb6;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 8px
}

.modal .modal-list__item::marker {
    color: #ffdb26;
    font-size: 18px
}

.modal.ask-modal .modal-content {
    background: #29073e url(/build/images/ask-modal-bg.e87a4ff0.png) no-repeat;
    background-position: 50%;
    border-radius: 24px;
    box-shadow: 0 20px 24px -4px rgba(0, 0, 0, .1), 0 0 8px -4px rgba(0, 0, 0, .04);
    position: relative
}

.modal.ask-modal .modal-content:after {
    background: url(/build/images/bg-pixel.75bec7c4.png), radial-gradient(50% 50% at 50% 50%, #710ebf 0, rgba(230, 211, 249, 0) 100%, hsla(0, 76%, 90%, 0) 0);
    background-position: 50%;
    content: "";
    height: 503px;
    left: 50%;
    opacity: .6;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 503px
}

.modal.ask-modal .modal-content .modal-body {
    padding: 24px;
    position: relative;
    z-index: 1
}

.modal.ask-modal .modal-content .modal-body .modal__title {
    color: #fff;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 128px;
    text-align: left
}

@media (min-width: 768px) {
    .modal.ask-modal .modal-content .modal-body .modal__title {
        margin-bottom: 180px
    }
}

.modal.ask-modal .modal-content .modal-body .modal__title-main {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 8px
}

.modal.ask-modal .modal-content .modal-body .modal__desc {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 8px
}

.modal.ask-modal .modal-content .modal-body .modal-btn-wrap {
    display: flex;
    gap: 8px
}

.modal.ask-modal .modal-content .modal-body .modal-btn-wrap .btn {
    padding-left: 24px;
    padding-right: 24px
}

.modal.ask-modal .modal-content .modal-body .modal-btn-wrap .btn-yellow {
    width: 100%
}

.modal.ask-modal-bg-v2 .modal-content, .modal.ask-modal-tt-bg .modal-content {
    background: #29073e url(/build/images/ask-modal-tt-bg.210f0412.webp) no-repeat;
    background-position: 50%;
    background-size: cover
}

.modal-many-coins .modal__title, .modal-recovery-password .modal__title {
    margin-bottom: 16px
}

@media (min-width: 768px) {
    .modal-cancel-renewal .modal-content {
        display: flex;
        max-width: 636px
    }
}

.modal-cancel-renewal .modal-body-left {
    display: none
}

@media (min-width: 768px) {
    .modal-cancel-renewal .modal-body-left {
        display: block;
        min-width: 248px
    }

    .modal-cancel-renewal .modal-body-left img {
        height: 100%;
        object-fit: cover;
        width: 100%
    }
}

.modal-cancel-renewal .modal-body-right {
    padding-top: 16px
}

@media (min-width: 768px) {
    .modal-cancel-renewal .modal__title {
        margin-bottom: 24px
    }
}

.modal-cancel-renewal .modal__primary-title {
    font-size: 24px;
    line-height: 32px
}

.modal-cancel-renewal .modal__desc {
    font-weight: 700;
    margin-bottom: 32px
}

.modal-cancel-renewal .modal__desc a {
    color: #000;
    text-decoration: underline
}

.modal-cancel-renewal .modal-btn-inner {
    display: flex;
    gap: 8px
}

.modal-cancel-renewal .modal-btn-inner .btn {
    width: 100%
}

@media (min-width: 768px) {
    .modal-cancel-renewal .modal-btn-inner .btn {
        width: auto
    }

    .modal-cancel-renewal .modal-btn-inner .btn-yellow {
        flex: 1
    }

    .modal-cancel-renewal .modal-btn-inner .btn-black {
        padding-left: 24px;
        padding-right: 24px
    }
}

@media (min-width: 567px) {
    .modal-many-coins .modal-content {
        display: flex;
        max-width: 536px
    }
}

.modal-many-coins .modal-body-left {
    display: none
}

@media (min-width: 567px) {
    .modal-many-coins .modal-body-left {
        display: block;
        min-width: 248px
    }

    .modal-many-coins .modal-body-left img {
        height: 100%;
        object-fit: cover;
        width: 100%
    }

    .modal-many-coins .modal-body-right {
        padding: 16px 16px 24px
    }

    .modal-many-coins .modal__title {
        margin-bottom: 24px
    }
}

.modal-many-coins .modal__primary-title {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 8px;
    text-transform: uppercase
}

.modal-thanks .modal__title {
    margin-bottom: 24px
}

.modal .modal-block-thanks.active {
    display: flex;
    flex-direction: column;
    height: calc(100% - 65px);
    justify-content: space-between
}

.modal .modal-block-thanks.active .modal__desc {
    margin-bottom: 48px
}

@media (min-width: 768px) {
    .modal .modal-block-thanks.active .modal__desc {
        margin-bottom: 0
    }
}

.modal-sign-in .modal-content .modal-body {
    padding-top: 40px
}

.modal-sign-in .modal-content .modal__title {
    margin-bottom: 16px
}

.modal-sign-in .modal-content .modal-body-btn-social__title {
    color: #000
}

.modal-sign-up .modal-content .modal-body {
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 72px
}

.modal-sign-up .modal-content .modal__title {
    margin-bottom: 4px
}

.modal-sign-up .modal-content .modal__sub-title {
    color: #000;
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 16px;
    text-align: center;
    text-transform: capitalize
}

@media (min-width: 768px) {
    .modal-sign-up .modal-content .modal__sub-title {
        font-size: 16px;
        line-height: 24px
    }

    .modal-sign-up .modal-content .modal-body .modal-body-right {
        padding: 24px 16px
    }
}

.modal-sign-up .modal-content .modal-body .modal-body-right .modal-body-top {
    border-bottom: 0;
    flex-direction: column;
    padding-bottom: 0
}

.header .hamburger-menu .menu__btn .modal-sign-up .modal-content .modal-body .modal-body-right span.modal__title:after, .header .hamburger-menu .menu__btn .modal-sign-up .modal-content .modal-body .modal-body-right span.modal__title:before, .modal-sign-up .modal-content .modal-body .modal-body-right .header .hamburger-menu .menu__btn span.modal__title:after, .modal-sign-up .modal-content .modal-body .modal-body-right .header .hamburger-menu .menu__btn span.modal__title:before, .modal-sign-up .modal-content .modal-body .modal-body-right span.modal__title {
    margin-top: 15px;
    text-align: center
}

@media (min-width: 768px) {
    .header .hamburger-menu .menu__btn .modal-sign-up .modal-content .modal-body .modal-body-right span.modal__title:after, .header .hamburger-menu .menu__btn .modal-sign-up .modal-content .modal-body .modal-body-right span.modal__title:before, .modal-sign-up .modal-content .modal-body .modal-body-right .header .hamburger-menu .menu__btn span.modal__title:after, .modal-sign-up .modal-content .modal-body .modal-body-right .header .hamburger-menu .menu__btn span.modal__title:before, .modal-sign-up .modal-content .modal-body .modal-body-right span.modal__title {
        margin-top: 90px
    }
}

.header .hamburger-menu .menu__btn .modal-sign-up .modal-content .modal-body .modal-body-right span.modal__sub-title:after, .header .hamburger-menu .menu__btn .modal-sign-up .modal-content .modal-body .modal-body-right span.modal__sub-title:before, .modal-sign-up .modal-content .modal-body .modal-body-right .header .hamburger-menu .menu__btn span.modal__sub-title:after, .modal-sign-up .modal-content .modal-body .modal-body-right .header .hamburger-menu .menu__btn span.modal__sub-title:before, .modal-sign-up .modal-content .modal-body .modal-body-right span.modal__sub-title {
    color: #4d463d;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    margin-top: 9px;
    text-align: center;
    text-transform: capitalize
}

.modal-sign-up .modal-content .modal-body .modal-body-right .modal-body-btn {
    border-bottom: 0;
    padding-bottom: 0;
    text-align: center
}

@media (min-width: 768px) {
    .modal-sign-up .modal-content .modal-body .modal-body-right .modal-body-btn {
        margin-bottom: 25px
    }
}

.modal-sign-up .modal-content .modal-body .modal-body-right .modal-body-btn .btn {
    margin-bottom: 7px
}

@media (min-width: 768px) {
    .modal-sign-up .modal-content .modal-body .modal-body-right .modal-body-btn .btn {
        display: inline-flex;
        max-width: 204px;
        width: 48%
    }
}

.header .hamburger-menu .menu__btn .modal-sign-up .modal-content .modal-body .modal-body-right span.close.close-modal.modal-exit:after, .header .hamburger-menu .menu__btn .modal-sign-up .modal-content .modal-body .modal-body-right span.close.close-modal.modal-exit:before, .modal-sign-up .modal-content .modal-body .modal-body-right .header .hamburger-menu .menu__btn span.close.close-modal.modal-exit:after, .modal-sign-up .modal-content .modal-body .modal-body-right .header .hamburger-menu .menu__btn span.close.close-modal.modal-exit:before, .modal-sign-up .modal-content .modal-body .modal-body-right span.close.close-modal.modal-exit {
    position: absolute;
    right: 16px;
    top: 16px
}

.modal-sign-up .modal-content .modal-body .modal-body-right .modal-form .form-control {
    margin-bottom: 7px
}

.modal-cancel-renewal .btn-orange-outline {
    max-width: 72px
}

.modal-cancel-renewal button.btn.btn-orange-outline.modal-exit {
    border: 1px solid #1a1817;
    color: #1a1817
}

.modal-account .modal-content, .modal-subscription .modal-content {
    background-position: 50%;
    background-size: cover;
    border-radius: 12px;
    margin: auto;
    max-width: 487px
}

@media (min-width: 768px) {
    .modal-account .modal-content, .modal-subscription .modal-content {
        max-width: 612px
    }

    .modal-account .modal-content .modal-body-left, .modal-subscription .modal-content .modal-body-left {
        max-width: 224px;
        min-width: 224px;
        width: 224px
    }
}

.modal-account .modal-content .modal-body-right, .modal-subscription .modal-content .modal-body-right {
    padding-bottom: 48px
}

.modal-account .modal-content__title, .modal-subscription .modal-content__title {
    display: block;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 16px
}

.modal-account .modal-content__desc, .modal-subscription .modal-content__desc {
    color: #bfbbb6;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 16px
}

.modal-account .modal-content__desc a, .modal-subscription .modal-content__desc a {
    color: #ffdb26;
    text-decoration: none
}

.modal-account .modal-btn-wrap .btn-orange, .modal-subscription .modal-btn-wrap .btn-orange {
    flex: 1;
    margin-right: 8px
}

@media (min-width: 768px) {
    .modal-payments.modal-account .modal-content .modal-body .modal-content__title {
        margin-bottom: 68px
    }

    .modal-payments.modal-account .modal-content .modal-body .modal-body-right {
        padding-bottom: 28px
    }
}

.modal.out-of-coins-modal .modal-content {
    box-shadow: 0 20px 24px -4px rgba(0, 0, 0, .1), 0 0 8px -4px rgba(0, 0, 0, .04);
    max-width: 612px;
    overflow: hidden
}

.modal.out-of-coins-modal .modal-body-left {
    min-width: 224px
}

.modal.out-of-coins-modal .modal-body-left img {
    transform: scale(1.02)
}

@media (max-width: 768px) {
    .modal.out-of-coins-modal .modal-body-right {
        padding: 20px 16px
    }
}

.modal.out-of-coins-modal .modal__title {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin: 0 0 28px;
    text-transform: capitalize
}

@media (max-width: 768px) {
    .modal.out-of-coins-modal .modal__title {
        margin: 0 0 52px
    }
}

.modal.out-of-coins-modal .close-modal {
    position: absolute;
    right: 16px;
    top: 16px
}

@media (min-width: 768px) {
    .modal.out-of-coins-modal .close-modal {
        right: 24px
    }
}

.modal.out-of-coins-modal .modal__title-main {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin: 0 0 8px
}

.modal.out-of-coins-modal .modal__desc {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px
}

.modal.out-of-coins-modal .btn {
    background: #ffdb26;
    border: 0;
    border-radius: 8px;
    color: #1a1817;
    display: inline-block;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    margin-top: 76px;
    padding: 11px 16px;
    text-transform: capitalize
}

@media (max-width: 768px) {
    .modal.out-of-coins-modal .btn {
        margin-bottom: 30px;
        margin-top: 48px;
        text-align: center;
        width: 100%
    }
}

.modal.purchase-episode-modal .modal-body {
    flex-direction: column;
    max-width: 494px
}

.modal.purchase-episode-modal .modal-content {
    max-width: 494px
}

.modal.purchase-episode-modal .modal-body-data {
    padding: 40px 24px
}

@media (max-width: 768px) {
    .modal.purchase-episode-modal .modal-body-data {
        padding: 20px 15px
    }
}

.modal.purchase-episode-modal .modal-body-data a {
    background: #ffdb26;
    border-radius: 8px;
    color: #1a1817;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin-top: 24px;
    padding: 12px 24px;
    text-transform: capitalize;
    width: 100%
}

@media (max-width: 768px) {
    .modal.purchase-episode-modal .modal-body-data a {
        font-size: 14px;
        line-height: 20px
    }
}

.modal.purchase-episode-modal .modal-item {
    border-radius: 8px;
    cursor: pointer;
    display: block;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 8px;
    padding: 20px 12px;
    text-transform: capitalize;
    width: 100%
}

@media (max-width: 768px) {
    .modal.purchase-episode-modal .modal-item {
        font-size: 14px;
        padding: 16px 12px
    }
}

.modal.purchase-episode-modal .modal-item svg {
    position: relative;
    right: 3px;
    top: 2px
}

.header .hamburger-menu .menu__btn .modal.purchase-episode-modal .modal-item span.right:after, .header .hamburger-menu .menu__btn .modal.purchase-episode-modal .modal-item span.right:before, .modal.purchase-episode-modal .modal-item .header .hamburger-menu .menu__btn span.right:after, .modal.purchase-episode-modal .modal-item .header .hamburger-menu .menu__btn span.right:before, .modal.purchase-episode-modal .modal-item span.right {
    float: right
}

.modal.purchase-episode-modal input:checked + .modal-item {
    background-color: #ffdb26;
    border: 1px solid #ffdb26
}

.modal.purchase-episode-modal .modal-body-top {
    position: relative
}

.header .hamburger-menu .menu__btn .modal.purchase-episode-modal .modal-body-top span.close:after, .header .hamburger-menu .menu__btn .modal.purchase-episode-modal .modal-body-top span.close:before, .modal.purchase-episode-modal .modal-body-top .header .hamburger-menu .menu__btn span.close:after, .modal.purchase-episode-modal .modal-body-top .header .hamburger-menu .menu__btn span.close:before, .modal.purchase-episode-modal .modal-body-top span.close {
    border-radius: 5px 0 5px 0;
    left: 0;
    position: absolute;
    top: 0;
    z-index: 1
}

.modal.purchase-episode-modal .modal-body-top img {
    position: relative;
    width: 100%
}

.modal.purchase-episode-modal img.modal__image--top {
    max-width: 358px;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(60%, -31%)
}

.modal.purchase-episode-modal img.modal__image--top.mobile {
    display: none
}

@media (max-width: 1000px) {
    .modal.purchase-episode-modal img.modal__image--top {
        transform: translate(40%, -31%)
    }
}

@media (max-width: 768px) {
    .modal.purchase-episode-modal img.modal__image--top {
        display: none;
        max-width: 185px;
        transform: translate(8%, -42%)
    }

    .modal.purchase-episode-modal img.modal__image--top.mobile {
        display: block
    }
}

.modal.not-enough-coins-modal .modal-content {
    max-width: 300px
}

.modal.not-enough-coins-modal .close {
    position: absolute;
    right: 8px;
    top: 8px
}

.modal.not-enough-coins-modal .modal-body {
    align-items: center;
    flex-direction: column;
    justify-content: center
}

.modal.not-enough-coins-modal p {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    padding: 48px 16px 16px;
    text-align: center
}

.modal.not-enough-coins-modal a {
    background: #ffdb26;
    border-radius: 8px;
    color: #1a1817;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 32px;
    padding: 12px;
    text-decoration: none;
    text-transform: capitalize;
    width: auto
}

.modal.payment-metods-modal .modal-body {
    padding: 16px 24px 40px
}

.modal.payment-metods-modal .modal-content {
    max-width: 420px
}

.modal.payment-metods-modal .modal-body_buttons {
    padding-top: 24px;
    position: relative
}

.modal.payment-metods-modal .modal-body_buttons .modal-body_button:not(:last-child) {
    margin-bottom: 8px
}

.modal.payment-metods-modal .modal-body_buttons .modal-body_button {
    width: 100%
}

.modal.payment-metods-modal .modal__title {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px
}

.modal.payment-metods-modal .close {
    position: absolute;
    right: 24px;
    top: 16px
}

.modal.seccess-modal .modal-body {
    padding-top: 56px;
    text-align: center
}

.modal.rebill-error-modal .modal__title, .modal.seccess-modal .modal__desc, .modal.seccess-modal .modal__icon {
    margin-bottom: 16px
}

@media (min-width: 992px) {
    .modal.rebill-error-modal .modal__title {
        margin-bottom: 24px
    }
}

.modal.rebill-error-modal .modal__title-main {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 16px
}

.modal.rebill-error-modal .alert {
    align-items: flex-start;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 16px;
    padding: 8px
}

.modal.rebill-error-modal .modal__desc {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 16px
}

.modal.ask-modal-new .modal-content {
    background-image: url(/build/images/ask-v2-step-1-m.850e6a13.webp);
    background-position: 50%;
    background-size: cover;
    max-width: 288px
}

@media (min-width: 567px) {
    .modal.ask-modal-new .modal-content {
        background-image: url(/build/images/ask-v2-step-1.b20ba9d1.webp);
        max-width: 480px
    }
}

.modal.ask-modal-new .modal-content .modal-body {
    align-items: start;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    height: 400px;
    justify-content: space-between;
    padding: 24px 16px
}

@media (min-width: 567px) {
    .modal.ask-modal-new .modal-content .modal-body {
        padding: 24px
    }
}

.modal.ask-modal-new .modal-content .modal-body .modal__title {
    color: #fff;
    flex-grow: 1;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 24px;
    text-transform: uppercase;
    width: 100%
}

.modal.ask-modal-new .modal-content .modal-body .modal__desc {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 24px;
    text-align: left
}

@media (min-width: 567px) {
    .modal.ask-modal-new .modal-content .modal-body .modal__desc {
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px
    }
}

.modal.ask-modal-new .modal-content .modal-body .modal-btn-wrap {
    display: flex;
    gap: 8px;
    width: 100%
}

.modal.ask-modal-new .modal-content .modal-body .modal-btn-wrap a, .modal.ask-modal-new .modal-content .modal-body .modal-btn-wrap select {
    appearance: none;
    height: 46px;
    max-height: 46px;
    width: 100%
}

.modal.ask-modal-new .modal-content .modal-body .modal-btn-wrap select {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px
}

.modal.ask-modal-new .modal-content .modal-body .modal-btn-wrap select.error {
    color: #ff514d;
    outline: 1px solid #ff514d
}

.modal.ask-modal-new .modal-content .close {
    right: 14px;
    top: 18px
}

@media (min-width: 567px) {
    .modal.ask-modal-new .modal-content .close {
        right: 18px;
        top: 24px
    }
}

.modal.ask-modal-new--step-2 .modal-content {
    background-image: url(/build/images/ask-v2-step-2-m.5ad961b0.webp)
}

@media (min-width: 567px) {
    .modal.ask-modal-new--step-2 .modal-content {
        background-image: url(/build/images/ask-v2-step-2.a4d0ba3a.webp)
    }
}

.modal.ask-modal-new--step-2 .modal-content .modal-body .modal-btn-wrap button.btn {
    width: 87px
}

@media (min-width: 567px) {
    .modal.ask-modal-new--step-2 .modal-content .modal-body .modal-btn-wrap button.btn {
        width: 122px
    }
}

.modal.ask-modal-new--step-2 .modal-content .modal-body .modal-btn-wrap a.btn {
    padding-left: 0;
    padding-right: 0
}

.modal-tt-to-external .modal-content {
    max-width: 348px
}

.modal-tt-to-external .modal-content .modal-body {
    padding: 16px 14px
}

.modal-tt-to-external .modal-content .modal-body .modal__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 16px;
    max-width: 272px;
    text-align: left
}

.modal-tt-to-external .modal-content .modal-body .modal__desc_step, .modal-tt-to-external .modal-content .modal-body .modal__sub_title {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    margin: 14px 0;
    text-align: left
}

.modal-tt-to-external .modal-content .modal-body .modal__desc_step i {
    background: #ffdb26;
    border: 1px solid #000;
    border-radius: 20px;
    box-shadow: 2px 2px 0 0 #000;
    display: inline-block;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    height: 30px;
    line-height: 16px;
    margin-right: 9px;
    padding: 6px;
    text-align: center;
    width: 30px
}

.modal-tt-to-external .modal-content .modal-body img {
    display: block;
    height: auto;
    margin: 0 -4px 4px;
    width: calc(100% + 4px)
}

.social {
    display: flex;
    gap: 24px
}

.social__link {
    display: inline-flex
}

.social__link path {
    transition: all .3s ease
}

.social__link:hover svg path {
    fill: #ffdb26
}

.content {
    color: #666;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px
}

.content b {
    color: #000;
    font-weight: 700;
    margin-bottom: 12px
}

.content h1, .content h2, .content h3, .content h4 {
    color: #000;
    margin-bottom: 8px
}

.content h2 {
    margin-top: 32px
}

.content p {
    margin-bottom: 16px
}

.content i {
    font-weight: 400
}

.content u {
    color: #000
}

.content a {
    color: #000;
    text-decoration: underline
}

.content ol, .content ul {
    margin-bottom: 25px;
    padding-left: 15px
}

.content ol {
    counter-reset: li;
    list-style: none;
    padding-left: 0
}

.content ol li:before {
    color: #000;
    content: counters(li, ".") ". ";
    counter-increment: li
}

.content ol ol, .content ul ul {
    margin-bottom: 0;
    margin-top: 8px;
    padding-left: 15px
}

.content ol li, .content ul li {
    margin-bottom: 10px
}

.content ol li::marker, .content ul li::marker {
    color: #000;
    font-size: 18px
}