<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*::-webkit-input-placeholder {
    color: #fff;
    opacity: 1;
}

*:-moz-placeholder {
    color: #fff;
    opacity: 1;
}

*::-moz-placeholder {
    color: #fff;
    opacity: 1;
}

*:-ms-input-placeholder {
    color: #fff;
    opacity: 1;
}

*::foucs {
    outline: none;
}

:root {
    --art-width: 25%;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {}

body input:required:valid,
body textarea:required:valid {}


body {
    background: #252525;
    background-image: url(../images/bg-min.jpg);
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body.hidden {
    overflow: hidden;
}

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

* {
    box-sizing: border-box;
    list-style: none;
    padding: 0;
    /* transition: .2s; */
    outline: none;
}

img {
    width: 100%;
    height: 100%;

}
.backside {
    z-index: -1;
    width: 100vw;
    height: 100vh;
    position: fixed;
    background: rgb(0 0 0 / 72%);
    top: 0;
    left: 0;
    transition: .2s;
    opacity: 0;
}

.backside.active {
    z-index: 3;
    opacity: 1;
}
div#sidebar::-webkit-scrollbar {
    display: none;
}

#wrapper {
    /* box-shadow: 0px 0px 20px #000; */
    background: white;
    border-radius: 30px;
    width: 100%;
    max-width: 1440px;
    margin: 90px auto;
}

.right_wrapper {
    background: #F6F7F9;
    width: 100%;
    max-width: 280px;
    min-width: 280px;
    padding: 10px;
    border-radius: 0 20px 0 0;
    /* position: relative; */
    transition: .2s;
}

#main_wrapper {
    display: flex;
    justify-content: space-between;
}

header {
    display: flex;
    padding: 20px 35px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    position: relative;
}

footer {
    background: #ececec;
    padding: 20px;
    border-radius: 0 0 20px 20px;
}

/*nav */
nav ul {
    display: flex;
    font-family: 'Raleway', sans-serif;
    width: 100%;
}

a.nav_link {
    margin: 0 10px 0 0;
    padding: 10px;
    letter-spacing: .5px;
    transition: .2s;
    font-weight: 600;
    text-decoration: none;
}

a.nav_link:hover {
    background: #eaeaea;
    border-radius: 5px;
}

a.nav_link:focus {
    background: yellow;
}
.cat_button {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #ffe000;
    top: 0;
    right: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M10.828 12l4.95 4.95-1.414 1.414L8 12l6.364-6.364 1.414 1.414z'/%3E%3C/svg%3E");
    border: none;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    display: none;
}

.cat_button.active {
    background-color: #ff80bc;
}.menu_button {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #ffffff;
    top: 0;
    right: 40px;
    border-radius: 5px;
    border: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M16 18v2H5v-2h11zm5-7v2H3v-2h18zm-2-7v2H8V4h11z' fill='rgba(0,0,0,1)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    display: none;
}
/*===================================*/
.left_wrapper {
    display: flex;
    width: calc(100% - 280px);
    flex-direction: column;
}

.logo {
    padding: 10px;
    background: #ff80bc;
    color: #ffffff;
    font-size: 1.3em;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Raleway', sans-serif;
}

.logo:hover {
    background: #bd4476;
    color: white;
}

.main_content {
    display: flex;
    padding: 0 20px 20px;
}.ac {
    padding: 5px 10px;
    background: white;
    width: fit-content!important;
    border-radius: 5px;
    margin: 10px 0 0 0;
    font-size: .9em;
}

