.card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.card--big {
    flex-direction: row;
    align-items: stretch;
    background-color: rgba(0, 0, 0, 0.125);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 16px;
}

.card--big .card__cover {
    width: 140px;
    border-radius: 16px 0 0 16px;
}

.card--big .card__rating {
    right: calc(100% - 130px);
}

.card--favorites .card__add {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.card--favorites .card__add svg {
    fill: #ffc312;
}

.card--favorites .card__add:hover svg {
    fill: #f9ab00;
}

.card__cover {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.card__cover img {
    width: 100%;
    position: relative;
    z-index: 1;
    transition: 0.5s;
    height: 280px;
    object-fit: cover;
}

.card__cover svg {
    position: absolute;
    display: block;
    stroke: #fff;
    width: 46px;
    height: auto;
    transition: 0.5s;
    z-index: 3;
    transform: scale(0.8);
    opacity: 0;
}

.card__cover:before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 75%, rgba(0, 0, 0, 0.9) 100%);
    opacity: 0.1;
    transition: 0.5s;
}

.card__add {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    transition: 0.5s;
    opacity: 0;
    pointer-events: none;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background-color: #151f30;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transform: scale(0.8);
}

.card__add svg {
    width: 16px;
    height: auto;
    fill: #f9ab00;
    transition: 0.5s;
}

.card__add:hover svg,
.card__add.active svg {
    fill: #ffc312;
}

.card__rating {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    transition: 0.5s;
    opacity: 0;
    pointer-events: none;
    height: 30px;
    width: auto;
    padding: 0 10px;
    transform: scale(0.8);
    border-radius: 10px;
    background-color: rgba(21, 31, 48, 0.75);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    cursor: default;
}

.card__rating svg {
    width: 16px;
    height: auto;
    fill: #f9ab00;
    transition: fill 0.5s;
    margin-right: 5px;
}

.card__title {
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 5px;
    transition: 0.5s;
    display: block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

.card__title a {
    color: #fff;
}

.card__list {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.card__list li {
    font-size: 12px;
    color: #e0e0e0;
    margin-right: 15px;
    white-space: nowrap;
}

.card__list li:last-child {
    margin-right: 0;
}

.card__info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-top: 10px;
}

.card__info li {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 12px;
    color: #fff;
}

.card__info li a {
    color: #fff;
}

.card__info li a:hover {
    color: #f9ab00;
}

.card__info li span:first-child {
    margin-right: 5px;
    color: #e0e0e0;
}

.card__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: calc(100% - 140px);
    padding: 5px 15px 15px 20px;
    position: relative;
    overflow: hidden;
}

