@import url("https://fonts.googleapis.com/css2?family=Rowdies:wght@300;400;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 {
	--width-general-aside: 302px;
	--font-size-general: 16px;
	--line-height-general: 1.2;
	--default-font: "Rowdies", sans-serif;
	--font-weight: 300;
	--color-main: #121212;
	--color-active: #e66a1f;
	--color-active-second: #fa6203;
	--color-second: #8f8f8f;
	--color-dark: #140000;
	--color-white: #fff;
	--color-black: #000;
	--color-info: #000;
	--placeholder-color: #8f8f8f;
	--color-gray: #8F8F8F;
	--color-tools: #121212;
	--color-icon: #121212;
	--bg-player-btn:255, 255, 255;
	--bg-main: #fff;
	--bg-rgb-white: 255, 255, 255;
	--bg-light-orange: #ffdba4;
	--bg-light-orange-second: #ffcd82;
	--bg-autocomplete: #fff;
	--bg-btn-delete: 255, 255, 255;
	--bg-rgb-dark: 0, 0, 0;
	--bg-radio: #7e7e7e;
	--bg-screen-btn: 227, 227, 227;
	--bg-gradient-slider-last: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
	--bg-gradient-slider-first: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
	--bg-card-gradient: linear-gradient(180deg, #ffd22a 0%, #fd8829 50%, #f05d29 100%);
	--bg-swiper-gradient-next: linear-gradient(270deg, #fff 52.6%, rgba(255, 255, 255, 0) 100%);
	--bg-swiper-gradient-prev: linear-gradient(90deg, #fff 52.6%, rgba(255, 255, 255, 0) 100%);
	--box-shadow-drop: 0px 4px 20px 0px rgba(0, 0, 0, 0.20);
	--border-radius: 15px;
	--aside-width: 302px;
	--header-height: 130px;
	--url-arrow: url('../images/arrow.svg');
}

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

:root .dark {
	--color-main: #fff;
	--color-active: #e66a1f;
	--color-active-second: #fa6203;
	--color-second: #a69171;
	--color-dark: #fff;
	--color-white: #fff;
	--color-info: #fff;
	--color-black: #121212;
	--placeholder-color: #a69171;
	--color-tools: #a69171;
	--color-icon: #fff;
	--bg-player-btn:19, 19, 19;
	--bg-main: #131313;
	--bg-rgb-white: 19, 19, 19;
	--bg-light-orange: #362409;
	--bg-light-orange-second: #3d2705;
	--bg-autocomplete: #131313;
	--box-shadow-drop: 0px 4px 20px 0px rgba(0, 0, 0, 1);
	--bg-card-gradient: linear-gradient(180deg, #ffd22a 0%, #fd8829 50%, #f05d29 100%);
	--bg-swiper-gradient-next: linear-gradient(270deg, #131313 52.6%, rgba(19, 19, 19, 0) 100%);
	--bg-swiper-gradient-prev: linear-gradient(90deg, #131313 52.6%, rgba(19, 19, 19, 0) 100%);
	--bg-btn-delete: 19, 19, 19;
	--url-arrow: url('../images/arrow-dark.svg');
	--bg-radio: #a69171;
	--bg-screen-btn: 19, 19, 19;
	--bg-gradient-slider-last: linear-gradient(to right, rgba(19, 19, 19, 0) 0%, #131313 100%);
	--bg-gradient-slider-first: linear-gradient(to left, rgba(19, 19, 19, 0) 0%, #131313 100%);
}

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

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

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

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

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

@media screen and (max-width: 768px) {
	body.show-search .search-wrapper {
		top: 50%;
		visibility: visible;
		opacity: 1;
	}
	body.show-search .hamburger,
	body.show-search .logo {
		opacity: 0;
		visibility: hidden;
	}
	body.show-search .action-search {
		transform: translateX(50px);
	}
	body.show-search .action-search svg {
		transform: rotate(90deg);
	}
	body.show-search .action-search use[href="#icon-close"] {
		display: flex;
	}
	body.show-search .action-search use[href="#icon-search"] {
		display: none;
	}
	body.show-search .header-auth {
		opacity: 0;
		visibility: hidden;
	}
}

body.autocomplete-dopdown .autocomplete {
	transform: scale(1) translate3d(0, 0, 0) rotateX(0);
	opacity: 1;
	visibility: visible;
}

@media screen and (max-width: 860px) {
	body.show-filter [data-attr-float-box] {
		transform: scale(1);
		opacity: 1;
		visibility: visible;
	}
}

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

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

a {
	color: #2600ff;
	text-decoration: none;
}

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

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

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

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

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

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

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

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	color: var(--placeholder-color);
}

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

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

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

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(--placeholder-color) !important;
}

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

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

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

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

.header {
	flex-shrink: 0;
	flex-grow: 0;
	margin-bottom: 30px;
	min-height: var(--header-height);
	position: relative;
	z-index: 5;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	flex-shrink: 1;
}

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

.header .container {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	flex-shrink: 1;
}

.header-top {
	background-color: var(--bg-light-orange);
}

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

.header-top .holder {
	display: flex;
	justify-content: space-between;
	gap: 0 20px;
}

.list-nav,
.mobile-nav {
	display: flex;
	gap: 0 10px;
	font-weight: 300;
	font-size: 14px;
}

.list-nav .item,
.mobile-nav .item {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0 10px;
}

.list-nav .item::before,
.mobile-nav .item::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 3px;
	background-color: var(--color-active);
}

.list-nav .item:first-child::before,
.mobile-nav .item:first-child::before {
	display: none;
}

.list-nav a,
.mobile-nav a {
	color: var(--color-main);
	display: flex;
	align-items: center;
	gap: 0 5px;
}

@media screen and (min-width: 1025px) {
	.list-nav a:hover,
	.mobile-nav a:hover {
		color: var(--color-active);
	}
	.list-nav a:hover span,
	.mobile-nav a:hover span {
		text-decoration: underline;
	}
}

.list-nav span,
.mobile-nav span {
	color: var(--color-active);
}

.list-nav .svg-icon,
.mobile-nav .svg-icon {
	color: var(--color-active);
}

.list-nav {
	padding: 10px 0;
}

.mobile-holder {
	background-color: var(--bg-light-orange);
	padding: 12px;
	display: none;
	flex-direction: column;
	gap: 10px 0;
}

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

.mobile-nav {
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.header-holder {
	display: flex;
	flex-grow: 1;
	flex-shrink: 1;
	align-items: center;
	padding: 20px 0;
	gap: 0 82px;
}

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

@media screen and (max-width: 1024px) {
	.header-holder {
		padding: 8px 0;
		gap: 0 20px;
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-menu {
	flex-shrink: 1;
	flex-grow: 1;
	display: flex;
}

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

.wrapped-nav {
	flex-grow: 1;
	flex-shrink: 1;
}

@media screen and (max-width: 1366px) {
	.wrapped-nav {
		padding: 40px;
	}
}

.navigation {
	display: flex;
	gap: 0 10px;
	justify-content: space-between;
}

@media screen and (max-width: 1366px) {
	.navigation {
		flex-direction: column;
		align-items: center;
		gap: 0;
	}
}

.navigation .item {
	text-transform: uppercase;
	font-size: 18px;
}

@media screen and (max-width: 1680px) {
	.navigation .item {
		font-size: 16px;
	}
}

@media screen and (max-width: 1366px) {
	.navigation .item {
		font-size: 18px;
		margin-bottom: 30px;
	}
	.navigation .item:last-child {
		margin-bottom: 0;
	}
}

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

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

.mobile-bottom {
	display: none;
	flex-grow: 0;
	flex-shrink: 0;
}

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

.mobile-action {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding-bottom: 20px;
}

.mobile-action .button {
	background: none;
	border: none;
	cursor: pointer;
	color: var(--color-tools);
	border-radius: 40px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--bg-light-orange);
	font-size: 20px;
	transition: background .3s;
}

@media screen and (min-width: 1025px) {
	.mobile-action .button:hover {
		background: var(--bg-light-orange-second);
	}
}

.header-panel {
	display: flex;
	gap: 20px;
	flex-shrink: 1;
	flex-grow: 1;
	max-width: 592px;
}

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

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

.action-search {
	display: none;
	color: var(--color-icon);
	font-size: 24px;
	border: none;
	background: none;
	cursor: pointer;
	align-items: center;
	align-self: center;
	justify-content: center;
	position: relative;
	z-index: 4;
	transform: translate3d(0, 0, 0);
	transition: transform .3s;
}

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

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

.action-search svg {
	transform: rotate(0);
	transition: transform .3s;
}

.list-action {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
	flex-grow: 0;
}

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

.list-action .button {
	background: none;
	border: none;
	cursor: pointer;
	color: var(--color-tools);
	border-radius: 40px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--bg-light-orange);
	font-size: 20px;
	transition: background .3s;
}

@media screen and (min-width: 1025px) {
	.list-action .button:hover {
		background: var(--bg-light-orange-second);
	}
}

.search-wrapper {
	flex-shrink: 1;
	flex-grow: 1;
	width: 100%;
}

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

.search-wrapper .autocomplete {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 5px);
	min-height: 54px;
	width: 100%;
	border: 2px solid var(--color-active);
	background: var(--bg-autocomplete);
	border-radius: 30px;
	transform: scale(0.98) translate3d(0, 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: 768px) {
	.search-wrapper .autocomplete {
		top: calc(100% + 10px);
	}
}

.search-wrapper .holder {
	padding: 3px 0;
	max-height: 384px;
	height: 100%;
	overflow: auto;
}

.search-wrapper .link {
	display: block;
	padding: 15px 18px;
	line-height: 1.3334;
	font-size: 18px;
	color: var(--color-second);
	transition: background .3s;
}

@media screen and (min-width: 1025px) {
	.search-wrapper .link:hover {
		background: var(--bg-light-orange);
	}
}

@media screen and (max-width: 390px) {
	.search-wrapper .link {
		font-size: 16px;
	}
}

.search-wrapper .link span {
	color: var(--color-main);
}

.search-wrapper .search {
	position: relative;
	z-index: 2;
}

@media screen and (max-width: 768px) {
	.search-wrapper .search {
		position: static;
	}
}

.search-wrapper .form {
	display: flex;
	box-shadow: inset 0 0 0 2px var(--color-active);
	border-radius: 30px;
}

.search-wrapper .input {
	background: none;
	border: none;
	width: 100%;
	height: 50px;
	padding: 14px 0 14px 20px;
	color: var(--color-main);
}

.search-wrapper .button {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 24px;
	width: 64px;
	height: 50px;
	display: flex;
	color: var(--color-icon);
	align-items: center;
	justify-content: center;
	transition: color .3s;
}

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

.header-auth {
	display: flex;
	align-items: center;
	position: relative;
}

@media screen and (max-width: 768px) {
	.header-auth {
		transform: translateZ(0);
		transition: opacity .3s, visibility .3s, transform .3s;
		visibility: visible;
	}
}

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

.header-auth .btn {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	overflow: hidden;
	border-radius: 100%;
	border: none;
	font-size: 20px;
	background: var(--color-active);
	color: var(--color-white);
	transition: background .3s;
}

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

@media screen and (max-width: 768px) {
	.header-auth .btn {
		width: 30px;
		height: 30px;
		font-size: 12px;
	}
}

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

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

.drop-box .wrap {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 5px;
	padding: 10px;
}

.drop-box .button {
	width: 100%;
	cursor: pointer;
	padding: 9px;
	border-radius: 20px;
	border: none;
	font-weight: 400;
	background: var(--color-active);
	color: var(--color-white);
	transition: background .3s;
}

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

.drop-box .button.second {
	background: var(--bg-light-orange);
	font-weight: 300;
	color: var(--color-main);
}

@media screen and (min-width: 1025px) {
	.drop-box .button.second:hover {
		background: var(--bg-light-orange-second);
	}
}

.user-list a {
	display: flex;
	align-items: center;
	padding: 10px 20px;
	gap: 10px;
	color: var(--color-main);
	font-size: 16px;
	text-transform: uppercase;
	transition: background .3s;
}

@media screen and (min-width: 1025px) {
	.user-list a:hover {
		background: var(--bg-light-orange);
	}
}

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

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

.section {
	margin-bottom: 50px;
}

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

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

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

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

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

.swiper {
	display: none;
}

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

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

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

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

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

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

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

.slider-top a {
	display: flex;
	align-items: center;
	border-radius: 20px;
	background: var(--bg-light-orange);
	font-size: 14px;
	color: var(--color-tools);
	padding: 10px 20px;
	line-height: 1.143;
}

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

.swiper-button-next,
.swiper-button-prev {
	font-size: 14px;
	display: flex;
}

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

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

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

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

.headline {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-bottom: 15px;
	line-height: 1.15;
}

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

.headline.primary {
	gap: 25px;
	flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
	.headline.primary {
		flex-direction: column;
		gap: 20px;
	}
}

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

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

.headline.filter {
	gap: 10px;
	flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

@media screen and (min-width: 1025px) {
	[data-attr-aside-grid] {
		--gap: 20px;
		padding-left: calc(var(--width-general-aside) + var(--gap));
	}
}

@media screen and (max-width: 1024px) {
	[data-attr-desktop] {
		display: none;
	}
}

[data-attr-mobile] {
	display: none;
}

@media screen and (max-width: 1024px) {
	[data-attr-mobile] {
		display: flex;
	}
}

.filter-btn {
	font-size: 24px;
	background: none;
	cursor: pointer;
	color: var(--color-icon);
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	display: none;
}

@media screen and (max-width: 860px) {
	.filter-btn {
		display: flex;
	}
}

.sorting {
	position: relative;
}

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

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

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

.sorting .btn {
	display: flex;
	align-items: center;
	font-size: 16px;
	text-transform: uppercase;
	gap: 5px;
	cursor: pointer;
	border: none;
	background: none;
	transition: color .3s;
	color: var(--color-main);
}

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

.sorting .btn svg {
	flex-grow: 0;
	flex-shrink: 0;
	font-size: 12px;
	transition: transform .3s;
}

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

.sorting a {
	display: flex;
	align-items: center;
	padding: 10px 20px;
	text-transform: uppercase;
	color: var(--color-tools);
	transition: background .3s;
}

@media screen and (min-width: 1025px) {
	.sorting a:hover {
		background: var(--bg-light-orange);
	}
}

.sorting-single {
	width: 100%;
	display: flex;
	gap: 5px 30px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

@media screen and (max-width: 1024px) {
	.sorting-single {
		gap: 10px 20px;
	}
}

.sorting-single a {
	color: var(--color-second);
	transition: color .3s;
	font-weight: 400;
	font-size: 18px;
	text-transform: uppercase;
}

.sorting-single a.active {
	color: var(--color-active);
}

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

@media screen and (max-width: 1024px) {
	.sorting-single a {
		font-size: 16px;
	}
}

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

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

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

@media screen and (max-width: 480px) {
	.main-grid {
		--flex-items: 1;
		margin: 0 -10px;
	}
}

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

.blog-grid {
	--flex-gap: 10px;
	--flex-items: 3;
	display: flex;
	flex-wrap: wrap;
	gap: 20px var(--flex-gap);
}

@media screen and (max-width: 1024px) {
	.blog-grid {
		--flex-items: 2;
	}
}

@media screen and (max-width: 640px) {
	.blog-grid {
		--flex-items: 1;
	}
}

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

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

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

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

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

.card-blog .title {
	font-size: 20px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.card-blog .sub {
	font-size: 14px;
	line-height: 1.4;
	color: var(--color-second);
	margin-top: 5px;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media screen and (max-width: 480px) {
	.card-blog .sub {
		font-size: 12px;
	}
}

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

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

.card .title {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color .3s;
}

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

@media screen and (max-width: 480px) {
	.card .media {
		border-radius: 0;
	}
}

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

.models-grid {
	--flex-gap: 10px;
	--flex-items: 6;
	display: flex;
	flex-wrap: wrap;
	gap: 30px var(--flex-gap);
}

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

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

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

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

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

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

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

@media screen and (max-width: 480px) {
	.card-media {
		border-radius: 0;
	}
}

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

.card-title {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--color-main);
	transition: color .3s;
}

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

.duration {
	position: absolute;
	left: 10px;
	bottom: 10px;
	font-size: 12px;
	z-index: 2;
	border-radius: 20px;
	-webkit-backdrop-filter: blur(15px);
	        backdrop-filter: blur(15px);
	background: rgba(var(--bg-rgb-white), 0.6);
	color: var(--color-dark);
	padding: 5px 7px;
}

.btn-edit {
	left: 10px;
}

.btn-delete {
	right: 10px;
}

.btn-delete,
.btn-edit {
	position: absolute;
	bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	width: 30px;
	height: 30px;
	font-size: 15px;
	border-radius: 100%;
	overflow: hidden;
	border: none;
	cursor: pointer;
	background: rgba(var(--bg-btn-delete), 0.7);
	color: var(--color-dark);
	transition: background .3s, color .3s;
}

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

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

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

.card-list li {
	position: relative;
}

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

@media screen and (max-width: 390px) {
	.card-list li::before {
		right: -7px;
	}
}

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

.card-list a {
	color: var(--color-active);
	transition: color .3s;
}

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

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

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

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

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

.card-model .title {
	margin-top: 5px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: 400;
	font-size: 22px;
}

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

@media screen and (max-width: 480px) {
	.card-model .title {
		font-size: 18px;
	}
}

.card-model .sticky {
	display: flex;
	align-items: center;
	gap: 5px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10px;
	font-weight: 400;
	font-size: 18px;
	text-transform: uppercase;
	z-index: 2;
	border-radius: 40px;
	line-height: 1;
	border: 3px solid var(--color-black);
	background: var(--bg-card-gradient);
	color: var(--color-black);
	padding: 2px 11px;
	max-width: 235px;
	width: 100%;
	justify-content: center;
	margin: 0 auto;
}

@media screen and (max-width: 1640px) {
	.card-model .sticky {
		font-size: 12px;
		max-width: 168px;
		gap: 3px;
		padding: 0 11px;
	}
}

@media screen and (max-width: 390px) {
	.card-model .sticky {
		font-size: 10px;
		max-width: 130px;
		padding: 2px 5px;
		border: 2px solid var(--color-black);
	}
}

.card-model .sticky svg {
	font-size: 20px;
	flex-grow: 0;
	flex-shrink: 0;
}

@media screen and (max-width: 1640px) {
	.card-model .sticky svg {
		font-size: 15px;
	}
}

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

.card-content {
	margin-top: 5px;
}

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

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

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

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

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

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

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

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

.pagination-list .list .item.active a {
	pointer-events: none;
	background: var(--color-second);
	color: var(--color-white);
}

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

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

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

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

.pagination-list .item.pager a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	min-width: 44px;
}

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

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

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

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

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

.pagination-list .dots a {
	transition: color .3s;
}

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

.view-more {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
}

@media screen and (max-width: 768px) {
	.view-more {
		margin-top: 20px;
	}
}

.view-more .link {
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	cursor: pointer;
	font-weight: 300;
	font-size: 16px;
	color: var(--color-tools);
	background: var(--bg-light-orange);
	border-radius: 30px;
	padding: 10px 20px;
	line-height: 1.25;
	max-width: 218px;
	width: 100%;
	transition: background .3s, color .3s;
}

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

.view-more .link.second {
	text-transform: uppercase;
	font-size: 20px;
	padding: 10px 50px;
	font-weight: 400;
	max-width: -moz-fit-content;
	max-width: fit-content;
}

@media screen and (max-width: 390px) {
	.view-more .link.second {
		font-size: 18px;
	}
}

.description {
	margin-top: 50px;
	font-weight: 300;
	font-size: 18px;
	text-align: center;
	color: var(--color-second);
}

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

.search-field {
	margin-bottom: 20px;
}

.search-field .wrap {
	display: flex;
	border-bottom: 2px solid var(--color-active);
}

.search-field input {
	width: 100%;
	flex-grow: 1;
	flex-shrink: 1;
	border: none;
	font-size: 14px;
	padding: 10px;
	background: none;
	color: var(--color-main);
}

.search-field .btn {
	flex-grow: 0;
	flex-shrink: 0;
	font-size: 20px;
	cursor: pointer;
	color: var(--color-second);
	background: none;
	border: none;
	transition: color .3s;
}

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

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

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

.wrapped-box .row {
	margin-bottom: 50px;
}

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

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

@media screen and (max-width: 860px) {
	.wrapped-box .pagination-list .list .item {
		display: flex;
	}
}

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

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

@media screen and (max-width: 860px) {
	.wrapped-box .pagination-list .list .item.active {
		margin-left: 6px;
	}
}

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

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

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

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

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

@media screen and (max-width: 480px) {
	.wrapped-box .main-grid {
		--flex-items: 1;
		margin: 0 -10px;
	}
}

.aside {
	width: var(--width-general-aside);
	background: var(--bg-main);
	display: flex;
	flex-direction: column;
	flex-grow: 0;
	flex-shrink: 0;
}

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

.aside.second {
	padding-top: 40px;
}

.aside .input {
	border: 2px solid var(--color-active);
	border-radius: 30px;
	padding: 10px 20px;
	width: 100%;
	font-size: 14px;
	background: transparent;
	color: var(--color-main);
}

.aside .name {
	color: var(--color-main);
	margin-bottom: 5px;
	display: block;
}

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

.aside .group .col {
	width: 50%;
}

.aside .btn {
	width: 100%;
	border-radius: 20px;
	font-weight: 400;
	font-size: 16px;
	text-transform: uppercase;
	border: none;
	transition: background .3s;
	padding: 10px 20px;
	cursor: pointer;
	color: var(--color-white);
	background-color: var(--color-active);
	transition: background .3s;
}

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

.aside .box {
	margin-bottom: 20px;
}

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

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

.aside-heading .title {
	font-weight: 400;
	font-size: 20px;
	display: flex;
	align-items: center;
	flex-grow: 1;
	flex-shrink: 1;
}

.aside-heading .title.secondary {
	font-size: 30px;
}

@media screen and (max-width: 768px) {
	.aside-heading .title.secondary {
		font-size: 28px;
	}
}

@media screen and (max-width: 768px) {
	.aside-heading .title.secondary {
		font-size: 24px;
	}
}

@media screen and (max-width: 860px) {
	[data-attr-float-box] {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 991;
		background-color: var(--bg-main);
		transform: scale(0.8);
		padding: 20px;
		opacity: 0;
		visibility: hidden;
		overflow: hidden;
		overflow-y: auto;
		transition: opacity .3s, visibility .3s, transform .3s;
	}
}

.box-finder {
	display: flex;
	flex-direction: column;
}

.box-finder form {
	width: 100%;
}

.list-finder {
	margin-top: 20px;
}

.list-finder .title {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 20px;
}

.list-finder .list {
	display: flex;
	flex-direction: column;
	gap: 25px 0;
}

.list-finder .item a {
	display: flex;
	align-items: flex-start;
	gap: 0 10px;
}

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

.list-finder .item .ava {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	overflow: hidden;
	border-radius: 100%;
	border: none;
	font-size: 18px;
	background: var(--color-active);
	color: var(--color-white);
	flex-shrink: 0;
	flex-grow: 0;
}

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

.list-finder .item .sup {
	color: var(--color-second);
}

.list-finder .item .author {
	color: var(--color-active);
	transition: color .3s;
	font-size: 18px;
}

.list-finder .item .comment {
	margin-top: 3px;
	display: block;
	color: var(--color-second);
}

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

@media screen and (max-width: 860px) {
	.aside-close {
		display: flex;
	}
}

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

@media screen and (max-width: 860px) {
	.content-box {
		order: 1;
	}
}

.aside-list li {
	margin-bottom: 18px;
}

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

.aside-list a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-weight: 300;
	font-size: 18px;
	color: var(--color-main);
	transition: color .3s;
}

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

.aside-list span:last-child {
	color: var(--color-second);
	font-size: 16px;
	transition: color .3s;
}

.model-wrapper {
	display: flex;
	gap: 30px 20px;
}

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

.model-wrapper .content {
	flex-grow: 1;
	flex-shrink: 1;
}

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

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

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

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

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

.general-aside .row {
	margin-top: 30px;
}

@media screen and (max-width: 1024px) {
	.general-aside .row {
		margin-top: 20px;
	}
}

@media screen and (max-width: 1024px) {
	.general-aside .row.second {
		display: none;
	}
}

.general-aside .row:first-child {
	margin-top: 0;
}

.general-aside .title {
	font-weight: 400;
	font-size: 30px;
	margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
	.general-aside .title {
		font-size: 26px;
	}
}

@media screen and (max-width: 480px) {
	.general-aside .title {
		font-size: 24px;
		text-align: center;
	}
}

.general-aside .desc {
	font-size: 14px;
	color: var(--color-second);
	line-height: 1.4;
}

.general-aside .list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
}

.general-aside .list.second {
	gap: 20px;
}

@media screen and (max-width: 480px) {
	.general-aside .list {
		justify-content: center;
	}
}

.general-aside .list a {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 14px;
	color: var(--color-active);
	transition: color .3s;
}

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

.general-aside .btn {
	width: 100%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: 28px;
	border: none;
	font-size: 16px;
	padding: 10px;
	line-height: 1.25;
	font-weight: 400;
	background: var(--color-active);
	color: var(--color-white);
	transition: background .3s;
}

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

.general-aside .btn.second {
	background: var(--bg-light-orange);
	color: var(--color-tools);
}

@media screen and (min-width: 1025px) {
	.general-aside .btn.second:hover {
		background: var(--bg-light-orange-second);
	}
}

.general-aside .btn svg {
	font-size: 20px;
}

.general-aside .social-list {
	gap: 20px;
}

@media screen and (max-width: 480px) {
	.general-aside .social-list {
		gap: 10px;
	}
}

.group-btn {
	margin-bottom: 20px;
}

.group-btn .btn {
	margin-bottom: 10px;
}

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

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

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

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

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

.title-secondary {
	font-weight: 400;
	font-size: 20px;
	margin-bottom: 25px;
}

.model-list li {
	margin-bottom: 20px;
}

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

.model-list a {
	display: inline-flex;
	align-items: center;
	font-weight: 300;
	font-size: 16px;
	color: var(--color-main);
	transition: color .3s;
}

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

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

.social-list a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	overflow: hidden;
	border-radius: 100%;
}

@media screen and (min-width: 1025px) {
	.social-list a:hover img {
		transform: scale(1.03);
	}
}

.social-list img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	transition: transform .3s;
	transform: scale(1);
	will-change: transform;
}

.partners-field {
	text-align: center;
}

.partners-field a {
	color: var(--color-icon);
	transition: color .3s;
	display: inline-block;
	vertical-align: top;
}

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

.partners-field .row {
	margin-bottom: 20px;
}

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

.partners-field .text {
	margin-bottom: 5px;
}

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

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

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

@media screen and (max-width: 860px) {
	.wrap-tags {
		--flex-items: 2;
		--flex-gap: 20px;
	}
}

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

@media screen and (max-width: 1366px) {
	.wrap-tags .list {
		max-width: 100%;
	}
}

.wrap-tags .title {
	font-weight: 400;
	font-size: 24px;
	line-height: 1;
	color: var(--color-active);
	display: block;
	padding: 25px 20px 15px;
}

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

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

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

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

.wrap-tags span:last-child {
	flex-grow: 0;
	flex-shrink: 0;
	color: var(--color-second);
	font-weight: 300;
	font-size: 14px;
}

.blog-field {
	max-width: 1000px;
	margin: 0 auto;
	padding-bottom: 20px;
	border-bottom: 2px solid var(--color-second);
}

@media screen and (max-width: 768px) {
	.blog-field {
		padding-bottom: 0;
		border-bottom: none;
	}
}

.blog-field .name {
	font-size: 18px;
	display: flex;
	align-items: center;
	gap: 5px 10px;
}

.blog-field .name a {
	color: var(--color-active);
	transition: color .3s;
}

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

.blog-field .info {
	margin-top: 15px;
	font-size: 18px;
	color: var(--color-info);
}

.blog-field .info.second {
	margin-top: 30px;
}

@media screen and (max-width: 768px) {
	.blog-field .info.second {
		margin-top: 20px;
	}
}

.blog-field .info p {
	margin-bottom: 30px;
}

@media screen and (max-width: 390px) {
	.blog-field .info p {
		margin-bottom: 20px;
	}
}

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

.models-list {
	margin-top: 20px;
}

.models-list .wrapped {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
	.models-list .wrapped {
		flex-direction: column;
	}
}

.models-list .wrapped:last-child {
	margin-bottom: 0;
}

.models-list .title {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 400;
	font-size: 34px;
	color: var(--color-main);
	transition: color .3s;
}

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

@media screen and (max-width: 768px) {
	.models-list .title {
		font-size: 28px;
	}
}

@media screen and (max-width: 480px) {
	.models-list .title {
		font-size: 24px;
	}
}

.models-list .desc {
	font-size: 18px;
	line-height: 1.3;
	color: var(--color-info);
	margin-top: 15px;
}

@media screen and (max-width: 768px) {
	.models-list .desc {
		margin-top: 5px;
	}
}

.models-list .number {
	color: var(--color-active);
	transition: color .3s;
}

.models-list img {
	border-radius: var(--border-radius);
	height: auto;
	display: block;
	max-width: 100%;
	width: 100%;
}

.models-list .col {
	flex-grow: 1;
	flex-shrink: 1;
}

@media screen and (max-width: 768px) {
	.models-list .col {
		text-align: center;
	}
}

.models-list .col.second {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 302px;
	width: 100%;
	display: flex;
	align-items: center;
}

@media screen and (max-width: 768px) {
	.models-list .col.second {
		margin: 0 auto;
	}
}

.models-list .card-list {
	margin-top: 15px;
	font-size: 16px;
}

@media screen and (max-width: 768px) {
	.models-list .card-list {
		justify-content: center;
		margin-top: 5px;
	}
}

.models-list .link {
	display: inline-flex;
	justify-content: center;
	background: var(--bg-light-orange);
	color: var(--color-tools);
	padding: 10px 30px;
	cursor: pointer;
	border: none;
	font-weight: 400;
	text-transform: uppercase;
	border-radius: 20px;
	line-height: 1.251;
	margin-top: 15px;
	transition: background .3s, color .3s;
}

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

@media screen and (max-width: 768px) {
	.models-list .link {
		margin-top: 5px;
	}
}

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

.social-box {
	font-size: 18px;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 30px;
	justify-content: flex-end;
}

@media screen and (max-width: 768px) {
	.social-box {
		margin-top: 20px;
	}
}

.main-grid-circle {
	--flex-gap: 4.5%;
	--flex-items: 7;
	display: flex;
	flex-wrap: wrap;
	gap: var(--flex-gap);
}

.card-circle {
	margin-bottom: 20px;
	width: calc((100% / var(--flex-items)) - (((var(--flex-items) - 1) / var(--flex-items)) * var(--flex-gap)));
}

@media screen and (max-width: 1366px) {
	.card-circle {
		--flex-items: 5;
	}
}

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

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

@media screen and (max-width: 374px) {
	.card-circle {
		--flex-items: 2;
	}
}

.card-circle .wrap {
	width: 100%;
	display: block;
	color: var(--color-main);
	transition: color .3s;
}

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

.card-circle .avatar {
	overflow: hidden;
	border-radius: 160px;
	display: flex;
	margin-bottom: 12px;
}

.card-circle .avatar img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	transition: opacity .3s;
}

.card-circle .tools {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 2px 0;
}

.card-circle .date {
	color: var(--color-gray);
}

.upload-frame {
	display: flex;
	gap: 30px 100px;
}

@media screen and (max-width: 1366px) {
	.upload-frame {
		gap: 30px;
	}
}

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

.upload-frame .title {
	font-weight: 400;
	font-size: 30px;
	margin-bottom: 25px;
	color: var(--color-icon);
}

@media screen and (max-width: 1366px) {
	.upload-frame .title {
		font-size: 24px;
		margin-bottom: 15px;
	}
}

.upload-frame .col {
	width: 45%;
}

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

.upload-frame .col.second {
	width: 55%;
}

@media screen and (max-width: 1024px) {
	.upload-frame .col.second {
		width: 100%;
	}
}

.upload-frame .name {
	margin-bottom: 5px;
	display: inline-block;
	vertical-align: top;
}

.upload-frame .input {
	border: 2px solid var(--color-active);
	border-radius: 30px;
	padding: 10px 20px;
	width: 100%;
	font-size: 14px;
	background: transparent;
	color: var(--color-main);
}

.upload-frame .btn {
	cursor: pointer;
	font-weight: 400;
	font-size: 16px;
	text-transform: uppercase;
	color: var(--color-white);
	background: var(--color-active);
	transition: background .3s;
	border-radius: 28px;
	padding: 10px 30px;
	border: none;
}

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

.upload-frame .row {
	margin-bottom: 20px;
}

.upload-frame .row.checked .input,
.upload-frame .row.checked .mask-button {
	opacity: 1;
	pointer-events: all;
}

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

[data-attr-check] .mask-button,
[data-attr-check] .input {
	pointer-events: none;
	opacity: .6;
}

.rules-box {
	color: var(--color-second);
	line-height: 1.25;
}

.input-choice {
	display: none;
}

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

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

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

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

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

.twocolumns {
	display: flex;
	gap: 30px;
}

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

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

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

.videoplayer {
	margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
	.videoplayer {
		margin: 0 -10px 10px;
	}
}

.videoplayer .player {
	border-radius: 10px;
	display: block;
	height: auto;
	width: 100%;
	overflow: hidden;
	position: relative;
	padding-bottom: 56.0788%;
}

@media screen and (max-width: 768px) {
	.videoplayer .player {
		border-radius: 0;
	}
}

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

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

.play-btn {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0) scale(1);
	width: 120px;
	height: 120px;
	background: rgba(var(--bg-player-btn), 0.7);
	color: var(--color-active);
	font-size: 43px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	cursor: pointer;
	transition: transform .3s;
}

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

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

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

.spot .item {
	margin-bottom: 23px;
}

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

.spot img {
	max-width: 100%;
	border-radius: 10px;
	width: 100%;
	height: auto;
}

.tabs-headline {
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	overflow: hidden;
	white-space: nowrap;
	overflow-x: auto;
	gap: 5px 30px;
}

@media screen and (max-width: 768px) {
	.tabs-headline {
		margin-bottom: 5px;
	}
}

@media screen and (max-width: 390px) {
	.tabs-headline {
		gap: 5px 10px;
		margin: 0 -10px 5px;
		padding: 0 10px;
	}
}

.tabs-headline .item.active .tab-link {
	color: var(--color-active);
}

.tab-link {
	font-weight: 400;
	font-size: 30px;
	text-transform: capitalize;
	color: var(--color-main);
	transition: color .3s;
}

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

@media screen and (max-width: 768px) {
	.tab-link {
		font-size: 26px;
	}
}

@media screen and (max-width: 480px) {
	.tab-link {
		font-size: 24px;
	}
}

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

.tabs-content {
	display: none;
}

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

.banner {
	text-align: center;
}

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

.slider-albums {
	position: relative;
}

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

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

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

.card-screen .media {
	padding-bottom: 57.165%;
	height: auto;
	width: 100%;
	overflow: hidden;
	position: relative;
}

.card-screen img {
	border-radius: 15px;
	position: absolute;
	bottom: 0;
	height: 100%;
	left: 0;
	-o-object-fit: cover;
	   object-fit: cover;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 2;
}

.slider-screen {
	position: relative;
}

.slider-screen::before, .slider-screen:after {
	position: absolute;
	content: '';
	top: 0;
	z-index: 2;
	height: calc(100% - 30px);
	width: 125px;
}

@media screen and (max-width: 768px) {
	.slider-screen::before, .slider-screen:after {
		display: none;
	}
}

.slider-screen::before {
	right: 0;
	background: var(--bg-gradient-slider-last);
}

.slider-screen:after {
	left: 0;
	background: var(--bg-gradient-slider-first);
}

.slider-screen .swiper-slide-active img {
	border: 2px solid var(--color-active);
}

.swiper-screen-prev {
	right: auto;
	left: -22px;
}

@media screen and (max-width: 1024px) {
	.swiper-screen-prev {
		left: 0;
	}
}

.swiper-screen-next {
	left: auto;
	right: -22px;
}

@media screen and (max-width: 1024px) {
	.swiper-screen-next {
		right: 0;
	}
}

.swiper-screen-prev,
.swiper-screen-next {
	opacity: .6;
	width: 44px;
	height: 44px;
	align-items: center;
	font-size: 14px;
	border-radius: 100%;
	overflow: hidden;
	margin: 0;
	top: calc(50% - 15px);
	transform: translate3d(0, -50%, 0);
	background: rgba(var(--bg-screen-btn), 0.7);
	color: var(--color-icon);
	-webkit-backdrop-filter: blur(15px);
	        backdrop-filter: blur(15px);
	transition: color .3s, background .3s;
}

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

.video-tools {
	margin-top: 20px;
	display: flex;
	gap: 10px 20px;
}

@media screen and (max-width: 768px) {
	.video-tools {
		flex-direction: column-reverse;
	}
}

.video-tools .card-list {
	margin-top: 10px;
}

@media screen and (max-width: 768px) {
	.video-tools .card-list {
		margin-top: 15px;
	}
}

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

.video-tools .col.second {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 240px;
	width: 100%;
}

@media screen and (max-width: 768px) {
	.video-tools .col.second {
		margin: 0 auto;
		max-width: 500px;
	}
}

.video-tools .title {
	font-weight: 400;
	font-size: 30px;
	margin-bottom: 5px;
}

@media screen and (max-width: 1024px) {
	.video-tools .title {
		display: none;
	}
}

.video-tools .hold {
	margin-top: 30px;
}

@media screen and (max-width: 768px) {
	.video-tools .hold {
		margin-top: 20px;
	}
}

.title-mob {
	font-weight: 400;
	font-size: 24px;
	margin-bottom: 5px;
	display: none;
}

@media screen and (max-width: 1024px) {
	.title-mob {
		display: block;
	}
}

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

.creator-box .ava {
	width: 60px;
	height: 86px;
	flex-grow: 0;
	flex-shrink: 0;
	border-radius: var(--border-radius);
	overflow: hidden;
}

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

.creator-box .name {
	color: var(--color-active);
	transition: color .3s;
	font-size: 18px;
}

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

.creator-box .btn {
	margin-top: 5px;
	display: flex;
	align-items: center;
	font-weight: 400;
	font-size: 14px;
	color: var(--color-active);
	border: 2px solid var(--color-active);
	border-radius: 30px;
	padding: 9px 19px;
	line-height: 1.286;
	background: none;
	cursor: pointer;
	transition: border .3s, color .3s;
}

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

.block-user {
	display: flex;
	align-items: center;
	gap: 5px;
}

.block-user.secondary {
	margin-top: 10px;
}

.block-user .name {
	color: var(--color-second);
}

.block-user .info {
	display: flex;
	align-items: center;
	gap: 5px;
}

.block-user .user {
	color: var(--color-active);
	transition: color .3s;
}

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

.block-user .btn {
	font-weight: 400;
	font-size: 14px;
	color: var(--color-active);
	border: 2px solid var(--color-active);
	border-radius: 30px;
	padding: 9px 19px;
	line-height: 1.286;
	background: none;
	cursor: pointer;
	transition: border .3s, color .3s;
}

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

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

.reactions-box .group {
	display: flex;
	align-items: center;
	flex-grow: 0;
	flex-shrink: 0;
	gap: 5px;
}

.reactions-box .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	cursor: pointer;
	border: none;
	background: var(--bg-light-orange);
	color: var(--color-tools);
	border-radius: 100%;
	overflow: hidden;
	padding: 12px;
}

.reactions-box .btn.active {
	color: var(--color-white);
	background: var(--color-active);
}

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

.reactions-box .rating {
	flex-grow: 1;
	flex-shrink: 1;
}

.reactions-box .voters {
	display: block;
	color: var(--color-second);
	text-align: center;
	margin-bottom: 10px;
}

.reactions-box .scale-holder {
	height: 4px;
	border-radius: 20px;
	background-color: var(--color-second);
	display: block;
	position: relative;
	overflow: hidden;
}

.reactions-box .scale {
	position: absolute;
	left: 0;
	top: 0;
	height: 4px;
	background-color: var(--color-active);
	border-radius: 20px;
}

.group-btns .item {
	margin-bottom: 10px;
}

.group-btns .item.active .button {
	color: var(--color-white);
	background: var(--color-active);
}

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

.group-btns .button {
	width: 100%;
	cursor: pointer;
	border: none;
	background: var(--bg-light-orange);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: 28px;
	color: var(--color-tools);
	font-weight: 400;
	font-size: 16px;
	padding: 10px 20px;
}

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

.group-btns svg {
	font-size: 20px;
	flex-grow: 0;
	flex-shrink: 0;
}

.tab-box {
	display: none;
	margin-top: 30px;
}

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

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

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

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

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

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

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

.violation-box textarea {
	padding: 15px 20px;
	resize: none;
	height: 100px;
	border-radius: 15px;
	border: 2px solid var(--color-active);
	width: 100%;
	font-size: 14px;
	background: transparent;
	color: var(--color-main);
}

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

.label-violation {
	display: flex;
	margin-bottom: 10px;
}

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

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

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

.input-violation {
	display: none;
}

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

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

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

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

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

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

.thumb .name {
	min-height: 36px;
	display: flex;
	align-items: center;
}

.thumb a {
	background: var(--bg-light-orange);
	color: var(--color-tools);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	padding: 10px 20px;
	line-height: 1.143;
	font-size: 14px;
}

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

.thumb .btn {
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	overflow: hidden;
	border-radius: 100%;
	border: none;
	background: var(--bg-light-orange);
	color: var(--color-tools);
}

.thumb .btn::before {
	content: '+';
	font-size: 14px;
}

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

.share-field {
	max-width: 710px;
}

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

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

.share-field .input {
	border: 2px solid var(--color-active);
	width: 100%;
	font-size: 14px;
	background: transparent;
	color: var(--color-main);
	border-radius: 30px;
	height: 40px;
	padding: 10px 20px;
}

.comments-box {
	margin-top: 30px;
	max-width: 930px;
}

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

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

@media screen and (max-width: 768px) {
	.comment-headline {
		margin-bottom: 10px;
	}
}

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

.comment-title {
	font-weight: 400;
	font-size: 30px;
}

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

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

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

.btn-comment {
	flex-grow: 0;
	flex-shrink: 0;
	padding: 11px 17px;
	color: var(--color-tools);
	background: var(--bg-light-orange);
	transition: background .3s;
	border-radius: 30px;
	border: none;
	cursor: pointer;
	font-size: 14px;
	font-weight: 400;
}

@media screen and (min-width: 1025px) {
	.btn-comment:hover {
		background: var(--bg-light-orange-second);
	}
}

.comment-field {
	display: none;
	margin-bottom: 20px;
	max-width: 710px;
}

.comment-field .row {
	margin-top: 10px;
}

.comment-field .row:first-child {
	margin-top: 0;
}

.comment-field .row.second {
	max-width: 318px;
}

.comment-field .input,
.comment-field .textarea {
	border: 2px solid var(--color-active);
	width: 100%;
	font-size: 14px;
	background: transparent;
	color: var(--color-main);
}

.comment-field .input {
	padding: 9px 20px;
	border-radius: 30px;
	height: 40px;
}

.comment-field .textarea {
	padding: 15px 20px;
	resize: none;
	height: 100px;
	border-radius: 15px;
}

.comment-field .btn,
.violation-box .btn {
	margin-top: 20px;
	display: block;
	font-weight: 400;
	font-size: 16px;
	padding: 10px 20px;
	line-height: 1.25;
	color: var(--color-white);
	background-color: var(--color-active);
	border-radius: 20px;
	border: none;
	cursor: pointer;
	transition: background .3s;
}

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

@media screen and (max-width: 768px) {
	.comment-field .btn,
	.violation-box .btn {
		margin-top: 10px;
	}
}

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

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

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

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

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

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

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

.comments-list .date {
	font-size: 14px;
	color: var(--color-second);
}

.comments-list .text {
	line-height: 1.25;
}

.footer {
	flex-shrink: 0;
	flex-grow: 0;
	margin-top: 50px;
	padding-bottom: 30px;
}

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

.spot-box {
	background: var(--bg-light-orange);
	border-radius: 10px;
	padding: 18px 30px 30px;
}

.spot-box .text {
	margin-bottom: 10px;
	font-size: 10px;
	line-height: 1.6;
	letter-spacing: .3em;
	text-transform: uppercase;
	text-align: center;
	color: var(--color-main);
}

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

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

.spot-box .item {
	padding: 5px;
}

.spot-box a {
	display: block;
}

.spot-box img {
	border-radius: 10px;
	max-width: 100%;
}

.footer-holder {
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

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

.footer-holder .list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 38px;
	margin-bottom: 25px;
	justify-content: center;
}

.footer-holder a {
	font-weight: 400;
	color: var(--color-main);
	text-transform: uppercase;
	transition: color .3s;
}

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

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

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

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

.footer-text {
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
	color: var(--color-second);
	margin-bottom: 25px;
}

.copyright {
	font-size: 14px;
	color: var(--color-second);
}

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 768px) {
	.modal-content .hold.secondary {
		margin-bottom: 20px;
	}
}

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

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

