@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,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: "Roboto", sans-serif;
	--color-main: #000;
	--color-white: #fff;
	--color-second: #7c7c7c;
	--color-active: #E62E4E;
	--bg-main: #fff;
	--bg-tools: #000;
	--bg-tools-second: #ececec;
	--bg-sticty-first:  rgba(0, 0, 0, 0.8);
	--bg-sticty-second: rgba(79, 79, 79, 0.8);
	--bg-sticty-second-active: rgba(230, 46, 78, 0.8);
	--bg-active: #E62E4E;
	--bg-header-tools: #171717;
	--bg-drop: #252525;
	--bg-mask: rgba(0, 0, 0, 0.8);
	--border-search: #16171a;
	--header-height: 80px;
}

@media screen and (max-width: 767px) {
	:root {
		--header-height: 60px;
	}
}

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

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);
}

body.show-search .header-search {
	top: 50%;
	visibility: visible;
	opacity: 1;
}

body.show-search .icon-close {
	display: block;
}

body.show-search .icon-search {
	display: none;
}

@media screen and (max-width: 767px) {
	body.show-search .group-btns .item.second {
		transform: translateX(100%) rotate(145deg);
		opacity: 0;
		visibility: hidden;
	}
	body.show-search .group-btns .item.primary {
		transform: translate3d(44px, 0, 0) rotate(90deg);
	}
}

@media screen and (max-width: 767px) {
	body.show-search .logo {
		opacity: 0;
		visibility: hidden;
	}
}

body.show-search .header-tools .list {
	opacity: 0;
	visibility: hidden;
}

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

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

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

a {
	color: #2600ff;
	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: #7c7c7c;
}

input:-moz-placeholder, textarea:-moz-placeholder {
	color: #7c7c7c;
	opacity: 1;
}

input::-moz-placeholder, textarea::-moz-placeholder {
	color: #7c7c7c;
	opacity: 1;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
	color: #7c7c7c;
}

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: #7c7c7c !important;
}

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

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

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

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

.header {
	flex-shrink: 0;
	flex-grow: 0;
	margin-bottom: 30px;
	background: var(--bg-tools);
}

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

.header-holder {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	position: relative;
}

@media screen and (max-width: 767px) {
	.header-holder {
		min-height: var(--header-height);
		gap: 10px;
	}
}

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

@media screen and (max-width: 767px) {
	.logo {
		max-width: 165px;
		padding: 14px 0;
	}
}

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

.header-tools {
	flex-grow: 1;
	flex-shrink: 1;
	position: relative;
}

@media screen and (max-width: 767px) {
	.header-tools {
		position: static;
	}
}

.header-tools .list {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity .3s, visibility .3s;
	gap: 0 40px;
}

@media screen and (max-width: 1024px) {
	.header-tools .list {
		gap: 20px;
	}
}

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

.header-tools .item {
	position: relative;
}

.header-tools .item.active .tools-link {
	background: var(--bg-header-tools);
}

.header-tools .item.show .drop {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	visibility: visible;
}

.header-tools .item.show .btn svg {
	transform: rotate(180deg);
}

.header-tools .btn,
.header-tools .tools-link {
	display: flex;
	align-items: center;
	border: none;
	color: var(--color-white);
	font-weight: 500;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	cursor: pointer;
	padding: 10px 20px;
	border-radius: 10px;
	gap: 10px;
	background: none;
	transition: background .3s;
}

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

.header-tools .btn svg {
	font-size: 10px;
	flex-grow: 0;
	flex-shrink: 0;
	transition: transform .3s;
}

.header-tools .drop {
	position: absolute;
	z-index: 10;
	background: var(--bg-tools-second);
	min-width: 134px;
	max-width: 156px;
	right: 0;
	box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.15);
	background: var(--color-white);
	border-radius: 10px 0 10px 10px;
	overflow: hidden;
	top: calc(100% + 10px);
	max-height: 250px;
	overflow-y: auto;
	opacity: 0;
	transform: translate3d(0, -10%, 0);
	visibility: hidden;
	transition: opacity .3s, transform .3s, visibility .3s;
}

