.header {
	display: flex;
	align-items: center;
	width: 100vw;
	height: 60px;
	position: absolute;
	background: radial-gradient(at left top, rgba(26, 26, 30, 1) 0%, rgba(26, 26, 30, 0.72) 20%, rgba(26, 26, 30, 0.3) 37%, rgba(26, 26, 30, 0) 58%);
	transition: background-color 350ms ease-out;
	padding: 0 20px;
    font-size: 16.96px;
    color: #fbfdfc;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    background-color: #050505;
    position: relative;
    scroll-behavior: smooth;
    overflow-x: hidden;
	z-index: 999999;
}
@media (min-width: 85.375rem) {
	.header {
		height: 70px;
		padding: 0 50px;
		gap: 45px;		 
	}
}
@media (min-width: 120rem) {
	.header {
		height: 80px;
	}
}
@media (min-width: 64rem) {
	.header {
		display: flex;
		align-items: stretch;
		position: sticky;
		top: 0;
		background: linear-gradient(0deg, rgba(5, 5, 5, 0) 0%, #050505 100%);
	}
}
.header + .container section:first-of-type {
	padding-top: 60px;
}
@media (min-width: 64rem) {
	.header + .container section:first-of-type {
		padding-top: 0px;
	}
}
.header + .container section:first-of-type.heroBlock, .header + .container section:first-of-type.showHeaderBlock, .header + .container section:first-of-type.landingHeroBlock {
	padding-top: 0;
}
@media (min-width: 64rem) {
	.header + .container section:first-of-type.heroBlock, .header + .container section:first-of-type.showHeaderBlock, .header + .container section:first-of-type.landingHeroBlock {
		margin-top: -60px;
	}
}
@media (min-width: 85.375rem) {
	.header + .container section:first-of-type.heroBlock, .header + .container section:first-of-type.showHeaderBlock, .header + .container section:first-of-type.landingHeroBlock {
		margin-top: -70px;
	}
}
@media (min-width: 120rem) {
	.header + .container section:first-of-type.heroBlock, .header + .container section:first-of-type.showHeaderBlock, .header + .container section:first-of-type.landingHeroBlock {
		margin-top: -80px;
	}
}
.header + .container.servicepage section:first-of-type, .header + .container.tvguidepage section:first-of-type {
	margin-top: 40px;
}
@media (min-width: 85.375rem) {
	.header + .container.servicepage section:first-of-type, .header + .container.tvguidepage section:first-of-type {
		margin-top: 50px;
	}
}
@media (min-width: 120rem) {
	.header + .container.servicepage section:first-of-type, .header + .container.tvguidepage section:first-of-type {
		margin-top: 40px;
	}
}
.header--scroll {
	background-color: #1a1a1e;
}
.header__image {
	width: 60px;
}
@media (min-width: 85.375rem) {
	.header__image {
		width: 55px;
	}
}
.header--hide {
	display: none;
}
.nav {
	flex-grow: 1;
	display: flex;
	transform: translateX(0);
	transition: transform 350ms;
}
@media (max-width: 63.9375rem) {
	.nav {
		display: none;
	}
}
.nav--translated {
	transform: translateX(270px);
	transition: transform 350ms;
}
.nav__menu {
	color: #f9f9f9;
	display: flex;
	gap: 30px;
}
.nav__item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nav__item--active > .nav__submenu {
	display: block;
}
.nav__item--active .nav__link::after {
	transform: rotate(180deg);
}
.nav__submenu {
	display: none;
	position: absolute;
	background-color: #232329;
	padding: 0 10px;
	top: 50px;
	min-width: max-content;
	border-radius: 3px;
}
.nav__item--active .nav__submenu--active {
	display: block;
}
.nav__submenu::before {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	border-top: 0.5px solid rgba(249, 249, 249, 0.5);
}
@media (min-width: 120rem) {
	.nav__submenu {
		top: 60px;
	}
}
.nav__submenu .nav__item {
	margin-bottom: 6px;
	justify-content: left;
}
.nav__submenu .nav__item:first-child {
	margin-top: 10px;
}
.nav__submenu .nav__item:last-child {
	margin-bottom: 10px;
}
.nav__submenu .nav__link {
	width: 100%;
	padding: 0;
	font-size: 14px;
	color: #f9f9f9;
	letter-spacing: 0;
	line-height: 1.5;
	font-family: 'Outfit';
	font-weight: 400;
	text-align: left;
}
.nav__link {
	display: flex;
	align-items: baseline;
	gap: 3px;
	color: #f9f9f9;
	letter-spacing: 0;
	opacity: 1;
	transition: opacity 1s;
}
.nav__link:target, .nav__link:focus {
	text-shadow: 1px 0 1px white;
}
.nav__link:hover {
	opacity: 0.6;
	transition: opacity 0.2s;
}
@media (min-width: 64rem) {
	.nav__link {
		font-size: 15px;
	}
}
@media (min-width: 85.375rem) {
	.nav__link {
		font-size: 17px;
	}
}
@media (min-width: 120rem) {
	.nav__link {
		font-size: 20.14px;
	}
}
.nav__item--hasSub > .nav__link::after {
	content: "";
	background-image: url('../img/submenu-icon-down.svg');
	background-repeat: no-repeat;
	background-size: cover;
	width: 10px;
	height: 10px;
	margin-left: 3px;
	transition: transform 0.2s;
}
.nav-mobile {
	position: fixed;
	bottom: 0;
	width: 100%;
	min-height: 60px;
	z-index: 2147483447;
}
@media (min-width: 64rem) {
	.nav-mobile {
		display: none;
	}
}
.nav-mobile__iconList {
	display: flex;
	background-color: #0b0b0d;
	opacity: 1;
	transform: translate3d(0, 0, 0);
	transition: transform 350ms, opacity 350ms;
}
.nav-mobile__item {
	flex: 1 0 20%;
	position: relative;
}
.nav-mobile__bar {
	position: absolute;
	top: 0;
	height: 2px;
	display: flex;
	justify-content: center;
}
.nav-mobile__bar--0 {
	left: 0%;
}
.nav-mobile__bar--20 {
	left: 20%;
}
.nav-mobile__bar--25 {
	left: 25%;
}
.nav-mobile__bar--40 {
	left: 40%;
}
.nav-mobile__bar--50 {
	left: 50%;
}
.nav-mobile__bar--60 {
	left: 60%;
}
.nav-mobile__bar--75 {
	visibility: hidden;
}
.nav-mobile__bar--80 {
	visibility: hidden;
}
.nav-mobile__bar--100 {
	visibility: hidden;
}
.nav-mobile__bar--125 {
	visibility: hidden;
}
.nav-mobile__bar--hidden {
	width: 0;
	transition: width 350ms;
}
.nav-mobile__bar::before {
	content: "";
	width: 50%;
	max-width: 30px;
	background-color: #f9f9f9;
}
@keyframes slideBar {
	0% {
		left: 0%;
	}
	100% {
		left: 20%;
	}
}
.nav-mobile__link {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 3px;
	padding: 11px 0;
	color: #f9f9f9;
}
.nav-mobile__icon {
	max-width: 24px;
	min-height: 24px;
}
.nav-mobile__subtitle {
	font-size: 9px;
	color: #f9f9f9;
	letter-spacing: 0;
	text-align: center;
	font-family: 'Outfit';
	font-weight: 400;
}
.nav-footer__link {
	font-family: 'Outfit';
	font-weight: 400;
	color: #f9f9f9;
	font-size: 14px;
	line-height: 1.26;
}
@media (min-width: 48rem) {
	.nav-footer__link {
		font-size: 16px;
	}
}
@media (min-width: 64rem) {
	.nav-footer__link {
		font-size: 14px;
	}
}
@media (min-width: 85.375rem) {
	.nav-footer__link {
		font-size: 16px;
	}
}
@media (min-width: 120rem) {
	.nav-footer__link {
		font-size: 18px;
	}
}
.logo {
	--swiper-navigation-size: 44px;
	transform: scale(1);
	transition: transform 150ms 450ms linear;
}
@media (min-width: 85.375rem) {
	.logo--overlayed {
		transform: scale(1.1);
		transition: transform 150ms linear;
	}
}
.logo__wrapper {
	display: flex;
	align-items: center;
}
.logo__link {
	display: flex;
	align-items: center;
	justify-content: start;
	align-self: center;
	height: 60px;
}
@media (min-width: 85.375rem) {
	.logo__link {
		height: 65px;
	}
}
.logo__arrow {
	width: 12px;
	margin-left: 10px;
}
.logo__arrow--hide {
	display: none;
}
.logo__image {
	height: 100%;
	width: auto;
}
.multichannel {
	max-height: 100%;
	display: flex;
	flex-direction: column;
	z-index: 20;
	grid-template-columns: 1fr 1fr 1fr;
	grid-auto-rows: 100px;
	position: relative;
	background: #1a1a1e;
}
@media (max-width: 63.9375rem) {
	.multichannel {
		flex: 1;
		background: #1a1a1e;
	}
}
@media (min-width: 64rem) {
	.multichannel {
		max-width: 270px;
	}
}
.multichannel__wrapper {
	display: flex;
	z-index: 50;
	position: fixed;
	inset: 0;
	visibility: hidden;
}
.multichannel__logo {
	display: flex;
	height: 60px;
	padding: 0 20px;
}
@media (min-width: 85.375rem) {
	.multichannel__logo {
		height: 70px;
	}
}
@media (min-width: 120rem) {
	.multichannel__logo {
		height: 80px;
	}
}
@media (min-width: 64rem) {
	.multichannel__logo {
		padding: 0 30px;
	}
}
@media (min-width: 85.375rem) {
	.multichannel__logo {
		padding: 0 50px;
	}
	.multichannel__logo .logo__image {
		transform: scale(1.1);
	}
}
@media (min-width: 120rem) {
	.multichannel__logo {
		padding: 0 60px;
	}
}
.multichannel__item {
	display: flex;
	align-items: center;
	justify-content: center;
	justify-self: center;
	opacity: 0;
	transition: opacity 150ms 500ms ease-out;
}
@media (max-width: 63.9375rem) {
	.multichannel__item:nth-child(3n - 2) {
		justify-self: flex-start;
	}
	.multichannel__item:nth-child(3n - 2) .multichannel__image {
		object-position: left;
	}
	.multichannel__item:nth-child(3n) {
		justify-self: flex-end;
	}
	.multichannel__item:nth-child(3n) .multichannel__image {
		object-position: right;
	}
}
.multichannel__wrapper--show .multichannel__item {
	opacity: 1;
	transition: opacity 1.5s;
}
.multichannel__wrapper--show .multichannel__item:nth-child(1) {
	transition-delay: calc(70ms * 1);
}
.multichannel__wrapper--show .multichannel__item:nth-child(2) {
	transition-delay: calc(70ms * 2);
}
.multichannel__wrapper--show .multichannel__item:nth-child(3) {
	transition-delay: calc(70ms * 3);
}
.multichannel__wrapper--show .multichannel__item:nth-child(4) {
	transition-delay: calc(70ms * 4);
}
.multichannel__wrapper--show .multichannel__item:nth-child(5) {
	transition-delay: calc(70ms * 5);
}
.multichannel__wrapper--show .multichannel__item:nth-child(6) {
	transition-delay: calc(70ms * 6);
}
.multichannel__wrapper--show .multichannel__item:nth-child(7) {
	transition-delay: calc(70ms * 7);
}
.multichannel__wrapper--show .multichannel__item:nth-child(8) {
	transition-delay: calc(70ms * 8);
}
.multichannel__wrapper--show .multichannel__item:nth-child(9) {
	transition-delay: calc(70ms * 9);
}
.multichannel__wrapper--show .multichannel__item:nth-child(10) {
	transition-delay: calc(70ms * 10);
}
.multichannel__wrapper--show .multichannel__item:nth-child(11) {
	transition-delay: calc(70ms * 11);
}
.multichannel__wrapper--show .multichannel__item:nth-child(12) {
	transition-delay: calc(70ms * 12);
}
.multichannel__wrapper--show .multichannel__item:nth-child(13) {
	transition-delay: calc(70ms * 13);
}
.multichannel__wrapper--show .multichannel__item:nth-child(14) {
	transition-delay: calc(70ms * 14);
}
.multichannel__wrapper--show .multichannel__item:nth-child(15) {
	transition-delay: calc(70ms * 15);
}
.multichannel__wrapper--show .multichannel__item:nth-child(16) {
	transition-delay: calc(70ms * 16);
}
.multichannel__wrapper--show .multichannel__item:nth-child(17) {
	transition-delay: calc(70ms * 17);
}
.multichannel__wrapper--show .multichannel__item:nth-child(18) {
	transition-delay: calc(70ms * 18);
}
.multichannel__wrapper--show .multichannel__item:nth-child(19) {
	transition-delay: calc(70ms * 19);
}
.multichannel__wrapper--show .multichannel__item:nth-child(20) {
	transition-delay: calc(70ms * 20);
}
.multichannel__link {
	display: block;
	height: 60px;
	width: 90px;
}
@media (min-width: 48rem) {
	.multichannel__link {
		width: 125px;
	}
}
.multichannel__image {
	height: 100%;
	width: 100%;
	object-fit: contain;
}
@media (min-width: 64rem) {
	.multichannel__image:hover {
		opacity: 0.7;
	}
}
.multichannel__text {
	min-width: 70px;
	text-align: center;
}
.multichannel__brands {
	margin: 40px 20px 60px;
	display: grid;
	flex-grow: 1;
	grid-template-columns: 1fr 1fr 1fr;
	grid-auto-rows: 100px;
	overflow-y: scroll;
}
@media (min-width: 64rem) {
	.multichannel__brands {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 10px;
		margin: 22px 0 0;
		padding-bottom: 60px;
	}
}
.multichannel__shadow {
	width: 100%;
	position: absolute;
	pointer-events: none;
}
.multichannel__shadow--top {
	height: 150px;
	top: 60px;
	background: linear-gradient(180deg, rgba(11, 11, 13, 1) 0%, rgba(11, 11, 13, 0.72) 32%, rgba(11, 11, 13, 0.3) 79%, rgba(11, 11, 13, 0) 95%);
	z-index: 1;
}
@media (min-width: 64rem) {
	.multichannel__shadow--top {
		top: 80px;
		background: linear-gradient(180deg, rgba(26, 26, 30, 1) 0%, rgba(26, 26, 30, 0.72) 32%, rgba(26, 26, 30, 0.3) 79%, rgba(26, 26, 30, 0) 95%);
	}
}
.multichannel__shadow--bottom {
	height: 180px;
	bottom: 0;
	background: linear-gradient(0deg, rgba(11, 11, 13, 1) 0%, rgba(11, 11, 13, 0.72) 32%, rgba(11, 11, 13, 0.3) 79%, rgba(11, 11, 13, 0) 95%);
}
@media (min-width: 64rem) {
	.multichannel__shadow--bottom {
		background: linear-gradient(0deg, rgba(26, 26, 30, 1) 0%, rgba(26, 26, 30, 0.72) 56%, rgba(26, 26, 30, 0.3) 87%, rgba(26, 26, 30, 0) 98%);
	}
}
.multichannel__shadow--hide {
	opacity: 0;
	visibility: hidden;
}
@media (min-width: 64rem) {
	.multichannel__overlay {
		z-index: 10;
		flex-grow: 1;
		background: linear-gradient(90deg, rgba(26, 26, 30, 1) 0%, rgba(26, 26, 30, 0.7175245098039216) 50%, rgba(26, 26, 30, 0) 100%);
	}
}
.multichannel__close {
	width: 20px;
	height: 20px;
	position: absolute;
	right: 20px;
	top: 20px;
}
@media (min-width: 64rem) {
	.multichannel__close {
		display: none;
	}
}
.search {
	flex: auto;
	transform: translateX(0);
	transition: transform 350ms;
}
@media (max-width: 63.9375rem) {
	.search {
		position: relative;
		background: #0b0b0d;
	}
	.header .search {
		display: none;
	}
}
@media (min-width: 64rem) {
	.search {
		display: flex;
		align-items: center;
	}
	.header .search {
		justify-content: flex-end;
	}
}
.search--translated {
	transform: translateX(270px);
	transition: transform 350ms;
}
@media (min-width: 64rem) {
	.search__overlay {
		position: absolute;
		right: -30px;
		bottom: 0;
		top: 0;
		width: 100vw;
		height: 100vh;
		background: rgba(11, 11, 13, 0.9);
		display: none;
	}
	.search__overlay--active {
		display: block;
		z-index: 0;
	}
}
@media (min-width: 85.375rem) {
	.search__overlay {
		right: -50px;
	}
}
@media (min-width: 120rem) {
	.search__overlay {
		right: -60px;
	}
}
.search-result__header {
	display: flex;
	align-items: center;
	font-size: 25px;
	font-family: 'Outfit';
	font-weight: 700;
	color: #f9f9f9;
	line-height: 1.2;
	margin-bottom: 20px;
}
@media (min-width: 64rem) {
	.search-result__header {
		margin-top: 20px;
		margin-bottom: 50px;
	}
}
.search-result__button {
	color: #b7b7bb;
	line-height: 1.66;
	border: 1px solid #b7b7bb;
	margin-right: 10px;
	border-radius: 3px;
	font-size: 12px;
	cursor: pointer;
}
@media (min-width: 64rem) {
	.search-result__button {
		font-size: 18px;
		line-height: 1;
		padding: 10px;
	}
}
.search-result__button--active {
	color: #1a1a1e;
	background-color: #f9f9f9;
}
.search-result__content__tab {
	display: none;
}
.search-result__content__tab--active {
	display: block;
}
.search-input {
	border-radius: 5px;
	border: 1px solid #f9f9f9;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 10px;
	margin: 22px 0;
	position: relative;
	z-index: 1;
}
.header .search-input {
	align-self: center;
}
@media (min-width: 64rem) {
	.search-input {
		border: none;
		width: 260px;
		flex-direction: row-reverse;
		height: 30px;
		margin: 0;
		transition: width 350ms ease-out, height 350ms ease-out;
	}
	.search-input--active {
		flex-direction: row;
		width: 320px;
		height: 40px;
		transition: width 350ms ease-out, height 350ms ease-out;
		border: 1px solid #f9f9f9;
	}
}
@media (min-width: 64rem) and (max-width: 85.3125rem) {
	.search-input {
		background: none;
	}
	.search-input .search-input__input {
		display: none;
	}
	.search-input--active {
		background: rgba(11, 11, 13, 1);
	}
	.search-input--active .search-input__input {
		display: block;
	}
}
@media (min-width: 85.375rem) {
	.search-input {
		background: rgba(61, 61, 71, 0.7);
	}
	.search-input--active {
		background: rgba(11, 11, 13, 1);
		width: 390px;
	}
}
.search-input__label {
	display: flex;
}
.search-input__image {
	width: 18px;
	height: 18px;
}
@media (max-width: 85.3125rem) {
	.search-input__image {
		cursor: pointer;
	}
	.search-input--active .search-input__image {
		cursor: default;
	}
}
.search-input__input {
	flex-grow: 1;
	margin-right: 10px;
	margin-left: 10px;
	background-color: transparent;
	color: #f9f9f9;
	outline: none;
	border: none;
	padding: 10px 0;
}
.search-input__input::placeholder {
	color: rgba(249, 249, 249, 0.75);
}
.search-input__clear {
	width: 12px;
	height: 12px;
	cursor: pointer;
}
.search-placeholder {
	position: absolute;
	top: 100%;
	margin-top: 5px;
	background: #0b0b0d;
	z-index: 1;
}
@media (max-width: 63.9375rem) {
	.search-placeholder {
		width: 100%;
		padding: 5px;
		margin: 0;
	}
}
@media (min-width: 64rem) {
	.search-placeholder {
		width: 320px;
		top: 75%;
		background-color: transparent;
	}
}
@media (min-width: 85.375rem) {
	.search-placeholder {
		width: 390px;
	}
}
.search-placeholder__group {
	border-radius: 6px;
	margin-bottom: 5px;
}
@media (max-width: 63.9375rem) {
	.search-placeholder__group {
		background-color: #232329;
		margin: 0 5px 5px;
	}
}
.search-placeholder__item {
	display: flex;
	align-items: center;
	padding: 0 20px;
	height: 40px;
	gap: 10px;
	font-size: 13px;
}
@media (min-width: 64rem) {
	.search-placeholder__item {
		background-color: #151519;
	}
}
.search-placeholder__item--alert {
	padding-top: 15px;
	height: auto;
	background-color: transparent;
}
.search-placeholder__image {
	width: 18px;
	height: 18px;
}
.search-placeholder__title {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	/* number of lines to show */
	line-clamp: 1;
	-webkit-box-orient: vertical;
	border-radius: 3px;
	line-height: 1;
	font-size: 12px;
}
.mobile-menu, .mobile-search {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #0b0b0d;
	transform: translate3d(0, 100vh, 0);
	transition: transform 350ms;
}
.mobile-menu__image, .mobile-search__image {
	width: auto;
	height: 100%;
}
.mobile-menu__close, .mobile-search__close {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (min-width: 48rem) {
	.mobile-menu__close, .mobile-search__close {
		width: 32px;
		height: 32px;
	}
}
.mobile-menu__closeIcon, .mobile-search__closeIcon {
	width: 24px;
	height: 2px;
	cursor: pointer;
	background-color: #f9f9f9;
	position: relative;
	position: relative;
}
.mobile-menu__closeIcon::before, .mobile-search__closeIcon::before {
	content: '';
	position: absolute;
	width: 24px;
	height: 2px;
	background-color: #f9f9f9;
}
@media (min-width: 48rem) {
	.mobile-menu__closeIcon::before, .mobile-search__closeIcon::before {
		width: 32px;
	}
}
.mobile-menu__closeIcon::after, .mobile-search__closeIcon::after {
	content: '';
	position: absolute;
	width: 24px;
	height: 2px;
	background-color: #f9f9f9;
}
@media (min-width: 48rem) {
	.mobile-menu__closeIcon::after, .mobile-search__closeIcon::after {
		width: 32px;
	}
}
.mobile-menu__closeIcon--open, .mobile-search__closeIcon--open {
	height: 0;
	transition: height 350ms ease-out;
}
.mobile-menu__closeIcon--open::before, .mobile-search__closeIcon--open::before {
	transform: rotate(-45deg);
	transition: transform 0.2s ease 0.2s;
}
.mobile-menu__closeIcon--open::after, .mobile-search__closeIcon--open::after {
	transform: rotate(45deg);
	transition: transform 0.2s ease 0.2s;
}
.mobile-menu__closeIcon--close, .mobile-search__closeIcon--close {
	height: 2px;
	transition: height 100ms ease-out;
}
.mobile-menu__closeIcon--close::before, .mobile-search__closeIcon--close::before {
	transform: translateY(-7px) rotate(0deg);
	transition: all 100ms ease-out;
}
.mobile-menu__closeIcon--close::after, .mobile-search__closeIcon--close::after {
	transform: translateY(7px) rotate(0deg);
	transition: all 100ms ease-out;
}
.mobile-menu {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	z-index: 1;
}
.mobile-menu__head {
	height: 60px;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.mobile-menu__list {
	position: relative;
	display: flex;
	flex-direction: column;
	color: #f9f9f9;
}
.mobile-menu__item {
	font-size: 21px;
	padding: 14px 20px;
	transform: translateX(-100vw);
}
.fadeInLeft > .mobile-menu__item {
	transform: translateX(0);
	transition: transform 350ms;
}
.fadeInLeft > .mobile-menu__item:nth-child(1) {
	transition-delay: calc(15ms * 1);
}
.fadeInLeft > .mobile-menu__item:nth-child(2) {
	transition-delay: calc(15ms * 2);
}
.fadeInLeft > .mobile-menu__item:nth-child(3) {
	transition-delay: calc(15ms * 3);
}
.fadeInLeft > .mobile-menu__item:nth-child(4) {
	transition-delay: calc(15ms * 4);
}
.fadeInLeft > .mobile-menu__item:nth-child(5) {
	transition-delay: calc(15ms * 5);
}
.fadeInLeft > .mobile-menu__item:nth-child(6) {
	transition-delay: calc(15ms * 6);
}
.fadeInLeft > .mobile-menu__item:nth-child(7) {
	transition-delay: calc(15ms * 7);
}
.fadeInLeft > .mobile-menu__item:nth-child(8) {
	transition-delay: calc(15ms * 8);
}
.fadeInLeft > .mobile-menu__item:nth-child(9) {
	transition-delay: calc(15ms * 9);
}
.fadeOutLeft > .mobile-menu__item {
	transform: translateX(-100vw);
	transition: transform 350ms;
}
.fadeOutLeft > .mobile-menu__item:nth-child(1) {
	transition-delay: calc(15ms * 1);
}
.fadeOutLeft > .mobile-menu__item:nth-child(2) {
	transition-delay: calc(15ms * 2);
}
.fadeOutLeft > .mobile-menu__item:nth-child(3) {
	transition-delay: calc(15ms * 3);
}
.fadeOutLeft > .mobile-menu__item:nth-child(4) {
	transition-delay: calc(15ms * 4);
}
.fadeOutLeft > .mobile-menu__item:nth-child(5) {
	transition-delay: calc(15ms * 5);
}
.fadeOutLeft > .mobile-menu__item:nth-child(6) {
	transition-delay: calc(15ms * 6);
}
.fadeOutLeft > .mobile-menu__item:nth-child(7) {
	transition-delay: calc(15ms * 7);
}
.fadeOutLeft > .mobile-menu__item:nth-child(8) {
	transition-delay: calc(15ms * 8);
}
.fadeOutLeft > .mobile-menu__item:nth-child(9) {
	transition-delay: calc(15ms * 9);
}
.mobile-menu__item:last-child {
	margin-bottom: 40px;
}
.mobile-menu__item::before {
	content: '';
	display: block;
}
.mobile-menu__link {
	display: flex;
	justify-content: space-between;
}
.mobile-menu__link--reverse {
	justify-content: flex-start;
	gap: 10px;
}
.mobile-menu__iconSub {
	width: 10px;
	margin-left: 2px;
	transform: rotate(270deg);
}
.mobile-search {
	overflow: scroll;
}
.mobile-search.block {
	margin-bottom: 3.75rem;
}
.submenu {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	min-width: 100vw;
	height: fit-content;
	color: #f9f9f9;
	background-color: #0b0b0d;
	transition: transform 350ms 100ms;
}
.submenu--open {
	transform: translateX(0%);
}
.submenu--close {
	transform: translateX(-100%);
}
.submenu__back {
	padding: 16px 20px;
	display: flex;
	gap: 20px;
	font-size: 21px;
}
.submenu__backIcon {
	width: 16px;
	transform: rotate(90deg);
}
.submenu__list {
	background-color: #232329;
	max-height: 70vh;
	overflow: auto;
	box-shadow: inset 0 0 15px 2px #232329;
}
.submenu__shadow {
	width: 100%;
	height: 45px;
	position: absolute;
	pointer-events: none;
}
.submenu__shadow--top {
	background: linear-gradient(180deg, rgba(26, 26, 30, 1) 0%, rgba(26, 26, 30, 0.72) 32%, rgba(26, 26, 30, 0.3) 79%, rgba(26, 26, 30, 0) 95%);
	z-index: 1;
	box-shadow: 0 -5px #1a1a1e;
}
.submenu__shadow--bottom {
	height: 60px;
	bottom: 0;
	background: linear-gradient(0deg, rgba(26, 26, 30, 1) 0%, rgba(26, 26, 30, 0.72) 56%, rgba(26, 26, 30, 0.3) 87%, rgba(26, 26, 30, 0) 98%);
}
.submenu__item {
	font-size: 21px;
	padding: 18px 30px;
	transform: translate3d(-100vw, 0, 0);
}
.fadeInLeft > .submenu__item {
	transform: translate3d(0, 0, 0);
	transition: transform 350ms;
}
.fadeInLeft > .submenu__item:nth-child(1) {
	transition-delay: calc(15ms * 1 + 250ms);
}
.fadeInLeft > .submenu__item:nth-child(2) {
	transition-delay: calc(15ms * 2 + 250ms);
}
.fadeInLeft > .submenu__item:nth-child(3) {
	transition-delay: calc(15ms * 3 + 250ms);
}
.fadeInLeft > .submenu__item:nth-child(4) {
	transition-delay: calc(15ms * 4 + 250ms);
}
.fadeInLeft > .submenu__item:nth-child(5) {
	transition-delay: calc(15ms * 5 + 250ms);
}
.fadeInLeft > .submenu__item:nth-child(6) {
	transition-delay: calc(15ms * 6 + 250ms);
}
.fadeInLeft > .submenu__item:nth-child(7) {
	transition-delay: calc(15ms * 7 + 250ms);
}
.fadeInLeft > .submenu__item:nth-child(8) {
	transition-delay: calc(15ms * 8 + 250ms);
}
.fadeInLeft > .submenu__item:nth-child(9) {
	transition-delay: calc(15ms * 9 + 250ms);
}
.fadeOutLeft > .submenu__item {
	transform: translate3d(-100vw, 0, 0);
	transition: transform 350ms;
}
.fadeOutLeft > .submenu__item:nth-child(1) {
	transition-delay: calc(15ms * 1);
}
.fadeOutLeft > .submenu__item:nth-child(2) {
	transition-delay: calc(15ms * 2);
}
.fadeOutLeft > .submenu__item:nth-child(3) {
	transition-delay: calc(15ms * 3);
}
.fadeOutLeft > .submenu__item:nth-child(4) {
	transition-delay: calc(15ms * 4);
}
.fadeOutLeft > .submenu__item:nth-child(5) {
	transition-delay: calc(15ms * 5);
}
.fadeOutLeft > .submenu__item:nth-child(6) {
	transition-delay: calc(15ms * 6);
}
.fadeOutLeft > .submenu__item:nth-child(7) {
	transition-delay: calc(15ms * 7);
}
.fadeOutLeft > .submenu__item:nth-child(8) {
	transition-delay: calc(15ms * 8);
}
.fadeOutLeft > .submenu__item:nth-child(9) {
	transition-delay: calc(15ms * 9);
}
.submenu__item:first-child {
	margin-top: 24px;
}
.submenu__item:last-child {
	margin-bottom: 48px;
}
.submenu__link {
	font-size: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	/* number of lines to show */
	line-clamp: 1;
	-webkit-box-orient: vertical;
}
.fadeOutDown {
	transform: translate3d(0, 100%, 0);
	transition: transform 350ms 350ms;
}
.fadeInUp {
	transform: translate3d(0, 0, 0);
	opacity: 1;
}
.fadeInLeft {
	transform: translate3d(0, 0, 0);
	transition: transform 350ms 350ms;
}
@keyframes wbd_spin {
    0% {
        transform: rotateZ(0);
	}
	
    100% {
        transform: rotateZ(360deg);
	}
}

@keyframes wbd_opacityInOut {
    0% {
        opacity: 0;
	}
	
    15% {
        opacity: 1;
	}
	
    90% {
        opacity: 1;
	}
	
    100% {
        opacity: 0;
	}
}

.wbd_opacity-in-out {
    animation: wbd_opacityInOut 3000ms ease-in-out forwards;
}

@keyframes fadeinOwn {
    0% {
        visibility: hidden;
        opacity: 0;
	}
	
    1% {
        visibility: visible;
        opacity: 0;
	}
	
    100% {
        visibility: visible;
        opacity: 1;
	}
}

.wbd_fade-in {
    animation: fadeinOwn 300ms ease-in-out forwards;
}

@keyframes fadeoutOwn {
    0% {
        visibility: visible;
        opacity: 1;
	}
	
    99% {
        visibility: visible;
        opacity: 0;
	}
	
    100% {
        visibility: hidden;
        opacity: 0;
	}
}

.wbd_fade-out {
    animation: fadeoutOwn 650ms ease-in-out forwards;
}

.wbd_spinner_fade-out {
    animation: fadeoutOwn 1050ms ease-in-out forwards;
}

@keyframes openModalS {
    from {
        height: 0;
	}
    to {
        height: calc(56.25vw + 70px);
	}
}

@keyframes openModalM {
    from {
        height: 0;
	}
    to {
        height: calc(56.25vw + 80px);
	}
}

@keyframes openModalL {
    from {
        height: 0;
	}
    to {
        height: calc(((100vw - 60px) * .5625) + 80px);
	}
}

@keyframes openModalXl {
    from {
        height: 0;
	}
    to {
        height: calc(((100vw - 100px) * .5625) + 90px);
	}
}

@keyframes openModalXxl {
    from {
        height: 0;
	}
    to {
        height: calc(((100vw - 120px) * .5625) + 110px);
	}
}

@keyframes closeModalS {
    from {
        height: calc(56.25vw + 70px);
	}
    to {
        height: 0;
	}
}

@keyframes closeModalM {
    from {
        height: calc(56.25vw + 80px);
	}
    to {
        height: 0;
	}
}

@keyframes closeModalL {
    from {
        height: calc(((100vw - 60px) * .5625) + 80px);
	}
    to {
        height: 0;
	}
}

@keyframes closeModalXl {
    from {
        height: calc(((100vw - 100px) * .5625) + 90px);
	}
    to {
        height: 0px;
	}
}

@keyframes closeModalXxl {
    from {
        height: calc(((100vw - 120px) * .5625) + 110px);
	}
    to {
        height: 0;
	}
}


@keyframes wbd_slideFadeIn {
    0% {
        background-size: 0% 100%;
	}
	
    100% {
        background-size: 100% 100%;
	}
}

@keyframes barAnimation {
    to {
        transform: scaleY(0.6);
	}
}

@keyframes placeHolderShimmer {
    0% {
        background-position: -60em 0;
	}
	
    100% {
        background-position: 60em 0;
	}
}


@keyframes playerFadeInUpSm {
    from {
        top: 100%
	}
	
    to {
        top: calc(100vh - ((100vW * .58) * .56) - 96px)
	}
}

@keyframes playerFadeInUpLG {
    from {
        top: 100%
	}
	
    to {
        top: calc(100vh - ((100vW * .35) * .56) - 66px)
	}
}

@keyframes expanseDown {
    from {
        height: 150px;
	}
	
    to {
        height: 100%;
	}
}