.modal-content .input,
.modal-content .textarea {
	border: 2px solid var(--color-active);
	border-radius: 30px;
	padding: 10px 20px;
	width: 100%;
	font-size: 14px;
	background: transparent;
	color: var(--color-main);
}

.modal-content .textarea {
	resize: none;
	height: 120px;
}

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

.modal-content .btn,
.modal-content .button {
	width: 100%;
	border-radius: 20px;
	font-weight: 400;
	font-size: 16px;
	text-transform: uppercase;
	border: none;
	transition: background .3s;
	padding: 10px 20px;
	cursor: pointer;
}

.modal-content .btn {
	color: var(--color-white);
	background-color: var(--color-active);
}

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

.modal-content .button {
	color: var(--color-tools);
	background-color: var(--bg-light-orange);
}

@media screen and (min-width: 1025px) {
	.modal-content .button:hover {
		background-color: var(--bg-light-orange-second);
	}
}

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

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

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

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

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

.modal-title .ava {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	overflow: hidden;
	border-radius: 100%;
	border: none;
	font-size: 20px;
	background: var(--color-active);
	color: var(--color-white);
	transition: background .3s;
}

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

.modal-title .title {
	flex-grow: 1;
	flex-shrink: 1;
	font-weight: 400;
	font-size: 30px;
	line-height: 1;
	color: var(--color-main);
	text-transform: capitalize;
}

