/* Datalife Engine template
name: Cool Serial,
creation date: 13 april 2020,
version dle: 12-14
*/

:root {
  /* Palette */
  --color-primary: #6CA0DC;
  --color-secondary: #A4C8E1;
  --color-accent: #F9D1D1;
  --color-bg: #FFFFFF;
  --color-surface: #FAFAFC;
  --color-text: #14161A;
  --color-text-muted: #6B7280;
  --color-border: #E5E7EB;
  --color-success: #4CAF50;
  --color-warn: #F59E0B;
  --color-danger: #EF4444;
  --color-shadow: rgba(0, 0, 0, 0.08);

  /* Sizing & Spacing */
  --radius: 12px;
  --gap: 12px;

  /* Shadows */
  --shadow-soft: 0 2px 8px var(--color-shadow);
  --shadow-focus: 0 4px 12px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-speed: 200ms;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-primary: #6CA0DC;
    --color-secondary: #5a7ab0;
    --color-accent: #F59E0B;
    --color-bg: #0f1621;
    --color-surface: #1a2434;
    --color-text: #FAFAFC;
    --color-text-muted: #9ab3d1;
    --color-border: #2a3648;
    --color-shadow: rgba(0, 0, 0, 0.3);
  }
}

/* SET BASE
----------------------------------------------- */
* {background: transparent; margin: 0; padding: 0; outline: none; border: 0; box-sizing: border-box;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
table {border-collapse: collapse; border-spacing: 0;}
input, select {vertical-align: middle;}
article, aside, figure, figure img, hgroup, footer, header, nav, section, main {display: block;}
img {max-width: 100%;}
.clr {clear: both;}
.clearfix:after {content: ""; display: table; clear: both;}

body {
  font: 15px 'Montserrat', sans-serif;
  line-height: normal;
  padding: 0;
  margin: 0;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-attachment: fixed;
  min-height: 100%;
  width: 100%;
  font-weight: 400;
}
a {color: var(--color-primary); text-decoration: none; transition: color var(--transition-speed);}
a:hover, a:focus {color: var(--color-accent); text-decoration: none;}
h1, h2, h3, h4, h5 {font-weight: 600; font-size: 24px; color: var(--color-text);}

button, textarea, select, input[type="text"], input[type="password"], input[type="button"], input[type="submit"]
{appearance: none; -webkit-appearance: none; font-size: 16px; font-family: 'Montserrat' !important;}

.button, .btn, .pagi-load a, .up-second li a, .usp-edit a, .qq-upload-button,
button:not(.color-btn):not([class*=fr]):not(.search-btn):not([class*=owl-]),
html input[type="button"], input[type="reset"], input[type="submit"], .meta-fav a, .usp-btn a {
  display: inline-block;
  text-align: center;
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 500;
  background-color: var(--color-primary);
  color: var(--color-bg);
  font-size: 15px;
  transition: background-color var(--transition-speed), color var(--transition-speed), box-shadow var(--transition-speed), outline var(--transition-speed);
}
.button:hover, .btn:hover, .up-second li a:hover, .usp-edit a:hover, .qq-upload-button:hover,
.pagi-load a:hover, .usp-btn a:hover,
button:not(.color-btn):not([class*=fr]):not(.search-btn):not([class*=owl-]):hover,
html input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, .meta-fav a:hover
{background-color: var(--color-secondary); color: var(--color-text); box-shadow: var(--shadow-focus);}

/* Focus & Disabled States */
.button:focus-visible, .btn:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, button:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    box-shadow: var(--shadow-focus);
}
button:disabled, input:disabled, textarea:disabled, select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: var(--color-border);
    color: var(--color-text-muted);
    box-shadow: none;
}
button:active, input[type="button"]:active, input[type="submit"]:active {transform: scale(0.98);}

input[type="text"], input[type="password"], textarea, select {
  width: 100%;
  height: 40px;
  line-height: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 0 var(--gap);
  background-color: var(--color-surface);
  color: var(--color-text);
  box-shadow: none;
  transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}
select {width: auto; padding-right: calc(var(--gap) * 2);}
textarea {height: auto; padding: var(--gap); line-height: 1.5; overflow: auto; vertical-align: top; resize: vertical;}
input[type="text"]:focus, input[type="password"]:focus, textarea:focus, select:focus
{border-color: var(--color-primary); box-shadow: var(--shadow-focus); outline: none;}
input::placeholder, textarea::placeholder {color: var(--color-text-muted); opacity: 1; font-size: 14px;}
input:focus::placeholder, textarea:focus::placeholder {color: transparent}

.img-box, .img-wide, .img-resp, .img-resp-vert, .img-fit {overflow: hidden; position: relative;}
.img-resp {padding-top: 70%;}
.img-resp-vert {padding-top: 140%;}
.img-box img, .img-resp img, .img-resp-vert img {width: 100%; min-height: 100%; display: block;}
.img-resp img, .img-resp-vert img {position: absolute; left: 0; top: 0;}
.img-wide img {width: 100%; display: block;}
.img-fit img {width: 100%; height: 100%; object-fit: cover;}
.nowrap {white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}

