@import "css.css";

*,
::before,
::after {
    box-sizing: border-box;
}

html {
    font-family: var(--bs-global-font), system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
}

body {
    background-color: var(--body-color);
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

hr {
    height: 0;
    color: inherit;
}

abbr[title] {
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp,
pre {
    font-family: var(--bs-global-font), ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -.25em;
}

sup {
    top: -.5em;
}

table {
    text-indent: 0;
    border-color: inherit;
}

a {
    text-decoration: none;
    color: currentColor;
}

button {
    border: 0;
    outline: 0;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
select {
    text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button;
}

::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

:-moz-focusring {
    outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
    box-shadow: none;
}

legend {
    padding: 0;
}

progress {
    vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

summary {
    display: list-item;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
    margin-bottom: 0;
    letter-spacing: 2px;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

::selection {
    background: var(--primary-color);
    color: var(--text-color);
    opacity: 1;
}

@media screen and (min-width: 992px) {
    ::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }

    ::-webkit-scrollbar-thumb {
        background: var(--primary-color);
    }

    ::-webkit-scrollbar-thumb:active {
        background-color: var(--light-color);
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary-color);
    }

    ::-webkit-scrollbar-track {
        background: var(--wrapper-color);
    }
}

.i,
.lucide {
    stroke-width: var(--i-stroke, 2);
    width: var(--i-size, 20px);
    height: var(--i-size, 20px);
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.i-solid,
.lucide-solid {
    fill: currentColor;
}

body.wrapper-overlay:before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(3px);
    z-index: 99;
    animation: fadeIn .5s forwards;
}

.no-posts {
    background: var(--wrapper-color);
    color: var(--text-color);
    color: rgba(var(--text-color-rgb), .5);
    padding: 1.5rem;
    font-weight: 500;
    border-radius: 1rem;
    width: 90%;
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.icon-menu {
    width: 32px;
    height: 32px;
    display: grid;
    place-content: center;
    position: relative;
    font-size: 0;
}

.icon-menu:before,
.icon-menu span,
.icon-menu:after {
    width: 24px;
    height: 3px;
    background: currentColor;
    border-radius: 2px;
    transition: width .25s, transform .25s, left .25s;
}

.icon-menu:before {
    content: "";
    transform: translateY(-4px);
}

.icon-menu:after {
    content: "";
    transform: translateY(4px);
}

.icon-menu span {
    width: 18px;
    left: -6px;
    background: currentColor;
    border-radius: 2px;
}

.icon-menu.is-toggle span {
    width: 0;
    left: -24px;
}

.icon-menu.is-toggle:before {
    transform: rotate(45deg) translate(2px, 2px);
}

.icon-menu.is-toggle:after {
    transform: rotate(-45deg) translate(2px, -2px);
}

.title-h2 {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 1rem;
}

@media screen and (min-width: 1024px) {
    .title-h2 {
        padding: 0 16px;
    }
}

.headline {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.headline__title {
    font-size: 1.25rem;
    font-weight: 700;
}

@media screen and (min-width: 1024px) {
    .headline__title {
        font-size: 1.5rem;
    }
}

.headline p {
    font-size: 1rem;
    font-weight: 500;
    opacity: .75;
}

.post-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.post-pagination ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.post-pagination ul svg {
    width: 20px;
    height: 20px;
}

.post-pagination ul li a,
.post-pagination ul li span {
    width: 36px;
    height: 36px;
    display: grid;
    font-weight: 500;
    place-content: center;
    transition: all .25s ease-in-out;
}

.post-pagination ul li a:hover,
.post-pagination ul li span:hover {
    background: var(--wrapper-color);
    border-radius: .5rem;
}

.post-pagination ul li a.current,
.post-pagination ul li span.current {
    background: rgba(0, 0, 0, 0);
    opacity: .5;
}

.post-pagination ul li a.next,
.post-pagination ul li a.prev,
.post-pagination ul li span.next,
.post-pagination ul li span.prev {
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    color: var(--text-color);
    border-radius: 99999px;
}

.post-pagination:has(.prev) a.prev,
.post-pagination:has(.prev) a.next {
    background: var(--wrapper-color);
}

.post-pagination:has(.prev) a.prev:hover,
.post-pagination:has(.prev) a.next:hover {
    background: var(--primary-color);
    color: #fff;
}

.fadeIn {
    animation-name: fadeIn;
    animation-duration: .5s;
    animation-fill-mode: forwards;
}

.fadeInScale {
    animation-name: fadeInScale;
    animation-duration: .5s;
    animation-fill-mode: forwards;
}

.fadeInTop {
    animation-name: fadeInTop;
    animation-duration: .5s;
    animation-fill-mode: forwards;
}

.fadeInBottom {
    animation-name: fadeInBottom;
    animation-duration: .5s;
    animation-fill-mode: forwards;
}

@keyframes submenuIn {
    from {
        transform: translateY(-4px);
        opacity: 0;
    }

    to {
        transform: translateY();
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInTop {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes searchFilter {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loader {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0);
    }
}

.outer {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

@media (max-width: 500px) {
    .outer {
        max-width: 100%;
        margin: 0 auto;
        position: relative;
    }
}

.cont {
    width: 100%;
    max-width: var(--container-width);
}

.cont--aside {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cont--expanded #to--expand {
    width: calc(var(--container-width) - 32px);
}

@media screen and (min-width: 1024px) {
    .cont--expanded .aside {
        margin-top: var(--margin-top);
    }
}

.cont.mA {
    margin-left: auto;
    margin-right: auto;
}

.cont.pX {
    padding-left: 16px;
    padding-right: 16px;
}

.cont .main {
    margin-bottom: 2rem;
}

.cont .main,
.cont .aside {
    width: 100%;
}

@media screen and (min-width: 1024px) {
    .cont .main {
        width: calc(100% - var(--aside-width) - var(--container-gutter));
        margin-bottom: 0;
    }

    .cont .aside {
        width: var(--aside-width);
    }
}

.items {
    --xs-col: 2;
    --md-col: 3;
    --lg-col: 5;
    --col: var(--xs-col, 1);
    --gap: 1.5rem;
    display: grid;
    grid-template-columns: repeat(var(--col), minmax(0, 1fr));
    align-items: start;
    gap: var(--gap);
}

@media screen and (min-width: 768px) {
    .items {
        --col: var(--md-col, 3);
    }
}

@media screen and (min-width: 1024px) {
    .items {
        --col: var(--lg-col, 4);
    }
}

@media screen and (min-width: 1024px) {
    body.single-episodes:has(.sticky-on) .aside {
        top: 7.25rem;
    }
}

.widget:not(:last-child) {
    margin-bottom: 2.625rem;
}

.widget__headline {
    margin-bottom: 2rem;
}

.widget__headline.is-center h2 {
    justify-content: center;
}

.widget__headline .section__headline-action {
    margin-top: 1rem;
    gap: .5rem;
}

.widget__headline h2 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.widget__headline h2 svg {
    --i-size: 32px;
    color: var(--primary-color);
}

.section {
    margin-top: 1rem;
}

.section:not(:last-child) {
    margin-bottom: 5.5rem;
}

.section--episode {
    height: 400px;
}

@media screen and (max-width: 1023px) {
    .section--episode {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .section--episode .section__cont {
        border-radius: 15px !important;
    }
}

.section--popular .section__headline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section__headline {
    margin-bottom: 2rem;
}

.section__headline.is-center h2 {
    justify-content: center;
}

.section__headline h2 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.section__headline h2 i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.section__headline.is-tab h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.section__headline.is-tab .section__tabs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section__headline-action {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section__headline-action button {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    border-radius: 50%;
    background: var(--light-color);
    color: var(--text-color);
    cursor: pointer;
    transition: 300ms;
}

.section__headline-action button:disabled {
    opacity: .5;
    pointer-events: none;
}

.section__tabs {
    margin: auto;
    width: auto;
    overflow-x: auto;
    display: inline-block;
    margin-top: 2rem;
}

.section__tabs .tabs {
    background-color: var(--wrapper-color);
    line-height: 1;
    padding: 1rem;
    border-radius: 99999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: .75rem;
    position: sticky;
    top: 0;
}

.section__tabs .tabs button {
    background: rgba(0, 0, 0, 0);
    padding: 0 1rem;
    white-space: nowrap;
    line-height: 2.25rem;
    height: 2.25rem;
    font-weight: 700;
    display: flex;
    font-size: 1rem;
    align-items: center;
    text-transform: capitalize;
    gap: 1rem;
    color: #fff;
    cursor: pointer;
    position: relative;
    transition: all 200ms;
    color: rgba(var(--text-color-rgb), .85);
}

.section__tabs .tabs button span {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
    gap: 1rem;
    line-height: 1;
}

.section__tabs .tabs button:before {
    content: "";
    background: rgba(255, 255, 255, .05);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    scale: .5;
    transform-origin: center center;
    border-radius: 99999px;
    opacity: 0;
    z-index: 1;
    transition: all 200ms;
}

.section__tabs .tabs button:after {
    content: "";
    background-color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    scale: .5;
    transform-origin: center center;
    border-radius: 99999px;
    opacity: 0;
    z-index: 1;
    transition: all 200ms;
}

.section__tabs .tabs button i {
    position: relative;
    z-index: 2;
    font-size: 1.125rem;
}

.section__tabs .tabs button:hover {
    color: var(--text-color);
}

.section__tabs .tabs button:hover:before {
    opacity: 1;
    scale: 1;
}

.section__tabs .tabs button.is-active {
    color: var(--text-color);
    padding: 0 2rem;
    border-radius: 99999px;
}

.section__tabs .tabs button.is-active:after {
    opacity: 1;
    scale: 1;
}

.section__tabs .tabs button.is-active:before {
    scale: 0;
    opacity: 0;
}

.section__tabItem {
    display: none;
}

.section__tabItem.is-active {
    display: block;
}

.section__cont {
    background: var(--wrapper-color);
    padding: 1.5rem;
    border-radius: 1rem;
}

@media screen and (max-width: 767px) {
    .section__cont {
        padding: 1.5rem 1rem;
    }
}

.section--featured {
    --aside-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section--featured .section__headline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section--featured .section__headline p {
    font-size: 1.125rem;
    opacity: .5;
}

@media screen and (min-width: 768px) {
    .section--featured {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .section--featured .section__aside {
        width: var(--aside-width);
        padding-top: 2rem;
    }

    .section--featured .section__body {
        width: calc(100% - var(--aside-width));
        padding: 16px;
    }
}

.i,
.lucide,
[data-lucide] {
    stroke-width: var(--i-stroke, 2);
    width: var(--i-size, 24px);
    height: var(--i-size, 24px);
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.fas,
.far {
    font-size: 18px;
}

[data-lucide] {
    display: inline;
}

.hder {
    position: relative;
    z-index: 100;
}

.hder-sticky {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 5.25rem;
}

body:has(.hero) .hder-sticky {
    position: absolute;
}

body.single-episodes .hder-sticky {
    margin-bottom: 3rem;
}

.hder-sticky .hder.sticky-on[data-sticky-on],
.hder-sticky .hder.sticky-off {
    background: var(--wrapper-color);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    box-shadow: 0 12px 12px rgba(0, 0, 0, .16);
}

.hder-sticky .hder.sticky-on[data-sticky-on] {
    animation: stickyOn .3s forwards;
}

.hder-sticky .hder.sticky-off {
    animation: stickyOff .3s forwards;
}

@keyframes stickyOn {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes stickyOff {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

body:has(.hero) .hder {
    background: linear-gradient(rgba(var(--body-color-rgb), .75), transparent);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
}

body.wrapper-overlay .hder {
    z-index: 102 !important;
}

body.wrapper-overlay.turnoff-light .hder {
    z-index: 80 !important;
}

body.single-episodes .hder,
body.category .hder {
    background: var(--wrapper-color);
}

body.category .hder,
body.search .hder-sticky,
body.search:not(.hder-sticky) .hder,
body.page .hder-sticky,
body.page:not(.hder-sticky) .hder,
body.single-post .hder-sticky,
body.single-post:not(.hder-sticky) .hder {
    margin-bottom: 2rem;
}

body.single-episodes .hder-sticky,
body.single-episodes:not(.hder-sticky) .hder {
    margin-bottom: 3rem;
}

.hder-no-hero {
    background-color: var(--wrapper-color);
    position: relative;
    margin-bottom: 2rem;
}

.hder-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5.25rem;
}

.hder__right {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
}

@media screen and (max-width: 1023px) {
    .hder__right {
        background-color: var(--wrapper-color);
        position: fixed;
        left: 0;
        top: 0;
        width: 80%;
        height: 100vh;
        padding: 1rem;
        max-width: 18.75rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: all 300ms ease-in-out;
    }

    .hder__right .hder-search {
        order: -1;
    }

    .hder__right.is-visible {
        transform: translateX(0);
    }

    .hder__left {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.hder-search {
    position: relative;
}

.hder-search svg {
    width: 20px;
    height: 20px;
}

.hder-search>button {
    display: none;
}

@media screen and (min-width: 1024px) {
    .hder-search>button {
        display: flex;
    }
}

.hder-search__open {
    background: rgba(0, 0, 0, 0);
    width: 2.625rem;
    height: 2.625rem;
    display: none;
    cursor: pointer;
    color: #fff;
}

@media screen and (min-width: 1024px) {
    .hder-search__open {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.hder-search__field {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    padding: .5rem 1rem;
}

.hder-search__field input {
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    outline: 0;
    border: 0;
    font-weight: 500;
    color: #fff;
}

.hder-search__field input::placeholder {
    color: rgba(255, 255, 255, .75);
}

.hder-search__field button {
    background: rgba(0, 0, 0, 0);
    width: 2.625rem;
    height: 2.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
}

@media screen and (min-width: 1024px) {
    .hder-search__field {
        background-color: var(--wrapper-color);
    }
}

@media screen and (min-width: 768px) {
    .hder-search__wrapper {
        position: absolute;
        right: 0;
        top: 100%;
        display: none;
        width: 15.625rem;
    }

    .hder-search__wrapper.is-visible {
        animation: fadeInBottom .3s forwards;
        display: flex;
    }

    .hder-search__wrapper .search__field {
        background-color: var(--wrapper-color);
    }
}

.logo img {
    width: auto;
    height: 33px;
}

.logo__image a {
    display: flex;
    align-items: center;
}

.logo__text {
    font-size: 2rem;
    font-weight: 700;
    text-transform: lowercase;
    display: block;
}

.logo__text::first-letter {
    color: var(--primary-color);
}

.logo__menu {
    background: rgba(0, 0, 0, 0);
    color: #fff;
    cursor: pointer;
}

@media screen and (min-width: 1024px) {
    .logo__menu {
        display: none;
    }
}

.menu {
    width: 100%;
}

.menu ul {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: .5rem;
}

.menu ul li {
    width: 100%;
}

.menu ul li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1rem;
    line-height: 1.2;
    font-size: 1rem;
    border-radius: .25rem;
    font-weight: 500;
    white-space: nowrap;
    transition-duration: 300ms;
    transition-timing-function: ease-out;
}

.menu ul li a:hover {
    background-color: rgba(255, 255, 255, .1);
}

.menu ul li a.is-selected .has-child-ico svg {
    transform: rotate(180deg);
}

.menu .sub-menu {
    display: none;
    border-left: 4px solid var(--light-color);
}

.menu .sub-menu a {
    border-radius: 0;
    white-space: initial;
}

.menu .sub-menu.is-visible {
    display: flex;
    gap: 0;
    margin-top: .5rem;
}

.menu .sub-menu.is-visible ul {
    margin-left: 1rem;
}

.menu .has-child-ico {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    height: 100%;
    width: 3rem;
    align-items: center;
    justify-content: center;
}

.menu .has-child-ico svg,
.menu .has-child-ico i {
    transition-duration: 300ms;
    transition-timing-function: ease-out;
}

@media screen and (min-width: 1024px) {
    .menu ul {
        flex-direction: row;
        gap: 1rem;
    }

    .menu ul li:hover>a .has-child-ico svg,
    .menu ul li:hover>a .has-child-ico i {
        transform: rotateX(180deg);
    }

    .menu ul li {
        position: relative;
    }

    .menu ul li a {
        padding: 1rem;
        border-radius: .75rem;
        font-weight: 600;
    }

    .menu ul li:hover>ul {
        display: block;
        animation: fadeInScale 300ms ease-in-out forwards;
    }

    .menu .sub-menu {
        background-color: var(--wrapper-color);
        position: absolute;
        right: 0;
        top: 100%;
        display: none;
        width: 240px;
        border-radius: .75rem;
        border-left: 0;
        padding: 1rem;
        z-index: 10;
        transform-origin: center top;
    }

    .menu .sub-menu li a {
        padding: 1rem;
        white-space: initial;
        border-radius: .5rem;
    }

    .menu .sub-menu li a:hover {
        background-color: var(--light-color);
    }

    .menu .sub-menu ul {
        top: 0;
        right: 75%;
    }

    .menu .has-child-ico {
        pointer-events: none;
        position: relative;
        width: auto;
        flex-grow: 1;
        background-color: rgba(0, 0, 0, 0);
    }
}

#hero {
    position: relative;
}

.hero {
    --hero-height: 24rem;
    background-size: cover;
    background-position: center;
    min-height: calc(var(--hero-height) + var(--hder-height));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
}

@media screen and (min-width: 1024px) {
    .hero {
        --hero-height: 28rem;
    }
}

.hero__nav {
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% - 5.25rem);
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 80;
    margin: 2.625rem;
    pointer-events: none;
}

@media screen and (max-width: 1023px) {
    .hero__nav {
        display: none;
    }
}

.hero__nav--dots {
    position: relative;
    width: auto;
    margin: auto;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero__nav button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: var(--text-color);
    display: grid;
    place-content: center;
    backdrop-filter: blur(5px);
    cursor: pointer;
    pointer-events: auto;
    transition: all 300ms ease-in-out;
}

.hero__nav button svg {
    width: 20px;
    height: 20px;
}

.hero__nav button:hover {
    scale: 1.1;
    background: var(--primary-color);
}

.hero__nav button[disabled] {
    opacity: .1;
    pointer-events: none;
}

.hero__body {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 660px;
    margin: auto;
    text-align: center;
}

.hero__body .synopsis span {
    margin-top: .5rem;
    color: #fff;
    padding-top: 0;
    font-weight: 700;
    text-transform: lowercase;
    z-index: 5;
    user-select: none;
    cursor: pointer;
    display: inline-block;
}

.hero__body p {
    width: 100%;
    opacity: 1;
    font-size: 13px;
    margin: auto;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media screen and (min-width: 1280px) {
    .hero__body p {
        font-size: 1.125rem;
    }
}

.hero__body p.is-full {
    overflow-y: auto;
    max-height: 5.125rem;
}

.hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 1rem;
}

.hero__meta .type {
    text-transform: uppercase;
}

.hero__header {
    margin-bottom: 1rem;
}

.hero__header h2 {
    font-size: 22px;
    line-height: 1.2;
}

@media screen and (min-width: 768px) {
    .hero__header h2 {
        font-size: 26px;
        line-height: 1.5;
    }
}

.hero__action {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

@media screen and (max-width: 767px) {

    .hero__action a.btn,
    .hero__action button.btn {
        font-size: 15px;
    }
}

.hero__action .btn.is-primary svg {
    fill: currentColor;
}

.hero__backdrop {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.hero__backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    display: block;
}

.hero__backdrop:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: radial-gradient(transparent 0%, var(--body-color) 90%);
    z-index: 3;
}

.hero__backdrop:before {
    background: linear-gradient(transparent, var(--body-color));
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: 4;
}

.hero--movie {
    --poster-width: 160px;
    display: flex;
    flex-direction: row-reverse;
    align-items: start;
    padding: 0;
    gap: 1.5rem;
    min-height: auto;
}

@media screen and (min-width: 1024px) {
    .hero--movie {
        --poster-width: 260px;
    }
}

.hero--movie .hero__title {
    font-size: 1.125rem;
}

@media screen and (min-width: 1024px) {
    .hero--movie .hero__title {
        font-size: 1.5rem;
    }
}

.hero--movie .hero__body {
    text-align: left;
}

.hero--movie .hero__overview {
    font-size: 1rem !important;
    font-weight: 500;
    opacity: .5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.hero--movie .hero__meta {
    justify-content: flex-start;
}

.hero--movie .hero__poster {
    position: relative;
    z-index: 10;
    width: var(--poster-width);
}

.hero--movie .hero__poster picture img {
    width: 100%;
    display: block;
    border-radius: 1rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .3);
}

.hero--movie .hero__genres ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: .5rem;
}

.hero--movie .hero__genres ul li:not(:last-child) a {
    margin-right: 1rem;
}

.hero--movie .hero__genres ul li:not(:last-child) a:after {
    content: "»";
    margin-left: 1rem;
    opacity: .5;
    pointer-events: none;
}

.hero--movie .hero__genres ul a {
    font-weight: 600;
    display: block;
    font-size: .875rem;
}

@media screen and (min-width: 1024px) {
    .hero--movie .hero__genres ul a {
        font-size: 1rem;
    }
}

.hero--serie {
    --poster-width: 360px;
    padding-top: calc(var(--hder-height) + 16px);
    padding-left: 0;
    padding-right: 0;
}

.hero--serie~.ptabs {
    margin-bottom: 2rem;
}

@media screen and (max-width: 1023px) {
    .hero--serie {
        min-height: auto;
    }
}

@media screen and (min-width: 1024px) {
    .hero--serie {
        --poster-width: 500px;
    }
}

.hero--serie .cont {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 1.5rem;
}

@media screen and (min-width: 1024px) {
    .hero--serie .cont {
        flex-direction: row-reverse;
        gap: 2rem;
        position: relative;
    }
}

.hero--serie .hero__meta {
    flex-wrap: wrap;
    gap: 1rem;
}

@media screen and (max-width: 1023px) {
    .hero--serie .hero__meta span {
        font-size: .875rem !important;
    }
}

.hero--serie .hero__meta .status {
    background-color: var(--completed-color);
    color: #fff;
    font-size: .75rem;
    text-transform: uppercase;
    backdrop-filter: blur(3px);
    z-index: 50;
}

.hero--serie .hero__meta .status.on {
    background-color: var(--ongoing-color);
    color: #fff;
}

@media screen and (min-width: 1024px) {
    .hero--serie .hero__meta {
        justify-content: flex-start;
    }

    .hero--serie .hero__meta .status {
        position: absolute;
        left: 1.5rem;
        top: 2.5rem;
    }
}

.hero--serie .hero__action {
    justify-content: flex-start;
}

.hero--serie .hero__backdrop:before {
    background: linear-gradient(transparent, var(--body-color) 75%);
}

@media screen and (min-width: 1024px) {
    .hero--serie .hero__backdrop:before {
        background: linear-gradient(transparent, var(--body-color));
    }
}

.hero--serie .hero__poster {
    position: relative;
    z-index: 10;
    width: var(--poster-width);
}

.hero--serie .hero__poster picture img {
    width: 100%;
    display: block;
    border-radius: 1rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .3);
}

.hero--serie .hero__body {
    text-align: left;
    position: static;
    z-index: 20;
    margin: 0;
}

@media screen and (min-width: 1024px) {
    .hero--serie .hero__body {
        width: calc(100% - var(--poster-width));
        max-width: unset;
    }

    .hero--serie .hero__body .hero__header,
    .hero--serie .hero__body .hero__overview {
        max-width: 45rem;
    }
}

.hero--serie .hero__overview {
    margin: unset;
}

.hero--serie .hero__genres ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: .5rem;
}

.hero--serie .hero__genres ul li:not(:last-child) a {
    margin-right: 1rem;
}

.hero--serie .hero__genres ul li:not(:last-child) a:after {
    margin-left: 1rem;
    opacity: .5;
    pointer-events: none;
}

.hero--serie .hero__genres ul a {
    font-weight: 600;
    display: block;
    font-size: .875rem;
}

@media screen and (min-width: 1024px) {
    .hero--serie .hero__genres ul a {
        font-size: 1rem;
    }
}

.avg-score,
.views,
.status,
.col-status span {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 28px;
    height: 28px;
    padding: 0 .625rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 99px;
}

.avg-score[data-text]:after,
.views[data-text]:after,
.status[data-text]:after,
.col-status span[data-text]:after {
    font-size: .75rem;
    font-weight: 400;
}

.avg-score i,
.views i,
.status i,
.col-status span i {
    fill: currentColor;
    font-size: 1rem;
}

.avg-score.is-small,
.views.is-small,
.status.is-small,
.col-status span.is-small {
    font-size: .875rem;
    line-height: 24px;
    height: 24px;
}

.avg-score.is-small i,
.views.is-small i,
.status.is-small i,
.col-status span.is-small i {
    font-size: .875rem;
}

.avg-score {
    background: var(--avg-color);
    color: var(--avg-color-text);
}

.btn {
    background: var(--light-color);
    color: #fff;
    padding-left: 1rem;
    padding-right: 1rem;
    height: 36px;
    line-height: 36px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-size: .875rem;
    font-weight: 500;
    border-radius: 1rem;
    cursor: pointer;
    transition: .3s;
}

.btn i {
    font-size: 1rem;
}

.btn:hover {
    background: var(--primary-color);
    color: #fff;
    scale: 1.1;
    box-shadow: 0 4px 8px rgba(var(--primary-color-rgb), .4);
}

.btn:active {
    scale: 1.02;
}

.btn:disabled {
    pointer-events: none;
    opacity: .5;
    user-select: none;
}

.btn.is-large {
    width: 280px;
    height: 42px;
    line-height: 42px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
}

.btn.is-small {
    line-height: 32px;
    font-size: .875rem;
    height: 32px;
    text-transform: initial;
}

.btn.is-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn.is-glass {
    background: rgba(0, 0, 0, .1);
    backdrop-filter: blur(3px);
    box-shadow: 0 0 0 !important;
}

.btn.is-glass:hover {
    background: rgba(0, 0, 0, .3);
}

.eps-noAvailable {
    background-color: var(--wrapper-color);
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.eps-noAvailable h2,
.eps-noAvailable p {
    color: var(--text-color);
}

.eps-noAvailable p {
    opacity: .5;
}

.eps-list {
    display: flex;
    flex-direction: column;
}

.eps-list.display-result {
    opacity: .1;
    pointer-events: none;
    margin-top: 1rem;
}

.eps-filters {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.eps-filters summary {
    white-space: nowrap;
}

.eps-ssns {
    position: relative;
    z-index: 5;
    white-space: nowrap;
}

.eps-ssns summary {
    height: 2.625rem;
    user-select: none;
}

.eps-ssns>div {
    background-color: var(--light-color);
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: .5rem;
    min-width: 10rem;
    max-height: 10rem;
    overflow-y: auto;
    padding: .5rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.eps-ssns>div button {
    background: rgba(0, 0, 0, 0);
    width: 100%;
    padding: .75rem 1rem;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1;
    border-radius: .75rem;
    text-align: left;
    color: #fff;
    cursor: pointer;
    transition: all .3s ease-in-out;
    user-select: none;
}

.eps-ssns>div button:hover {
    background-color: rgba(0, 0, 0, .2);
}

.eps-ssns[open] div {
    animation-name: showSSN_in;
    animation-duration: .5s;
}

@keyframes showSSN_in {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eps-search {
    width: 100%;
}

.eps-search input {
    width: 100%;
    padding: 0 1rem;
    height: 2.625rem;
    background-color: var(--wrapper-color);
    outline: 0;
    border: 0;
    font-size: .875rem;
    border-radius: 99999px;
    color: var(--text-color);
}

.eps-search input::placeholder {
    color: rgba(var(--text-color-rgb), .5);
}

.eps-search__result {
    width: 100%;
}

.ieps {
    border-radius: 1rem;
    transition: all 300ms ease-in-out;
}

.ieps__title {
    font-size: 1rem;
    transition: all .3s ease-in-out;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ieps__title:hover {
    color: var(--primary-color);
}

.ieps__title a {
    display: block;
}

.ieps__body {
    padding: 1rem;
    transition: all 300ms ease-in-out;
}

.ieps__image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16/10;
    left: 0;
    top: 0;
    transition: all 300ms ease-in-out;
}

.ieps__image a {
    overflow: hidden;
    border-radius: 0;
    display: block;
}

.ieps__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 1;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: .75rem;
    transition: all 300ms ease-in-out;
}

@media screen and (max-width: 767px) {
    .ieps__image img {
        border-radius: .75rem .75rem 0 0;
    }
}

.ieps__image .play {
    border-radius: .75rem;
    background-color: rgba(0, 0, 0, .5);
    backdrop-filter: blur(1px);
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0;
    transform: translateY(0);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 300ms ease-in-out;
}

.ieps__image .play i {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: #fff;
    fill: currentColor;
    border-radius: 99999px;
    display: flex;
    font-size: 1.5rem;
    align-items: center;
    justify-content: center;
    scale: .75;
    transition-duration: 300ms;
    box-shadow: 0 4px 8px rgba(var(--primary-color-rgb), .5);
}

.ieps__image .play i:before {
    transform: translateX(1px);
}

.ieps__footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: .5rem;
}

.ieps__meta,
.ieps__runtime {
    display: flex;
    align-items: center;
    line-height: 1;
    padding: .375rem .5rem;
    font-weight: 700;
    font-size: .875rem;
}

.ieps__meta {
    background: rgba(255, 255, 255, .1);
    border-radius: .75rem;
}

.ieps__meta .ssn {
    color: var(--primary-color);
    margin-right: .375rem;
}

.ieps__meta .num {
    letter-spacing: 1px;
}

.ieps__runtime {
    padding: 0;
    margin-left: .375rem;
}

.ieps:hover {
    background: var(--light-color);
}

.ieps:hover .play {
    opacity: 1;
}

.ieps:hover .play svg {
    scale: 1;
}

@media screen and (min-width: 768px) {
    .ieps:hover {
        transform: translateY(-12px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, .1);
    }

    .ieps:hover .ieps__image img,
    .ieps:hover .ieps__image .play {
        width: calc(100% - 16px);
        height: calc(100% - 16px);
        top: 8px;
        left: 8px;
    }

    .ieps:hover .ieps__body {
        transform: translateY(-12px);
        padding: 1rem;
    }
}

.eps {
    text-align: center;
}

.eps .btn {
    margin-top: 1rem;
}

.lep {
    background-color: var(--wrapper-color);
    display: flex;
    align-items: center;
    text-align: left;
    padding: 1rem;
    border-radius: 1rem;
    position: relative;
    transition: all .3s ease-in-out;
}

.lep.is-selected {
    animation: fadeInBottom .5s forwards;
}

.lep:hover {
    background-color: var(--light-color);
}

.lep:hover .lep__play {
    opacity: 1;
    background: var(--primary-color);
}

.lep a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    opacity: 0;
}

.lep:not(:last-of-type) {
    margin-bottom: .5rem;
}

.lep__thumbnail {
    width: 54px;
    height: 54px;
    overflow: hidden;
    border-radius: .5rem;
}

.lep__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lep__body {
    width: calc(100% - 54px);
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: .25rem;
}

.lep__episode {
    font-size: .875rem;
    font-weight: 500;
}

.lep__season {
    font-weight: 500;
    font-size: .875rem;
    background: var(--light-color);
    color: #fff;
    padding: 0 .5rem;
    border-radius: 99999px;
}

.lep__title {
    order: -1;
    width: 100%;
    display: block;
    font-size: .875rem;
}

.lep__play {
    width: 32px;
    height: 32px;
    display: grid;
    place-content: center;
    opacity: .3;
    border-radius: 99999px;
    transition: all .3s ease-in-out;
}

.lep__play svg {
    --i-size: 18px;
    fill: currentColor;
}

.hero.hero--player {
    padding-top: calc(var(--hder-height) + 52px);
    margin-bottom: 3.25rem;
    position: unset;
    z-index: unset;
}

.hero.hero--player .hero__body {
    max-width: 900px;
    position: unset;
    z-index: unset;
}

.hero.hero--player .hero__body.is-expanded {
    max-width: var(--container-width);
}

.hero.hero--player .ep__action div:last-child button {
    width: auto;
    padding: 0 1rem;
    white-space: nowrap;
}

.hero.hero--player .ep__action div:last-child button[data-youtube-id] {
    background: var(--primary-color);
    color: #fff;
    width: 42px;
    padding-left: 0;
    padding-right: 0;
}

.hero.hero--player .hero__backdrop {
    background-size: cover;
    background-position: center center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 600px;
    opacity: .3;
    filter: blur(5px);
}

.hero.hero--player .player {
    z-index: 81;
}

.hero.hero--player .servers {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
    position: relative;
    z-index: 82;
}

body.wrapper-overlay .hero.hero--player .servers {
    z-index: 50;
}

.hero.hero--player .servers .loader {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: .875rem;
    font-weight: 500;
}

.hero.hero--player .opts {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 0;
    gap: .5rem;
    background: rgba(0, 0, 0, 0);
    overflow: visible;
}

.hero.hero--player .opts-item {
    position: relative;
    z-index: unset;
}

.hero.hero--player .opts-item__action {
    background: var(--wrapper-color);
    border-radius: .5rem;
    padding-top: 0;
    padding-bottom: 0;
    height: 48px;
    line-height: 48px;
    transition: none;
    padding-right: 42px;
}

.hero.hero--player .opts-item__action.is-active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.hero.hero--player .opts-item__action.is-active .hero.hero--player .opts-item__links:hover {
    background: rgba(255, 255, 255, .1);
}

.hero.hero--player .opts-item__action.is-active~div {
    z-index: 1000;
}

.hero.hero--player .opts-item__action>span {
    right: 0;
}

.hero.hero--player .opts-item__body {
    background: var(--wrapper-color);
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    border-bottom-left-radius: .5rem;
    border-bottom-right-radius: .5rem;
}

.hero.hero--player .opts-item__link {
    width: auto;
    background: var(--wrapper-color);
    border-radius: .5rem;
}

.mv__details {
    margin-top: 1.5rem;
}

.cod {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cod-section {
    margin-top: 1.5rem;
}

.cod-section .title-h2 {
    padding-left: 0;
}

.cod__loadMore {
    margin-top: 1.5rem;
    text-align: center;
}

.cod__loadMore svg {
    width: 20px;
    height: 20px;
    opacity: .5;
}

.cod__item {
    background: var(--wrapper-color);
    border-radius: 99999px;
    font-size: .875rem;
    font-weight: 500;
    overflow: hidden;
    padding-right: 1rem;
    transition: all 300ms ease-in-out;
}

.cod__item.is-hidden {
    opacity: 0;
    transition: all .3s;
}

.cod__item a {
    display: flex;
    align-items: center;
    line-height: 1;
    gap: .75rem;
}

.cod__item img,
.cod__item span {
    background: rgba(0, 0, 0, .1);
    width: 32px;
    height: 32px;
    border-radius: 99999px;
    object-fit: cover;
}

.cod__item span {
    display: grid;
    place-content: center;
}

.cod__item span svg {
    width: 16px;
    height: 16px;
    opacity: .5;
}

.cod__item:hover {
    background: var(--light-color);
    transform: translateY(-1px);
}

.footer {
    background-color: var(--wrapper-color);
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    margin-top: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    
}

@media (max-width: 500px) {
    .footer {
        max-width: 100%;
        margin: 0 auto;
    }
}

.footer .cont {
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
    position: relative;
}

@media screen and (min-width: 768px) {
    .footer .cont {
        grid-template-columns: 30.4545454545% 1fr;
        gap: 2rem;
    }
}

.footer__goUp {
    position: absolute;
    right: 24px;
    top: -24px;
    width: 54px;
    height: 54px;
    background-color: var(--wrapper-color);
    color: #fff;
    border: 6px solid var(--body-color);
    border-radius: 50%;
    display: grid;
    place-content: center;
    cursor: pointer;
    transition: all .3s;
}

@media screen and (min-width: 1024px) {
    .footer__goUp {
        right: 0;
    }
}

.footer__goUp:hover {
    background: var(--primary-color);
}

.footer__right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media screen and (min-width: 1024px) {
    .footer__right {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.footer__link h2 {
    margin-bottom: 1rem;
    font-size: 18px;
}

.footer__link ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer__link ul li a {
    opacity: .75;
    color: var(--text-color);
    display: block;
    line-height: 1.5rem;
    height: 1.5rem;
    font-weight: 500;
}

.footer__link ul li a:hover {
    opacity: 1;
}

.footer__copyrights {
    border-top: 1px solid var(--light-color);
    display: block !important;
    text-align: center;
    padding: 1rem !important;
    color: rgba(255, 255, 255, .5);
    font-weight: 500;
}

.footer__copyrights a {
    color: #fff;
}

.footer__copyrights a:hover {
    text-decoration: underline;
}

.footer__about .footer-logo {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #fff;
}

.footer__about .footer-desc {
    font-size: 1.125rem;
    font-weight: 500;
    opacity: .5;
    line-height: 1.65;
}

.footer__brands {
    margin-top: 1.5rem;
}

.footer__brands ul {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.footer__brands ul li a {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    border-radius: .5rem;
    transition: all 300ms ease-in-out;
}

.footer__brands ul li a i {
    font-size: 1.125rem;
}

.footer__brands ul li a span {
    font-size: 0;
}

.footer__brands ul li a:hover {
    background: var(--primary-color);
    color: #fff;
}

.embla {
    --slide-size: 100%;
    --slide-spacing: 1rem;
    overflow: hidden;
}

.embla__container {
    display: flex;
    margin-left: calc(var(--slide-spacing) * -1);
}

.embla__slide {
    flex: 0 0 var(--slide-size);
    min-width: 0;
    padding-left: var(--slide-spacing);
}

.embla__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.embla__dots button.embla__dot {
    width: 16px !important;
    height: 16px !important;
    border-radius: 1rem;
}

.embla__dots button.embla__dot--selected {
    width: 42px !important;
    background: var(--primary-color);
}

.embla--hero {
    --slide-spacing: 0;
    position: relative;
}

.embla--featured {
    --slide-size: calc(100% / 2);
}

@media screen and (min-width: 768px) {
    .embla--featured {
        --slide-size: calc(100% / 3);
    }
}

@media screen and (min-width: 1024px) {
    .embla--featured {
        --slide-size: calc(100% / 4);
    }
}

.embla--popular {
    --slide-size: calc(100% / 1);
    padding-top: 16px;
    margin-top: -16px;
}

@media screen and (min-width: 480px) {
    .embla--popular {
        --slide-size: calc(100% / 2);
    }
}

@media screen and (min-width: 768px) {
    .embla--popular {
        --slide-size: calc(100% / 3);
    }
}

@media screen and (min-width: 1024px) {
    .embla--popular {
        --slide-size: calc(100% / 4);
    }
}

@keyframes tabs_is_active {
    from {
        transform: translateY(-6px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.ptabs .post-tabs {
    background: var(--wrapper-color);
    padding: 0;
    display: flex;
    align-items: center;
    border-radius: 1rem;
    flex-wrap: wrap;
    padding: 1rem;
    gap: 1rem;
    position: relative;
    flex-direction: column;
}

@media(scripting: none) {
    .ptabs.is-no-js button:after {
        content: "";
        background-color: var(--light-color);
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transform-origin: center center;
        border-radius: .75rem;
        opacity: 0;
        z-index: 1;
        transition: all 200ms;
    }
}

@media(scripting: enabled) {
    .ptabs__indicator {
        background-color: var(--light-color);
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 0;
        transform-origin: center center;
        border-radius: .75rem;
        opacity: 1;
        z-index: 1;
        transition: all 200ms ease-out;
    }

    .ptabs__indicator.is-initial {
        transition: none !important;
    }
}

.ptabs button {
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 0 1rem;
    line-height: 2.625rem;
    height: 2.625rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    color: rgba(var(--text-color-rgb), .5);
    border-radius: .75rem;
    transition: all 200ms ease-in-out;
    position: relative;
    overflow: hidden;
}

.ptabs button:before {
    content: "";
    background: rgba(255, 255, 255, .05);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    scale: .5;
    transform-origin: center center;
    border-radius: .75rem;
    opacity: 0;
    z-index: 1;
    transition: all 200ms;
}

.ptabs button i,
.ptabs button svg,
.ptabs button span {
    position: relative;
    z-index: 2;
}

.ptabs button svg {
    opacity: .5;
}

.ptabs button:hover {
    color: rgba(var(--text-color-rgb), .85);
}

.ptabs button:hover:before {
    opacity: 1;
    scale: 1;
}

.ptabs button.is-active {
    color: var(--text-color);
}

.ptabs button.is-active i {
    color: var(--primary-color);
}

.ptabs button.is-active:after {
    opacity: 1;
}

.ptabs button.is-active:before {
    scale: 1;
    opacity: 0;
    translate: 100% 0;
}

.post-tabs__item {
    display: none;
}

.post-tabs__item.is-active {
    display: block;
    animation: tabs_is_active .5s forwards;
}

.post-tabs__item .loadMore {
    margin-top: 2rem;
    text-align: center;
}

.details {
    background: var(--wrapper-color);
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.details__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.details__item .col-name {
    font-size: .875rem;
    font-weight: 500;
    opacity: .75;
    position: sticky;
    top: 0;
}

.details__item .col-status span {
    background-color: var(--completed-color);
    color: #fff;
    font-size: .75rem;
    text-transform: uppercase;
    display: inline-block;
}

.details__item .col-status span.on {
    background-color: var(--ongoing-color);
    color: #fff;
}

.details__col {
    width: 100%;
}

.details__col.col-name {
    width: 140px;
}

.aside .widget__headline {
    margin-bottom: 1.5rem;
}

.aside .widget__headline:has(.widget-title) .widget-title {
    margin-bottom: 0;
}

.aside .widget-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.crv-modal {
    background: rgba(0, 0, 0, .75);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 100%;
    place-content: center;
    overflow-y: auto;
    z-index: 101;
    animation: fadeIn .3s forwards;
}

.crv-modal__close {
    width: 36px;
    height: 36px;
    display: grid;
    place-content: center;
    cursor: pointer;
}

.crv-modal__headline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.crv-modal__headline h2 {
    font-size: 20px;
    font-weight: 700;
}

.crv-modal__wrapper {
    background: var(--wrapper-color);
    border-radius: .75rem;
    width: 90%;
    max-width: 600px;
    margin: auto;
    opacity: 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .3);
    animation: fadeInScale .3s forwards;
    animation-delay: .2s;
}

.crv-modal__wrapper.no-title {
    position: relative;
}

.crv-modal__wrapper.no-title .crv-modal__close {
    position: absolute;
    right: 2rem;
    top: 0;
    margin: -1rem;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-color);
}

.crv-modal--youtube .crv-modal__wrapper {
    max-width: 900px;
}

.crv-modal--youtube .crv-modal__wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: 0;
    outline: 0;
    display: block;
    border-radius: .75rem;
}

[data-loader] {
    width: 20px;
    height: 20px;
    border: 2px solid var(--wrapper-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    animation: loader .5s infinite linear;
}

[data-loader].large {
    border-width: 3px;
    width: 42px;
    height: 42px;
}

.downloads {
    margin-top: 1rem;
    display: none;
}

.downloads.is-visible {
    display: block;
    animation: fadeInTop .5s forwards;
}

.downloads__table {
    width: 100%;
    border-radius: .75rem;
    overflow-x: auto;
    background: var(--wrapper-color);
}

.downloads__table table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    text-align: left;
}

.downloads__table table thead {
    border-bottom: 1px solid var(--light-color);
}

.downloads__table table thead tr th {
    font-size: .875rem;
    padding: 1rem;
    color: var(--text-color);
    opacity: .5;
    font-weight: 700;
    text-transform: uppercase;
}

.downloads__table table tbody tr {
    font-size: .75rem;
    font-weight: 600;
    color: rgba(var(--text-color-rgb), .75);
}

.downloads__table table tbody tr td {
    padding: .75rem 1rem;
}

.downloads__table table tbody tr td.right {
    text-align: right;
}

.downloads__table table tbody tr td .btn svg {
    width: 16px;
    height: 16px;
    opacity: .75;
}

.downloads__table table tbody tr:not(:last-child) {
    border-bottom: 1px solid var(--light-color);
}

#disqus_thread {
    background: var(--wrapper-color);
    border-radius: .75rem;
    padding: 1rem;
    margin-top: 2rem;
}

.cmts {
    margin-top: 2.625rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.cmts .logged-in-as {
    font-size: .875rem;
    color: rgba(var(--text-color-rgb), .75);
}

.cmts .logged-in-as .required-field-message {
    display: none;
}

.cmts .logged-in-as a {
    color: var(--text-color);
}

.cmts .logged-in-as a:hover {
    text-decoration: underline;
}

.cmts .reply-text {
    font-size: .875rem;
    margin-bottom: .5rem;
}

.cmts .reply-text small a {
    display: inline-block;
    padding: .25rem .5rem;
    font-size: .875rem;
    font-weight: 500;
    background: var(--wrapper-color);
    color: #fff;
    line-height: 1;
    border-radius: .5rem;
    transition: all .3s ease-in-out;
}

.cmts .reply-text small a:hover {
    background: var(--primary-color);
}

.cmts #reply-title {
    display: none;
}

.cmts .comment-form {
    --cmt-form-height: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cmts .comment-form textarea {
    background: var(--wrapper-color);
    color: #fff;
    padding: 1rem;
    font-size: .875rem;
    width: calc(100% - 92px - 16px);
    height: var(--cmt-form-height);
    overflow: hidden;
    border: 0;
    outline: 0;
    border-radius: .75rem;
    order: 1;
    outline: 0;
    transition: all .25s ease-in-out;
}

.cmts .comment-form textarea::placeholder {
    color: rgba(var(--text-color-rgb), .75);
}

.cmts .comment-form textarea:focus {
    background: var(--light-color);
}

.cmts .comment-form .form-submit {
    width: 92px;
    order: 2;
}

.cmts .comment-form .form-submit #submit {
    background: var(--primary-color);
    color: #fff;
    width: 100%;
    cursor: pointer;
    height: var(--cmt-form-height);
    border: 0;
    outline: 0;
    font-size: 1rem;
    font-weight: 500;
    border-radius: .75rem;
    transition: all .3s;
}

.cmts .comment-form .form-submit #submit:hover {
    opacity: .8;
}

.cmts .comment-form #author,
.cmts .comment-form #email {
    display: none;
    height: 42px;
    background: var(--wrapper-color);
    color: #fff;
    padding: 0 .5rem;
    font-size: .875rem;
    border: 0;
    border-radius: .5rem;
    outline: 0;
    transition: all .3s ease-in-out;
}

.cmts .comment-form #author::placeholder,
.cmts .comment-form #email::placeholder {
    color: rgba(var(--text-color-rgb), .75);
}

.cmts .comment-form #author:focus,
.cmts .comment-form #email:focus {
    background: var(--light-color);
}

.cmts .comment-form #author {
    order: 3;
}

.cmts .comment-form #email {
    order: 4;
}

.cmts .comment-form textarea:not(:placeholder-shown)~#author,
.cmts .comment-form textarea:not(:placeholder-shown)~#email {
    display: block;
    animation: fadeInBottom .5s forwards;
}

.cmts .comments-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}

.cmts .comments-list .comment {
    --avatar-width: 36px;
}

.cmts .comments-list .comment-wrapper {
    display: flex;
    align-items: flex-start;
}

.cmts .comments-list .comment-avatar {
    width: var(--avatar-width);
    height: var(--avatar-width);
    overflow: hidden;
    border-radius: 50%;
}

.cmts .comments-list .comment-avatar img {
    width: 100%;
    height: 100%;
}

.cmts .comments-list .comment-reply-link {
    margin-left: -16px;
    padding: 0 1rem;
    height: 32px;
    font-size: .875rem;
    line-height: 32px;
    border-radius: .5rem;
    display: inline-block;
}

.cmts .comments-list .comment-reply-link:hover {
    background: var(--wrapper-color);
    color: var(--text-color);
}

.cmts .comments-list .comment-header {
    margin-bottom: .75rem;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.cmts .comments-list .comment-header .comment-author {
    font-size: .875rem;
}

.cmts .comments-list .comment-header time {
    font-size: .875rem;
    opacity: .5;
    font-weight: 500;
    display: flex;
    align-items: center;
    line-height: 1;
    gap: .5rem;
}

.cmts .comments-list .comment-header time i {
    font-size: .875rem;
}

.cmts .comments-list .comment-block {
    width: calc(100% - var(--avatar-width));
    padding-left: 1rem;
}

.cmts .comments-list .comment-body {
    margin-bottom: 1rem;
}

.cmts .comments-list .children {
    padding-left: var(--avatar-width);
    padding-left: 2rem;
    border-left: 5px solid rgba(255, 255, 255, .1);
}

.cmts .comments-list .children .children {
    margin-top: 1rem;
}

.cmts .comments-list .children .comment {
    --avatar-width: 24px;
}

.cmts .comments-list .children .comment-header time {
    display: none;
}

.cmts-not-allow {
    background: rgba(0, 0, 0, .1);
    padding: 1.5rem;
    border-radius: .75rem;
    display: flex;
    font-size: .875rem;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-weight: 500;
}

.cmts-not-allow i {
    opacity: .5;
    font-size: 18px;
}

.cmts-no-available {
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cmts-no-available i {
    opacity: .75;
}

.cmts-pagination {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    font-weight: 500;
    margin-top: 1.5rem;
}

.cmts-pagination span,
.cmts-pagination a {
    min-width: 32px;
    height: 32px;
    border-radius: .5rem;
    display: grid;
    place-content: center;
    background: var(--light-color);
    transition: all .3s ease-in-out;
}

.cmts-pagination span.current,
.cmts-pagination a.current {
    opacity: .5;
    pointer-events: none;
}

.cmts-pagination span.next,
.cmts-pagination span.prev,
.cmts-pagination a.next,
.cmts-pagination a.prev {
    padding: 0 1rem;
}

.cmts-pagination span:hover,
.cmts-pagination a:hover {
    background: var(--primary-color);
    color: #fff;
}

.cmts .display-cmts-mobile {
    display: none;
    padding: 0 1rem;
    height: 48px;
    border-radius: .75rem;
    font-size: .875rem;
    font-weight: 500;
    background: var(--wrapper-color);
    color: var(--text-color);
    width: 100%;
    margin-top: 1rem;
}

@media screen and (max-width: 1023px) {
    .cmts .display-cmts-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        transition: all .3s ease-in-out;
    }

    .cmts .display-cmts-mobile:hover {
        background: var(--light-color);
    }

    .cmts .comments-list {
        display: none;
    }

    .cmts .comments-list~.cmts-pagination {
        display: none;
    }

    .cmts .comments-list.has-shown {
        display: flex;
    }

    .cmts .comments-list.has-shown~.cmts-pagination {
        display: flex;
    }
}

.error {
    color: var(--text-color);
    padding: 3rem 0;
}

.error h2 {
    font-size: 3.375rem;
    text-align: center;
    font-weight: 800;
    line-height: 1;
}

.error p {
    text-align: center;
    font-size: 1.25rem;
    opacity: .5;
    font-weight: 500;
}

.error__action {
    padding-top: 1rem;
    text-align: center;
}

.error__action a {
    display: inline-flex;
    font-weight: 500;
}

body.error404 .footer {
    border-radius: 0;
}

.crvs-lightbox {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(3px);
    z-index: 9998;
    padding: 2rem;
    display: grid;
    place-content: center;
    opacity: 0;
    animation: fadeIn .3s forwards;
}

.crvs-lightbox__close {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 24px;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    z-index: 9999;
    cursor: pointer;
    transform-origin: center center;
    transition: all .25s;
}

.crvs-lightbox__close:hover {
    scale: 1.1;
}

.crvs-lightbox__wrapper {
    width: 100%;
    max-width: 1024px;
    opacity: 0;
    animation: fadeInTop .3s ease-out forwards;
    animation-delay: .2s;
}

.crvs-lightbox__wrapper img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: .75rem;
    display: block;
}

.post {
    color: rgba(var(--text-color-rgb), .85);
}

.post__header {
    margin-bottom: 1.5rem;
}

.post__body a {
    font-weight: 700;
    color: var(--primary-color);
}

.post__body a:hover {
    text-decoration: underline;
}

.post__body img {
    width: auto;
    max-width: 100%;
    border-radius: .5rem;
}

.post__body h2,
.post__body h3,
.post__body h4,
.post__body h5,
.post__body h6 {
    line-height: 1.35;
    text-wrap: pretty;
    color: var(--text-color);
}

.post__body h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

@media screen and (min-width: 1024px) {
    .post__body h2 {
        font-size: 2rem;
    }
}

.post__body h3 {
    font-size: 1.25rem;
    padding-left: 1rem;
    border-left: 4px solid var(--light-color);
    margin-bottom: 1.5rem;
}

@media screen and (min-width: 1024px) {
    .post__body h3 {
        font-size: 1.5rem;
    }
}

.post__body h4,
.post__body h5,
.post__body h6 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.post__body p {
    line-height: 1.6;
    font-weight: 500;
}

.post__body p+p,
.post__body p:first-of-type {
    margin-bottom: 1rem;
}

.post__body p+h2,
.post__body p+h3,
.post__body p+h4,
.post__body p+h5,
.post__body p+h6 {
    margin-top: 3rem;
}

.post__body ul,
.post__body ol {
    padding: 1rem;
    margin: 0 1rem;
}

.post__body ul li,
.post__body ol li {
    padding: 0 .5rem;
}

.post__body ul li:not(:last-child),
.post__body ol li:not(:last-child) {
    margin-bottom: .5rem;
}

.post__body ol li {
    list-style: decimal;
}

.post__body ul li {
    list-style: disc;
}

.post__body blockquote {
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 400;
    background-color: var(--light-color-100);
    border-radius: .25rem;
    margin: 1.5rem 0;
    position: relative;
}

.post__body mark {
    background-color: var(--primary-color);
    color: #fff;
}

.post__body pre {
    white-space: normal;
    background: var(--light-color);
    padding: 16px;
    margin: 32px 0;
    display: block;
    overflow: auto;
}

.post__labels {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.post__labels a {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1;
}

.post__labels a:not(:last-child) {
    margin-right: 1rem;
}

.post__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-color);
    margin-top: 1.5rem;
}

.post__meta svg {
    width: 1.25rem;
    height: 1.25rem;
}

.post__meta span,
.post__meta time {
    font-size: .875rem;
    line-height: 1px;
    display: flex;
    align-items: center;
    font-weight: 500;
    gap: 1rem;
}

.post__title {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
    text-wrap: pretty;
    color: var(--text-color);
}

@media screen and (min-width: 1024px) {
    .post__title {
        font-size: 2.625rem;
    }
}

.post__footer {
    margin-top: 2rem;
}

.post-content a {
    font-weight: 700;
    color: var(--primary-color);
}

.post-content a:hover {
    text-decoration: underline;
}

.post-content img {
    width: auto;
    max-width: 100%;
    border-radius: .5rem;
}

.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    line-height: 1.35;
    text-wrap: pretty;
    color: var(--text-color);
}

.post-content h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

@media screen and (min-width: 1024px) {
    .post-content h2 {
        font-size: 2rem;
    }
}

.post-content h3 {
    font-size: 1.25rem;
    padding-left: 1rem;
    border-left: 4px solid var(--light-color);
    margin-bottom: 1.5rem;
}

@media screen and (min-width: 1024px) {
    .post-content h3 {
        font-size: 1.5rem;
    }
}

.post-content h4,
.post-content h5,
.post-content h6 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.post-content p {
    line-height: 1.6;
    font-weight: 500;
}

.post-content p+p,
.post-content p:first-of-type {
    margin-bottom: 1rem;
}

.post-content p+h2,
.post-content p+h3,
.post-content p+h4,
.post-content p+h5,
.post-content p+h6 {
    margin-top: 3rem;
}

.post-content ul,
.post-content ol {
    padding: 1rem;
    margin: 0 1rem;
}

.post-content ul li,
.post-content ol li {
    padding: 0 .5rem;
}

.post-content ul li:not(:last-child),
.post-content ol li:not(:last-child) {
    margin-bottom: .5rem;
}

.post-content ol li {
    list-style: decimal;
}

.post-content ul li {
    list-style: disc;
}

.post-content blockquote {
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 400;
    background-color: var(--light-color-100);
    border-radius: .25rem;
    margin: 1.5rem 0;
    position: relative;
}

.post-content mark {
    background-color: var(--primary-color);
    color: #fff;
}

.post-content pre {
    white-space: normal;
    background: var(--light-color);
    padding: 16px;
    margin: 32px 0;
    display: block;
    overflow: auto;
}

.ipst {
    position: relative;
    user-select: none;
}

.ipst a {
    display: block;
}

.ipst .btn {
    pointer-events: auto;
    gap: 8px;
}

.ipst .btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.ipst__image {
    background-color: var(--wrapper-color);
    overflow: hidden;
    border-radius: 1rem;
    position: relative;
    margin: 0;
    padding: 0;
    transition: all 300ms ease-in-out;
}

.ipst__image img {
    width: 100%;
    display: block;
    aspect-ratio: 6/9;
    transition: all 300ms ease-in-out;
    object-fit: cover;
}

.ipst__backdrop {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.ipst__backdrop span {
    opacity: 0;
    transform: translateY(8px);
    display: flex;
    transition: all 300ms ease-in-out;
}

.ipst__backdrop .btn {
    pointer-events: none;
}

.ipst__body {
    padding: 1rem;
}

.ipst__title {
    font-size: .875rem;
    font-weight: 700;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media screen and (min-width: 768px) {
    .ipst__title {
        font-size: 18px;
    }
}

.ipst:hover .ipst__image {
    box-shadow: 0 12px 12px rgba(0, 0, 0, .2);
}

.ipst:hover .ipst__image img {
    scale: 1.05;
    opacity: .2;
    filter: blur(1px);
}

.ipst:hover .ipst__caption {
    opacity: 1;
    transform: translateY(0);
}

.ipst:hover .ipst__backdrop span {
    opacity: 1;
    transform: translateY(0);
}

.ipst:hover .ipst__backdrop span:first-child {
    transition-delay: .1s;
}

.ipst:hover .ipst__backdrop span:last-child {
    transition-delay: .2s;
}

.ipst.type-overlap .ipst__image {
    box-shadow: 0 0 0;
}

.ipst.type-overlap .ipst__title {
    margin-bottom: .5rem;
    transform: translateY(24px);
    transition: all 300ms ease-in-out;
    opacity: 0;
    transition-delay: 100ms;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ipst.type-overlap .ipst__body {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 300ms ease-in-out;
    pointer-events: none;
    background-color: rgba(0, 0, 0, .3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    backdrop-filter: blur(1px);
}

.ipst.type-overlap .ipst__action {
    width: 100%;
    pointer-events: none;
    transform: translateY(12px);
    transition: all 300ms ease-in-out;
    transition-delay: .2s;
    opacity: 0;
}

.ipst.type-overlap .avg-score {
    opacity: 0;
    transform: translateY(24px);
    margin-bottom: .5rem;
    font-size: .75rem;
    transition: all 300ms ease-in-out;
}

.ipst.type-overlap:hover .ipst__title,
.ipst.type-overlap:hover .avg-score {
    transform: translateY(0);
    opacity: 1;
}

.ipst.type-overlap:hover .ipst__body {
    opacity: 1;
}

.ipst.type-overlap:hover .ipst__action {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.card-jumbo {
    --max-height: 420px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    user-select: none;
}

.card-jumbo__wrapper {
    background: linear-gradient(-90deg, transparent, rgba(var(--body-color-rgb), .8));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 32px;
    display: flex;
    align-items: center;
    z-index: 3;
}

.card-jumbo__body {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media screen and (min-width: 1024px) {
    .card-jumbo__body {
        width: 50%;
    }
}

.card-jumbo__views {
    background: rgba(0, 0, 0, .3);
    display: inline-flex;
    margin-bottom: 12px;
}

.card-jumbo__title {
    font-size: 24px;
    line-height: 1.5;
}

@media screen and (min-width: 1024px) {
    .card-jumbo__title {
        font-size: 32px;
    }
}

.card-jumbo__overview {
    font-size: 16px;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

@media screen and (min-width: 1024px) {
    .card-jumbo__overview {
        font-size: 20px;
    }
}

.card-jumbo__backdrop {
    position: relative;
    height: var(--max-height);
    display: block;
    margin: 0;
    padding: 0;
}

.card-jumbo__backdrop img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}

.card-jumbo__action {
    justify-content: flex-start;
}

.opts {
    background: var(--wrapper-color);
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    overflow: hidden;
    border-radius: .5rem;
}

.opts-item__action {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    font-weight: 500;
    font-size: .875rem;
    cursor: pointer;
    user-select: none;
    transition: all 300ms ease-in-out;
    position: relative;
}

.opts-item__action>span {
    position: absolute;
    right: 1rem;
    height: 100%;
    width: 42px;
    display: grid;
    place-content: center;
    pointer-events: none;
    --i-size: 18px;
}

.opts-item__action>span svg {
    transition: all 300ms ease-in-out;
}

.opts-item__action:hover {
    background: rgba(0, 0, 0, .1);
}

.opts-item__action img {
    width: 16px;
    height: auto;
    border-radius: .25rem;
    display: block;
    pointer-events: none;
}

.opts-item__action.is-active {
    background: var(--wrapper-color);
}

.opts-item__action.is-active svg {
    transform: rotateX(180deg);
}

.opts-item__body {
    background: rgba(0, 0, 0, .1);
    flex-direction: column;
    display: none;
}

.opts-item__body.is-visible {
    display: flex;
}

.opts-item__link {
    width: 100%;
    line-height: 48px;
    height: 48px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    font-weight: 500;
    gap: .5rem;
    text-align: left;
    font-size: .875rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0);
    color: var(--text-color);
    transition: all 300ms ease-in-out;
}

.opts-item__link span {
    font-size: .75rem;
    text-transform: uppercase;
    background: var(--light-color);
    font-weight: 500;
    line-height: 24px;
    height: 24px;
    padding: 0 .5rem;
    border-radius: .25rem;
    pointer-events: none;
}

.opts-item__link:hover {
    background: rgba(255, 255, 255, .05);
}

.player {
    background: var(--wrapper-color);
    overflow: hidden;
    border-radius: .75rem;
    width: 100%;
    position: relative;
    aspect-ratio: 16/9;
}

.player iframe,
.player video {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
}

body.wrapper-overlay.turnoff-light .player {
    z-index: 100 !important;
}

.fke-player {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 16/9;
    border-radius: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
}

body.wrapper-overlay.turnoff-light .fke-player {
    position: relative;
    z-index: 10;
}

.fke-player:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .3;
    content: "";
    z-index: 1;
}

.fke-player:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, #000);
    content: "";
    opacity: .5;
    z-index: 2;
}

.fke-player__play {
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    display: grid;
    place-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(var(--primary-color-rgb), .3);
    z-index: 4;
    transition: all 300ms ease-in-out;
}

.fke-player__play svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.fke-player__play i {
    position: relative;
    left: 1px;
    font-size: 20px;
}

.fke-player:hover .fke-player__play {
    scale: 1.15;
}

.player-list>span {
    display: block;
    font-size: .875rem;
    opacity: .75;
    font-weight: 500;
    margin-bottom: .5rem;
}

.player-list .loader {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    font-size: .875rem;
    font-weight: 500;
}

.player-list .no-videos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    padding: 1.5rem;
    border-radius: .75rem;
    font-size: .875rem;
    background: var(--wrapper-color);
    margin-top: 1rem;
    pointer-events: none;
    text-align: center;
}

.player-list .no-videos i {
    opacity: .5;
}

.player .plyr {
    --plyr-color-main: var(--primary-color);
}

.player.video-js {
    height: auto;
}

body.single-episodes .cont:not(#cont-expand)>.main {
    width: 100% !important;
}

@media screen and (max-width: 1023px) {
    .cont.cont--episode {
        display: flex;
        flex-direction: column;
    }

    .cont.cont--episode .main {
        order: 1;
    }

    .cont.cont--episode .aside {
        order: 2;
    }

    .cont.cont--episode #comments {
        order: 3;
    }
}

@media screen and (min-width: 1024px) {
    .cont.cont--episode {
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-auto-rows: auto;
        align-items: flex-start;
        column-gap: var(--container-gutter);
    }

    .cont.cont--episode .main {
        width: auto;
        grid-row: 1/2;
        grid-column: 1/9;
    }

    .cont.cont--episode #comments {
        grid-row: 2/3;
        grid-column: 1/9;
    }

    .cont.cont--episode .aside {
        width: 100%;
        position: sticky;
        top: 16px;
        transition: top .3s;
        grid-row: 1/3;
        grid-column: 9/13;
    }
}

@media screen and (max-width: 1023px) {
    .cont.cont--episode .aside {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .cont.cont--episode .aside .summary-ep {
        order: 2;
    }

    .cont.cont--episode .aside .player-list {
        order: 1;
    }

    .cont.cont--episode .aside .navigation-ep {
        order: 3;
    }
}

.hder-ep {
    margin-bottom: 2rem;
    display: flex;
    gap: .5rem;
    flex-direction: column-reverse;
}

.hder-ep__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hder-ep__meta span {
    font-size: .875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hder-ep__meta .episode-number {
    background: var(--primary-color);
    line-height: 1.75rem;
    height: 1.75rem;
    padding: 0 1rem;
    border-radius: 99999px;
}

.hder-ep__meta .runtime {
    padding-left: 0;
    opacity: .5;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.hder-ep__meta .runtime i {
    font-size: 14px;
}

.summary-ep {
    background: var(--wrapper-color);
    padding: 1.5rem;
    border-radius: .5rem;
    margin-bottom: 1rem;
}

.summary-ep h2 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.summary-ep h2 i {
    opacity: .5;
}

.summary-ep p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: .875rem;
    font-weight: 500;
    color: rgba(var(--text-color-rgb), .5);
    position: relative;
    text-align: left;
    z-index: 1;
}

.summary-ep p.is-full {
    height: 64px;
    overflow-y: auto;
    color: rgba(var(--text-color-rgb), .75);
}

.summary-ep .synopsis {
    position: relative;
}

.summary-ep .synopsis>div {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: right;
    background: linear-gradient(90deg, transparent, var(--wrapper-color) 40%);
    padding-left: 4rem;
    z-index: 5;
}

.summary-ep .synopsis>div span {
    display: inline-flex;
    position: relative;
    color: #fff;
    padding-top: 0;
    font-weight: 700;
    font-size: .875rem;
    text-transform: lowercase;
    user-select: none;
    cursor: pointer;
}

.summary-ep:has(.is-full) .synopsis>div {
    position: relative;
}

.navigation-ep {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: 1rem;
    border-top: 1px solid var(--light-color);
    padding-top: 1rem;
}

.navigation-ep a {
    display: flex;
    align-items: center;
    padding: 1rem;
    font-size: .875rem;
    font-weight: 500;
    background: var(--wrapper-color);
    border-radius: .75rem;
    transition: all 300ms ease-in-out;
}

.navigation-ep a:hover {
    background: var(--light-color);
}

.navigation-ep__next>span {
    display: block;
    font-size: .875rem;
    opacity: .75;
    font-weight: 500;
    margin-bottom: .5rem;
}

.navigation-ep__next-image {
    width: 92px;
}

.navigation-ep__next-image img {
    width: 100%;
    display: block;
    aspect-ratio: 16/11;
    object-fit: cover;
    border-radius: .5rem;
}

.navigation-ep__next-meta {
    font-size: .875rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.navigation-ep__next-meta span {
    font-weight: 500;
}

.navigation-ep__next-meta span:last-of-type {
    opacity: .5;
}

.navigation-ep__next-body {
    width: calc(100% - 92px);
    padding: 0 1rem;
}

.navigation-ep__next-body h4 {
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 600;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.navigation-ep__prev a,
.navigation-ep__home a {
    gap: 16px;
    justify-content: space-between;
}

.navigation-ep__prev a i,
.navigation-ep__home a i {
    opacity: .5;
}

.gallery-episode {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .5rem;
}

.gallery-episode img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: all .25s;
}

.gallery-episode__item {
    position: relative;
    overflow: hidden;
    border-radius: .25rem;
    cursor: pointer;
}

.gallery-episode__item i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.5);
    transition: all .25s;
    z-index: 4;
    opacity: 0;
    pointer-events: none;
}

.gallery-episode__item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(1px);
    z-index: 2;
    opacity: 0;
    transition: all .25s;
}

.gallery-episode__item:hover i {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-episode__item:hover img {
    scale: 1.1;
}

.gallery-episode__item:hover:before {
    opacity: 1;
}

.action-player-ep,
.player-action {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 1rem;
}

.action-player-ep button,
.player-action button {
    transition: all .3s ease-in-out;
}

.action-player-ep .cta,
.player-action .cta {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-left: -8px;
    position: relative;
    z-index: 5;
}

.action-player-ep .cta button,
.player-action .cta button {
    background: rgba(0, 0, 0, 0);
    font-size: .875rem;
    color: var(--text-color);
    display: flex;
    padding: 0 8px;
    line-height: 32px;
    height: 32px;
    border-radius: .5rem;
    font-weight: 500;
    align-items: center;
    gap: .75rem;
    cursor: pointer;
}

@media screen and (max-width: 639px) {

    .action-player-ep .cta button#expand-player,
    .player-action .cta button#expand-player {
        display: none;
    }
}

.action-player-ep .cta button:hover,
.player-action .cta button:hover {
    background: var(--wrapper-color);
}

.action-player-ep .cta button i,
.player-action .cta button i {
    opacity: .5;
}

.action-player-ep .group,
.player-action .group {
    display: flex;
    align-items: center;
    gap: .5rem;
    position: relative;
    z-index: 5;
}

.action-player-ep #open-download-list,
.action-player-ep [data-youtube-id],
.player-action #open-download-list,
.player-action [data-youtube-id] {
    background: var(--wrapper-color);
    color: var(--text-color);
    border-radius: .5rem;
    display: flex;
    cursor: pointer;
    font-size: .875rem;
    align-items: center;
    gap: .75rem;
    padding: 0 1rem;
    font-weight: 500;
    height: 42px;
    line-height: 42px;
}

.action-player-ep #open-download-list i,
.action-player-ep [data-youtube-id] i,
.player-action #open-download-list i,
.player-action [data-youtube-id] i {
    font-size: .875rem;
}

.action-player-ep #open-download-list:hover,
.action-player-ep [data-youtube-id]:hover,
.player-action #open-download-list:hover,
.player-action [data-youtube-id]:hover {
    background: var(--primary-color);
    color: #fff;
}

.action-player-ep [data-youtube-id],
.player-action [data-youtube-id] {
    width: 42px;
    padding: 0;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
}

.action-player-ep [data-youtube-id] i,
.player-action [data-youtube-id] i {
    font-size: 1.125rem;
}

.tvshow-ep {
    --poster: 64px;
    background: var(--wrapper-color);
    margin-top: 2rem;
    border-radius: .5rem;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.tvshow-ep__poster {
    width: var(--poster);
    overflow: hidden;
    border-radius: .5rem;
    display: block;
}

.tvshow-ep__poster img {
    width: 100%;
    display: block;
}

.tvshow-ep__overview {
    width: calc(100% - var(--poster));
    padding: 0 16px;
}

.tvshow-ep__overview:before {
    content: attr(data-text);
    display: block;
    font-size: .75rem;
    font-weight: 500;
    opacity: .5;
    margin-bottom: .25rem;
    text-transform: uppercase;
}

.tvshow-ep__overview p {
    font-size: .875rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media screen and (max-width: 1023px) {
    .tvshow-ep {
        display: none;
    }
}

.ppitem {
    background: var(--wrapper-color);
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    transition: all 300ms ease-in-out;
}

.ppitem__image {
    width: 100%;
    position: relative;
    border-radius: 1rem 1rem 0 0;
    overflow: hidden;
}

.ppitem__image img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/13;
}

.ppitem__image:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, var(--wrapper-color));
    z-index: 1;
}

.ppitem__type {
    position: absolute;
    z-index: 3;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: #fff;
    line-height: 24px;
    height: 24px;
    padding: 0 1rem;
    border-radius: 99999px;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 500;
}

.ppitem__meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .5rem;
}

.ppitem__meta .views {
    font-size: .875rem;
    background: rgba(0, 0, 0, .2);
}

.ppitem__headline {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    padding: 1rem;
}

.ppitem__title {
    font-size: 1.125rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media screen and (max-width: 767px) {
    .ppitem__title {
        font-size: 1rem;
    }
}

.ppitem__overview {
    padding: 1rem;
}

.ppitem__overview p {
    font-size: .875rem;
    font-weight: 500;
    opacity: .75;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.ppitem__footer {
    display: flex;
    align-items: center;
    padding: 1rem;
    font-size: .875rem;
    font-weight: 500;
    padding-top: 0;
    gap: 1rem;
    position: relative;
}

.ppitem__footer span {
    --i-size: 14px;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.ppitem__footer span[data-text]:after {
    content: attr(data-text);
    display: block;
    font-size: .75rem;
    opacity: .7;
}

.ppitem__footer span i {
    font-size: .75rem;
    opacity: .5;
}

.ppitem__footer:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 48px;
    width: 42px;
    background: linear-gradient(to right, transparent, var(--wrapper-color) 70%);
    z-index: 3;
}

.ppitem__link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    z-index: 3;
    font-size: 0;
    opacity: 0;
    background: linear-gradient(transparent, var(--body-color) 95%);
    transition: all 300ms ease-in-out;
    backdrop-filter: blur(1px);
}

.ppitem__link span {
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    box-shadow: 0 6px 12px rgba(var(--primary-color-rgb), .8);
    color: #fff;
    display: grid;
    place-content: center;
    border-radius: 99999px;
    transform: translateY(16px);
    opacity: 0;
    transition: all 300ms ease-in-out;
    transition-delay: .2s;
    --i-size: 18px;
}

.ppitem__link span svg {
    fill: currentColor;
}

.ppitem:hover {
    transform: translateY(-8px);
}

.ppitem:hover .ppitem__link {
    opacity: 1;
}

.ppitem:hover .ppitem__link span {
    opacity: 1;
    transform: translateY(0);
}

.pp-listItem {
    --poster-width: 60px;
    display: flex;
    align-items: flex-start;
    position: relative;
    border-radius: .75rem;
    padding: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    transition: all 300ms ease-in-out;
}

@media screen and (max-width: 1023px) {
    .pp-listItem {
        border-radius: 0;
    }
}

.pp-listItem:not(:last-child) {
    margin-bottom: .5rem;
}

.pp-listItem__image {
    width: var(--poster-width);
    overflow: hidden;
    border-radius: .5rem;
}

.pp-listItem__image img {
    display: block;
}

.pp-listItem__meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .375rem;
}

.pp-listItem__meta .index {
    background: var(--primary-color);
    color: #fff;
    font-size: .875rem;
    text-transform: uppercase;
    padding: 0 .75rem;
    font-weight: 700;
    border-radius: 99999px;
    line-height: 20px;
    height: 20px;
}

.pp-listItem__meta .views {
    font-size: .875rem !important;
    line-height: 20px;
    height: 20px;
}

.pp-listItem__meta .views svg {
    width: 14px;
    height: 14px;
}

.pp-listItem__genres {
    display: flex;
    align-items: center;
    font-size: .875rem;
    gap: .5rem;
    font-weight: 500;
}

.pp-listItem__genres a {
    opacity: .5;
    position: relative;
    z-index: 10;
    transition: all 300ms ease-in-out;
}

.pp-listItem__genres a:hover {
    opacity: 1;
}

.pp-listItem__body {
    width: calc(100% - var(--poster-width));
    padding-left: 1rem;
    padding-top: .5rem;
}

.pp-listItem__title {
    font-size: 1rem;
    font-weight: 500;
}

.pp-listItem__link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.pp-listItem:hover {
    background: var(--wrapper-color);
}

.wgts-genres {
    background: var(--wrapper-color);
    padding: 1rem;
    border-radius: 1rem;
}

.wgts-genres ul li a {
    font-size: .875rem;
    font-weight: 500;
    display: block;
    border-radius: .5rem;
    padding: .75rem 1rem;
    line-height: 1;
    transition: all 300ms ease-in-out;
}

.wgts-genres ul li a:hover {
    background: var(--light-color);
}

.wgts-genres--cloud ul {
    display: flex;
    flex-wrap: wrap;
}

.wgts-genres--list ul {
    --xs-col: 1;
    --md-col: 2;
    --lg-col: 2;
    --gap: 8px;
    max-height: 400px;
    overflow-y: auto;
}

.wgts-genres--list ul li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 0;
    line-height: 1.3;
}

.wgts-genres--list ul li a:before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.wgts-genres--list ul li a:hover {
    padding-left: 1rem;
}

.wgts-genres--years ul {
    --xs-col: 3;
    --md-col: 3;
    --lg-col: 4;
    --gap: 8px;
}

.wgts-genres--years ul li a {
    text-align: center;
}