@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, button, input, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}

fieldset, img {
	border: 0;
}

img, object, embed {
	vertical-align: bottom;
}

address, caption, cite, code, dfn, em, th, var {
	font-style: normal;
	font-weight: normal;
}

ol, ul {
	list-style: none;
}

caption, th {
	text-align: left;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
}

q:before, q:after {
	content: '';
}

a * {
	cursor: pointer;
}

input,
textarea {
	outline: none;
}

:root {
	--font-size-general: 16px;
	--line-height-general: 1.2;
	--default-font: "Outfit", sans-serif;
	--color-main: #fff;
	--color-active: #E80036;
	--color-second: #6a6a6c;
	--color-text: #ee628e;
	--bg-main: #1B1A1D;
	--bg-black: #000;
	--bg-active: #E80036;
	--bg-dark-rgb-tools: 11, 11, 11;
	--bg-second: #353339;
	--bg-tools: #850b31;
	--bg-tools-rgb: 27, 26, 29;
	--bg-swiper-gradient-next: linear-gradient(270deg, #1b1a1d 52.6%, rgba(27, 26, 29, 0) 100%);
	--bg-swiper-gradient-prev: linear-gradient(90deg, #1b1a1d 52.6%, rgba(245, 26, 29, 0) 100%);
}

button,
input,
textarea {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}

html {
	height: 100%;
	min-width: 320px;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	font: var(--font-size-general)/var(--line-height-general) var(--default-font);
	font-weight: 400;
	height: 100%;
	min-width: 320px;
	position: relative;
	color: var(--color-main);
	background: var(--bg-main);
}

@media screen and (max-width: 1024px) {
	body.open-menu .navigation {
		transform: translate3d(0, 0, 0);
		visibility: visible;
		opacity: 1;
	}
	body.open-menu .mask {
		opacity: 1;
		visibility: visible;
	}
}

@media screen and (max-width: 640px) {
	body.show-search .header-search {
		top: 50%;
		visibility: visible;
		opacity: 1;
	}
	body.show-search .action-search use[href="#icon-search"] {
		display: none;
	}
	body.show-search .action-search use[href="#icon-close"] {
		display: block;
	}
}

@media screen and (max-width: 1024px) {
	body.scroll-locked {
		height: 100%;
		overflow: hidden;
		position: fixed;
		width: 100%;
	}
}

a {
	color: #fff;
	text-decoration: none;
}

input {
	outline: none;
	-webkit-appearance: none;
	border-radius: 0;
}

* {
	box-sizing: border-box;
	outline: none;
}

*:before, *:after {
	box-sizing: border-box;
}

* ::-moz-selection {
	background: #2600ff;
	color: #fff;
}

* ::selection {
	background: #2600ff;
	color: #fff;
}

.svg-icon {
	display: inline-block;
	vertical-align: top;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	color: #6A6A6C;
}

input:-moz-placeholder, textarea:-moz-placeholder {
	color: #6A6A6C;
	opacity: 1;
}

input::-moz-placeholder, textarea::-moz-placeholder {
	color: #6A6A6C;
	opacity: 1;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
	color: #6A6A6C;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
	color: transparent;
}

input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
	color: transparent;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
	color: transparent;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
	color: transparent;
}

input.placeholder, textarea.placeholder {
	color: #6A6A6C !important;
}

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.container {
	max-width: 1650px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

@media screen and (max-width: 767px) {
	.container {
		padding: 0 10px;
	}
}

.header {
	flex-shrink: 0;
	flex-grow: 0;
	margin-bottom: 30px;
	background-color: var(--bg-tools);
	display: flex;
	gap: 0 50px;
	padding: 0 30px;
	min-height: 80px;
}

@media screen and (max-width: 1366px) {
	.header {
		gap: 0 20px;
		padding: 0 20px;
		margin-bottom: 20px;
		min-height: 60px;
	}
}

@media screen and (max-width: 640px) {
	.header {
		justify-content: space-between;
		position: relative;
	}
}

.logo {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 116px;
	transition: opacity .3s, visibility .3s;
}

@media screen and (max-width: 640px) {
	.logo {
		flex-grow: 1;
		flex-shrink: 1;
	}
}

.logo img {
	max-width: 100%;
}

.header-search {
	flex-grow: 1;
	flex-shrink: 1;
	align-self: center;
}

@media screen and (max-width: 640px) {
	.header-search {
		position: absolute;
		right: 0;
		padding: 0 64px 0 5px;
		top: 80%;
		left: 0;
		z-index: 3;
		opacity: 0;
		visibility: hidden;
		transition: opacity .3s, visibility .3s, top .3s;
		transform: translate3d(0, -50%, 0);
	}
}

.header-search .form {
	max-width: 600px;
	display: flex;
	width: 100%;
	padding: 0 30px;
	background: var(--bg-main);
	height: 40px;
	border-radius: 15px;
}

@media screen and (max-width: 1024px) {
	.header-search .form {
		max-width: 100%;
	}
}

@media screen and (max-width: 640px) {
	.header-search .form {
		height: 50px;
	}
}

.header-search .input {
	width: 100%;
	border: none;
	height: 100%;
	background-color: transparent;
	padding: 10px 0;
	color: var(--color-main);
	font-weight: 400;
	font-size: 16px;
}

.header-search .btn {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-main);
	font-size: 20px;
	margin-left: 10px;
	background-color: transparent;
	border: none;
	transition: color .3s;
}

@media screen and (min-width: 1025px) {
	.header-search .btn:hover {
		color: var(--color-active);
	}
}

.action-search {
	flex-grow: 0;
	flex-shrink: 0;
	justify-self: flex-end;
	display: none;
	font-size: 24px;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border: none;
	color: var(--color-main);
}

@media screen and (max-width: 640px) {
	.action-search {
		display: flex;
	}
}

.action-search use[href="#icon-close"] {
	display: none;
}

.navigation {
	flex-grow: 0;
	flex-shrink: 0;
}

@media screen and (max-width: 1024px) {
	.navigation {
		background-color: var(--bg-tools);
		position: fixed;
		padding: 10px 0;
		top: 0;
		left: 0;
		bottom: 0;
		max-width: 300px;
		width: 100%;
		overflow: auto;
		height: 100svh;
		z-index: 20;
		transition: transform .3s, visibility .3s, opacity .3s;
		transform: translate3d(-100%, 0, 0);
		visibility: hidden;
		opacity: 0;
	}
}

.navigation .list {
	display: flex;
	align-items: center;
	gap: 0 10px;
	height: 100%;
}

@media screen and (max-width: 1024px) {
	.navigation .list {
		flex-direction: column;
		height: auto;
	}
}

.navigation li {
	height: 100%;
}

@media screen and (max-width: 1024px) {
	.navigation li {
		width: 100%;
	}
}

.navigation li.active .link {
	background-color: var(--bg-active);
	color: var(--color-main);
}

.navigation .link {
	height: 100%;
	display: flex;
	align-items: center;
	gap: 0 10px;
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 0 20px;
	color: var(--color-text);
}

@media screen and (max-width: 1366px) {
	.navigation .link {
		gap: 0 5px;
		padding: 0 15px;
	}
}

@media screen and (max-width: 1024px) {
	.navigation .link {
		padding: 20px;
	}
}

.navigation .link span {
	font-size: 14px;
}

.navigation a.link {
	transition: color .3s, background-color .3s;
}

@media screen and (min-width: 1025px) {
	.navigation a.link:hover {
		color: var(--color-main);
		background-color: var(--bg-active);
	}
}

.hamburger {
	flex-shrink: 0;
	flex-grow: 0;
	display: none;
	align-self: center;
	border: none;
	cursor: pointer;
	font-size: 24px;
	background: none;
	color: var(--color-main);
}

@media screen and (max-width: 1024px) {
	.hamburger {
		display: flex;
	}
}

.header-top {
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 0 20px;
	margin-bottom: 30px;
}

@media screen and (max-width: 1024px) {
	.header-top {
		display: flex;
	}
}

.header-top .logo-mobile img {
	max-width: 100%;
}

.header-top .close {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	cursor: pointer;
	color: var(--color-main);
	border: none;
	background: none;
}

.mask {
	--opacity: .8;
	--blur: 15px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	backdrop-filter: blur(var(--blur));
	background: rgba(var(--bg-dark-rgb-tools), var(--opacity));
	opacity: 0;
	visibility: hidden;
	transition: transform .3s, opacity .3s, visibility .3s;
}

.swiper {
	display: none;
}

@media screen and (max-width: 767px) {
	.swiper {
		margin: 0 -10px;
		padding: 0 10px;
	}
}

.swiper.swiper-initialized {
	display: block;
}

.main {
	flex-shrink: 1;
	flex-grow: 1;
}

.section {
	margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
	.section {
		margin-bottom: 30px;
	}
}

.section:last-child {
	margin-bottom: 0;
}

.section.second {
	margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
	.section.second {
		margin-bottom: 20px;
	}
}

.swiper-top .swiper-slide {
	width: auto;
}

.swiper-top .swiper-slide.swiper-slide-active a {
	color: var(--color-main);
	background: var(--bg-active);
}

.swiper-top a {
	display: flex;
	align-items: center;
	border-radius: 15px;
	background-color: var(--bg-second);
	font-size: 14px;
	font-weight: 500;
	color: var(--color-second);
	padding: 10px 20px;
	line-height: 1.1423;
	transition: color .3s, background-color .3s;
}

@media screen and (min-width: 1025px) {
	.swiper-top a:hover {
		color: var(--color-main);
		background-color: var(--bg-active);
	}
}

.swiper-top .swiper-top-prev,
.swiper-top .swiper-top-next {
	width: 73px;
	padding: 0 10px;
	color: var(--color-second);
	transition: color .3s;
	margin: 0;
	height: 100%;
	top: 0;
	font-size: 14px;
}

@media screen and (min-width: 1025px) {
	.swiper-top .swiper-top-prev:hover,
	.swiper-top .swiper-top-next:hover {
		color: var(--color-active);
	}
}

@media screen and (max-width: 767px) {
	.swiper-top .swiper-top-prev,
	.swiper-top .swiper-top-next {
		display: none;
	}
}

.swiper-top .swiper-top-prev::after,
.swiper-top .swiper-top-next::after {
	display: none;
}

.swiper-top .swiper-top-prev .svg-icon,
.swiper-top .swiper-top-next .svg-icon {
	width: 1em;
	height: 1em;
}

.swiper-top .swiper-top-prev.swiper-button-disabled,
.swiper-top .swiper-top-next.swiper-button-disabled {
	display: none;
}

.swiper-top .swiper-top-next {
	justify-content: flex-end;
	right: 0;
	background: var(--bg-swiper-gradient-next);
}

.swiper-top .swiper-top-prev {
	justify-content: flex-start;
	left: 0;
	background: var(--bg-swiper-gradient-prev);
}

.headline {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

@media screen and (max-width: 390px) {
	.headline {
		flex-wrap: wrap;
	}
}

.headline.second {
	margin-bottom: 45px;
}

@media screen and (max-width: 767px) {
	.headline.second {
		margin-bottom: 25px;
	}
}

.headline .title {
	flex-grow: 1;
	flex-shrink: 1;
	font-weight: 800;
	font-size: 24px;
	text-transform: uppercase;
}

@media screen and (max-width: 767px) {
	.headline .title {
		font-size: 20px;
	}
}

.sort {
	flex-grow: 0;
	flex-shrink: 0;
	position: relative;
}

.sort.show .btn {
	border-radius: 15px 15px 0 0;
	background-color: var(--bg-active);
	color: var(--color-main);
}

.sort.show .btn svg {
	transform: rotate(180deg);
}

.sort.show .sort-hidden {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	visibility: visible;
}

.sort .btn {
	cursor: pointer;
	border: none;
	display: flex;
	align-items: center;
	gap: 10px;
	background-color: var(--bg-second);
	color: var(--color-second);
	border-radius: 15px;
	padding: 9px 20px;
	line-height: 1.286;
	min-width: 120px;
	font-weight: 500;
	font-size: 10px;
	text-transform: uppercase;
	transition: color .3s, background-color .3s;
}

@media screen and (min-width: 1025px) {
	.sort .btn:hover {
		color: var(--color-main);
		background-color: var(--bg-active);
	}
}

.sort .btn span {
	font-size: 14px;
	flex-grow: 1;
	flex-shrink: 1;
	text-align: start;
}

.sort .btn svg {
	flex-grow: 0;
	flex-shrink: 0;
	transition: transform .3s;
}

.sort-hidden {
	position: absolute;
	z-index: 10;
	background: var(--bg-second);
	width: 100%;
	right: 0;
	border-radius: 0 0 10px 10px;
	overflow: hidden;
	top: 100%;
	max-height: 150px;
	overflow-y: auto;
	opacity: 0;
	transform: translate3d(0, -10%, 0);
	visibility: hidden;
	transition: opacity .3s, transform .3s, visibility .3s;
}

.sort-hidden a {
	display: flex;
	align-items: center;
	color: var(--color-second);
	text-transform: uppercase;
	padding: 8px 20px;
	font-weight: 500;
	line-height: 1.25;
	font-size: 14px;
	transition: color .3s, background-color .3s;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

@media screen and (min-width: 1025px) {
	.sort-hidden a:hover {
		color: var(--color-main);
		background-color: var(--bg-active);
	}
}

.view-all {
	flex-grow: 0;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	background-color: var(--bg-second);
	color: var(--color-second);
	border-radius: 15px;
	padding: 9px 20px;
	line-height: 1.286;
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
	transition: color .3s, background-color .3s;
}

.author-box .name {
	transition: color .3s;
}

@media screen and (min-width: 1025px) {
	.view-all:hover {
		color: var(--color-main);
		background-color: var(--bg-active);
	}

	.author-box .name:hover {
		color: var(--color-active)
	}
}

.main-flex {
	gap: 30px var(--flex-gap);
	--flex-items: 5;
}

@media screen and (max-width: 1160px) {
	.main-flex {
		--flex-items: 4;
	}
}

.secondary-flex {
	--flex-items: 4;
	gap: var(--flex-gap);
}

.main-flex,
.secondary-flex {
	--flex-gap: 20px;
	display: flex;
	flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
	.main-flex,
	.secondary-flex {
		--flex-items: 3;
	}
}

@media screen and (max-width: 640px) {
	.main-flex,
	.secondary-flex {
		--flex-items: 2;
	}
}

@media screen and (max-width: 480px) {
	.main-flex,
	.secondary-flex {
		--flex-items: 1;
	}
}

.main-flex .th,
.secondary-flex .th {
	width: calc((100% / var(--flex-items)) - (((var(--flex-items) - 1) / var(--flex-items)) * var(--flex-gap)));
}

.card .duration {
	position: absolute;
	right: 10px;
	bottom: 10px;
	font-size: 12px;
	border-radius: 8px;
	padding: 4px 7px;
	line-height: 1.167;
	color: var(--color-main);
	backdrop-filter: blur(15px);
	background: rgba(var(--bg-dark-rgb-tools), 0.6);
}

.card .content {
	display: block;
}

@media screen and (min-width: 1025px) {
	.card .content:hover .img {
		opacity: .8;
	}
	.card .content:hover .title {
		color: var(--color-active);
	}
}

.card .title {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 8px;
	color: var(--color-main);
	transition: color .3s;
}

.card .group {
	margin-top: 8px;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 10px;
}

.card .author {
	display: flex;
	align-items: center;
	overflow: hidden;
	gap: 5px 10px;
	flex-shrink: 1;
	flex-grow: 1;
}

.card .ava {
	flex-shrink: 0;
	flex-grow: 0;
	font-size: 14px;
	border-radius: 100%;
	overflow: hidden;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-second);
	background: var(--bg-second);
}

.card .ava img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.card .wrap {
	flex-grow: 1;
	flex-shrink: 1;
}

.card .name {
	display: flex;
	font-size: 14px;
}

.card .name a {
	color: var(--color-main);
	transition: color .3s;
}

@media screen and (min-width: 1025px) {
	.card .name a:hover {
		color: var(--color-active);
	}
}

.card .media,
.card-channel .media,
.card-categories .media {
	position: relative;
	padding-bottom: 55.884%;
	border-radius: 15px;
	overflow: hidden;
}

.card .img,
.card-channel .img,
.card-categories .img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	transition: opacity .3s;
}

.card-list {
	margin-top: 5px;
	font-size: 12px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
	color: var(--color-second);
}

.card-list li {
	display: flex;
	align-items: center;
	gap: 5px;
}

.card-list li:first-child::before {
	display: none;
}

.card-list li::before {
	content: '';
	border-radius: 100%;
	width: 4px;
	height: 4px;
	background-color: var(--color-second);
}

.pagination-list {
	display: flex;
	margin-top: 30px;
	justify-content: center;
}

.pagination-list .list {
	display: flex;
}

.pagination-list .list .item {
	margin-left: 10px;
}

@media screen and (max-width: 767px) {
	.pagination-list .list .item {
		display: none;
	}
}

.pagination-list .list .item:first-child {
	margin: 0;
}

@media screen and (max-width: 767px) {
	.pagination-list .list .item.active {
		display: block;
		margin: 0;
	}
}

.pagination-list .list .item.active a,
.pagination-list .list .item.active span {
	border-radius: 15px;
	pointer-events: none;
	color: var(--color-main);
	background: var(--bg-black);
}

.load-more a,
.pagination-list a,
.pagination-list .item.active span {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	height: 40px;
	min-width: 40px;
	border-radius: 15px;
	color: var(--color-second);
	background-color: var(--bg-second);
	font-weight: 500;
	font-size: 14px;
	transition: color .3s, background-color .3s;
}

@media screen and (min-width: 1025px) {
	.load-more a:hover,
	.pagination-list a:hover {
		color: var(--color-main);
		background-color: var(--bg-active);
	}
}

.pagination-list .item.pager {
	display: flex;
	align-items: center;
}

.pagination-list .item.pager svg {
	font-size: 10px;
}

.pagination-list .item.pager a {
	min-width: 130px;
	gap: 5px;
	padding: 10px 20px;
	font-weight: 500;
	font-size: 14px;
	border-radius: 15px;
	text-transform: uppercase;
}

@media screen and (max-width: 991px) {
	.pagination-list .item.pager a {
		min-width: 50px;
		padding: 10px;
	}
}

@media screen and (max-width: 991px) {
	.pagination-list .item.pager a span {
		display: none;
	}
}

.pagination-list .item.pager:first-child {
	margin-right: 20px;
}

.pagination-list .item.pager:last-child {
	margin-left: 20px;
}

.pagination-list .dots > * {
	background: none;
	display: flex;
	color: var(--color-second);
	justify-content: center;
	align-items: center;
	height: 100%;
	min-width: 23px;
	padding: 0;
	box-shadow: none;
}

@media screen and (max-width: 991px) {
	.pagination-list .dots > * {
		display: none;
	}
}

@media screen and (min-width: 1025px) {
	.pagination-list .dots a:hover {
		background-color: transparent;
		color: var(--color-main);
	}
}

.card-channel {
	color: var(--color-main);
	transition: color .3s;
}

@media screen and (min-width: 1025px) {
	.card-channel:hover {
		color: var(--color-active);
	}
	.card-channel:hover img {
		opacity: .8;
	}
}

.card-channel .content {
	margin-top: 10px;
}

.card-channel .name {
	font-weight: 500;
	font-size: 18px;
}

.card-categories {
	position: relative;
	color: var(--color-main);
	transition: color .3s;
	overflow: hidden;
	border-radius: 15px;
	display: block;
}

@media screen and (min-width: 1025px) {
	.card-categories:hover {
		color: var(--color-active);
	}
	.card-categories:hover img {
		opacity: .8;
	}
}

.card-categories .content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 0 10px;
	z-index: 2;
	padding: 14px 10px;
	line-height: 1.2223;
	backdrop-filter: blur(9px);
	background: rgba(var(--bg-tools-rgb), 0.6);
}