.header-tools .box.active .link {
	pointer-events: none;
	color: var(--color-active);
	background: var(--bg-tools-second);
}

.header-tools .link {
	font-weight: 500;
	font-size: 14px;
	display: flex;
	align-items: center;
	padding: 10px 20px;
	gap: 10px;
	transition: color .3s, background .3s;
	color: var(--color-main);
}

@media screen and (min-width: 1025px) {
	.header-tools .link:hover {
		color: var(--color-active);
		background: var(--bg-tools-second);
	}
}

.header-tools .link svg {
	font-size: 20px;
	flex-grow: 0;
	flex-shrink: 0;
}

.header-tools .img {
	width: 20px;
	height: 20px;
	overflow: hidden;
	-o-object-fit: cover;
	   object-fit: cover;
	border-radius: 100%;
	overflow: hidden;
}

.header-search {
	position: absolute;
	right: 0;
	top: 80%;
	left: 0;
	z-index: 10;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s, visibility .3s, top .3s;
	transform: translate3d(0, -50%, 0);
	display: flex;
	justify-content: center;
}

@media screen and (max-width: 767px) {
	.header-search {
		padding-right: 34px;
	}
}

.header-search form {
	display: flex;
	border-radius: 10px;
	border: 2px solid var(--border-search);
	width: 100%;
	background: var(--color-main);
	height: 40px;
	max-width: 700px;
	justify-content: center;
}

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

.header-search input {
	width: 100%;
	height: 100%;
	color: var(--color-white);
	font-weight: 400;
	font-size: 14px;
	background: none;
	font-family: inherit;
	border: none;
	padding: 5px 0 5px 20px;
}

.btn-search {
	display: flex;
	align-items: center;
	padding: 0 20px;
	color: var(--color-white);
	height: 100%;
	font-size: 20px;
	transition: color .3s, transform .3s;
	transform: scale(1), color 0.3s;
	background: none;
	border: none;
	cursor: pointer;
}

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

.group-btns {
	flex-grow: 0;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 20px;
	position: relative;
	z-index: 4;
	overflow: hidden;
}

.group-btns .item {
	transition: transform .3s, opacity .3s, visibility .3s;
}

.group-btns .item.second {
	display: none;
}

@media screen and (max-width: 767px) {
	.group-btns .item.second {
		display: flex;
		transform: translateX(0) rotate(0);
		opacity: 1;
		visibility: visible;
	}
}

.group-btns .item.primary {
	transform: translate3d(0, 0, 0) rotate(0deg);
}

.action-btn {
	display: flex;
	align-items: center;
	font-size: 20px;
	border: none;
	color: var(--color-white);
	background: none;
	transition: color .3s;
	cursor: pointer;
}

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

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

.action-btn .icon-close {
	display: none;
}

.hamburger {
	cursor: pointer;
	align-items: center;
	align-self: center;
	position: relative;
	z-index: 2;
	font-size: 24px;
	background: none;
	border: none;
	color: var(--color-white);
}

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

.mobile-menu {
	position: fixed;
	padding: 20px;
	top: 0;
	background: var(--color-main);
	left: 0;
	bottom: 0;
	max-width: 300px;
	width: 100%;
	overflow: auto;
	height: 100svh;
	z-index: 20;
	transform: translate3d(-100%, 0, 0);
	transition: transform .3s, visibility .3s, opacity .3s;
	visibility: hidden;
	opacity: 0;
}

.mask {
	-webkit-backdrop-filter: blur(15px);
	        backdrop-filter: blur(15px);
	background: var(--bg-mask);
	position: fixed;
	bottom: 0;
	left: 0;
	opacity: 0;
	right: 0;
	top: 0;
	transition: transform .4s, visibility .4s, opacity .4s;
	visibility: hidden;
	z-index: 9;
}

.menu-headline {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: space-between;
	margin-bottom: 30px;
}

.menu-headline .close {
	font-size: 24px;
	color: var(--color-white);
	border: none;
	background: none;
	cursor: pointer;
}

.menu-headline .close svg {
	display: block;
}

.logo-mobile {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	max-width: 165px;
}

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

