/* BASIC LAYOUT
----------------------------------------------- */
.wrapper {min-width: 320px; position: relative;}
.wrapper-container {max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 20;}
.wrapper-main {padding: 0 var(--indent);}
.header__topline {font-size: 13px; font-weight: 300; padding: 8px 0;}
.header__mainline, .availability-block {background: var(--bg-header); border-bottom: 1px solid var(--bdc); 
	box-shadow: var(--bsh); position: relative; z-index: 100;}
.availability-block {padding-top: 15px; padding-bottom: 20px;}
.footer {padding-bottom: 15px; padding-top: 30px; font-size: 14px; color: rgba(255,255,255,.3);}
.content {min-height: 80vh;padding: 20px 0 40px 0;}
.fa-lg { font-size: 1.5em; /* line-height: .75em; */ vertical-align: -15%; }

.pmovie__keywords-list {
    gap: 16px;
    position: relative;
    padding-bottom: 80px;
    padding-left: 10px;
}
.pmovie__keywords-caption {text-transform: uppercase; font-size: 22px; color: hsla(0,0%,100%,.8); margin-bottom: 10px;}
.pmovie__keywords-caption .fa {color: #fc8f30; font-size: 29px; position: relative; top: 3px; margin-right: 3px;}
.pmovie__keywords-list {gap: 16px; position: relative; padding-bottom: 80px; padding-left: 10px;}
.pmovie__keywords-list > span {padding: 6px 8px;border-radius: 30px;background: #171717;display: none;}
.pmovie__keywords-list--expanded > span {display: inline-block;}
.pmovie__keywords-list--expanded {padding-bottom: 0;}
.pmovie__keywords-btn {position: absolute; bottom: 20px; left: 50%; margin-left: -20px; width: 40px; padding: 0; 
	box-shadow: 0 0 16px 0 #ff8209; border-radius: 6px 0; overflow: hidden; flex-direction: column;
	background: linear-gradient(to left, #FFC837, #FF8008); font-size: 12px;}
.pmovie__keywords-btn .fa {animation-name: bounceAlpha; animation-duration: 1.4s; animation-delay: 0.4s;
	animation-iteration-count: infinite; animation-timing-function: linear; margin: -1px;}
.pmovie__keywords-btn .fa + .fa {animation-delay: 0.2s;}
@keyframes bounceAlpha{0%{opacity:1;transform:translateY(0px) scale(1);}
	25%{opacity:0;transform:translateY(10px) scale(0.9);}
	26%{opacity:0;transform:translateY(-10px) scale(0.9);}
	55%{opacity:1;transform:translateY(0px) scale(1);}
}

#scrolltop {position: fixed; bottom: 30px; right: 2%; color: #fff; z-index: 9996;
	box-shadow: 0 0 16px 0 #ff8209; opacity: 0; visibility: hidden; border-radius: 10px 0;
	background: linear-gradient(to left, #FFC837, #FF8008); text-align: center; cursor: pointer;
	width: 50px; height: 50px; line-height: 48px; font-size: 32px; transition: all .2s linear;}
#scrolltop.is-active {opacity: 0.7; visibility: visible;}
#scrolltop.is-active:hover {opacity: 1;}
/* HEADER, NAV
----------------------------------------------- */
.header__topline .fa {color: var(--accent); margin-right: 5px; font-size: 22px; 
	vertical-align: top; position: relative; top: -3px;}
.header__submenu .fa {margin-right: 9px; top: -2px;}
.logo {min-width: 100px;height: 26px;height: 19px;display: block;margin-right: 6px;}
.logo img {display: block;height: 18px;}
.header__btn-login {height: 32px; border-radius: 16px; padding: 0 11px; margin-left: 10px;}
.header__btn-login .fa {font-size: 16px; margin-right: 5px; position: relative; top: -2px;}

.header__menu > li {position: relative;}
.header__menu > li > a {display: flex; align-items: center; padding: 0 14px; position: relative;
	height: 75px; font-size: 16px; text-transform: uppercase; color: var(--tt-darker);}
.header__menu-has-submenu > a::after {content:"\f078"; font-family:'FontAwesome'; color: var(--accent); 
	font-size: 14px; position: absolute; left: 50%; bottom: 5px; 
	transform: translateX(-50%); pointer-events: none; transition: all .2s;}
.header__menu-hidden {width: 170px; position: absolute; left: 0; top: 99%; background: #212121;}
.is-active .header__menu-hidden, .is-active .pmovie__bottom-btns-menu {opacity: 1; visibility: visible; transform: translateY(0);}
.header__menu-hidden a {display: block; padding: 12px 16px 12px 11px; font-size: 12px; text-transform: uppercase; 
	overflow: hidden; white-space: nowrap; text-overflow: ellipsis; border-left: 5px solid transparent; position: relative;}
.header__menu-has-submenu .header__menu-has-submenu > a::after {content:"\f054"; left: 100%; bottom: 50%; 
	transform: translateY(50%); margin-left: -22px;}
.header__menu-hidden .header__menu-hidden {top: 0; left: 100%; min-height: 100%; background: #161616;}
@media screen and (min-width: 1220px) {
	.header__menu li:hover > .header__menu-hidden {display: block;}
	.header__menu-hidden a:hover {border-color: var(--accent); color: var(--tt); background: rgba(0,0,0,0.2);}
	.header__menu li:hover > a::after {transform: translateX(-50%) rotate(180deg);}
	.header__menu-has-submenu li.header__menu-has-submenu:hover > a::after {transform: translateY(50%) rotate(180deg);}
}

.header__search {position: relative; width: 264px;}
.header__search input, .header__search input:focus {padding: 0 55px 0 10px; 
	background: #1c1b1b; border: 1px solid #2b2b2b; color: #d9d6d1; font-size: 12px; 
	box-shadow: none; height: 34px; line-height: 34px; border-radius: 17px;}
.header__search input:not(:focus)::placeholder {color: #d9d6d1; opacity: 1; font-size: 12px;} 
.header__search button {position:absolute; right: 0; top: 0; width: 40px; padding: 0; 
	background: none; color: var(--accent); font-size: 15px; height: 34px;}


/* EPISODES
----------------------------------------------- */
.episodes-block {background-color: var(--bg-lighter); border-radius: 13px; padding: 0 16px 16px 16px; margin-bottom: 30px;
	display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 20px 30px;}
.episodes-block__column-title {padding: 8px 0 15px 0; f;font-weight: 600;font-size: 20px;}
.episodes-block__column-title .fa {color: #fc8f30;font-size: 29px;position: relative;top: 0px;margin-right: 3px;}


.episodes-block__column-title.ln {}
.episodes-block__column-title .mdi {font-size: 30px; margin-right: 10px; display: inline-block; vertical-align: middle;
	background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent;}
.episodes-block__column-title.ln::after {content: ''; position: absolute; left: -16px; bottom: 13px; 
	height: 4px;}
.episodes-block__list li + li {margin-top: 6px;}
.ep-item {
	background-color: #0e0e0e;);
	border-radius: 7px;
	padding: 0 -1px;
	height: 36px;
	gap: 10px;
	color: var(--tt) !important;
	}
.ep-item__total-episodes {padding: 3px 0 4px; font-size: 12px; border-radius: 6px 0;
	background: var(--gradient-episode); line-height: 1.4; width: 82px; text-align: center;}
.icon-lang, .icon-server {width: 20px; height: 20px; margin-left: 10px;}
.icon-server {background: url(../images/younetu.png) 0 0 / 20px no-repeat;}
.icon-lang.VF {background: url(../images/vf1.png) 0 0 / 20px no-repeat;}
.icon-lang.VOSTFR {background: url(../images/vostfrs.png) 0 0 / 20px no-repeat;}
.icon-lang.VO {background: url(../images/vo1.png) 0 0 / 20px no-repeat;}
.ep-item:hover .ep-item__title {padding-left: 10px;}
.episode_btn{text-align: center;width: 100%;margin-top: 0;margin-bottom: 15px;font-size: 15px;padding: 10px;background: linear-gradient(to bottom, #fa742b, #fc8b2f);border-radius: 6px 0;display: block;color: #ffffff;line-height: 1.42857143;/* white-space: nowrap; *//* font-family: changa; */text-transform: uppercase;-moz-user-select: none;-ms-user-select: none;user-select: none;z-index: 20;letter-spacing: .05em;transition: none;-webkit-transition: none;}
.episode_btn:hover {background: #f46d01;color: #ffffff;}
/* SECTION
----------------------------------------------- */
.sect:not(:last-child) {margin-bottom: 35px;}
.sect__header, .filter-block {margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #343434;}
.sect__header--nobd {border: 0; margin-bottom: 20px; padding: 0;}
.sect__title {font-weight: 300; text-transform: uppercase; font-size: 20px; letter-spacing: 1px;}
.sect__title .fa {color: #fc8f30; font-size: 29px; position: relative; top: 3px; margin-right: 3px;}

.filter-block {gap: 10px 20px;}
.filter-block__select {flex: 1 1 140px; position: relative; border-radius: 2px; border: 1px solid var(--accent);}
.filter-block__select select {background: none !important; color: #fff; text-transform: uppercase;
	font-size: 11px; padding: 0 14px 0 30px; height: 34px; cursor: pointer;}
.filter-block__select::after {content:"\f0d7"; font-family:'FontAwesome'; color: var(--accent); 
	font-size: 14px; position: absolute; top: 50%; left: 12px; transform: translateY(-50%); pointer-events: none;}
.filter-block__select select option {background: #1a1a1a; border: none; text-transform: uppercase; 
	font-size: 11px; padding: 0 10px; line-height: 2;}

.site-desc {display: grid; grid-gap: 20px; line-height: 1.7; color: var(--tt-darker);}
.site-desc h1, .site-desc h2, .site-desc h3 {font-weight: 300; font-size: 18px; color: var(--tt); line-height: 1.3;}
.site-desc a {text-decoration: underline; color: var(--accent);}
.site-desc ul li {position: relative; padding-left: 25px; margin-left: 25px;}
.site-desc ul li::before {content:"\f00c"; font-family:'FontAwesome'; 
	color: var(--accent); position: absolute; left: 0; top: 0;}

/* SHORT STORY
----------------------------------------------- */
.short-item {position: relative;}
.short-item__img {display: block; padding-top: 140%; box-shadow: 2px 2px 8px 2px #000;}
.short-item__label {position: absolute; top: 5px; border-radius: 3px; padding: 3px; font-size: 9px; text-transform: uppercase;
	color: #fffdfd; background: linear-gradient(to bottom,#fb7a11 0,#c54702 100%); z-index: 6;}
.short-item__quality {left: 5px;}
.short-item__voice {right: 5px;}
.short-item__rating {position: absolute; bottom: 10px; left: 50%; z-index: 30; transform: translateX(-50%); pointer-events: none;}
.short-item__img::before {height: 100%; opacity: 1; z-index: 3; border: 0px solid #161616;
	background: linear-gradient(to bottom,rgba(0,0,0,.01) 0,rgba(0,0,0,.03) 68%,#000 100%);}
.short-item__overlay {background-color: rgba(0,0,0,0.8); font-size: 10px; 
	position: absolute; left: 0; top: 0; width: 100%; height: 100%; z-index: 5; opacity: 0;
	color: #ebe9e8; text-align: center; line-height: 1.4; padding: 30px 20px 40px 20px;}
.short-item__title {font-size: 12px; text-transform: uppercase; font-weight: 400; margin-bottom: 6px;}
.short-item__overlay-icon {font-size: 50px; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); 
	width: 80px; height: 80px; border-radius: 50%; display: grid; place-items: center; 
	color: #fff; border: 5px solid #fff; padding-left: 9px; margin-top: 5px;}
.short-item__episode-serie {margin-top: 6px;}
.short-item__desc-saison {position: absolute; left: 0; bottom: 0; right: 0; z-index: 10; 
	text-align: center; padding: 15px; color: #fff;}
.short-item__desc-saison h3 {text-transform: uppercase; font-size: 14px; font-weight: 400;}
.short-item__desc-saison p {margin-top: 6px; color: var(--tt-darker); font-size: 12px;}
.short-item--saison .short-item__img::before {background: linear-gradient(to bottom,rgba(0,0,0,.01) 0,rgba(0,0,0,.03) 50%,#000 100%);}
@media screen and (min-width: 1220px) {
	.short-item:hover .short-item__overlay {opacity: 1;}
	.short-item__img:hover {transform: scale(1.1,1.1) translateY(-5px);}
	.sect__content--popular {grid-template-columns: repeat(auto-fill,minmax(220px,1fr));}
	.short-item-3 .short-item__img:hover {transform: none;}
}
.has-carousel:not(.owl-carousel) {display: flex; overflow: hidden;}
.has-carousel:not(.owl-carousel) .short-item {flex: 0 0 calc((100% - 80px)/6); margin-right: 16px;}
.short-item-2 {grid-column: span 2;}
.short-item-2 .short-item__img {padding-top: 60%;}
.has-carousel:not(.owl-carousel) .short-item-2 {flex: 0 0 calc((100% - 32px)/3); margin-right: 16px;}
.has-carousel:not(.owl-carousel) .short-item-3 {flex: 0 0 calc((100% - 48px)/4); margin-right: 16px;}
.short-item-3 .short-item__overlay {background-color: rgba(0,0,0,0.2);}

.short-item__rating-imdb {background: url(../dleimages/rating.svg); height: 17px; width: 85px; 
	position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%); z-index: 30; 
	pointer-events: none; overflow: hidden; text-indent: -200px;}
.short-item__rating-imdb-fill {position: absolute; left: 0; top: 0; height: 100%; z-index: 1; 
	background: url(../dleimages/rating.svg) 0 -34px repeat-x;}
.sres__rating .short-item__rating-imdb {position: relative; left: 0; bottom: 0; transform: none; pointer-events: auto;}


/* SEARCH RESULTS, PAGINATION
----------------------------------------------- */
.sres {border-bottom: 1px solid #2b2b2b; position: relative; line-height: 1.4;}
.sres + .sres {margin-top: -16px;}
.sres::after, .page__list > li::after, .page__text::after {content: ''; 
	background-color: var(--accent); width: 10px; height: 10px; border-radius: 50%; 
	position: absolute; right: 0; bottom: 3px; z-index: 5; pointer-events: none;}
.sres__img {width: 70px; height: 100px; margin-right: 85px; display: block;}	
.sres__desc {display: block;}
.sres__rating {width: 25%; margin-left: 20px;}
.sres__quality {width: 120px; text-transform: uppercase; text-align: center; 
	color: rgba(255,255,255,.34); font-size: 14px;}
.sres__title {font-size: 15px;}
.sres__meta {color: rgba(255,255,255,0.5); font-size: 13px; margin-top: 6px;}

.pagination__pages {text-align: center; gap: 10px; padding: 20px 0 0 0;} 
.pagination__pages a, .pagination__pages span {
	display: inline-block;
	display: grid;
	place-items: center;
	height: 40px;
	min-width: 40px;
	padding: 0 8px;
	border-radius: 40px;
	background: var(--gradient-accent-reverse);
	font-size: 14px;
	font-weight: 700;
	}
.pagination__pages span:not(.nav_ext), .pagination__pages a:hover, .pagination__btn-loader a:hover  
{background: var(--accent-darker); color: #fff; border-color: var(--accent-darker);}


/* INNER PAGE
----------------------------------------------- */
.page__cols {display: grid; gap: 30px 30px; grid-template-columns: minmax(0,1fr) 385px; padding-top: 10px; margin-bottom: 20px;}
.side-block__title {font-size: 16px; padding-bottom: 10px; margin-bottom: 10px; 
	text-transform: uppercase; border-bottom: 1px solid #343434;}
.side-block__content {display: grid; gap: 16px 16px; grid-template-columns: repeat(auto-fill,minmax(260px,1fr));}
.side-block:not(:last-child) {margin-bottom: 30px;}

.affiche {border: 1px solid #262424; border-radius: 2px;background: linear-gradient(to right,#090909,#0f0f0f);
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12); padding: 6px; line-height: 1.4;}
.affiche__img {width: 110px; height: 150px; margin-right: 15px; display: block;}
.affiche__header {border-bottom: 1px solid #262424; margin: 5px 0 7px 0; padding-bottom: 7px;}
.affiche__title {font-size: 16px; text-transform: uppercase; color: var(--accent); font-weight: 400;}
.affiche__category {font-size: 11px; color: #989797; margin-top: 5px;}
.affiche__text {-webkit-line-clamp: 5; text-align: justify; font-size: 12px; 
	color: #c8c5c5; line-height: 1.5; font-weight: 300;}
.affiche__overlay {display: grid; place-items: center; background: rgba(0,0,0,0.3); color: var(--accent); 
	position: absolute; left: 0; right: 0; top: 0; bottom: 0; font-size: 38px; opacity: 0;}
.affiche__img:hover .affiche__overlay {opacity: 1;}

.page__player {background-color: #000; margin-bottom: 20px;}
.page__category {gap: 10px 15px; margin-bottom: 15px; font-size: 12px; font-weight: 300; line-height: 1.2;}
.page__category a {color: rgba(255,255,255,.5); display: inline-block; 
	padding-right: 15px; border-right: 1px solid rgba(255,255,255,.5);}
.page__category a:last-child {padding: 0; border: 0;}
.pmovie__title {color: var(--accent);}
.pmovie__duration {color: #dbdbdb; font-size: 12px; font-weight: 300; margin-left: 20px;}
.page__main {color: rgba(255,255,255,.8); background: linear-gradient(to right,#090909,#0f0f0f);
	border: 1px solid #262424; padding: 14px 31px; margin: 0 0 10px; border-radius: 6px; line-height: 1.5;}
.page__text {border-bottom: 1px solid #262424; position: relative; padding-bottom: 25px; margin-bottom: 15px;}
.page__text h2:first-child {
    color: #bdbdbd;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
}
.page__list > li {position: relative; border-bottom: 1px solid #262424; font-size: 14px;
	padding-bottom: 11px; margin-bottom: 11px; padding-left: 120px; min-height: 32px; color: rgba(255,255,255,.8);white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
.page__list > li > span:first-child {position: absolute; left: 0; top: 0;}
.page__list a {color: #fff;}
.page__list a:hover {color: var(--accent);}
.page__rating-count {display: inline-block; margin-left: 20px; position: relative; top: -2px;}

.pmovie__player-controls {gap: 5px; margin-bottom: 15px;}
.pmovie__player-controls > * {font-size: 14px; border: none; padding: 10px; border-radius: 6px 0; text-align: center;
	flex: 1 1 0; max-width: 100%; min-width: auto; white-space: nowrap; height: 42px; position: relative; 
	background: linear-gradient(to top,#090909,#0f0f0f); border: 1px solid #262424; color: var(--tt-darker);}
.ctrls__link {display: flex; align-items: center; justify-content: center; 
	gap: 10px; padding: 0 20px; text-transform: uppercase;}
.ctrls__link .fa {font-size: 12px; color: var(--accent);}
.ctrls__btn {font-weight: 400; text-transform: uppercase; flex: 0 0 64px; width: 64px; padding: 0;}
.ctrls__select-box {padding: 0;} 
.ctrls__select-box select {color: var(--tt-darker); font-size: 14px; padding: 10px;
	border-radius: 6px 0; height: 42px; text-align: center; padding-right: 30px; min-width: 140px;}
.ctrls__select-box select {background-color: transparent;}
.ctrls__select option {background: #202020; border: none;}

.pmovie__stream-select {margin-bottom: 20px; gap: 5px;}
.pmovie__stream-select li:hover {color: var(--tt); background-color: #30404e;}
.pmovie__stream-select li.is-active {border-left-color: var(--accent); background: #272727;}
.pmovie__stream-select li.is-active .pmovie__stream-select-server {color: var(--tt); }
.pmovie__stream-select li {cursor: pointer; color: rgba(255,255,255,.8); 
	background: linear-gradient(to right,#090909,#0f0f0f); position: relative;
	border: 1px solid #262424; border-radius: 6px; line-height: 1.5; border-left: 5px solid transparent;
	display: flex; align-items: center; gap: 0 10px; height: 50px; padding: 0 15px 0 10px; flex: 1 1 300px;}
.tabs-block__select > li::before {content: "Lien " counter(num) ":"; counter-increment: num; font-size: 12px; min-width: 40px;}
.content--counter, .pmovie__stream-select {counter-reset: num;}
.pmovie__stream-select-server {text-transform: uppercase;}
.pmovie__stream-select-server img {height: 20px; min-width: 20px; margin-right: 10px; 
	display: inline-block; vertical-align: middle; position: relative; top: -1px;}
.pmovie__stream-select-flag img {display: block; height: 15px; min-width: 15px;}
.pmovie__stream-select-date {width: 139px; text-align: right;font-size: 1'px';; white-space: nowrap;}
.pmovie__stream-select-flags {width: 33px; /* text-align: right; */ font-size: 30px; white-space: nowrap;}

.saisons-list, .episodes-list, .page__complaint {border: 1px solid #262424; border-bottom: 0; border-radius: 2px; overflow: hidden; 
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12); 
	background: linear-gradient(to right,#090909,#0f0f0f); gap: 0 0;}
.saison-list-item, .ep-item__header, .page__complaint a {display: block; border-bottom: 1px solid #262424; 
	padding: 10px 20px; font-size: 14px; cursor: pointer;}
.ep-item__header .fa {color: var(--accent); width: 26px;}
.saison-list-item:hover {background-color: var(--accent); color: #fff;}
.ep-item.is-active .ep-item__content {display: block; background-color: var(--bg); padding: 15px; border-bottom: 1px solid #262424;}
.ep-item.is-active .ep-item__header .fa::before {content:"\f04b"; padding-left: 3px;}
.ep-item__text {-webkit-line-clamp: 5; color: #dbdbdb; font-size: 12px; text-align: justify; line-height: 1.5;}
.ep-item__btn {text-align: center; margin-top: 15px;}
.ep-item__btn .btn {font-size: 12px; padding: 0 30px;}
.page__complaint a {text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.page__complaint .fa {font-size: 24px; margin-right: 10px; color: var(--accent); position: relative; top: 3px;}
.ajax-iframe{position: absolute;left: 0;top: 0;width: 100%;height: 100%;overflow: hidden;}
.ajax-plaer-1 {position: absolute;top: -5%;left: -5%; bottom: -5%;right: -5%;background-size: cover;background-position: -20% center;
	background-repeat: no-repeat;-webkit-filter: blur(1px);-moz-filter: blur(1px);filter: blur(1px);}
.ajax-plaer-3, .ajax-plaer-3:after, .ajax-plaer-2 {position: absolute;top: 0;left: 0;bottom: 0;right: 0;}
.ajax-plaer-3, .ajax-plaer-2 {background-repeat: no-repeat;background-size: 30%;background-position: center;}
.ajax-plaer-3, .ajax-plaer-3:after, .ajax-plaer-2 {position: absolute;top: 0;left: 0;bottom: 0;right: 0;}
.ajax-plaer-3:after {content: "";    background: rgba(0,0,0,.6) linear-gradient(to top right,rgba(72,165,218,.2),#2c2c2c);}
.ajax-plaer-5, .ajax-plaer-7, .ajax-plaer-10 {position: absolute;top: 0;left: 0;right: 0;z-index: 9;}
.ajax-plaer-5 {width: 100%;padding: 30px 20px;color: #fff;text-shadow: 0 1px 1px #000;}
.ajax-plaer-7,.ajax-plaer-10{display: flex;align-items: center;justify-content: center;height: 100%;width: 100%;cursor: pointer;}

.ajax-plaer-ico{
	border-radius: 50%;
    box-shadow: 0 0 31px 0 #3f5367;
    cursor: pointer!important;
    background: #fff;
    height: 90px;
    width: 90px;
        display: flex;
    align-items: center;
    justify-content: center;
}
.ajax-plaer-ico span {
    text-align: center;
    line-height: 86px;
    font-size: 95px;
    color: #fb882e;
}

.ajax-player-info{position: absolute;top: 20px;left: 20px;font-size: 18px;}
.ajax-player-info div:last-child{color: var(--tt-darker);font-size: 16px;}
.pmovie__soc-btns {margin-bottom: 0px; min-height: 66px; text-align: center;}
.pmovie__big-btns {gap: 20px; margin-bottom: 20px;}
.pmovie__big-btns .fa {margin-right: 6px;}
.pmovie__btn-big {
	color: #fff !important;
	box-shadow: inset 0px 1px 0px 0px #fa742b;
	background: linear-gradient(to bottom,#fa742b 0,#fc8b2f 100%);
	border-radius: 6px;
	border: 1px solid #fa742b;
	display: block;
	cursor: pointer;
	font-family: 'Arial';
	font-size: 25px;
	font-weight: bold;
	padding: 13px 24px;
	text-shadow: 0px 1px 0px #fa742b;
	}
.pmovie__btn-big:hover {background: linear-gradient(to top, #fa742b 5%, #fa742b 100%);}


/* TEXT BLOCK, TYPOGRAPHY, VIDEO BLOCK
----------------------------------------------- */
.full-text {line-height: 1.7; font-size: 14px; word-wrap: break-word; 
	color: rgba(255,255,255,.8); font-weight: 300;}
.full-text a {text-decoration: underline; color: var(--accent);}
.full-text img:not(.emoji), .full-text p, .full-text h1, .full-text h2, .full-text h3, .full-text h4, .full-text h5, 
.full-text > ul, .full-text > ol, .full-text table, .page__title {margin-bottom: 20px;}
.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 > ul li, .full-text > ol li {padding-left: 60px; position: relative;}
.full-text > ul li:before {content: ''; width: 8px; height: 8px; border-radius: 50%; 
	border: 3px solid var(--accent); position: absolute; top: 5px; left: 34px;}
.full-text > ol {counter-reset: num;}
.full-text > ol li:before {content: counter(num); counter-increment: num; background-color: var(--accent); color: #fff; 
	position: absolute; top: -2px; left: 17px; width: 24px; height: 30px; font-size: 14px; font-weight: 700;
	display: flex; justify-content: flex-end; align-items: center; padding-right: 6px; box-sizing: border-box;}
.full-text > ol li:after {content: ''; border: 10px solid transparent; border-left-color: var(--accent); 
	position: absolute; left: 41px; top: -2px; transform: scale(0.66,1.5); transform-origin: 0 0;}
.full-text > ul li + li, .full-text > ol li + li {margin-top: 10px;}
.full-text table, .video-inside > * {width:100%;}
.full-text table tr td {padding:10px; border:2px solid #fff;}
.full-text table tr:nth-child(2n+1) {background-color:#f2f6f9;} 
.full-text table tr:nth-child(1) {background-color:#cee0ed;}
.full-text table img:not(.emoji) {margin:0; max-width:350px}
.full-text > *:last-child {margin-bottom: 0;}
.video-responsive {padding-top: 55%; position: relative;}
.video-responsive iframe, .video-responsive > video {position: absolute; left: 0; top: 0; width: 100%; height: 100%;}
.full-text h1, .full-text h2, .full-text h3, .full-text h4, .full-text h5 {font-size: 21px;}
.full-text iframe {width: 100%; height: 400px; margin-bottom: 20px;}
.pmovie__player-info {position: absolute; z-index: 10; left: 50%; top: 50%; transform: translate(-50%,-50%); 
	text-align: center; width: 300px; min-height: 250px; padding: 25px 20px; background-color: #171717;}
.pmovie__player-info-title {font-size: 17px; padding-left: 30px; margin-bottom: 25px; position: relative;}
.pmovie__player-info-title span {color: #ffeb3b; font-size: 60px; font-weight: 700;
	position: absolute; left: 0; top: -6px; height: 40px; line-height: 1; font-family: 'Tiimes New Roman';}
.pmovie__player-info-close {width: 16px; height: 16px; cursor: pointer; position: absolute; left: 0; top: -21px;}
.pmovie__player-info-btn {color: #fff !important; box-shadow: inset 0px 1px 0px 0px #d18c4b; align-self: center;
	background: #FF8008; border-radius: 6px; padding: 6px 10px; margin-top: 25px; 
	font-size: 17px; font-weight: bold; display: inline-block;}
.pmovie__player-info-btn .fa {margin-right: 8px;}



/* COMMENTS
----------------------------------------------- */
.page__comments {margin: 0; margin-top: 20px;}
.page__comments-message {font-size: 18px; text-transform: uppercase;margin-bottom: 20px;}
.add-comments-form.form {padding: 0; margin-bottom: 20px;}
.ac-inp {gap: 10px 10px; margin-bottom: -10px;}
.add-comments-form .d-none, .comments_subscribe + br, .mass_comments_action {display: none;}
.add-comments-form__btn {color: #FFF; background: linear-gradient(to left, #FFC837, #FF8008); margin-top: -10px;
	border-radius: 6px 0; padding: 0 18px; text-transform: uppercase; font-size: 14px; font-weight: 600;}

.comment-item__title {font-weight: 600; font-size: 18px; margin-bottom: 20px;}
.comment-item {margin-bottom: 20px; color: var(--tt-darker);}
.comment-item__img {width: 40px; height: 40px; border-radius: 50%; margin-right: 10px;}
.comment-item__letter {width: 100%; height: 100%; text-transform: uppercase; font-weight: 600; 
	position: absolute; left: 0; top: 0; z-index: 5; color: #fff; font-size: 18px;}
.comment-item__author, .comment-item__author a {font-weight: 600; font-size: 14px;}
.comment-item__date {margin-top: 4px; font-size: 12px;}
.comment-item__main {margin: 8px 0 0 0; font-size: 14px;}



/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
 .owl-carousel {width: 100%; position: relative; z-index: 1;}
 .owl-carousel .owl-stage {position: relative; display:flex; justify-content:flex-start;}
 .owl-carousel .owl-stage-outer {position: relative; overflow: hidden; transform: translate3d(0px, 0px, 0px);}
 .owl-carousel .owl-item {position: relative; min-height: 10px;}
 .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-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 600ms 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 {width: 100%; height: 0;}
 .owl-prev, .owl-next {display: flex; align-items: center; justify-content: center; cursor: pointer; 
	box-shadow: none; width: 40px; height: 100%; font-size: 42px;
	color: #fbfbfb; position: absolute; top: 0;}
 .owl-prev {left: -40px;}
 .owl-next {right: -40px;}
 .owl-prev:hover, .owl-next:hover {background: rgba(0,0,0,0.3) !important; color: #fff; opacity: 1;}
 .owl-dots {text-align: center; position: absolute; left: 0; right: 0; bottom: -25px;}
 .owl-dot {display: inline-block; width: 10px; height: 10px; border-radius: 50%; 
	cursor: pointer; background: var(--bg-lighter); margin: 0 5px;}
.owl-dot.active, .owl-dot:hover {background: var(--accent);}
.owl-shorts .owl-stage-outer, .owl-shorts-2 .owl-stage-outer {overflow: visible;}
.owl-shorts .owl-item, .owl-shorts-2 .owl-item {opacity: 0; pointer-events: none; transition: opacity .2s linear;}
.owl-shorts .owl-item.active, .owl-shorts-2 .owl-item.active {opacity: 1; pointer-events: auto;}
.owl-nav .fa {transform: scale(1,1.5);}


/* ADAPTIVE, MOBILE MENU
----------------------------------------------- */
.overlay {position: fixed; z-index: 998; left: 0; top: 0; width: 100%; height: 100%; 
	opacity: 0.6; background-color: #000; cursor: pointer; display: none;}
.mobile-menu {width: 220px; height: 100%; overflow-x: hidden; overflow-y: auto;
	padding: 15px 0 0 0; z-index: 999; position: fixed; left: -280px; top: 0; transition: left .4s; 
	background: var(--bg-header); color: var(--tt);}
.mobile-menu.is-active {left: 0;}
.mobile-menu-close {cursor: pointer; display: block; left: 220px; top: -40px; position: fixed; z-index: 999;
	width: 40px; height: 40px; line-height: 40px; text-align: center; font-size: 18px; opacity: 0;
	background-color: #e84e36; color: #fff; transition: top .4s, opacity .4s;}
.mobile-menu-close.is-active {top: 0px; opacity: 1;}
body.mobile-menu-is-opened {overflow: hidden; width: 100%; height: 100%;}
.mobile-menu .header__menu {display: block; padding: 0; margin: 0;}
.mobile-menu .header__menu > li {width: 100%; margin: 0; padding: 0;}
.mobile-menu .header__menu > li > a {height: 40px;}
.mobile-menu .header__menu-hidden {width: 100%; position: static;}
.mobile-menu .header__menu > .header__menu-has-submenu > a::after {left: 100%; bottom: 7px; margin-left: -30px;}

@media screen and (max-width: 1220px) {
	.wrapper {overflow: hidden;}
	.wrapper-container {max-width:1000px;}
	.header__menu {display: none;}
	.header__mainline {padding-top: 20px; padding-bottom: 20px;}
	.header__search {flex: 1 1 0; min-width: 100px; max-width: 100%;}
	.header__btn-menu {display: flex; width: 40px; padding: 0; border-radius: 50%; font-size: 18px; margin-left: 10px;}
	.footer {justify-content: center;}
	.has-carousel:not(.owl-carousel) .short-item {flex: 0 0 calc((100% - 64px)/5);}
	.has-carousel:not(.owl-carousel) .short-item-2 {flex: 0 0 calc((100% - 32px)/3);}
	.has-carousel:not(.owl-carousel) .short-item-3 {flex: 0 0 calc((100% - 32px)/3);}
	.owl-prev {left: 0px;}
	.owl-next {right: 0px;}
	.sres__img {margin-right: 20px;}	
	.sres__rating {width: auto}
	.sres__quality {width: 40px;}
	
	.page__cols {grid-template-columns: minmax(0,1fr);}
}

@media screen and (max-width: 950px) {
	.wrapper-container {max-width:768px;}
	.has-carousel:not(.owl-carousel) .short-item {flex: 0 0 calc((100% - 48px)/4);}
	.has-carousel:not(.owl-carousel) .short-item-2 {flex: 0 0 calc((100% - 16px)/2);}
	.has-carousel:not(.owl-carousel) .short-item-3 {flex: 0 0 calc((100% - 16px)/2);}
}

@media screen and (max-width: 760px) {
	.wrapper-container {max-width:640px;}
	.header__topline {display: none;}
	.header__mainline {padding-top: 10px; padding-bottom: 10px;}
	.header__logo {flex: 1 1 0; min-width: 100px; max-width: 100%; margin-right: 10px;}
	.header__btn-login {padding: 0; background: none !important; color: var(--accent) !important;}
	.header__search {min-width: 100%; margin: 0; margin-top: 10px; order: 10;}
	.has-carousel:not(.owl-carousel) .short-item {flex: 0 0 calc((100% - 32px)/3);}
	.has-carousel:not(.owl-carousel) .short-item-2 {flex: 0 0 calc((100% - 16px)/2);}
	.has-carousel:not(.owl-carousel) .short-item-3 {flex: 0 0 calc((100% - 16px)/2);}
	
	.page__main {padding: 20px; margin: 0 var(--indent-negative);}

	.add-comments-form__input {min-width: 100%;}
	.add-comments-form__btn {width: 100%; order: 10;}
	.add-comments-form .form__row--protect .form__caption {width: 100%; margin: 0 0 10px 0;}
	.mass_comments_action, .comment-item__controls, .comment-item__rating-caption {display: none;}
}

@media screen and (max-width: 590px) {
	.wrapper-container {max-width:480px;}
	.has-carousel:not(.owl-carousel) .short-item {flex: 0 0 calc((100% - 16px)/2);}
	.has-carousel:not(.owl-carousel) .short-item-2 {flex: 0 0 100%;}
	.has-carousel:not(.owl-carousel) .short-item-3 {flex: 0 0 100%;}
	.filter-block {gap: 10px;}
	.d-grid, .items-list, #dle-content {grid-template-columns: repeat(auto-fill,minmax(140px,1fr));}
	.sres {display: grid; gap: 6px 20px; padding: 10px 0;
		grid-template-columns: 60px minmax(0,1fr) min-content; grid-auto-flow: row dense;}
	.sres > * {width: auto; margin: 0; text-align: left;}
	.sres__img {grid-row: 1 / 3;}
	.sres__desc {grid-column: span 2;}
}

@media screen and (max-width: 470px) {
	.wrapper-container22 {max-width:360px;}

	.pmovie__duration, .page__category {display: none;}
	.pmovie__title {font-weight: 700; font-size: 18px;}
	.page__list > li {padding-left: 100px;}
	.page__list > li > span:first-child {display: block; width: 80px; white-space: nowrap; 
		overflow: hidden; text-overflow: ellipsis;}
	.pmovie__stream-select-date {display: none;}
	.video-responsive {padding-top: 100%;}
}

.feedback-faq, .feedback-form {border: 1px solid #262424; border-bottom: 0; border-radius: 2px; overflow: hidden; 
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12); margin-top: 40px;
	background: linear-gradient(to right,#090909,#0f0f0f); line-height: 1.5;}
.feedback-faq__header {display: block; border-bottom: 1px solid #262424; position: relative; 
	padding: 15px 20px; padding-left: 56px; font-size: 14px; cursor: pointer; color: #fff;}
.feedback-faq__header .material-icons {color: var(--accent); font-size: 24px;
	position: absolute; left: 15px; top: 50%; transform: translateY(-50%); margin-top: -1px;}
.feedback-faq__body {background-color: #171717; color: #dbdbdb; font-size: 14px; padding: 15px; display: none;}
.feedback-faq__body a {color: var(--accent);}

.feedback-form {border-bottom-width: 1px; margin-top: 0; padding: 14px 31px;}
.feedback-form h1 {color: var(--accent); margin-bottom: 30px; font-size: 22px;}
.feedback-form__row {position: relative; padding-left: 50px; margin-bottom: 40px;}
.feedback-form__row i {font-size: 30px; position: absolute; left: 0; top: -10px; color: #cdcdcd;}
.feedback-form__submit button {padding: 0 40px; border-radius: 2px; 
	font-size: 14px; letter-spacing: 1px; height: 36px; margin-top: -20px;}
.feedback-form__row input, .feedback-form__row textarea {background: none; border-radius: 0; box-shadow: none; 
	border-bottom: 1px solid #9e9e9e; padding: 0; color: #dbdbdb; font-size: 15px;}
.feedback-form__row input:not(:focus)::placeholder, .feedback-form__row textarea:not(:focus)::placeholder 
{color: #dbdbdb; opacity: 0.7; font-size: 15px;}
.feedback-form__row--input i {top: 5px;}
.feedback-form__row--input input {height: 50px; line-height: 40px;}
.feedback-form__row > *:focus {box-shadow: none !important; border-color: var(--accent);}
.feedback-form .form__row--protect.d-none {display: none !important;}

.myButton {
	box-shadow:inset 0px 1px 0px 0px #fce2c1;
	background:linear-gradient(to bottom, #ff930f 5%, #ff5900 100%);
	background-color:#ff930f;
	border-radius:6px;
	border:1px solid #c26c21;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:28px;
	font-weight:bold;
	padding:14px 11px;
	text-decoration:none;
	text-shadow:0px 1px 0px #cc9f52;
}
.myButton:hover {
	background:linear-gradient(to bottom, #ff5900 5%, #ff930f 100%);
	background-color:#ff5900;
}
.myButton:active {
	position:relative;
	top:1px;
}