/* BASIC LAYOUT
----------------------------------------------- */
.wrapper {min-width: 320px; position: relative;}
.wrapper-container {max-width: var(--maximum-width); margin: 0 auto; position: relative; z-index: 20;}
.wrapper-main {padding: 0 var(--main-indent); background-color: #262626; box-shadow: 0 20px 60px rgba(0,0,0,0.8);;}
.header {background: var(--gradient-green); border-radius: 3px; box-shadow: var(--bsh);
	padding: 6px 20px; color: #fff; z-index: 100; position: relative; left: 0; top: 0;}
.header.sticky {padding-right: 76px; padding-left: 76px; position: sticky;
	margin: 0 var(--main-indent-negative); border-radius: 0;}
.carousels {padding-top: 20px;}
.cols {padding: 40px 0;}
.col-left {width: 240px; margin-right: 20px;}
.col-right {width: 240px; margin-left: 20px;}
.footer {margin: 0 var(--main-indent-negative); padding: 0 var(--main-indent); background-color: #161616;}
.footer__one {padding: 20px 0;}
.footer__two {margin: 0 var(--main-indent-negative); padding: 15px var(--main-indent);
	font-size: 13px; color: #999; background-color: rgba(0,0,0,0.3); text-align: center;}
.footer__menu {margin-left: 80px;}
.footer__menu a {margin-right: 30px; border-bottom: 1px dotted #eee;}

.footer__menu {padding: 0; list-style: none;}
.footer__menu li {margin: 0; padding: 0;}
.footer__menu a {display: inline-flex; align-items: center; gap: 8px;}

.footer__menu--cols {display: grid; grid-auto-flow: column; grid-template-rows: repeat(3, auto);
	row-gap: 10px; column-gap: 30px; align-content: start;}
.footer__menu--cols a {margin-right: 0;}

.footer__counter {margin-left: auto; display: flex; align-items: flex-start;}

.mt-sitecounter {
	width: 190px;
	max-width: 100%;
	padding: 10px 12px;
	border-radius: 4px;
	background-color: var(--ui-bg-darker);
	border: 1px solid var(--bdc);
	box-shadow: var(--bsh);
	position: relative;
	overflow: hidden;
}

.mt-sitecounter::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 2px;
	background: var(--gradient-green);
	opacity: 0.85;
}

.mt-sitecounter__row {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	column-gap: 10px;
	padding: 6px 0;
}

.mt-sitecounter__row + .mt-sitecounter__row {
	border-top: 1px solid rgba(255,255,255,0.06);
}

.mt-sitecounter__label {
	font-size: 12px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--grey);
	white-space: nowrap;
}

.mt-sitecounter__digits {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	font-family: 'Montserrat', 'PT Sans', sans-serif;
	font-weight: 800;
}

.mt-sitecounter__digits .mt-digit {
	min-width: 12px;
	text-align: center;
	padding: 2px 4px;
	border-radius: 3px;
	color: var(--black);
	background-color: #161616;
	box-shadow: inset 0 0 0 1px #131313, inset 1px 2px 5px rgba(0,0,0,0.4);
	line-height: 1;
	font-size: 13px;
}
	
#scrolltop, .header__btn-menu {position: absolute; right: 0; top: 0; height: 100%; width: 56px; cursor: pointer; 
	display: flex; justify-content: center; align-items: center; background-color: rgba(0,0,0,0.15); 
	font-size: 18px; opacity: 0; visibility: hidden;}
.header__btn-menu {right: auto; left: 0; background-color: var(--blue); color: #fff; font-size: 24px;}
.header.sticky #scrolltop, .header.sticky .header__btn-menu {opacity: 1; visibility: visible;}


/* HEADER
----------------------------------------------- */
.header__menu {font-size: 14px; text-transform: uppercase; padding: 20px 0;}
.header__menu a:hover {text-decoration: underline;}
.header__menu a {display: inline-flex; align-items: center; gap: 8px;}
.header__menu a .fal {font-size: 14px; opacity: 0.9;}

/* Header menu horizontal carousel (when many links) */
.header-menu-carousel {position: relative;}
.header-menu-carousel__viewport {overflow: hidden;}
.header-menu-carousel__viewport .header__menu {
	padding: 20px 0;
	margin: 0;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start !important;
	gap: 24px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.header-menu-carousel__viewport .header__menu::-webkit-scrollbar {display: none;}

.header-menu-carousel__btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	border-radius: 17px;
	border: 1px solid var(--bdc);
	background: #161616;
	color: #eee;
	box-shadow: var(--bsh);
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 5;
}
.header-menu-carousel__btn:hover {background: #1d1d1d;}
.header-menu-carousel__btn.is-disabled {opacity: 0.35; pointer-events: none;}
.header-menu-carousel__btn--prev {left: -6px;}
.header-menu-carousel__btn--next {right: -6px;}
.header-menu-carousel.is-active .header-menu-carousel__btn {display: flex;}

.header-menu-carousel.is-active::before,
.header-menu-carousel.is-active::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 30px;
	pointer-events: none;
	z-index: 4;
}
.header-menu-carousel.is-active::before {left: 0; background: linear-gradient(to right, #262626 0%, rgba(38,38,38,0) 100%);}
.header-menu-carousel.is-active::after {right: 0; background: linear-gradient(to left, #262626 0%, rgba(38,38,38,0) 100%);}
.logo {display: inline-flex; flex-direction: column; justify-content: center; height: 46px; padding-left: 50px; 
	line-height: 1; background: url(../images/logo.svg) 0 center / 40px no-repeat;}
.logo__title {text-transform: uppercase; font-weight: 700; font-size: 23px; color: #fff; letter-spacing: 1px;}
.logo__caption {font-size: 13px; color: #fff; opacity: 0.8; margin-top: 1px;}

/* MP3Ocean-style logo variant (text badge + domain) */
.logo--ocean .logo__title {
	white-space: nowrap;
	font-family: 'Montserrat', 'PT Sans', sans-serif;
	font-weight: 800;
	font-size: 22px;
	letter-spacing: 0.5px;
}
.logo--ocean .logo__title span:not(.logo-domain) {
	background-color: #3e9cb3;
	display: inline-block;
	padding: 0 6px;
	margin: 0 4px;
	border-radius: 4px;
	color: #fff;
}
.logo--ocean .logo__title .logo-domain {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
	opacity: 0.9;
}
.header__btn-login {display: flex; align-items: center; justify-content: center; height: 36px; 
	border-radius: 18px; padding: 0 20px; text-transform: uppercase; font-size: 14px; 
	box-shadow: 0 2px 4px rgba(68,68,68,0.3); cursor: pointer;
	background: linear-gradient(to top, #40739e 0%, #487eb0 50%, #5794ce 100%);}
.header__btn-login .fal:first-child {margin: -2px 10px 0 -17px; height: 30px; width: 30px; border-radius: 15px; 
	display: flex; align-items: center; justify-content: center; font-size: 12px;
	background: rgba(0,0,0,0.15);}
.header__btn-login::after {content:"\f178"; font-weight: 300; font-family:'Font Awesome 5 Pro'; margin-left: 10px;}
.header__btn-login:hover .fal {background-color: #fff; color: var(--blue);}
.header__search {position:relative; margin: 0 80px;}
.header__search input, .header__search input:focus {padding: 0 60px 0 20px; border-radius: 3px; 
	background: rgba(0,0,0,0.2); color: #fff; box-shadow: none; height: 46px; line-height: 46px;}
.header__search input:not(:focus)::placeholder {color: #fff; opacity: 0.8; font-size: 16px;} 
.header__search button {position:absolute; right: 0; top: 0; width: 60px; padding: 0; 
	background: none; color: var(--black); font-size: 18px; height: 46px;}


/* CAROUSELS
----------------------------------------------- */
.carousels__caption {text-transform: uppercase; margin-right: 20px; font-size: 18px;}
.carousels__tabs div {height: 30px; line-height: 30px; cursor: pointer; border-radius: 15px; 
	padding: 0 15px; margin-right: 5px;}
.carousels__tabs div.is-active {background-color: var(--blue2); color: #fff;}
.carousels__tabs div:not(.is-active):hover {background-color: #161616;}
.carousels__header {margin-bottom: 20px;}
.carousel-item {display: block; overflow: hidden; position: relative; border-radius: 2px;}
.carousel-item::before {content: ''; position: absolute; left: 0; bottom: 0; right: 0; height: 70%; 
	background: linear-gradient(to top, #000 0%, transparent 100%); z-index: 1; opacity: 0.8;}
.carousel-item__label {background-color: var(--blue-a); color: #fff; padding: 3px 6px; font-size: 12px; 
	border-radius: 2px; position: absolute; right: 8px; top: 8px; z-index: 10;}
.carousel-item__label {cursor: pointer;}
.carousel-item__label a {color: inherit; text-decoration: none;}
.carousel-item__label a:hover {text-decoration: none;}
.carousel-item__title {position: absolute; left: 0; right: 0; bottom: 0; z-index: 5;
	font-size: 15px; padding: 10px 15px; line-height: 1.4;}
.carousel-item:hover .carousel-item__title {opacity: 0;}
.carousels__content {min-height: 199px;}


/* SECTION
----------------------------------------------- */
.sect__title {font-size: 22px; font-weight: 400; padding-left: 30px; position: relative; text-transform: uppercase;}
.sect__title::before {content:"\f0ab"; font-weight: 300; font-family:'Font Awesome 5 Pro'; 
	position: absolute; left: 0; top: 3px; color: var(--blue); text-shadow: 0 2px 2px rgba(68,68,68,0.1);}
.sect__header {margin-bottom: 20px;}

/* SEO HERO (title + description block, zmusic-inspired)
----------------------------------------------- */
.mt-seoHero {
	background: linear-gradient(135deg, rgba(72,126,176,0.22), rgba(0,0,0,0.0) 55%), #161616;
	border: 1px solid var(--bdc);
	border-radius: 6px;
	box-shadow: var(--bsh);
	padding: 18px;
	gap: 18px;
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
	align-items: center;
	flex-wrap: nowrap;
}

.mt-seoHero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 15% 20%, rgba(22,160,133,0.18), transparent 55%);
	pointer-events: none;
}

.mt-seoHero > * {position: relative; z-index: 1;}

.mt-seoHero__left {flex: 0 0 auto;}
.mt-seoHero__right {min-width: 0;}

.mt-seoHero__img {
	width: 160px;
	aspect-ratio: 1 / 1;
	border-radius: 6px;
	box-shadow: 0 12px 30px rgba(0,0,0,0.55);
	border: 1px solid rgba(255,255,255,0.08);
	background: rgba(0,0,0,0.25);
	overflow: hidden;
	position: relative;
}

.mt-seoHero__img img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

.mt-seoHero__title {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.2px;
	text-transform: uppercase;
}

.mt-seoHero__caption {
	margin-top: 10px;
	color: #999;
	font-size: 16px;
	line-height: 1.55;
	max-width: 72ch;
}

.mt-seoHero .mt-tags-switch {margin: 14px 0 0;}

.mt-seoHero__actions {
	margin-top: 14px;
	gap: 10px;
	flex-wrap: wrap;
}

.mt-seoHero__actions .btn {
	height: 32px;
	padding: 0 14px;
	font-size: 14px;
	border-radius: 16px;
	text-transform: none;
	box-shadow: none;
}

/* Top100 period buttons (module sets these classes) */
.btn.btn-nobg {
	background-color: #161616;
	border: 1px solid var(--bdc);
	color: #eee;
}

.btn.btn-nobg:hover {
	background-color: #1d1d1d;
	border-color: #1d1d1d;
}

.btn.btn-border {
	background: var(--gradient-blue);
	border: 1px solid rgba(0,0,0,0.15);
	color: #fff;
}

@media screen and (max-width: 760px) {
	.mt-seoHero {padding: 14px; gap: 12px;}
	.mt-seoHero {flex-direction: column; align-items: stretch;}
	.mt-seoHero__left {width: 100%; display: flex; justify-content: center;}
	.mt-seoHero__img {width: 160px; max-width: 72vw; margin: 0 auto; aspect-ratio: 1 / 1;}
	.mt-seoHero__title {font-size: 20px;}
	.mt-seoHero__caption {font-size: 14px;}
}

.mt-tags-switch {gap: 8px; margin: 0 0 12px; flex-wrap: wrap;}
.mt-tags-switch .btn {height: 32px; padding: 0 14px; font-size: 14px; background-color: #161616; border: 1px solid var(--bdc);}
.mt-tags-switch .btn:hover {background-color: #1d1d1d; border-color: #1d1d1d;}
.mt-tags-switch .btn.is-active {background-color: var(--blue2); border-color: var(--blue2); color: #fff;}

.sect__link-top {background: var(--gradient-blue); color: #fff; font-size: 15px; text-transform: uppercase; 
	padding: 8px 20px 8px 50px; position: relative; border-radius: 3px;}
.sect__link-top span {font-size: 18px; font-weight: 700; text-decoration: underline; 
	color: #deb663; margin-left: 3px;}
.sect__link-top::before {content: ''; position: absolute; left: -6px; bottom: 0px; 
	background: url(../images/trophy.svg) 0 0 / contain no-repeat; width: 50px; height: 50px;}
.sect__link-top:hover {color: #000; background-size: 250% 100%;}
.speedbar {font-size: 13px; color: #999; margin-bottom: 20px; text-transform: uppercase;
	padding: 10px 12px; border: 1px solid var(--bdc); border-radius: 2px;}
.speedbar1 a:after {display: inline; content: '/'; margin: 0 5px;}
.speedbar a {color: #eee;}
.speedbar a:hover {text-decoration: underline;}
.desc {width: 100%; display: grid; grid-gap: 20px; line-height: 1.7; color: #999; 
	padding-top: 40px; margin-top: 40px; border-top: 1px solid var(--bdc);}
.desc h1, .desc h2, .desc h3 {font-weight: 400; font-size: 19px; text-transform: uppercase; color: #eee; line-height: 1.3;}
.desc ul li {position: relative; padding-left: 25px; margin-left: 25px;}
.desc ul li::before {content:"\f00c"; font-weight: 300; font-family:'Font Awesome 5 Pro'; 
	color: var(--blue); position: absolute; left: 0; top: 0;}
	
/* Адаптирован и доработан DLETM.RU */

/* SHORT ITEM
----------------------------------------------- */
.sect__content--grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	grid-gap: 16px;
	align-items: stretch;
}

@media screen and (min-width: 1400px) {
	.sect__content--grid {
		grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	}
}

@media screen and (max-width: 760px) {
	.sect__content--grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-gap: 14px;
	}
	.mt-card__body {padding: 10px;}
	.mt-card__title {font-size: 14px;}
	.mt-card__meta {font-size: 12px;}
	.mt-card__desc {-webkit-line-clamp: 2;}
	.mt-card__btn {height: 30px; font-size: 13px; padding: 0 12px;}
}

@media screen and (max-width: 470px) {
	.sect__content--grid {grid-gap: 10px;}
	.mt-card__title {font-size: 13px;}
}

.sect__content--grid .pagination,
.sect__content--grid .navigation,
.sect__content--grid .splitnewsnavigation,
.sect__content--grid .dle-comments-navigation,
.sect__content--grid > *:not(.mt-card) {
	grid-column: 1 / -1;
}

.mt-card {
	background:
		linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0) 44%),
		#161616;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 12px;
	box-shadow: 0 12px 30px rgba(0,0,0,0.45);
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
	will-change: transform;
}

.mt-card:hover {
	transform: translateY(-2px);
	border-color: rgba(255,255,255,0.14);
	box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}

.mt-card:focus-within {
	transform: translateY(-2px);
	border-color: rgba(255,255,255,0.18);
	box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}

.mt-card__posterWrap {
	position: relative;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	background: radial-gradient(circle at 25% 20%, rgba(87,148,206,0.22), rgba(0,0,0,0.88) 70%);
}

.mt-card__posterWrap .img-responsive,
.mt-card__posterWrap .img-responsive--portrait,
.mt-card__posterWrap .img-fit-cover {
	border-bottom: 0;
}

.mt-card__posterWrap img {
	transition: transform .22s ease, filter .22s ease;
}

.mt-card:hover .mt-card__posterWrap img {
	transform: scale(1.02);
}

.mt-card__label {
	background: rgba(0,0,0,0.55);
	color: #fff;
	padding: 5px 10px;
	font-size: 12px;
	border-radius: 999px;
	position: absolute;
	left: 10px;
	top: 10px;
	z-index: 10;
	border: 1px solid rgba(255,255,255,0.14);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}
.mt-card__label a {color: inherit; text-decoration: none;}
.mt-card__label a:hover {text-decoration: none;}

.mt-card__poster {
	display: block;
	border-bottom: 0;
}

.mt-card__audioSrc,
.js-audio-src {
	display: none;
}

/* Audio visualizer layer (p5) + fallback background
----------------------------------------------- */
.mt-audioPosterFallback {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 30% 18%, rgba(87,148,206,0.25), rgba(0,0,0,0.85) 70%),
		linear-gradient(135deg, rgba(24,34,46,0.55), rgba(0,0,0,0.85));
	pointer-events: none;
	z-index: 1;
}

.mt-p5viz {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 2;
}

.mt-p5viz canvas {
	position: absolute;
	left: 0;
	top: 0;
	width: 100% !important;
	height: 100% !important;
	display: block;
}

.mt-card__audioBtn {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 54px;
	height: 54px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.18);
	background: rgba(0,0,0,0.55);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(0,0,0,0.35);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	cursor: pointer;
	transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
	z-index: 5;
}

.mt-card__audioBtn:hover {
	background: rgba(0,0,0,0.72);
	border-color: rgba(255,255,255,0.28);
	transform: translate(-50%, -50%) scale(1.03);
}

.mt-card__audioBtn:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(87,148,206,0.35), 0 8px 24px rgba(0,0,0,0.35);
}

.mt-card__audioBtn.is-playing {
	background: rgba(64,115,158,0.75);
	border-color: rgba(64,115,158,0.9);
}

.mt-card__audioBtn .fal {
	font-size: 18px;
	margin-left: 2px;
}

.mt-card__rating {
	position: absolute;
	right: 10px;
	top: 10px;
	background: rgba(0,0,0,0.65);
	color: #fff;
	padding: 4px 8px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 12px;
	border: 1px solid rgba(255,255,255,0.14);
}

.mt-card__body {
	padding: 12px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.mt-card__title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.2px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.mt-card__title a:hover {text-decoration: underline;}

.mt-card__meta {
	margin-top: 6px;
	font-size: 12px;
	color: #999;
}

.mt-card__meta a {color: #ac8b49;}
.mt-card__meta a:hover {text-decoration: underline;}

.mt-card__desc {
	margin-top: 10px;
	opacity: 0.75;
	line-height: 1.55;
	-webkit-line-clamp: 3;
}

.mt-card__actions {
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid rgba(255,255,255,0.08);
	display: flex;
	align-items: center;
	gap: 10px;
}

.mt-card__btn {
	height: 32px;
	font-size: 14px;
	padding: 0 14px;
	border-radius: 999px;
}

.mt-card__views {
	margin-left: auto;
	font-size: 12px;
	color: #999;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(0,0,0,0.25);
	border: 1px solid rgba(255,255,255,0.08);
}

.mt-card__views .fal {margin-right: 6px; opacity: 0.7;}

.mt-card__views .fal {margin-right: 0;}

.mt-card__downloads {
	margin-left: 0;
	font-size: 12px;
	color: #999;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(0,0,0,0.25);
	border: 1px solid rgba(255,255,255,0.08);
}

.mt-card__downloads .fal {margin-right: 6px; opacity: 0.7;}

.mt-card__downloads .fal {margin-right: 0;}

.item--announce {box-shadow: var(--bsh); border: 1px solid var(--bdc); border-radius: 3px; margin-bottom: 20px;}
.item__header {border-bottom: 1px solid var(--bdc); padding: 10px 15px;}
.item__cols {padding: 15px;}
.item__img {width: 180px; height: 260px; display: block; margin-right: 15px; border-radius: 2px;}
.item__label {background-color: var(--blue-a); color: #fff; padding: 3px 6px; font-size: 12px; 
	border-radius: 2px; position: absolute; left: 8px; top: 8px; z-index: 10;}
.item__label a {color: inherit; text-decoration: none;}
.item__label a:hover {text-decoration: none;}
.item__title {font-size: 19px; font-weight: 400;}
.item__meta {margin-top: 8px; font-size: 13px; color: #999;}
.item__meta-item a, .item__category a, .desc a {color: #ac8b49;}
.item__meta-item + .item__meta-item::before {content: '/'; opacity: 0.3; display: inline; margin: 0 8px;}
.item__rating-value {background-color: var(--green); color: #fff; border-radius: 2px; 
	padding: 4px 6px; font-weight: 700; font-size: 12px; margin-left: 6px; text-align: center; min-width: 23px;}
.item__text {-webkit-line-clamp: 7; line-height: 1.6; opacity: 0.7;}
.item__footer {font-size: 13px; margin-top: 15px;}
.item__category-icon {width: 28px; height: 28px; border-radius: 50%; background-color: var(--yellow); color: #000; 
	display: inline-block; text-align: center; line-height: 28px; margin-right: 6px;}
.item__size .fal {margin-right: 8px; opacity: 0.7;}
.item__fav a {color: var(--yellow); margin: 0 20px; font-size: 16px;}
.item__btn {height: 36px; padding: 0 12px 0 43px; position: relative;}
.item__btn::before {content: ''; position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
	background: url(../images/ut.svg) 0 0 / 100% auto no-repeat; width: 20px; height: 20px;}
.item__header a:hover, .item__category a:hover, .desc a, .item__ctrl .item__fav a:hover {text-decoration: underline;}
a.item__img:hover {opacity: 0.8;}
.item__rating--likes > * {background-color: #6ab04c; color: #fff !important; font-size: 12px; display: block; 
	border-radius: 2px; padding: 4px 6px; font-weight: 700;}
.item__rating--likes > a:hover {text-decoration:none;}
.item__rating--likes > * + * {background-color: #eb4d4b; margin-left: 5px;}
.item__rating--likes .fal {margin-right: 5px;}


/* SIDEBARS
----------------------------------------------- */
.side-block {padding: 15px; border-radius: 3px; background-color: #161616;
    border: 1px solid var(--bdc); box-shadow: var(--bsh); margin-bottom: 20px;}
.side-block__title {text-transform: uppercase; margin-bottom: 15px; font-size: 18px;}
.side-block--bg-22 {background-color: var(--green);}
.side-block--bg-none {background: none; border: 0; box-shadow: none; padding: 0;}
.side-block--sticky {position: sticky; left: 0; top: 80px;}
.side-block:last-child, .poster-item:last-child {margin-bottom: 0;}
.side-block--nav {border-radius: 4px; padding-bottom: 5px; border: 1px solid var(--green);}
.rkl {text-align: center;}
.posters-nav {margin-bottom: 15px;}

.nav > li {position: relative; margin: 0 -15px;}
.nav__btn {position: absolute; right: 15px; top: 10px; width: 16px; height: 16px; border-radius: 3px; font-size: 12px;
	background-color: var(--green); color: #eee; text-align: center; line-height: 16px; cursor: pointer;}
.nav__btn:hover {background-color: var(--blue); color: #fff;}
.is-active .nav__btn .fal {content:"\f068";}
.nav > li > a {display: flex; align-items: center; gap: 10px;
	padding: 8px 42px 8px 15px; border-top: 1px solid rgba(255,255,255,0.1);}
.nav > li:hover > a {background-color: rgba(255,255,255,0.1);}
.nav > li.submenu.is-active > a {background-color: var(--blue); color: #fff;}

.nav__cat-icon {flex: 0 0 26px; width: 26px; height: 26px; border-radius: 3px;
	overflow: hidden; background-color: #161616; border: 1px solid var(--bdc);}
.nav__cat-icon img {display: block; width: 100%; height: 100%; object-fit: cover;}

.nav__title {flex: 1 1 auto; min-width: 0;}

.nav__count {margin-left: auto; margin-right: 24px; display: inline-flex; align-items: center; justify-content: center;
	min-width: 26px; height: 18px; padding: 0 6px; border-radius: 2px;
	font-size: 12px; color: #999; background-color: rgba(0,0,0,0.3); border: 1px solid var(--bdc);}
.nav__hidden {background-color: #212121; padding: 12px 0; display: none;}
.nav__hidden a {display: flex; align-items: center; gap: 10px;
	padding: 6px 42px 6px 15px; position: relative;}
.nav__hidden a:hover {background-color: rgba(0,0,0,0.3);}
.nav__hidden .nav__count {margin-right: 20px; height: 16px; font-size: 11px; padding: 0 5px; opacity: 0.9;}
.nav__hidden a::before {content:"\f054"; font-weight: 300; font-family:'Font Awesome 5 Pro'; 
	position: absolute; right: 15px; top: 6px; opacity: 0.6; font-size: 12px;}

.poster-item {margin-bottom: 15px; display: block;}
.poster-item__img {position: relative;}
.poster-item__title {text-transform: uppercase; margin-top: 10px; font-size: 13px;}
.poster-item__meta {position: absolute; left: 10px; right: 10px; bottom: 10px; z-index: 5; 
	background-color: var(--black-a); color: #eee; border-radius: 3px; overflow: hidden;}
.poster-item__meta > * {text-align: center; font-size: 14px; padding: 6px;}
.poster-item__rating-caption {font-size: 12px;}
.poster-item__rating-value > span {color: var(--blue); font-size: 22px;}
.poster-item__size {font-weight: 700; background-color: var(--blue-a);}
.poster-item__size-value {padding-top: 5px;}
.poster-item__category, .poster-item__year {font-size: 12px;}
.poster-item__category {background-color: var(--blue-a);}
.sect__content--top .poster-item {margin: 0; max-width: 100%;}
.sect__content--top .poster-item__meta > * {min-width: 100%;}
.sect__content--top .poster-item__size-icon {display: none;}

.popular li + li {margin-top: 10px; padding-top: 10px; border-top: 1px solid #262626;}
.popular-item {position: relative; font-size: 14px; line-height: 1.4;}
.popular-item__img {width: 50px; height: 50px; border-radius: 50%; margin-right: 10px; position: relative; overflow: hidden;
	border: 2px solid #14e688; box-sizing: border-box; background-color: #161616;}
.popular-item__desc small {color: #999; font-size: 12px;}
.popular-item:hover .popular-item__title, .poster-item:hover .poster-item__title {text-decoration: underline;}
.popular {counter-reset: num;}
.popular-item::before {content: counter(num); counter-increment: num; background-color: var(--yellow); color: #000; 
	width: 20px; height: 20px; border-radius: 50%; line-height: 20px; text-align: center; font-size: 11px; 
	box-shadow: 0 0 0 3px #161616; position: absolute; left: -8px; top: 0; z-index: 7;}

.popular-item__img .mt-card__audioBtn {
	border-width: 1px;
}

.popular-item__img .mt-card__audioBtn .fal {
	font-size: 14px;
}


/* PAGINATION
----------------------------------------------- */
.pagination {text-align: center; padding-top: 10px;}
.pagination__btn-loader a, .pagination__btn-loader span {display: inline-flex; justify-content: center; align-items: center; 
	height: 32px; padding: 0 80px; background: var(--gradient-green); color: #fff; border-radius: 3px; margin: -10px 0 10px;}
.pagination__pages a, .pagination__pages span {display: inline-block; margin: 10px 5px 0 5px; line-height: 30px; 
	padding: 0 8px; min-width: 36px; border-radius: 2px; border: 1px solid var(--bdc); color: #ccc;}
.pagination__pages span:not(.nav_ext), .pagination__pages a:hover  
{background: var(--green); color: #fff; border-color: var(--green);}
.pagination__pages--full a, .pagination__pages--full span {line-height: 30px; min-width: 30px; font-size: 14px;}


/* INNER PAGE
----------------------------------------------- */
.page__main, .page__comments, .page__add-comms, .add-comments-form.form {box-shadow: var(--bsh); 
	border: 1px solid var(--bdc); border-radius: 3px; margin-bottom: 20px;}
.page__add-comms {background: #161616; padding: 15px; margin-bottom: 0;}
.page__add-comms .page__comments-title {color: #eee;}
.page__comments, .page__desc {padding: 15px;}
.sect--related, .page__footer {padding: 15px; border-top: 1px solid var(--bdc);}
.page__footer {background-color: #161616; border-radius: 0 0 3px 3px;}
.page__complaint {color: #999; font-size: 12px; line-height: 1.5; padding-left: 38px; position: relative;}
.page__complaint a {text-transform: uppercase; font-weight: 700; color: var(--yellow); font-size: 13px; display: block;}
.page__complaint::before {content:"\f05a"; font-weight: 300; font-family:'Font Awesome 5 Pro'; 
	position: absolute; left: 0; top: -3px; color: #c0392b; font-size: 28px;}

.page__header .item__rating-value {background-color: var(--blue2); color: #000;}
.page__header {
	background: linear-gradient(135deg, rgba(72,126,176,0.18), rgba(0,0,0,0) 55%), #161616;
	color: #eee;
	position: relative;
	padding: 18px;
	border-radius: 10px 10px 0 0;
	margin-bottom: 0;
	min-height: unset;
	display: grid;
	grid-template-columns: 200px 1fr;
	grid-template-rows: auto auto 1fr auto;
	gap: 12px 18px;
	align-items: start;
}

.page__poster {
	width: 200px;
	height: 280px;
	border-radius: 10px;
	position: relative;
	left: auto;
	grid-column: 1;
	grid-row: 1 / span 4;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.10);
	box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}

.page__header h1 {
	grid-column: 2;
	margin: 0;
	font-size: 26px;
	line-height: 1.2;
	letter-spacing: 0.2px;
}

.page__header .item__meta {
	grid-column: 2;
	margin-top: 0;
	gap: 10px;
	row-gap: 8px;
}

.page__header .item__meta-item {
	background: rgba(0,0,0,0.22);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 999px;
	padding: 6px 10px;
}

.page__header .item__footer {
	grid-column: 2;
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #cfcfcf;
}

.page__header .item__ctrl {grid-column: 2; margin-top: 0;}

.page__header .item__btns {
	grid-column: 1 / -1;
	margin-top: 4px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}



.page__posterVideoFallback {position: absolute; left: 0; top: 0; width: 100%; height: 100%;
	background: radial-gradient(circle at 30% 20%, rgba(64,115,158,0.35), rgba(0,0,0,0.85) 70%);
	display: flex; align-items: center; justify-content: center;
	color: #fff; pointer-events: none;
	transition: opacity .15s ease;
}
.page__posterVideoFallback .fal {font-size: 46px; opacity: 0.95; background: rgba(0,0,0,0.35);
	width: 78px; height: 78px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
	border: 1px solid rgba(255,255,255,0.25);
}
.page__poster.is-video-playing .page__posterVideoFallback {opacity: 0;}
.page__poster.is-video-ready .page__posterVideoFallback {opacity: 0;}
.page__posterVideo {position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; display: block; background: #000;}
.img-fit-cover video {width: 100%; height: 100%; object-fit: cover; display: block;}

/* Video hover covers (cards/carousels)
----------------------------------------------- */
.mt-videoCover {position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; display: block; background: #000;}
.mt-videoCover {pointer-events: none;}
.mt-videoFallback {position: absolute; left: 0; top: 0; width: 100%; height: 100%;
	background: radial-gradient(circle at 30% 20%, rgba(64,115,158,0.25), rgba(0,0,0,0.75) 70%);
	display: flex; align-items: center; justify-content: center;
	color: #fff; pointer-events: none;
	transition: opacity .15s ease;
}
.is-video-ready .mt-videoFallback {background: transparent;}
.is-video-ready .mt-videoFallback .fal {background: rgba(0,0,0,0.15); border-color: rgba(255,255,255,0.18);}
.mt-videoFallback .fal {font-size: 38px; opacity: 0.95; background: rgba(0,0,0,0.30);
	width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
	border: 1px solid rgba(255,255,255,0.22);
}
.is-video-playing .mt-videoFallback {opacity: 0;}
.page__header a {color: #ac8b49;}
.page__header h1 {font-size: 22px;}
.page__header h1 a {margin-left: 10px; font-size: 12px; opacity: 0.5;}
.page__header .item__meta a, .page__header .item__category a {border-bottom: 1px dotted #ccc;}
.page__header .item__meta a:hover, .page__header .item__category a:hover {border-color: transparent;}
.page__header .item__size .fal {opacity: 0.8;}
.page__header .item__size {margin-right: 15px;}
.page__header .item__rating-1 {position: relative; top: -1px;}
.item__ctrl {margin-top: 10px;}
.item__ctrl .item__fav a {margin: 0; color: #eee; margin-right: 15px; 
	height: 30px; line-height: 30px; display: inline-block;}
.item__ctrl .item__fav a .fal, .item__ctrl .item__fav a .fas {margin-right: 8px; color: #b8b8b8;}
.item__ctrl > a {display: inline-flex; align-items: center; height: 30px; border-radius: 15px; 
	padding: 0 20px; background-color: #c0392b; color: #fff;}
.item__ctrl > a:hover {background-color: var(--blue2); color: #fff;}
.item__btn--online, .item__btn--trailer {background: none; border: 1px solid var(--blue); padding: 0 10px; margin-left: 10px;}
.item__btn--trailer {border-color: var(--blue2); margin-left: 10px;}
.item__btn--online::before, .item__btn--trailer::before {display: none;}
.item__btns > * {font-size: 15px; margin-top: 15px; color: #fff !important;}

/* likes rating shown in action buttons row */
.item__btns .item__rating--likes {height: 36px; padding: 0 10px; margin-left: 10px;
	border: 1px solid var(--blue2); border-radius: 2px; background: none;}
.item__btns .item__rating--likes > * {position: relative; top: -1px;}

.page__list {line-height: 1.6; padding: 15px; font-size: 14px; border-bottom: 1px solid var(--bdc);}
.page__list span {font-weight: 700; margin-right: 6px;}
.page__list a {color: var(--blue); border-bottom: 1px dotted var(--blue);}
.page__subtitle {font-size: 16px; font-weight: 700; margin-bottom: 15px;}
.page__text {margin-top: -5px; opacity: 0.7;}
.page__screenshots {padding: 15px;}
.page__screenshots br {display: none;}
.page__screenshots, .page__screenshots .xfieldimagegallery {display: grid; grid-gap: 15px 15px; 
	grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); grid-auto-flow: row dense;}
.page__screenshots .xfieldimagegallery, .page__screenshots .page__subtitle {grid-column: 1 / -1; margin: 0;}
.page__screenshots a, .page__screenshots img, .page__screenshots li {height: 100px; display: block !important; 
	margin: 0 !important; max-width: 100% !important; width: 100%;}
.page__screenshots img {width: 100%; object-fit: cover;}
.page__player-select {background-color: #161616;}
.page__player-select div {cursor: pointer; line-height: 40px; font-weight: 700; padding: 0 20px;}
.page__player-select div.is-active {background-color: var(--green); color: #fff;}

.page__dl {padding: 15px;}
.page__dl-title {text-transform: uppercase; font-size: 18px; color: var(--yellow); text-align: center; margin-bottom: 15px;}
.fdl-btn {display: block; position: relative; box-shadow: var(--bsh); text-decoration: none; padding: 15px 15px 15px 130px;
	border: 1px solid var(--bdc); border-radius: 3px; background: var(--blue); color: #fff !important; overflow: hidden;}
.fdl-btn-title {text-transform: uppercase; font-weight: 700; word-wrap: break-word;}
.fdl-btn-size {text-transform: uppercase; font-size: 14px; margin-top: 5px; margin-bottom: 10px; opacity: 0.9;}
.fdl-btn-caption {opacity: 0.7; font-size: 14px;}
.fdl-btn-dl {font-size: 12px; text-transform: uppercase; margin-left: 15px;}
.fdl-btn > * {position: relative; z-index: 3;}
.fdl-btn::before {content: ''; width: 50px; height: 50px; border-radius: 50%; margin-top: -25px;
	background: url(../images/ut.svg) 0 0 / 100% auto no-repeat; position: absolute; left: 40px; top: 50%; 
	box-shadow: 0 0 0 15px rgba(0,0,0,0.13), 0 0 0 30px rgba(0,0,0,0.08), 0 0 0 45px rgba(0,0,0,0.04);}


/* TEXT BLOCK, TYPOGRAPHY, VIDEO BLOCK
----------------------------------------------- */
.full-text {line-height: 1.6; font-size: 15px; word-wrap: break-word;}
.full-text a {text-decoration: underline; color: #5278b1;}
.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 #fac40c; position: absolute; top: 4px; left: 34px;}
.full-text > ol {counter-reset: num;}
.full-text > ol li:before {content: counter(num); counter-increment: num; background-color: #fac40c; color: #000; 
	position: absolute; top: -2px; left: 17px; width: 24px; height: 30px; font-size: 14px; font-weight: 600;
	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: #fac40c; 
	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: 60%; 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: 22px;}


/* COMMENTS
----------------------------------------------- */
.page__comments-list .message-info:last-child {margin-bottom: 0;}
.page__comments-title {font-size: 18px; text-transform: uppercase; margin-bottom: 15px;}
.page__comments-info {font-size: 14px; margin-bottom: 15px; margin-top: -15px; 
	color: var(--grey); line-height: 1.5;}
.page__comments-info .fal {color: #eb4d4b; margin-right: 6px;}
.page__add-comms .add-comments-form.form {
	background: transparent;
	padding: 0;
	margin: 0;
	border: 0;
	box-shadow: none;
}

.add-comments-form .form__textarea-inside {
	background: linear-gradient(135deg, rgba(72,126,176,0.10), rgba(0,0,0,0) 60%), rgba(0,0,0,0.22);
	border: 1px solid rgba(255,255,255,0.10);
	border-radius: 0;
	padding: 10px;
}

.add-comments-form .form__textarea-inside textarea {
	background: transparent;
	border: 0;
	box-shadow: none;
	color: #eee;
	width: 100%;
	padding: 10px 12px;
	min-height: 140px;
	resize: vertical;
	outline: none;
}

.add-comments-form .form__textarea-inside:focus-within {
	border-color: rgba(20,230,136,0.45);
	box-shadow: 0 0 0 3px rgba(20,230,136,0.15);
}

.add-comments-form .tox-tinymce {
	border-radius: 0;
	overflow: hidden;
	border: 0;
}

.add-comments-form .tox .tox-edit-area__iframe {
	background: transparent;
}

.add-comments-form #comments_ifr {
	height: 160px !important;
	border-radius: 0;
}

.add-comments-form .form__input,
.add-comments-form__input,
.mass_comments_action select {
	box-shadow: none;
	border-radius: 12px;
	background: rgba(0,0,0,0.22);
	border: 1px solid rgba(255,255,255,0.10);
	color: #eee;
	min-height: 44px;
}

.add-comments-form .form__input:focus,
.add-comments-form__input:focus {
	border-color: rgba(72,126,176,0.55);
	box-shadow: 0 0 0 3px rgba(72,126,176,0.18);
}

.add-comments-form__subscribe .comments_subscribe {
	margin: 0;
}

.add-comments-form__identity {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.add-comments-form__actions {
	display: flex;
	justify-content: flex-end;
}

.add-comments-form__btn {
	min-height: 44px;
	border-radius: 12px;
	padding: 0 18px;
	background: var(--gradient-green);
	border: 0;
}

.add-comments-form__btn:hover {
	filter: brightness(1.06);
}

.add-comments-form__btn:active {
	transform: translateY(1px);
}

.add-comments-form__input {margin-left: 0;}
.add-comments-form .d-none, .comments_subscribe + br {display: none;}
.mass_comments_action {display: flex; align-items: center; max-width: 800px; white-space: nowrap; margin-top: 20px;}
.mass_comments_action select {flex: 1 1 0; margin: 0 -8px 0 20px;}
.mass_comments_action .bbcodes {border-radius: 0; padding: 0 10px;}

.comment-item__title {font-weight: 400; text-transform: uppercase; font-size: 18px; margin-bottom: 20px;}
.comment-item {margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #131313;}
.comments-tree-item:last-child .comment-item {margin-bottom: 0; padding-bottom: 0; border: 0;}
.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: 700; 
	position: absolute; left: 0; top: 0; z-index: 5; color: #fff; font-size: 18px;}
.comment-item__author, .comment-item__author a {font-size: 15px; color: var(--yellow);}
.comment-item__date {color: var(--grey); margin-top: 4px; font-size: 13px;}
.comment-item__main {margin: 8px 0 6px 0;}
.comment-item__rating {white-space: nowrap; font-size: 13px;}
.comment-item__rating a {margin-left: 6px;}
.comment-item__rating a > span:first-child {color: #6ab04c; text-decoration: underline; font-weight: 400; margin-right: 2px;}
.comment-item__rating a:last-child > span:first-child {color: #eb4d4b;}
.comment-item__reply a {font-size: 13px; margin-right: 20px; color: var(--grey);}
.comment-item__reply a .fal {margin-left: 5px;}
.comment-item__reply + .comment-item__reply a .fal {margin-left: 0; margin-right: 5px;}
.comment-item__controls {text-align: right; font-size: 13px; margin-right: -15px;}
.comment-item__controls li {display: inline-block; vertical-align: middle; margin: 0 0 0 10px; height: 16px; line-height: 16px;}
.comment-item__controls a:not(:hover) {color: var(--grey);}
.comment-item__footer a:hover {text-decoration: underline;}
.comment-item__rating a:hover > span:first-child {text-decoration: none;}
.comment-item__controls .checkbox {transform: scale(0.8,0.8); margin-left: 5px;}


/* LOGIN
----------------------------------------------- */
.login {position: fixed; z-index: 999; left: 50%; top: 50%; transform: translate(-50%,-50%); overflow: hidden;
	background-color: var(--ui-bg); border-radius: 4px; width: 400px; 
	box-shadow: 0 0 0 10px rgba(255,255,255,0.2), 0 15px 45px rgba(0,0,0,1);}
.login__header {padding: 20px 40px; background-color: var(--ui-bg-darker);}
.login__title {font-size: 19px; font-weight: 400; padding: 1px 0; text-transform: capitalize;}
.login__close {cursor: pointer; font-size: 24px; opacity: 0.6; margin-left: 20px;}
.login__title a {border-bottom: 1px dotted var(--grey); margin-left: 10px; font-weight: 400; color: var(--grey);}
.login__content {padding: 20px 40px;}
.login__row {margin-bottom: 20px; position: relative; display: block; font-size: 14px; color: var(--grey);}
.login__caption {font-size: 14px; color: var(--black); margin-bottom: 10px;}
.login__caption a {text-decoration: underline; margin-left: 6px; color: var(--blue);}
.login__input input {padding-left: 40px;}
.login__row .fal {opacity: 0.5; position: absolute; left: 0; bottom: 0; line-height: 40px; width: 40px; text-align: center;}
.login__row button {width: 100%;}
.login__social {background-color: var(--ui-bg-darker); padding: 20px 40px; text-align: center;}
.login__social-caption {font-size: 11px; text-transform: uppercase; margin-bottom: 10px;}
.login__social-btns a {display:inline-block; margin: 0 3px; vertical-align:top;}
.login__social-btns img {display:block; width:30px; height: 30px; border-radius: 50%;}
.login__avatar {width: 40px; height: 40px; border-radius: 50%; margin-right: 10px;}
.login__menu {padding-left: 35px; padding-right: 35px; margin-bottom: -10px;}
.login__menu li {flex: 1 1 0; min-width: auto; max-width: 100%; margin: 0 5px 10px 5px;}
.login__menu a {display: block; border-radius: 6px; padding: 10px; text-align: center; white-space: nowrap;
	background-color: var(--ui-bg-darker); box-shadow: inset 0 0 10px rgba(0,0,0,0.1); font-size: 13px;}
.login__menu .fal {display: block; height: 30px; font-size: 24px; opacity: 0.3;}


/**
 * 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 {display: none; width: 100%; position: relative; z-index: 5;}
 .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; 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 {-webkit-user-select: none; 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 {border-radius: 15px; border: 2px solid var(--bdc); overflow: hidden; 
	height: 30px; min-width: 132px; display: flex;}
 .owl-prev, .owl-next {display: block; cursor: pointer; background-color: #272727; box-shadow: none; 
 	width: 50%; font-size: 16px; height: 30px; line-height: 30px; color: #eee;}
 .owl-prev {margin: 0;}
 .owl-next {border-left: 2px solid var(--bdc) !important;}
 .owl-prev:hover, .owl-next:hover {background-color: #171717; color: var(--blue);}
.top-carousel .owl-nav, #owl-related .owl-nav {position: absolute; right: 0; top: -50px;}
.posters .owl-nav {margin: 15px auto 0 auto; max-width: 210px;}
	 

/* ADAPTIVE, MOBILE MENU
----------------------------------------------- */
:root {--mobile-menu-width: 320px;}
@media screen and (max-width: 360px) {
	:root {--mobile-menu-width: 86vw;}
}

.overlay {position: fixed; z-index: 998; left: 0; top: 0; width: 100%; height: 100%;
	opacity: 0.65; background: rgba(0,0,0,0.72); cursor: pointer; display: none;}

.mobile-menu {width: var(--mobile-menu-width); max-width: 420px; height: 100%;
	overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain;
	padding: 18px 14px 24px 14px; z-index: 999; position: fixed;
	left: 0; top: 0;
	transform: translateX(calc(-1 * (var(--mobile-menu-width) + 60px)));
	transition: transform .35s ease;
	background: #161616 url(../images/bg.png) 0 0 repeat;
	border-right: 1px solid var(--bdc);
	border-radius: 0;
	box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}
@supports (scrollbar-color: auto) {
	.mobile-menu {scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.22) transparent;}
}
.mobile-menu::-webkit-scrollbar {width: 8px;}
.mobile-menu::-webkit-scrollbar-track {background: transparent;}
.mobile-menu::-webkit-scrollbar-thumb {
	background: rgba(255,255,255,0.18);
	border-radius: 999px;
	border: 2px solid transparent;
	background-clip: content-box;
}
.mobile-menu::-webkit-scrollbar-thumb:hover {background: rgba(255,255,255,0.28); border: 2px solid transparent; background-clip: content-box;}

.mobile-menu.is-active {transform: translateX(0);}

.mobile-menu-close {cursor: pointer; display: block; left: var(--mobile-menu-width); top: 12px; position: fixed; z-index: 999;
	width: 38px; height: 38px; line-height: 38px; text-align: center; font-size: 18px; opacity: 0;
	background-color: var(--blue); color: #fff; border: 0;
	border-radius: 3px; transform: translateX(-46px);
	transition: opacity .25s ease, background-color .25s ease;}
.mobile-menu-close:hover {background-color: var(--blue2);}
.mobile-menu-close.is-active {opacity: 1;}

body.mobile-menu-is-opened {overflow: hidden; width: 100%; height: 100%;}

.mobile-menu__inner {display: flex; flex-direction: column; gap: 12px;}

.mobile-menu__brand {
	display: block;
	padding: 6px 15px;
	border-radius: 3px;
	background: var(--gradient-green);
	border: 0;
	box-shadow: var(--bsh);
}
.mobile-menu__brand .logo__title {font-size: 18px; letter-spacing: 0.02em;}
.mobile-menu__brand .logo__caption {opacity: 0.78; margin-top: 2px;}

.mobile-menu__search {margin-top: 0;}
.mobile-menu__search-box {position: relative; display: flex; align-items: center;}
.mobile-menu__search-box input {
	width: 100%;
	height: 40px;
	padding: 0 50px 0 15px;
	border-radius: 3px;
	border: 1px solid var(--bdc);
	background: rgba(0,0,0,0.2);
	color: #fff;
	outline: none;
}
.mobile-menu__search-box input::placeholder {color: #fff; opacity: 0.75;}
.mobile-menu__search-box input:focus {border-color: var(--blue2); box-shadow: none;}
.mobile-menu__search-btn {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 40px;
	border-radius: 0 3px 3px 0;
	border: 0;
	background: none;
	color: var(--black);
	cursor: pointer;
}
.mobile-menu__search-btn:hover {background: none;}

.mobile-menu__section-title {
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	opacity: 0.9;
	padding: 10px 15px;
	background-color: rgba(0,0,0,0.3);
	border: 1px solid var(--bdc);
	border-radius: 2px;
	color: #999;
}

.mobile-menu .header__menu {margin: 0 0 14px 0; padding: 0; display: block;}
.mobile-menu .header__menu > li {width: 100%; margin: 0; padding: 0;}
.mobile-menu .header__menu > li + li {margin-top: 0;}
.mobile-menu .header__menu > li > a {
	height: auto;
	display: block;
	padding: 8px 15px;
	border-radius: 0;
	font-size: 14px;
	letter-spacing: 0;
	text-decoration: none;
	background: none;
	border: 0;
	border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu .header__menu > li > a {display: flex; align-items: center; gap: 10px;}
.mobile-menu .header__menu > li > a .fal {width: 18px; text-align: center; opacity: 0.9;}
.mobile-menu .header__menu > li > a:hover {text-decoration: none; background-color: rgba(255,255,255,0.1);}

.mobile-menu .side-block {margin-bottom: 14px;}
.mobile-menu .side-block__title {font-size: 18px; margin-bottom: 15px; letter-spacing: 0; opacity: 1;}
.mobile-menu .side-block--nav {border-color: var(--green);}

.mobile-menu .nav > li {margin: 0;}
.mobile-menu .nav > li > a {border-radius: 0;}
.mobile-menu .nav > li:hover > a {background-color: rgba(255,255,255,0.1);}

@media (prefers-reduced-motion: reduce) {
	.mobile-menu, .mobile-menu-close {transition: none !important;}
}

@media screen and (max-width: 1220px) {
	body {background-image: none;}
	.wrapper {padding: 0;}
	.wrapper-container {max-width:1000px;}
	.wrapper-main {padding-left: 20px; padding-right: 20px;}
	.header__menu {display: none;}
	.header-menu-carousel {display: none;}
	.header {border-radius: 0; margin: 0 -20px !important; padding-left: 76px;}
	.header__search {margin: 0 20px;}
	.header__btn-menu {visibility: visible; opacity: 1;}
	.carousels__content {min-height: 150px;}
	.col-left, .col-left .js-this-in-mobile-menu {display: none; order: 1;}
	.footer, .footer__two {margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px;}
}

@media screen and (max-width: 950px) {
	.wrapper-container {max-width:768px;}
	.mt-hide-mobile {display: none !important;}
	.col-main {min-width: 100%;}
	.col-right, .col-left {width: 46%; margin: 0; margin-top: 40px; order: 1; display: block;}
	.footer__one, .footer__two {display: block; text-align: center; background-image: none;}
	.footer__menu {margin: 20px 0 0 0;}
	.footer__counter {margin-left: 0; margin-top: 20px; justify-content: center;}
	.mt-sitecounter {margin-left: auto; margin-right: auto;}
	.footer__menu--cols {margin-left: 0; display: grid; grid-auto-flow: row; grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: none; justify-items: center; row-gap: 12px; column-gap: 20px;}
	.footer__menu--cols a {margin: 0;}
	.owl-nav {min-width: 80px;}
	.side-block--sticky {position: static;}
}

@media screen and (max-width: 760px) {
	.wrapper-container {max-width:640px;}
	.header__logo {flex: 1 1 0; min-width: 50px; max-width: 100%; margin-right: 20px;}
	.header__btn-search {display: block; cursor: pointer; font-size: 18px; margin-right: 10px;}
	.header__btn-login {font-size: 0; padding: 0; width: 30px; height: 30px; border-radius: 15px;}
	.header__btn-login .fal:first-child {margin: 0;}
	.header__search {min-width: 100%; order: 10; margin: 0; margin-top: 8px; display: none;}
	.carousels__caption, .header__btn-login::after, .item__meta-item:not(.flex-grow-1), 
	.item__meta-item::before {display: none !important;}
	.sect__link-top {width: 100%; order: -1; margin: 0 0 20px 0;}
	.item--announce .item__btn {width: 100%; margin: 0; margin-top: 15px;}
	.item--announce .item__fav a {margin-right: 0;}

	.page__main {margin-bottom: 0;}
	.page__main, .page__comments {margin-left: -20px; margin-right: -20px; border-radius: 0; 
		border-left: 0; border-right: 0;}
	.page__header {border-radius: 0;}
	.page__header .item__meta {display: none;}
	.item__btns .item__btn.flex-grow-1 {min-width: 100%;}
	.item__btns > * {margin-left: 0; width: 48%; padding: 0;}
	.full-text h1, .full-text h2, .full-text h3, .full-text h4, .full-text h5 {font-size: 18px;}
	
	.add-comments-form__identity {grid-template-columns: 1fr;}
	.add-comments-form__identity .add-comments-form__input {min-width: 0; margin: 0;}
	.add-comments-form__actions {justify-content: stretch;}
	.add-comments-form__btn {width: 100%;}
	.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;}
	.login {max-width: 90%; max-height: 90%; overflow-x: hidden; overflow-y: auto;}
	.login__header, .login__content, .login__social {padding-left: 20px; padding-right: 20px;}
	.col-right, .col-left {width: 48%;}

	.page__header {padding: 15px; display: block; margin-bottom: 0;}
	.page__poster {position: relative; bottom: 0; left: 0; margin: 0 auto;}
	.page__header h1 {text-align: center; margin-bottom: 15px;}
	.page__screenshots, .page__screenshots .xfieldimagegallery {grid-gap: 15px 15px; 
		grid-template-columns: repeat(auto-fit,minmax(90px,1fr));}
	.page__screenshots a, .page__screenshots img, .page__screenshots li {height: 80px;}
	.page__player-select div {flex: 1 1 0; min-width: auto; max-width: 100%; white-space: nowrap; text-align: center;}
	.page__share {width: 100%; margin-top: 15px;}
	.page .sect__title, .page__dl-title {font-size: 20px;}
	.fdl-btn {padding-left: 100px;}
	.fdl-btn::before {width: 40px; height: 40px; margin-top: -20px; left: 25px;
		box-shadow: 0 0 0 15px rgba(0,0,0,0.13), 0 0 0 30px rgba(0,0,0,0.08), 0 0 0 45px rgba(0,0,0,0.04);}
	.fdl-btn-dl {display: none;}
}

@media screen and (max-width: 470px) {
	.wrapper-container22 {max-width:360px;}
	.header__logo {padding-left: 0; background-image: none;}
	.header {padding-left: 66px; padding-right: 10px;}
	.header.sticky {padding-right: 66px; padding-left: 66px;}
	.logo__title {font-size: 20px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
	.col-right, .col-left {width: 100%;}
	.item__cols {display: block;}
	.item__img {margin: 0 auto 15px auto;}
	.poster-item {max-width: 210px; margin-left: auto; margin-right: auto;}
	.speedbar {min-height: 39px;}
	.page__header h1, .item__footer {min-height: 28px;}
	.item__ctrl {height: 30px;}
}

.comments-image-gallery {
  margin: 0;
  padding: 0;  
  list-style: none;
  clear: both;
}

.comments-image-gallery li{
	list-style: none;
	margin: 0;
	padding: 0;  
}

.comments-image-gallery li img{
  float: left;
  margin-right: 5px;
  border: 5px solid #fff;
  width: 100px;
  height: 100px;
  transition: box-shadow 0.5s ease;
}

.comments-image-gallery li img:hover {
  box-shadow: 0px 0px 7px rgba(0,0,0,0.4);
}

.mce-toc {
  border: 1px solid #dbdada;
  margin: 0 0 .7rem 0;
}

.mce-toc h2 {
  margin: 4px;
}

.mce-toc ul {
  padding-left: 20px;
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-block-start: 1em;
  margin-block-end: 1em;
}

.mce-toc ul ul {
  padding-left: 20px;
  margin-block-start: 0;
  margin-block-end: 0;
}

.mce-toc li {
  list-style-type: none;
}

.image-bordered {
	border: 1px solid #ddd;
}

.image-shadows {
	box-shadow: rgb(9 30 66 / 25%) 0px 4px 8px -2px, rgb(9 30 66 / 8%) 0px 0px 0px 1px;
}

.image-padded {
	padding: 0.5rem;
}

.comments-user-profile {
  font-weight: bold;
  cursor: pointer;
  color: #3394e6;
}

.title_spoiler svg{
	vertical-align: middle;
	margin-top: -4px;
	margin-right: 7px;
	height: 16px;
	width: 16px;
}

.mce-accordion summary {
	cursor: pointer;
}

.self_delete_link {
	border: 0 none;
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	padding: 12px 27px;
	border-radius: 10px;
	outline: none;
	background-color: #f44336;
	color: #fff;
	text-shadow: 0 1px #333;
	text-decoration: none !important;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
	box-sizing: border-box;
	transition: all ease .1s; transition: all ease .1s;
}

.DLEPush {
	z-index: 2001;
	position: fixed;
	right: 20px;
	top: 20px
}

@keyframes DLEPush-show {
	0% {
		transform: translateY(100%);
		opacity: 0;
	}

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

.DLEPush-notification.wrapper {
	animation-name: DLEPush-show;
	animation-duration: 1s;
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	color: #333;
	margin-bottom: 10px;
	width: 100%;
	max-width: 400px;
	box-shadow: 0 10px 15px rgb(0 0 0 / 20%);
	background-color: #fff;
	border-radius: 10px
}

.DLEPush-notification .DLEPush-icon {
	grid-column: 1;
	grid-row: 1 / span 2;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	width: 45px;
	height: 100%;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	text-align: center;
}

.DLEPush-notification .DLEPush-icon svg {
	scale: .8;
}

.DLEPush-notification .DLEPush-header {
	font-weight: 500;
	grid-column: 2;
	grid-row: 1;
	font-size: 1rem;
	margin-left: 1rem;
	margin-top: .5rem;
}
.DLEPush-notification .DLEPush-header:empty {
	margin-top: 0;
}

.DLEPush-notification .DLEPush-message {
	grid-column: 2;
	grid-row: 2;
	font-size: .875rem;
	margin: 1rem;
}

.DLEPush-notification .DLEPush-message li, .DLEPush-notification .DLEPush-message ul {
	list-style-type: none;
	padding-left: 0;
}

.DLEPush-notification .DLEPush-close {
	position: absolute;
	top: 8px;
	right: 10px;
	font-weight: 300;
	background: none;
	border: 0;
	font-size: 1.15rem;
	cursor: pointer;
	line-height: 1;
	padding: 0;
	color: inherit;
	outline: 0;
	opacity: 0.75;
}

@media only screen and (min-width: 601px) {
	.DLEPush-notification.wrapper {
		min-width: 400px;
	}
}

.DLEPush-notification .DLEPush-close:hover {
	opacity: 1;
}

.DLEPush-notification.wrapper.push-success {
	background-color: #e0f2f1;
}

.DLEPush-notification.wrapper.push-success .DLEPush-icon {
	background-color: #00897b;
}

.DLEPush-notification.wrapper.push-warning {
	background-color: #FFF3E0;
}

.DLEPush-notification.wrapper.push-warning .DLEPush-icon {
	background-color: #FF9800;
}

.DLEPush-notification.wrapper.push-error {
	background-color: #FBE9E7;
}

.DLEPush-notification.wrapper.push-error .DLEPush-icon {
	background-color: #FF5722;
}

input[type="text"].comments_author_field {
	width: 100%;
	margin-bottom: 10px;
}
.header-menu-carousel__viewport .header__menu > li {flex: 0 0 auto;}
.header-menu-carousel__viewport .header__menu > li > a {white-space: nowrap;}