.ac:hover {
    background: #ffe000;
}
.seotext {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: rgb(242 242 242);
    border-radius: 10px;
    padding: 20px;
}
.seo_text {box-shadow: inset 0px -10px 17px -10px #f2f2f2;position: relative;}

.seo_text::after {content: "";position: absolute;bottom: 0;left: 0;width: 100%;background: linear-gradient(0deg, #f2f2f2, transparent);height: 40px;}
.seotext p {
    padding: 0;
    margin: 5px 0;
    line-height: 1.5em;
    color: #555;
}

.seotext h1 {
    padding: 0;
    margin: 0 0 10px;
}
div#sidebar {
    display: flex;
    flex-direction: column;
    background: #131313;
    max-width: 260px;
    min-width: 260px;
    width: 100%;
    height: calc(100vh - 20px);
    border-radius: 30px;
    position: sticky;
    top: 10px;
    overflow: scroll;
}

.sidebar_block {
    margin: 7px;
    overflow: hidden;
    border-radius: 25px 25px 5px 5px;
    height: 200px;
    border: 2px solid #fff;
    min-height: 200px;
    position: relative;
}

.sidebar_block:hover {
    opacity: .7;
}

.sidebar_block img {
    object-fit: cover;
}


/* ===============Article==================== */
article.fullstory {
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
}
.movie_info {
    display: flex;
}
.rating_full {
    padding: 5px 10px 3px;
    display: block;
    background: #252525;
    width: fit-content;
    /* margin: 5px 0; */
    border-radius: 10px;
}


.rating_kp {
    background: #ffbc00;
    padding: 0 0 0 5px;
    display: flex;
    align-items: center;
    font-size: 0.8em;
}

.rating_kp span {
    padding: 5px;
    display: block;
    background: #ffda73;
    margin-left: 5px;
}
.rating_imdb {
    background: #c3c3c3;
    padding: 0 0 0 5px;
    display: flex;
    align-items: center;
    font-size: 0.8em;
}

.rating_dt &gt; span {
    padding: 5px;
    display: block;
    background: #ffa800;
    margin-left: 5px;
    color: black;
}
.rating_dt {
    background: #252525;
    padding: 0 0 0 5px;
    display: flex;
    align-items: center;
    font-size: 0.8em;
    color: white;
}

.rating_imdb span {
    padding: 5px;
    display: block;
    background: #e8e8e8;
    margin-left: 5px;
}
.movie_info_img img {
    width: 200px;
    position: relative;
    height: auto;
    border-radius: 10px;
}

main {
    padding: 0 0 0 20px;
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
    width: 100%;
}
div#dle-content {
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
}
ul.movie_ul li {
    display: flex;
    padding: 5px;
    background: #f6f7f9;
    margin: 5px 0;
    font-size: .9em;
}

.ul_left {
    /* width: 140px; */
    /* min-width: 140px; */
    margin-right: 10px;
    color: #bd4476;
}
.movie_soc {
    display: flex;
    grid-gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    /* justify-content: center; */
}

.movie_soc &gt; a {
    display: flex;
    align-items: center;
    grid-gap: 2px;
    background: #f6f7f9;
    border-radius: 5px;
    padding: 2px 4px;
}

.movie_soc &gt; a:hover {
    background: #ffb5b6;
    color: white;
}
.movie_info_t {
    margin-left: 20px;
    width: 100%;
}

.movie_info_t p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow-y: hidden;
    font-size: 1em;
    line-height: 1.5em;
}

.vovie_title h1,
.vovie_title {
    font-size: 1.4em;
    font-family: 'Raleway', sans-500;
    font-weight: 500;
    margin: 0;
}

.vovie_title a:hover {
    color: red;
    transition: 0s;
}

.movie_info_img {
    position: relative;
    margin: 0 10px 0 0;
}

.movie_status {
    position: absolute;
    background: #bd4476;
    top: 10px;
    color: white;
    left: -5px;
    padding: 5px 10px;
    font-size: .8em;
    letter-spacing: 1px;
}
}
.com_list {}

div#dle-comments-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #eaeaea;
    border-radius: 10px;
    column-gap: 20px;
    grid-gap: 20px;
    padding: 20px;
}

div#dle-comments-list &gt; div {
    width: 100%;
}

span.heading {
    display: block;
    background: #9285ca;
    border-radius: 5px;
    padding: 10px;
    margin: 0 0 20px;
    color: #f6f7f9;
    width: fit-content;
}

span.heading {}

.comments-full {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #f6f7f9;
    border-radius: 10px;
    column-gap: 20px;
    grid-gap: 20px;
    padding: 20px;
}

.reload-full-block img {
    width: 20px;
    height: 20px;
}

div#comment {
    display: none;
}

.reload-full-block {
    display: flex;
}

.userinfo-full {
    display: flex;
    grid-gap: 10px;
}

.text-comments-fullbl {
    width: 100%;
}
/*===================================*/




/* ===============accardion==================== */

.accardion {
    margin: 0;
}

.accardion input {
    display: none;
}

.accardion label {
    padding: 14px 0 14px 30px;
    cursor: pointer;
    position: relative;
    z-index: 20;
    letter-spacing: .5px;
    font-family: 'Raleway', sans-500;
    font-weight: 300;
    display: block;
    font-size: 0.8em;
    color: #ffffff;
    transition: all 0.2s ease-in-out;
}

