@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&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 {
	--height-header: 151px;
	--height-menu-mobile: 60px;
	--width-general-aside: 320px;
	--font-size-general: 16px;
	--line-height-general: 1.4;
	--font-weight-general: 600;
	--default-font: "Poppins", sans-serif;
	--color-main: #fff;
	--color-active: #276fdb;
	--color-second: #b7b7b7;
	--color-text: #656461;
	--bg-main: #000;
	--bg-avatar: #272727;
	--bg-black: #000;
	--bg-black80: #141417;
	--bg-black30: #b4b3bf;
	--bg-dark-blue: #276fdb;
	--bg-dark-blue-active: #1471fd;
	--bg-white: #fff;
	--bg-pink: #f261b8;
	--bg-rgb-dark: 24, 25, 36;
	--bg-rgb-blue: 39, 111, 219;
	--bg-rgb-black: 0, 0, 0;
	--bg-swiper-gradient-next: linear-gradient(268deg, #111112 0%, rgba(17, 17, 18, 0) 100%);
	--bg-swiper-gradient-prev: linear-gradient(268deg, rgba(17, 17, 18, 0) 0%, #111112 100%);
	--border-rgb-color: 20,20,23;
	--bg-modal-rgb: 12, 12, 12;
	--success-color: #0db70d;
}

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

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

body {
	font: var(--font-weight-general) 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-black80);
}

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

body.open-menu .hamburger b::before, body.open-menu .hamburger b::after {
	top: 50%;
	left: 50%;
	width: 31px;
}

body.open-menu .hamburger b::after {
	transform: rotate(-45deg) translate3d(-50%, -50%, 0);
}

body.open-menu .hamburger b::before {
	transform: rotate(45deg) translate3d(-50%, -50%, 0);
}

body.open-menu .hamburger b span {
	display: none;
}

body.open-menu .holder-navigation {
	display: flex;
}

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

a {
	color: var(--color-main);
	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: var(--bg-black30);
}

input:-moz-placeholder, textarea:-moz-placeholder {
	color: var(--bg-black30);
	opacity: 1;
}

input::-moz-placeholder, textarea::-moz-placeholder {
	color: var(--bg-black30);
	opacity: 1;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
	color: var(--bg-black30);
}

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: var(--bg-black30) !important;
}

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

@media screen and (max-width: 767px) {
	.wrapper {
		padding-bottom: var(--height-menu-mobile);
	}
}

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

.header {
	background-color: var(--bg-black);
	flex-shrink: 0;
	flex-grow: 0;
	display: flex;
	flex-direction: column;
	gap: 19px;
	margin-bottom: 24px;
}

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

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

.logo {
	flex-shrink: 0;
	flex-grow: 0;
	display: flex;
}

.logo a {
	display: flex;
}

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

.hamburger,
.search-button {
	width: 48px;
	height: 48px;
	cursor: pointer;
	justify-content: center;
	align-items: center;
	display: none;
}

@media screen and (max-width: 767px) {
	.hamburger,
	.search-button {
		display: flex;
	}
}

@media screen and (max-width: 640px) {
	.hamburger,
	.search-button {
		width: 40px;
		height: 40px;
	}
}

.hamburger {
	flex-shrink: 0;
	flex-grow: 0;
	border: none;
	cursor: pointer;
	background: none;
	align-items: center;
	opacity: 1;
	transform: translateZ(0);
	transition: opacity .3s,visibility .3s,transform .3s;
	visibility: visible;
}

.hamburger b {
	width: 20px;
	height: 18px;
	display: flex;
	position: relative;
}

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

.hamburger b::before {
	top: 0;
}

.hamburger b::after {
	bottom: 0;
}

.hamburger b span {
	top: 50%;
	transform: translate3d(0, -50%, 0);
}

.search-button {
	flex-shrink: 0;
	flex-grow: 0;
	background: none;
	border: none;
	color: var(--bg-white);
	font-size: 24px;
}

.link-token,
.link-token-mobile {
	align-items: center;
	gap: 4px;
	color: var(--bg-dark-blue);
}

.link-token img,
.link-token-mobile img {
	max-width: 24px;
	height: auto;
	display: inline-block;
	vertical-align: top;
}

.link-token-mobile {
	justify-content: center;
	font-size: 18px;
	font-weight: 600;
}

.link-token {
	display: flex;
	transition: color .3s;
}

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

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

.sup-list {
	padding: 17px 0;
	border-bottom: 1px solid var(--bg-dark-blue);
}

@media screen and (max-width: 991px) {
	.sup-list {
		padding: 15px 0;
	}
}

.sup-list .list {
	display: flex;
	justify-content: center;
	gap: 16px;
	white-space: nowrap;
	overflow: auto;
}

@media screen and (max-width: 640px) {
	.sup-list .list {
		font-size: 12px;
		font-weight: 500;
		gap: 6px;
	}
}

@media screen and (max-width: 390px) {
	.sup-list .list {
		justify-content: flex-start;
		margin: 0 -16px;
		padding: 0 16px;
	}
}

.sup-list .list::-webkit-scrollbar {
	display: none;
}

.sup-list .item {
	display: flex;
	align-items: center;
	gap: 16px;
}

@media screen and (max-width: 640px) {
	.sup-list .item {
		gap: 6px;
	}
}

.sup-list .item::after {
	content: "";
	width: 6px;
	height: 6px;
	flex-shrink: 0;
	flex-grow: 0;
	border-radius: 3px;
	background-color: var(--bg-dark-blue);
}

.sup-list .item:last-child::after {
	display: none;
}

.sup-list a {
	display: flex;
	align-items: center;
	text-align: right;
	gap: 2px;
	transition: color .2s;
}

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

.sup-list img {
	max-width: 24px;
	height: auto;
}

@media screen and (max-width: 640px) {
	.sup-list img {
		max-width: 18px;
	}
}

.header-holder {
	padding: 18px 0;
}

@media screen and (max-width: 991px) {
	.header-holder {
		padding: 24px 0;
	}
}

@media screen and (max-width: 640px) {
	.header-holder {
		padding: 13px 0;
		position: relative;
	}
}

.header-holder .wrapped {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.search-form {
	position: relative;
	max-width: 944px;
	width: 50vw;
	margin: 0 auto;
}

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

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

.search-form.show .form {
	box-shadow: 0 0 0 1px inset var(--bg-dark-blue);
}

.search-form.show .btn-search {
	color: var(--color-active);
}

.search-form.show .autocomplete {
	transform: scale(1) translate3d(-50%, 0, 0) rotateX(0);
	opacity: 1;
	visibility: visible;
}

.search-form .form {
	display: flex;
	border-radius: 32px;
	height: 44px;
	position: relative;
	background-color: var(--bg-black80);
}

.search-form .input {
	width: 100%;
	border: none;
	background: none;
	font-weight: 500;
	font-size: 12px;
	font-family: "Poppins", sans-serif;
	padding: 10px 0 10px 20px;
	color: var(--color-main);
}

.search-form .btn-search {
	color: var(--bg-white);
}

@media screen and (min-width: 1025px) {
	.search-form .btn-search:hover {
		color: var(--bg-dark-blue);
	}
}

.btn-search {
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	cursor: pointer;
	border: none;
	font-size: 24px;
	width: 60px;
	height: 44px;
	flex-grow: 0;
	flex-shrink: 0;
	color: var(--bg-white);
	transition: color .3s;
}

.search-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9;
	background-color: var(--bg-black);
	display: flex;
	flex-direction: column;
	gap: 24px;
	transform: translate3d(0, 100%, 0);
	opacity: 0;
	visibility: hidden;
	transition: transform .2s, opacity .2s, visibility .2s;
}

.search-modal .form {
	padding: 12px 16px;
	flex-shrink: 0;
	flex-grow: 0;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: box-shadow .3s;
}

.search-modal .form.focus .wrap {
	box-shadow: inset 0 0 0 1px var(--bg-dark-blue);
}

.search-modal .form.focus .btn-search {
	color: var(--bg-dark-blue);
}

.search-modal .wrap {
	flex-shrink: 1;
	flex-grow: 1;
	display: flex;
	border-radius: 32px;
	height: 44px;
	background-color: var(--bg-black80);
}

.search-modal .input {
	width: 100%;
	border: none;
	background: none;
	font-weight: 500;
	font-size: 12px;
	font-family: "Poppins", sans-serif;
	padding: 10px 0 10px 20px;
	color: var(--color-main);
}

.search-modal .btn-close {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--bg-black);
	border: none;
	color: var(--bg-white);
	font-size: 24px;
	cursor: pointer;
}

.search-autocomplete {
	padding: 0 16px;
	flex-shrink: 1;
	flex-grow: 1;
	position: relative;
}

.wrapped-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: auto;
}

.block-autocomplete,
.autocomplete .block {
	font-weight: 500;
	font-size: 12px;
	padding: 0 16px;
}

.block-autocomplete .item,
.autocomplete .block .item {
	padding: 8px 16px;
	line-height: 1.5;
	margin: 0 -16px;
	cursor: pointer;
}

.block-autocomplete .item:hover,
.autocomplete .block .item:hover {
	background-color: var(--bg-dark-blue);
	color: var(--bg-white);
}

.block-autocomplete .item:hover span,
.autocomplete .block .item:hover span {
	color: var(--bg-white);
}

.block-autocomplete span,
.autocomplete .block span {
	color: var(--bg-dark-blue);
}

.title-group {
	padding: 16px 0 8px;
	font-weight: 600;
	font-size: 16px;
}

.header-panel {
	display: flex;
	align-items: center;
	gap: 24px;
	font-size: 18px;
	font-weight: 500;
	flex-shrink: 0;
	flex-grow: 0;
}

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

.auth {
	display: flex;
	align-items: center;
	gap: 8px;
}

.auth-mobile {
	display: none;
	align-items: center;
	gap: 8px;
	margin: 16px 0 16px 0;
}

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

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

.auth-mobile .btn {
	font-size: 18px;
	justify-content: center;
	background-color: var(--bg-black);
}

.btn {
	padding: 8px 16px;
	line-height: 1.3335;
	border-radius: 32px;
	font-family: var(--default-font);
	display: flex;
	transition: background-color .3s, color .3s;
	cursor: pointer;
}

@media screen and (max-width: 991px) {
	.btn {
		font-size: 14px;
	}
}

.btn.secondary {
	background-color: var(--bg-dark-blue);
}

@media screen and (min-width: 1025px) {
	.btn:hover {
		background-color: var(--bg-dark-blue);
	}
	.btn:hover.secondary {
		background-color: var(--bg-white);
		color: var(--bg-dark-blue);
	}
}

.holder-navigation {
	min-height: 44px;
	display: flex;
}

@media screen and (max-width: 767px) {
	.holder-navigation {
		background-color: var(--bg-black80);
		position: absolute;
		z-index: 16;
		top: var(--height-header);
		left: 0;
		right: 0;
		display: none;
		height: calc(100svh - var(--height-header));
	}
}

.holder-scrolled {
	height: 100%;
}

@media screen and (max-width: 767px) {
	.holder-scrolled {
		overflow: auto;
		padding: 16px 0;
	}
}

.list-navigation {
	display: flex;
	justify-content: space-between;
	height: 100%;
	font-weight: 500;
	font-size: 18px;
}

@media screen and (max-width: 1180px) {
	.list-navigation {
		font-size: 14px;
	}
}

@media screen and (max-width: 767px) {
	.list-navigation {
		flex-direction: column;
		background-color: var(--bg-black);
		padding: 16px;
		border-radius: 32px;
		height: auto;
		font-size: 18px;
		gap: 16px;
	}
}

.list-navigation .active {
	pointer-events: none;
}

.list-navigation .active a {
	color: var(--bg-dark-blue);
}

@media screen and (max-width: 767px) {
	.list-navigation .active a {
		background-color: var(--bg-dark-blue);
		color: var(--color-main);
	}
}

.list-navigation .active a::after {
	transform: translate3d(0, 0, 0);
	opacity: 1;
	visibility: visible;
}

.list-navigation .item {
	text-transform: uppercase;
}

.list-navigation .item.second {
	display: none;
	justify-content: center;
	text-transform: capitalize;
}

@media screen and (max-width: 767px) {
	.list-navigation .item.second {
		display: flex;
	}
}

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

.list-navigation .item span {
	display: none;
}

@media screen and (max-width: 991px) {
	.list-navigation .item span {
		display: flex;
	}
}

.list-navigation a {
	display: flex;
	align-items: center;
	text-align: center;
	height: 100%;
	position: relative;
	padding: 4px 16px;
}

@media screen and (min-width: 1025px) {
	.list-navigation a:hover::after {
		transform: translate3d(0, 0, 0);
		opacity: 1;
		visibility: visible;
	}
}

@media screen and (max-width: 1180px) {
	.list-navigation a {
		padding: 4px;
	}
}