.card-categories .name {
	flex-grow: 1;
	flex-shrink: 1;
	font-weight: 500;
	font-size: 18px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.card-categories .list {
	color: var(--color-main);
	flex-grow: 0;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
	font-size: 14px;
}

.card-categories .list li {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
}

.channel-view {
	display: flex;
	align-items: center;
	gap: 25px 30px;
}

@media screen and (max-width: 767px) {
	.channel-view {
		flex-direction: column;
	}
}

.channel-view .image {
	width: 200px;
	height: 200px;
	flex-grow: 0;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: 100%;
}

@media screen and (max-width: 390px) {
	.channel-view .image {
		width: 180px;
		height: 180px;
	}
}

.channel-view img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.channel-view .content {
	flex-grow: 1;
	flex-shrink: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 22px 30px;
}

.channel-view .title {
	font-weight: 800;
	font-size: 24px;
	text-transform: uppercase;
}

.channel-view .desc {
	line-height: 1.5;
}

@media screen and (max-width: 767px) {
	.channel-view .desc {
		text-align: center;
	}
}

.channel-headline {
	display: flex;
	align-items: center;
	gap: 25px;
	width: 100%;
}

@media screen and (max-width: 767px) {
	.channel-headline {
		flex-direction: column;
	}
}

.channel-headline .wrap {
	flex-shrink: 1;
	flex-grow: 1;
}

.channel-headline .tools {
	flex-shrink: 0;
	flex-grow: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.channel-headline .tools .item.second {
	display: none;
}

@media screen and (max-width: 767px) {
	.channel-headline .tools .item.second {
		display: block;
	}
}

.visit-link,
.visit-link-mobile {
	display: inline-flex;
	vertical-align: top;
	border-radius: 15px;
	padding: 11px 30px;
	line-height: 1.286;
	font-weight: 500;
	font-size: 14px;
	color: var(--color-main);
	background-color: var(--bg-active);
	text-transform: uppercase;
	transition: background-color .3s;
}

@media screen and (min-width: 1025px) {
	.visit-link:hover,
	.visit-link-mobile:hover {
		background-color: var(--bg-tools);
	}
}

@media screen and (max-width: 767px) {
	.visit-link {
		display: none;
	}
}

@media screen and (max-width: 390px) {
	.visit-link-mobile {
		padding: 11px 15px;
	}
}

.sbcs-btn {
	display: flex;
	border-radius: 15px;
	overflow: hidden;
	font-weight: 500;
	font-size: 14px;
}

.sbcs-btn .button {
	padding: 11px 20px;
	line-height: 1.286;
	display: block;
	color: var(--color-main);
	position: relative;
	background-color: var(--bg-active);
	text-transform: uppercase;
	transition: background-color .3s;
}

@media screen and (min-width: 1025px) {
	.sbcs-btn .button:hover {
		background-color: var(--bg-tools);
	}
}

@media screen and (max-width: 390px) {
	.sbcs-btn .button {
		padding: 11px 15px;
	}
}

.sbcs-btn .amount {
	display: flex;
	align-items: center;
	color: var(--color-second);
	background: var(--bg-second);
	min-width: 44px;
	padding: 0 10px;
}

.alphabet-list {
	padding-top: 10px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 10px;
	gap: 5px;
}

@media screen and (max-width: 767px) {
	.alphabet-list {
		gap: 10px;
	}
}

.alphabet-list .item.active a {
	color: var(--color-main);
	background-color: var(--bg-active);
}

.alphabet-list a {
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--color-second);
	border-radius: 15px;
	padding: 0 5px;
	min-width: 40px;
	height: 40px;
	text-transform: uppercase;
	background: var(--bg-second);
	font-weight: 500;
	font-size: 14px;
	transition: color .3s, background .3s;
}

@media screen and (min-width: 1025px) {
	.alphabet-list a:hover {
		color: var(--color-main);
		background-color: var(--bg-black);
	}
}

.wrap-tags {
	display: flex;
	gap: 4.297vw;
	flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
	.wrap-tags {
		gap: 39px;
	}
}

.wrap-tags .list {
	width: calc(20% - 3.44vw);
}

/* few tags (e.g. alphabet filter) collapse into a single column — spread it instead of a narrow strip */
.wrap-tags .list:only-child {
	width: 100%;
	column-count: 5;
	column-gap: 4.297vw;
}

.wrap-tags .list:only-child .item {
	break-inside: avoid;
}

/* keep the letter heading anchored on top across all columns */
.wrap-tags .list:only-child .item:first-child {
	column-span: all;
	margin-bottom: 25px;
}

@media screen and (max-width: 1024px) {
	.wrap-tags .list {
		width: calc(25% - 3.23vw);
	}
	.wrap-tags .list:only-child {
		width: 100%;
		column-count: 4;
	}
}

@media screen and (max-width: 767px) {
	.wrap-tags .list {
		width: calc(33.3333% - 26px);
	}
	.wrap-tags .list:only-child {
		width: 100%;
		column-count: 3;
		column-gap: 39px;
	}
}

@media screen and (max-width: 567px) {
	.wrap-tags .list {
		width: calc(50% - 20px);
	}
	.wrap-tags .list:only-child {
		width: 100%;
		column-count: 2;
	}
}

.wrap-tags .item {
	margin-bottom: 25px;
	line-height: 1.5;
}

.wrap-tags .item:last-child {
	margin-bottom: 0;
}

.wrap-tags .letter {
	font-weight: 700;
	font-size: 24px;
	color: var(--color-active);
	padding-top: 20px;
	text-transform: uppercase;
	display: block;
}

.wrap-tags a {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--color-main);
	transition: color .3s;
	font-weight: 500;
	font-size: 16px;
	text-transform: uppercase;
	transition: color .3s;
}