.accardion label:hover {
    background: #252525;
}

.accardion label::after {
    content: " + ";
    position: absolute;
    right: 0;
    font-weight: 600;
    top: 0;
    width: 42px;
    line-height: 42px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    height: 100%;
}

.accardion input:checked + label {
    color: #fff;
    background: #252525;
}

.accardion input:checked + label::after {
    content: "-";
    background: #252525;
}

.accardion input:checked + label:hover {
    background-color: #131313;
}

.accardion article {
    margin-top: -2px;
    position: relative;
    z-index: 10;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    background: #252525;
    max-height: 0;
    transition: all 0.3s ease-in-out;
    margin-bottom: 5px;
}

.accardion article p {
    color: #959595;
    padding: 20px;
    margin: 0;
}

.accardion input:checked ~ article {
    max-height: 999px;
}

.info_movie_small {
    display: flex;
    justify-content: space-between;
    border-left: 5px solid transparent;
    transition: .2s;
}

.info_movie_small:hover {
    border-left: 5px solid #ff80bc;
}

.info_movie_small img {
    width: 45px;
    height: 55px;
    margin: 10px;
    object-fit: cover;
    border: 2px solid #ababab;
    border-radius: 10px;
}

.info_movie_small__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    width: 100%;
}

.info_movie_small__right span {
    font-size: .65em;
    color: #676767;
    margin-top: 3px;
}

.info_movie_small__title {
    letter-spacing: .5px;
    font-family: 'Raleway', sans-500;
    font-weight: 300;
    font-size: .85em;
}

.info_movie_small__rate {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    color: #ff80bc;
    padding-right: 10px;
}

/*===================================*/


ul.zhanr {
    width: calc(100% + 70px);
    margin: 15px -34px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #f6f7f9;
}

ul.zhanr a {
    color: #000;
    display: inline-block;
    text-align: center;
    padding: 3px 0 2px;
    background: #eaeaea;
    border: 1px solid #f6f7f9;
    font-weight: 500;
    text-transform: capitalize;
    padding: 10px;
    line-height: 18px;
    font-size: 1em;
    font-family: 'Raleway', sans-serif;
    width: 100%;
}

ul.zhanr a:hover {
    background: white;
}

ul.zhanr li {
    flex: 150px;
}

ul.profile-block {
    margin: 0;
    width: 100%;
    display: flex;
}

.newserials {display: flex;flex-direction: column;grid-gap: 5px;}

.newserials a {
    padding: 10px;
    background: #eaeaea;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

.newserials a:hover {
    background: #ff80bc;
    color: white;
}

.right_title {
    padding: 10px;
    display: block;
    background: #bd4476;
    color: white;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 5px;
}

ul.profile-block a {
    padding: 5px;
    background: #bd4476;
    color: white;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    font-family: 'Raleway', sans-500;
    font-size: .9em;
    margin: 5px;
}

ul.profile-block a:hover {
    background: black;
}

ul.profile-block li {
    display: flex;
    width: 50%;
}

.lastc {
    background: #000000;
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    color: white;
}

.lastc:hover {
}

.lastc_author {
    background: #f6f7f9;
    font-size: .7em;
    padding: 5px;
    border-radius: 0px;
    position: relative;
    z-index: 2;
    color: black;
}

.lastc__text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow-y: hidden;
    font-size: .8em;
    line-height: 1.5em;
    position: relative;
    z-index: 2;
    margin: 5px 0;
}

.lastc__title {
    margin: 0 0 10px 0;
    z-index: 2;
    position: relative;
    font-family: 'Raleway', sans-serif;
}

.lastc__title a {
    color: white;
}

.lastc:hover a {
    /* color: black; */
}

.vovie_title:first-letter,
.info_movie_small__title:first-letter,
.lastc__title:first-letter {
    font-family: "Times New Roman", Times, serif;
    font-size: 130%;
    color: #bd4476;

}
.speedbar {
    padding: 10px;
    background: #f6f7f9;
}
.ads_cont {
    background: #ff80bc;
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    display: flex;
    color: white;
    align-items: center;
    justify-content: center;
    height: 140px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: sticky;
    top: 10px;
}

.description-text {
    background: #f6f7f9;
    padding: 20px;
    border-radius: 10px;
}

.description-title {
    font-size: 1.2em;
    margin: 0;
    width: 100%;
}