@media screen and (max-width: 767px) {
	.list-navigation a {
		justify-content: center;
		border-radius: 32px;
		padding: 9px 16px;
		line-height: 1.389;
	}
	.list-navigation a::after {
		display: none;
	}
}

.list-navigation a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background-color: var(--bg-dark-blue);
	transform: translate3d(0, 2px, 0);
	opacity: 0;
	visibility: hidden;
	transition: transform .3s, opacity .3s, visibility .3s;
}

.list-navigation svg {
	font-size: 24px;
}

@media screen and (max-width: 1180px) {
	.list-navigation svg {
		font-size: 18px;
	}
}

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

.user-box-mobile .avatar img,
.user-box .avatar img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	display: block;
}

.user-box-mobile i,
.user-box i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

.user-box-mobile .btn,
.user-box .btn {
	display: flex;
	align-items: center;
	cursor: pointer;
	gap: 4px;
	background-color: var(--bg-dark-blue);
	border-radius: 32px;
	padding: 8px 18px;
	border: none;
	font-weight: 500;
	color: var(--color-main);
	font-size: 15px;
}

@media screen and (min-width: 1025px) {
	.user-box-mobile .btn:hover,
	.user-box .btn:hover {
		background-color: var(--bg-dark-blue-active);
	}
}

.user-box-mobile .btn span:not(.avatar),
.user-box .btn span:not(.avatar) {
	font-size: 18px;
}

.user-box-mobile {
	display: none;
}

@media screen and (max-width: 767px) {
	.user-box-mobile {
		display: block;
		margin-top: 16px;
	}
}

.user-box-mobile .btn {
	width: 100%;
	justify-content: center;
	margin-bottom: 16px;
}

.user-box-mobile.show .user-hidden-mobile {
	display: flex;
}

.user-box-mobile.show .btn i svg {
	transform: rotate(180deg);
}

.user-box {
	position: relative;
}

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

.user-hidden .svg-icon {
	flex-shrink: 0;
	flex-grow: 0;
}

.user-box.show .btn {
	background-color: var(--bg-dark-blue);
}

.user-box.show .btn i svg {
	transform: rotate(180deg);
}

.user-box i svg {
	transition: transform .2s;
}

.user-hidden-mobile {
	display: none;
	padding: 16px 0;
	margin-bottom: 24px;
	border-radius: 32px;
	overflow: hidden;
	background: var(--bg-black);
	width: 100%;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.user-hidden-mobile a {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: center;
	gap: 8px;
	padding: 8px 16px;
	line-height: 1.3334;
	font-size: 18px;
	font-weight: 500;
	transition: background-color .2s;
}

.user-hidden-mobile a.active {
	background-color: var(--bg-dark-blue);
}

.user-hidden {
	position: absolute;
	z-index: 10;
	background: var(--bg-black);
	width: 100%;
	min-width: 225px;
	right: 0;
	border-radius: 0 0 8px 8px;
	top: calc(100% + 21px);
	max-height: 304px;
	overflow-y: auto;
	opacity: 0;
	transform: translate3d(0, -10%, 0);
	visibility: hidden;
	transition: opacity .2s, transform .2s, visibility .2s;
}

.user-hidden a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	transition: background-color .2s;
	white-space: nowrap;
}

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

.user-hidden a.active {
	background-color: var(--bg-dark-blue);
}

.autocomplete {
	position: absolute;
	z-index: 10;
	top: calc(100% + 13px);
	min-height: 54px;
	width: 100%;
	max-width: 93.856%;
	left: 50%;
	box-shadow: 0 4px 18px 0 rgba(23, 15, 41, 0.2);
	background: var(--bg-black);
	border-radius: 0 0 8px 8px;
	transform: scale(0.98) translate3d(-50%, 15px, 0) rotateX(25deg);
	opacity: 0;
	visibility: hidden;
	transform-origin: top;
	transition: transform .3s, opacity .3s, visibility .3s;
	overflow: hidden;
}

@media screen and (max-width: 991px) {
	.autocomplete {
		max-width: 100%;
	}
}

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

.autocomplete .holder {
	padding: 8px 0;
	max-height: 268px;
	height: 100%;
	overflow: auto;
}

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

.section {
	margin-bottom: 56px;
}

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

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

.headline {
	display: flex;
	justify-content: center;
	margin-bottom: 24px;
	gap: 24px 10px;
}

.headline.primary {
	gap: 24px 0;
}

@media screen and (max-width: 1024px) {
	.headline.primary::before {
		display: none;
	}
}

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

.headline.primary::before {
	content: "";
	flex: 1 1 0;
}

@media screen and (max-width: 1024px) {
	.headline.primary .title {
		text-align: start;
	}
}

@media screen and (max-width: 767px) {
	.headline.primary .title {
		text-align: center;
	}
}

@media screen and (max-width: 1024px) {
	.headline.second {
		flex-wrap: wrap;
	}
	.headline.second .title {
		text-align: start;
	}
}

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

@media screen and (max-width: 767px) {
	.headline.second .button {
		width: 100%;
	}
}

.headline.secondary {
	gap: 24px 0;
}

@media screen and (max-width: 1024px) {
	.headline.secondary::before {
		display: none;
	}
}

@media screen and (max-width: 991px) {
	.headline.secondary {
		display: none;
	}
}

.headline.secondary::before {
	content: "";
	flex: 1 1 0;
}

@media screen and (max-width: 1024px) {
	.headline.secondary .title {
		text-align: start;
	}
}

@media screen and (max-width: 767px) {
	.headline.secondary .title {
		text-align: center;
	}
}

@media screen and (max-width: 991px) {
	.headline.invisible {
		display: none;
	}
}

.headline .title {
	text-align: center;
	flex: 1 1 0;
	font-weight: 500;
	font-size: 32px;
}

.headline .wrap {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
	flex: 1 1 0;
}

@media screen and (max-width: 1024px) {
	.headline .wrap {
		flex-grow: 1;
		flex-shrink: 1;
		flex-basis: auto;
	}
}

@media screen and (max-width: 767px) {
	.headline .wrap {
		width: 100%;
		justify-content: center;
	}
}

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

.headline .wrap .box:first-child .sorting-hidden {
    min-width: 140px;
}

.headline .box .button {
	min-width: auto;
}

.sorting {
	position: relative;
}

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

.sorting.show .button {
	border-radius: 8px 8px 0 0;
	background-color: var(--bg-dark-blue);
}

.sorting.show .button svg {
	transform: rotate(180deg);
}

.sorting .button,
.link-more {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-weight: 500;
	font-size: 17px;
	border: none;
	padding: 7px 12px;
	min-width: 150px;
	line-height: 1.4445;
	border-radius: 32px;
	color: var(--color-main);
	transition: background-color .2s, border-radius .2s;
	background-color: var(--bg-black);
}

@media screen and (min-width: 1025px) {
	.sorting .button:hover,
	.link-more:hover {
		background-color: var(--bg-dark-blue);
	}
}

.sorting .button span,
.link-more span {
	font-size: 18px;
}

.sorting .button svg,
.link-more svg {
	flex-grow: 0;
	flex-shrink: 0;
	transition: transform .2s;
}

.link-more {
	padding: 7px 34px;
}

.wrap-link {
	line-height: 1.5298;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 32px;
}

.wrap-link .link-more {
	max-width: 320px;
	width: 100%;
}

@media screen and (max-width: 480px) {
	.wrap-link .link-more {
		max-width: 100%;
	}
}

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

.headline-second .title {
	line-height: 1.5;
	font-weight: 500;
	font-size: 32px;
}

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

.sorting-hidden a {
	text-align: center;
	font-weight: 500;
	font-size: 18px;
	display: flex;
	line-height: 1.4445;
	justify-content: center;
	padding: 7px 20px;
	transition: background-color .3s;
	white-space: pre-wrap;
}

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

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

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

.swiper-top a {
	display: flex;
	align-items: center;
	border-radius: 32px;
	padding: 10px 24px;
	background: var(--bg-black);
	font-weight: 600;
	font-size: 16px;
	color: var(--bg-black30);
	padding: 10px 20px;
	line-height: 1.143;
	transition: color .2s;
}

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

.swiper-top .swiper-top-prev,
.swiper-top .swiper-top-next {
	width: 64px;
	padding: 0 6px;
	color: var(--color-main);
	transition: color .2s;
	margin: 0;
	height: 100%;
	top: 0;
}

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

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

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

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

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

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

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

.main-flex,
.second-flex,
.model-flex {
	--flex-gap: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: var(--flex-gap);
}

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

.main-flex {
	--flex-items: 4;
}

.main-flex form {
	--flex-gap: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: var(--flex-gap);
	width: 100%;
}

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

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

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

.second-flex {
	--flex-items: 5;
}

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

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

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

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

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

@media screen and (max-width: 390px) {
	.second-flex.second {
		--flex-items: 1;
	}
}

.card .title,
.card-second .title {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.375;
}

.card .list,
.card-second .list,
.card-box .list {
	flex-grow: 0;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 20px;
}

.card .list li,
.card-second .list li,
.card-box .list li {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 500;
	position: relative;
}

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

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

.card .list li span,
.card-second .list li span,
.card-box .list li span {
	font-size: 12px;
}

.card .list li svg,
.card-second .list li svg,
.card-box .list li svg {
	flex-grow: 0;
	flex-shrink: 0;
	color: var(--bg-dark-blue);
}

.card-box {
	display: block;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}

.card-box .title {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 2px;
	transition: color .2s;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.375;
}

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

.card-box .title img {
	width: 12px;
	height: 12px;
	overflow: hidden;
	border-radius: 100%;
	flex-shrink: 0;
	flex-grow: 0;
}

.card-box .title span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.card-box .wrap {
	line-height: 1.5;
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: space-between;
	flex-wrap: wrap;
}

.card-box .media {
	display: block;
	position: relative;
	padding-bottom: 110.467%;
	overflow: hidden;
}

.model-card .media .no-image {
	position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #030303;
	font-size: 14px;
}

.card-box .media.primary {
	padding-bottom: 112.792%;
}

.card-box .name {
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 2px;
	font-weight: 500;
	font-size: 12px;
	color: var(--color-main);
	transition: color .2s;
}

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

.card-box .name span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.card-box .name svg {
	flex-grow: 0;
	flex-shrink: 0;
	color: var(--bg-dark-blue);
}

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

.card-box .list {
	color: var(--bg-black30);
}

.card-box .content {
	padding: 6px 8px 6px;
	background-color: var(--bg-black);
}

.card-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.card-list li {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 500;
	position: relative;
}

.card-list li:last-child svg {
	color: var(--bg-dark-blue);
}

.card-list svg {
	flex-grow: 0;
	flex-shrink: 0;
}

.card-list span {
	font-size: 12px;
}

.card {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
}

.card .title {
	transition: color .2s;
}

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

.card .media {
	display: block;
	position: relative;
	padding-bottom: 54.84%;
	overflow: hidden;
}

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

.card .premium {
	left: 8px;
	gap: 2px;
	font-size: 14px;
	font-weight: 500;
	backdrop-filter: blur(15px);
	border-radius: 16px;
	padding: 3px 8px;
	line-height: 1.5;
	background: rgba(var(--bg-rgb-blue), 0.6);
}

.card .premium span {
	font-size: 12px;
}

.card .group {
	right: 8px;
	gap: 4px;
}

.card .group,
.card .premium {
	position: absolute;
	bottom: 8px;
}

.card .duration,
.card .group,
.card .premium {
	display: flex;
	align-items: center;
}

.card .duration {
	font-weight: 500;
	font-size: 12px;
	color: var(--color-main);
	border-radius: 16px;
	padding: 3px 8px;
	line-height: 1.5;
	backdrop-filter: blur(15px);
	background: rgba(var(--bg-rgb-dark), 0.7);
}

.card .quality {
	font-weight: 600;
	font-size: 14px;
	letter-spacing: .02em;
	color: var(--color-main);
	background-color: var(--bg-dark-blue);
	text-transform: uppercase;
	line-height: 1.429;
	border-radius: 16px;
	padding: 2px 8px;
}

.card .content {
	padding: 4px 8px 6px;
	background-color: var(--bg-black);
}

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

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

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

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

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

.card .name {
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 4px;
	font-weight: 500;
	font-size: 12px;
	color: var(--bg-black30);
	transition: color .2s;
}

.card .name span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.card .name svg {
	flex-grow: 0;
	flex-shrink: 0;
	color: var(--bg-dark-blue);
}

.card li {
	color: var(--bg-black30);
}

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

.wrap-playlist {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	height: 100%;
	z-index: 2;
	width: 44px;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	font-weight: 500;
	font-size: 20px;
	backdrop-filter: blur(4px);
	background: rgba(var(--bg-rgb-dark), 0.5);
}

.wrap-playlist svg {
	padding: 3px 2px 3px 3px;
	border: 1px solid var(--bg-white);
	border-radius: 22px;
}