.card__tagline {
    font-size: 14px;
    line-height: 21px;
    color: #e0e0e0;
    margin-bottom: 0;
    overflow: hidden;
    /* margin-top: auto; */
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card:hover .card__cover:before {
    opacity: 0.7;
}

.card:hover .card__cover img {
    transform: scale(1.06);
    filter: blur(4px);
    -webkit-filter: blur(4px);
}

.card:hover .card__cover svg {
    opacity: 1;
    transform: scale(1);
}

.card:hover .card__title {
    color: #f9ab00;
}

.card:hover .card__title a {
    color: #f9ab00;
}

.card:hover .card__add {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.card:hover .card__rating {
    opacity: 1;
    transform: scale(1);
}

@media (min-width: 576px) {
    .card--big .card__cover {
        width: 160px;
    }

    .card--big .card__rating {
        right: calc(100% - 150px);
    }

    .card__content {
        width: calc(100% - 160px);
    }
}

@media (min-width: 768px) {
    .card {
        margin-top: 30px;
    }

    .card--big .card__rating {
        right: calc(100% - 140px);
    }

    .card__title {
        margin-top: 15px;
        font-size: 17px;
    }

    .card__cover svg {
        width: 56px;
    }

    .card__add {
        top: 15px;
        left: 15px;
    }

    .card__add svg {
        width: 18px;
    }

    .card__rating {
        top: 15px;
        right: 15px;
        font-size: 14px;
    }

    .card__rating svg {
        width: 18px;
        margin-bottom: 1px;
    }

    .card__content {
        padding: 0 15px 15px 20px;
    }
}

@media (min-width: 1200px) {
    .card--big .card__title {
        white-space: normal;
        font-size: 18px;
    }

    .card__title--subs {
        text-align: center;
    }

    .card__list--subs {
        justify-content: center;
    }

    .card__list--subs li {
        text-align: center;
    }

    .card__content {
        padding: 0 20px 20px;
    }
}

@media (min-width: 1440px) {
    .card--big .card__title {
        margin-top: 17px;
    }

    .card--big .card__cover {
        width: 190px;
    }

    .card--big .card__rating {
        right: calc(100% - 170px);
    }

    .card__content {
        width: calc(100% - 190px);
        padding: 0 20px 20px;
    }
}

.catalog {
    position: relative;
    padding: 40px 0 60px;
    overflow: hidden;
}

.catalog:after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 500px;
    left: 0;
    right: 0;
    display: block;
    z-index: 1;
    background: linear-gradient(0deg, rgba(21, 31, 48, 0.35) 0%, #131720 100%);
}

.catalog .container {
    z-index: 2;
    position: relative;
}

.catalog__nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: #151f30;
    padding: 10px 20px 20px;
    border-radius: 16px;
    width: 100%;
}

.catalog__select-wrap {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.catalog__more {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 40px auto 0;
    width: 160px;
    height: 50px;
    border-radius: 16px;
    background-color: #151f30;
    font-size: 14px;
    color: #e0e0e0;
    text-transform: uppercase;
    font-weight: 500;
}

.catalog__more:hover {
    color: #fff;
    background-color: #f9ab00;
}

.catalog__paginator-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 40px auto 0;
    width: 100%;
    height: 50px;
    border-radius: 16px;
    background-color: #151f30;
}

.catalog__paginator-wrap--comments {
    margin: 30px auto;
}

.catalog__pages {
    display: none;
}

.catalog__paginator {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.catalog__paginator li {
    margin-right: 15px;
}

.catalog__paginator li:last-child {
    margin-right: 0;
}

.catalog__paginator li.active a {
    color: #f9ab00;
    cursor: default;
}

.catalog__paginator a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 12px;
    background-color: #131720;
    font-size: 14px;
    color: #e0e0e0;
    font-weight: 500;
}

.catalog__paginator a svg {
    stroke: #e0e0e0;
    transition: 0.5s;
}

.catalog__paginator a:hover {
    color: #f9ab00;
}

.catalog__paginator a:hover svg {
    stroke: #f9ab00;
}

.catalog--list:after {
    display: none;
}

.catalog--page {
    padding-top: 90px;
}

@media (min-width: 768px) {
    .catalog {
        padding: 60px 0 80px;
    }

    .catalog--page {
        padding-top: 90px;
    }

    .catalog__nav {
        padding: 20px 30px;
        flex-direction: row;
    }

    .catalog__more {
        margin: 60px auto 0;
        width: 180px;
        height: 60px;
    }

    .catalog__paginator-wrap {
        padding: 0 30px;
        margin: 60px auto 0;
        height: 60px;
        justify-content: space-between;
    }

    .catalog__paginator-wrap--comments {
        margin: 30px auto;
        padding: 0 20px;
    }

    .catalog__pages {
        display: block;
        font-size: 14px;
        color: #e0e0e0;
        font-weight: 500;
    }
}

@media (min-width: 1200px) {
    .catalog {
        overflow: visible;
    }

    .catalog__nav {
        position: -webkit-sticky;
        position: sticky;
        top: -1px;
        z-index: 99;
        background-color: #131720;
        border-radius: 0 0 16px 16px;
    }

    .catalog__nav:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 16px;
        background-color: #151f30;
        z-index: 1;
        pointer-events: none;
    }

    .catalog__nav--relative {
        position: relative;
        top: auto;
    }
}

