/* BASIC LAYOUT
----------------------------------------------- */
.wrapper {
	min-width: 320px;
	position: relative;
	overflow: clip;
}

.wrapper__container {
	max-width: var(--max-width);
	margin: 0 auto;
	position: relative;
	z-index: 20;
}

.wrapper__container--main {
	background-color: var(--bg-darker);
	box-shadow: var(--bsh-long);
	border-radius: 0 0 10px 10px;
	overflow: hidden;
}

.header {
	background-color: var(--bg);
	padding: 30px var(--indent);
}

.topmenu {
	background-color: var(--bg-darker);
	font-weight: 500;
}

.carou {
	background-color: var(--bg-black);
	padding: 20px var(--indent);
}

.cols {
	display: grid;
	grid-template-columns: 360px minmax(0, 1fr);
	min-height: 100vh;
	grid-template-areas: "sidebar content";
}

.cols__content {
	grid-area: content;
	padding: 30px 40px;
	padding-bottom: 40px;
}

.cols__sidebar {
	grid-area: sidebar;
	background-color: var(--bg-black);
	--tt: var(--tt-on-black);
	color: #fff;
	padding-bottom: 20px;
}

.footer {
	padding: 40px var(--indent);
}

.footer__two {
	border-top: 1px solid var(--bdc);
	padding-top: 20px;
	margin-top: 20px;
}

.col2 .cols {
	grid-template-columns: minmax(0, 1fr) 360px;
	grid-template-areas: "content sidebar";
}

.has-branding {
	padding-top: 140px;
}

.scrolltop {
	position: fixed;
	width: 40px;
	height: 40px;
	right: 10px;
	bottom: 10px;
	padding: 0;
	z-index: 990;
	border-radius: 4px;
	font-size: 18px;
	opacity: 0;
	scale: 0 0;
}

.scrolltop.is-active {
	scale: 1 1;
	opacity: 1;
}

.overlay {
	position: fixed;
	z-index: 998;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.8;
	background-color: #1d1924;
	cursor: pointer;
	display: none;
}

.scrolltop {
	display: none !important;
}

/* HEADER, TOPMENU, CAROU
----------------------------------------------- */
.logo {
	display: flex;
	align-items: center;
	font-family: 'Rounds Black';
	font-weight: 900;
	padding-left: 60px;
	text-transform: uppercase;
	position: relative;
	font-size: 28px;
	background: url(../images/logo.svg) 0 center / 40px no-repeat;
	height: 40px;
}

.logo span {
	color: var(--yellow);
}

.header__logo span {
	position: absolute;
	right: 0;
	bottom: 80%;
	font-size: 0.5em;
}

.header__logo {
	margin-right: 40px;
}

.header .ya-share2 {
	margin-right: auto;
	margin-left: auto;
}

.logo:has(img) {
	background: none;
	min-width: 200px;
}

.logo img {
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	translate: 0 -50%;
	max-height: 100%;
}

.dt .header__theme-select::before {
	content: "\f755";
}

.header__ava {
	width: 40px;
	cursor: pointer;
}

.header__btn1 span {
	position: absolute;
	right: 0;
	top: 0;
	padding: 1px 3px;
	font-size: 10px;
	border-radius: 6px;
	background-color: var(--accent);
	color: #fff;
	display: inline-block;
	text-align: center;
	min-width: 20px;
	line-height: 1.3;
}

.search-block {
	position: relative;
	width: 400px;
}

.search-block__input,
.search-block__input:focus {
	padding: 0 50px 0 15px;
}

.search-block__input:not(:focus)::placeholder {
	color: var(--tt-fade);
}

.search-block__btn {
	position: absolute;
	right: 0;
	top: 0;
	height: 40px;
	font-size: 14px;
	width: 46px;
}

.topmenu a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	position: relative;
	text-transform: uppercase;
	border-right: 1px solid var(--bdc);
	padding: 0 20px;
}

.topmenu a span {
	position: absolute;
	bottom: 100%;
	left: 100%;
	translate: -50% 50%;
	text-align: center;
	min-width: 36px;
	font-size: 13px;
	padding: 2px 6px;
	border-radius: 13px;
	background-color: var(--red);
	color: #fff;
}

.topmenu a.is-active {
	background-color: var(--accent);
	color: #fff;
	border-color: var(--accent);
}

.topmenu a:has(span) {
	z-index: 5;
}


/* SECTION
----------------------------------------------- */
.sect:not(:last-child) {
	margin-bottom: 40px;
}

.sect__header {
	margin-bottom: 30px;
}

.sect__title {
	font-size: 19px;
	font-weight: 700;
	text-transform: uppercase;
}

.sect__grid-select {
	background-color: var(--bg);
	box-shadow: var(--bsh);
	border-radius: 4px;
	overflow: hidden;
}

.sect__grid-select button {
	font-size: 18px;
	border-radius: 0;
}

.sect__grid-select button+button {
	border-left: 1px solid var(--bdc);
}

.grid1 .sect__grid-select button:first-child,
.grid2 .sect__grid-select button:nth-child(2),
.grid3 .sect__grid-select button:nth-child(3) {
	background-color: var(--accent);
	color: #fff;
	border-color: var(--accent);
}

.ya-share2 {
	min-height: 24px;
}

.speedbar {
	color: var(--tt-fade);
	font-size: 13px;
	margin-bottom: 15px;
	margin-top: -15px;
}

.speedbar a {
	color: var(--tt);
}

.descr {
	padding-top: 40px;
	border-top: 1px solid var(--bdc);
	color: var(--tt-fade-0);
}

.descr>*:not(:last-child) {
	margin-bottom: 15px;
}

.descr :is(h1, h2, h3) {
	font-size: 17px;
	font-weight: 500;
	margin-bottom: 15px !important;
	text-transform: uppercase;
	color: var(--tt);
}