.wrap-playlist span {
	font-size: 12px;
}

.card-second {
	display: block;
	position: relative;
	padding-bottom: 54.84%;
	overflow: hidden;
	border-radius: 8px;
}

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

.card-second .title {
	transition: color .2s;
}

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

.card-second .content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	padding: 3px 8px;
	min-height: 32px;
	backdrop-filter: blur(4px);
	background: rgba(var(--bg-rgb-dark), 0.7);
}

.card-second .cols {
	line-height: 1.3334;
	margin-top: 3px;
	gap: 5px;
	display: flex;
	align-items: center;
	overflow: hidden;
	color: var(--color-main);
	justify-content: space-between;
}

.card-second .col {
	overflow: hidden;
}

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

.count-video {
	display: flex;
	align-items: center;
	gap: 5px;
	font-weight: 500;
	font-size: 14px;
}

.count-video span {
	font-size: 12px;
}

.desc-box {
	line-height: 1.6;
	font-weight: 600;
	font-size: 16px;
	text-align: center;
	color: var(--bg-black30);
}

@media screen and (max-width: 767px) {
	.desc-box {
		font-weight: 400;
	}
}

.adv-box {
	background-color: var(--bg-black);
	border-radius: 8px;
	padding: 16px 20px 24px;
}

.adv-box .spot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.adv-box .item {
	border-radius: 10px;
	overflow: hidden;
}

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

.adv-box .text {
	margin-bottom: 14px;
	font-weight: 600;
	font-size: 16px;
	text-align: center;
}

.model-flex {
	--flex-items: 10;
}

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

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

@media screen and (max-width: 1024px) {
	.model-flex {
		--flex-items: 7;
	}
}

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

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

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

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

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

.model-card {
	text-align: center;
	display: block;
	max-width: 100%;
	margin: 0 auto;
	color: var(--color-main);
	transition: color .2s;
}

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

.model-card .media {
	width: 100%;
	height: 100%;
	display: flex;
	font-size: 54px;
	background: var(--bg-black);
	color: var(--bg-black30);
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: relative;
	padding-bottom: 100%;
	border-radius: 100%;
}

.model-card .media .svg-icon {
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

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

.model-card .no-image {
	top: auto;
	bottom: 0;
	max-width: 100%;
	width: auto;
	height: auto;
	margin: 0 auto;
}

.model-card .content {
	margin-top: 4px;
}

.model-card .name {
	line-height: 1.25;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	font-weight: 600;
	font-size: 12px;
	transition: color .2s;
}

.model-card .name span, .model-card .name a {
	font-size: 16px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.model-card .name a {
	transition: color .2s;
}

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

.model-card .name svg {
	flex-grow: 0;
	flex-shrink: 0;
	color: var(--bg-dark-blue);
}

.model-card .info {
	font-weight: 500;
	font-size: 12px;
	color: var(--bg-black30);
	margin-top: 2px;
}

.model-card .checkbox-label {
	flex-grow: 0;
	flex-shrink: 0;
}

.model-card .checkbox {
	background: rgba(255, 255, 255, 0.12);
}

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

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

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

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

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

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

.pagination-list .list .item.active a,
.pagination-list .list .item.active span {
	pointer-events: none;
	color: var(--color-main);
	background-color: var(--bg-dark-blue);
}

.pagination-list a,
.pagination-list span {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	height: 40px;
	min-width: 40px;
	border-radius: 100%;
	background: var(--bg-black);
	color: var(--color-second);
	font-weight: 400;
	font-size: 14px;
	line-height: 143%;
	letter-spacing: 0.02em;
	overflow: hidden;
	transition: color .3s, background .3s;
}

.pagination-list .last a,
.pagination-list .first a,
.pagination-list .last span,
.pagination-list .first span {
	padding: 20px;
    height: 40px;
    border-radius: 50px;
}

.pagination-list .item.pager span {
	border-radius: 32px;
    padding: 0px 16px;
}

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

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

.pagination-list .item.pager a {
	border-radius: 32px;
	padding: 0px 16px;
	color: var(--color-main);
	background-color: var(--bg-black);
	font-weight: 500;
	font-size: 18px;
}

@media screen and (min-width: 1025px) {
	.pagination-list .item.pager a:hover {
		background-color: var(--bg-dark-blue);
	}
}

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

@media screen and (max-width: 991px) {
	.pagination-list .item.pager:first-child {
		margin-right: 16px;
	}
}

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

@media screen and (max-width: 991px) {
	.pagination-list .item.pager:last-child {
		margin-left: 16px;
	}
}

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

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

.second-list,
.tags-list {
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size: 16px;
	gap: 8px;
}

.second-list a,
.tags-list a {
	line-height: 1.5;
	color: var(--bg-black30);
	display: flex;
	align-items: center;
	padding: 8px 24px;
	border-radius: 32px;
	background-color: var(--bg-black);
	transition: color .2s, background-color .2s;
}

@media screen and (min-width: 1025px) {
	.second-list a:hover,
	.tags-list a:hover {
		color: var(--color-main);
		background-color: var(--bg-dark-blue);
	}
}

.second-list {
	white-space: nowrap;
	overflow: hidden;
	overflow-x: auto;
	margin: 0 -16px 16px;
	padding: 0 16px;
}

.second-list::-webkit-scrollbar {
	display: none;
}

.tags-list {
	flex-wrap: wrap;
	justify-content: center;
}

.section-search {
	flex: 1 1 0;
}

@media screen and (max-width: 1024px) {
	.section-search {
		width: 100%;
		flex-basis: auto;
		order: 1;
	}
}

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

.section-search .form {
	max-width: 356px;
	width: 100%;
	display: flex;
	border-radius: 32px;
	height: 44px;
	position: relative;
	background-color: var(--bg-black);
}

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

.section-search .input {
	width: 100%;
	border: none;
	background: none;
	font-weight: 500;
	font-size: 12px;
	font-family: "Poppins", sans-serif;
	padding: 10px 0 10px 20px;
	color: var(--color-main);
}

.section-search .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	cursor: pointer;
	border: none;
	font-size: 24px;
	width: 60px;
	height: 44px;
	flex-grow: 0;
	flex-shrink: 0;
	color: var(--bg-white);
	transition: color .2s;
}

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

[data-attr-aside-grid] {
	--gap: 40px;
	padding-left: calc(var(--width-general-aside) + var(--gap));
}

.general-wrapper {
	display: flex;
	gap: 16px 40px;
}

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

@media screen and (max-width: 1460px) {
	.general-wrapper .main-flex {
		--flex-items: 3;
	}
}

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

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

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

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

@media screen and (max-width: 480px) {
	.general-wrapper .main-flex.second {
		--flex-items: 2;
	}
}

.general-wrapper .model-flex {
	--flex-items: 8;
}

@media screen and (max-width: 1640px) {
	.general-wrapper .model-flex {
		--flex-items: 7;
	}
}

@media screen and (max-width: 1460px) {
	.general-wrapper .model-flex {
		--flex-items: 6;
	}
}

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

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

@media screen and (max-width: 991px) {
	.general-wrapper .model-flex {
		--flex-items: 5;
	}
}

@media screen and (max-width: 767px) {
	.general-wrapper .model-flex {
		--flex-items: 4;
	}
}

@media screen and (max-width: 640px) {
	.general-wrapper .model-flex {
		--flex-items: 3;
	}
}

@media screen and (max-width: 480px) {
	.general-wrapper .model-flex {
		--flex-items: 2;
	}
}

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

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

.general-aside {
	flex-grow: 0;
	flex-shrink: 0;
	width: var(--width-general-aside);
}

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

.general-aside .row {
	margin-bottom: 24px;
}

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

.general-aside .list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px 20px;
}

.general-aside .list li {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 20px;
	font-weight: 500;
	color: var(--bg-black30);
}

.general-aside .list span {
	font-size: 12px;
}

.general-aside .group {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 16px;
}

.general-aside .desc {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.43;
	letter-spacing: .02em;
	text-align: center;
	color: var(--color-second);
}

.general-aside .name {
	text-align: center;
	font-weight: 500;
	font-size: 21px;
}

.general-aside .name .title {
	font-size: 32px;
}

.general-aside .name svg {
	vertical-align: baseline;
	color: var(--color-active);
}

.general-aside .name img {
	border-radius: 100%;
	width: 24px;
	height: 24px;
	-o-object-fit: cover;
	   object-fit: cover;
	display: inline-block;
	vertical-align: text-top;
}

.general-aside .counter {
	font-weight: 500;
	font-size: 12px;
	text-align: center;
}

.general-aside .counter span {
	color: var(--bg-black30);
}

.general-aside .btns {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 4px 0;
}

@media screen and (max-width: 991px) {
	.general-aside .btns {
		flex-direction: row;
		white-space: nowrap;
		overflow: auto;
		padding: 4px 16px;
		margin: 0 -16px;
	}
	.general-aside .btns::-webkit-scrollbar {
		display: none;
	}
}

.general-aside .button {
	cursor: pointer;
	border: none;
	line-height: 1.3334;
	justify-content: center;
	width: 100%;
	font-weight: 500;
	border-radius: 32px;
	padding: 8px 16px;
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 24px;
	background-color: var(--bg-black);
	transition: background-color .3s;
}

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

.general-aside .button.active {
	background-color: var(--color-active);
}

.general-aside .button span {
	font-size: 18px;
}

.about-list {
	font-weight: 500;
	font-size: 12px;
	text-align: center;
	line-height: 1.5;
}

.about-list span {
	color: var(--bg-black30);
}

.about-list li {
	margin-bottom: 4px;
}

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

.list-second {
	margin-top: 8px;
	font-weight: 500;
	font-size: 12px;
	color: var(--color-second);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	line-height: 1.5;
	gap: 14px;
}

.list-second li {
	position: relative;
}

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

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

.image-aside {
	max-width: 320px;
	width: 100%;
	margin: 0 auto;
}

@media screen and (max-width: 480px) {
	.image-aside {
		max-width: 100%;
	}
}

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

.image-aside .wrap {
	padding-bottom: 60%;
	overflow: hidden;
	border-radius: 8px;
	position: relative;
}

.image-aside .wrap.large {
	padding-bottom: 153%;
}

.image-aside .wrap.portrait {
	padding-bottom: 100%;
	border-radius: 100%;
}

.social-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.social-list a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	border-radius: 100%;
	overflow: hidden;
	width: 48px;
	height: 48px;
	transition: background-color .2s;
}

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

.link-subsc,
.btn-token {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.3;
	border-radius: 32px;
	gap: 4px;
	padding: 8px 16px;
	cursor: pointer;
	border: none;
	width: 100%;
	transition: background-color .2s, color .2s;
}

.link-subsc {
	font-size: 24px;
	background-color: var(--bg-dark-blue);
}

@media screen and (min-width: 1025px) {
	.link-subsc:hover {
		background-color: var(--bg-dark-blue-active);
	}
}

.link-subsc span {
	font-size: 18px;
}

.link-subsc.active {
	background-color: var(--bg-dark-blue-active);
}

.btn-token {
	font-size: 18px;
	background-color: var(--bg-black);
	color: var(--color-active);
}

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

.btn-token img {
	max-width: 24px;
	height: auto;
	display: inline-block;
	vertical-align: top;
}

.reaction-box {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 16px;
	gap: 16px;
}

.reaction-box .btn {
	display: flex;
	cursor: pointer;
	align-items: center;
	font-weight: 500;
	font-size: 24px;
	border: none;
	gap: 4px;
	min-width: 93px;
	color: var(--color-main);
	background-color: var(--bg-black);
	transition: background-color .3s;
}

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

.reaction-box .btn.active {
	background-color: var(--bg-dark-blue);
}

.reaction-box .btn span {
	font-size: 18px;
}

.content-field {
	flex-grow: 1;
	flex-shrink: 1;
}

.content-field .headline[data-attr-visibility] {
	display: none;
}

@media screen and (max-width: 991px) {
	.content-field .headline[data-attr-visibility] {
		display: flex;
	}
}

.wrap-edit-btn {
	margin-top: 16px;
}

.token-balance {
	max-width: 210px;
	margin: 16px auto 0;
	position: relative;
}

.token-balance.is-open .tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

@media screen and (max-width: 991px) {
	.token-balance.is-open .tooltip {
		transform: translate3d(-50%, 0, 0);
	}
}

.token-balance.is-open .btn-tooltip {
	color: var(--color-active);
}

.token-balance .wrapped {
	line-height: 1.5;
	justify-content: center;
	color: var(--bg-dark-blue);
	display: flex;
	align-items: center;
	position: relative;
	gap: 8px;
}

.token-balance svg {
	flex-shrink: 0;
	flex-grow: 0;
}