.mobile-list .item-mobile {
	margin-bottom: 10px;
}

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

.mobile-list .link-menu,
.mobile-list .button {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	color: var(--color-white);
	padding: 15px 20px;
	border-radius: 10px;
	font-weight: 500;
	text-transform: uppercase;
	background: var(--bg-header-tools);
	font-family: inherit;
}

.mobile-list .button {
	width: 100%;
	border: none;
}

.mobile-list .arrow {
	flex-grow: 0;
	flex-shrink: 0;
	font-size: 10px;
}

.mobile-list .wrap {
	display: flex;
	align-items: center;
	flex-grow: 1;
	flex-shrink: 1;
	gap: 10px;
}

.mobile-list svg {
	flex-grow: 0;
	flex-shrink: 0;
	font-size: 20px;
}

.item-mobile.show .dropped {
	display: block;
}

.item-mobile.show .button .arrow {
	transform: rotate(180deg);
}

.item-mobile .dropped {
	display: none;
	background: var(--color-white);
	border-radius: 0 0 10px 10px;
	max-height: 250px;
	overflow-y: auto;
}

.item-mobile .box.active .link-mobile {
	pointer-events: none;
	color: var(--color-active);
	background: var(--bg-tools-second);
}

.item-mobile .link-mobile {
	font-weight: 500;
	font-size: 14px;
	display: flex;
	align-items: center;
	padding: 15px 20px;
	gap: 10px;
	color: var(--color-main);
}

.item-mobile img {
	width: 20px;
	height: 20px;
	overflow: hidden;
	border-radius: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.main {
	background-color: var(--bg-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;
}

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

.headline .title {
	flex-grow: 1;
	flex-shrink: 1;
	font-weight: 700;
	font-size: 26px;
}

.headline .title span {
	font-size: 20px;color: #7c7c7c;
	font-weight: 600;
}

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

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

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

.headline.primary .sort {
	flex-grow: 0;
	flex-shrink: 0;
	width: auto;
}

.headline.primary .item-sort {
	width: auto;
}

.sort {
	flex-grow: 0;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

@media screen and (max-width: 568px) {
	.sort {
		flex-grow: 1;
		flex-shrink: 1;
		width: 100%;
	}
}

@media screen and (max-width: 390px) {
	.sort {
		gap: 5px;
	}
}

.item-sort {
	position: relative;
}

@media screen and (max-width: 568px) {
	.item-sort {
		width: 33.3333%;
	}
}

.item-sort.show .btn {
	background: var(--bg-active);
	color: var(--color-white);
}

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

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

.item-sort .btn {
	font-family: inherit;
	padding: 10px 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-weight: 500;
	font-size: 14px;
	background: var(--bg-tools-second);
	color: var(--color-second);
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: color .3s, background .3s;
}

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

@media screen and (max-width: 568px) {
	.item-sort .btn {
		width: 100%;
		gap: 10px;
		padding: 10px;
	}
}

@media screen and (max-width: 390px) {
	.item-sort .btn {
		font-size: 12px;
		gap: 5px;
	}
}

.item-sort svg {
	font-size: 10px;
	flex-grow: 0;
	flex-shrink: 0;
	transition: transform .3s;
}

@media screen and (max-width: 390px) {
	.item-sort svg {
		font-size: 8px;
	}
}

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

.item-sort a {
	padding: 8px 20px;
	display: block;
	background: var(--bg-tools-second);
	color: var(--color-second);
	transition: color .3s, background .3s;
	cursor: pointer;
}

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

@media screen and (max-width: 568px) {
	.item-sort a {
		padding: 8px 10px;
	}
}

@media screen and (max-width: 390px) {
	.item-sort a {
		font-size: 12px;
	}
}

.main-thumbs,
.second-thumbs {
	--flex-gap: 20px;
	--flex-items: 5;
	display: flex;
	flex-wrap: wrap;
	gap: var(--flex-gap);
}

@media screen and (max-width: 1360px) {
	.main-thumbs,
	.second-thumbs {
		--flex-items: 4;
	}
}

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

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

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

.th .content {
	position: relative;
}

.th .media {
	display: block;
	position: relative;
	padding-bottom: 56.18%;
	border-radius: 10px;
	overflow: hidden;
	background: #b9b9b9;
}

.th .media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0));
}