@media screen and (min-width: 1025px) {
	.wrap-tags a:hover {
		color: var(--color-active);
	}
	.wrap-tags a:hover span:last-child {
		color: var(--color-main);
	}
}

.wrap-tags a span {
	flex-grow: 1;
	flex-shrink: 1;
}

.wrap-tags a span:last-child {
	flex-grow: 0;
	flex-shrink: 0;
	transition: color .3s;
	color: var(--color-second);
}

.contact-field {
	max-width: 1000px;
	width: 100%;
}

.contact-field .text {
	line-height: 1.5;
	margin-bottom: 45px;
}

@media screen and (max-width: 767px) {
	.contact-field .text {
		margin-bottom: 25px;
	}
}

.contact-field .text p {
	margin-bottom: 20px;
}

.contact-field .text p:last-child {
	margin-bottom: 0;
}

.contact-field .row {
	margin-bottom: 20px;
	position: relative;
}

.contact-field .row:last-child {
	margin-bottom: 0;
}

.contact-field .row.second {
	max-width: 400px;
}

.contact-field .input {
	padding: 10px 20px;
	height: 50px;
}

.contact-field .textarea {
	padding: 20px;
	height: 120px;
	resize: none;
}

.contact-field .input,
.contact-field .textarea {
	display: block;
	width: 100%;
	border: none;
	border-radius: 15px;
	color: var(--color-main);
	background-color: var(--bg-second);
}