.descr :is(h1, h2):first-child {
	text-align: center;
	padding-bottom: 20px;
}

.descr a {
	text-decoration: underline;
	color: var(--accent);
}

.descr ul li {
	position: relative;
	padding-left: 25px;
	margin-left: 25px;
}

.descr ul li::before {
	content: "\f00c";
	color: var(--accent);
	position: absolute;
	left: 0;
	top: 0;
}

.descr>img {
	display: block;
	aspect-ratio: 1 / 0.68;
	width: 240px;
	height: auto;
	margin: 0 20px 10px 0;
	border-radius: 10px;
	float: left;
	object-fit: cover;
}

.descr ul {
	clear: both;
}


/* ITEM
----------------------------------------------- */
.item__ext-rating-item {
	font-size: 13px;
	padding-left: 30px;
	line-height: 20px;
}

.item__ext-rating-item.kp {
	background: url(../images/kp.svg) 0 center / 20px no-repeat;
}

.item__ext-rating-item.imdb {
	background: url(../images/imdb.svg) 0 center / 20px no-repeat;
}

.item__ratingscore-label {
	font-size: 12px;
	padding: 1px 6px;
	min-width: 34px;
	border-radius: 0 3px 3px 0;
	z-index: 5;
	background-color: var(--grey);
	color: #fff;
	text-align: center;
	position: absolute;
	left: 0;
	top: 10px;
}

.item__ratingscore-label.rating-1,
.item__ratingscore-label.rating-2,
.item__ratingscore-label.rating-3 {
	background-color: var(--red);
}

.item__ratingscore-label.rating-4,
.item__ratingscore-label.rating-5,
.item__ratingscore-label.rating-6 {
	background-color: var(--orange);
}

.item__ratingscore-label.rating-7,
.item__ratingscore-label.rating-8,
.item__ratingscore-label.rating-9,
.item__ratingscore-label.rating-10 {
	background-color: var(--green);
}

.item__ratingscore-ring {
	width: 40px;
	font-weight: 500;
}

.item__ratingscore-ring svg {
	position: absolute;
	left: 0;
	top: 0;
	fill: none;
	transform: rotate(-90deg);
}

.item__ratingscore-ring svg circle {
	fill: inherit;
	stroke: rgba(0, 0, 0, 0.1);
}

.item__ratingscore-ring svg circle:nth-child(2) {
	stroke: var(--yellow);
}

.item__label {
	font-size: 12px;
	padding: 2px 6px;
	border-radius: 0 3px 3px 0;
	background-color: var(--accent);
	color: #fff;
	position: absolute;
	left: 0;
	top: 10px;
	z-index: 5;
}

.item__fav>span,
.item__fav>a {
	cursor: pointer;
	display: grid;
	place-items: center;
	aspect-ratio: 1 / 1;
	margin: -5px 0;
	width: 36px;
	border-radius: 4px;
	background-color: var(--bg-darker);
	color: var(--bg-darkest);
	font-size: 18px;
}

.item__fav:has(.fav-added)>a {
	background-color: var(--accent);
	color: #fff;
}

.item__list {
	line-height: 1.3;
	font-size: 14px;
}

.item__list li>span:first-child {
	font-weight: 500;
	margin-right: 5px;
}

.item__list-text {
	padding-top: 8px;
	line-height: 1.5;
	font-size: 15px;
}

.item__list a {
	color: var(--accent);
	text-decoration: underline;
}

.item__btn-trailer {
	width: 40px;
	height: 40px;
	padding: 0;
	font-size: 14px;
	border-radius: 0 3px 3px 0;
	box-shadow: none;
	color: #fff;
	transition: none;
	background-color: rgba(0, 0, 0, 0.3);
	position: absolute;
	left: 0;
	top: 46px;
	z-index: 5;
	backdrop-filter: blur(5px);
}


/* ITEM CAROUSEL, SHORTSTORY
----------------------------------------------- */
.item-carou .item__img {
	overflow: hidden;
	border-radius: 3px;
}

.item-carou__desc {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 5px 10px;
	font-size: 14px;
	line-height: 1.3;
	background-color: var(--accent);
	color: #fff;
	word-wrap: break-word;
	opacity: 0;
	translate: 0 100%;
}

.item-card {
	background-color: var(--bg);
	box-shadow: var(--bsh);
	padding: 20px;
	border-radius: 6px;
	grid-column: 1 / -1;
}

.item-main {
	display: grid;
	gap: 12px 20px;
	grid-template-columns: 200px minmax(0, 1fr);
	grid-template-areas: "poster header" "poster info" "poster footer";
	grid-template-rows: auto 1fr auto;
}

.item-main__header {
	grid-area: header;
}