.th .media .no-thumb {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #000;
	padding: 10px;
	border-radius: 10px;
	border: 1px solid #000;
}

@media screen and (min-width: 1025px) {
	.th .media:hover img,
	.th .media:hover video {
		opacity: .9;
	}
}

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

.th .title {
	margin-top: 5px;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.25;
	color: var(--color-main);
	transition: color .3s;
}

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

@media screen and (max-width: 479px) {
	.main-thumbs {
		--flex-items: 1;
	}
}

@media screen and (max-width: 767px) {
	.second-thumbs {
		--flex-gap: 10px;
		gap: 20px var(--flex-gap);
	}
}

@media screen and (max-width: 390px) {
	.second-thumbs {
		--flex-gap: 10px;
		gap: var(--flex-gap);
	}
}

@media screen and (min-width: 1025px) {
	a.th:hover .title {
		color: var(--bg-active);
	}
	a.th:hover img,
	a.th:hover video {
		opacity: .9;
	}
}

.sticky {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	gap: 5px;
	z-index: 3;
	left: 10px;
	bottom: 10px;
}

.sticky .text {
	background: var(--bg-sticty-first);
}

.sticky .text.second {
	background: var(--bg-sticty-second);
}

.sticky .text,
.channel-filter {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	padding: 4px 7px;
	border-radius: 5px;
	color: var(--color-white);
}

.channel-filter {
	background: var(--bg-sticty-second);
	transition: color .3s, background .3s;
}

@media screen and (min-width: 1025px) {
	.channel-filter:hover {
		background: var(--bg-sticty-second-active);
	}
}

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

.card-list a.wrap {
	color: var(--color-main);
}

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

.card-list a.wrap svg {
	color: var(--color-active);
}

.card-list .wrap {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 14px;
	line-height: 1.42857;
	color: var(--color-second);
	transition: color .3s;
}

.card-list svg {
	flex-grow: 0;
	flex-shrink: 0;
	font-size: 14px;
}

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

@media screen and (max-width: 767px) {
	.pagination-list {
		margin-top: 20px;
	}
}

@media screen and (max-width: 414px) {
	.pagination-list {
		gap: 0;
		justify-content: space-between;
	}
}

@media screen and (max-width: 400px) {
	.pagination-list {
		gap: 0 3px;
	}
}

.pagination-list .list {
	display: flex;
	gap: 0 10px;
}

@media screen and (max-width: 400px) {
	.pagination-list .list {
		gap: 0 3px;
	}
}

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

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

.pagination-list .list .item.show span, .pagination-list .list .item.active span {
	color: var(--color-white);
	background: var(--color-second);
}

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

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

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

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

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

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

.pagination-list .item.pager a {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 10px 20px;
	min-width: 50px;
	font-size: 14px;
	font-weight: 500;
}

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

@media screen and (max-width: 400px) {
	.pagination-list .item.pager a {
		min-width: 40px;
	}
}

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

.pagination-list .dots a {
	background: none;
	display: flex;
	color: var(--color-second);
	justify-content: center;
	align-items: center;
	min-width: 22px;
	padding: 0 5px;
	height: 100%;
}

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

.categories-wrapped {
	display: flex;
	gap: 0 3.66vw;
}

@media screen and (max-width: 1366px) {
	.categories-wrapped {
		flex-wrap: wrap;
	}
}

@media screen and (max-width: 568px) {
	.categories-wrapped {
		gap: 0 30px;
	}
}

.categories-wrapped ul {
	flex: 1 1;
}

@media screen and (max-width: 1366px) {
	.categories-wrapped ul {
		flex: 1 1 calc(33.3333% - 3vw);
	}
}

@media screen and (max-width: 568px) {
	.categories-wrapped ul {
		flex: 1 1 calc(50% - 15px);
	}
}

.categories-wrapped li {
	margin-bottom: 20px;
}

.categories-wrapped li:last-child {
	margin-bottom: 0;
}