.fx-row, #dle-content {display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap;
-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;}
.fx-col {display:-ms-flexbox;display:-webkit-flex;display:flex;
-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}
.fx-center {-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center}
.fx-middle {-ms-flex-align:center;-webkit-align-items:center;align-items:center}
.fx-start {-webkit-justify-content:flex-start;justify-content:flex-start;}
.fx-first {-ms-flex-order: -1;-webkit-order: -1;order: -1;}
.fx-last {-ms-flex-order: 10;-webkit-order: 10;order: 10;}
.fx-1 {-ms-flex-preferred-size: 0; flex-basis: 0; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1;
	max-width: 100%; min-width: 50px;}
.fx-between {-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;}

b, strong, .fw700 {font-weight: 600;}
.icon-left [class*="fa-"], .icon-left .icon {margin-right: calc(var(--gap) / 2);}
.icon-right [class*="fa-"], .icon-right .icon {margin-left: calc(var(--gap) / 2);}
.hidden, #dofullsearch {display: none;}
.anim, .btn, button, .popular-item-img:before, .short-item a, .sidebar a, .header-btn,
.short-img, .footer a, .side-nav a {transition: all var(--transition-speed);}
.mtitle, .sub-title h1, .form-wrap h1 {margin-bottom: calc(var(--gap) * 2); font-size: 24px !important; font-weight: 600;}
#dle-content > * {width: 100%;}


/* BASIC GRID
----------------------------------------------- */
.wrap {min-width:320px; position: relative; padding: calc(var(--gap) * 2);}
.wrap-center {max-width:1200px; margin:0 auto; position:relative; z-index:20;}
.wrap-main {background-color: var(--color-surface); border-radius: var(--radius); box-shadow: var(--shadow-soft);}
.header {padding: var(--gap) calc(var(--gap) * 2); border-radius: var(--radius) var(--radius) 0 0; border-bottom: 1px solid var(--color-border);}
.cols {padding: calc(var(--gap) * 2);}
.main {min-height: 100vh;}
.sidebar {width: 300px; margin-right: calc(var(--gap) * 2);}

.footer a {color: var(--color-primary); text-decoration: underline;}
.footer {
  background: var(--color-surface);
  padding: var(--gap) calc(var(--gap) * 2);
  color: var(--color-text-muted);
  border-radius: 0 0 var(--radius) var(--radius);
  border-top: 1px solid var(--color-border);
}


#gotop{position:fixed; width:60px; height:60px; line-height:60px; right:var(--gap); bottom:var(--gap);
z-index:990; display:none; background-color:var(--color-surface); color:var(--color-primary); cursor:pointer; font-size:24px;
border-radius:50%; text-align:center; box-shadow: var(--shadow-soft);}


/* HEADER
----------------------------------------------- */
.logo {display: flex; align-items: center; font-family: 'Montserrat', sans-serif; text-decoration: none;}
.logo-icon {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background: var(--color-accent);
    color: var(--color-text);
    border-radius: 50%;
    margin-right: var(--gap);
    font-size: 16px;
}
.logo-text {font-size: 26px; font-weight: 700; color: var(--color-text); letter-spacing: 1px;}
.logo-text span {color: var(--color-accent); font-weight: 800; position: relative;}
.logo-text span:before {
    content: ""; position: absolute; bottom: -5px; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
}
.footer-logo {display: inline-flex; align-items: center; text-decoration: none; margin-right: var(--gap);}
.footer-logo-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px;
    background: var(--color-accent);
    color: var(--color-text);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 14px;
}
.footer-logo-text {font-size: 18px; font-weight: 700; color: var(--color-text);}
.footer-logo-text span {color: var(--color-accent);}
.footer-copyright {font-size: 13px; color: var(--color-text-muted);}
.footer-copyright a {color: var(--color-accent); text-decoration: none; margin-left: 10px;}
.footer-copyright a:hover {text-decoration: underline;}

.header-btn {padding: 0 calc(var(--gap) * 2);}
.search-wrap {position:relative; margin: 0 var(--gap) 0 calc(var(--gap) * 2);}
.search-box input, .search-box input:focus {padding: 0 50px 0 16px; border-radius: var(--radius); box-shadow: var(--shadow-soft);}
.search-box input:not(:focus)::placeholder {color: var(--color-text-muted); opacity: 1; font-size: 12px;}
.search-box button {position:absolute; right:0px; top:0px; z-index:10; width: 50px; cursor: pointer;
background: none; color: var(--color-text-muted); line-height: 40px; text-align: center; border-radius: 0 var(--radius) var(--radius) 0;}