.description-text p {
    font-size: 1em;
    margin: 5px 0;
    line-height: 2em;
}
.serials {
    border-radius: 5px;
    margin: 5px 0;
    padding: 5px;
    background: #252525;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.serials a {
    display: block;
    padding: 5px;
    background: #9285ca;
    color: white;
    border-radius: 5px;
}

.serials a:hover {
    background: #37aee2;
}
.player_frame {
    background: #9285ca;
    padding: 10px;
    border-radius: 5px;
    margin: 0;
}

.player_frame h2 {
    color: white;
    margin: 0;
    font-size: 1.3em;
    margin-bottom: 10px;
    padding: 7px 5px;
}

.player_frame iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.original-name {
    margin: 10px 0;
    font-size: .9em;
    background: #f6f7f9;
    width: fit-content;
    padding: 5px;
    border-radius: 10px;
}

.sidebar_block span {
    position: absolute;
    bottom: 0;
    background: rgb(255 255 255);
    left: 0;
    padding: 10px 5px;
    width: 100%;
    text-align: center;
    font-size: .8em;
}

.sidebar_block a {
    position: relative;
}



















/* #Progress
================================================== */

.progress-wrap {
    position: fixed;
    right: 50px;
    bottom: 50px;
    height: 80px;
    width: 80px;
    cursor: pointer;
    background: rgb(0 0 0 / 67%);
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    content: 'UP';
    text-align: center;
    line-height: 80px;
    font-size: 16px;
    color: white;
    left: 0;
    top: 0;
    font-weight: 500;
    height: 80px;
    width: 80px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap::before {
    position: absolute;
    content: 'UP';
    text-align: center;
    line-height: 80px;
    font-size: 16px;
    opacity: 0;
    background-image: linear-gradient(298deg, #ffe000, #ffe000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 80px;
    width: 80px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #000000;
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

body.light .progress-wrap {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
}

body.light .progress-wrap::after {
    color: var(--black-blue);
}

body.light .progress-wrap svg.progress-circle path {
    stroke: var(--black-blue);
}

.movie_limk {
    position: absolute;
    bottom: 0;
    z-index: 2;
    width: 100%;
    background: #bd4476;
    text-align: center;
    font-size: .9em;
    letter-spacing: 1px;
}

.movie_info:hover .movie_limk a {
    background: #252525;
    color: white;
}

.movie_limk a {
    display: inline-block;
    width: 100%;
    padding: 10px;
    color: white;
}

.movie_limk:hover {
    background: white !important;
}

.lastc::after {
    content: "";
    transition: .3s;
    position: absolute;
    width: 500px;
    height: 200px;
    background: #3a3a3a;
    top: 0;
    left: 0;
    z-index: 1;
    transform: rotate(45deg) translateY(220px);
}

.lastc:hover::after {
    transform: rotate(0deg) translateY(70px);
}

.search_block {
    margin: 5px -10px 5px 0;
}


form.art-search {
    display: flex;
}



button.btn.btn-danger {
    cursor: pointer;
    background: #252525;
    padding: 7px;
    border-radius: 0;
    border: none;
}

form.art-search input {
    border: none;
    background: #252525;
    border-radius: 5px 0 0 5px;
    color: white;
    height: auto;
    text-indent: 10px;
    width: 100%;
    line-height: 0;
}

.content {
    font-size: .8em;
    line-height: 24px;
    letter-spacing: 1px;
    font-weight: normal;
    display: none;
    overflow: hidden;
    transition: .2s;
    padding: 10px;
    transition: 0s;
    position: sticky;
    z-index: 999;
    border-radius: 20px 20px 0 0;
    background: white;
    width: 100%;
    max-width: 1440px;
}

.content::after {
    top: -70px;
    left: -100px;
    position: absolute;
    content: "";
    width: 100%;
    transform: rotate(-5deg);
    height: 100px;
    background: #ffe000;
}

.content p {
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
    position: relative;
    z-index: 2;
}

.content.open {
    height: auto;
    opacity: 1;
}

.intro,
.footer {
    position: absolute;
    transform: translateX(-100%) translateY(30px);
}




.toggle {
    background: white;
    color: #B29F7B;
    border: 2px solid;
    border: none;
    padding: 10px 5px 10px 10px;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    font-weight: bold;
    transition: color ease-out .8s;
}

.toggle:before {
    content: "";
    overflow: hidden;
    font-size: 0;
    -webkit-transition: font-size .2s;
    transition: font-size .2s;
    transition-timing-function: linear;
}

.toggle:hover:not(.open):before {
    font-size: 0em;
}

@media screen and (min-width: 560px) {
    .toggle:hover:not(.open):before {
        font-size: .65em;
    }
}




.toggle .open {
    background: aquamarine;
}

.toggle.intro.open {
    background: #ffe000;
}

/* BOTTOM NAVIGATION
----------------------------------------------- */
.bottom-nav {
    text-align: center;
    padding-top: 10px;
    position: relative;
    /* width: 100%; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-direction: column; */
}

.pagi-load &gt; span {
    display: none;
}

.pagi-load a {
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 10px 80px;
    background: aliceblue;
    color: black;
    display: block;
    font-size: .9em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pagi-load a:hover {
    background-color: #c829fc;
    color: white;
}

.navigation a:hover {
    background-color: #7e79ba;
    color: #fff;
}

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

.pagi-nav &gt; span {
    display: flex;
}

.pnext a,
.pprev a,
.pprev &gt; span,
.pnext &gt; span {
    display: block;
    width: 36px;
    text-align: center;
}

.navigation {
    line-height: 36px;
    width: fit-content;
    display: flex;
}
.flex-cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #eaeaea;
    border-radius: 10px;
    column-gap: 20px;
    grid-gap: 20px;
    padding: 20px;
}.full_meta {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    background: #eaeaea;
    border-radius: 10px;
    column-gap: 20px;
    grid-gap: 20px;
    padding: 5px;
}

.full_meta span {
    padding: 5px;
    background: #252525;
    border-radius: 5px;
    color: white;
    max-width: 200px;
    overflow: hidden;
    white-space: pre;
}

.full_meta a {
    color: yellow;
}
.pages {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-nav {
    clear: both;
    padding-top: 20px;
}

.nav-load {
    text-align: center;
}

.nav-load a {
    padding: 0 60px;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.2em;
    background-color: #252525;
    color: #fff;
    box-shadow: inset 1px -3px 11px -10px #292929;
}

.nav-load a:hover {
    background-color: #e4e4e4;
    color: #131313;
}

.nav-load span {
    display: none;
}

.navigation a,
.navigation span,
.pnext a,
.pprev a,
.pprev &gt; span,
.pnext &gt; span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    margin: 5px 2px 0 2px;
    border-radius: 4px;
    color: white;
    min-width: 36px;
    background-color: #252525;
}

.pnext a,
.pprev a {
    height: 46px;
    background: #252525;
}

.pnext a:hover,
.pprev a:hover {
    background: #eaeaea;
    color: greenyellow;
}

.navigation span,
.pagi-nav a:hover {
    background-color: #efefef;
    color: #000000;
    border: none;
    box-shadow: inset 1px -3px 11px -10px #292929;
}

.navigation span.nav_ext {
    background: #ffffff;
    color: #7B8494;
}

.pagi-nav a:hover {
    color: #000;
}

/* TOP SLIDE
----------------------------------------------- */
.topsilde {
    padding: 20px 10px 30px 0 !important;
    border-radius: 0 10px 10px 0;
    margin-bottom: 20px;
    position: relative;
    background-image: url(../images/bg-min.jpg);
    background-attachment: fixed;
}

.topsilde img {
    width: 200px!important;
}

.topsilde article {
    width: 210px!important;
    flex: auto!important;
}

.more_button {
    min-width: 170px!important;
    height: 170px!important;
    background: white;
    margin-left: 10px;
    text-shadow: 5px 5px 2px #d6d6d6;
    border-radius: 5px;
}

.more_button:hover {transform: scale(0.9);opacity: .9;}

.more_button a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.7em;
    color: #252525;
    font-size: 1.2em;
    padding: 20px;
    text-align: center;
}

.topsilde::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 5px;
    box-shadow: 20px 0px 20px 40px #252525;
    height: 100%;
    background: #252525;
    z-index: 999999;
}

article.serial_blok {
    flex: 0 0 calc(var(--art-width) - 20px);
    padding: 5px;
    width: calc(var(--art-width) - 20px);
    height: 170px;
    background: white;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    box-shadow: 0 0 black;
    transition: .2s;
    box-sizing: border-box;
}

article.serial_blok img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

article.serial_blok &gt; a {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 2px;
    height: inherit;
}

article.serial_blok &gt; a &gt; span {
    position: absolute;
    bottom: 5px;
    left: 5px;
    display: flex;
    width: fit-content;
    font-size: .7em;
    z-index: 2;
    align-items: center;
    border-radius: 3px;
    justify-content: center;
    padding: 5px;
    line-height: 1em;
    background: rgb(255 255 255);
}

.play_button {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #ffe000a3;
    opacity: 0;
}

article.serial_blok:hover {
    background: black;
}

article.serial_blok:hover .play_button {
    opacity: 1;
}

article.serial_blok:hover img {
    transform: scale(1.2);
}

.title_blok a {
    font-size: 1em;
    /* color: #ffffff; */
    width: inherit;
    padding: 5px;
    line-height: 1.5em;
    white-space: pre-wrap;
    word-break: normal;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    padding: 5px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

article.serial_blok:hover .title_blok a {
    color: white;
}

.mod-page-slider {
    width: 100%;
    position: relative;
    bottom: -10px;
    display: flex;
    justify-content: center;
}
#loginForm {
    background: #f6f7f9;
    width: 100%;
    min-width: 100%;
    display: flex;
}

#loginForm form {
    width: 100%;
    min-width: 100%;
}