.categories-wrapped .title {
	padding: 20px 0 6px;
	font-weight: 800;
	font-size: 22px;
	color: var(--bg-active);
	display: block;
}

@media screen and (max-width: 1024px) {
	.categories-wrapped .title {
		font-size: 24px;
	}
}

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

.categories-wrapped a {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	font-size: 14px;
	text-transform: capitalize;
	color: var(--color-main);
	transition: color .3s;
}

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

.categories-wrapped a span:first-child {
	flex-grow: 1;
	flex-shrink: 1;
}

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

.field-content {
	line-height: 1.4;
}

@media screen and (max-width: 767px) {
	.field-content {
		font-size: 14px;
	}
}

.field-content strong {
	font-size: 18px;
}

@media screen and (max-width: 767px) {
	.field-content strong {
		font-size: 16px;
	}
}

.field-content p {
	margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
	.field-content p {
		margin-bottom: 10px;
	}
}

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

.field-content a {
	font-weight: 700;
	color: var(--color-main);
	text-decoration: underline;
}

@media screen and (min-width: 1025px) {
	.field-content a:hover {
		text-decoration: none;
	}
}

.field-content i {
	text-align: center;
	display: block;
}

.field-content .list {
	list-style: auto;
	padding-left: 20px;
}

@media screen and (max-width: 767px) {
	.field-content .list {
		padding-left: 15px;
	}
}

.field-content li {
	margin-bottom: 15px;
}

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

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

.footer-inner {
	display: flex;
	gap: 26px 5.25vw;
}

@media screen and (max-width: 1024px) {
	.footer-inner {
		flex-direction: column;
	}
}

.footer-inner .col {
	flex-shrink: 0;
	flex-grow: 0;
}

@media screen and (max-width: 1024px) {
	.footer-inner .col {
		width: 100%;
	}
}

.footer-inner .col.second {
	flex-shrink: 1;
	flex-grow: 1;
}

.footer-inner .group {
	line-height: 1.4;
	display: flex;
	gap: 25px 5.25vw;
}

@media screen and (max-width: 1024px) {
	.footer-inner .group {
		flex-direction: column;
	}
}

@media screen and (max-width: 767px) {
	.footer-inner .group {
		flex-direction: row-reverse;
	}
}

.footer-inner .group a {
	font-weight: 500;
	font-size: 14px;
	text-transform: capitalize;
	color: var(--color-white);
	transition: color .3s;
	cursor: pointer;
}

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

@media screen and (max-width: 767px) {
	.footer-inner .box {
		width: 50%;
	}
}

.footer-inner .title {
	font-weight: 700;
	font-size: 16px;
	color: var(--color-white);
	margin-bottom: 20px;
}

.footer-inner .list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}



@media screen and (max-width: 1024px) {
	.footer-inner .list {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 10px 15px;
	}
}

@media screen and (max-width: 767px) {
	.footer-inner .list {
		flex-direction: column;
	}
}

.footer-inner .detail {
	font-size: 14px;
	line-height: 1.6;
	color: var(--color-white);
	margin-bottom: 25px;
	text-transform: capitalize;
}

@media screen and (max-width: 479px) {
	.footer-inner .detail span {
		max-width: 355px;
	}
}

.footer-inner .copyright,
.footer-inner .copyright-mobile {
	font-size: 14px;
	line-height: 1.7;
	color: var(--color-second);
	margin-top: 25px;
}

.footer-inner .copyright span,
.footer-inner .copyright-mobile span {
	color: var(--color-white);
}

@media screen and (max-width: 1024px) {
	.footer-inner .copyright {
		display: none;
	}
}

.footer-inner .copyright-mobile {
	display: none;
}

@media screen and (max-width: 1024px) {
	.footer-inner .copyright-mobile {
		display: block;
	}
}

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

.footer-list {
	display: flex;
	align-items: center;
	gap: 10px 50px;
}

@media screen and (max-width: 479px) {
	.footer-list {
		justify-content: space-between;
		gap: 10px;
	}
}

.footer-list img {
	display: inline-block;
	vertical-align: top;
	max-width: 100%;
	height: auto;
}