.tooltip {
	position: absolute;
	top: -2px;
	right: calc(-100% + 30px);
	width: 172px;
	padding: 16px;
	font-weight: 500;
	font-size: 12px;
	border-radius: 8px;
	border: 1px solid var(--bg-black);
	backdrop-filter: blur(10px);
	background: var(--bg-black80);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-5px);
	transition: transform .2s, opacity .2s, visibility .2s;
	text-align: center;
}

@media screen and (max-width: 991px) {
	.tooltip {
		top: calc(100% + 10px);
		right: auto;
		left: 50%;
		transform: translate3d(0, 0, 0);
	}
}

.tooltip-title {
	color: var(--color-main);
	text-align: center;
	line-height: 1.5;
	margin-bottom: 8px;
}

.tooltip-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}

.tooltip-group li {
	display: flex;
	align-items: center;
	gap: 4px;
	color: var(--color-active);
}

.tooltip-group img {
	max-width: 12px;
	height: auto;
	display: inline-block;
	vertical-align: middle;
	flex-grow: 0;
	flex-shrink: 0;
}

.btn-tooltip {
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	background: none;
	color: var(--color-main);
	cursor: pointer;
	transition: color .2s;
}

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

.section-row {
	margin-bottom: 56px;
}

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

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

.nano {
	height: 100%;
}

.nano.focus .nano-pane {
	background: rgba(255, 255, 255, 0.08);
}

.nano.focus > .nano-pane > .nano-slider {
	background: rgba(255, 255, 255, 0.5);
}

.nano .nano-pane {
	background: rgba(255, 255, 255, 0.06);
	width: 8px;
	right: 0;
	z-index: 10;
	margin: 24px 0;
	transition: background .3s;
}

.sorting .nano .nano-pane {
	width: 4px;
}

.nano > .nano-pane > .nano-slider {
	background: rgba(255, 255, 255, 0.22);
	transition: background .3s;
	margin: 0;
}