.carou-content {height: 200px;}
.carou-sect {padding: var(--gap) calc(var(--gap) * 2); background-color: var(--color-bg);}
.carou-title {font-size: 18px; font-weight: 500; margin-bottom: var(--gap);}
.popular-item-img {display: block; border-radius: var(--radius); height: 200px;}
.popular-item-title {position: absolute; z-index: 10; left: 0; bottom: 0; right: 0;
	padding: var(--gap); color: var(--color-text); font-weight: 500; word-wrap: break-word;}
.popular-item-img:before {content: ''; position: absolute; z-index: 5;  left: 0; right: 0; bottom: 0; height: 70%;
	background: linear-gradient(to bottom, transparent 0%, var(--color-surface) 100%); opacity: 1;}
.popular-item:hover .popular-item-img:before, .popular-item:hover .popular-item-title {opacity: 0;}


/* SIDEBAR
----------------------------------------------- */
.side-box {margin-bottom: calc(var(--gap) * 2);}
.side-bt {font-size: 18px; font-weight: 500; margin-bottom: var(--gap);}
.mb-remove {margin-bottom: calc(var(--gap) * -1);}

.nav-col {width: 55%;}
.nav-col + .nav-col {width: 40%;}
.nav-title {font-weight: 500; margin-bottom: 9px;}
.nav-menu + .nav-title {margin-top: var(--gap);}
.nav-menu a {display:block; padding: 5px 0; font-size: 13px; color: var(--color-text-muted);}
.nav-menu a:hover, a.short-title:hover, .side-popular-item:hover .side-popular-item-title
{text-decoration: underline; color: var(--color-accent);}

.side-popular-item {margin-bottom: var(--gap);}
.side-popular-item-img {width: 70px; height: 90px; border-radius: calc(var(--radius) / 2); margin-right: var(--gap);}
.side-popular-item-title {font-weight: 500;}
.side-popular-item-info {color: var(--color-text-muted); margin-top: 10px; font-size: 13px;}
.side-popular-item-date {color: var(--color-text-muted); margin-top: 10px; font-size: 11px; font-weight: 300;}

.side-recommend-item {display: block; margin-bottom: var(--gap); width: 46.6%;}
.side-recommend-item-img {border-radius: var(--radius);}
.side-recommend-item:hover {opacity: 0.8;}

.lcomm {margin-bottom: var(--gap);}
.ltitle {display: block; line-height: 1; font-weight: 300; font-size: 13px; margin-top: 10px; padding-left: 2px;}
.ltext {line-height: 1.3; background-color: var(--color-bg); padding: var(--gap); border-radius: var(--radius);}
.lmeta {font-size: 13px; margin: 10px 0; color: var(--color-text-muted); font-weight: 300;}
.ldate, .lav, .lname {display: inline-block; vertical-align: middle; margin-right: 7px;}
.lav {width: 20px; height: 20px; border-radius: 50%;}
.lcomm .comm-letter {line-height: 20px; font-size: 12px;}
.lname {color: var(--color-text-muted); font-weight: 400;}


/* SECTION
----------------------------------------------- */
.sect {margin-bottom: calc(var(--gap) * 2);}
.sect-header {margin-bottom: var(--gap);}
.sect:last-child {margin-bottom: 0;}
.sect-title {font-weight: 600; font-size: 24px;}
.sect-title [class*=fa-], .side-bt [class*=fa-], .speedbar [class*=fa-], .carou-title [class*=fa-] {color: var(--color-accent); margin-right: var(--gap);}
.sorter, .sect-link {position:relative; cursor:pointer; height: 30px; line-height: 30px; margin-left: var(--gap);
  padding: 0 10px; background-color: var(--color-bg); border: 1px solid var(--color-border); border-radius: calc(var(--radius) / 2); font-size: 13px; display: block;}
.sorter:before {content:attr(data-label); display: inline-block; vertical-align: top;}
.sorter > span {display: inline-block; vertical-align: top; margin-left: 2px;}
.sorter form {display:none; background-color:var(--color-surface); padding:var(--gap); line-height:26px; box-shadow:var(--shadow-soft);
position:absolute; right:0; top:100%; width:160px; z-index:999; border-radius: var(--radius);}
.sorter a:hover {text-decoration:underline;}
.sort li.asc a:after, .sort li.desc a:after {content:"\f063"; font-family:"Font Awesome 5 Pro";
display:inline-block; margin-left:10px; font-weight: 300;}
.sort li.desc a:after {content:"\f062"}
.sorter:hover, .sect-link:hover {background-color: var(--color-primary); color: var(--color-bg); border-color: var(--color-primary);}


/* SHORT ITEM
----------------------------------------------- */
.short-item {margin-bottom: var(--gap); padding: var(--gap); border-radius: var(--radius); background-color: var(--color-surface); box-shadow: var(--shadow-soft);}
.short-img {width: 170px; height: 250px; margin-right: var(--gap);
	display: block; border-radius: var(--radius); box-shadow: var(--shadow-soft);}