.contact-field .submit {
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
	color: var(--color-main);
	background-color: var(--bg-active);
	border: none;
	border-radius: 15px;
	padding: 11px 30px;
	line-height: 1.286;
}

.form-title {
	font-weight: 800;
	font-size: 20px;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.static-page {
	line-height: 1.5;
	color: var(--color-second);
}

.static-page p {
	margin-bottom: 17px;
}

.static-page p:last-child {
	margin-bottom: 0;
}

.static-page h2 {
	line-height: 1.2;
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 5px;
	color: var(--color-main);
}

@media screen and (max-width: 767px) {
	.static-page h2 {
		font-size: 18px;
	}
}

.static-page ol,
.static-page ul {
	margin-bottom: 17px;
}

.static-page a {
	color: var(--color-active);
}

@media screen and (min-width: 1025px) {
	.static-page a:hover {
		text-decoration: underline;
	}
}

.info-updated {
	color: var(--color-main);
	margin-bottom: 20px;
}

.twocolumns {
	display: flex;
	align-self: flex-start;
	gap: 0 26px;
}

.twocolumns .column {
	flex-grow: 1;
	flex-shrink: 1;
}

.twocolumns .column.second {
	flex-shrink: 0;
	flex-grow: 0;
	width: 300px;
}

@media screen and (max-width: 1024px) {
	.twocolumns .column.second {
		display: none;
	}
}

.twocolumns .row {
	margin-bottom: 20px;
}

.twocolumns .row:last-child {
	margin-bottom: 0;
}

.twocolumns .row.second {
	max-width: 400px;
	width: 100%;
}

.spot .item {
	margin-bottom: 20px;
	border-radius: 15px;
	overflow: hidden;
}

.spot .item:last-child {
	margin-bottom: 0;
}

.spot img {
	max-width: 100%;
	height: auto;
}

.videoplayer {
	border-radius: 15px;
	display: block;
	height: auto;
	width: 100%;
	overflow: hidden;
	position: relative;
}

@media screen and (max-width: 480px) {
	.videoplayer {
		padding-bottom: 0;
		min-height: 232px;
		width: auto;
		border-radius: 0;
		margin: -20px -10px 0;
	}
}

.videoplayer .media {
	position: absolute;
	bottom: 0;
	height: 100%;
	left: 0;
	-o-object-fit: cover;
	   object-fit: cover;
	right: 0;
	top: 0;
	width: 100%;
}

.videoplayer .btn {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0) scale(1);
	font-size: 100px;
	background-color: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	color: var(--color-active);
	align-items: center;
	justify-content: center;
	transition: transform .3s;
}