.alphabet {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

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

@media screen and (max-width: 390px) {
	.alphabet {
		padding: 0;
	}
}

.alphabet li.active span, .alphabet li.active a {
	background: var(--color-active);
}

.alphabet a, .alphabet span {
	font-weight: 500;
	font-size: 18px;
	display: flex;
	justify-content: center;
	background-color: var(--bg-black);
	color: var(--color-main);
	border-radius: 100%;
	overflow: hidden;
	padding: 8px 5px;
	line-height: 1.5;
	min-width: 40px;
}

.alphabet a.active, .alphabet span.active {
	background: var(--color-active);
	pointer-events: none;
}

.alphabet a {
	transition: background .3s;
}

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

.tags-wrap {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 16px;
	gap: 8px 32px;
}

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

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

.letter-wrap {
	width: 100%;
}

.tags-letter {
	display: flex;
	align-items: center;
	border-radius: 8px;
	padding: 6px 5px;
	font-weight: 500;
	font-size: 20px;
	background: var(--bg-black);
}

.tags-link {
	line-height: 1.5;
	display: inline-block;
	vertical-align: middle;
	padding: 8px 0;
	font-weight: 600;
	font-size: 16px;
	color: var(--color-main);
	transition: color .2s;
}

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

.tags-link span {
	color: var(--bg-black30);
	transition: color .2s;
}

.wrap-checkbox {
	position: absolute;
	right: 8px;
	top: 8px;
	z-index: 2;
}

.checkbox-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.checkbox-label .checkbox {
	display: inline-flex;
	vertical-align: top;
	position: relative;
	flex-shrink: 0;
	flex-grow: 0;
	width: 24px;
	border: 0.094em solid rgba(var(--border-rgb-color), 0.65);
	transition: background .2s, border .2s;
	height: 24px;
	border-radius: 8px;
}

.checkbox-label .checkbox::after {
	content: "";
	position: absolute;
	opacity: 0;
	transition: opacity .2s;
	width: 13px;
	height: 13px;
	background-image: url('data:image/svg+xml,<svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.8383 13C4.41459 13 4.0133 12.8115 3.75615 12.4865L0.275947 8.10226C0.168101 7.96695 0.0893379 7.81268 0.0441773 7.64829C-0.00098324 7.48389 -0.0116524 7.31261 0.0127817 7.14428C0.0372158 6.97594 0.0962722 6.81387 0.186563 6.66734C0.276853 6.52082 0.396601 6.39274 0.538935 6.29045C0.680907 6.18733 0.842861 6.112 1.01548 6.06878C1.1881 6.02557 1.36798 6.01531 1.54477 6.03862C1.72156 6.06192 1.89177 6.11832 2.04562 6.20457C2.19947 6.29082 2.33391 6.40522 2.44121 6.54118L4.73115 9.42374L10.4886 0.608915C10.6796 0.317874 10.9838 0.110919 11.3346 0.033448C11.6853 -0.0440234 12.054 0.0143136 12.3597 0.195663C12.9958 0.572698 13.1916 1.37134 12.7942 1.97869L5.99155 12.3889C5.87542 12.5674 5.71536 12.7162 5.52525 12.8224C5.33515 12.9286 5.12074 12.9889 4.90063 12.9981L4.8383 13Z" fill="white"/></svg>');
	background-position: center;
	background-repeat: no-repeat;
	left: 50%;
	top: 50%;
	transform: translate3d(-50%, -50%, 0);
}

.checkbox-label span:not(.checkbox) {
	font-weight: 500;
	font-size: 12px;
	color: var(--color-main);
}

.checkbox-input {
	display: none!important;
}

.checkbox-input:checked + .checkbox {
	background-color: var(--bg-pink);
	border-color: var(--bg-pink);
}

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

.bottom-tools {
	margin-top: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.bottom-tools .btn {
	color: var(--color-main);
	border: none;
	cursor: pointer;
	font-weight: 500;
	justify-content: center;
	font-size: 18px;
	background-color: var(--bg-black);
	transition: background-color .2s;
}

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

@media screen and (max-width: 767px) {
	.bottom-tools .btn {
		width: 100%;
		padding: 8px;
	}
}

@media screen and (max-width: 390px) {
	.bottom-tools .btn {
		font-size: 14px;
	}
}

@media screen and (max-width: 767px) {
	.bottom-tools .item {
		width: 50%;
	}
}

.comments-list {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 16px;
}

.comments-card {
	display: flex;
	align-items: flex-start;
	gap: 4px;
	transition: color .3s;
}

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

.comments-card .avatar {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	overflow: hidden;
	background-color: var(--bg-black);
	flex-grow: 0;
	flex-shrink: 0;
	width: 32px;
	height: 32px;
}

.comments-card .avatar img:not(.no-image) {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.comments-card .content {
	flex-shrink: 1;
	flex-grow: 1;
}

.comments-card .no-image {
    position: absolute;
    bottom: 15px;
    max-width: 23px;
    width: 100%;
    height: auto;
    font-size: 7px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.comments-card .group {
	display: flex;
	align-items: center;
	gap: 4px;
	line-height: 1.5;
}

.comments-card .name {
	font-weight: 500;
	font-size: 12px;
}

.comments-card .date {
	font-weight: 500;
	font-size: 12px;
	color: var(--color-second);
}

.comments-card .comment {
	width: 100%;
	max-width: 335px;
	margin-top: 2px;
	background-color: var(--bg-black);
	border-radius: 0 8px 8px 8px;
	padding: 11px 16px;
	font-weight: 500;
	font-size: 12px;
	line-height: 1.5;
	color: var(--bg-black30);
}

.comments-card .comment span {
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
}

.general-filter {
	margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
	.general-filter {
		margin-bottom: 32px;
	}
}

.wrap-cols {
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	justify-content: center;
	margin: -12px;
}

@media screen and (max-width: 767px) {
	.wrap-cols {
		justify-content: flex-start;
		margin: -4px -8px;
	}
}

.wrap-cols label:not(.checkbox-label) {
	display: block;
}

.wrap-cols .col {
	padding: 12px;
	width: 17.6%;
}

@media screen and (max-width: 1660px) {
	.wrap-cols .col {
		width: 25%;
	}
}

@media screen and (max-width: 1366px) {
	.wrap-cols .col {
		width: 33.3333%;
	}
}

@media screen and (max-width: 991px) {
	.wrap-cols .col {
		width: 50%;
	}
}

@media screen and (max-width: 767px) {
	.wrap-cols .col {
		width: 100%;
		padding: 4px 8px;
	}
}

.wrap-cols .col.primary {
	width: 13.6%;
}

@media screen and (max-width: 1660px) {
	.wrap-cols .col.primary {
		width: 25%;
	}
}

@media screen and (max-width: 1366px) {
	.wrap-cols .col.primary {
		width: 33.3333%;
	}
}

@media screen and (max-width: 991px) {
	.wrap-cols .col.primary {
		width: 50%;
	}
}

@media screen and (max-width: 767px) {
	.wrap-cols .col.primary {
		width: 100%;
	}
}

.wrap-cols .col.secondary {
	width: 9.2%;
}

@media screen and (max-width: 1660px) {
	.wrap-cols .col.secondary {
		width: 15%;
	}
}

@media screen and (max-width: 1366px) {
	.wrap-cols .col.secondary {
		width: 20%;
	}
}

@media screen and (max-width: 767px) {
	.wrap-cols .col.secondary {
		width: 50%;
		order: 1;
	}
}

.wrap-cols .col.second {
	flex-grow: 1;
	flex-shrink: 1;
	width: auto;
}

.wrap-cols .group {
	display: flex;
	align-items: center;
	gap: 10px;
}

.wrap-cols .item {
	width: 50%;
}

.wrap-cols .name {
	display: block;
	padding: 4px 16px;
	line-height: 1.5;
	font-weight: 500;
	font-size: 12px;
	color: var(--color-main);
}

.wrap-cols .checkbox {
	border-color: var(--bg-black30);
}

.wrap-cols .input {
	border: 1px solid var(--bg-black30);
	border-radius: 32px;
	width: 100%;
	background: none;
	color: var(--color-main);
	font-weight: 500;
	font-size: 12px;
	padding: 8px 16px;
	height: 40px;
}

.btn-submit {
	border: none;
	cursor: pointer;
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 16px;
	line-height: 1.4445;
	height: 100%;
	width: 100%;
	font-weight: 500;
	font-size: 18px;
	border-radius: 32px;
	background-color: var(--color-active);
	color: var(--color-main);
	transition: background-color .3s;
}

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

.btn-submit > * {
	position: relative;
	z-index: 2;
}

select {
	display: none;
}

.select2-container--default .select2-selection--single {
	border-radius: 20px;
	height: 40px;
	display: flex;
	align-items: center;
	font-family: inherit;
	background: none;
	font-weight: 500;
	font-size: 12px;
	border: 1px solid var(--bg-black30);
}

.select2-selection__arrow::before {
	background-image: url("../images/down-arrow.svg");
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 12px;
	left: -12px;
	position: absolute;
	width: 12px;
	transition: transform .3s;
}

.modal-content .select2-selection__arrow::before {
	left: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 100%;
	position: absolute;
	right: 16px;
	width: 12px;
	display: flex;
	align-items: center;
}

.select2-container--open .select2-selection__arrow::before {
	transform: rotate(180deg);
}

.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 30px 0 16px;
}

.select2-results__option--selectable {
	color: var(--color-main);
	background-color: var(--bg-black);
	height: 40px;
	padding: 0 16px;
	display: flex;
	align-items: center;
}

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

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: var(--color-active);
	color: var(--color-main);
}

.select2-dropdown {
	top: 10px;
	background-color: var(--color-main);
	box-shadow: inset var(--box-shadow-tools);
	border-radius: 20px 0 20px 20px;
	overflow: hidden;
	border: none;
	font-family: inherit;
	font-size: 16px;
}

.select2-search--dropdown {
	background-color: var(--bg-black);
}

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

.select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: var(--bg-black30);
}

.select2-results__option {
	color: var(--color-main);
	background: var(--bg-black);
	padding: 10px 16px;
}

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

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

.twocolumns .column.second {
	padding: 24px;
	flex-grow: 0;
	flex-shrink: 0;
	background: var(--bg-black);
	border-radius: 8px;
	overflow: hidden;
	width: 348px;
	text-align: center;
}

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

.twocolumns .text {
	font-weight: 300;
	font-size: 12px;
	line-height: 1.6;
	letter-spacing: .2em;
	color: var(--color-second);
	margin-bottom: 16px;
}

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

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

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

@media screen and (max-width: 480px) {
	.gallery-flex {
		--flex-items: 2;
	}
}

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

.gallery-card {
	display: block;
	position: relative;
	padding-bottom: 142.25%;
	border-radius: 8px;
	overflow: hidden;
}

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

.author-block {
	margin-top: 16px;
}

.author-block .title {
	font-size: 20px;
	margin-bottom: 8px;
}

.author-box {
	display: flex;
	align-items: center;
	gap: 8px 16px;
	border-radius: 8px;
	padding: 16px;
	background-color: var(--bg-black);
}

@media screen and (max-width: 767px) {
	.author-box {
		flex-direction: column;
		padding: 16px 8px;
	}
}

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

.author-box .avatar .no-thumb {
    text-align: center;
    font-size: 14px;
}

.author-box .avatar img {
	width: 100%;
	height: 100%;
	max-width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	display: inline-block;
	vertical-align: middle;
}

.author-box .content {
	flex-shrink: 1;
	flex-grow: 1;
	min-width: 1px;
}

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

.author-box .wrapped {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: space-between;
}

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

.author-box .tools {
	flex-shrink: 0;
	flex-grow: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

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

@media screen and (max-width: 390px) {
	.author-box .tools {
		flex-direction: column;
	}
}

@media screen and (max-width: 767px) {
	.author-box .tools .item {
		width: 50%;
	}
}

@media screen and (max-width: 390px) {
	.author-box .tools .item {
		width: 100%;
	}
}

.author-box .btn-token,
.author-box .link-subsc {
	width: auto;
}

.author-box .name {
	overflow: hidden;
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size: 12px;
	gap: 4px;
	transition: color .2s;
}

.author-box .name span {
	font-size: 16px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 250px;
}

.author-box .name svg {
	flex-grow: 0;
	flex-grow: 0;
	color: var(--color-active);
}

.author-box .list {
	margin-top: 16px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
}

@media screen and (max-width: 767px) {
	.author-box .list {
		justify-content: center;
	}
}

.author-box .list span {
	font-size: 16px;
}

.author-box .list li {
	line-height: 1.5;
	display: flex;
	align-items: center;
	gap: 4px;
	border-radius: 8px;
	color: var(--bg-black30);
	padding: 8px;
	backdrop-filter: blur(15px);
	background: rgba(var(--bg-rgb-dark), 0.7);
}

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

.aside-spot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	flex-direction: column;
	gap: 16px;
}

.aside-spot .item {
	border-radius: 8px;
	overflow: hidden;
}

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

.adv-block {
	margin-top: 18px;
	background-color: var(--bg-black);
	border-radius: 8px;
	padding: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (max-width: 480px) {
	.adv-block {
		display: none;
	}
}

.adv-block img {
	width: auto;
	height: auto;
	max-width: 100%;
	display: inline-block;
	vertical-align: middle;
}

.adv-block .wrap {
	border-radius: 8px;
	overflow: hidden;
	display: block;
}

.list-sort {
	display: flex;
	background: var(--bg-black);
	border-radius: 32px;
	padding: 4px;
	max-width: 704px;
	gap: 16px;
	margin-bottom: 24px;
}

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

.list-sort li {
	width: 50%;
}

.list-sort li.active .link {
	background-color: var(--color-active);
}

.list-sort .link {
	display: block;
	text-align: center;
	font-weight: 500;
	font-size: 18px;
	border-radius: 32px;
	color: var(--color-main);
	padding: 7px;
	line-height: 1.4445;
	cursor: pointer;
	border: none;
	transition: background .2s ease, color .2s ease;
}

.list-sort span.link {
	background-color: var(--color-active);
}

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

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

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

.tools-panel {
	display: flex;
	align-items: center;
	margin-top: 16px;
	gap: 16px 8px;
	flex-wrap: wrap;
}

.tools-panel .link {
	display: inline-flex;
	vertical-align: middle;
	justify-content: center;
	gap: 4px;
	line-height: 1.2;
	border-radius: 32px;
	background-color: var(--bg-black);
	color: var(--color-main);
	font-size: 24px;
	padding: 8px 16px;
	font-weight: 500;
	padding: 8px 16px;
	transition: background-color .3s;
}

@media screen and (min-width: 1025px) {
	.tools-panel .link:hover {
		background-color: var(--bg-dark-blue);
	}
}

@media screen and (max-width: 390px) {
	.tools-panel .link {
		padding: 8px;
	}
}

.tools-panel .link.active {
	background-color: var(--bg-dark-blue);
}

.tools-panel .link.second {
	padding: 8px;
}

.tools-panel .link span, .tools-panel .link em {
	font-size: 18px;
}

@media screen and (max-width: 390px) {
	.tools-panel .link span, .tools-panel .link em {
		display: none;
	}
}

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

.tools-panel .link svg {
	flex-shrink: 0;
	flex-grow: 0;
}

.tools-panel .group {
	display: flex;
	align-items: center;
	gap: 8px;
}

@media screen and (max-width: 767px) {
	.tools-panel .group {
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.tools-panel .group .item {
		width: 50%;
	}
}

@media screen and (max-width: 767px) {
	.tools-panel .group .link {
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.tools-panel .item.second {
		order: -1;
	}
}

.tools-panel .item.primary {
	margin-left: 8px;
}

@media screen and (max-width: 767px) {
	.tools-panel .item.primary {
		margin-left: 0;
		order: -1;
	}
}

.reaction-group {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	flex-grow: 1;
	flex-shrink: 1;
}

@media screen and (max-width: 767px) {
	.reaction-group {
		order: -2;
		justify-content: flex-start;
	}
}

.button-submit,
.btn-second {
	width: 100%;
	cursor: pointer;
	border: none;
	border-radius: 32px;
	padding: 10px 16px;
	line-height: 1.1112;
	font-weight: 500;
	font-size: 18px;
	color: var(--color-main);
	transition: background-color .3s;
}

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

.button-submit {
	background-color: var(--color-active);
}

.btn-second {
	background-color: var(--bg-black);
}

.columns-upload {
	display: flex;
	gap: 24px 110px;
}

@media screen and (max-width: 1340px) {
	.columns-upload {
		gap: 24px 50px;
	}
}

@media screen and (max-width: 1160px) {
	.columns-upload {
		flex-direction: column;
	}
}

.columns-upload .col {
	width: 50%;
}

@media screen and (max-width: 1160px) {
	.columns-upload .col {
		width: 100%;
	}
}

.file-field {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--bg-black30);
	border-radius: 28px;
	padding: 8px;
	cursor: pointer;
	position: relative;
	width: 100%;
	margin-bottom: 24px;
}

@media screen and (max-width: 991px) {
	.file-field {
		margin-bottom: 16px;
	}
}

.file-input {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}

.file-btn {
	flex-shrink: 0;
	background: var(--bg-black30);
	color: #000;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.35;
	font-family: inherit;
	padding: 8px 16px;
	border-radius: 20px;
}

.file-hint {
	font-weight: 500;
	font-size: 12px;
	color: var(--bg-black30);
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.btn-continue {
	display: inline-flex;
	justify-content: center;
	gap: 4px;
	border: none;
	border-radius: 20px;
	padding: 8px 16px;
	background: #3772e0;
	color: #fff;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.3334;
	cursor: pointer;
	overflow: hidden;
	font-family: inherit;
	transition: background .3s, color .3s;
}

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

@media screen and (max-width: 991px) {
	.btn-continue {
		width: 100%;
	}
}

@keyframes arrow-move {
	0% {
		transform: translateX(0);
		opacity: 0.4;
	}
	50% {
		transform: translateX(4px);
		opacity: 1;
	}
	100% {
		transform: translateX(0);
		opacity: 0.4;
	}
}

.rule-wrapped {
	max-width: 560px;
	width: 100%;
	margin: 0 0 0 auto;
}

@media screen and (max-width: 1160px) {
	.rule-wrapped {
		max-width: 100%;
	}
}

.form-title {
	font-weight: 500;
	font-size: 20px;
	margin-bottom: 16px;
	line-height: 1.5;
}

.rule-text {
	line-height: 1.5;
	font-weight: 600;
	font-size: 16px;
	color: var(--bg-black30);
}

.table {
	width: 100%;
	border-collapse: collapse;
	color: var(--color-main);
	font-weight: 600;
	font-size: 16px;
	table-layout: fixed;
}

.table th {
	padding: 8px 8px 20px;
	font-weight: 700;
	font-size: 16px;
}

.table td {
	color: var(--bg-black30);
	padding: 8px;
}

.table th,
.table td {
	text-align: left;
}

.table th:first-child,
.table td:first-child {
	padding-left: 0;
}

.table th:last-child,
.table td:last-child {
	padding-right: 0;
}

.footer {
	background-color: var(--bg-black);
	flex-shrink: 0;
	flex-grow: 0;
	padding: 24px 0;
	font-weight: 500;
	font-size: 12px;
	margin-top: 56px;
}

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

.footer .holder {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.logo-footer {
	display: flex;
	justify-content: center;
}

.footer-navigation {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 28px 48px;
	font-weight: 500;
	font-size: 18px;
}

.footer-navigation a {
	transition: color .2s;
}

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

.copy {
	display: flex;
	justify-content: center;
	color: var(--bg-black30);
}

.footer-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px 50px;
	max-width: 1000px;
	margin: 0 auto;
}

.footer-list a {
	transition: color .2s;
}

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

.fixed-navigation {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	display: none;
	align-items: flex-end;
	min-width: 320px;
	z-index: 17;
	min-height: var(--height-menu-mobile);
	transition: transform .3s, visibility .3s, opacity .3s;
}

@media screen and (max-width: 767px) {
	.fixed-navigation {
		display: flex;
	}
}

.fixed-navigation .list {
	backdrop-filter: blur(4px);
	background: rgba(var(--bg-rgb-black), 0.7);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-shrink: 1;
	flex-grow: 1;
	border-radius: 8px 8px 0 0;
	padding: 8px 16px;
	line-height: 1.5;
}

.fixed-navigation a {
	position: relative;
	font-weight: 500;
	display: flex;
	align-items: center;
	flex-direction: column;
	font-size: 24px;
	gap: 2px;
}

@media screen and (max-width: 390px) {
	.fixed-navigation a {
		font-size: 20px;
	}
}

.fixed-navigation a span {
	font-size: 12px;
	color: var(--bg-black30);
}

@media screen and (max-width: 390px) {
	.fixed-navigation a span {
		font-size: 10px;
	}
}

.fixed-navigation .secondary {
	transform: translate3d(0, -14px, 0);
}

.fixed-navigation .secondary a {
	font-size: 32px;
	border-radius: 100%;
	overflow: hidden;
	justify-content: center;
	width: 48px;
	height: 48px;
	background-color: var(--bg-dark-blue);
}

@media screen and (max-width: 390px) {
	.fixed-navigation .secondary a {
		font-size: 30px;
	}
}

.fixed-navigation em {
	position: absolute;
	z-index: 3;
	right: 6px;
	top: -10px;
	min-width: 17px;
	min-height: 17px;
	font-weight: 500;
	font-size: 10px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-color: var(--bg-dark-blue);
	text-align: center;
}

.modal-box {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 150;
	padding: 10px 0;
	overflow: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	opacity: 0;
	overscroll-behavior: none;
	backdrop-filter: blur(7px);
	background: rgba(var(--bg-modal-rgb), 0.7);
}

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

.modal-content {
	position: relative;
	margin: auto;
	border-radius: 32px;
	width: 100%;
	background-color: var(--bg-black80);
	overflow: hidden;
	padding: 80px 32px 16px;
	max-width: 604px;
}

@media screen and (max-width: 767px) {
	.modal-content {
		padding: 80px 16px 16px;
	}
}

@media screen and (max-width: 604px) {
	.modal-content {
		border-radius: 0;
	}
}

.modal-content[data-attr-large] {
	max-width: 658px;
}

.modal-content .close {
	width: 40px;
	height: 40px;
	font-size: 24px;
	border: none;
	cursor: pointer;
	background: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 16px;
	right: 32px;
	color: var(--color-main);
	transition: color .2s;
}

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

@media screen and (max-width: 767px) {
	.modal-content .close {
		right: 16px;
	}
}

.modal-content .row {
	margin-bottom: 10px;
	position: relative;
}

.modal-content .row .field-error {
	position: absolute;
	bottom: 0;
	left: 10px;
	color: red;
}

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

.modal-content .title {
	margin-bottom: 24px;
	font-weight: 500;
	font-size: 32px;
	text-align: center;
	line-height: 1.5;
	color: #ffffff;
}

.modal-content .title.second {
	margin-bottom: 40px;
}

.modal-content .title.primary {
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 8px;
}

.modal-content .sub {
	font-weight: 600;
	font-size: 16px;
	text-align: center;
	color: var(--bg-black30);
	margin-bottom: 16px;
	line-height: 1.5;
}

@media screen and (max-width: 767px) {
	.modal-content .sub {
		padding: 0 20px;
	}
}

@media screen and (max-width: 390px) {
	.modal-content .sub {
		padding: 0;
	}
}

.modal-content .list {
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px 16px;
	color: var(--color-active);
}

.modal-content .list li {
	display: flex;
	align-items: center;
	line-height: 1.5;
	gap: 4px;
}

.modal-content .list img {
	max-width: 18px;
	height: auto;
	display: inline-block;
	vertical-align: middle;
}

.modal-content .name {
	font-weight: 500;
	font-size: 12px;
	display: block;
	line-height: 1.5;
	padding: 8px 16px;
	color: #ffffff;
}

.modal-content .wrapped {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 16px;
}

.modal-content .wrapped input {
	padding: 8px 0;
}

.modal-content .input-prefix {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex-grow: 0;
	flex-shrink: 0;
	cursor: pointer;
	color: var(--bg-black30);
	transition: color .3s;
}

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

.modal-content input {
	width: 100%;
	border: none;
	background: none;
	color: var(--color-main);
	font-weight: 500;
	font-size: 12px;
	padding: 8px 16px;
	height: 40px;
}

.modal-content input.button-submit {
	background-color: var(--color-active);
	line-height: 1.1112;
    font-weight: 500;
    font-size: 18px;
}

@media (min-width: 1025px) {
	.modal-content input.button-submit:hover {
		background-color: var(--bg-dark-blue-active);
	}	
}

.wrap-btn-sign .btn-second {
	display: block;
	text-align: center;
}

.modal-content .input,
.modal-content .wrapped {
	border: 1px solid var(--bg-black30);
	border-radius: 32px;
}

.modal-content .checkbox-label .checkbox {
	border: 1px solid var(--bg-black30);
}

.modal-content .checkbox-input:checked + .checkbox {
	border-color: var(--bg-pink);
}

.modal-content .wrap {
	padding: 8px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
}

.modal-content .info {
	text-align: center;
	padding: 8px;
	border-top: 1px solid var(--bg-black30);
	line-height: 1.5;
	font-weight: 500;
	font-size: 12px;
	color: var(--bg-black30);
	margin-bottom: 8px;
}

.modal-content .detail {
	font-weight: 500;
	font-size: 12px;
	text-align: center;
	color: var(--bg-black30);
	line-height: 1.5;
	max-width: 290px;
	margin: 0 auto;
}

.modal-content .detail a {
	color: var(--color-active);
}

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

.modal-content .cols {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin: -8px;
}

.modal-content .col {
	width: 50%;
	padding: 8px;
}

.col-list {
	width: 33.33333%;
	padding: 8px;
}

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

.wrap-avatar {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wrap-avatar .avatar {
	width: 206px;
	height: 206px;
	display: flex;
	background-color: var(--bg-black);
	color: var(--color-second);
	font-size: 80px;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	overflow: hidden;
}

.wrap-avatar img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.upload-btn {
	position: absolute;
	left: 50%;
	transform: translate3d(-50%, 0, 0);
	bottom: -26px;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-main);
	background-color: var(--bg-black);
	cursor: pointer;
	border: none;
	width: 48px;
	height: 48px;
	border-radius: 100%;
	overflow: hidden;
	transition: background-color .3s;
}

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

.row-field {
	margin-bottom: 24px;
}

.row-field.second {
	margin-bottom: 40px;
}

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

.modal-group {
	margin-bottom: 32px;
}

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

.forgot-link {
	font-weight: 500;
	font-size: 12px;
	color: var(--bg-black30);
}

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

.btn-pay {
	border: none;
	background-color: var(--bg-dark-blue);
	color: var(--color-main);
	font-weight: 600;
	font-size: 24px;
	padding: 14px;
	line-height: 1.5;
	cursor: pointer;
	border-radius: 32px;
	width: 100%;
}

@media screen and (max-width: 1025px) {
	.btn-pay:hover {
		background-color: var(--bg-dark-blue);
	}
}

.bottom-text {
	font-weight: 500;
	font-size: 12px;
	text-align: center;
	line-height: 1.25;
	color: var(--color-text);
}

.choice-label {
	cursor: pointer;
}

.choice-label .wrap {
	border-radius: 32px;
	padding: 10px 16px;
	line-height: 1.5;
	background: var(--bg-black);
	transition: background .3s, box-shadow .3s;
}

@media screen and (min-width: 1025px) {
	.choice-label .wrap:hover {
		box-shadow: 0 0 0 1px inset var(--color-active);
		background: rgba(var(--bg-rgb-blue), 0.5);
	}
}

.choice-label .price {
	font-weight: 600;
	font-size: 24px;
	color: var(--color-main);
}

.choice-input {
	display: none;
}

.choice-input:checked +
.wrap {
	box-shadow: 0 0 0 1px inset var(--color-active);
	background: rgba(var(--bg-rgb-blue), 0.2);
}

.choice-title {
	display: block;
	font-weight: 600;
	font-size: 24px;
	color: var(--color-main);
}

.choice-sub {
	margin-top: 8px;
	font-weight: 400;
	font-size: 16px;
	color: var(--bg-black30);
}

.video-holder {
	position: relative;
}

.video-holder img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.item-share {
	position: relative;
}

.models-block-holder {
	margin-top: 16px;
	margin-bottom: 24px;
}

.models-block-holder .title {
	font-size: 20px;
	margin-bottom: 8px;
}

.models-block {
	display: flex;
	align-items: center;
}

@media (max-width: 1024px) {
	.models-block {
	    white-space: nowrap;
		overflow: hidden;
		overflow-x: auto;
		padding: 0 16px;
	}

	.models-block::-webkit-scrollbar {
		display: none;
	}

}

.models-block .model-item {
	margin-right: 15px;
}

.models-block .model-item:last-child {
	margin-right: 0;
}

.models-block .model-link {
	display: flex;
	align-items: flex-start;
}

.models-block .model-link .avatar {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--bg-black);
	color: var(--color-second);
	font-size: 20px;
	border-radius: 100%;
	overflow: hidden;
	flex-shrink: 0;
	flex-grow: 0;
	margin-right: 10px;
}

.models-block .model-link .avatar img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.model-link .content .name {
	font-size: 16px;
}

.model-link .content .info {
	display: flex;
}

.model-link .content .info .info-item {
	margin-right: 10px;
	font-size: 12px;
	font-weight: 400;
	display: flex;
	align-items: center;
}

.model-link .content .info .info-item svg {
	margin-right: 4px;
}

.model-link .content .info .info-item.rate-item {
	color: var(--color-active);
}

.model-link .content .info .info-item:last-child {
	margin-right: 0;
}

.categories-holder {
	margin-top: 16px;
}

.categories-holder .title {
	margin-bottom: 8px;
	font-weight: 600;
	font-size: 20px;
}

.comments-block--large {
	width: 100%;
	max-width: 845px;
	margin-top: 56px;
}

.comments-block--large .comments-block__title {
	margin: 0 0 10px;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.2;
	color: var(--color-main);
}

.comments-block--large .comments-form {
	margin-bottom: 48px;
}

.comments-block--large .comments-form__textarea {
	display: block;
	width: 100%;
	min-height: 162px;
	padding: 28px 26px;
	border: 0;
	border-radius: 48px;
	resize: vertical;
	outline: none;
	background-color: var(--bg-black);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.4;
	color: var(--color-main);
	font-family: var(--default-font);
	resize: none;
}

.comments-block--large .comments-form__textarea::placeholder {
	color: var(--color-second);
	opacity: 1;
}

.comments-block--large .comments-form__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
    min-width: 177px;
    height: 40px;
	margin-top: 26px;
	padding: 0 32px;
	border: 0;
	border-radius: 33px;
	background-color: var(--color-active);
	cursor: pointer;
	font-weight: 600;
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
	color: var(--color-main);
	transition: background-color .3s, color .3s;
}

@media screen and (min-width: 1025px) {
	.comments-block--large .comments-form__button:hover {
		background-color: var(--bg-dark-blue);
	}
}

.comments-block--large .comments-list {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	gap: 28px;
}

.comments-block--large .comments-list li {
	width: 100%;
}

.comments-block--large .comments-card {
	width: 100%;
	gap: 14px;
	color: var(--color-main);
}

.comments-block--large .comments-card .avatar {
	width: 48px;
	height: 48px;
	background-color: #000;
}

.comments-block--large .comments-card .no-image {
	max-width: 30px;
}

.comments-block--large .comments-card .group {
	gap: 14px;
	line-height: 1.3;
	letter-spacing: 0px;
}

.comments-block--large .comments-card .name {
	font-weight: 600;
	font-size: 16px;
	line-height: 1.2;
	color: var(--color-main);
	letter-spacing: 0px;
}

.comments-block--large .comments-card .date {
	font-weight: 500;
	font-size: 12px;
	line-height: 1.3;
	color: var(--color-second);
	letter-spacing: 0px;
}

.comments-block--large .comments-card .comment {
	max-width: none;
	margin-top: 10px;
	padding: 0;
	border-radius: 0;
	background-color: transparent;
	font-weight: 500;
	font-size: 12px;
	line-height: 1.4;
	color: var(--color-second);
}

.comments-block--large .comments-card .comment span {
	letter-spacing: 0px;
	display: block;
	overflow: visible;
	text-overflow: initial;
	-webkit-line-clamp: unset;
	-webkit-box-orient: initial;
}

@media screen and (max-width: 767px) {
	.comments-block--large {
		margin-top: 48px;
	}
	
	.comments-block--large .comments-block__title {
		margin-bottom: 20px;
		font-size: 24px;
	}

	.comments-block--large .comments-form {
		margin-bottom: 32px;
	}

	.comments-block--large .comments-form__textarea {
		min-height: 120px;
		padding: 20px;
		border-radius: 28px;
		font-size: 16px;
	}

	.comments-block--large .comments-form__button {
		min-width: 100%;
        height: 40px;
        margin-top: 16px;
        font-size: 18px;
        font-weight: 400;
	}

	.comments-block--large .comments-list {
		gap: 24px;
	}

	.comments-block--large .comments-card {
		gap: 12px;
	}

	.comments-block--large .comments-card .avatar {
		width: 48px;
		height: 48px;
	}

	.comments-block--large .comments-card .group {
		flex-wrap: wrap;
		gap: 4px 10px;
	}

	.comments-block--large .comments-card .name {
		font-size: 18px;
	}

	.comments-block--large .comments-card .date {
		font-size: 14px;
	}

	.comments-block--large .comments-card .comment {
		margin-top: 8px;
		font-size: 15px;
	}
}

.share-block {
	width: 370px;
	padding: 16px 15px 16px;
	border: 3px solid var(--bg-black);
	border-radius: 50px;
	background-color: var(--bg-black80);
	position: absolute;
	top: calc(100% + 10px);
    left: 0;
	z-index: 10;
	transition: opacity .3s;
	opacity: 0;
	visibility: hidden;
}

@media screen and (max-width: 767px) {
	.share-block {
		width: 310px;
		padding: 16px 12px 16px;
	}
}

.show-share .share-block {
	opacity: 1;
	visibility: visible;
}

.share-block__title {
	margin-bottom: 16px;
	text-align: center;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.1;
	color: var(--color-main);
}

.share-block__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 0 0 2dvh;
	padding: 0;
	list-style: none;
}

.share-block__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: var(--bg-black);
	transition: transform .3s, background-color .3s;
}

