html {
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

article, aside, footer, header, nav, section {
    display: block
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects
}

img {
    border-style: none
}

svg:not(:root) {
    overflow: hidden
}

button, input, optgroup, select, textarea {
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button, input {
    overflow: visible
}

button, select {
    text-transform: none
}

[type=reset], [type=submit], button, html [type=button] {
    -webkit-appearance: button
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
    outline: 1px dotted ButtonText
}

[type=checkbox], [type=radio] {
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

.wds-avatar {
    --wds-avatar-size: 30px;
    --wds-avatar-badge-size: 16px;
    --wds-avatar-border-width: 2px;
    --wds-avatar-badge-left: -4px;
    --wds-avatar-badge-top: -6px;
    --wds-avatar-border-color: var(--theme-border-color);
    --wds-avatar-border-color--hover: var(--theme-link-color);
    --wds-avatar-background-color: var(--theme-page-background-color);
    height: var(--wds-avatar-size);
    min-width: var(--wds-avatar-size);
    width: var(--wds-avatar-size);
    display: inline-block;
    position: relative
}

.wds-avatar a {
    color: var(--wds-avatar-border-color);
    height: 100%;
    width: 100%
}

.wds-avatar a:hover *, .wds-avatar a:hover {
    color: var(--wds-avatar-border-color--hover)
}

.wds-avatar.wds-avatar--square {
    --wds-avatar-size: 36px;
    --wds-avatar-badge-size: 17px;
    --wds-avatar-border-width: 2px;
    --wds-avatar-badge-left: -5px;
    --wds-avatar-badge-top: -7px;
    --wds-avatar-border-color: transparent;
    --wds-avatar-border-color--hover: #ffc500;
    --wds-avatar-background-color: var(--theme-page-background-color);
    height: var(--wds-avatar-size);
    min-width: var(--wds-avatar-size);
    width: var(--wds-avatar-size)
}

.wds-avatar.wds-avatar--square:after {
    height: 58px;
    min-width: 58px;
    width: 58px;
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    -webkit-transform: translate(-20%, -20%);
    -ms-transform: translate(-20%, -20%);
    transform: translate(-20%, -20%);
    background: none;
    -webkit-transition: background .3s ease-in-out;
    -o-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
    border-radius: 3px
}

.wds-avatar.wds-avatar--square:hover {
    cursor: pointer
}

.wds-button {
    --wds-primary-button-background-color: var(--theme-accent-color);
    --wds-primary-button-background-color--hover: var(--theme-accent-color--hover);
    --wds-primary-button-label-color: var(--theme-accent-label-color);
    --wds-secondary-button-label-color: var(--theme-page-text-color);
    --wds-secondary-button-label-color--hover: var(--theme-page-text-color--hover);
    --wds-text-button-label-color: var(--theme-page-text-color);
    --wds-text-button-label-color--hover: var(--theme-page-text-color--hover);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-appearance: none;
    background-color: var(--wds-primary-button-background-color);
    border: 1px solid var(--wds-primary-button-background-color);
    border-radius: 3px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    color: var(--wds-primary-button-label-color);
    cursor: default;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    letter-spacing: .15px;
    line-height: 16px;
    margin: 0;
    min-height: 18px;
    padding: 7px 18px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition-duration: .3s;
    -o-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-property: background-color, border-color, color;
    -o-transition-property: background-color, border-color, color;
    transition-property: background-color, border-color, color;
    vertical-align: top
}

a.wds-button, button.wds-button {
    cursor: pointer
}

.wds-button.wds-is-active, .wds-button:active, .wds-button:hover {
    background-color: var(--wds-primary-button-background-color--hover);
    border: 1px solid var(--wds-primary-button-background-color--hover);
    color: var(--wds-primary-button-label-color);
    text-decoration: none
}

.wds-button:disabled {
    cursor: default;
    opacity: .5;
    pointer-events: none
}

.wds-button.wds-is-square {
    height: 36px;
    min-width: 36px;
    width: 36px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box
}


.wds-button.wds-is-text, .wds-button.wds-is-text:disabled {
    background: none;
    border: 0;
    color: var(--wds-text-button-label-color)
}

.wds-button.wds-is-text.wds-is-active, .wds-button.wds-is-text:active, .wds-button.wds-is-text:hover {
    color: var(--wds-text-button-label-color--hover)
}

.wds-button .wds-icon {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    pointer-events: none;
    margin: 0 6px
}

.wds-button .wds-icon:first-child {
    margin-left: 0
}

.wds-button .wds-icon:last-child {
    margin-right: 0
}


.wds-icon {
    height: 24px;
    min-width: 24px;
    width: 24px;
    fill: currentcolor
}

.wds-icon-small {
    height: 18px;
    min-width: 18px;
    width: 18px
}

.wds-icon-tiny {
    height: 12px;
    min-width: 12px;
    width: 12px
}

.wds-no-scroll {
    height: 100%;
    overflow: hidden
}



@media only screen and (max-width: 767px) {
    .global-explore-navigation, .global-top-navigation {
        display: none !important
    }
}

@media only screen and (min-width: 768px) {
    .mobile-global-navigation__wrapper, .mobile-search-modal {
        display: none !important
    }
}

.global-footer {
    margin-top: 0 !important
}


.fandom-theme-1, :root {
    --fandom-theme-main-color: #460084;
    --fandom-theme-text-color: #fff;
    --fandom-theme-accent-color: #dfec24;
    --fandom-theme-card-tint-color: transparent;
    --fandom-theme-card-tint-blend-mode: multiply;
    --fandom-theme-card-gradient-direction: to bottom;
    --fandom-theme-card-gradient-start-color: rgba(70, 0, 132, 0);
    --fandom-theme-card-gradient-stop-color: #460084;
    --fandom-theme-card-gradient-stop-value: 100%;
    --fandom-theme-card-title-color: #fff;
    --fandom-theme-card-title-hover-color: #dfec24;
    --fandom-theme-card-title-background: transparent;
    --fandom-theme-card-title-hover-background: transparent;
    --fandom-theme-card-title-underline-color: #dfec24;
    --fandom-theme-card-title-underline-hover-color: #fff
}

.fandom-theme-4 {
    --fandom-theme-main-color: #002a32;
    --fandom-theme-text-color: #fff;
    --fandom-theme-accent-color: #00d6d6;
    --fandom-theme-card-tint-color: #ff6a64;
    --fandom-theme-card-tint-blend-mode: multiply;
    --fandom-theme-card-gradient-direction: to bottom;
    --fandom-theme-card-gradient-start-color: rgba(0, 42, 50, 0);
    --fandom-theme-card-gradient-stop-color: #002a32;
    --fandom-theme-card-gradient-stop-value: 100%;
    --fandom-theme-card-title-color: #fff;
    --fandom-theme-card-title-hover-color: #00d6d6;
    --fandom-theme-card-title-background: transparent;
    --fandom-theme-card-title-hover-background: transparent;
    --fandom-theme-card-title-underline-color: #00d6d6;
    --fandom-theme-card-title-underline-hover-color: #fff
}

.web-main-light {
    --theme-page-background-color: #fff;
    --theme-page-background-color--rgb: 255, 255, 255;
    --theme-page-background-color--secondary: #f4f3f4;
    --theme-page-text-color: #3a3a3a;
    --theme-page-text-color--rgb: 58, 58, 58;
    --theme-page-text-color--hover: #6d6d6d;
    --theme-page-dynamic-color-1--rgb: 30, 12, 27;
    --theme-link-color: #520044;
    --theme-link-color--rgb: 82, 0, 68;
    --theme-link-color--hover: #b80099;
    --theme-link-label-color: #fff;
    --theme-accent-color: #520044;
    --theme-accent-color--rgb: 82, 0, 68;
    --theme-accent-color--hover: #b80099;
    --theme-accent-label-color: #fff;
    --theme-border-color: #d6d0d5;
    --theme-page-text-mix-color: #9d9d9d;
    --theme-page-accent-mix-color: #a980a2;
    --theme-alert-color: #bf0017;
    --theme-alert-color--rgb: 191, 0, 23;
    --theme-alert-color--hover: #59000b;
    --theme-warning-color: #cf721c;
    --theme-success-color: #0c742f;
    --theme-message-color: #753369
}

*, :after, :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

body {
    background-color: #fff;
    color: #39424d;
    font-display: swap;
    font-family: Helvetica Neue, helvetica, arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 0
}

@media only screen and (min-width: 768px) {
    body.f2-page:not(.article-editor-body):not(.no-global-nav) {
        margin-left: 66px
    }
}

a {
    text-decoration: none;
    color: #088488
}

button, input, optgroup, select, textarea {
    font-family: Helvetica Neue, helvetica, arial, sans-serif;
    font-size: 16px;
    line-height: 1.5
}

:-webkit-autofill, :-webkit-autofill:focus, :-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
    -webkit-text-fill-color: #39424d;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    -o-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s
}

.right-item img{
    width:100%;
    aspect-ratio:4/2.25;
}

.right-item h4{
    color: #e21993;
    margin: 0;
}

.right-item h2{
    font-size: 1rem;
    margin: 5px 0 15px;
    color: #000;
}

.mobile-global-navigation__wrapper {
    position: fixed;
    top: 0;
    z-index: 5000101;
}

.mobile-global-navigation {
    position: inherit;
}

.global-footer__content{
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: .5rem 0;
    background: #280033;
}

.global-footer__section a{
    color: #fff;
    font-weight: bold;
}

.global-footer__bottom{
    padding: .5rem 0;
    background: #000;
    text-align: center;
    color: #fff;
}

.MenuPanel-module_menuItemText__F615C {
    color: #1e0c1b;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 15px;
    display: block;
}

.logo-icon{
    width:160px;
    height:33px;
}










.article-image img {
    margin-bottom: 10px;
    width: 100%;
    max-width: 450px;
}

.feed-card {
    -ms-flex-preferred-size: 32%;
    flex-basis: 32%;
    margin-bottom: 30px
}

.feed-card__image {
    width: 100%;
    aspect-ratio: 4 / 2.25;
}

.feed-card__inner {
    margin-top: -74px;
    position: relative;
    text-align: center
}

.feed-card__inner > div {
    margin: auto
}

.feed-card__attribution {
    background-color: #fa005a;
    color: #f8f8f8;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    height: 21px;
    line-height: 21px;
    padding: 3px 13px
}

.feed-card__title-summary {
    background-color: #fff;
    width: 95%
}

.feed-card__title {
    color: #282628;
    font-size: 19px;
    font-weight: bold;
    line-height: 24px;
    padding: 8px;
}

.feed-card__summary {
    color: #520044;
    font-size: 14px;
    line-height: 21px;
    padding: 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feed-card .feed-card__image {
    border-radius: 3px
}

.feed-section.has-box-ad .feed-card {
    -ms-flex-preferred-size: 49%;
    flex-basis: 49%
}

.feed-layout {
    background-color: #f2f5f5;
    overflow: hidden;
    position: relative;
    padding-top: 50px;
}

.feed-layout__wrapper {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 0;
    position: relative
}

@media only screen and (max-width: 767px) {
    .feed-layout__wrapper {
        margin: 0 18px
    }
}

@media only screen and (min-width: 768px) {
    .feed-layout__wrapper {
        margin: 0 auto
    }
}

@media only screen and (min-width: 768px)and (max-width: 1023px) {
    .feed-layout__wrapper {
        width: 732px
    }
}

@media only screen and (min-width: 1024px)and (max-width: 1279px) {
    .feed-layout__wrapper {
        width: 988px
    }
}

@media only screen and (min-width: 1280px) {
    .feed-layout__wrapper {
        width: 1244px
    }
}


body.is-home-page .feed-layout__wrapper {
    margin: 0;
    width: 100%
}

.feed-header {
    background: linear-gradient(151.59deg, #fa005a -21.39%, #280033 47.58%), #520044;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 15px 30px;
}

@media only screen and (min-width: 768px) {
    .feed-header {
        background: linear-gradient(151.47deg, #fa005a -21.32%, #280033 77.37%), #520044;
    }
}


.feed-section {
    border-top: 10px solid #fa005a
}

.feed-section__content-well {
    margin: 0 auto;
    padding: 0 6px 30px;
    max-width: 1302px
}

@media only screen and (min-width: 768px) {
    .feed-section__content-well {
        padding: 0 0 30px
    }
}

.feed-section__heading {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.feed-section__heading h2 {
    background-color: #fa005a;
    border-top: 10px solid #520044;
    color: #fff;
    display: inline-block;
    font-size: 24px;
    margin: -10px 0 0;
    padding: 10px 18px;
    text-transform: uppercase
}

.feed-section__heading a {
    color: #520044;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-left: 12px;
    text-transform: uppercase
}

.feed-section__heading .wds-icon {
    fill: #000;
    margin-bottom: -4px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    width: 12px
}

.feed-section__content {
    padding-top: 30px
}

.feed-section__news-stories-topic {
    width: 100%;
    margin: 30.5px 12px 18.5px;
    color: #520044;
    font-size: 24px;
    font-weight: bold;
    line-height: 22.5px
}

@media only screen and (min-width: 768px) {
    .feed-section__news-stories-topic {
        margin: 30.5px 0 18.5px
    }
}

@media only screen and (min-width: 768px) {
    .feed-section__cards {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

.feed-section__ad {
    margin: 0 auto 30px;
    max-width: 380px
}

@media only screen and (min-width: 768px) {
    .feed-section__ad {
        float: right;
        margin-left: 18px
    }
}

.feed-popular-wikis {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 12px
}

@media only screen and (min-width: 768px) {
    .feed-popular-wikis {
        margin: 0
    }
}

.feed-popular-wikis .popular-wikis-title {
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 22.5px;
    font-weight: bold;
    color: #520044
}

.feed-popular-wikis .popular-wikis-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    gap: 14px
}

@media only screen and (max-width: 767px) {
    .feed-popular-wikis .popular-wikis-wrapper {
        gap: 6px
    }
}

@media only screen and (max-width: 1023px) {
    .feed-popular-wikis .popular-wikis-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.feed-popular-wikis .popular-wikis-wrapper__link {
    text-decoration: none;
    color: #520044;
    display: block;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .feed-popular-wikis .popular-wikis-wrapper__link {
        flex-basis: calc(50% - 6px);
    }
}

@media only screen and (min-width: 768px)and (max-width: 1023px) {
    .feed-popular-wikis .popular-wikis-wrapper__link {
        flex-basis: calc(25% - 14px)
    }
}

@media only screen and (min-width: 768px)and (max-width: 1023px) {
    .feed-popular-wikis .popular-wikis-wrapper__link.with-ad {
        flex-basis: calc(50% - 14px)
    }
}

.feed-popular-wikis .popular-wikis-wrapper .popular-wiki-container__image-wrapper {
    display: block;
    position: relative;
    border-bottom: 3px solid #fa005a;
    margin-bottom: 6px
}

.feed-popular-wikis .popular-wikis-wrapper .popular-wiki-container__image-container {
    width: 100%;
    -ms-flex-align: center;
    align-items: center;
    background-size: cover;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-position: 50%;
    aspect-ratio: 4 / 2.25;
}

.feed-popular-wikis .popular-wikis-wrapper .popular-wiki-container-title {
    font-weight: bold;
    color: #520044;
    line-height: 16px;
    font-size: 16px;
    margin-top: 10px;
}


.feed-popular-wikis .popular-wikis-wrapper .popular-wiki-container > img {
    height: 150px;
    width: 100%
}

.a-list-feed {
    margin: 6px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    background: rgba(155, 0, 63, .5);
    background-size: 100% 100%;
    justify-content: space-evenly;
    border-radius: 18px;
    max-width: 1302px
}

@media only screen and (max-width: 767px) {
    .a-list-feed {
        background: rgba(155, 0, 63, .5);
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%
    }
}

.a-list-feed__item-container {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 12px 9px
}

.a-list-feed__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.a-list-feed__image-wrapper {
    display: block;
    position: relative
}

.a-list-feed__image-wrapper:after {
    content: "";
    display: block;
    padding-top: 54.5%
}

.a-list-feed__image-container {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-size: cover;
    background-position: 50%;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.a-list-feed__image-container svg {
    height: 60px;
    width: 60px
}

.a-list-feed__category-label {
    position: absolute;
    border: 0;
    left: 0;
    bottom: 0;
    background-color: #fa005a
}

.a-list-feed__category-text {
    margin: 0 6px;
    font-style: normal;
    font-weight: 900;
    font-size: 12px;
    line-height: 28px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff
}

.a-list-feed__title-container {
    background: #280033;
    height: 100%;
    padding: 12px
}

.a-list-feed__title {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-align: left
}

@media only screen and (min-width: 768px) {
    .a-list-feed__item {
        border-radius: 4px;
        margin: 0 0 6px;
        overflow: hidden;
        height: 100%
    }

    .a-list-feed__image-container {
        border-radius: 4px
    }
    .a-list-feed__title {
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-style: normal;
        font-size: 15px;
        font-weight: bold;
        line-height: 22.5px;
        margin: 0
    }
}

body {
    font-family: rubik, helvetica, arial, sans-serif
}

p,li{
    margin: 0 0 12px;
}








.search-container {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: flex-end;
    margin-left: auto;
    max-width: 332px;
    min-width: 292px;
    width: 100%;
    z-index: 600
}

@keyframes slideOutToLeft {
    0% {
        opacity: 1;
        transform: translateX(0)
    }

    60% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translateX(-100%)
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%)
    }

    to {
        transform: translateX(0)
    }
}

@keyframes hintFromLeft {
    0% {
        transform: translateX(-100%)
    }

    to {
        transform: translateX(-45%)
    }
}

@keyframes slideInHintFromLeft {
    0% {
        transform: translateX(-45%)
    }

    to {
        transform: translateX(0)
    }
}

@keyframes slideOutHintToLeft {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(-45%)
    }
}

@keyframes slideOutToRight {
    0% {
        opacity: 1;
        transform: translateX(0)
    }

    60% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translateX(100%)
    }
}

.search-app__wrapper {
    display: flex;
    flex-direction: column;
    margin: 6px;
    position: relative;
    width: 100%
}

.search-app__input {
    background-color: #fff;
    border: 1px solid #b3b3b3;
    border-radius: 3px;
    box-sizing: border-box;
    color: #1e0c1b;
    font-family: rubik, helvetica, arial, sans-serif;
    font-size: 16px;
    height: 34px;
    line-height: 1;
    padding-left: 40px;
    padding-right: 34px;
    width: 100%
}

.search-app__input:focus, .search-app__input:hover {
    border: 1px solid #1e0c1b;
}

.search-app__input:focus {
    outline: none
}

.search-app__input::placeholder {
    color: #1e0c1b;
    opacity: 1
}

.search-app__input:-ms-input-placeholder {
    color: #1e0c1b;
    opacity: 1
}

.search-app__icon {
    height: 18px;
    width: 18px
}


.search-app__icon-input {
    left: 12px;
    position: absolute;
    top: 8px;
    display: flex;
    border: none;
    background: no-repeat;
    align-items: center;
    justify-content: center;
    padding: 0;
}

:root {
    --desktop-global-top-navigation-height: 46px
}

.global-top-navigation {
    align-items: center;
    background-color: #fff;
    display: flex;
    height: 46px;
    justify-content: space-between;
    left: 0;
    padding: 0 18px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 500
}

.global-top-navigation__fandom-logo {
    display: flex
}

.global-top-navigation .navigation-panel.hidden-panel {
    animation: slideOutToRight .3s ease-in-out;
    animation-fill-mode: forwards;
    pointer-events: none;
    z-index: -2
}

@media only screen and (max-width: 1640px) {
    .navigation-panel.navigation-panel--left {
        width:264px
    }

    .navigation-panel.navigation-panel--left .navigation-panel__content {
        padding-left: 12px;
        padding-right: 12px
    }
}

.content-overlay:after {
    background-color: #ffffffcc;
    content: "";
    height: 100%;
    left: 0;
    pointer-events: auto;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 402
}

@keyframes slideOutToLeft {
    0% {
        opacity: 1;
        transform: translateX(0)
    }

    60% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translateX(-100%)
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%)
    }

    to {
        transform: translateX(0)
    }
}

@keyframes hintFromLeft {
    0% {
        transform: translateX(-100%)
    }

    to {
        transform: translateX(-45%)
    }
}

@keyframes slideInHintFromLeft {
    0% {
        transform: translateX(-45%)
    }

    to {
        transform: translateX(0)
    }
}

@keyframes slideOutHintToLeft {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(-45%)
    }
}

@keyframes slideOutToRight {
    0% {
        opacity: 1;
        transform: translateX(0)
    }

    60% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translateX(100%)
    }
}


.navigation-panel {
    background-color: #f6f6f6;
    display: flex;
    flex-direction: column;
    height: calc(100% - 46px);
    line-height: 1.75;
    padding: 0;
    position: fixed;
    top: 46px;
    transition: top .5s;
    width: 304px;
    will-change: top;
    z-index: -1
}

.navigation-panel--left {
    animation: slideInFromLeft .3s ease-in-out;
    box-shadow: 3px 0 3px #0000001a;
    left: 66px
}

.navigation-panel__close-wrapper {
    margin-top: 18px;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(12px);
    z-index: 100
}

.navigation-panel__close-button {
    align-items: center;
    background-color: #520044;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    height: 24px;
    justify-content: flex-start;
    padding: 6px;
    width: 24px
}

.navigation-panel__close-button:hover {
    background-color: #b3239b
}

.navigation-panel__close-button svg {
    fill: #f4f4f4;
    transform: rotate(90deg)
}

:root {
    --desktop-global-navigation-width: 66px
}

.global-explore-navigation {
    --fandom-explore-nav-label-color: #291927;
    --fandom-explore-icon-color: #520044;
    --fandom-explore-icon-color--hover: #1e0c1b;
    --fandom-global-nav-border-top-width: 1px;
    background-color: #f4f4f4;
    bottom: 0;
    color: #520044;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    justify-content: space-between;
    left: 0;
    position: fixed;
    top: 46px;
    width: 66px;
    will-change: top;
    z-index: 403
}


.global-explore-navigation a:active,.global-explore-navigation a:focus,.global-explore-navigation a:hover,.global-explore-navigation a:visited {
    text-decoration: none
}

.global-explore-navigation ol,.global-explore-navigation ul:not(.pages-list) {
    list-style: none;
    margin: 0;
    padding: 0
}

.global-explore-navigation__nav,.global-explore-navigation__top {
    display: grid;
    justify-items: center
}

.global-explore-navigation__top {
    background-color: #f4f4f4
}

.global-explore-navigation__top {
    flex: 1;
    padding: 12px 0
}

.global-explore-navigation__top .global-explore-navigation__nav {
    grid-auto-rows: min-content
}

.global-explore-navigation__nav {
    grid-row-gap: 6px
}

.global-explore-navigation .wds-avatar,.global-explore-navigation .wds-avatar.wds-avatar--square {
    --wds-avatar-size: 36px;
    height: var(--wds-avatar-size);
    min-width: var(--wds-avatar-size);
    width: var(--wds-avatar-size)
}

.global-explore-navigation .wds-avatar.wds-avatar--square:after,.global-explore-navigation .wds-avatar:after {
    background: none;
    border-radius: 3px;
    content: "";
    height: 58px;
    left: 0;
    min-width: 58px;
    position: absolute;
    top: 0;
    transform: translate(-20%,-20%);
    transition: background .3s ease-in-out;
    width: 58px;
    z-index: 0
}

.global-explore-navigation .wds-avatar.wds-avatar--square:hover,.global-explore-navigation .wds-avatar:hover {
    cursor: pointer
}

.global-explore-navigation .wds-avatar.wds-avatar--square:hover:after,.global-explore-navigation .wds-avatar:hover:after {
    background: #e2e2e2
}

.global-explore-navigation__item,.global-explore-navigation__panel-item {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 66px;
    width: 100%
}

.global-explore-navigation__item--with-icon .wds-avatar.wds-avatar--square,.global-explore-navigation__panel-item--with-icon .wds-avatar.wds-avatar--square {
    --wds-avatar-size: 58px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.global-explore-navigation__item--with-icon .wds-avatar.wds-avatar--square:after,.global-explore-navigation__panel-item--with-icon .wds-avatar.wds-avatar--square:after {
    transform: none
}

.global-explore-navigation__item--with-icon .global-explore-navigation__icon,.global-explore-navigation__panel-item--with-icon .global-explore-navigation__icon {
    display: flex;
    margin: 0 0 3px
}

.global-explore-navigation__item .global-explore-navigation__icon>svg,.global-explore-navigation__panel-item .global-explore-navigation__icon>svg {
    fill: #291927
}

.global-explore-navigation__item:hover .global-explore-navigation__icon>svg,.global-explore-navigation__panel-item:hover .global-explore-navigation__icon>svg {
    fill: var(--fandom-explore-icon-color--hover)
}

.global-explore-navigation__item:hover .global-explore-navigation__label,.global-explore-navigation__panel-item:hover .global-explore-navigation__label {
    color: var(--fandom-explore-nav-label-color)
}

.global-explore-navigation__item.wds-is-active .wds-avatar:after,.global-explore-navigation__panel-item.wds-is-active .wds-avatar:after {
    background: #e2e2e2
}

.global-explore-navigation__button {
    -webkit-appearance: none;
    background: #0000;
    border: none;
    color: inherit;
    font: inherit;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%
}

.global-explore-navigation__button {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.global-explore-navigation__button:disabled {
    cursor: default;
    opacity: .5
}

.global-explore-navigation__button:disabled * {
    fill: #291927;
    pointer-events: none
}

.global-explore-navigation__icon {
    margin: 12px 0;
    z-index: 1
}

.global-explore-navigation__label {
    color: #000;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    margin: 6px auto 3px;
    overflow: hidden;
    position: relative;
    text-align: center;
    z-index: 1;
}

.global-explore-navigation .navigation-panel.hidden-panel {
    animation: slideOutToLeft .3s ease-in-out;
    animation-fill-mode: forwards;
    pointer-events: none;
    z-index: -2
}

.global-explore-navigation .wds-button {
    --wds-secondary-button-label-color: #1e0c1b;
}

:root {
    --mobile-global-navigation-height: 55px
}

.mobile-global-navigation {
    background-color: #fff;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    font-family: rubik,helvetica,arial,sans-serif;
    height: 55px;
    left: 0;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3
}

.mobile-global-navigation__wrapper {
    min-height: 55px
}

.mobile-global-navigation__menu-wrapper {
    display: flex;
    height: 55px;
    width: 100%
}

.mobile-global-navigation.is-modal-opened {
    z-index: 900
}

.mobile-global-navigation.is-modal-opened .mobile-global-navigation__button:not(.mobile-global-navigation__button-close) {
    display: none
}

.mobile-global-navigation.is-modal-opened .mobile-global-navigation__button.mobile-global-navigation__button-close {
    display: block
}

.mobile-global-navigation .wds-button.wds-is-text {
    transition-property: none;
    --wds-text-button-label-color: #520044;
    --wds-text-button-label-color--hover: #b3239b
}

.mobile-global-navigation .wds-avatar {
    --wds-avatar-size: 24px;
    --wds-avatar-badge-size: 14px;
    --wds-avatar-border-width: 2px;
    --wds-avatar-badge-left: -4px;
    --wds-avatar-badge-top: -6px;
    --wds-avatar-border-color: #520044;
    --wds-avatar-border-color--hover: #b3239b;
    --wds-avatar-background-color: #0000
}

.mobile-global-navigation__left,.mobile-global-navigation__right {
    align-items: center;
    background-color: #fff;
    display: flex;
    transition: transform .3s
}

.mobile-global-navigation__left {
    padding-left: 12px
}

.mobile-global-navigation__right {
    flex-grow: 1;
    justify-content: flex-end;
    padding-right: 3px
}

.mobile-global-navigation__logo {
    height: 30px;
    width: 117px
}

.mobile-global-navigation__user-menu .wds-button {
    --wds-secondary-button-label-color: #1e0c1b;
}

.mobile-global-navigation__buttons {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    width: 100%
}

.mobile-global-navigation__button.wds-button {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    height: 100%;
    justify-content: center;
    padding: 10px;
    position: relative;
    transition-duration: .3s;
    transition-property: color,border-color;
    width: 44px
}

.mobile-global-navigation__button-close.wds-button {
    display: none
}

.mobile-global-navigation__modal {
    color: #1e0c1b;
    display: flex;
    flex-direction: column;
    height: calc(100% - 55px);
    left: 0;
    overflow-y: scroll;
    position: fixed;
    top: 55px;
    width: 100%
}

@media only screen and (max-width: 767px) {
    .mobile-global-navigation {
        animation:overflowHiddenForAnimation .3s backwards
    }

    .mobile-global-navigation__left {
        overflow: hidden;
        position: relative
    }
}

@keyframes overflowHiddenForAnimation {
    0%,to {
        overflow: hidden
    }
}

.mobile-search-modal {
    background: #fff;
    color: #1e0c1b;
    overflow: auto;
    z-index:10;
}

.mobile-search-modal__links {
    align-items: center;
    background-color: #f4f4f4;
    border-top: 1px solid #1e0c1b40;
    display: flex;
    font-size: 12px;
    font-weight: 700;
    justify-content: space-between;
    line-height: 1;
    padding: 6px 12px;
    overflow: auto;
    white-space: nowrap;
}

.mobile-search-modal__link {
    border: 2px solid #0000;
    border-radius: 5px;
    color: #520044;
    display: inline-flex;
    padding: 10px 5px;
    text-align: center;
    text-transform: uppercase
}

.mobile-search-modal__link:first-child {
    margin-left: 0;
    padding-left: 0
}

.mobile-search-modal__link {
    font-size: inherit;
    transition-duration: .3s;
    transition-property: background-color,border-color,color
}

.SearchInput-module_form__mBFgA {
    align-items: center;
    border-bottom: 2px solid #520044;
    display: flex;
    padding-bottom: 3px;
}

.SearchInput-module_input__dZJbV {
    background-color: initial;
    border: 0;
    color: #1e0c1b;
    display: block;
    flex: 1;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    padding: 2px 12px 2px 0;
    width: 100%;
}

.SearchInput-module_form__mBFgA .wds-button {
    --wds-primary-button-background-color: #520044;
    --wds-primary-button-background-color--hover: #b80099;
    --wds-primary-button-label-color: #fff;
}

.MobileSearchModal-module_wrapper__Kfef8 {
    margin-top: 12px;
    padding: 0 12px 12px;
}

.width-100{
    width:100%;
    height:100%;
    aspect-ratio:4/2.25;
}

.page-info ul{
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    margin: 1rem auto;
}

.page-info ul li{
    margin-right: 1rem;
    font-size: 22px;
    font-weight: bold;
}

.article-main-content{
    margin-bottom: 2rem;
    padding: 20px 10px;
}

.article-title{
    font-size: 1.8rem;
    margin: 1rem 0;
    line-height: 1.3;
}