@media screen and (min-width: 1025px) {
	.videoplayer .btn:hover {
		transform: translate3d(-50%, -50%, 0) scale(1.05);
	}
}

@media screen and (max-width: 767px) {
	.videoplayer .btn {
		font-size: 80px;
	}
}

@media screen and (max-width: 480px) {
	.videoplayer .btn {
		font-size: 60px;
	}
}

.video-title {
	font-weight: 600;
	font-size: 28px;
}

@media screen and (max-width: 767px) {
	.video-title {
		font-size: 22px;
	}
}

.video-tools {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

@media screen and (max-width: 1240px) {
	.video-tools {
		flex-direction: column;
		align-items: flex-start;
	}
}

.video-tools .col {
	flex-grow: 1;
	flex-shrink: 1;
}

.video-tools .col.second {
	flex-grow: 0;
	flex-shrink: 0;
}

@media screen and (max-width: 1240px) {
	.video-tools .col.second {
		flex-grow: 1;
		flex-shrink: 1;
	}
}

.video-tools .wrapped {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.video-tools .btn {
	display: flex;
	align-items: center;
	cursor: pointer;
	border: none;
	font-size: 20px;
	padding: 10px 20px;
	gap: 5px;
	font-weight: 500;
	border-radius: 15px;
	color: var(--color-second);
	background-color: var(--bg-second);
	transition: color .3s, background-color .3s;
}

@media screen and (min-width: 1025px) {
	.video-tools .btn:hover {
		background-color: var(--bg-active);
		color: var(--color-main);
	}
}

@media screen and (max-width: 480px) {
	.video-tools .btn {
		padding: 10px;
	}
}

.video-tools .btn.active {
	color: var(--color-main);
	background-color: var(--bg-active);
}

.video-tools .btn.second {
	padding: 10px;
}

.video-tools .btn span {
	font-size: 14px;
}

@media screen and (max-width: 480px) {
	.video-tools .btn span {
		display: none;
	}
}

.video-desc {
	line-height: 1.5;
}

.reactions-box {
	display: flex;
	align-items: center;
	gap: 10px 5px;
}

@media screen and (max-width: 480px) {
	.reactions-box {
		flex-shrink: 1;
		flex-grow: 1;
	}
}

.reactions-box .btn {
	padding: 10px 20px;
}

.reactions-box .btn.second {
	padding: 10px;
}

.reactions-box .btn span {
	display: block;
}

.author-box {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	color: var(--color-main);
	transition: color .3s;
}

@media screen and (min-width: 1025px) {
	.author-box:hover {
		color: var(--color-active);
	}
}

.author-box .ava {
	flex-shrink: 0;
	flex-grow: 0;
	font-size: 20px;
	border-radius: 100%;
	overflow: hidden;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-second);
	background: var(--bg-second);
}

.author-box img {
	max-width: 100%;
	width: 100%;
	height: 100%;
}

.author-box .card-list {
	font-size: 14px;
}

.video-list {
	display: inline;
}

.video-list .list {
	display: inline;
	font-size: 0;
}

.video-list li {
	display: inline-flex;
	vertical-align: top;
	font-size: 14px;
	padding: 5px;
}

.video-list .link {
	font-weight: 500;
	font-size: 14px;
	display: inline-flex;
	vertical-align: top;
	color: var(--color-second);
	padding: 8px 20px;
	border-radius: 15px;
	line-height: 1.429;
	background-color: var(--bg-second);
	position: relative;
	overflow: hidden;
	transition: color .3s, background-color .3s;
}

@media screen and (min-width: 1025px) {
	.video-list .link:hover {
		color: var(--color-main);
		background-color: var(--bg-active);
	}
}

.video-list .name {
	padding: 12px 0 0;
	display: inline-block;
}

.comments-box {
	padding-top: 15px;
	margin-top: 15px;
	max-width: 1000px;
	width: 100%;
}

.comments-box .input {
	height: 50px;
	padding: 10px 20px;
}

.comments-box .textarea {
	resize: none;
	padding: 20px;
	height: 120px;
	display: block;
}

.comments-box .input,
.comments-box .textarea {
	border: none;
	background-color: var(--bg-second);
	width: 100%;
	border-radius: 15px;
	color: var(--color-main);
}

.comments-box .btn {
	border-radius: 15px;
	padding: 10px 30px;
	border: none;
	cursor: pointer;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--color-main);
	background-color: var(--bg-active);
	transition: background-color .3s;
}

