@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,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: 14px;
	--line-height-general: 1.2;
	--default-font: "Poppins", sans-serif;
	--color-main: #fff;
	--color-active: #ff8502;
	--color-second-active: #ff9727;
	--color-second: #878787;
	--color-dark: #000;
	--bg-main: #121212;
	--bg-second: #070707;
	--bg-darkness: #1d1d1d;
	--bg-rgb-dark: 0, 0, 0;
	--bg-checkbox: #1D1D1D;
	--border-color: #1e1e1e;
	--border-form: #353535;
	--header-height: 80px;
	--border-radius: 10px;
}

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

.hidden {
	display: none;
}

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);
	height: 100%;
	min-width: 320px;
	position: relative;
	color: var(--color-main);
	background: var(--bg-main);
	font-weight: 500;
}

@media screen and (max-width: 1366px) {
	body.open-menu .hamburger::before {
		transform: rotate(45deg) translate3d(-50%, -50%, 0);
	}
	body.open-menu .hamburger::after {
		transform: rotate(-45deg) translate3d(-50%, -50%, 0);
	}
	body.open-menu .hamburger::before, body.open-menu .hamburger::after {
		top: 50%;
		left: 50%;
	}
	body.open-menu .hamburger span {
		opacity: 0;
		transform: translate3d(-20px, -50%, 0);
		visibility: hidden;
	}
	body.open-menu .header-inner {
		opacity: 1;
		transform: translate3d(0, 0, 0);
		visibility: visible;
	}
	body.open-menu .mask {
		opacity: 1;
		transform: translate3d(0, 0, 0);
		visibility: visible;
	}
}

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

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

body.modal-show {
	height: 100%;
	overflow: hidden;
	position: fixed;
	width: 100%;
}

a {
	cursor: pointer;
	color: var(--color-active);
	text-decoration: none;
}

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

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: #878787;
}

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

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

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

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

.wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100%;
	overflow: hidden;
	position: relative;
}

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

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

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

.header {
	flex-shrink: 0;
	flex-grow: 0;
	height: var(--header-height);
	background: var(--bg-second);
	display: flex;
	align-items: center;
}

.header-holder {
	display: flex;
	gap: 0 72px;
}

@media screen and (max-width: 1660px) {
	.header-holder {
		gap: 0 35px;
	}
}

@media screen and (max-width: 1366px) {
	.header-holder {
		gap: 0;
	}
}

@media screen and (max-width: 768px) {
	.header-holder {
		position: relative;
	}
}

.hamburger {
	display: none;
	cursor: pointer;
	align-items: center;
	align-self: center;
	height: 20px;
	position: relative;
	z-index: 3;
	width: 20px;
	opacity: 1;
	background: none;
	border: none;
	transform: translateZ(0);
	transition: opacity .3s,visibility .3s,transform .3s;
	visibility: visible;
	flex-grow: 0;
	flex-shrink: 0;
	margin-right: 15px;
}

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

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

.hamburger::after, .hamburger::before,
.hamburger span {
	content: '';
	height: 3px;
	position: absolute;
	left: 0;
	right: 0;
	border-radius: 10px;
	background-color: var(--color-main);
	transform-origin: top left;
	transition: background-color .3s, transform .3s;
}

.hamburger::before {
	top: 0;
	bottom: auto;
}

.hamburger::after {
	top: auto;
	bottom: 0;
}

.hamburger::before, .hamburger::after {
	transform: translate3d(0, 0, 0) rotate(0);
	left: auto;
	width: 100%;
}

.hamburger span {
	top: 50%;
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, -50%, 0) rotate(0);
	transition: background-color .2s, opacity .2s, visibility .2s, transform .2s;
}

.logo {
	flex-grow: 0;
	flex-shrink: 0;
	padding: 25px 0;
}

@media screen and (max-width: 1366px) {
	.logo {
		margin-right: 20px;
	}
}

@media screen and (max-width: 768px) {
	.logo {
		flex-grow: 1;
		flex-shrink: 1;
		display: flex;
		justify-content: center;
		margin-right: 0;
		padding: 17px 0;
	}
}

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

@media screen and (max-width: 1660px) {
	.logo img {
		max-width: 278px;
	}
}

@media screen and (max-width: 768px) {
	.logo img {
		max-width: 200px;
	}
}

.header-custom {
	display: flex;
	gap: 0 50px;
	flex-grow: 1;
	flex-shrink: 1;
	justify-content: flex-end;
}

@media screen and (max-width: 1660px) {
	.header-custom {
		gap: 0 30px;
	}
}

@media screen and (max-width: 1366px) {
	.header-custom {
		gap: 0 20px;
	}
}

@media screen and (max-width: 768px) {
	.header-custom {
		flex-grow: 0;
		flex-shrink: 0;
		margin-left: 20px;
	}
}

.header-inner {
	flex-grow: 0;
	flex-shrink: 0;
}

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

.navigation {
	display: flex;
	justify-content: space-between;
	height: 100%;
	gap: 0 20px;
}

@media screen and (max-width: 1660px) {
	.navigation {
		gap: 0 10px;
	}
}

@media screen and (max-width: 1366px) {
	.navigation {
		flex-direction: column;
		justify-content: flex-start;
		gap: 15px 0;
	}
}

.navigation .item.active a,
.navigation .item.active span {
	color: var(--color-active);
}

.navigation .item.active a::after,
.navigation .item.active span::after {
	width: 100%;
}

.navigation a,
.navigation span {
	color: var(--color-main);
	font-weight: 700;
	padding: 0 16px;
	display: flex;
	align-items: center;
	height: 100%;
	position: relative;
}

@media screen and (max-width: 1660px) {
	.navigation a,
	.navigation span {
		padding: 0 10px;
	}
}

@media screen and (max-width: 1366px) {
	.navigation a,
	.navigation span {
		padding: 14px 0;
		justify-content: center;
	}
}

.navigation a::after,
.navigation span::after {
	position: absolute;
	content: '';
	left: 0;
	right: 0;
	bottom: 0;
	width: 0;
	height: 4px;
	transition: width .3s;
	background: var(--color-active);
}