.share-block__link img {
	display: block;
	max-width: 54px;
	max-height: 54px;
	width: auto;
	height: auto;
}

@media screen and (min-width: 1025px) {
	.share-block__link:hover {
		transform: translateY(-3px);
		background-color: var(--bg-dark-blue);
	}
}

.share-block__copy {
	display: grid;
	grid-template-columns: 1fr 45px;
	align-items: center;
	gap: 20px;
}

.share-block__input {
	width: 100%;
	height: 40px;
	padding: 0 38px;
	border: 1px solid var(--color-second);
	border-radius: 51px;
	outline: none;
	background-color: var(--bg-black);
	font-weight: 500;
	font-size: 16px;
	line-height: 1;
	color: var(--color-second);
	text-overflow: ellipsis;
}

.share-block__copy-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background-color: var(--bg-black);
	cursor: pointer;
	transition: transform .3s, background-color .3s;
}

.share-block__copy-btn img {
	display: block;
	max-width: 48px;
	max-height: 48px;
	width: auto;
	height: auto;
}

@media screen and (min-width: 1025px) {
	.share-block__copy-btn:hover {
		transform: translateY(-3px);
		background-color: var(--bg-dark-blue);
	}
}

@media screen and (max-width: 767px) {
	.share-block {
		padding: 28px 18px 24px;
		border-radius: 36px;
	}

	.share-block__title {
		margin-bottom: 14px;
	}

	.share-block__list {
		gap: 14px;
		margin-bottom: 18px;
	}

	.share-block__link {
		width: 50px;
		height: 50px;
	}

	.share-block__link img {
		max-width: 32px;
		max-height: 32px;
	}

	.share-block__copy {
		grid-template-columns: 1fr 50px;
		gap: 10px;
	}

	.share-block__input {
		height: 45px;
		padding: 0 20px;
		border-width: 2px;
		border-radius: 29px;
		font-size: 18px;
	}

	.share-block__copy-btn {
		width: 45px;
		height: 45px;
	}

	.share-block__copy-btn img {
		max-width: 28px;
		max-height: 28px;
	}
}