@media screen and (min-width: 1025px) {
	.comments-box .btn:hover {
		background-color: var(--bg-tools);
	}
}

.headline-comment {
	margin-bottom: 15px;
}

.headline-comment .title {
	font-weight: 800;
	font-size: 24px;
	text-transform: uppercase;
}

@media screen and (max-width: 767px) {
	.headline-comment .title {
		font-size: 20px;
	}
}

.headline-comment .title span {
	font-weight: 400;
}

.comment-list {
	margin-top: 30px;
}

.comment-list .item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 15px;
}

.comment-list .item:last-child {
	margin-bottom: 0;
}

.comment-list .avatar {
	flex-shrink: 0;
	flex-grow: 0;
	font-size: 20px;
	border-radius: 100%;
	overflow: hidden;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-second);
	background: var(--bg-second);
}

.comment-list img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.comment-list .wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 5px;
}

.comment-list .date {
	flex-grow: 0;
	flex-shrink: 0;
	font-size: 14px;
	color: var(--color-second);
}

.comment-list .name {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: 500;
	color: var(--color-main);
}

.comment-list a.name {
	transition: color .3s;
}

@media screen and (min-width: 1025px) {
	.comment-list a.name:hover {
		color: var(--color-active);
	}
}

.comment-list .comment {
	line-height: 1.5;
}