ul.login_form {
    list-style: none;
    padding: 0;
    margin: 0;
    color: white;
}

ul.login_form label {
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.login_form input {
    color: white;
    background: #252525;
    border: navajowhite;
}

ul.login_form li {
    margin: 10px;
    background: #ff80bc;
    display: flex;
    border-radius: 5px;
}

.baseform {display: flex;flex-direction: column;align-items: center;justify-content: center;}

.sociallogin {
    display: flex;
    flex-wrap: wrap;
    border-radius: 5px;
    overflow: hidden;
    justify-content: center;
}

.sociallogin button {
    margin: 10px 0;
    width: 100%;
    background: #ff80bc;
    border: 0 none;
    padding: 10px;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.sociallogin &gt; a {
    padding: 3px;
    background: #ff80bc;
}

.fieldsubmit {
    width: 100%;
}


/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
   :root {
    --art-width: 33.3%;
} header {}
div#sidebar {
    min-width: 100%;
    overflow: visible;
    height: auto;
    margin-top: 20px;
}
#wrapper {
    margin: 0;
    width: auto;
    border-radius: 0;
}

.main_content {
    flex-direction: column-reverse;
}
}

/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {
      :root {
    --art-width: 50%;
}
}

/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
          :root {
    --art-width: 33%;
} header {
    padding: 10px;
    border-bottom: 5px solid #f6f7f9;
    position: fixed;
    background: white;
    z-index: 9;
    top: 0;
}