.short-header {margin-bottom: 10px;}
.short-title {display: block; font-size: 20px; font-weight: 500; line-height: 1.5;}
.short-text {font-size: 14px; line-height: 1.7;}
.short-list li {position: relative; padding-left: 120px; margin: 5px 0;
	font-size: 14px; line-height: 1.5;}
.short-list li > span:first-child {position: absolute; left: 0; top: 0; color: var(--color-text-muted);}
.short-list a {color: var(--color-accent); border-bottom: 1px dotted var(--color-accent);}
.short-meta {margin-top: 10px; color: var(--color-text-muted); font-size: 13px; font-weight: 300;}
.short-meta-item {margin-right: var(--gap);}
.short-rating {line-height: 28px; background-color: var(--color-bg); padding: 0 10px; font-size: 13px;
border-radius: calc(var(--radius) / 2); border: 1px solid var(--color-border); margin-right: var(--gap);}
.short-rating .fa-thumbs-up {color: var(--color-success); margin-right: 10px;}
.short-rating .fa-thumbs-down {color: var(--color-danger); margin: 0 10px;}
.short-label {background-color: var(--color-accent); color: var(--color-text); padding: 3px 6px; border-radius: calc(var(--radius) / 2);
position: absolute; left: 10px; top: 10px; z-index: 10; font-size: 12px; font-weight: 500;}
.short-btn {height: 30px; line-height: 30px; font-size: 12px; padding: 0 10px;
	border-radius: calc(var(--radius) / 2); box-shadow: var(--shadow-soft);}
.short-rate-in {line-height: 30px; border-radius: calc(var(--radius) / 2); text-align: center; font-size: 13px; opacity: 0.7;
padding: 0 6px; margin-left: 10px; font-weight: 500; box-shadow: var(--shadow-soft);}
.short-rate-in:before {content: attr(data-text); display: inline; margin-right: 3px; text-transform: uppercase;}
.short-rate-kp {background-color: var(--color-warn); color: var(--color-text);}
.short-rate-imdb {background-color: var(--color-warn); color: var(--color-text);}
.mrating {margin-right: var(--gap); overflow: hidden;}
.mrating a {transition: none}
.short-img:hover {opacity: 0.8;}


/* SEO DESCRIPTION
----------------------------------------------- */
.site-desc {line-height: 1.7; color: var(--color-text-muted); font-size: 14px; padding-top: calc(var(--gap) * 2);}
.site-desc:before {content: ''; position: absolute; left: 0; top: 0; right: 0; height: 5px;}
.site-desc h1, .site-desc h2 {font-size: 18px; font-weight: 500; margin-bottom: 10px; color: var(--color-text);}
.site-desc li {list-style-type: disc; margin-left: 40px;}
.site-desc p {margin-bottom: 10px;}
.site-desc > *:last-child {margin-bottom: 0;}
.site-desc a {color: var(--color-accent); text-decoration: underline;}
.site-desc img {float: left; max-width: 200px; margin: 0 10px 10px 0;}


/* BOTTOM NAVIGATION
----------------------------------------------- */
.bottom-nav {margin-bottom: -10px; text-align: center;}
.navigation a, .navigation span, .pnext a, .pprev a, .pprev > span, .pnext > span {display:inline-block; padding:0 10px;
margin:0 10px 10px 0px; line-height: 50px; min-width: 50px; background-color: var(--color-surface);
border-radius: var(--radius); font-weight: 500; font-size: 18px; border: 1px solid var(--color-border);}
.navigation span:not(.nav_ext), .pagi-nav a:hover, .navigation a:hover {background-color: var(--color-primary); color:var(--color-bg); border-color: var(--color-primary);}


/* FULL
----------------------------------------------- */
.speedbar {font-size: 13px; color: var(--color-text-muted); margin-bottom: var(--gap);}
.speedbar .fal {margin-right: 8px;}
.fleft {width: 200px; margin-right: var(--gap);}
.fimg {border-radius: var(--radius); box-shadow: var(--shadow-soft);}
.ftext {margin: var(--gap) 0;}
.fcols .short-list li {font-size: 13px;}
.fcols .short-meta-item:last-child {margin-right: 0;}
h1 a {margin-left: 10px; font-size: 15px;}
.fcols {padding: var(--gap); border-radius: var(--radius); background-color: var(--color-surface); box-shadow: var(--shadow-soft);}
.frels .popular-item-img:before {background: linear-gradient(to bottom, transparent 0%, var(--color-surface) 100%); opacity: 1;}