.tokens-modal {
	position: relative;
	width: 100%;
	max-width: 512px;
	padding: 70px 34px 30px;
	border-radius: 28px;
	background-color: var(--bg-black80);
	color: var(--color-main);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
}

.tokens-modal__close {
	position: absolute;
	top: 34px;
	right: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	padding: 0;
	border: 0;
	background-color: transparent;
	cursor: pointer;
	color: var(--color-main);
}

.tokens-modal__close .svg-icon {
	width: 100%;
	height: 100%;
}

.tokens-modal__head {
	margin-bottom: 28px;
	text-align: center;
}

.tokens-modal__title {
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 24px;
	line-height: 1.2;
	color: var(--color-main);
}

.tokens-modal__user {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: var(--color-main);
}

.tokens-modal__avatar {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.tokens-modal__avatar .no-thumb {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	background-color: var(--bg-black);
	color: var(--color-second);
}

.tokens-modal__avatar img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tokens-modal__name {
	font-weight: 600;
	font-size: 16px;
	line-height: 1.2;
	color: var(--color-main);
}

.tokens-modal__verified {
	width: 12px;
	height: 12px;
	color: var(--bg-blue);
	flex-shrink: 0;
}

.tokens-form__label {
	margin-bottom: 18px;
	text-align: center;
	font-weight: 500;
	font-size: 12px;
	line-height: 1.3;
	color: var(--color-second);
}

.tokens-form__field {
	display: flex;
	align-items: center;
	width: 100%;
	height: 42px;
	margin-bottom: 20px;
	padding: 0 20px;
	border: 1px solid var(--bg-dark-blue);
	border-radius: 21px;
	background-color: var(--bg-black);
	cursor: text;
}

.tokens-form__coin {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;	
	margin-right: 12px;
	flex-shrink: 0;
}

.tokens-form__coin img {
	display: block;
	width: 100%;
	height: 100%;
}

.tokens-form__input {
	width: 34px;
	padding: 0;
	border: 0;
	outline: none;
	background-color: transparent;
	font-weight: 500;
	font-size: 14px;
	line-height: 1;
	color: var(--color-main);
	appearance: textfield;
}

.tokens-form__input::-webkit-outer-spin-button,
.tokens-form__input::-webkit-inner-spin-button {
	margin: 0;
	appearance: none;
}

.tokens-form__text {
	font-weight: 500;
	font-size: 14px;
	line-height: 1;
	color: var(--color-main);
}

.tokens-form__presets {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 28px;
}

.tokens-form__preset {
	position: relative;
	display: block;
	width: 67px;
	height: 67px;
	flex: 0 0 67px;
	cursor: pointer;
}

.tokens-form__preset input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.tokens-form__preset span {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
	border: 1px solid transparent;
	border-radius: 50%;
	background-color: var(--bg-black);
	color: var(--color-main);
	transition: border-color .3s, background-color .3s;
}

.tokens-form__preset strong {
	font-weight: 600;
	font-size: 17px;
	line-height: 1.1;
	color: var(--color-main);
}

.tokens-form__preset small {
	margin-top: 5px;
	font-weight: 500;
	font-size: 12px;
	line-height: 1.1;
	color: var(--color-second);
}

.tokens-form__preset.active span,
.tokens-form__preset input:checked + span {
	border-color: var(--bg-blue);
	background-color: rgba(47, 116, 220, .28);
}

.tokens-form__message {
	display: block;
	width: 100%;
	min-height: 108px;
	margin-bottom: 26px;
	padding: 20px 18px;
	border: 0;
	border-radius: 34px;
	resize: vertical;
	outline: none;
	background-color: var(--bg-black);
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
	color: var(--color-main);
	font-family: var(--default-font);
	resize: none;
}

.tokens-form__message::placeholder {
	color: var(--color-second);
	opacity: 1;
}

.tokens-form__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 44px;
	margin-bottom: 34px;
	padding: 0 24px;
	border: 0;
	border-radius: 22px;
	background-color: var(--bg-dark-blue);
	cursor: pointer;
	font-weight: 600;
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
	color: var(--color-main);
	transition: background-color .3s;
}

@media screen and (min-width: 1025px) {
	.tokens-form__submit:hover {
		background-color: var(--bg-dark-blue-active);
	}
}

.tokens-form__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 12px;
	border-top: 1px solid var(--color-second);
}

.tokens-form__balance {
	font-weight: 500;
	font-size: 14px;
	line-height: 1.3;
	color: var(--color-second);
}

.tokens-form__balance strong {
	font-weight: 600;
	color: var(--color-main);
}

.tokens-form__purchase {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.2;
	color: var(--bg-dark-blue);
	transition: color .3s;
}

.tokens-form__purchase .svg-icon {
	width: 12px;
	height: 12px;
	transition: transform .3s;
}

.tokens-modal.show-purchase .svg-icon {
	transform: rotate(180deg);
}

.tokens-purchase {
	display: none;
	margin-top: 28px;
}

.tokens-form.show-purchase .tokens-purchase {
	display: block;
}

.tokens-modal .modal-content {
	display: none;
}

.tokens-modal.show-purchase .modal-content {
	display: block;
}

.tokens-purchase__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 24px;
}

.tokens-purchase__item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	min-height: 70px;
	padding: 14px 22px;
	border: 1px solid transparent;
	border-radius: 35px;
	background-color: var(--bg-black);
	cursor: pointer;
	color: var(--color-main);
	transition: border-color .3s, background-color .3s;
}

.tokens-purchase__item input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.tokens-purchase__item.active,
.tokens-purchase__item input:checked + .tokens-purchase__info {
	border-color: var(--bg-blue);
}

.tokens-purchase__item.active {
	border-color: var(--bg-blue);
	background-color: rgba(47, 116, 220, .22);
}

.tokens-purchase__info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
}

.tokens-purchase__info strong {
	font-weight: 600;
	font-size: 20px;
	line-height: 1.2;
	color: var(--color-main);
}

.tokens-purchase__info small {
	margin-top: 4px;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.2;
	color: var(--color-second);
}

.tokens-purchase__price {
	flex-shrink: 0;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.2;
	color: var(--color-main);
}

.tokens-purchase__button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	height: 54px;
	padding: 0 24px;
	border: 0;
	border-radius: 27px;
	background-color: var(--bg-black);
	cursor: pointer;
	font-weight: 600;
	font-size: 22px;
	line-height: 1;
	color: var(--color-main);
	transition: background-color .3s;
}

.tokens-purchase__coin {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

.tokens-purchase__coin img {
	display: block;
	width: 100%;
	height: 100%;
}

@media screen and (min-width: 1025px) {
	.tokens-purchase__item:hover {
		border-color: var(--bg-blue);
	}

	.tokens-purchase__button:hover {
		background-color: var(--bg-blue);
	}
}

@media screen and (max-width: 767px) {
	.tokens-modal {
		max-width: none;
		padding: 58px 20px 24px;
		border-radius: 24px;
	}

	.tokens-modal__close {
		top: 26px;
		right: 24px;
	}

	.tokens-modal__head {
		margin-bottom: 24px;
	}

	.tokens-form__presets {
		justify-content: center;
		overflow-x: auto;
		padding-bottom: 4px;
		flex-wrap: wrap;
	}

	.tokens-form__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.tokens-purchase {
		margin-top: 24px;
	}
}

body.open-purchase::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 11;
    overscroll-behavior: none;
    backdrop-filter: blur(7px);
    background: rgba(var(--bg-modal-rgb), 0.7);
	overflow: hidden;
}

body.open-report {
	overflow: hidden;
}

body.open-report::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 19;
    overscroll-behavior: none;
    backdrop-filter: blur(7px);
    background: rgba(var(--bg-modal-rgb), 0.7);
	overflow: hidden;
}

.report-modal {
	position: relative;
	width: 100%;
	max-width: 512px;
	padding: 70px 34px 30px;
	border-radius: 28px;
	background-color: var(--bg-black80);
	color: var(--color-main);
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 20;
}

.report-modal__close {
	position: absolute;
	top: 34px;
	right: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	padding: 0;
	border: 0;
	background-color: transparent;
	cursor: pointer;
	color: var(--color-main);
}

.report-modal__close .svg-icon {
	width: 100%;
	height: 100%;
}

.report-modal__title {
	margin-bottom: 32px;
	text-align: center;
	font-weight: 500;
	font-size: 24px;
	line-height: 1.2;
	color: var(--color-main);
}

.report-form__list {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin-bottom: 28px;
}

.report-form__item {
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
	width: fit-content;
	cursor: pointer;
	color: var(--color-main);
}

.report-form__item input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: pointer;
	z-index: 2;
}

.report-form__radio {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: var(--bg-black);
	flex: 0 0 24px;
}

.report-form__radio::before {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: var(--bg-blue);
	opacity: 0;
	transition: opacity .3s;
}

.report-form__item input:checked ~ .report-form__radio::before {
	opacity: 1;
}

.report-form__text {
	position: relative;
	z-index: 1;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.3;
	color: var(--color-main);
}

.report-form__message {
	display: block;
	width: 100%;
	min-height: 108px;
	margin-bottom: 26px;
	padding: 20px 18px;
	border: 0;
	border-radius: 34px;
	resize: vertical;
	outline: none;
	background-color: var(--bg-black);
	font-weight: 500;
	font-size: 12px;
	line-height: 1.4;
	color: var(--color-main);
	font-family: var(--default-font);
	resize: none;
}

.report-form__message::placeholder {
	color: var(--color-second);
	opacity: 1;
}

.report-form__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 40px;
	padding: 0 24px;
	border: 0;
	border-radius: 22px;
	background-color: var(--bg-dark-blue);
	cursor: pointer;
	font-weight: 400;
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
	color: var(--color-main);
	transition: background-color .3s;
}

@media screen and (min-width: 1025px) {
	.report-form__submit:hover {
		background-color: var(--bg-dark-blue-active);
	}
}

@media screen and (max-width: 767px) {
	.report-modal {
		max-width: none;
		padding: 58px 20px 24px;
		border-radius: 24px;
	}

	.report-modal__close {
		top: 26px;
		right: 24px;
	}

	.report-modal__title {
		margin-bottom: 28px;
	}

	.report-form__list {
		gap: 20px;
		margin-bottom: 24px;
	}
}

.report-form__item {
	display: flex;
	align-items: center;
	gap: 14px;
	width: fit-content;
	cursor: pointer;
	color: var(--color-main);
}

.report-form__input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.report-form__radio {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: var(--bg-black);
	flex: 0 0 24px;
}

.report-form__radio::before {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: var(--bg-dark-blue);
	opacity: 0;
	transition: opacity .3s;
}

.report-form__input:checked + .report-form__radio::before {
	opacity: 1;
}

.report-form .captcha-control {
	display: flex;
    margin-bottom: 20px;
}

.report-form .captcha-control img {
	max-width: 120px;
	width: 100%;
	margin-right: 10px;
}

.report-form .captcha-control .textfield {
    width: 100%;
    border: none;
    background: none;
    font-weight: 500;
    font-size: 12px;
    font-family: "Poppins", sans-serif;
    padding: 10px 0 10px 20px;
    color: var(--color-main);
	background-color: var(--bg-black);
	border-radius: 34px;
}

/* Album tabs */
.album-tabs__panels {
	margin-top: 32px;
}

.album-tab-panel {
	display: none;
}

.album-tab-panel.is-active {
	display: block;
}

.album-tabs .share-block {
	position: static;
	width: 100%;
	max-width: 100%;
	opacity: 1;
	visibility: visible;
}

.album-tabs .share-block__link .svg-icon {
	width: 22px;
	height: 22px;
}

.album-tabs .comments-block--large {
	max-width: 100%;
	margin-top: 0;
}

.album-tabs .author-box {
	margin-top: 0;
}

@media screen and (max-width: 767px) {
	.album-tabs__panels {
		margin-top: 24px;
	}

	.album-tabs .share-block {
		width: 100%;
	}
}

.headline.table-headline .wrap {
    flex: 0 1 0;
}

.headline.table-headline .wrap {
	white-space: nowrap;
}

.player-wrap {
	position: relative;
}

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

.sponsor {
	margin-top: 20px;
}

.success.hidden,
.generic-error.hidden {
	display: none;
}

.generic-error {
	color: red;
	font-size: 14px;
	text-align: center;
}

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

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

.row.second-row {
	display: flex;
	flex-direction: column;
}

.row.second-row .textfield {
    display: block;
    width: 100%;
    min-height: 40px;
    padding: 9px 26px;
	max-width: 300px;
    border: 0;
    border-radius: 48px;
    resize: vertical;
    outline: none;
    background-color: var(--bg-black);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-main);
    font-family: var(--default-font);
}

.block-comments .image {
    display: flex;
    flex-direction: column;
    max-width: 200px;
}

.block-comments .image img {
	max-width: 120px;
	width: 100%;
}