.flex-cont {
    padding: 10px;
    column-gap: 10px;
    grid-gap: 10px;
}

.progress-wrap {
    display: none;
}


.movie_info_img img {
    width: 120px;
}
.fullstory .movie_info {
    /* flex-direction: column-reverse; */
    grid-gap: 20px;
    align-items: center;
}
.movie_info_t {margin:0;}
main {
    margin: 0;
    padding: 0;
}

article.serial_blok {
    flex: 0 0 calc(var(--art-width) - 10px);
    width: calc(var(--art-width) - 10px);
}

.main_content {
    padding: 10px;
}

.left_wrapper {
    width: 100%;
}

#main_wrapper {
    padding-top: 110px;
}

ul.zhanr {
    width: 100%;
    margin: 0;
    /* display: none; */
}

div#cat {
    display: none;
}

.menu_button, .cat_button {
    display: block;
}

.right_wrapper {
    position: fixed;
    transform: translateX(1000px);
    overflow-y: scroll;
    right: 0;
    height: calc(100vh - 110px);
    visibility: hidden;
    border-radius: 0;
}

.right_wrapper.active {
    transform: translateX(0px);
    display: block;
    z-index: 6;
    visibility: visible;
}

.ads_cont {
    position: relative;
}
nav {overflow-x:scroll;width: 100%;margin-top: 10px;}
nav ul &gt; li {width:fit-content;min-width: fit-content;}
}



/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
  :root {
    --art-width: 50%;
}
body {
    font-size: 10px;
}

article.serial_blok {flex: 0 0 calc(var(--art-width) - 10px);} .fullstory .movie_info {
    flex-direction: column-reverse;
    grid-gap: 20px;
    align-items: center;
}
ul.zhanr li {
    flex: auto;
}
.navigation {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}


</pre></body></html>