.fsubtitle {text-align: center; font-size: 18px; font-weight: 500; margin-bottom: var(--gap);}
.fplayer {position:relative; background-color: var(--color-bg); padding: var(--gap); border-radius: var(--radius); box-shadow: var(--shadow-soft);}
.fctrl {padding-right: var(--gap);}
.fplayer .tabs-sel span {display:inline-block; padding:0 20px; height:40px; line-height:40px; cursor:pointer;
background-color: var(--color-surface); border-radius: calc(var(--radius) / 2); font-weight: 500; margin-right: 5px;}
.fplayer .tabs-sel span.current {background-color: var(--color-primary); color:var(--color-bg);}
.fplayer .tabs-sel span:hover {text-decoration: underline;}
.js .tabs-b {background-color: var(--color-bg); display: none;}
.js .tabs-b.visible {display: block;}
.fcompl a:hover, .ffav a:hover, .ffav span:hover {color: var(--color-accent); cursor: pointer;}
.fcompl, .ffav {margin-left: var(--gap);}

.fshare {padding: 10px; text-align:center; white-space:nowrap;}
.fshare .fab, .fshare .fas {width:50px; height:30px; border-radius:calc(var(--radius) / 2); text-align:center; line-height:30px;
color:#fff; font-size:14px; margin:0 2px; cursor:pointer;}
.fshare .fa:hover {opacity:0.8;}
.fab.fa-vk {background-color:#5075a5;}
.fab.fa-facebook-f {background-color:#4b6baf;}
.fab.fa-twitter {background-color:#2daae1;}
.fab.fa-odnoklassniki, .fa.fa-rss {background-color:#FC6D00;}
.fas.fa-paper-plane {background-color:#5682a3;}
.fshare .fa-facebook-f::before {content: "\f39e" !important;}


/* FULL STORY STATIC
----------------------------------------------- */
.video-box embed, .video-box object, .video-box video, .video-box iframe, .video-box frame
{max-width:100% !important; display:block; width:100%; height:400px; border-radius: var(--radius);}
.mejs-container {max-width:100% !important;}
.full-text {line-height: 1.7; font-size: 15px;}
.full-text img:not(.emoji) {max-width:100%; margin-top: 10px; margin-bottom: 10px; border-radius: var(--radius);}
.full-text > img[style*="left"], .full-text > .highslide img[style*="left"] {margin:0 10px 10px 0;}
.full-text > img[style*="right"], .full-text > .highslide img[style*="right"] {margin:0 0 10px 10px;}
.full-text a {text-decoration:underline; color:var(--color-primary);}
.full-text a:hover {text-decoration:none;}
.full-text h2, .full-text h3, .full-text h4, .full-text h5 {margin:10px 0; font-size:24px; font-weight:700;}
.full-text p {margin-bottom:10px;}
.full-text > ul, .full-text > ol {margin:0;}
.full-text > ul li {list-style:disc; margin-left:40px;}
.full-text > ol li {list-style:decimal; margin-left:40px;}


/* COMMENTS
----------------------------------------------- */
.add-comms {margin-bottom: 26px; padding: var(--gap); background-color: var(--color-surface); border-radius: var(--radius); box-shadow: var(--shadow-soft);}
.ac-inputs input {width: 48.5%; margin-bottom: var(--gap);}
.ac-textarea textarea {height: 100px; margin-bottom: var(--gap);}
.ac-protect, .ac-textarea .bb-editor + br {display: none;}
.comments_subscribe input {margin-right: 10px;}
.comments_subscribe {display: block;}
.mass_comments_action {display: none;}
.last-comm-link {display: inline-block; padding-bottom: var(--gap); color: var(--color-primary); font-size: 18px;}

.comm-avatar {position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 50%;}
.comm-letter {position: absolute; left: 0; top: 0; width: 100%; height: 100%; line-height: 40px; text-align: center;
background-color: var(--color-primary); color: var(--color-bg); font-size: 18px; font-weight: 600; text-transform: uppercase;}
.comm-item {font-size: 13px; padding-left: 55px; position: relative; min-height: 40px; margin-bottom: var(--gap);}
.comm-two {margin: 5px 0 10px 0;}
.comm-one > span {margin-right: var(--gap); opacity: 0.6;}
.comm-one > span.comm-author, .comm-one > span.comm-author a {font-weight: 500; opacity: 1; color: var(--color-text);}
.comm-three-left > a, .comm-three-right li a {opacity: 0.6;}
.comm-three-right li {display: inline-block; margin-left: var(--gap);}
.comm-rate3 {white-space:nowrap; margin-right: var(--gap); height: 20px; line-height: 20px;
	display: inline-block; vertical-align: top; position: relative; top: -3px;}
.comm-rate3 a {display: inline-block; vertical-align: middle; position: relative; opacity: 0.8;}
.comm-rate3 a:first-child {top: -5px;}
.comm-rate3 > span {margin: 0 5px;}
.comm-rate3 > span > span.ratingtypeplus {color: var(--color-success);}
.comm-rate3 > span > span.ratingplus {color: var(--color-success);}
.comm-rate3 > span > span.ratingminus {color: var(--color-danger);}
.comm-three a:hover {border-bottom-color: transparent;}
.comm-three-left > a {opacity: 1; color: var(--color-text-muted); border-bottom: 1px dotted var(--color-text-muted);}


/* LOGIN
----------------------------------------------- */
.overlay-box {position: fixed; z-index: 998; left: 0; top: 0; width: 100%; height: 100%;
opacity: 0.8; background-color: var(--color-text); cursor: pointer;}
.login-box {position: fixed; z-index: 999; left: 50%; top: 50%; transform: translate(-50%,-50%);
background-color: var(--color-surface); padding: 30px 60px 40px 60px; border-top: 5px solid var(--color-accent); width: 400px;
box-shadow: var(--shadow-focus); border-radius: var(--radius);}
.login-close {width: 26px; height: 26px; line-height: 26px; text-align: center; font-size: 24px;
	cursor: pointer; position: absolute; top: -30px; right: -30px; color: var(--color-text);}
.login-title {font-size: 24px; font-weight: 600; margin-bottom: var(--gap); text-align: center;}
.login-avatar {width: 60px; height: 60px; border-radius: 50%; margin: 0 auto var(--gap) auto;
text-align: center; line-height: 60px; font-size: 24px; background-color: var(--color-bg); color: var(--color-text-muted);}
.login-input {margin-bottom: var(--gap);}
.login-btn button {width: 100%; margin: var(--gap) 0;}
.login-btm a {border-bottom: 1px dotted var(--color-primary); color: var(--color-primary); font-size: 13px;}
.login-check {position: relative; font-size: 14px;}
.login-check input {opacity: 0; position: absolute; cursor: pointer;}
.login-check span {display: block; padding-left: 36px; height: 30px; line-height: 30px; color: var(--color-text-muted);}
.login-check span:before, .login-check span:after{content: '';position: absolute;top: 50%;transition: .3s;}
.login-check span:before{left: 0; height: 10px; margin-top: -5px; width: 26px; border-radius: 5px;
	background: var(--color-bg); box-shadow: inset 0 1px 4px var(--color-shadow);}
.login-check span:after{left: 1px; height: 12px; width: 12px; margin-top: -6px; background: var(--color-border);
	border-radius: 6px; box-shadow: 0 1px 4px var(--color-shadow);}
.login-check input:checked + span:before {background-color: var(--color-primary);}
.login-check input:checked + span:after {left: 13px; background-color: var(--color-bg);}
.login-menu {border-top: 1px solid var(--color-border); border-left: 1px solid var(--color-border);}
.login-menu li {text-align: center; border-right: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); width: 50%;}
.login-menu a {display: block; padding: 10px 5px; font-size: 13px;}
.login-menu li .fa {display: none; height: 28px; font-size: 22px; color: var(--color-primary);}
.login-admin {text-align: center; margin: -10px 0 25px 0;}
.login-soc-title {display: flex; align-items: center; margin: 30px 0 var(--gap) 0;}
.login-soc-title:before, .login-soc-title:after {content: ''; height: 1px; background-color: var(--color-border); flex: 1;}
.login-soc-title:before {margin-right: var(--gap);}
.login-soc-title:after {margin-left: var(--gap);}
.login-soc-btns {text-align: center;}
.login-soc-btns a {display:inline-block; margin: 0 3px; vertical-align:top;}
.login-soc-btns img {display:block; width:30px; height: 30px; border-radius: 50%;}

/**
 * Owl Carousel v2.3.4
 */
.owl-carousel {display: none; opacity: 0; transition: opacity .3s linear; width: 100%; position: relative; z-index: 10;}
.owl-carousel .owl-stage {position: relative;
	display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-justify-content:flex-start;justify-content:flex-start;}
.owl-carousel .owl-stage-outer {position: relative; overflow: hidden; -webkit-transform: translate3d(0px, 0px, 0px);}
.owl-carousel .owl-item {position: relative; min-height: 1px;}
.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled, .owl-carousel.owl-refresh .owl-item {display: none;}
.owl-carousel.owl-loaded, .owl-carousel.owl-loading, .no-js .owl-carousel {display: block; opacity: 1;}
.owl-carousel.owl-loading, .owl-carousel.owl-hidden {opacity: 0;}
.owl-carousel.owl-drag .owl-item {user-select: none;}
.owl-carousel.owl-grab {cursor: move; cursor: grab;}
.owl-carousel .animated {animation-duration: 1000ms; animation-fill-mode: both;}
.owl-carousel .owl-animated-in {z-index: 0;}
.owl-carousel .owl-animated-out {z-index: 1;}
.owl-carousel .fadeOut {animation-name: fadeOut;}
@keyframes fadeOut { 0% {opacity: 1;} 100% {opacity: 0;} }
.owl-height {transition: height 500ms ease-in-out;}
.owl-carousel .owl-item .owl-lazy {opacity: 0; transition: opacity 400ms ease;}
.owl-carousel .owl-item img.owl-lazy {transform-style: preserve-3d;}
.owl-nav {position:absolute; right:0; top:0; z-index: 1;}
.owl-prev, .owl-next {display: block; cursor: pointer; background: none; color: var(--color-accent); box-shadow: none;
height: 20px; line-height: 20px; position: absolute; top: -46px; box-shadow: none; font-size: 28px;}
.owl-prev {right:45px; color: var(--color-accent);}
.owl-next {right:0px;}
.owl-prev:hover, .owl-next:hover {color:var(--color-text-muted);}


/* ADAPTIVE
----------------------------------------------- */
.btn-menu {display: none;}
.side-panel {width:280px; height:100%; overflow-x:hidden; overflow-y:auto; background-color:var(--color-surface);
padding:var(--gap); z-index:9999; position:fixed; left:-320px; top:0; transition:left .4s; box-shadow: var(--shadow-focus);}
.side-panel.active {left:0;}
.close-overlay {width:100%; height:100%; background-color:var(--color-shadow);
position:fixed; left:0; top:0; z-index:9998; display:none;}
.btn-close {cursor:pointer; display:block; left: 280px; top: -40px; position: fixed; z-index: 9999;
width:40px; height:40px; line-height:40px; text-align:center; font-size:18px;
background-color: var(--color-danger); color: #fff; transition:top .4s;}
.btn-close.active {top:0px;}
body.opened-menu {overflow: hidden; width: 100%; height: 100%;}
.side-panel .side-nav a {white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.side-panel .side-box {margin-bottom: var(--gap);}
.movie-info-block-full {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 2px;
  box-shadow: var(--shadow-soft);
  margin: calc(var(--gap) * 2) 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.movie-info-block-full::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
}
.movie-info-inner {
  background: var(--color-surface);
  padding: calc(var(--gap) * 2);
  border-radius: var(--radius);
}
.movie-info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--gap) 0; margin: 0; position: relative;
}
.movie-info-row:not(:last-child)::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}
.movie-info-label {color: var(--color-text-muted); font-weight: 500; font-size: 16px; letter-spacing: 0.03em;}
.movie-info-value {color: var(--color-text); font-weight: 600; font-size: 17px; text-align: right; text-shadow: 0 1px 2px var(--color-shadow);}
.fplayer {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: var(--gap);
  box-shadow: var(--shadow-soft);
  margin: calc(var(--gap) * 2) 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.fplayer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
}
.tabs-sel {display: flex; gap: var(--gap); margin-bottom: var(--gap); overflow-x: auto; padding-bottom: 5px;}
.tabs-sel::-webkit-scrollbar {height: 4px;}
.tabs-sel::-webkit-scrollbar-thumb {background: var(--color-border); border-radius: 2px;}
.tab-btn {
  cursor: pointer; padding: 8px 15px; border-radius: calc(var(--radius) / 2);
  background: var(--color-bg); color: var(--color-text-muted);
  font-weight: 500; font-size: 14px; white-space: nowrap;
  transition: all var(--transition-speed);
}
.tab-btn.active {
  background: var(--color-primary); color: var(--color-bg);
  font-weight: 600;
}
.tabs-container {position: relative; width: 100%;}
.video-box {display: none; width: 100%; background: #000; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9;}
.video-box.active {display: block;}
.fshare span {cursor: pointer; color: var(--color-text-muted); font-size: 16px; transition: color var(--transition-speed);}
.fshare span:hover {color: var(--color-primary);}

@media (max-width: 768px) {
  .movie-info-inner {padding: var(--gap);}
  .movie-info-label {font-size: 15px;}
  .movie-info-value {font-size: 16px;}
  .fplayer {padding: var(--gap); margin: var(--gap) 0;}
  .tab-btn {padding: 6px 12px; font-size: 13px;}
  .tabs-sel {gap: 8px;}
}

@media (max-width: 480px) {
  .movie-info-inner {padding: 16px 15px;}
  .movie-info-label {font-size: 14px;}
  .movie-info-value {font-size: 15px;}
  .fplayer {padding: var(--gap); margin: var(--gap) 0; border-radius: var(--radius);}
  .tab-btn {padding: 5px 10px; font-size: 12px;}
  .tabs-sel {gap: 5px;}
}
@media screen and (max-width: 1220px) {
.wrap {padding: 0; overflow: hidden;}
.header, .footer, .cols, .carou-sect {padding-left: var(--gap); padding-right: var(--gap); border-radius: 0; background-image: none;}
.wrap-center {max-width:1000px; border-radius: 0;}
.sidebar {display: none;}
.btn-menu {display: block; font-size: 28px; margin-left: var(--gap); cursor: pointer; color: var(--color-accent);}
.cols {padding-top: var(--gap);}
.video-box embed, .video-box object, .video-box video, .video-box iframe, .video-box frame {height:100%;}
}
@media screen and (max-width: 950px) {
.wrap-center {max-width:768px;}
.short-meta-item:not(.mrating-count) {display: none;}
.footer {display: block; text-align: center;}
.footer-copyright {margin: 0 0 var(--gap) 0;}
}
@media screen and (max-width: 760px) {
.wrap-center {max-width:640px;}
.not-logged .login-avatar {display: none;}
.login-close {top: -5px;}
.login-title {font-size: 18px;}
.login-box {max-width: calc(100% - 60px); padding: var(--gap);}
.search-wrap {-ms-flex-order: 10;-webkit-order: 10;order: 10; min-width: 100%; margin: 0; margin-top: var(--gap);}
.header-btn {padding: 0 10px;}
.logo {-ms-flex-preferred-size: 0; flex-basis: 0; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1;
	max-width: 100%; min-width: 50px; position: relative; margin-right: var(--gap);}
.fcols {display: block; padding: 0; background-color: transparent; box-shadow: none;}
.fleft {margin: 0 auto 10px auto;}
.fcols:after {content: ""; display: table; clear: both;}
.short-rates {width: 100%; margin: 10px 0 0 -10px; justify-content: flex-start;}
.fcols .short-list li {padding-left: 100px;}
.mrating-count {text-align: right; margin-right: 0; margin-left: calc(var(--gap) * -1);}
.ffav, .fcompl {display: none;}
.fctrl {padding: 0;}
.dcont button {font-size:12px; padding:0 15px !important;}
.comments-tree-list .comments-tree-list {padding-left:0px !important;}
.comments-tree-list .comments-tree-list:before {display:none;}
.mass_comments_action {display:none;}
}
@media screen and (max-width: 590px) {
.wrap-center {max-width:480px;}
.short-item {width: 47% !important; margin-bottom: 10px; padding: 0; background-color: transparent; border: 0; box-shadow: none;}
.short-item .short-img {width: 100%; margin: 0; margin-bottom: 10px; padding-top: 140%; height: auto;}
.short-item .short-meta, .short-item .short-list, .short-item .short-rates, .sect-title .fal {display: none;}
.short-item .short-title {white-space: normal; font-size: 15px;}
.short-item .short-img img {position: absolute; left: 0; top: 0;}
.navigation {justify-content: center;}
.sect-title, .logo {font-size: 18px;}
.ac-inputs input {width: 100%;}
.video-box embed, .video-box object, .video-box video, .video-box iframe, .video-box frame {height:100%;}
.ui-dialog {width:100% !important;}
.upop-left, .upop-right {float:none !important; width:100% !important; margin:0; padding:0 var(--gap);}
.upop-left {margin-bottom:10px; text-align:center;}
.ui-dialog-buttonset button {display:block; margin:0 0 5px 0; width:100%;}
#dofullsearch, #searchsuggestions span.seperator {display:none !important;}
.attach .download-link {margin:0 -15px 0 0; float:none; display:block; padding:0 10px;}
.attach-info {float:none;}
}
@media screen and (max-width: 470px) {
.wrap-center22 {max-width:360px;}
.fleft {width: 100%;}
.fimg {height: 140px;}
.fimg img {height: 100%; object-fit: cover;}
.fimg:before {content: ''; position: absolute; z-index: 5;  left: 0; right: 0; bottom: 0; height: 70%;
	background: linear-gradient(to bottom, transparent 0%,var(--color-surface) 100%); opacity: 1;}
.video-box embed, .video-box object, .video-box video, .video-box iframe, .video-box frame {height:100%;}
}
.search-result-item {
  padding: var(--gap) 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--gap);
}
.search-result-title {margin: 0 0 5px 0; font-size: 18px;}
.search-result-title a {color: var(--color-text); text-decoration: none; transition: color var(--transition-speed);}
.search-result-title a:hover {color: var(--color-primary);}
.search-result-meta {margin-bottom: 8px; font-size: 13px; color: var(--color-text-muted);}
.search-result-excerpt {margin: 0 0 10px 0; color: var(--color-text); font-size: 14px; line-height: 1.5;}
.search-result-footer {display: flex; justify-content: space-between; font-size: 13px;}
.search-rating span {margin-right: 10px; padding: 2px 5px; border-radius: 3px;}
.kp-rating, .imdb-rating {background-color: var(--color-warn); color: var(--color-text);}
.search-date {color: var(--color-text-muted);}

@media (max-width: 768px) {
  .ftext {
    max-height: 120px;
    position: relative;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
  }
  .ftext::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50px;
    background: linear-gradient(to bottom, transparent, var(--color-surface));
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .ftext.expanded {
    max-height: 1000px;
  }
  .ftext.expanded::after {
    opacity: 0;
  }
  .read-more-btn {
    display: block; width: 100%; padding: 10px; margin-top: var(--gap);
    background-color: var(--color-primary);
    color: var(--color-bg);
    border-radius: var(--radius);
    text-align: center; cursor: pointer; font-weight: 500;
  }
}