.tab-content {
	display: none;
	margin-bottom: 20px;
}

.tab-content:last-child {
	margin-bottom: 0;
}

.tab-content.selected {
	display: block;
}

.screen-flex {
	--flex-gap: 10px;
	--flex-items: 5;
	display: flex;
	flex-wrap: wrap;
	gap: 20px var(--flex-gap);
}

@media screen and (max-width: 1160px) {
	.screen-flex {
		--flex-items: 4;
	}
}

@media screen and (max-width: 767px) {
	.screen-flex {
		--flex-items: 3;
	}
}

.screen-flex .th {
	width: calc((100% / var(--flex-items)) - (((var(--flex-items) - 1) / var(--flex-items)) * var(--flex-gap)));
}

.screen-card {
	display: block;
	position: relative;
	padding-bottom: 55.884%;
	border-radius: 15px;
	overflow: hidden;
}

.screen-card .img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.violation-box .group {
	display: flex;
	gap: 20px;
}

@media screen and (max-width: 767px) {
	.violation-box .group {
		flex-direction: column;
	}
}

.violation-box .box {
	width: 50%;
}

@media screen and (max-width: 767px) {
	.violation-box .box {
		width: 100%;
	}
}

.violation-box .name {
	display: block;
	margin-bottom: 5px;
	font-size: 18px;
}

.violation-box .textfield {
	background-color: var(--bg-second);
	display: block;
	width: 100%;
	border: navajowhite;
	color: var(--color-main);
	border-radius: 15px;
	padding: 10px 20px;
	height: 120px;
	resize: none;
}

.violation-box .submit {
	margin-top: 20px;
	border-radius: 15px;
	padding: 10px 30px;
	border: none;
	cursor: pointer;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--color-main);
	background-color: var(--bg-active);
	transition: background-color .3s;
}