.item-main__info {
	grid-area: info;
	mask-image: linear-gradient(to top, transparent 0px, #000 60px);
}

.item-main__footer {
	grid-area: footer;
}

.item-main__poster {
	grid-area: poster;
}

.item-main__img {
	cursor: pointer;
	align-self: start;
	border-radius: 4px;
	overflow: hidden;
}

.item-main__poster .item__ratingscore-ring {
	position: absolute;
	right: 10px;
	bottom: 10px;
	z-index: 5;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(5px);
}

.item-main__poster .item__ext-rating {
	position: absolute;
	left: 10px;
	bottom: 10px;
	z-index: 5;
	color: #fff;
}

.item-main__title {
	text-transform: uppercase;
	font-size: 17px;
	font-weight: 700;
}

.item-main__img::before {
	font-size: 60px;
}

.item-main__img .item__label {
	font-size: 13px;
}


/* SHORTSTORY GRID VIEW
----------------------------------------------- */
.grid2 .grid-items {
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 20px;
}

.grid3 .grid-items {
	grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
	gap: 20px;
}

.grid2 .item-card {
	grid-column: span 1;
	grid-template-columns: minmax(0, 1fr);
	padding: 10px;
}

.grid2 .item-card .item-main__info,
.grid2 .item-card .item__btn,
.grid3 .item-card .item__ext-rating,
.grid2 .item-card .item__ratingscore-ring,
.grid2 .item-card .item__fav,
.grid3 .item-card .item__ratingscore-ring {
	display: none;
}

.grid2 .item-card {
	grid-template-areas: "poster" "header" "footer";
}

.grid2 .item-card .item-main__title {
	font-size: 15px;
	text-align: center;
	padding-top: 5px;
}

.grid2 .item-card .item__rating,
.grid3 .item-card .item__rating {
	margin: 0;
	width: 100%;
	text-align: center;
}

.grid3 .item-card {
	grid-column: span 1;
	grid-template-columns: 100px minmax(0, 1fr);
	grid-template-areas: "poster header" "poster footer" "info info";
	grid-template-rows: 1fr auto auto;
}

.grid3 .item-card .item__list-text {
	padding-top: 8px;
	margin-top: 8px;
	border-top: 1px solid var(--bdc);
	line-height: 1.3;
	font-size: 14px;
}

.grid3 .item-card .item__btn {
	width: 100%;
}

.grid3 .item-card .item-main__header {
	align-self: start;
}

.grid1 .item__btn-trailer::after,
.grid2 .item__btn-trailer::after {
	content: attr(data-text);
	white-space: nowrap;
}

.grid1 .item__btn-trailer,
.grid2 .item__btn-trailer {
	width: auto;
	padding: 0 10px;
	font-size: 12px;
}


/* TRAILER POPUP, GUEST NOTIFY POPUP
----------------------------------------------- */
.trl {
	background-color: rgba(0, 0, 0, 0.9);
	position: fixed;
	z-index: 990;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	backdrop-filter: blur(10px);
}

.trl__close {
	position: absolute;
	right: 20px;
	top: 20px;
	font-size: 40px;
	color: #fff;
}

.trl__inner {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	color: #fff;
	padding: 80px 20px 20px 20px;
}

.trl__btn {
	height: 40px;
	padding: 0 40px;
	margin: 15px 0;
	width: 100%;
}

.trl h1 {
	margin-bottom: 15px;
	margin-top: 20px;
	font-size: 24px;
}

.trl .page__text,
.trl .full-text {
	color: #ccc;
	margin: 0px;
	padding: 0;
	background: none;
}

.trl-is-opened {
	overflow: hidden;
}

.gst {
	width: 400px;
	max-width: calc(100vw -40px);
	background-color: var(--bg);
	color: var(--tt);
	border-radius: 6px;
	overflow: hidden;
	z-index: 999;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-shadow: var(--bsh-long);
}

.gst__desc {
	padding: 30px;
	text-align: center;
}

.gst__title {
	font-size: 21px;
	font-weight: 500;
}

.gst__text {
	margin: 20px 0 25px 0;
}


/* SIDEBAR
----------------------------------------------- */
.sb__title {
	background-color: var(--bg-blackest);
	text-transform: uppercase;
	padding: 15px var(--indent);
	font-weight: 700;
}

.sb__content {
	padding: 20px var(--indent);
}

.sb__menu {
	display: grid;
	gap: 6px 10px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sb__menu--years {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.sb__menu-caption {
	grid-column: 1 / -1;
	text-transform: uppercase;
	padding-bottom: 5px;
}

.sb__menu a {
	text-decoration: underline;
	font-size: 14px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sb__tabs {
	gap: 1px;
	padding: 1px;
	padding-bottom: 0;
}

.sb__tabs button {
	background-color: var(--bg-blackest);
	color: #fff;
	border-radius: 0;
	text-transform: uppercase;
	flex-grow: 1;
	font-weight: 400;
	padding: 0;
	box-shadow: none;
}

.sb__tabs button.is-active {
	background-color: var(--accent);
	color: #fff;
}

.popular-items {
	counter-reset: n;
}

.item-popular::before {
	counter-increment: n;
	content: counter(n);
	display: grid;
	place-items: center;
	width: 30px;
	aspect-ratio: 1 / 1;
	background-color: var(--accent);
	color: #fff;
	position: absolute;
	left: 0;
	bottom: 0;
	border-radius: 3px;
	font-weight: 500;
}

.item-popular .item__title {
	text-decoration: underline;
	margin-left: 50px;
	line-height: 30px;
}

.item-popular .item__img {
	margin: 0 auto;
	margin-bottom: 13px;
	width: 180px;
	border-radius: 4px;
	box-shadow: var(--bsh-long);
}

.item-popular+.item-popular {
	margin-top: 5px;
}

.soc-channels__item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	padding: 0 20px 0 55px;
	height: 40px;
	overflow: hidden;
	line-height: 1;
	background-color: #2daae1;
	color: #fff !important;
	box-shadow: var(--bsh);
	font-size: 12px;
	border-radius: 4px;
}

.soc-channels__item div {
	font-size: 14px;
	text-transform: none;
	margin-top: 3px;
}

.ig {
    background-color: #E1306C;
    color: #fff;
}

.vk {
	background-color: #1877f2;
	color: #fff;
}

.yt {
	background-color: #df1111;
	color: #fff;
}

.soc-channels__item::before {
	content: '';
	width: 40px;
	height: 40px;
	background-color: rgba(0, 0, 0, 0.2);
	position: absolute;
	left: 0;
	top: 0;
	background-position: center center;
	background-size: 20px;
	background-repeat: no-repeat;
}

.tlg::before {
	background-image: url(../images/i-tlg.svg);
	background-size: 16px;
}

.vk::before {
	background-image: url(../images/i-vk.svg);
}

.yt::before {
	background-image: url(../images/i-youtube.svg);
}

.series-items {
	display: grid;
	gap: 20px 15px;
	grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
}

.item-series .item__img {
	margin-bottom: 8px;
	border-radius: 3px;
	box-shadow: var(--bsh-long);
}

.item-series .item__title {
	text-decoration: underline;
	font-size: 14px;
	line-height: 1.3;
}

.watchnow-items {
	padding-left: calc(128px + var(--indent));
	text-decoration: underline;
	position: relative;
	min-height: 190px;
	text-decoration-color: var(--tt-on-black);
}

.item-watchnow .item__img {
	position: absolute;
	left: var(--indent);
	top: 20px;
	width: 108px;
	border-radius: 4px;
	box-shadow: var(--bsh-long);
}

.lcomm {
	color: var(--tt-on-black);
	font-size: 14px;
}

.lcomm__img {
	width: 30px;
}

.lcomm__date {
	font-size: 13px;
	opacity: 0.66;
}

.lcomm__text {
	font-size: 15px;
	padding: 10px 20px;
	margin: 10px 0;
	background-color: var(--bg-blackest);
	color: #fff;
	position: relative;
}

.lcomm__text::before {
	content: '';
	border: 6px solid transparent;
	border-bottom-color: var(--bg-blackest);
	position: absolute;
	left: 30px;
	bottom: 100%;
	border-left-color: var(--bg-blackest);
}

.lcomm__link div {
	text-decoration: underline;
	font-size: 15px;
}


/* FOOTER, PAGINATION
----------------------------------------------- */
.footer__notify {
	border-left: 1px solid var(--bdc);
	padding-left: 20px;
}

.footer__copyright {
	font-size: 14px;
}

.footer__menu {
	text-transform: uppercase;
	font-weight: 500;
}

.pagination {
	gap: 20px 10px;
	padding-top: 20px;
}

.pagination__pages a,
.pagination__pages span,
.pagination>a,
.pagination>span {
	display: grid;
	place-items: center;
	color: var(--tt-fade);
	height: 36px;
	min-width: 36px;
	padding: 0 10px;
	border-radius: 3px;
	background-color: var(--bg);
	box-shadow: var(--bsh);
}

.pagination__pages {
	gap: 10px;
	font-size: 14px;
}

.pagination__pages span:not(.nav_ext) {
	color: #fff;
	background: var(--accent);
}

.pagination__btns {
	height: 36px;
	border-radius: 4px;
	overflow: hidden;
	background-color: var(--bg);
	box-shadow: var(--bsh);
}

.pagination__btns>* {
	width: 40px;
	display: grid;
	place-items: center;
	color: var(--accent);
	font-size: 18px;
}

.pagination__btns>span {
	color: var(--tt-fade);
}

.pagination__btn-loader:has(span:not(.fal)) {
	display: none;
}


/* INNER PAGE
----------------------------------------------- */
.page__main {
	background-color: var(--bg);
	box-shadow: var(--bsh);
	padding: 20px;
	border-radius: 6px;
	margin-bottom: 20px;
}

.item-page__title {
	text-transform: uppercase;
	font-size: 17px;
}

.item-page__title a {
	margin-left: 10px;
	font-size: 14px;
}

.item-page__poster {
	width: 200px;
}

.item-page__img {
	border-radius: 6px 6px 0 0;
	overflow: hidden;
}

.item-page__poster .item__ext-rating {
	position: absolute;
	left: 10px;
	bottom: 10px;
	z-index: 5;
	color: #fff;
}

.page__btn-watch {
	border-radius: 0 0 6px 6px;
	width: 100%;
}

.item-page .item__rating .unit-rating {
	--size: 23px;
	--size-1: -23px;
	--size-2: -46px
}

.page__text {
	background-color: var(--bg-darker);
	padding: 20px;
	border-radius: 6px;
	margin-top: 20px;
}

.page__caption {
	font-weight: 500;
	font-size: 17px;
	margin-bottom: 10px;
}

.page__scr ul {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 20px;
}

.page__scr a,
.page__scr img {
	display: block;
	height: auto;
	width: 100%;
	border-radius: 6px;
	aspect-ratio: 300 / 200;
}

.page__scr img {
	object-fit: cover;
}

.page__player {
	position: relative;
	background-color: var(--bg-black);
	color: #fff;
}

.page__subtitle {
	text-align: center;
	padding: 13px;
	font-weight: 500;
	font-size: 15px;
	background-color: var(--bg-blackest);
}

.page__player .tabs-block__select {
	gap: 0px;
	margin-bottom: 0px;
}

.page__player .tabs-block__select button {
	background: none;
	color: #fff;
	font-weight: 700;
	border-radius: 0;
}

.page__player .tabs-block__select button.is-active,
.page__player .tabs-block__select button:hover {
	background: var(--accent);
	color: #fff;
}

.page__complaint a {
	position: absolute;
	right: 20px;
	top: 0;
	display: flex;
	align-items: center;
	height: 40px;
	gap: 10px;
	color: var(--yellow);
}

.nl .page__player-controls+.tabs-block__content {
	display: block;
}

.item-related .item__img {
	border-radius: 4px;
	overflow: hidden;
}

.item-related .item__title {
	text-align: center;
	margin-top: 10px;
	line-height: 1.3;
	word-wrap: break-word;
}


/* TEXT BLOCK, TYPOGRAPHY, VIDEO BLOCK
----------------------------------------------- */
.page__title {
	margin-bottom: 30px;
	font-size: 24px;
}

.full-text {
	line-height: 1.6;
	font-size: 15px;
	word-wrap: break-word;
	color: var(--tt-fade-0);
}

.full-text a {
	text-decoration: underline;
	color: var(--ui-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 {
	margin-bottom: 25px;
}

.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: 6px;
	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: -3px;
	left: 17px;
	width: 24px;
	height: 30px;
	font-size: 14px;
	font-weight: 500;
	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: -3px;
	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>*:last-child {
	margin-bottom: 0;
}

.video-responsive {
	padding-top: 60%;
	position: relative;
	background-color: #000;
}

.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;
	margin-bottom: 20px;
}


/* COMMENTS
----------------------------------------------- */
.page__comments {
	margin-top: 0px;
}

.page__comments-info {
	color: var(--tt-fade);
	display: block;
	margin: 5px 0 20px;
	font-size: 14px;
	padding-left: 23px;
	position: relative;
}

.page__comments-info::before {
	color: var(--red);
	position: absolute;
	left: 0;
	top: 2px;
}

.page__ac {
	background-color: var(--bg);
	box-shadow: var(--bsh);
	padding: 20px;
	padding-bottom: 10px;
	border-radius: 6px;
	margin-bottom: 20px;
}

.ac-form {
	position: relative;
}

.ac-form__header,
.ac-form__editor,
.ac-form .message-info {
	gap: 10px;
	margin-bottom: 10px;
}

.ac-form__btn {
	padding: 0 60px;
}

.ac-form__bottom {
	gap: 25px;
}

.confidential-check {
	font-size: 14px;
}

.ac-form__header>span {
	margin-left: 15px;
}

.ac-form .comments_subscribe {
	margin-top: 0px;
}

.page__ac:not(:has(.ac-toggle)) {
	padding-bottom: 20px;
}

.ac-toggle.ac-form {
	cursor: pointer;
}

.ac-form__header input,
.ac-form__editor textarea {
	background-color: rgba(0, 0, 0, 0.02);
}

.ac-toggle,
.ac-toggle .ac-form__editor {
	position: relative;
}

.ac-toggle .ac-form__bottom button {
	position: absolute;
	bottom: 20px;
	right: 10px;
	z-index: 10;
	pointer-events: none;
}

.ac-form .bb-btn {
	display: none;
}

.ac-form .bb-pane {
	background: none;
	box-shadow: none;
	border: 0;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
}

.ac-form #b_emo,
.ac-form #b_leech,
.ac-form #b_quote,
.ac-form #b_spoiler,
.ac-form #b_b,
.ac-form #b_u,
.ac-form #b_s,
.ac-form #b_color,
.ac-form #b_hide {
	display: grid;
}

.ac-toggle .bb-btn {
	pointer-events: none;
}

.ac-toggle .ac-form__editor .bb-editor textarea {
	height: 120px;
	resize: none;
}

.ac-form__editor .bb-editor textarea {
	height: 200px;
	line-height: 1.4;
	padding-bottom: 40px;
}

.comments_subscribe+br,
.ac-form .bb-editor+br {
	display: none;
}

.ac-toggle .has-checkbox {
	display: none;
}

.mass_comments_action {
	display: none;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.mass_comments_action select {
	flex: 1 1 0;
	margin: 0 -28px 0 0;
	border-radius: 0;
	box-shadow: none;
	min-width: 60%;
}

.mass_comments_action .bbcodes {
	border-radius: 0;
	padding: 0 10px;
}

.comm__title {
	font-size: 18px;
	margin-bottom: 20px;
}

.comm {
	margin-bottom: 20px;
	position: relative;
	border-radius: 6px;
	background-color: #e4ebef;
	padding: 20px;
	padding-left: 90px;
}

.comm__img {
	width: 50px;
	height: 50px;
	border-radius: 4px;
	position: absolute;
	left: 20px;
	top: 20px;
}

.comm__letter {
	width: 100%;
	height: 100%;
	text-transform: uppercase;
	border-radius: inherit;
	position: absolute;
	left: 0;
	top: 0;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
}

.comm__author,
.comm__author a {
	color: var(--tt);
	font-weight: 500;
}

.comm__date {
	color: var(--tt-fade);
	font-size: 13px;
}

.comm__rating a {
	display: grid;
	place-items: center;
	width: 20px;
	height: 20px;
	;
	border-radius: 50%;
	background-color: var(--green);
	color: #fff;
	font-size: 12px;
}

.comm__rating a:first-child {
	background-color: var(--red);
}

.comm__rating span {
	font-size: 14px;
	font-weight: 500;
}

.comm__rating span .ratingplus {
	color: var(--green);
}

.comm__rating span .ratingminus {
	color: var(--red);
}

.comm__text {
	margin: 8px 0;
}

.comm__action {
	font-size: 13px;
}

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

.comm__ctrl-btn {
	font-size: 30px;
	height: 30px;
}

.comm__ctrl-menu li+li {
	margin-top: 10px;
}

body:has(.pwidget) #dropmenudiv {
	z-index: 1000 !important;
}


/* POPUP WIDGET
----------------------------------------------- */
.pwidget {
	background-color: var(--bg);
	color: var(--tt);
	border-radius: 20px;
	overflow: hidden;
	z-index: 999;
	padding: 20px;
	padding-top: 24px;
	position: fixed;
	left: 20px;
	bottom: 20px;
	right: 20px;
	box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}

.pwidget::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(0, 0, 0, 0.2);
	height: 4px;
	width: 40px;
	border-radius: 2px;
}

.pwidget .wctrl__content {
	display: block;
	margin-bottom: 20px;
}

@media screen and (min-width: 760px) {
	.pwidget {
		left: 50%;
		bottom: 50%;
		right: auto;
		translate: -50% 50%;
		width: 400px;
	}

	.pwidget::before {
		display: none;
	}
}


/* LOGIN
----------------------------------------------- */
.lgn {
	position: fixed;
	z-index: 999;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
	width: 500px;
	max-width: calc(100% - 40px);
}

.lgn__content {
	background-color: var(--bg);
	box-shadow: var(--bsh-long);
	padding: 30px 60px;
	position: relative;
}

.lgn__ctrl>* {
	color: #fff !important;
	font-size: 19px;
	font-weight: 500;
	height: 45px;
	position: relative;
	text-transform: uppercase;
}

.lgn__ctrl span::before {
	content: '';
	border: 10px solid transparent;
	border-bottom-color: var(--bg);
	position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: -10px;
	z-index: 5;
}

.lgn__btn-close {
	font-size: 40px;
	color: #fff;
	position: absolute;
	right: -50px;
	top: 0;
	z-index: 10;
}

.lgn__header {
	position: relative;
	padding-left: 80px;
	margin-bottom: 15px;
}

.lgn__avatar {
	width: 60px;
	background-color: var(--bg-darker);
	color: var(--bg-darkest);
	font-size: 24px;
	position: absolute;
	left: 0;
	top: 50%;
	translate: 0 -50%;
	overflow: hidden;
	border-radius: 50%;
}

.lgn__title {
	font-size: 19px;
	font-weight: 500;
}

.lgn__caption {
	color: var(--tt-fade);
	margin-top: 5px;
}

.lgn__input input {
	height: 50px;
	line-height: 50px;
	border-radius: 0;
	padding: 0 30px;
}

.lgn__input input::placeholder {
	font-size: 16px;
}

.lgn__input input+input {
	margin-top: -1px;
}

.lgn__input input:focus {
	position: relative;
	z-index: 5;
}

.lgn__btn button {
	height: 50px;
}

.lgn__cell a {
	color: var(--ui-accent);
}

.lgn__social-caption {
	font-size: 13px;
	color: var(--tt-fade);
	margin-top: 5px;
}

.lgn__social-caption::before,
.lgn__social-caption::after {
	content: '';
	flex-grow: 1;
	background: var(--bdc);
	height: 1px;
}

.lgn__social a {
	border-radius: 50%;
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
}

.lgn__social a img {
	height: 18px;
	width: 18px;
	display: block;
	filter: invert(1);
}

.lgn__social-vk {
	background-color: #587ba1;
}

.lgn__social-ok {
	background-color: #ff9800;
}

.lgn__social-fb {
	background-color: #3b5998;
}

.lgn__social-ml {
	background-color: #2196f3;
}

.lgn__social-gg {
	background-color: #f44336;
}

.lgn__social-ya {
	background-color: #fc3f1d;
}

.lgn__social:not(:has(a)) {
	display: none;
}

.lgn--logged {
	width: 400px;
}

.lgn__menu a {
	display: flex;
	align-items: center;
	gap: 10px;
}

.c-0 span {
	display: none;
}



/**
 * 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-stage {
	position: relative;
	display: flex;
	justify-content: flex-start;
}

.owl-stage-outer {
	position: relative;
	overflow: hidden;
	transform: translate3d(0px, 0px, 0px);
}

.owl-item {
	position: relative;
	min-height: 10px;
}

.owl-nav.disabled,
.owl-dots.disabled,
.owl-carousel.owl-refresh .owl-item {
	display: none;
}

.owl-carousel.owl-drag .owl-item {
	user-select: none;
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: grab;
}

.owl-nav {
	position: absolute;
	right: 0;
	left: 0;
	top: 50%;
	margin-top: -20px;
}

.owl-prev,
.owl-next {
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	font-size: 18px;
	background-color: var(--bg);
	color: var(--tt);
	box-shadow: var(--bsh);
	position: absolute;
	top: 0;
}

.owl-prev {
	left: var(--indent-negative);
	border-radius: 0 4px 4px 0;
}

.owl-next {
	right: var(--indent-negative);
	border-radius: 4px 0 0 4px;
}

.owl-dots {
	display: flex;
	gap: 10px;
	justify-content: center;
	position: absolute;
	left: var(--indent);
	right: var(--indent);
	bottom: -24px;
}

.owl-dot {
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	cursor: pointer;
	background-color: var(--bg-darker);
}

.owl-dot.active {
	background-color: var(--yellow);
}

.page__related .owl-nav {
	margin-top: -45px;
}


/* CLS FIX
----------------------------------------------- */
.has-carousel:not(.owl-carousel) {
	display: flex;
	overflow: hidden;
	gap: 20px;
}

.has-carousel:not(.owl-carousel)>* {
	flex-shrink: 0;
}

.has-carousel:not(.owl-carousel)>.item-carou {
	width: calc((100% - 160px)/9);
}

.soon-items:not(.owl-carousel) {
	gap: 15px;
}

.soon-items:not(.owl-carousel)>.item-soon {
	width: calc((100% - 30px)/3);
}

.sb__content:has(#soon-carou) {
	padding-bottom: 40px;
}

.page__related:not(.owl-carousel)>.item-related {
	width: calc((100% - 100px)/6);
}

@media screen and (max-width: 1220px) {
	.has-carousel:not(.owl-carousel)>.item-carou {
		width: calc((100% - 140px)/8);
	}

	.soon-items:not(.owl-carousel)>.item-soon {
		width: calc((100% - 105px)/8);
	}

	body:has(#filter-block) .cols__content:not(:has(#filter-block)) {
		padding-top: 73px;
	}
}

@media screen and (max-width: 950px) {
	.has-carousel:not(.owl-carousel)>.item-carou {
		width: calc((100% - 100px)/6);
	}

	.soon-items:not(.owl-carousel)>.item-soon {
		width: calc((100% - 75px)/6);
	}
}

@media screen and (max-width: 760px) {
	.has-carousel:not(.owl-carousel)>.item-carou {
		width: calc((100% - 60px)/4);
	}

	.soon-items:not(.owl-carousel)>.item-soon {
		width: calc((100% - 45px)/4);
	}

	.page__related:not(.owl-carousel)>.item-related {
		width: calc((100% - 60px)/4);
	}
}

@media screen and (max-width: 590px) {
	.has-carousel:not(.owl-carousel)>.item-carou {
		width: calc((100% - 40px)/3);
	}

	.soon-items:not(.owl-carousel)>.item-soon {
		width: calc((100% - 30px)/3);
	}

	.page__related:not(.owl-carousel)>.item-related {
		width: calc((100% - 40px)/3);
	}
}

.filter-block {
	background-color: var(--bg-black);
	--tt: var(--tt-on-black);
	color: #fff;
}

.filter-block__title {
	padding: 10px;
	text-align: center;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	background-color: var(--bg-blackest);
	cursor: pointer;
	text-transform: uppercase;
}

.filter {
	gap: 10px 20px;
}

.filter__col {
	flex: 1 0 280px;
	max-width: 100%;
	min-width: 280px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.filter__cell select {
	height: 40px;
	box-shadow: none;
	border: 1px solid rgba(0, 0, 0, 0.5);
	background-color: var(--bg-blackest);
	color: var(--tt-on-black);
}

.filter__cell input[type="text"] {
	opacity: 0;
}

.filter__cell [data-dlefilter="reset"]:not(:hover) {
	background-color: var(--bg-blackest);
	color: var(--tt-on-black);
}

.cols__content .filter {
	display: none;
}

.cols__content .filter-block.is-active .filter {
	display: flex;
	padding: 20px;
}

.cols__content .filter-block__title {
	display: flex;
}

.cols__content .filter-block {
	margin: -30px var(--indent-negative);
	margin-bottom: 30px;
}

.tail-select,
.tail-select * {
	outline: none;
	user-select: none;
}

.tail-select {
	position: relative;
}

.tail-select-container,
.select-label {
	border: 1px solid rgba(0, 0, 0, 0.5);
	background-color: var(--bg-blackest);
	padding: 5px 5px;
	min-height: 40px;
	position: relative;
	cursor: pointer;
	color: var(--tt-on-black);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
	padding-right: 40px;
	border-radius: 3px;
}

.tail-select .label-inner {
	margin-left: 5px;
	font-size: 14px;
}

.tail-select-container .select-handle {
	display: flex;
	align-items: center;
	height: 28px;
	padding: 0 8px;
	border-radius: 2px;
	background-color: var(--accent);
	color: #fff;
	cursor: pointer;
	font-size: 12px;
	text-transform: uppercase;
}

.tail-select .select-label::before,
.tail-select .select-label::after {
	position: absolute;
	top: 50%;
	right: 10px;
	content: "\f0d8";
	color: var(--tt-on-black);
	margin-top: -15px;
	opacity: 0.5;
}

.tail-select .select-label::after {
	margin-top: -5px;
	transform: rotate(180deg);
}

.tail-select .select-dropdown {
	top: 100%;
	left: 0;
	width: 100%;
	z-index: 100;
	display: none;
	position: absolute;
	background-color: var(--bg-blackest);
	border: 1px solid rgba(0, 0, 0, 0.5);
	box-shadow: var(--bsh-long);
	border-radius: 3px;
}

.tail-select .select-dropdown .dropdown-inner {
	padding: 1px 0;
	overflow-x: hidden;
	overflow-y: auto;
	max-height: 300px;
}

.tail-select .dropdown-optgroup {
	padding: 15px;
}

.tail-select .select-dropdown .dropdown-empty {
	padding: 20px;
	font-size: 14px;
	text-align: center;
}

.tail-select .select-dropdown ul li+li {
	margin-top: 10px;
}

.tail-select .select-dropdown ul li {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 14px;
}

.tail-select .select-dropdown ul li.dropdown-option::before {
	content: "";
	background-color: var(--bg-black);
	width: 18px;
	height: 18px;
	border-radius: 1px;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
	display: flex;
	justify-content: center;
	font-size: 14px;
	color: #000;
	flex-shrink: 0;
	box-sizing: border-box;
	padding-bottom: 3px;
}

.tail-select .select-dropdown ul li.dropdown-option.selected {
	color: var(--yellow);
}

.tail-select .select-dropdown ul li.dropdown-option.selected::before {
	background-color: var(--yellow);
	content: "\f00c";
	box-shadow: none;
}

.tail-select .select-dropdown ul li:hover {
	color: var(--yellow);
}

.tail-select-container:hover,
.select-label:hover {
	border-color: var(--accent);
}

.tail-select-container .select-handle:hover {
	background-color: var(--red);
}

.irs {
	position: relative;
	display: block;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.irs-line {
	position: relative;
	display: block;
	overflow: hidden;
	outline: none !important;
}

.irs-line-left,
.irs-line-mid,
.irs-line-right {
	position: absolute;
	display: block;
	top: 0;
}

.irs-line-left {
	left: 0;
	width: 11%;
}

.irs-line-mid {
	left: 9%;
	width: 82%;
}

.irs-line-right {
	right: 0;
	width: 11%;
}

.irs-bar {
	position: absolute;
	display: block;
	left: 0;
	width: 0;
}

.irs-bar-edge {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
}

.irs-shadow {
	position: absolute;
	display: none;
	left: 0;
	width: 0;
}

.irs-handle {
	position: absolute;
	display: block;
	cursor: default;
	z-index: 1;
}

.irs-handle.type_last {
	z-index: 2;
}

.irs-min {
	position: absolute;
	display: block;
	left: 0;
	cursor: default;
}

.irs-max {
	position: absolute;
	display: block;
	right: 0;
	cursor: default;
}

.irs-from,
.irs-to,
.irs-single {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	cursor: default;
	white-space: nowrap;
}

.irs-grid {
	position: absolute;
	display: none;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 20px;
}

.irs-with-grid .irs-grid {
	display: block;
}

.irs-grid-pol {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 8px;
	background: #ec2828;
}

.irs-grid-pol.small {
	height: 4px;
}

.irs-grid-text {
	position: absolute;
	bottom: 0;
	left: 0;
	white-space: nowrap;
	text-align: center;
	font-size: 9px;
	line-height: 9px;
	padding: 0 3px;
	color: #ec2828;
}

.irs-disable-mask {
	position: absolute;
	display: block;
	top: 0;
	left: -1%;
	width: 102%;
	height: 100%;
	cursor: default;
	background: rgba(0, 0, 0, 0.0);
	z-index: 2;
}

.irs-disabled {
	opacity: 0.4;
}

.lt-ie9 .irs-disabled {
	filter: alpha(opacity=40);
}

.irs-hidden-input {
	position: absolute !important;
	display: block !important;
	top: 0 !important;
	left: 0 !important;
	width: 0 !important;
	height: 0 !important;
	font-size: 0 !important;
	line-height: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	outline: none !important;
	z-index: -9999 !important;
	background: none !important;
	border-style: solid !important;
	border-color: transparent !important;
}

.irs {
	height: 40px;
}

.irs-line {
	height: 6px;
	top: 25px;
	background-color: var(--bg-blackest);
	border-radius: 3px;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

.irs-bar {
	height: 6px;
	top: 25px;
	background-color: var(--accent);
	border-radius: 3px;
}

.irs-bar-edge {
	top: 25px;
	height: 8px;
	width: 11px;
	background-color: var(--bg-blackest);
}

.irs-handle {
	width: 20px;
	height: 20px;
	top: 18px;
	background-color: var(--bg-blackest);
	border-radius: 3px;
	border: 4px solid var(--accent);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
	cursor: pointer;
}

.irs-from,
.irs-to,
.irs-single {
	font-size: 10px;
	margin-top: -5px;
	border: 1px solid var(--bdc);
	padding: 0 5px;
	height: 22px;
	display: flex;
	align-items: center;
	background: var(--bg-blackest);
	color: var(--tt-on-black);
	border-radius: 3px;
}

/* EPISODE BUTTONS
----------------------------------------------- */
.buttttons {
	display: table;
	height: 100%;
	width: 100%;
}

.kontaiher {
	display: table-cell;
	padding: 1em;
	text-align: center;
	vertical-align: middle;
}

/* --- Qismlar setkasi va Aktiv holat (FIXED) --- */
.episode-grid {
	text-align: center;
	margin-top: 15px;
}

/* Umumlashgan tugma dizayni (Havolalar va Aktiv qism uchun) */
.episode-grid a,
.episode-grid b {
	display: inline-block !important;
	vertical-align: middle;
	color: #fff !important;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	cursor: pointer;
	font-size: 13px;
	font-weight: 500;
	height: 36px;
	line-height: 34px;
	min-width: 80px;
	padding: 0 12px;
	margin: 4px;
	border-radius: 4px;
	text-decoration: none !important;
	transition: all 0.2s ease;
	box-sizing: border-box;
	text-align: center;
}

/* AKTIV QISM (Tanlangan qism binafsha rangda) */
.episode-grid b,
.episode-grid .active {
	background: var(--accent) !important;
	color: #fff !important;
	border-color: var(--accent) !important;
	font-weight: 700 !important;
	box-shadow: 0 4px 12px rgba(118, 59, 188, 0.4);
}

.episode-grid a:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff !important;
}

/* MOBIL: 3 qatorli qat'iy setka */
@media screen and (max-width: 480px) {
	.episode-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 8px;
		text-align: left;
	}

	.episode-grid a,
	.episode-grid b {
		min-width: 0;
		width: 100%;
		margin: 0;
		padding: 0 4px;
		font-size: 12px;
	}
}

@media (min-width: 400px) {
	.BatcoH {
		display: inline-block;
		margin-right: 0.4em;
	}
}

.BatcoH:hover {
	background: var(--accent);
	color: #fff !important;
	text-decoration: none !important;
}

.BatcoH-dub {
	color: #fff;
	background: var(--bg-blackest);
	border: 1px solid var(--bdc);
	cursor: pointer;
	display: block;
	font-size: 16px;
	font-weight: 400;
	line-height: 45px;
	margin: 0 auto 0.5em;
	max-width: 200px;
	position: relative;
	text-decoration: none;
	vertical-align: middle;
	width: 100%;
	border-radius: 4px;
}

@media (min-width: 400px) {
	.BatcoH-dub {
		display: inline-block;
		margin-right: 0.4em;
	}
}

.BatcoH-dub:hover {
	background: var(--accent);
	text-decoration: none;
}

.BatcoH-prevnext {
	color: #fff;
	background: var(--accent);
	cursor: pointer;
	display: block;
	font-size: 14px;
	font-weight: 700;
	line-height: 45px;
	margin: 0 auto 0.5em;
	max-width: 45%;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
	vertical-align: middle;
	width: 45%;
	border-radius: 4px;
	text-align: center;
}

@media (min-width: 400px) {
	.BatcoH-prevnext {
		display: inline-block;
		margin-right: 0.5em;
	}
}

.BatcoH-prevnext:hover {
	background: var(--yellow);
	color: #000;
	text-decoration: none;
}

.BatcoH-4 {
	border: 1px solid;
	overflow: hidden;
	position: relative;
	z-index: 20;
}

.BatcoH-4:after {
	background: #fff;
	content: "";
	height: 155px;
	left: -75px;
	opacity: .2;
	position: absolute;
	top: -50px;
	-webkit-transform: rotate(35deg);
	transform: rotate(35deg);
	-webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
	transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
	width: 50px;
	z-index: -10;
}

.BatcoH-4:hover:after {
	left: 120%;
}

.BatcoH-5 {
	border: 0 solid;
	box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
	outline: 1px solid;
	outline-offset: 0px;
	text-shadow: none;
	-webkit-transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
	transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.BatcoH-5:hover {
	border: 1px solid;
	box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
	outline-color: rgba(255, 255, 255, 0);
	outline-offset: 15px;
	text-shadow: 1px 1px 2px var(--accent);
}