.empty-content p {
	margin-bottom: 10px;
}

.empty-content {
	margin-bottom: 30px;
}

.page-error {
	text-align: center;
	font-size: 40px;
	color: #E62E4E;
}

.empty-content a {
	cursor: pointer;
	color: #E62E4E;
}

.fancybox-inner {
	padding: 20px !important;
	width: 100% !important;
}

.fancybox-wrap {
	max-width: 300px !important;
	width: 100% !important;
}

.popup-title {
	display: block;
	margin-bottom: 20px;
}

.popup-holder .row {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
}

.submit {
	border: 0;
	outline: 0;
	padding: 10px 20px;
	border-radius: 10px;
	background: #000;
	color: #fff;
	margin-top: 20px;
	cursor: pointer;
}

.captcha-control .image {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 10px;
}

@media screen and (hover:hover) {
	.empty-content a:hover {
		color: #000;
	}
	.submit:hover {
		background: #E62E4E;
	}
}

.field-error {
	color: #E62E4E;
}

.backtop {
    background: url(/static/images/up-arrow.svg);
    position: fixed;
    bottom: 4em;
    background-size: 22px;
    right: 10px;
    text-decoration: none;
    padding: 1em;
    display: none;
    background-color: #ff004c;
    border-radius: 50%;
    border: 2px solid #000;
    cursor: pointer;
    width: 44px;
    height: 44px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10;
}

.new-sort-wrap {
	display: flex;
	gap: 5px;
}

.new-sort-wrap a {
	padding: 5px;
	border-radius: 5px;
	border: 1px solid #7c7c7c;
	color: #000;
	cursor: pointer;
	transition: background .3s ease, color .3s ease;
	display: flex;
	align-items: center;
	gap: 5px;
}

.new-sort-wrap span {
	background: #000;
	color: #fff;
	padding: 5px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	gap: 5px;
}

@media screen and (hover:hover) {
	.new-sort-wrap a:hover {
		background: #000;
		color: #fff;
	}
}

@media screen and (max-width: 440px) {
	.new-sort-wrap a, .new-sort-wrap span {
		font-size: 12px;
	}
}

@media screen and (max-width: 350px) {
	.new-sort-wrap a, .new-sort-wrap span {
		font-size: 10px;
	}
}


.video-page-layout{display:flex;gap:30px;align-items:flex-start}
@media screen and (max-width:767px){.video-page-layout{flex-direction:column;gap:30px}}
.video-main-column{flex:1 1 65%;min-width:0}
@media screen and (max-width:767px){.video-main-column{flex:1 1 100%;width:100%}}
.video-sidebar-column{flex:0 0 35%;max-width:450px}
@media screen and (max-width:1360px){.video-sidebar-column{flex:0 0 38%}}
@media screen and (max-width:767px){.video-sidebar-column{flex:1 1 100%;max-width:100%}}

.video-main-column .headline{display:flex;align-items:center;margin-bottom:10px}
.video-main-column .headline h1{font-weight:700;font-size:26px;line-height:1.3;color:var(--color-main)}
@media screen and (max-width:1024px){.video-main-column .headline h1{font-size:24px}}
@media screen and (max-width:767px){.video-main-column .headline h1{font-size:22px}}

.related-videos{background:var(--bg-main);border-radius:10px}
.related-videos .headline{margin-bottom:10px}
.related-videos .main-thumbs{--flex-gap:15px;--flex-items:2}
@media screen and (max-width:1360px){.related-videos .main-thumbs{--flex-gap:12px}}
@media screen and (max-width:1024px){.related-videos .main-thumbs{--flex-items:1;--flex-gap:15px}}
@media screen and (max-width:767px){.related-videos .main-thumbs{--flex-items:3;--flex-gap:20px}}
@media screen and (max-width:568px){.related-videos .main-thumbs{--flex-items:2;--flex-gap:15px}}
@media screen and (max-width:390px){.related-videos .main-thumbs{--flex-items:1}}
.related-videos .main-thumbs .th{width:calc((100% / var(--flex-items)) - (((var(--flex-items) - 1) / var(--flex-items)) * var(--flex-gap)))}