@media screen and (min-width: 1025px) {
	.violation-box .submit:hover {
		background-color: var(--bg-tools);
	}
}

.radio-block {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.input-choice {
	display: none;
}

.input-choice:checked + .radio-info::before {
	background: var(--color-active);
	border-color: var(--color-active);
}

.input-choice:checked + .radio-info::after {
	opacity: 1;
}

.radio-info {
	cursor: pointer;
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding-left: 40px;
}

.radio-info::before {
	position: absolute;
	content: '';
	width: 20px;
	height: 20px;
	border: 2px solid var(--color-main);
	border-radius: 100%;
	left: 0;
	transition: border .3s, background .3s;
	top: 50%;
	transform: translate3d(0, -50%, 0);
}

.radio-info::after {
	position: absolute;
	content: '';
	width: 8px;
	height: 8px;
	background: var(--color-main);
	border-radius: 50%;
	top: 50%;
	left: 6px;
	transition: background .4s, opacity .3s;
	transform: translate3d(0, -50%, 0);
	z-index: 2;
	opacity: 0;
}

.block-share .name {
	display: block;
	margin-bottom: 5px;
}

.block-share .input {
	border: none;
	background-color: var(--bg-second);
	width: 100%;
	border-radius: 15px;
	color: var(--color-main);
	height: 50px;
	padding: 10px 20px;
}

.block-size {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px 10px;
}

.block-size .wrap {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.embed-button {
	display: flex;
	align-items: center;
	color: var(--color-second);
	gap: 10px;
	font-weight: 500;
	padding: 15px 20px;
	border-radius: 15px;
	line-height: 1.25;
	overflow: hidden;
	background: var(--bg-second);
	transition: color .3s, background-color .3s;
}

@media screen and (min-width: 1025px) {
	.embed-button:hover {
		background-color: var(--bg-active);
		color: var(--color-main);
	}
}

.custom-size {
	display: flex;
	flex-direction: column;
}

.custom-size .wrap {
	flex-wrap: nowrap;
}

.download-drop {
	position: relative;
}

.download-drop.show .btn {
	background-color: var(--bg-active);
	color: var(--color-main);
}

.download-drop.show .drop-hidden {
	opacity: 1;
	transform: translate3d(-50%, 0, 0);
	visibility: visible;
}

@media screen and (max-width: 767px) {
	.download-drop.show .drop-hidden {
		transform: translate3d(0, 0, 0);
	}
}

.drop-hidden {
	position: absolute;
	left: 50%;
	top: calc(100% + 10px);
	z-index: 3;
	background: var(--bg-second);
	border-radius: 15px;
	overflow: hidden;
	min-width: 140px;
	transform: translate3d(-50%, 10px, 0);
	opacity: 0;
	visibility: hidden;
	max-height: 140px;
	overflow-y: auto;
	font-size: 14px;
	transition: transform .3s, opacity .3s, visibility .3s;
}

@media screen and (max-width: 767px) {
	.drop-hidden {
		left: auto;
		right: 0;
		transform: translate3d(0, 10px, 0);
	}
}

.drop-hidden a {
	display: flex;
	overflow: hidden;
	padding: 10px;
	color: var(--color-second);
	transition: background-color .3s, color .3s;
}

@media screen and (min-width: 1025px) {
	.drop-hidden a:hover {
		color: var(--color-main);
		background-color: var(--bg-active);
	}
}

.footer {
	margin-top: 50px;
	flex-shrink: 0;
	flex-grow: 0;
	text-align: center;
	padding: 30px 0;
	background-color: var(--bg-tools);
}

@media screen and (max-width: 767px) {
	.footer {
		margin-top: 30px;
	}
}

.logo img {
	max-width: 100%;
}

.footer-holder {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px 0;
}

.footer-holder .list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px 40px;
	font-weight: 500;
}

@media screen and (max-width: 767px) {
	.footer-holder .list {
		gap: 20px;
	}
}

.footer-holder .list a {
	color: var(--color-main);
	transition: color .3s;
}

@media screen and (min-width: 1025px) {
	.footer-holder .list a:hover {
		color: var(--color-active);
	}
}

.footer-holder .list li.active {
	color: var(--color-active);
}

.footer-holder .text,
.footer-holder .copyright {
	font-size: 14px;
	color: var(--color-text);
	line-height: 1.3;
}


.page-error {
	text-align: center;
    margin: 0 0 15px;
}

.no-thumb {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

a {
	cursor: pointer;
}

.popup {
	padding: 10px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--bg-main);
	color: #fff;
}

.captcha-control .image {
	margin-bottom: 10px;
}

.field-error {
	color: var(--color-active);
	font-size: 14px;
	position: absolute;
	top: 100%;
	left: 0;
}

.success {
	color: #fff;
}

.block-comments .success {
	margin: 0 0 10px;
}

.load-more.swiper-top {
	width: fit-content;
    margin: 15px auto 0;
}

.player-wrap {
	position: relative;
}

#kt_player {
	position: absolute !important;
}

.hidden {
	display: none;
}

.smileys-bar {
	margin: 0 0 10px;
}

.row {
	position: relative;
}

.comment-list .comment img {
	max-width: 20px;
}

.load-more  a {
    width: fit-content;
    margin: 15px auto 0;
}

