@import url("https://fonts.googleapis.com/css2?family=Ubuntu+Mono&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;
}

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

a * {
	cursor: pointer;
}

input,
textarea {
	outline: none;
}

:root {
	--font-size-general: 16px;
	--line-height-general: 1.2;
	--default-font: "Ubuntu+Mono", sans-serif;
	--color-main: #ecf4d6;
	--color-dark: 236, 244, 214;
	--color-second: #b6c4b6;
	--color-active: #b6c4b6;
	--color-white: #ecf4d6;
	--color-green: #b6c4b6;
	--color-coin: #ecf4d6;
	--color-red: #d98585;
	--bg-main: #191717;
	--bg-white: #2b2a2a;
	--bg-active: #4d4847;
	--bg-second-active: #5a5554;
	--bg-gradient-card: linear-gradient(180deg, rgba(75, 70, 69, 0.6) 0%, #4d4847 100%);
	--bg-mask: 25, 23, 23;
	--bg-top-aside: #2e2c2c;
	--bg-dark-blue: #4d4847;
	--bg-darkness-blue: #1a1919;
	--bg-green: #b6c4b6;
	--bg-light-green: #d5dec9;

	--header-height: 60px;
	--aside-width: 228px;
}

html {
	height: 100%;
	min-width: 320px;
	max-width: 1692px;
	margin: 0 auto;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

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

.hamburger.active::before,
.hamburger.active::after {
	top: 50%;
	left: 50%;
	width: 26px;
}
.hamburger.active::before {
	transform: rotate(45deg) translate3d(-50%, -50%, 0);
}
.hamburger.active::after {
	transform: rotate(-45deg) translate3d(-50%, -50%, 0);
}
.hamburger.active span {
	opacity: 0;
	transform: translate3d(-20px, -50%, 0);
	visibility: hidden;
}

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

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

@media screen and (max-width: 767px) {
	.search.show {
		top: 50%;
		visibility: visible;
		opacity: 1;
	}
	.action-search.active .search-icon {
		display: none;
	}
	.action-search.active .close-icon {
		display: block;
	}
}

a {
	color: var(--color-main);
	text-decoration: none;
}

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

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

* {
	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: #787889;
}

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

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

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

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

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

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

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

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

.header {
	background-color: var(--bg-dark-blue);
	padding: 10px 20px;
	flex-shrink: 0;
	flex-grow: 0;
	display: flex;
	gap: 0 50px;
}

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

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

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

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

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

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

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

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

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

.logo {
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	align-self: center;
	width: 100%;
	max-width: calc(var(--aside-width) - 20px);
}

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

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

@media screen and (max-width: 1280px) {
	.header-nav {
		gap: 5px;
	}
}

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

.sidebar-nav-item {
	display: none;
}

.sidebar-nav-separator {
	display: none;
}

@media screen and (max-width: 1024px) {
	.sidebar-nav-item {
		display: block;
	}

	.sidebar-nav-separator {
		display: block;
		height: 1px;
		background: var(--bg-main);
		margin: 10px 0;
	}
}

.header-nav li.active a {
	background: var(--bg-active);
}

.header-nav a {
	display: flex;
	align-items: center;
	color: var(--color-white);
	font-weight: 500;
	font-size: 14px;
	gap: 6px;
	text-transform: uppercase;
	padding: 10px 20px;
	border-radius: 10px;
	transition: background 0.3s;
}

@media screen and (min-width: 1025px) {
	.header-nav a:hover {
		background: var(--bg-darkness-blue);
	}
}

@media screen and (max-width: 1280px) {
	.header-nav a {
		padding: 10px 15px;
		font-size: 12px;
	}
}

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

@media screen and (max-width: 1280px) {
	.header-nav svg {
		font-size: 18px;
	}
}

.search {
	flex-shrink: 1;
	flex-grow: 1;
	display: flex;
	justify-content: center;
}

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

.wrap-input {
	background-color: var(--bg-darkness-blue);
	display: flex;
	height: 100%;
	width: 100%;
	max-width: 580px;
	border-radius: 10px;
	height: 40px;
}

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

.wrap-input .input {
	background: none;
	border: none;
	width: 100%;
	height: 100%;
	font-family: "SUSE", sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: var(--color-white);
	padding-left: 20px;
}

.wrap-input .btn {
	flex-shrink: 0;
	flex-grow: 0;
	font-size: 20px;
	color: var(--color-white);
	background: none;
	border: none;
	cursor: pointer;
	height: 100%;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: scale(1);
	transition: transform 0.3s;
}

@media screen and (min-width: 1025px) {
	.wrap-input .btn:hover {
		transform: scale(1.05);
	}
}

.action-search {
	display: none;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: var(--color-white);
	background: none;
	border: none;
	cursor: pointer;
	position: relative;
	z-index: 5;
}

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

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

.panel-auth {
	display: flex;
	gap: 10px;
	font-weight: 600;
	font-size: 14px;
	flex-shrink: 0;
	flex-grow: 0;
}

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

.panel-auth .btn {
	background: none;
	border: none;
	cursor: pointer;
	background-color: var(--bg-active);
	color: var(--color-white);
	padding: 10px 15px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	transition: background 0.3s;
}

@media screen and (min-width: 1025px) {
	.panel-auth .btn:hover {
		background: var(--bg-darkness-blue);
	}
}

.panel-auth .btn.second {
	background-color: var(--bg-green);
}

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

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

.main-content {
	padding: 20px 0 30px var(--aside-width);
	transition: padding-left 0.3s;
}

.wrapper.sidebar-hidden .main-content {
	padding-left: 0;
}

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

.section {
	margin-bottom: 30px;
}

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

.aside-box {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: var(--aside-width);
	z-index: 5;
	background: var(--bg-white);
	transition: opacity 0.3s, visibility 0.3s;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.aside-box.hidden {
	opacity: 0;
	visibility: hidden;
}

@media screen and (max-width: 767px) {
	.aside-box {
		position: fixed;
		height: calc(100svh - var(--header-height));
		top: var(--header-height);
		bottom: auto;
		padding: 0;
		opacity: 0;
		visibility: hidden;
		transform: translate3d(-100%, 0, 0);
	}
	.aside-box.show {
		opacity: 1;
		visibility: visible;
		transform: translate3d(0, 0, 0);
	}
}

.aside-box .hold {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 20px 20px;
	scrollbar-width: thin;
	scrollbar-color: var(--bg-top-aside) var(--bg-main);
}

.aside-box .hold::-webkit-scrollbar {
	width: 6px;
}

.aside-box .hold::-webkit-scrollbar-track {
	background: var(--bg-main);
	border-radius: 3px;
}

.aside-box .hold::-webkit-scrollbar-thumb,
.aside-box .hold::-webkit-scrollbar-thumb:hover,
.aside-box .hold::-webkit-scrollbar-thumb:active {
	background: var(--bg-top-aside);
	border-radius: 3px;
}

.aside-box .row {
	margin-bottom: 30px;
	padding-bottom: 25px;
	border-bottom: 1px solid var(--bg-main);
}

.aside-box .row:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.aside-box .row:first-child {
	padding-bottom: 30px;
}

.aside-box .title {
	text-transform: uppercase;
	margin-bottom: 20px;
	font-weight: 500;
	color: var(--color-second);
}

.top-box {
	font-size: 24px;
	font-weight: 300;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 20px;
	margin: -20px -20px 5px;
	background: var(--bg-top-aside);
}

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

.top-box strong {
	font-weight: 900;
}

.top-box .circle {
	background: var(--color-green);
	width: 12px;
	height: 12px;
	border-radius: 100%;
	flex-grow: 0;
	flex-shrink: 0;
}

.group-auth-tools {
	display: none;
	margin-bottom: 15px;
	font-weight: 600;
	font-size: 14px;
}

@media screen and (max-width: 1024px) {
	.group-auth-tools {
		display: block;
	}
}

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

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

.group-auth-tools .btn {
	background: none;
	border: none;
	cursor: pointer;
	background-color: var(--bg-active);
	color: var(--color-white);
	padding: 12px 15px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.group-auth-tools .btn.second {
	background-color: var(--bg-green);
}

.general-list {
	margin: 0 -10px;
}

.general-list li {
	margin-bottom: 10px;
}

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

.general-list .link {
	padding: 5px 10px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	font-size: 14px;
	color: var(--color-main);
	border-radius: 5px;
	transition: background 0.3s;
}

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

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

.categories-list li {
	margin-bottom: 5px;
}

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

.categories-list a {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 5px 0;
	font-size: 14px;
	color: var(--color-main);
	transition: color 0.3s;
	position: relative;
}

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

.categories-list a::before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--color-active);
	width: 0;
	height: 1px;
	transition: width 0.3s;
}

.categories-list a span:first-child {
	flex-grow: 1;
	flex-shrink: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

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

.show-all {
	text-align: center;
	display: block;
	color: var(--color-second);
	font-weight: 500;
	font-size: 14px;
	padding: 12px;
	background: var(--bg-main);
	text-transform: uppercase;
	border-radius: 10px;
	transition: color 0.3s, background 0.3s;
}

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

.sort-box {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

@media screen and (max-width: 410px) {
	.sort-box {
		gap: 10px;
		flex-wrap: wrap;
	}
}

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

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

.sort-box .link {
	display: block;
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
	color: var(--color-second);
	background: var(--bg-white);
	padding: 10px 20px;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	transition: color 0.3s, background 0.3s, padding 0.3s;
	position: relative;
}

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

@media screen and (max-width: 767px) {
	.sort-box .link {
		padding: 10px 15px;
	}
}

@media screen and (max-width: 410px) {
	.sort-box .link {
		font-size: 12px;
		padding: 11px 15px;
	}
}

.sort-box .link::before {
	position: absolute;
	content: "";
	left: 20px;
	top: 50%;
	transform: translate3d(0, -50%, 0);
	width: 0px;
	height: 8px;
	background: var(--color-white);
	border-radius: 100%;
	transition: width 0.3s;
}

@media screen and (max-width: 767px) {
	.sort-box .link::before {
		left: 15px;
	}
}

.sort-box .link.active {
	color: var(--color-white);
	padding-left: 33px;
	background: var(--bg-active);
}

@media screen and (max-width: 767px) {
	.sort-box .link.active {
		padding-left: 28px;
	}
}

.sort-box .link.active::before {
	width: 8px;
}

.filter-btn {
	cursor: pointer;
	display: flex;
	align-items: center;
	color: var(--color-active);
	font-size: 24px;
	border: none;
	background: none;
	flex-grow: 0;
	flex-shrink: 0;
}

@media screen and (min-width: 1025px) {
	.filter-btn:hover svg {
		transform: scale(1.03);
	}
}

@media screen and (max-width: 410px) {
	.filter-btn {
		font-size: 22px;
	}
}

.filter-btn .close {
	display: none;
}

.filter-btn svg {
	transition: transform 0.3s;
	transform: scale(1);
}

.wrapped-filter {
	margin-bottom: 30px;
	position: relative;
}

.wrapped-filter.open .filter-overlay {
	opacity: 1;
	visibility: visible;
}

.wrapped-filter.open .general-filter {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) scale(1);
}

.wrapped-filter.open .filter-btn .close {
	display: block;
}

.wrapped-filter.open .filter-btn .filter {
	display: none;
}

.filter-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(var(--bg-mask), 0.85);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

.general-filter {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) scale(0.95);
	transform-origin: top center;
	margin-top: 10px;
	padding: 30px;
	background: var(--bg-white);
	border-radius: 15px;
	max-width: 700px;
	width: calc(100vw - 40px);
	max-height: calc(100vh - 120px);
	overflow-y: auto;
	z-index: 101;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.general-filter::-webkit-scrollbar {
	width: 8px;
}

.general-filter::-webkit-scrollbar-track {
	background: var(--bg-main);
	border-radius: 10px;
}

.general-filter::-webkit-scrollbar-thumb {
	background: var(--bg-active);
	border-radius: 10px;
}

.general-filter::-webkit-scrollbar-thumb:hover {
	background: var(--bg-second-active);
}

@media screen and (max-width: 768px) {
	.general-filter {
		right: 10px;
		left: 10px;
		max-width: none;
		width: auto;
		padding: 25px 20px;
		max-height: 90vh;
		transform: scale(0.95);
	}
	.wrapped-filter.open .general-filter {
		transform: scale(1);
	}
}

.wrapped-cols {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.wrapped-cols .cols {
	display: contents;
}

.wrapped-cols .col {
	width: 100%;
}

.wrapped-cols .title {
	color: var(--color-second);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 10px;
}

.wrapped-cols .list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 15px;
}

.wrapped-cols .list.second {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 15px;
}

.filter-bottom {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.filter-bottom .group {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	max-width: 300px;
	width: 100%;
}

.filter-bottom .box {
	width: 50%;
}

.btn-apply,
.btn-cancel {
	width: 100%;
	border: none;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	font-size: 14px;
	padding: 12px 10px;
	cursor: pointer;
	transition: color 0.3s, background 0.3s;
}

.btn-apply {
	text-transform: uppercase;
	color: var(--bg-main);
	background: var(--bg-active);
}

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

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

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

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

.checkbox-label .checkbox {
	display: inline-flex;
	vertical-align: top;
	position: relative;
	margin-right: 6px;
	flex-shrink: 0;
	flex-grow: 0;
	width: 16px;
	height: 16px;
	background: var(--bg-main);
	transition: background 0.2s;
	border-radius: 4px;
}

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

.checkbox-label span:not(.checkbox) {
	font-weight: 500;
	font-size: 13px;
	color: var(--color-second);
	display: inline-block;
	vertical-align: top;
	white-space: nowrap;
}

.checkbox-input {
	display: none;
}

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

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

.checkbox-input:checked + .checkbox + span {
	color: var(--color-main);
}

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

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

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

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

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

.sort .dropped {
	position: relative;
}

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

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

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

.sort .dropped .btn {
	display: flex;
	align-items: center;
	gap: 10px;
	border: none;
	background: var(--bg-white);
	border-radius: 10px;
	padding: 10px 20px;
	font-weight: 500;
	font-size: 14px;
	color: var(--color-second);
	cursor: pointer;
	transition: color 0.3s, background 0.3s, border-radius 0.3s;
}

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

.sort .dropped .btn svg {
	font-size: 10px;
	flex-grow: 0;
	flex-shrink: 0;
	transition: transform 0.3s;
}

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

.drop-hidden a {
	padding: 5px 10px;
	display: flex;
	align-items: center;
	font-weight: 500;
	font-size: 14px;
	color: var(--color-second);
	transition: color 0.3s, background 0.3s;
}

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

.main-flex {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
}

@media screen and (max-width: 1600px) {
	.main-flex {
		grid-template-columns: repeat(5, 1fr);
	}
}

@media screen and (max-width: 1366px) {
	.main-flex {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media screen and (max-width: 1024px) {
	.main-flex {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width: 568px) {
	.main-flex {
		grid-template-columns: repeat(2, 1fr);
		gap: 7px;
	}
}

.main-flex .item {
	font-size: 16px;
}

.main-flex .item.second {
	grid-column: span 2;
	grid-row: span 2;
}

@media screen and (max-width: 1024px) {
	.main-flex .item.second {
		grid-column: span 1;
		grid-row: span 1;
	}
}

.main-flex .item.second .main-card {
	height: 100%;
	display: block;
	position: relative;
}

.main-flex .item.second .card-media {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding-bottom: 0;
	margin-bottom: 0;
	border-radius: 10px;
}

.main-flex .item.second .card-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 10px;
	z-index: 2;
}

@media screen and (max-width: 1024px) {
	.main-flex .item.second .main-card {
		height: auto;
	}
	.main-flex .item.second .card-media {
		position: relative;
		padding-bottom: 74.712%;
		border-radius: 5px;
		margin-bottom: 7px;
	}
	.main-flex .item.second .card-content {
		position: static;
		padding: 0;
	}
}

.tags-wrapper {
	display: contents;
}

.tags-toggle-btn {
	display: none;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 14px;
	color: var(--color-main);
	background: var(--bg-white);
	border: none;
	border-radius: 10px;
	padding: 10px 15px;
	cursor: pointer;
	transition: background 0.3s, color 0.3s;
}

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

.tags-toggle-btn .arrow {
	font-size: 10px;
	transition: transform 0.3s;
}

.tags-wrapper.open .tags-toggle-btn .arrow {
	transform: rotate(180deg);
}

.link-next.next-model-mobile {
	display: none;
}

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

	.link-next.next-model-mobile {
		display: flex;
		margin-left: auto;
		padding: 10px 15px;
	}

	.tags-wrapper .tags {
		display: none;
		width: 100%;
		margin-top: 10px;
	}

	.tags-wrapper .tags .next-model-item {
		display: none;
	}

	.tags-wrapper.open .tags {
		display: flex;
	}
}

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

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

.tags .item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 7px 10px;
	border-radius: 10px;
	background: var(--bg-white);
	font-weight: 600;
	font-size: 14px;
	color: var(--color-second);
}

.tags svg {
	font-size: 12px;
	flex-grow: 0;
	flex-shrink: 0;
	cursor: pointer;
	transition: color 0.3s;
}

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

.tags .next-model-item .link-next {
	padding: 7px 15px;
}

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

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

.empty-content {
	width: 100%;
	flex-basis: 100%;
	grid-column: 1 / -1;
	text-align: center;
	padding: 20px 0;
}

.card-media {
	display: block;
	height: auto;
	width: 100%;
	overflow: hidden;
	position: relative;
	border-radius: 5px;
	padding-bottom: 74.712%;
	margin-bottom: 7px;
}

.card-media img {
	position: absolute;
	bottom: 0;
	height: 100%;
	left: 0;
	-o-object-fit: cover;
	object-fit: cover;
	right: 0;
	top: 0;
	transition: 0.3s;
	width: 100%;
	transform: scale(1);
}

.card-content .title {
	display: flex;
	align-items: center;
	gap: 5px;
	font-weight: 500;
	margin-bottom: 4px;
}

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

.card-content .flag_holder {
	position: relative;
	width: 16px;
	height: 16px;
	line-height: 0;
	border-radius: 50%;
	overflow: hidden;
}
.card-content img {
	width: auto;
	height: 16px;
	-o-object-fit: cover;
	object-fit: cover;
	flex-grow: 0;
	flex-shrink: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translate(-50%);
}

.card-content .subtitle {
	color: var(--color-second);
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

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

.wrapper-more .more {
	text-align: center;
	cursor: pointer;
	background: var(--bg-white);
	color: var(--color-second);
	border: none;
	max-width: 267px;
	width: 100%;
	padding: 10px;
	border-radius: 10px;
	transition: color 0.3s, background 0.3s;
}

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

.general-description {
	margin-top: 30px;
	font-size: 14px;
	line-height: 1.4;
	color: var(--color-second);
}

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

@media screen and (max-width: 1024px) {
	.about-model {
		justify-content: space-between;
	}
}

@media screen and (max-width: 1024px) {
	.about-model .col:not(.second) {
		width: calc(50% - 5px);
	}
}

.about-model .col {
	display: flex;
	align-items: center;
	flex-grow: 1;
	/* flex-shrink: 0; */
	gap: 10px;
}

.about-model .col.second {
	flex-grow: 1;
	flex-shrink: 1;
	flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
	.about-model .col.second {
		width: 100%;
		order: 1;
		gap: 3px;
	}
}

@media screen and (max-width: 479px) {
	.about-model .col.second {
		justify-content: space-between;
	}
}

@media screen and (max-width: 1024px) {
	.about-model .col.indent {
		justify-content: flex-end;
	}
}

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

.about-model .author {
	display: flex;
	align-items: center;
	color: var(--color-main);
	font-weight: 600;
	font-size: 14px;
	transition: color 0.3s;
}

.about-model .model {
	flex-grow: 0;
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	max-width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	overflow: hidden;
	border-radius: 100%;
	margin-right: 10px;
	margin-bottom: 15px;
}

.about-model .flag_holder {
	position: relative;
	border-radius: 50%;
	width: 14px;
	height: 14px;
	overflow: hidden;
	line-height: 0;
	margin-left: 5px;
}

.about-model .flag {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translate(-50%);
	flex-grow: 0;
	flex-shrink: 0;
	width: auto;
	height: 14px;
	width: auto;
	-o-object-fit: cover;
	object-fit: cover;
}

.about-model .name {
	font-weight: 600;
	font-size: 14px;
}

@media screen and (max-width: 410px) {
	.about-model .item {
		width: 25%;
	}
}

.about-model .link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-weight: 600;
	font-size: 14px;
	color: #000;
	padding: 12px 20px;
	border-radius: 10px;
	background: var(--color-white);
	transition: background 0.3s, color 0.3s;
}

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

@media screen and (max-width: 410px) {
	.about-model .link {
		padding: 13px 15px;
		font-size: 12px;
		width: 100%;
		gap: 5px;
	}
}

.about-model .link span {
	white-space: nowrap;
}

.about-model .link .second {
	color: var(--color-second);
	transition: color 0.3s;
}

.link-next {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-size: 14px;
	background: var(--bg-white);
	color: var(--color-main);
	border-radius: 10px;
	border: none;
	cursor: pointer;
	padding: 12px 20px;
	transition: color 0.3s, background 0.3s;
}

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

@media screen and (max-width: 410px) {
	.link-next {
		padding: 13px 15px;
		font-size: 12px;
		gap: 5px;
	}
}

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

.video-field {
	position: relative;
	padding-bottom: 48.744%;
	border-radius: 10px;
	overflow: hidden;
}

@media screen and (max-width: 767px) {
	.video-field {
		margin: 0 -10px;
		border-radius: 0;
	}
}

@media screen and (max-width: 479px) {
	.video-field {
		padding-bottom: 0;
		min-height: 230px;
	}
}

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

.video-field .label {
	position: absolute;
	right: 20px;
	bottom: 20px;
	max-width: 138px;
	width: 100%;
	height: auto;
	z-index: 2;
}

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

.play-video {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0) scale(1);
	width: 120px;
	height: 120px;
	background: rgba(var(--color-dark), 0.6);
	color: var(--color-white);
	font-size: 44px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border: none;
	cursor: pointer;
}

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

@media screen and (max-width: 1366px) {
	.play-video {
		width: 100px;
		height: 100px;
		font-size: 35px;
	}
}

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

.tools-video {
	display: flex;
	align-items: center;
	padding: 10px;
	gap: 10px;
	border-radius: 0 0 10px 10px;
	background: var(--color-white);
}

@media screen and (max-width: 1024px) {
	.tools-video {
		flex-direction: row;
		justify-content: flex-start;
		gap: 5px;
	}
}

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

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

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

@media screen and (max-width: 1024px) {
	.tools-video .col {
		width: auto;
		gap: 5px;
	}
}

.tools-video .col.second {
	flex-grow: 1;
	flex-shrink: 1;
	justify-content: flex-end;
}

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

@media screen and (max-width: 479px) {
	.tools-video .col.second .item {
		width: auto;
	}
}

@media screen and (max-width: 479px) {
	.tools-video .item {
		width: auto;
	}
}

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

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

@media screen and (max-width: 410px) {
	.tools-video .btn {
		padding: 10px 8px;
		font-size: 12px;
		width: auto;
		gap: 5px;
	}
}

.tools-video .btn.second {
	background: var(--bg-green);
	color: var(--color-white);
}

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

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

@media screen and (max-width: 410px) {
	.tools-video svg {
		width: 14px;
		height: 14px;
	}
}

.tools-video svg path {
	transition: fill 0.3s;
}

.tools-video .svg-icon {
	font-size: 18px;
}

@media screen and (max-width: 410px) {
	.tools-video .svg-icon {
		font-size: 14px;
	}
}

.favorite-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	border: none;
	background: var(--bg-main);
	color: var(--color-main);
	font-weight: 600;
	font-size: 14px;
	padding: 10px 20px;
	border-radius: 10px;
	transition: color 0.3s, background 0.3s;
}

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

@media screen and (max-width: 410px) {
	.favorite-btn {
		padding: 10px 8px;
		font-size: 12px;
		gap: 5px;
	}
}

.favorite-btn.active {
	background: var(--bg-active);
	color: var(--color-white);
}

.favorite-btn svg {
	font-size: 20px;
	flex-grow: 0;
	flex-shrink: 0;
}

.footer {
	background-color: var(--bg-dark-blue);
	flex-shrink: 0;
	flex-grow: 0;
	padding: 30px 20px;
}

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

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

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

.footer-detail,
.footer-text {
	font-size: 14px;
}

.footer-detail {
	line-height: 1.4;
	color: var(--color-white);
	margin-bottom: 18px;
}

.footer-text {
	color: var(--color-second);
}

.mask {
	backdrop-filter: blur(5px);
	background: rgba(var(--bg-mask), 0.7);
	-webkit-backdrop-filter: blur(5px);
	position: fixed;
	bottom: 0;
	left: 0;
	opacity: 0;
	right: 0;
	top: var(--header-height);
	transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
	visibility: hidden;
	z-index: 2;
}

.custom_list_webcams_tags {
	margin-top: 30px;
}

@media (max-width: 1024px) {
	.custom_list_webcams_tags {
		margin-top: 20px;
	}
}

.category-wrap {
	margin-bottom: 30px;
}

.thumbs__subtitle {
	font-weight: 600;
	font-size: 20px;
	display: inline-block;
	margin-bottom: 26px;
	color: #000;
}

@media (max-width: 1024px) {
	.thumbs__subtitle {
		margin-bottom: 10px;
	}
}

.category-list-holder {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	margin: 0 -15px 30px;
}

@media (min-width: 1200px) and (max-width: 1500px) {
	.category-list-holder.all {
		grid-template-columns: repeat(5, 1fr);
	}
}

@media (max-width: 1200px) {
	.category-list-holder {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 840px) {
	.category-list-holder {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 600px) {
	.category-list-holder {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 400px) {
	.category-list-holder {
		grid-template-columns: repeat(1, 1fr);
	}
}
.category-col {
	padding: 0 15px;
}
.category-col.col-2 {
	grid-column: span 2;
}

.category-col.col-4 {
	grid-column: span 4;
}

.category-col.col-5 {
	grid-column: span 5;
}
.category-col.col-2 .category-list-inner {
	display: flex;
	flex-wrap: wrap;
}

.category-col.col-5 .category-list-inner,
.category-col.col-4 .category-list-inner {
	display: flex;
	flex-wrap: wrap;
}

.category-col.col-2 .category-list-item {
	width: 50%;
}

.category-col.col-5 .category-list-item {
	width: 20%;
}

.category-col.col-4 .category-list-item {
	width: 25%;
}
.category-list-title {
	display: block;
	padding: 12px 20px;
	text-align: start;
	background: var(--bg-dark-blue);
	border-radius: 50px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	color: #fff;
}
.model-filter-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	color: var(--color-main);
	position: relative;
	transition: color 0.3s;
}

.model-filter-link::before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--color-active);
	width: 0;
	height: 1px;
	transition: width 0.3s;
}

.model-filter-link .model-filter-count {
	color: var(--color-active);
}

.model-filter-link:hover {
	color: var(--color-active);
}
.model-filter-link:hover::before {
	width: 100%;
}

@media (max-width: 1500px) {
	.category-col.col-5 {
		grid-column: span 4;
	}
	.category-col.col-5 .category-list-item {
		width: 25%;
	}
}

@media (max-width: 1200px) {
	.category-list-holder {
		grid-template-columns: repeat(4, 1fr);
	}
	.category-col.col-4,
	.category-col.col-5 {
		grid-column: span 3;
	}
	.category-col.col-4 .category-list-item,
	.category-col.col-5 .category-list-item {
		width: 33.33%;
	}
}

@media (max-width: 840px) {
	.category-list-holder {
		grid-template-columns: repeat(3, 1fr);
	}
	.category-col.col-4,
	.category-col.col-5 {
		grid-column: span 2;
	}
	.category-col.col-4 .category-list-item,
	.category-col.col-5 .category-list-item {
		width: 50%;
	}
}

@media (max-width: 400px) {
	.category-list-holder {
		grid-template-columns: repeat(1, 1fr);
	}
	.category-col.col-2 {
		grid-column: span 1;
	}
	.category-col.col-2 .category-list-item {
		width: 100%;
	}
	.category-col.col-4,
	.category-col.col-5 {
		grid-column: span 1;
	}
	.category-col.col-4 .category-list-item,
	.category-col.col-5 .category-list-item {
		width: 100%;
	}
}

.categories__alphabet {
	margin-bottom: 25px;
}

.categories__alphabet-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.categories__alphabet-item {
	padding: 0 4px 5px 0;
}

.categories__alphabet-item a {
	line-height: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 40px;
	height: 40px;
	padding: 10px 15px;
	border-radius: 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: var(--color-main);
	background: var(--bg-top-aside);
	transition: color 0.3s, 0.3s background;
}

.categories__alphabet-item a:hover {
	color: var(--color-white);
	background: var(--bg-active);
}

.categories__alphabet-item a.active {
	color: var(--color-white);
	background: var(--bg-active);
}

.categories__alphabet-item.all a {
	width: auto;
	padding: 10px 20px;
}

.categories__box {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--bg-active);
}

.categories__box-title {
	font-size: 24px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 5px;
	padding: 0 20px;
	text-transform: uppercase;
	color: var(--bg-dark-blue);
}

.title-pl {
	padding-left: 15px;
}

@media (max-width: 579px) {
	.categories__box-title {
		padding: 0;
	}
}
.categories__box-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 -10px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

@media (max-width: 579px) {
	.categories__box-row {
		margin: 0 -5px;
	}
}

.categories__box-col {
	width: 20%;
	padding: 0 10px;
	min-width: 0;
	overflow: hidden;
}
@media (max-width: 1023px) {
	.categories__box-col {
		width: 25%;
	}
}
@media (max-width: 767px) {
	.categories__box-col {
		width: 33.333%;
	}
}

@media (max-width: 579px) {
	.categories__box-col {
		width: 50%;
		padding: 0 5px;
	}
}

.categories__box-item {
	min-width: 0;
	overflow: hidden;
}
.categories__box-item a {
	line-height: 1;
	display: block;
	padding: 10px 20px;
	color: var(--color-main);
	border-radius: 18px;
	transition: background 0.3s, color 0.3s;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

.categories__box-item a:hover {
	background: var(--bg-active);
	color: var(--color-white);
}

.categories__box-item a.see-all-link {
	background: var(--bg-active);
	color: var(--color-white);
	font-weight: 500;
	width: fit-content;
}

.categories__box-item a.see-all-link:hover {
	background: var(--bg-second-active);
}

@media (max-width: 579px) {
	.categories__box-item a {
		padding: 10px 0;
	}
}
audio::-webkit-media-controls-timeline,
video::-webkit-media-controls-timeline {
	display: none;
}

video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display {
	display: none;
}

.autocomplete-suggestions {
	background: var(--bg-darkness-blue) !important;
	border-radius: 20px !important;
	color: var(--bg-top-aside);
	cursor: pointer;
	overflow-y: auto;
}

.autocomplete-suggestion {
	padding: 10px 20px !important;
}

.autocomplete-suggestion.autocomplete-selected {
	color: #ffffff !important;
}