.block-comments .image .textfield {
	display: block;
    width: 100%;
    min-height: 40px;
    padding: 9px 26px;
    max-width: 100%;
    border: 0;
    border-radius: 48px;
    resize: vertical;
    outline: none;
    background-color: var(--bg-black);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-main);
    font-family: var(--default-font);
}

.field-error {
	color: red;
}

.text-row .comments-block__title {
	display: block;
}

.media.primary .no-image {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--bg-black);
}

.general-aside.model-aside {
	padding-top: 68px;
}

@media (max-width: 991px) {
	.general-aside.model-aside {
		padding-top: 0;
	}	
}

.fancybox-skin {
	background: transparent;
}

.fancybox-close {
	background-image: none!important;
	top: 18px;
    right: 34px;
}

.captcha-wrap {
	display: flex;
	align-items: last baseline;
}

.captcha-wrap img {
	max-width: 120px;
	width: 100%;
	margin-right: 10px;
}

.captcha-wrap label {
	color: #ffffff;
}

.main-flex form .bottom {
	width: 100%;
}

.image-aside .wrap.portrait .no-thumb {
	position: absolute;
	width: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	border-radius: 50%;
	overflow: hidden;
	background: var(--bg-black);

	display: flex;
	justify-content: center;
	align-items: center;
}

.image-aside .wrap.portrait .no-thumb svg {
	width: 5em;
    height: 5em;
}

.headline.invisible {
	display: none;
}

.hidden {
	display: none;
}

center {
	max-width: 1816px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
	margin-bottom: 20px;
}

.image-aside .no-thumb {
	position: absolute;
	width: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	/* border-radius: 50%; */
	overflow: hidden;
	background: var(--bg-black);

	display: flex;
	justify-content: center;
	align-items: center;
}

.box-holder {
	width: 100%;
}

.block-video .playlist-holder {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 0 -10px;
}

.block-video .playlist .playlist-thumb {
    position: relative;
    cursor: pointer;
    width: calc(25% - 10px);
    margin: 0 0 10px 10px;
    background-color: #000;
    border-radius: 0 0 5px 5px;
    -webkit-box-shadow: -1px 1px 5px rgba(33, 33, 33, 0.65);
    box-shadow: -1px 1px 5px rgba(33, 33, 33, 0.65);
}

.block-video .playlist .playlist-thumb .img {
    position: relative;
    padding-bottom: 56.25%;
}

.block-video .playlist .playlist-thumb .img img:first-child {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.playlist-info .block-details {
	padding: 15px 0;
}

.playlist-info .block-details .item {
	display: flex;
	align-items: center;
}

.playlist-info .block-details .item span {
	display: block;
	margin-right: 10px;
}

.popup-send-message .textarea,
.popup-add-to-friends .textarea,
.profile-edit-modal .textarea {
	display: block;
    width: 100%;
    min-height: 162px;
    padding: 28px 26px;
    border: 0;
    border-radius: 48px;
    resize: vertical;
    outline: none;
    background-color: var(--bg-black);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-main);
    font-family: var(--default-font);
    resize: none;
}

.profile-edit-modal {
	width: min(604px, calc(100vw - 20px));
	max-height: calc(100vh - 20px);
	overflow-x: hidden;
	overflow-y: auto;
	color: #fff;
}

.select2-container {
	z-index: 10001;
}

.player-holder .no-player {
	position: relative;
	overflow: hidden;
}

.player-holder .no-player img {
	position: absolute;
}

.player-holder .no-player .message {
	position: absolute;
    width: 100%;
    height: 100%;
    overscroll-behavior: none;
    backdrop-filter: blur(7px);
    background: rgba(var(--bg-modal-rgb), 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.message .tokens-message {
	text-align: center;
	margin-bottom: 20px;
}

.player-holder .no-player .message .submit {
	display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    border-radius: 32px;
    gap: 4px;
    padding: 8px 16px;
    cursor: pointer;
    border: none;
    width: 100%;
    transition: background-color .2s, color .2s;
	font-size: 18px;
    background-color: var(--bg-dark-blue);
	color: var(--color-main);
}

@media screen and (min-width: 1025px) {
	.player-holder .no-player .message .submit:hover {
		background-color: var(--bg-dark-blue-active);
	}
}

.file-hint.textfield {
	display: none;
}

.form-upload.uploading .columns-upload {
	display: none;
}

.form-upload {
	position: relative;
}

.form-upload.uploading {
	min-height: 96px;
	cursor: wait;
}

.form-upload.uploading > :not(.progressbar) {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.form-upload .progressbar {
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	width: min(600px, 90%);
	height: 48px;
	padding: 4px;
	border: 1px solid var(--color-active);
	border-radius: 32px;
	background-color: var(--bg-black);
	transform: translate(-50%, -50%);
	overflow: hidden;
}

.form-upload .progressbar .progress {
	width: 0;
	height: 100%;
	border-radius: 28px;
	background-color: var(--color-active);
}

.form-upload .progressbar .text {
	position: absolute;
	z-index: 2;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-main);
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
}

.form-upload.uploading .progressbar,
.form-upload.uploading .progressbar * {
	opacity: 1;
	visibility: visible;
}

.form-upload.uploading-finished {
	cursor: default;
}

@media screen and (max-width: 767px) {
	.form-upload .progressbar {
		height: 42px;
	}

	.form-upload .progressbar .text {
		font-size: 14px;
	}
}

.rule-wrapped .preview {
	max-width: 280px;
    width: 100%;
}

.rule-wrapped .preview img {
	width: 100%;
	height: auto;
}

.section-info .row-field {
	display: flex;
	flex-direction: column;
	position: relative;
}

.section-info .row-field .field-label {
	margin-bottom: 8px;
}

.section-info .row-field .textfield {
    display: block;
    width: 100%;
    height: 45px;
    padding: 10px 26px;
    border: 0;
    border-radius: 48px;
    resize: vertical;
    outline: none;
    background-color: var(--bg-black);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-main);
    font-family: var(--default-font);
}


.section-info .row-field .textarea {
	display: block;
    width: 100%;
    min-height: 162px;
    padding: 28px 26px;
    border: 0;
    border-radius: 48px;
    resize: vertical;
    outline: none;
    background-color: var(--bg-black);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-main);
    font-family: var(--default-font);
    resize: none;
}

.list-selector-popup {
    position: absolute;
    top: 104%;
    background-color: var(--bg-black);
    width: 100%;
    z-index: 3;
    border-radius: 30px;
    padding: 15px;
    height: 200px;
    overflow-y: scroll;
}

.filter {
	width: 100%;
}

.filter input {
	width: 100%;
    border: none;
    background: none;
    color: var(--color-main);
    font-weight: 500;
    font-size: 12px;
    padding: 8px 16px;
    height: 40px;
	border: 1px solid var(--bg-black30);
    border-radius: 32px;
}

.section-info .file-control .file {
    position: absolute;
    top: 10px;
    left: 15px;
    opacity: 0;	
}

.section-info .file-control .button {
	display: none;
}

.radio-row {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
}

.radio-row .radio {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.radio-row label {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 40px;
    padding-left: 30px;
    color: var(--color-main);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    cursor: pointer;
}

.radio-row label::before {
	content: "";
    position: absolute;
    top: 50%;
    left: 5px;
    width: 20px;
    height: 20px;
	border-radius: 25px;
	background-color: var(--bg-black30);
	transform: translateY(-50%);
	transition: background-color 0.2s, box-shadow 0.2s;
}

.radio-row .radio:checked + label::before {
	background-color: var(--color-active);
	box-shadow: inset 0 0 0 10px var(--color-active);
}

.radio-row .radio:checked + label::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 10px;
    height: 10px;
    border-radius: 15px;
    background-color: var(--color-main);
    transform: translateY(-50%);
}

.radio-row .radio:focus-visible + label::before {
	outline: 2px solid var(--color-main);
	outline-offset: 3px;
}

.radio-row .radio:disabled + label {
	opacity: 0.5;
	cursor: default;
}

@media screen and (max-width: 767px) {
	.radio-row label {
        min-height: 36px;
        padding-left: 35px;
        font-size: 18px;
	}

    .radio-row label::before {
        width: 20px;
        height: 20px;
    }

    .radio-row .radio:checked + label::after {
        left: 10px;
        width: 10px;
        height: 10px;
    }
}


.tokens-fancybox .popup-send-tokens {
	width: 512px;
	max-width: calc(100vw - 32px);
}

.tokens-fancybox .tokens-modal {
	position: relative;
	top: auto;
	left: auto;
	transform: none;
}

.tokens-modal .modal-content {
	padding: 0;
    margin-top: 30px;
}

.text-content h2 {
	margin-bottom: 10px;
}

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

.card-box .no-image {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-black);
}

.error-holder {
    text-align: center;
    font-size: 40px;
}

.autocomplete-suggestions {
	font-weight: 500;
	font-size: 12px;
	padding: 0 16px;
	overflow-y: auto;
	box-shadow: 0 4px 18px 0 rgba(23, 15, 41, 0.2);
    background: var(--bg-black);
	box-sizing: border-box;
}

.autocomplete-suggestion {
	padding: 8px 16px;
	line-height: 1.5;
	margin: 0 -16px;
	cursor: pointer;
}

.autocomplete-suggestion:hover,
.autocomplete-suggestion.autocomplete-selected {
	background-color: var(--bg-dark-blue);
	color: var(--bg-white);
}

.autocomplete-suggestion strong {
	color: var(--bg-dark-blue);
	font-weight: inherit;
}

.autocomplete-suggestion:hover strong,
.autocomplete-suggestion.autocomplete-selected strong {
	color: var(--bg-white);
}

.select2-search.select2-search--dropdown {
	width: 100%;
    display: block;
    padding: 8px;
}

.select2-search.select2-search--dropdown input {
	width: 100%;
}

.select2-results {
	overflow-y: scroll;
	height: 350px;
	display: block;
}

.profile-edit-modal .profile-select-row {
	position: relative;
}

.profile-edit-modal .profile-select-row > .profile-select-dropdown {
	position: absolute !important;
	top: 100% !important;
	z-index: 100000;
}

body.open-menu .fixed-navigation {
	opacity: 0;
	visibility: hidden;
}

.popup-holder .input.textarea {
    display: block;
    width: 100%;
    min-height: 162px;
    padding: 28px 26px;
    border: 0;
    border-radius: 48px;
    resize: vertical;
    outline: none;
    background-color: var(--bg-black);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-main);
    font-family: var(--default-font);
    resize: none;
}

.modal-content .success {
	color: var(--success-color);
    text-align: center;
}

@media (max-width: 767px) {
	.group-container {
		display: flex!important;
		flex-direction: column!important;
	}
}

.general-filter .col {
	position: relative;
	overflow: visible;
}

.general-filter .col > .select2-container--open {
	z-index: 20;
}

.search-modal--mobile .search-autocomplete {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
}

.search-modal--mobile .mobile-autocomplete-suggestions {
	position: static !important;
	top: auto !important;
	left: auto !important;
	width: 100% !important;
	max-height: none !important;
}

.general-filter .wrap-cols .item {
	position: relative;
}

.general-filter .wrap-cols .item .select2-selection__arrow::before {
	left: 0;
}

.modal-content .col-list {
	position: relative;
}

.messages-box {
	text-align: center;
}

.log-btn a {
	color: var(--bg-dark-blue);
	transition: .3s;
}

@media (min-width: 1024px) {
	.log-btn a:hover {
		color: var(--bg-white);
	}
}

.creator-dashboard__list {
	display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.creator-dashboard__list .creator-dashboard__item {
	width: 33.33%;
	margin-bottom: 15px;
}

.creator-dashboard__list .creator-dashboard__value {
	color: var(--bg-black30);
}

.tokens-table-scroll {
	width: 100%;
}

@media (max-width: 600px) {
	.tokens-table-scroll {
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
	}

	.tokens-table-scroll .table {
		width: 100%;
		min-width: 700px;
		table-layout: fixed;
	}

	.tokens-table-scroll .table th:nth-child(1),
	.tokens-table-scroll .table td:nth-child(1) {
		width: 180px;
	}

	.tokens-table-scroll .table th:nth-child(2),
	.tokens-table-scroll .table td:nth-child(2) {
		width: 100px;
	}

	.tokens-table-scroll .table th:nth-child(3),
	.tokens-table-scroll .table td:nth-child(3) {
		width: 230px;
	}

	.tokens-table-scroll .table th:nth-child(4),
	.tokens-table-scroll .table td:nth-child(4) {
		width: 190px;
		white-space: nowrap;
	}

	.creator-dashboard__list .creator-dashboard__item {
		width: 50%;
	}
}

.index-members .model-flex {
	justify-content: center;
	--flex-items: 5;
}

@media screen and (max-width: 640px) {
	.index-members .model-flex {
		--flex-items: 3;
	}
}