@media screen and (max-width: 768px) {
	.modal-title .title {
		font-size: 24px;
		padding-right: 30px;
	}
}

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

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

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

.checkbox-label .checkbox::after {
	content: "";
	position: absolute;
	opacity: 0;
	transition: opacity .2s;
	left: 5px;
	top: 1px;
	width: 7px;
	height: 11px;
	border: solid var(--color-white);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.checkbox-input {
	display: none;
}

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

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

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

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

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

.modal-field {
	display: flex;
}

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

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

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

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

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

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

.btn-submit {
	margin-top: 30px;
	display: block;
	font-weight: 400;
	font-size: 14px;
	padding: 11px 31px;
	line-height: 1.286;
	color: var(--color-white);
	background-color: var(--color-active);
	border-radius: 20px;
	border: none;
	cursor: pointer;
	transition: background .3s;
}

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

.mask-button {
	position: relative;
}

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

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

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

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

.select2-container--default .select2-selection--single {
	border: none;
	background: none;
	border-radius: 20px;
	border: 2px solid var(--color-active);
	height: 40px;
	display: flex;
	align-items: center;
	font-family: "Rowdies", sans-serif;
	font-weight: 300;
	font-size: 14px;
}

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

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

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

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

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

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

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

.select2-dropdown {
	border: none;
	border: 2px solid var(--color-active);
	border-radius: var(--border-radius);
	overflow: hidden;
	background: var(--bg-main);
}

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

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

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

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

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

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