.navigation a {
	transition: color .3s;
}

@media screen and (min-width: 1025px) {
	.navigation a:hover {
		color: var(--color-active);
	}
	.navigation a:hover::after {
		width: 100%;
	}
}

.header-search {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
	flex-grow: 2;
	flex-shrink: 2;
}

@media screen and (max-width: 768px) {
	.header-search {
		position: absolute;
		right: 0;
		padding-right: 34px;
		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 {
	border-radius: var(--border-radius);
	max-width: 510px;
	display: flex;
	height: 40px;
	background: var(--bg-darkness);
	width: 100%;
	overflow: hidden;
}

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

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

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

.wrap-action {
	align-self: center;
	position: relative;
	z-index: 10;
	flex-shrink: 0;
	flex-grow: 0;
	display: none;
}

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

.action-search {
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: none;
	cursor: pointer;
	color: var(--color-main);
	font-size: 20px;
}

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

.header-auth {
	flex-grow: 0;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 0 30px;
}

@media screen and (max-width: 1660px) {
	.header-auth {
		gap: 0 15px;
	}
}

@media screen and (max-width: 1366px) {
	.header-auth {
		display: none;
	}
}

.user-drop {
	position: relative;
	max-width: 200px;
}

@media screen and (max-width: 1366px) {
	.user-drop {
		max-width: 100%;
		width: 100%;
	}
}

.user-drop.show .user-btn {
	color: var(--color-active);
}

.user-drop.show .user-btn .arrow {
	transform: rotate(180deg);
}

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

@media screen and (max-width: 1366px) {
	.user-drop.show .drop-hidden {
		display: block;
	}
}

.user-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	color: var(--color-main);
	background: none;
	border: none;
	cursor: pointer;
	transition: color .3s;
}

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

@media screen and (max-width: 1366px) {
	.user-btn {
		width: auto;
		margin: 0 auto;
		margin-bottom: 10px;
	}
}

.user-btn .wrap {
	flex-grow: 1;
	flex-shrink: 1;
	display: flex;
	align-items: center;
	gap: 10px;
	overflow: hidden;
}

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

.user-btn .name {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.user-btn img {
	max-width: 100%;
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.user-btn .arrow {
	flex-grow: 0;
	flex-shrink: 0;
	font-size: 10px;
	transition: transform .3s;
}

@media screen and (max-width: 1366px) {
	.user-btn .arrow {
		transition: none;
	}
}

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

@media screen and (max-width: 1366px) {
	.drop-hidden {
		position: static;
		width: 100%;
		opacity: 1;
		transform: translate3d(0, 0, 0);
		visibility: visible;
		display: none;
	}
}

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

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

.drop-hidden svg {
	flex-grow: 0;
	flex-shrink: 0;
	font-size: 20px;
}

.login-btn {
	display: flex;
	color: var(--color-second);
	cursor: pointer;
	background: none;
	border: none;
	transition: color .3s;
}

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

.signup-btn {
	display: flex;
	justify-content: center;
	border: none;
	cursor: pointer;
	padding: 12px 30px;
	line-height: 1.143;
	border-radius: var(--border-radius);
	background: var(--color-active);
	color: var(--color-dark);
	transition: background .3s;
}

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

.mobile-auth {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 0 10px;
	margin-bottom: 40px;
}

@media screen and (max-width: 1366px) {
	.mobile-auth {
		display: flex;
	}
}

.mobile-auth .item {
	width: 50%;
}

.mobile-auth .btn {
	width: 100%;
	display: flex;
	justify-content: center;
	background: none;
	border: none;
	color: var(--color-second);
	cursor: pointer;
	padding: 12px 30px;
	line-height: 1.143;
}

.mobile-auth .btn.second {
	display: flex;
	justify-content: center;
	border-radius: var(--border-radius);
	background: var(--color-active);
	color: var(--color-dark);
}

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

.main {
	flex-shrink: 1;
	flex-grow: 1;
	padding-top: 20px;
	padding-bottom: 50px;
}

@media screen and (max-width: 991px) {
	.main {
		padding-bottom: 30px;
	}
}

@media screen and (max-width: 768px) {
	.main {
		padding-bottom: 20px;
		padding-top: 10px;
	}
}

.section {
	margin-bottom: 50px;
}

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

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

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

.slider-wrapped {
	margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
	.slider-wrapped {
		margin-bottom: 10px;
	}
}

.slider-bar {
	position: relative;
}

.slider-bar .swiper-button-prev,
.slider-bar .swiper-button-next {
	padding: 0 10px;
	background: none;
	color: var(--color-second);
	transition: color .3s;
	width: 72px;
	height: 100%;
	z-index: 10;
	margin: 0;
	top: 0;
}

.slider-bar .swiper-button-prev::after,
.slider-bar .swiper-button-next::after {
	display: none;
}

.slider-bar .swiper-button-prev svg,
.slider-bar .swiper-button-next svg {
	font-size: 14px;
}

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

.slider-bar .swiper-button-next {
	right: 0;
	justify-content: flex-end;
	background: linear-gradient(270deg, #121212 52.6%, rgba(18, 18, 18, 0) 100%);
}

@media screen and (min-width: 1025px) {
	.slider-bar .swiper-button-next:hover {
		color: var(--color-active);
	}
}

.slider-bar .swiper-button-prev {
	left: 0;
	justify-content: flex-start;
	background: linear-gradient(-270deg, #121212 52.6%, rgba(18, 18, 18, 0) 100%);
}

@media screen and (min-width: 1025px) {
	.slider-bar .swiper-button-prev:hover {
		color: var(--color-active);
	}
}

.slider-bar .swiper-slide {
	width: auto;
}

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

.slider-bar a {
	border-radius: var(--border-radius);
	display: flex;
	padding: 10px 20px;
	color: var(--color-second);
	background: var(--bg-second);
	transition: color .3s, background .3s;
}

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

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

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

.headline .title {
	flex-grow: 1;
	flex-shrink: 1;
	font-weight: 600;
	font-size: 24px;
	line-height: 1.67;
}

@media screen and (max-width: 1024px) {
	.headline .title {
		line-height: 1.2;
	}
}

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

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

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

.headline .title.page-error {
	color: var(--color-active);
}

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

.dropped-box {
	position: relative;
}

.dropped-box.show .drop-list {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	visibility: visible;
}

.dropped-box.show .btn {
	border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.dropped-box.show svg {
	transform: rotate(180deg);
}

.dropped-box .btn {
	background: var(--bg-second);
	color: var(--color-second);
	display: flex;
	align-items: center;
	gap: 10px;
	border-radius: var(--border-radius);
	padding: 9px 20px;
	border: none;
	line-height: 1.5715;
	cursor: pointer;
	transition: color .3s, background .3s, border-radius .3s;
}

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

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

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

.drop-list a {
	display: block;
	cursor: pointer;
	white-space: nowrap;
	padding: 10px 20px;
	color: var(--color-second);
	background: var(--bg-second);
	transition: color .3s, background .3s;
}

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

.link-all {
	display: flex;
	align-items: center;
	padding: 12px 20px;
	gap: 10px;
	transition: background .3s, color .3s;
	background: var(--bg-second);
	color: var(--color-second);
	border-radius: var(--border-radius);
}

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

.link-all svg {
	font-size: 10px;
	flex-grow: 0;
	flex-shrink: 0;
}

.main-grid form,
.main-grid {
	--flex-gap: 10px;
	--flex-items: 5;
	display: flex;
	flex-wrap: wrap;
	gap: 15px var(--flex-gap);
}

@media screen and (max-width: 991px) {
	.main-grid form,
	.main-grid {
		gap: var(--flex-gap);
	}
}

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

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

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

@media screen and (max-width: 768px) {
	.main-grid .th {
		--flex-items: 2;
	}
}

.second-grid {
	--flex-gap: 10px;
	--flex-items: 4;
	display: flex;
	flex-wrap: wrap;
	gap: 15px var(--flex-gap);
}

@media screen and (max-width: 991px) {
	.second-grid {
		gap: var(--flex-gap);
	}
}

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

@media screen and (max-width: 1366px) {
	.second-grid .th {
		--flex-items: 3;
	}
}

@media screen and (max-width: 768px) {
	.second-grid .th {
		--flex-items: 2;
	}
}

.model-grid {
	--flex-gap: 11px;
	--flex-items: 7;
	display: flex;
	flex-wrap: wrap;
	gap: 10px var(--flex-gap);
}

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

@media screen and (max-width: 1660px) {
	.model-grid .th {
		--flex-items: 6;
	}
}

@media screen and (max-width: 1366px) {
	.model-grid .th {
		--flex-items: 5;
	}
}

@media screen and (max-width: 991px) {
	.model-grid .th {
		--flex-items: 4;
	}
}

@media screen and (max-width: 768px) {
	.model-grid .th {
		--flex-items: 3;
	}
}

@media screen and (max-width: 568px) {
	.model-grid .th {
		--flex-items: 2;
	}
}

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

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

.card .media {
	border-radius: var(--border-radius);
	display: block;
	height: auto;
	width: 100%;
	overflow: hidden;
	position: relative;
	padding-bottom: 56.045%;
}

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

.sidebar-image .no-thumb,
.card .no-thumb {
	background: var(--bg-darkness);
}

.sidebar-image .no-thumb img,
.card .no-thumb img {
	height: auto;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: grayscale(40%);
	transition: filter 0.3s ease;
	will-change: filter;
}

@media screen and (min-width: 1025px) {
	.card:hover .no-thumb img {
		filter: grayscale(0%);
	}
}

.card .sticky {
	position: absolute;
	right: 10px;
	bottom: 10px;
	font-weight: 400;
	font-size: 12px;
	padding: 3px 5px;
	border-radius: 5px;
	color: var(--color-main);
	background: rgba(var(--bg-rgb-dark), 0.8);
}

.card .title {
	margin-top: 10px;
	font-size: 16px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

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

@media screen and (max-width: 390px) {
	.card .list {
		font-size: 12px;
	}
}

.card li {
	position: relative;
}

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

.card li::before {
	content: '';
	position: absolute;
	width: 4px;
	height: 4px;
	right: -9px;
	border-radius: 100%;
	overflow: hidden;
	background: var(--color-second);
	top: 50%;
	transform: translate3d(0, -50%, 0);
}

.card-title {
	margin-top: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.media-model {
	border-radius: var(--border-radius);
	display: block;
	height: auto;
	width: 100%;
	overflow: hidden;
	position: relative;
	padding-bottom: 133.057%;
}

@media screen and (max-width: 480px) {
	.media-model {
		min-height: 250px;
		padding-bottom: 0;
	}
}

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

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

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

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

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

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

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

.pagination-list .list .item.active span {
	border-radius: var(--border-radius);
	color: var(--color-second);
	background: var(--bg-darkness);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	height: 40px;
	min-width: 40px;
}

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

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

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

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

.pagination-list .item.pager a {
	padding: 10px 19px;
	height: 40px;
	min-width: 50px;
	display: flex;
	align-items: center;
	gap: 10px;
}

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

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

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

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

.twocolumns {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

@media screen and (max-width: 1024px) {
	.twocolumns {
		flex-direction: column;
		align-items: normal;
	}
}

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

.twocolumns .column.second {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 364px;
	width: 100%;
}

@media screen and (max-width: 1024px) {
	.twocolumns .column.second {
		max-width: 100%;
		flex-grow: 1;
		flex-shrink: 1;
	}
}

.twocolumns .hold {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--bg-second);
}

.twocolumns .hold:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

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

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

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

.twocolumns .wrapped {
	display: flex;
	align-items: center;
	gap: 10px;
}

.twocolumns .description {
	font-weight: 400;
	line-height: 1.5;
	font-size: 16px;
}

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

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

.sidebar-title {
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 24px;
	line-height: 1.67;
}

@media screen and (max-width: 1024px) {
	.sidebar-title {
		line-height: 1.2;
	}
}

@media screen and (max-width: 991px) {
	.sidebar-title {
		font-size: 22px;
		margin-bottom: 10px;
	}
}

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

@media screen and (max-width: 390px) {
	.sidebar-title {
		font-size: 18px;
	}
}

.sidebar-image {
	overflow: hidden;
	border-radius: var(--border-radius);
	width: 100%;
	margin: 0 auto;
}

@media screen and (max-width: 1024px) {
	.sidebar-image {
		max-width: 256px;
	}
}

.sidebar-image.second {
	max-width: 364px;
}

.sidebar-image.second .wrap {
	padding-bottom: 56.045%;
}

.sidebar-image .wrap {
	padding-bottom: 133.243%;
	position: relative;
}

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

.rating-box {
	flex-grow: 1;
	flex-shrink: 1;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

.rating-box .frame {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--color-second);
	max-width: 192px;
}

.rating-box .text {
	flex-grow: 1;
	flex-shrink: 1;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.rating-box .scale {
	position: relative;
	margin-top: 6px;
	overflow: hidden;
	width: 176px;
	height: 4px;
	border-radius: 20px;
	background: var(--color-second);
}

.scale-active.scale,
.scale-active {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: var(--color-active);
	z-index: 2;
	border-radius: 20px;
	margin: 0;
}

.btn-reaction {
	flex-grow: 0;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	font-size: 30px;
	color: var(--color-second);
	transition: color .3s;
}

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

.btn-reaction.active {
	color: var(--color-active);
}

.rank-box {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	flex-grow: 0;
	flex-shrink: 0;
	font-weight: 400;
	font-size: 14px;
}

.rank-box strong {
	font-weight: 700;
	font-size: 24px;
}

.subscribe-btn {
	flex-grow: 1;
	flex-shrink: 1;
	display: flex;
	align-items: center;
	height: 40px;
}

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

.subscribe-btn .btn {
	height: 100%;
	align-self: center;
	padding: 10px 15px;
	cursor: pointer;
	border: none;
	background: var(--color-active);
	color: rgba(var(--bg-rgb-dark), 1);
	transition: background .3s;
	border-radius: var(--border-radius) 0 0 var(--border-radius);
	overflow: hidden;
}

.subscribe-btn .amount {
	height: 100%;
	display: flex;
	align-items: center;
	background: var(--bg-second);
	padding: 10px 17px;
	color: var(--color-second);
	transition: color .3s;
	border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.social-list {
	display: flex;
	align-items: center;
	gap: 5px;
	flex-grow: 0;
	flex-shrink: 0;
	font-size: 16px;
}

.social-list a {
	border-radius: var(--border-radius);
	color: var(--color-second);
	background: var(--bg-second);
	display: flex;
	padding: 12px;
	transition: color .3s, background .3s;
}

@media screen and (min-width: 1025px) {
	.social-list a:hover {
		color: rgba(var(--bg-rgb-dark), 1);
		background: var(--color-active);
	}
}

.sidebar-list {
	-moz-column-count: 2;
	     column-count: 2;
	font-weight: 400;
	gap: 0 50px;
}

.sidebar-list li {
	margin-bottom: 13px;
	line-height: 1.5;
}

.sidebar-list li:last-child {
	margin-bottom: 0;
}

.sidebar-list span:first-child {
	color: var(--color-second);
}

.visit-link {
	width: 100%;
	display: flex;
	justify-content: center;
	background: var(--color-active);
	color: rgba(var(--bg-rgb-dark), 1);
	border-radius: 20px;
	padding: 12px 20px;
	transition: background .3s;
}

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

.comment-box {
	margin-top: 16px;
	max-width: 1000px;
}

.comment-box.active .comment-field {
	display: block;
}

.comment-box.secondary {
	padding-top: 20px;
	margin: 0;
}

@media screen and (max-width: 768px) {
	.comment-box.secondary {
		padding-top: 30px;
	}
}

.comment-box .input,
.comment-box .textarea {
	width: 100%;
	background: var(--bg-darkness);
	padding: 10px 20px;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	color: var(--color-main);
}

.comment-box .textarea {
	height: 100px;
	resize: none;
}

.comment-box .row {
	margin-bottom: 20px;
}

.comment-box .row.second {
	max-width: 400px;
}

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

.comment-headline {
	display: flex;
	align-items: center;
	gap: 10px 20px;
}

@media screen and (max-width: 390px) {
	.comment-headline {
		gap: 10px;
	}
}

.comment-headline .title {
	font-weight: 600;
	font-size: 24px;
}

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

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

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

.btn-comment,
.btn-submit {
	background: var(--color-active);
	border: none;
	color: rgba(var(--bg-rgb-dark), 1);
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: background .3s;
}

@media screen and (min-width: 1025px) {
	.btn-comment:hover,
	.btn-submit:hover {
		background: var(--color-second-active);
	}
}

.btn-comment {
	flex-grow: 0;
	flex-shrink: 0;
	padding: 10px 15px;
}

.btn-submit {
	padding: 10px 30px;
}

.comment-field {
	display: none;
	margin-top: 20px;
}

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

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

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

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

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

.comments-list .wrap {
	display: flex;
	align-items: center;
	gap: 0 14px;
	margin-bottom: 10px;
}

.comments-list .name {
	color: var(--color-main);
	transition: color .3s;
}

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

.comments-list .list {
	font-weight: 400;
	color: var(--color-second);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 14px;
}

.comments-list li {
	position: relative;
}

.comments-list li::before {
	content: '';
	position: absolute;
	width: 4px;
	height: 4px;
	left: -9px;
	border-radius: 100%;
	overflow: hidden;
	background: var(--color-second);
	top: 50%;
	transform: translate3d(0, -50%, 0);
}

.comments-list .text {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
}

.comments-list .text img {
	display: inline-block;
    height: 20px;
    width: auto;
}

.wrap-tags {
	--flex-gap: 30px;
	--flex-items: 5;
	display: flex;
	flex-wrap: wrap;
	margin: -20px 0 0;
	gap: 0 var(--flex-gap);
	justify-content: space-between;
}

@media screen and (max-width: 1366px) {
	.wrap-tags {
		justify-content: stretch;
	}
}

.wrap-tags .list {
	width: 100%;
    column-count: 6;
	/* max-width: 244px;
	width: calc((100% / var(--flex-items)) - (((var(--flex-items) - 1) / var(--flex-items)) * var(--flex-gap))); */
}

.wrap-tags .list li {
	max-width: 244px;
}

@media screen and (max-width: 1366px) {
	.wrap-tags .list {
    	column-count: 3;
		/* --flex-items: 3;
		max-width: 100%; */
	}
}

@media screen and (max-width: 860px) {
	.wrap-tags .list {
    	column-count: 2;
		/* --flex-items: 2; */
	}
}

.wrap-tags .title {
	font-weight: 600;
	font-size: 24px;
	color: var(--color-active);
	padding-top: 30px;
	padding-bottom: 15px;
	display: block;
	padding: 25px 20px 15px;
}

@media screen and (max-width: 768px) {
	.wrap-tags .title {
		padding: 20px 10px 15px;
	}
}

.wrap-tags a {
	display: flex;
	align-items: center;
	padding: 10px 20px;
	gap: 10px;
	line-height: 1.429;
	color: var(--color-main);
	transition: color .3s, background .3s;
	border-radius: var(--border-radius);
}

@media screen and (min-width: 1025px) {
	.wrap-tags a:hover {
		background: var(--color-active);
		color: rgba(var(--bg-rgb-dark), 1);
	}
	.wrap-tags a:hover span:last-child {
		color: rgba(var(--bg-rgb-dark), 1);
	}
}

@media screen and (max-width: 768px) {
	.wrap-tags a {
		padding: 10px;
	}
}

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

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

.video-columns {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

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

.video-columns .column {
	flex-grow: 1;
	flex-shrink: 1;
}

.video-columns .column.second {
	max-width: 360px;
	width: 100%;
	flex-grow: 0;
	flex-shrink: 0;
	padding: 15px 30px 30px;
	border-radius: var(--border-radius);
	background: rgba(var(--bg-rgb-dark), 1);
}

@media screen and (max-width: 1160px) {
	.video-columns .column.second {
		display: none;
	}
}

.player {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}


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

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

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

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

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

.player-tools {
	display: flex;
	align-items: center;
	margin-top: 20px;
	gap: 20px;
}

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

@media screen and (max-width: 991px) {
	.player-tools {
		flex-direction: column;
	}
}

.player-tools .col {
	flex-grow: 1;
	flex-shrink: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

@media screen and (max-width: 768px) {
	.player-tools .col {
		width: 100%;
	}
}

.player-tools .col.second {
	flex-grow: 0;
	flex-shrink: 0;
	gap: 20px;
	justify-content: flex-start;
}

.player-tools .item.active .tab-link {
	color: rgba(var(--bg-rgb-dark), 1);
	background: var(--color-active);
}

@media screen and (max-width: 768px) {
	.player-tools .item {
		width: calc(20% - 8px);
	}
}

.btn-favourites {
	position: relative;
}

.btn-favourites.show .list {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	visibility: visible;
}

.btn-favourites.show svg.arrow {
	transform: rotate(180deg);
}

.btn-favourites.show .drop {
	color: var(--color-main);
	background: var(--color-active);
	border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.btn-favourites .drop {
	cursor: pointer;
	border: none;
	color: var(--color-second);
	background: var(--bg-second);
	border-radius: var(--border-radius);
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 11px 20px;
	transition: color .3s, background .3s, border-radius .3s;
}

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

.btn-favourites svg {
	font-size: 18px;
}

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

.btn-favourites .list {
	position: absolute;
	z-index: 3;
	left: 0;
	background: var(--bg-second);
	border-radius: 0 var(--border-radius) var(--border-radius) var(--border-radius);
	top: 100%;
	max-height: 250px;
	min-width: 185px;
	overflow-y: auto;
	opacity: 0;
	transform: translate3d(0, 10px, 0);
	visibility: hidden;
	transition: opacity .3s, transform .3s, visibility .3s;
}

@media screen and (max-width: 991px) {
	.btn-favourites .list {
		right: 0;
		left: auto;
	}
}

.btn-favourites .list li span {
    display: flex;
    align-items: center;
	align-items: stretch;
}

.btn-favourites .list li span a {
    padding: 10px 10px 10px 20px;
	width: 100%;
}

.btn-favourites .list li span a:last-child {
    padding: 10px;
	width: auto;
}

.btn-favourites a {
	display: flex;
	align-items: center;
	padding: 10px 20px;
	color: var(--color-main);
	transition: background .3s;
}

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

.tab-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 16px;
	padding: 10px 20px;
	color: var(--color-second);
	border-radius: var(--border-radius);
	background: var(--bg-second);
	transition: color .3s, background .3s;
}

@media screen and (min-width: 1025px) {
	.tab-link:hover {
		color: rgba(var(--bg-rgb-dark), 1);
		background: var(--color-active);
	}
}

@media screen and (max-width: 768px) {
	.tab-link {
		padding: 10px;
	}
}

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

@media screen and (max-width: 768px) {
	.tab-link span {
		display: none;
	}
}

.content-tabs {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--bg-second);
	display: none;
}

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

.content-tabs .row {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--bg-second);
}

.content-tabs .row:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.content-tabs .description {
	margin-top: 20px;
	line-height: 1.536;
}

.content-tabs .wrapped {
	display: flex;
	align-items: center;
	gap: 10px;
}

@media screen and (max-width: 768px) {
	.content-tabs .wrapped {
		flex-direction: column;
		align-items: flex-start;
	}
}

.content-tabs .wrapped .col {
	flex-grow: 1;
	flex-shrink: 1;
}

.content-tabs .wrapped .col.second {
	flex-grow: 0;
	flex-shrink: 0;
}

.wrap-thumbs {
	display: flex;
	gap: 10px 20px;
	flex-wrap: wrap;
	flex-grow: 1;
	flex-shrink: 1;
	margin-top: 10px;
}

.wrap-thumbs:first-child {
	margin-top: 0;
}

.wrap-thumbs .thumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.wrap-thumbs .name {
	flex-grow: 0;
	flex-shrink: 0;
	font-weight: 400;
	font-size: 16px;
}

.wrap-thumbs .link {
	border-radius: var(--border-radius);
	border: none;
	background: var(--bg-second);
	color: var(--color-second);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px 15px;
	min-height: 36px;
	cursor: pointer;
	transition: color .3s, background .3s;
}

@media screen and (min-width: 1025px) {
	.wrap-thumbs .link:hover {
		color: rgba(var(--bg-rgb-dark), 1);
		background: var(--color-active);
	}
}

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

.author-box .content {
	flex-grow: 1;
	flex-shrink: 1;
	text-align: end;
}

@media screen and (max-width: 768px) {
	.author-box .content {
		text-align: start;
		order: 1;
	}
}

.author-box .content .name,
.author-box .content a {
	color: var(--color-main);
	transition: color .3s;
}

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

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

.author-box img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.author-box .list {
	margin-top: 10px;
	font-weight: 400;
	color: var(--color-second);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 5px;
	gap: 0 14px;
}

.author-box li {
	position: relative;
}

.author-box li:last-child::before {
	display: none;
}

.author-box li::before {
	content: '';
	position: absolute;
	width: 4px;
	height: 4px;
	right: -9px;
	border-radius: 100%;
	overflow: hidden;
	background: var(--color-second);
	top: 50%;
	transform: translate3d(0, -50%, 0);
}

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

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

@media screen and (max-width: 1660px) {
	.screen-box .th {
		--flex-items: 5;
	}
}

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

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

.screen-card {
	border-radius: var(--border-radius);
	display: block;
	height: auto;
	width: 100%;
	overflow: hidden;
	position: relative;
	padding-bottom: 56.045%;
}

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

.share-field label {
	display: block;
	margin-bottom: 20px;
}

.share-field label:last-child {
	margin-bottom: 0;
}

.share-field .text {
	color: var(--color-second);
	display: block;
	margin-bottom: 5px;
}

.share-field .input {
	width: 100%;
	border: 1px solid var(--border-color);
	background: var(--bg-darkness);
	padding: 10px 20px;
	color: var(--color-second);
	border-radius: var(--border-radius);
	font-size: 14px;
	font-weight: 400;
}

.violation-box .wrap {
	display: flex;
	margin: -10px -10px 10px;
}

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

.violation-box .textarea {
	padding: 10px;
	width: 50%;
}

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

.violation-box textarea {
	width: 100%;
	border: 1px solid var(--border-color);
	background: var(--bg-darkness);
	padding: 10px 20px;
	color: var(--color-main);
	border-radius: var(--border-radius);
	font-size: 14px;
	font-weight: 400;
	height: 100px;
	resize: none;
}

.radio-block {
	padding: 10px;
	width: 50%;
}

@media screen and (max-width: 768px) {
	.radio-block {
		width: 100%;
	}
}

.label-choice {
	display: flex;
	margin-bottom: 10px;
	color: var(--color-main);
}

.label-choice:last-child {
	margin-bottom: 0;
}

.radio-info {
	cursor: pointer;
	display: inline-block;
	vertical-align: top;
	position: relative;
	flex-grow: 1;
	flex-shrink: 1;
	padding-left: 30px;
}

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

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

.input-choice {
	display: none;
}

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

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

.field-name {
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 10px;
	display: block;
}

.aside-spot .text {
	font-weight: 400;
	font-size: 12px;
	letter-spacing: .3em;
	text-transform: uppercase;
	text-align: center;
	color: var(--color-second);
	margin-bottom: 10px;
}

.aside-spot .item {
	margin-bottom: 10px;
}

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

.aside-spot img {
	max-width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	border-radius: 10px;
	width: 100%;
	height: auto;
}

.footer {
	flex-shrink: 0;
	flex-grow: 0;
	padding-top: 15px;
	padding-bottom: 30px;
	background: var(--bg-second);
}

@media screen and (max-width: 768px) {
	.footer {
		padding-bottom: 15px;
	}
}

.adv-box {
	margin: 0 auto 50px;
	max-width: 1780px;
}

@media screen and (max-width: 768px) {
	.adv-box {
		margin-bottom: 30px;
	}
}

.adv-box .text {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: .3em;
	text-transform: uppercase;
	text-align: center;
	color: var(--color-second);
	margin-bottom: 15px;
}

.adv-box .spot {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: -7px;
}

@media screen and (max-width: 1366px) {
	.adv-box .spot {
		justify-content: space-around;
	}
}

.adv-box .item {
	padding: 7px;
}

.adv-box a {
	display: block;
}

.adv-box img {
	border-radius: var(--border-radius);
	max-width: 100%;
}

.footer-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 1210px;
	margin: 0 auto;
}

.footer-inner .text,
.footer-inner .copyright {
	font-weight: 400;
	font-size: 12px;
	line-height: 1.7;
	text-align: center;
	color: var(--color-second);
}

.footer-inner .copyright {
	margin-top: 15px;
}

.logo-footer {
	margin-bottom: 30px;
}

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

@media screen and (max-width: 768px) {
	.logo-footer img {
		max-width: 278px;
	}
}

.footer-list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	font-weight: 700;
	text-transform: capitalize;
	gap: 27px 45px;
	margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
	.footer-list {
		margin-bottom: 20px;
	}
}

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

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

.modal-box {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	min-width: 1px;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	-webkit-backdrop-filter: blur(15px);
	        backdrop-filter: blur(15px);
	background: rgba(var(--bg-rgb-dark), 0.8);
}

.modal-box.show {
	opacity: 1;
	visibility: visible;
}

.modal-content {
	background-color: var(--bg-second);
	width: 100%;
	padding: 50px;
	border-radius: var(--border-radius);
	max-width: 484px;
	max-height: 100%;
	overflow: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: transform 0.3s;
	position: relative;
	margin: auto;
}

@media screen and (max-width: 768px) {
	.modal-content {
		padding: 30px 20px 20px;
	}
}

.modal-content.second {
	max-width: 950px;
	min-width: 950px;
}

@media screen and (max-width: 992px) {
	.modal-content.second {
		min-width: 1px;
	}
}

.modal-content .close {
	border: none;
	background: none;
	position: absolute;
	font-size: 24px;
	right: 20px;
	top: 20px;
	color: var(--color-main);
	cursor: pointer;
	transition: color .3s;
}

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

.modal-content .close svg {
	display: block;
}

.modal-content .success {
	color: var(--color-main);
}
.modal-content .title {
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 25px;
	color: var(--color-main);
}

@media screen and (max-width: 991px) {
	.modal-content .title {
		font-size: 22px;
	}
}

@media screen and (max-width: 768px) {
	.modal-content .title {
		font-size: 20px;
	}
}

@media screen and (max-width: 390px) {
	.modal-content .title {
		font-size: 18px;
	}
}

.modal-content .input {
	width: 100%;
	background: var(--bg-darkness);
	border-radius: var(--border-radius);
	border: none;
	padding: 9px 20px;
	font-weight: 400;
	font-size: 14px;
	color: var(--color-main);
}

.modal-content textarea.input {
	resize: vertical;
	min-height: 110px;
}

.modal-content .row {
	margin-bottom: 20px;
}

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

.modal-content .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 10px;
}

.modal-content .hold {
	margin-bottom: 50px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border-form);
}

.modal-content .hold.last {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.modal-content .hold.secondary {
	margin-bottom: 30px;
}

.modal-content .btn {
	width: 100%;
	border: none;
	cursor: pointer;
	background: var(--color-active);
	color: rgba(var(--bg-rgb-dark), 1);
	border-radius: var(--border-radius);
	transition: background .3s;
	padding: 9px;
}

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

.modal-content .text {
	text-align: center;
	color: var(--color-second);
	margin-bottom: 10px;
}

.modal-content .info {
	text-align: center;
	line-height: 1.4;
	color: var(--color-second);
}

.modal-content .info a {
	color: var(--color-main);
	transition: color .3s;
}

@media screen and (min-width: 1024px) {
	.modal-content .info a:hover {
		color: var(--color-active);
	}
}

.modal-content .button {
	width: 100%;
	border: none;
	cursor: pointer;
	background: var(--bg-main);
	color: var(--color-second);
	border-radius: 20px;
	transition: background .3s, color .3s;
	padding: 9px;
	display: inline-block;
	text-align: center;
}

@media screen and (min-width: 1025px) {
	.modal-content .button:hover {
		background: var(--color-active);
		color: rgba(var(--bg-rgb-dark), 1);
	}
}

.forgot-link {
	text-align: end;
	color: var(--color-second);
	transition: color .3s;
}

@media screen and (min-width: 1025px) {
	.forgot-link:hover {
		color: var(--color-main);
	}
}

@media screen and (max-width: 390px) {
	.forgot-link {
		font-size: 14px;
	}
}

@media screen and (max-width: 374px) {
	.forgot-link {
		font-size: 12px;
	}
}

.checkbox-label {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	color: var(--color-main);
	position: relative;
}

@media screen and (max-width: 390px) {
	.checkbox-label {
		font-size: 14px;
	}
}

@media screen and (max-width: 374px) {
	.checkbox-label {
		font-size: 12px;
	}
}

.checkbox-label .checkbox {
	display: inline-flex;
	vertical-align: top;
	position: relative;
	margin-right: 10px;
	flex-shrink: 0;
	flex-grow: 0;
	width: 20px;
	background: var(--bg-checkbox);
	transition: background .2s, border .2s;
	border-radius: 5px;
	height: 20px;
}

.checkbox-label .checkbox::after {
	content: "";
	position: absolute;
	opacity: 0;
	transition: opacity .2s;
	left: 7px;
	top: 3px;
	width: 7px;
	height: 11px;
	border: solid rgba(var(--bg-rgb-dark), 1);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.checkbox-label .field-error {
	position: absolute;
    top: 100%;
    left: 0;
}

.checkbox-input {
	display: none;
}

.checkbox-input:checked + .checkbox {
	background: var(--color-active);
}

.checkbox-input:checked + .checkbox::after {
	opacity: 1;
}

.modal-field {
	display: flex;
}

@media screen and (max-width: 768px) {
	.modal-field {
		flex-direction: column;
	}
}

.modal-field .col {
	width: 50%;
	padding: 0 25px 0 0;
}

@media screen and (max-width: 768px) {
	.modal-field .col {
		width: 100%;
		padding: 0;
	}
}

.modal-field .col.second {
	padding: 0 0 0 25px;
}

@media screen and (max-width: 768px) {
	.modal-field .col.second {
		padding: 0;
		margin-top: 20px;
	}
}

.modal-content .name,
.modal-field .name {
	margin-bottom: 10px;
	display: block;
	color: var(--color-main);
}

.modal-field select {
	display: none;
}

.modal-field .textarea {
	width: 100%;
	height: 120px;
	border-radius: var(--border-radius);
	resize: none;
	background: var(--bg-darkness);
	border: none;
	padding: 10px 20px;
	color: var(--color-main);
}

.mask-button {
	position: relative;
}

.mask-button input[type=file] {
	display: none;
}

.mask-input {
	font-size: 14px;
	color: var(--color-second);
	background: var(--bg-darkness);
	height: 40px;
	border-radius: var(--border-radius);
	position: relative;
	padding: 5px 100px 5px 20px;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	border: none;
}

.file-wrap {
	border-radius: var(--border-radius);
	cursor: pointer;
	font-size: 14px;
	min-height: 30px;
	padding: 6px 20px;
	background: var(--color-active);
	color: rgba(var(--bg-rgb-dark), 1);
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translate3d(0, -50%, 0);
	z-index: 2;
	transition: background .3s;
}

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

.modal-user-box {
	margin-top: 20px;
	display: flex;
	align-items: center;
	gap: 20px;
}

@media screen and (max-width: 390px) {
	.modal-user-box {
		gap: 10px;
	}
}

.modal-user-box .ava {
	width: 160px;
	height: 160px;
	border-radius: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 80px;
	color: var(--color-second);
	background: var(--bg-darkness);
}

@media screen and (max-width: 390px) {
	.modal-user-box .ava {
		width: 130px;
		height: 130px;
		font-size: 55px;
	}
}

.modal-user-box img {
	max-width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	width: 100%;
	height: 100%;
}

.save-btn {
	border: none;
	cursor: pointer;
	background: var(--color-active);
	color: rgba(var(--bg-rgb-dark), 1);
	border-radius: var(--border-radius);
	transition: background .3s;
	padding: 11px 28px;
	line-height: 1.286;
	margin-top: 30px;
}

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

.select2-container--default .select2-selection--single {
	border: none;
	background: var(--bg-darkness);
	border-radius: var(--border-radius);
	height: 40px;
	display: flex;
	align-items: center;
	font-weight: 400;
	font-size: 14px;
	font-family: inherit;
}

.select2-selection__arrow::before {
	background-image: url("../images/arrow.svg");
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0) rotate(180deg);
	width: 100%;
	transition: transform .3s;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 10px;
	position: absolute;
	top: 50%;
	transform: translate3d(-50%, -50%, 0) rotate(180deg);
	right: 20px;
	width: 10px;
}

.select2-container--open .select2-selection__arrow::before {
	transform: translate3d(-50%, -50%, 0) rotate(0deg);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	display: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: var(--color-main);
	padding: 0 20px;
}

.select2-results__option--selectable {
	color: var(--color-second);
	background: var(--bg-darkness);
	height: 40px;
	display: flex;
	align-items: center;
	padding: 0 20px;
	font-weight: 400;
	font-size: 14px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: var(--color-active);
	color: rgba(var(--bg-rgb-dark), 1);
}

.select2-dropdown {
	border: none;
	border-radius: var(--border-radius);
	overflow: hidden;
	background: var(--bg-main);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
	border: none;
	padding: 0 20px;
	color: var(--color-main);
	height: 40px;
	border-radius: var(--border-radius);
	background: var(--bg-darkness);
}

.select2-container--default .select2-results__option--selected {
	background: var(--bg-main);
}

.wrap-select {
	margin: -5px;
	display: flex;
	flex-wrap: wrap;
}

.wrap-select .col-list {
	padding: 5px;
	width: 33.33333%;
}

@media screen and (max-width: 390px) {
	.wrap-select .col-list {
		width: 50%;
	}
}

.static_page .empty-content h2 {
	margin: 25px 0 10px;
	font-size: 18px;
    line-height: 1.67;
}

.static_page .empty-content h2:first-child {
	margin-top: 0;
}

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

.static_page .empty-content ol, 
.static_page .empty-content ul {
	list-style: auto;
	margin-bottom: 15px;
	padding: 0 0 0 25px;
}

.static_page .empty-content ol li, 
.static_page .empty-content ul li {
	margin: 0 0 10px;
}

.player-wrap {
	position: relative !important;
}


@media screen and (max-width: 410px) {
	.player-wrap {
		padding-bottom: 0 !important;
		min-height: 220px;
	}
}

.player-wrap .kt-player {
	position: absolute !important;
}

.share-field .custom-size {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.share-field .custom-size .input {
	max-width: 150px;
}

.share-field .custom-size .custom-x {
	margin: 0 5px 0;
	color: var(--color-second);
}

.share-field .custom-size .text {
	display: block;
	width: 100%;
}

.embed-button-custom .embed-code-custom-width-label {
	margin: 0 0 0 5px;
}

.field-error,
.generic-error {
	color: red;
	margin-bottom: 5px;
}

.field-error {
	margin: 5px 0 0;
}

.smileys-support .smileys-bar {
	margin: 0 0 5px;
}

.captcha-control img {
	margin: 0 0 10px;
}

.fancybox-type-ajax .fancybox-close {
	opacity: 0 !important;
}

.select2-container.select2-container--open {
	z-index: 9999;
}

.main-grid form {
	width: 100%;
}

.main-grid form .bottom {
	width: 100%;
	display: flex;
    margin-top: 20px;
    justify-content: center;
	align-items: center;
	gap: 10px;
}

.main-grid form .item-control .item-control-holder {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
	flex-wrap: wrap;
}

.main-grid form .item-control .toggle-button,
.main-grid form .bottom .submit {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    height: 40px;
    min-width: 40px;
	border: none;
    border-radius: var(--border-radius);
    color: var(--color-second);
    background: var(--bg-second);
    transition: color .3s, background .3s;
	cursor: pointer;
}

.main-grid form .bottom .submit:disabled {
	cursor: default;
	pointer-events: none;
	opacity: 0.8;
}

.main-grid form .item-control .toggle-button {
    display: inline-block;
    margin: 5px 0 0;
    height: auto;
    padding: 5px 10px;
}

@media screen and (min-width: 1025px) {
	.main-grid form .item-control .toggle-button:hover,
    .main-grid form .bottom .submit:hover {
        background-color: var(--color-active);
        color: var(--color-main);
    }
}

.main-grid form .checkbox-label {
	position: absolute;
    top: 10px;
    left: 10px;
}

.main-grid form .checkbox-label .checkbox-input {
	position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    display: inline-block;
    outline: auto;
    -webkit-appearance: auto;
}

.main-grid form .checkbox-label .checkbox {
	margin: 0;
}

.list-playlists .media img.video2,
.list-playlists .media img.video3,
.list-playlists .media img.video4,
.list-playlists .media img.video5 {
  position: absolute;
  width: 7rem;
  height: 4rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  z-index: 2;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
  left: auto;
  border-radius: var(--border-radius);
}

.no-touch .list-playlists .item:hover .media img {
  opacity: 1;
}
.no-touch .list-playlists .item .media .video3:hover,
.no-touch .list-playlists .item .media .video4:hover,
.no-touch .list-playlists .item .media .video2:hover {
  z-index: 3;
  border: 2px solid var(--color-active);
}

.list-playlists .media img.video2 {
  right: 25px;
  top: 5px;
}
.list-playlists .media img.video3 {
  right: 15px;
  top: 15px;
}
.list-playlists .media img.video4 {
  right: 5px;
  top: 25px;
}