.row--grid {
    margin-right: -10px;
    margin-left: -10px;
}

.row--grid .col-6,
.row--grid .col-12 {
    padding-left: 10px;
    padding-right: 10px;
}

@media (min-width: 768px) {
    .row--grid {
        margin-right: -15px;
        margin-left: -15px;
    }

    .row--grid .col-6,
    .row--grid .col-12 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.dropdown .uk-accordion{
    padding-top: 40px;
}

.episode-name, .auto-checkbox span {
    color: #fff;
}

.category a{
    color: #ffffff;
    font-size: 20px;
}

.category a:hover{
    color: #ffc312;
}

.item__content h2{
    color: #ffffff;
    text-transform: uppercase;
}

.ep{
    padding-top: 20px;
}

.ep span{
    color: #ffffff;
    font-size: 20px;
}

.ep a{
    color: #ffffff;
    font-size: 20px;
}

.year{
    padding-top: 20px;
}



.year span{
    color: #ffffff;
    font-size: 20px;
}

.year a{
    color: #ffffff;
    font-size: 20px;
}


.similar-movie{
    margin-bottom: 10px;
    border: 5px solid #fff;
}

.similar-movie a img{
    width: 100%;
    height: 179px;
    object-fit: cover;
}

@media (max-width: 1000px) {
    .similar-movie a img{
        height: 250px;
    }
}

.similar h2{
    color: #ffffff;
    font-size: 21px;
}


.item__cover-view {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    /* border-radius: 8px; */
    overflow: hidden;
    background-color: #000;
}

@media (min-width: 768px) {
    .item--details .item__cover-view {
        max-width: 100%;
    }
}

.item__cover-view img {
    width: 100%;
    height: auto;
    transition: opacity 0.4s;
    object-fit: cover;
}


.banner{
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.slider-wrapper {
    padding: 484px 205px 242px 205px;
    position: relative;
    /* border-radius: 10px 0 0 10px; */
    z-index: 100;
    min-height: 900px;
    display: flex;
    flex-direction: column;
}

.slider-wrapper h2 {
    font-size: 49px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
}


.swiper.bannerSwiper .swiper-button-next,.swiper.bannerSwiper .swiper-button-prev {
    color: #f9ab00!important;
    font-size: 45px;
    font-weight: 800;
    padding: 20px;
}

.swiper.bannerSwiper .swiper-button-next:after,.swiper.bannerSwiper .swiper-button-prev:after{
    color: #f9ab00!important;
    font-size: 35px;
    font-weight: 600;
}

.swiper.bannerSwiper  .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: #f9ab00;
    width: 15px;
    height: 15px;
}

.swiper.bannerSwiper  .swiper-pagination-bullet{
    background-color: #f9ab00;
    width: 15px;
    height: 15px;
}


.swiper.bannerMobileSwiper .swiper-button-next,.swiper.bannerMobileSwiper .swiper-button-prev {
    color: #f9ab00!important;
    font-size: 45px;
    font-weight: 800;
    padding: 20px;
}

.swiper.bannerMobileSwiper .swiper-button-next:after,.swiper.bannerMobileSwiper .swiper-button-prev:after{
    color: #f9ab00!important;
    font-size: 35px;
    font-weight: 600;
}

.swiper.bannerMobileSwiper  .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: #f9ab00;
    width: 15px;
    height: 15px;
}