@media screen and (min-width:1025px) and (max-width:1360px){.related-videos .main-thumbs .th:nth-child(n+11){display:none}}
@media screen and (min-width:768px) and (max-width:1024px){.related-videos .main-thumbs .th:nth-child(n+6){display:none}}
@media screen and (max-width:767px){.related-videos .main-thumbs .th:nth-child(n+7){display:none}}
@media screen and (max-width:568px){.related-videos .main-thumbs .th:nth-child(n+5){display:none}}
@media screen and (max-width:390px){.related-videos .main-thumbs .th:nth-child(n+4){display:none}}

.block-video{margin-bottom:0}
.video-holder{background:var(--bg-main);border-radius:10px;overflow:hidden}

.player-holder,.player-wrap,.embed-wrap,.no-player{position:relative;background:#000}
.no-player img{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover}
.no-player .message{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);color:var(--color-white);text-align:center;padding:20px;max-width:80%;z-index:2;background:rgba(0,0,0,.8);border-radius:10px;line-height:1.6}
.no-player .message form{margin-top:15px}

.btn-play{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:80px;height:80px;background:rgba(230,46,78,.9);border-radius:50%;z-index:3;transition:all .3s;display:flex;align-items:center;justify-content:center}
.btn-play::after{content:'';width:0;height:0;border-left:20px solid #fff;border-top:12px solid transparent;border-bottom:12px solid transparent;margin-left:5px}
@media screen and (min-width:1025px){.btn-play:hover{background:rgba(230,46,78,1);transform:translate(-50%,-50%) scale(1.1)}}
a.no-player--clickable{cursor:pointer;text-decoration:none}
a.no-player--clickable img{transition:opacity .3s,transform .3s}
@media screen and (min-width:1025px){a.no-player--clickable:hover img{opacity:.85}a.no-player--clickable:hover .btn-play{background:rgba(230,46,78,1);transform:translate(-50%,-50%) scale(1.1)}}

.video-info{padding:20px}
@media screen and (max-width:767px){.video-info{padding:15px}}
.info-holder{max-width:100%}

.block-details{display:flex;gap:30px;align-items:flex-start}
@media screen and (max-width:1024px){.block-details{flex-direction:column;gap:20px}}

.info{flex-grow:1;flex-shrink:1}
.info .item{margin-bottom:15px;line-height:1.6;font-size:15px}
@media screen and (max-width:767px){.info .item{font-size:14px;margin-bottom:12px}}
.info .item:last-child{margin-bottom:0}
.info .item span{display:inline-block;margin-right:20px;color:var(--color-second)}
@media screen and (max-width:767px){.info .item span{margin-right:15px}}
@media screen and (max-width:479px){.info .item span{margin-right:10px}}
@media screen and (max-width:400px){.info .item span{display:block;margin-right:0;margin-bottom:5px}}
.info .item em{font-style:normal;color:var(--color-main);font-weight:500}
.info .item strong{font-weight:600;color:var(--color-main);margin-right:8px}
.info .item.description{padding-top:10px;border-top:1px solid var(--bg-tools-second)}
.info .item.description p{margin-top:8px;color:var(--color-main);line-height:1.7}
.info .item a{color:var(--color-main);transition:color .3s;font-weight:500}
@media screen and (min-width:1025px){.info .item a:hover{color:var(--color-active)}}

.download-link{font-weight:600;text-decoration:none;border-bottom:1px dotted currentColor}
@media screen and (min-width:1025px){.download-link:hover{border-bottom-color:transparent}}
.download-btn{display:inline-flex;align-items:center;gap:5px;padding:5px;border-radius:5px;border:1px solid #7c7c7c;color:#000;cursor:pointer;transition:background .3s ease,color .3s ease;text-decoration:none;font-size:14px;font-weight:400}
.download-btn .svg-icon{font-size:14px;flex-shrink:0}
.info .item .download-btn:hover{background:#000;color:#fff}
@media screen and (max-width:440px){.download-btn{font-size:12px}}
@media screen and (max-width:350px){.download-btn{font-size:10px}}