.swiper.bannerMobileSwiper  .swiper-pagination-bullet{
    background-color: #f9ab00;
    width: 15px;
    height: 15px;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    background: linear-gradient(92deg, #222222 4.38%, rgba(0, 0, 0, 0) 31.14%);
    z-index: 1;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    background: linear-gradient(273deg, #222222 4.38%, rgba(0, 0, 0, 0) 31.14%);
    z-index: 1;
}


@media (max-width: 1000px) {
    .slider-wrapper {
        padding: 303px 60px 15px 60px;
        position: relative;
        z-index: 100;
        min-height: 600px;
        display: flex;
        justify-content: end;
        flex-direction: column;
    }
    .slider-wrapper h2 {
        font-size: 23px;
        margin-bottom: 0px;
        color: #ffffff;
    }
    .item__cover img {
        width: 100%;
        height: 200px;
        transition: opacity 0.4s;
        object-fit: cover;
        border: 4px solid #ffffff;
    }
    .mobile-category__wrapper{
        width: 100% !important;
        margin-bottom: 15px;
        flex: none;
    }
    .swiper.itemSwiper {
        padding: 0 0 0px;
    }
    .item__description{
        max-height: 100%;
    }
}


.swiper.itemSwiper{
    padding: 0 29px 4px;
}


.swiper.itemSwiper .swiper-button-next{
    position: absolute;
    top: 55%;
    right: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.swiper.itemSwiper .swiper-button-prev{
    position: absolute;
    top: 55%;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}


.swiper.itemSwiper .swiper-button-next:hover{
    background-color: hsla(0, 0%, 100%, .2);
}

.swiper.itemSwiper .swiper-button-prev:hover{
    background-color: hsla(0, 0%, 100%, .2);
}

.swiper.itemSwiper .swiper-button-prev{
    position: absolute;
    top: 55%;
    left: 0;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.swiper.itemSwiper .swiper-button-next:after,.swiper.itemSwiper .swiper-button-prev:after{
    color: #f9ab00 !important;
    font-size: 17px;
    font-weight: 600;
}


.swiper.itemSwiper  .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: #f9ab00;
    width: 8px;
    height: 8px;
}

.swiper.itemSwiper  .swiper-pagination-bullet{
    background-color: #f9ab00;
    width: 8px;
    height: 8px;
}


.swiper.mangaSwiper{
    padding: 0 29px 4px;
}


.swiper.mangaSwiper .swiper-button-next{
    position: absolute;
    top: 55%;
    right: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.swiper.mangaSwiper .swiper-button-prev{
    position: absolute;
    top: 55%;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}


.swiper.mangaSwiper .swiper-button-next:hover{
    background-color: hsla(0, 0%, 100%, .2);
}

.swiper.mangaSwiper .swiper-button-prev:hover{
    background-color: hsla(0, 0%, 100%, .2);
}

.swiper.mangaSwiper .swiper-button-prev{
    position: absolute;
    top: 55%;
    left: 0;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.swiper.mangaSwiper .swiper-button-next:after,.swiper.mangaSwiper .swiper-button-prev:after{
    color: #f9ab00 !important;
    font-size: 17px;
    font-weight: 600;
}


.swiper.mangaSwiper  .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: #f9ab00;
    width: 8px;
    height: 8px;
}

.swiper.mangaSwiper  .swiper-pagination-bullet{
    background-color: #f9ab00;
    width: 8px;
    height: 8px;
}

.page-header.is-sticky {
    position: fixed;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    /* padding: 8px 0; */
    backdrop-filter: blur(10px);
    animation: slideDown 0.35s ease-out;
    background-color: #000;
}

.page-header.is-sticky img {
    max-width: 100%;
}

.page-header.is-sticky button {
    font-size: 14px;
    padding: 7px 10px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.pb-3{
    padding-top: 40px;
}

.pt-3{
    padding-bottom: 40px;
}

.scroll-top.open {
    bottom: 30px;
}


.scroll-top {
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: fixed;
    bottom: -10%;
    right: 50px;
    font-size: 19px;
    border-radius: 6px;
    z-index: 99;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    background: #f9ab00;
    transition: 1s ease;
    border: none;
}


@media (max-width: 991.98px) {
    .scroll-top {
        width: 35px;
        height: 35px;
        line-height: 35px;
        right: 20px;
        font-size: 15px;
    }
}

/*.scroll-top:hover {*/
/*    background: ;*/
/*}*/

.scroll-top::after {
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.item.item--carousel:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}


.pb-60{
    padding-bottom: 60px;
}

.title-flex-container {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    padding-right: 19px;
}


.play-video__list {
    display: grid;
    grid-column-gap: 10px;
    -webkit-column-gap: 10px;
    column-gap: 10px;
    grid-row-gap: 15px;
    row-gap: 15px;
    grid-template-rows: 50px;
    grid-template-columns: repeat(auto-fit, 50px);
    margin-top: 15px;
    line-height: 50px;
    font-size: 18px;
    color: #ccc;
}

.play-video__item {
    height: 50px;
    text-align: center;
    font-size: 16px;
    line-height: 35px;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.play-video__item {
    position: relative;
    display: inline-block;
    padding: 10px 14px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    background: #333;
}

.play-video__item .play-video__link {
    transition: opacity 0.4s ease;
}

.play-video__item.active .play-video__link {
    opacity: 0;
}

.play-video__item::before {
    content: "";
    position: absolute;
    bottom: 15px;
    left: 50%;
    width: 2px;
    height: 12px;
    border-radius: 2px;
    background: linear-gradient(180deg, #ff6303, #ff8d03);
    box-shadow: -16px 0 #f9ab00, -12px 0 #f9ab00, -8px 0 #f9ab00, -4px 0 #f9ab00, 4px 0 #f9ab00, 8px 0 #f9ab00, 12px 0 #f9ab00, 16px 0 #f9ab00;
    filter: drop-shadow(0 0 4px #ff8100) drop-shadow(0 0 8px #ff8100);
    opacity: 0;
    transform: translateX(-50%) scaleY(0.4);
    transform-origin: bottom center;
    animation: none;
    transition: opacity 0.3s ease;
}

.play-video__item.active::before {
    opacity: 1;
    animation: grow-wave 1.4s infinite ease-in-out;
}

@keyframes grow-wave {
    0% {
        transform: translateX(-50%) scaleY(0.4);
        opacity: 0.7;
    }
    25% {
        transform: translateX(-50%) scaleY(1);
        opacity: 0.85;
    }
    50% {
        transform: translateX(-50%) scaleY(1.6);
        opacity: 1;
    }
    75% {
        transform: translateX(-50%) scaleY(1);
        opacity: 0.85;
    }
    100% {
        transform: translateX(-50%) scaleY(0.4);
        opacity: 0.7;
    }
}

.play-relevant__list {
    margin-top: 20px;
}

.play-relevant__item {
    position: relative;
    margin: 20px auto;
    height: 80px;
    display: flex
;
    flex-direction: row;
    justify-content: flex-start;
}


.play-relevant__item--selected {
    background-color: hsla(0, 0%, 100%, .1);
    border-radius: 4px;
    color: #f9ab00;
    overflow: hidden;
}

.play-relevant__item--selected:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #f9ab00;
    z-index: 1;
}

.play-relevant__poster {
    position: relative;
    width: 140px;
    border-radius: 4px;
    overflow: hidden;
}

.play-relevant__poster .poster__img {
    width: 100%;
    height: 100%;
}

.item__labels {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 4px;
    pointer-events: none;
}


.item__label, .item__labels {
    position: absolute;
    overflow: hidden;
}

.play-relevant__title{
    text-align: center;
    padding-left: 20px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-relevant__link{
    display: flex;
}

.module__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 -5px;
    position: relative;
    padding-top: 30px;
}

.module__title {
    margin: 0 5px 20px;
    line-height: 42px;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.play-reco__list .module__title {
    color: #fff;
    font-size: 24px;
}

.module__item {
    width: 100%;
    margin: 0 9px 40px;
}

.item__poster {
    position: relative;
    margin-bottom: 14px;
    width: 100%;
    height: 277px;
    background-color: #f6f6f6;
    border-radius: 6px;
}

.play-reco__list div.item__poster {
    background-color: #101010;
}

.item__poster img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    -webkit-filter: saturate(1.08) contrast(1.08);
    transition: box-shadow .15s linear, -webkit-filter .3s ease-out;
}

.item__title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 700;
    line-height: 22px;
}


.play-reco__list a.item__link--title {
    color: #fff;
}

.item__subinfo {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.item__subtitle {
    color: hsla(0, 0%, 100%, .6);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.play-reco__list p.item__subtitle {
    color: hsla(0, 0%, 100%, .6);
}

@media (max-width: 1000px) {
    #movie-web{
        display: block!important;
        padding-top: 40px;
    }
    .item.item--details .row .col-lg-6{
        order: 2;
    }
}

.ds-sign-in__title{
    color: #fff;
    font-size: 30px;
}


.uk-modal-dialog{
    background-color: #000000;
    color: #fff;
    border: 1px solid #f9ab00;
}

.uk-modal-footer {
    background: #000;
    border-top: 1px solid #f9ab00;
}

.uk-button-default {
    background-color: transparent;
    color: #fff;
    border: 1px solid #f9ab00;
}


.uk-button-primary {
    background-color: #f9ab00;
    color: #fff;
    border: 1px solid transparent;
}

.uk-button-primary:hover {
    background-color: #f1b42f;
    color: #fff;
}


.uk-button-default:hover {
    background-color: transparent;
    color: #f9ab00;
    border-color: #fff;
}


.manga-info {

}

.manga-info__name {
    font-size: 48px;
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
}

.manga-info__description {
    font-size: 16px;
    font-weight: 400;
    color: #999;
}

.manga-info__pills {
    margin: 10px 0;
}

.manga-info__pills .item {
    padding: 5px 10px;
    border: 1px solid #666;
    border-radius: 10px;
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
    color: #c4c4c4;
}

.manga-info__pills .item span {
    margin-right: 5px;
    color: #777;
    font-size: 12px;
}
.new-manga{
    margin-bottom: 20px;
    margin-top: 20px;
}
.new-manga h6{
    color: #fff;
    font-size: 20px;
}
.manga-image img{
    width: 70px;
    height: 80px;
    object-fit: cover;
}
.manga-new{
    display: flex;
    gap: 20px;
    background: #282828;
    padding: 10px;
}
.magna-wrapper h5{
    line-height: 1!important;
    margin-bottom: 0px;
}
.magna-wrapper h5 a{
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
}
.magna-wrapper span{
    color: #0e6dcd;
    font-size: 14px;
}
.create-mange span{
    color: #ababab;
    font-size: 12px;
}
.manga {display: flex;flex-flow: column;flex-wrap: wrap;border-radius: 4px;overflow: hidden;background-color: #282828;box-shadow: none;transition: box-shadow .3s ease;height: 100%;}
.manga:hover {box-shadow: 4px 4px 9px 0 #0000005e;}
.manga .image {position: relative;display: flex;padding-bottom: 103.70%;flex: 1 0 auto;max-height: 100%;width: 100%;height: 0;background-color: #282828;overflow: hidden;}
.manga .image div {padding-bottom: 100%;flex: 1 0 0;}
.manga .image img {z-index: 1;position: absolute;width: 100%;height: 100%;top: 50%;right: 50%;transform: translate(50%,-50%);object-fit: cover;}
.manga .context {flex: none;padding: 8px 16px;}
.manga .context .name {font-size: 20px;font-weight: 600;color: #f5f5f5;}
.manga .context .year {padding: 5px 0;font-size: 12px;font-weight: 400;color: #ababab;}
.manga .context .summary {font-size: 14px;font-weight: 400;color: #f5f5f5;}
.manga-chapters {margin: 40px 0;padding-bottom: 40px;}
.search-bar select.search-field, .search-bar input.search-field {background: #616161;border: 0;border-radius: 5px;padding-left: 15px;padding-right: 55px;color: #fff;height: 34px;width: 100%;}
.search-bar select.search-field {padding-right: 20px;background-image: url(data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23000%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23000%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A);background-repeat: no-repeat;background-position: 100% 50%;-webkit-appearance: none;-moz-appearance: none;text-indent: 1px;text-overflow: '';color: #cecece;}
.search-bar input.search-field::placeholder {color: #999}
.search-bar select.search-field::-ms-expand {display: none;}
.search-bar .search-button {background: var(--accent);border-radius: 3px;-webkit-border-radius: 3px;-moz-border-radius: 3px;display: block;font-weight: bold;color: #fff;font-size: 16px;padding: 7px 0;-webkit-transition: all 300ms ease;-moz-transition: all 300ms ease;transition: all 300ms ease;width: 100%;height: 40px;border-style: none;box-sizing: border-box;cursor: pointer;}
.search-bar .search-button:hover {--accent: #1a7ea9;background: var(--accent);}
.search-tag {border-radius: 500px;border-style: none;padding: 5px 10px;font-size: 13px;background-color: #2258d3;cursor: pointer;color: #fff;transition: background-color .4s ease;}
.search-tag:hover {background-color: rgba(34, 88, 211, 0.75);}
.search-tag:active {background-color: rgb(45, 107, 255);}
.multiselect {width: 200px;}  .selectBox {position: relative;}
.selectBox select {width: 100%;font-weight: bold;}
.overSelect {position: absolute;left: 0;right: 0;top: 0;bottom: 0;}
#checkboxes {display: none;border: 1px #dadada solid;}
#checkboxes label {display: block;}  #checkboxes label:hover {background-color: #1e90ff;}
.manga-chapters__item:not(:last-child) {border-bottom: 1px solid #303030;}
.manga-select {border: 1px solid #303030;border-radius: 10px;padding: 15px 10px;width: 100%;outline: none;}
.manga-container {display: flex;flex-wrap: wrap;flex-flow: column;align-items: center;margin: 0 auto;box-sizing: border-box;width: 720px;}
.chapter-image{box-sizing: border-box;width: 720px;height: 100%;}
.chapter-image img{width: 100%;height: 100%;user-select: none;pointer-events: none;}
.manga-configs-button {position: fixed;top: 50%;right: 25px;margin-right: 10px;transform: translate(50%, -50%);border-style: none;background-color: transparent;}
.manga-configs-button i {display: flex;align-items: center;justify-content: center;border-radius: 50%;width: 50px;height: 50px;background-color: #fff;font-size: 16px;transition: background-color .3s ease;}
.manga-configs-button i:hover {background-color: #bbb;}
.range-slider {position: relative;width: 100%;height: 50px;}
.range-slider_input {width: 100%;position: absolute;top: 50%;z-index: 3;transform: translateY(-50%);-webkit-appearance: none;appearance: none;width: 100%;height: 4px;opacity: 0;margin: 0;}
.range-slider_input::-webkit-slider-thumb {-webkit-appearance: none;appearance: none;width: 100px;height: 100px;cursor: pointer;border-radius: 50%;opacity: 0;}
.range-slider_input::-moz-range-thumb {width: 14vmin;height: 14vmin;cursor: pointer;border-radius: 50%;opacity: 0;}
.range-slider_thumb {width: 40px;height: 40px;border: 2px solid #303030;border-radius: 50%;position: absolute;left: 0;top: 50%;transform: translateY(-50%);background-color: #f4f4f4;display: flex;justify-content: center;align-items: center;font-weight: 700;font-size: 16px;color: #303030;z-index: 2;}
.range-slider_line {height: 0.5vmin;width: 100%;background-color: #e1e1e1;top: 50%;transform: translateY(-50%);left: 0;position: absolute;z-index: 1;}
.range-slider_line-fill {position: absolute;height: 0.5vmin;width: 0;background-color: #303030;}
.manga-chapters__item {padding: 8px 16px;font-size: 18px;color: #fff;transition: background-color .3s ease;}
.manga-chapters__item:hover {background-color: rgba(255,255,255,.05);}
.manga-chapters__title {margin-bottom: 20px;font-size: 42px;color: #fff;font-weight: 600;text-align: center;}

@media (max-width: 900px) {
    .manga-container{width: 100%}
    .chapter-image{width: 100%}
}