/**
 * @link https://ymatuhin.ru/front-end/media_quires_breakpoins/
 * @link https://blog.csssr.com/ru/article/css-grid-by-example/
 * @link https://css-tricks.com/snippets/css/complete-guide-grid/
 * @link https://css-tricks.com/auto-sizing-columns-css-grid-auto-fill-vs-auto-fit/
 */
:root {
	--container-max-width: 1140px;
	--grid-gutter-width: 2rem;
	--desktop-min-width: 992px;
	--border-radius: 8px;
}

.html,
.body {
	padding: 0;
	margin: 0;
	border: none;
	scroll-behavior: smooth;
	height: 100%;
}

.html {
	box-sizing: border-box;
	font-size: var(--body-font-size);
	/* 10px */
	line-height: var(--body-line-height);
	/* 1.15 */
}

.admin-bar.html {
	height: calc(100% - 46px);
}

@media (min-width: 992px) {
	.admin-bar.html {
		height: calc(100% - 32px);
	}
}

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

body {
	background-size: cover;
	background-position: center;
	background-image: var(--body-background-image);
	background-repeat: no-repeat;
	color: var(--dark-color);
	font-family: var(--body-font-family);
	letter-spacing: var(--body-letter-spacing);
	-webkit-font-smoothing: subpixel-antialiased !important;
	-moz-osx-font-smoothing: grayscale;
	-webkit-backface-visibility: hidden;
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
	-webkit-tap-highlight-color: rgba(0, 53, 148, .1);
	overflow-x: hidden;
}



.html--has-modal {
	overflow: hidden;
	min-height: 100.3%;
	overscroll-behavior-y: none;
}

.html--has-modal body {
	overscroll-behavior-y: none;
}

::-webkit-scrollbar {
	-webkit-appearance: none;
}

::-webkit-scrollbar-corner {
	background: transparent;
}

::-webkit-scrollbar:vertical {
	width: 10px
}

::-webkit-scrollbar:horizontal {
	height: 10px
}

::-webkit-scrollbar-thumb {
	min-height: 20px;
	background-color: rgba(0, 0, 0, .2);
	border-radius: 1px;
	border: 2px solid transparent;
	background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
	background-color: rgba(0, 0, 0, .5);
}

::-webkit-scrollbar-track {
	border-radius: 1px;
	background-color: transparent;
}

#wpadminbar {
	position: fixed !important;
}

a {
	text-decoration: none;
}

h1 {
	font-size: 2.4rem;
}

.container {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	max-width: var(--container-max-width);
	padding-left: var(--grid-gutter-width);
	padding-right: var(--grid-gutter-width);
}

.menu-toggle {
	display: flex;
	align-items: center;
	font-size: 16px;
	gap: 6px;
	color: var(--primary-color);
	cursor: pointer;
}

.menu-toggle__button {
	width: 18px;
	height: 16px;
	line-height: 16px;
	border: 0;
	border-top: 2px solid #2F95FA;
	border-bottom: 2px solid #2F95FA;
	position: relative;
	background-color: transparent;
	padding: 0;
	margin: 0;
	cursor: pointer;
	display: block;
}

.menu-toggle__button:before {
	content: '';
	display: block;
	height: 2px;
	background-color: #2F95FA;
}


.header {
	box-shadow: 0 1px 10px rgba(204, 204, 204, 0.15);
	position: relative;
	z-index: 100;
}


.menu-position-top .header {
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.menu-position-top .header--hidden {
	transform: translateY(-100%);
}




.header__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	min-height: 80px;
	padding: 16px 0px;
}

.header img {
	display: block;
	height: 50px;
	width: auto;
}

.header__column {
	display: flex;
	align-items: center;
}

.header__column--two {
	justify-self: end;
	gap: 40px;
}


.header__menu .menu-toggle__button {
	height: 50px;
	width: 50px;
	border-top-width: 4px;
	border-bottom-width: 4px;
}

.header__menu .menu-toggle__button:before {
	height: 4px;
}

@media (max-width : 768px) {
	.header__inner {
		min-height: 46px;
		padding: 10px 0;
	}

	.header__column--two {
		gap: 20px;
	}

	.header img {
		height: 26px;
	}

	.header__menu .menu-toggle__button {
		height: 16px;
		width: 16px;
		border-top-width: 2px;
		border-bottom-width: 2px;
	}

	.header__menu .menu-toggle__button:before {
		height: 2px;
	}

	.header__menu .menu-toggle__label {
		display: none;
	}

}

.main {
	padding: 0;
	position: relative;
	min-height: 100%;
}

.main>.container {
	padding-bottom: 20px;
}

.main {
	padding-top: 40px;
	padding-bottom: 50px;
	transition: background-color 0.3s ease;
}



.menu-position-bottom .main>.container {
	padding-bottom: 66px;
}


.bottom-bar {
	background-color: #fff;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100000;
}

.bottom-bar__inner {
	height: 46px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
}

.bottom-bar__right {
	justify-self: end;
}


.modal {       
	overflow: hidden;   
    position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 100001;
	background-color: var(--primary-color);
	color: var(--white-color);
	overflow: auto;
	transform: translateX(-100%);
	transition: 0.3s ease-in-out;
	padding: 20px 0;
}

.modal.show {
	transform: translateX(0);
}

.admin-bar .modal {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .modal {
		top: 46px;
	}
}

.modal .container {
	height: 100%;
}

.modal__close {
	padding: 0;
	margin: 0;
	border: none;
	width: 24px;
	height: 24px;
	white-space: nowrap;
	overflow: hidden;
	text-indent: 24px;
	background: transparent url("../images/cross.svg") no-repeat center;
	position: absolute;
	right: 2rem;
	top: 0;
	cursor: pointer;
}

.modal__content {
	min-height: 100%;
	display: grid;
	align-items: center;
	grid-template-rows: 32px auto 32px;
	grid-template-columns: 1fr;
	grid-gap: 60px;
	margin-left: auto;
	margin-right: auto;
}

.modal__header {
	width: 200px;
    height: 55px;
    background-repeat: no-repeat;
    background-size: contain;
	background-image: url("/wp-content/uploads/images/alrosa/logo/logo-dark.svg"); 
}

.modal__logo img {
	display: block;
	width: auto;
	height: 32px;
}

.modal__logo--top {}

.modal__logo--bottom img {
	margin-left: auto;
}

.modal__title {
	font-size: 2.8rem;
	line-height: 32px;
	padding-bottom: 50px;
}

.modal__image {
	height: 100%;
	align-self: normal;
	display: block;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.modal__data {}

.modal__footer {
	/*text-align: right;*/
	/*align-self: end;*/
}

#modal-front-page .modal__data {
	/*height: 100%;*/
	/*display: grid;*/
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	grid-template-rows: 64px auto 50px;
	grid-template-columns: 1fr;
	/*grid-gap: 20px;*/
}

@media (min-width : 992px) {
	.modal__header {
		grid-template-rows: 48px auto 48px;
	}

	.modal__logo img {
		height: 48px;
	}

	#modal-front-page .modal__data {
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
		align-content: center;
		grid-template-rows: auto 64px 50px;
	}

	#modal-front-page .modal__image {
		max-height: 400px;
		min-height: 300px;
		grid-row-start: 1;
		margin-bottom: 3em;
	}

	#modal-front-page .modal__title {
		text-align: center;
	}

	#modal-front-page .modal__data .button {}
}

#modal-menu {
	max-width: 500px;
}

.menu__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu--main .menu__list .menu-item {
	position: relative;
	margin-left: 30px;
	max-width: 100%;
}

 .menu--main .menu__list .menu-item::before{
	
	content: "";
	position: absolute;
	width: 24px;
	height: 24px;
	background-color: #00b54d;
	left: -30px;
}
.menu--main .sub-menu .menu-item::before{
	display: none;
}

.menu--main .menu__list>li>a {

}

/* Изображение в сайдбар */
/* кинотеатры */


.menu--main .menu__list .menu-item-24367,
.menu--main .menu__list .menu-item-24368,
.menu--main .menu__list .menu-item-24369 {
    width: 95%;
    border-radius: 8px;
    overflow: hidden;
}

.menu--main .menu__list .menu-item-24367 a,
.menu--main .menu__list .menu-item-24368 a,
.menu--main .menu__list .menu-item-24369 a {
    display: block;
    width: 100%;
    height: 80px; 
    background-size: cover;
    background-position: center;
    text-indent: -9999px; 
    white-space: nowrap;
    overflow: hidden;
    border-radius: 8px;
	margin-bottom: 0;
}

.menu--main .menu__list .menu-item-24368 a{
	background-image: url(/wp-content/uploads/images/alrosa/cinema/okko-dark.jpg)
}
.menu--main .menu__list .menu-item-24367 a{
	background-image: url(/wp-content/uploads/images/alrosa/cinema/wink-dark.jpg);
}
.menu--main .menu__list .menu-item-24369 a{
	background-image: url(/wp-content/uploads/images/alrosa/cinema/premier-dark.jpg)
}

    
/* кинотеатры */


.menu--main .menu__list .menu-item-14049::before{
	-webkit-mask: url(/wp-content/uploads/images/alrosa/icons/alrosa-airplane.svg) no-repeat center;
    mask: url(/wp-content/uploads/images/alrosa/icons/alrosa-airplane.svg) no-repeat center;
    background-color: white;
}

.menu--main .menu__list .menu-item-23571::before{
	-webkit-mask: url(/wp-content/uploads/images/alrosa/icons/alrosa-watch-icon.svg) no-repeat center;
    mask: url(/wp-content/uploads/images/alrosa/icons/alrosa-watch-icon.svg) no-repeat center;
    background-color: white;
}
.menu--main .menu__list .menu-item-23565::before{
	-webkit-mask: url(/wp-content/uploads/images/alrosa/icons/alrosa-read-icon.svg) no-repeat center;
    mask: url(/wp-content/uploads/images/alrosa/icons/alrosa-read-icon.svg) no-repeat center;
    background-color: white;
}
.menu--main .menu__list .menu-item-23610::before{
	-webkit-mask: url(/wp-content/uploads/images/alrosa/icons/alrosa-listen-icon.svg) no-repeat center;
    mask: url(/wp-content/uploads/images/alrosa/icons/alrosa-listen-icon.svg) no-repeat center;
    background-color: white;
}
.menu--main .menu__list .menu-item-23571::before{
	-webkit-mask: url(/wp-content/uploads/images/alrosa/icons/alrosa-watch-icon.svg) no-repeat center;
    mask: url(/wp-content/uploads/images/alrosa/icons/alrosa-watch-icon.svg) no-repeat center;
    background-color: white;
}
.menu--main .menu__list .menu-item-23579::before{
	-webkit-mask: url(/wp-content/uploads/images/alrosa/icons/alrosa-children.svg) no-repeat center;
    mask: url(/wp-content/uploads/images/alrosa/icons/alrosa-children.svg) no-repeat center;
    background-color: white;
}
.menu--main .menu__list .menu-item-26171::before{
	-webkit-mask: url(/wp-content/uploads/images/alrosa/icons/alrosa-games-icon.svg) no-repeat center;
    mask: url(/wp-content/uploads/images/alrosa/icons/alrosa-games-icon.svg) no-repeat center;
    background-color: white;
}
.menu--main .menu__list .menu-item-23606::before{
	-webkit-mask: url(/wp-content/uploads/images/alrosa/icons/alrosa-map.svg) no-repeat center;
    mask: url(/wp-content/uploads/images/alrosa/icons/alrosa-map.svg) no-repeat center;
    background-color: white;
}
.menu--main .menu__list .menu-item-24306::before{
	-webkit-mask: url(/wp-content/uploads/images/alrosa/icons/alrosa-airplane-seat.svg) no-repeat center;
    mask: url(/wp-content/uploads/images/alrosa/icons/alrosa-airplane-seat.svg) no-repeat center;
    background-color: white;
}

/* Изображение в сайдбар */



@media (min-width: 992px) {
	.menu--main ul li:not(.current_page_item) {
		background-color: transparent !important;
	}
	
}


/* @media (max-width: 991px) {
	
	.modal{
		bottom: 80px;
	}
	
	.menu--main .menu__list .menu-item-24367 a,
	.menu--main .menu__list .menu-item-24368 a,
	.menu--main .menu__list .menu-item-24369 a {
		width: 100%;
		height: 52px; 
	}
} */

.sub-menu li {
	padding-top: 0.5em !important;
	padding-bottom: 0.5em !important;
}

.sub-menu {
	margin-top: 1em !important;
}

.menu--main .menu__list a {
	font-size: 2rem;
	display: block;
	margin-bottom: 20px;
}

.menu--main .menu__list .sub-menu {
	padding: 0;
	margin: 0 -3em;
	list-style: none;
	display: none;
}

.menu--main .menu__list .sub-menu--expanded {
	display: flex;
	margin-top: 1em;
	flex-direction: column;
	align-items: start;
	position: relative;
	max-width: 100%;
}
.menu--main .menu__list .sub-menu--expanded::before{
	content: "";
	width: 1px;
	height: 90%;
	position: absolute;
	background-color: #fff;
	left: 15px;
}

.menu--content {
    margin: 30px 0;
    display: flex;
    justify-content: center;
	width: 100%;
}

.menu--content .menu__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0; 
    box-sizing: border-box;
    width: 100%;
}
.menu--content .menu__list > li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center; 
}

.menu--content .menu-item {
	border-radius: 8px;
	width: 100%;
	height: 10rem;
}

.menu--content .menu-item a{
	width: 100%;
	height: 100%;
	display: flex;               
    justify-content: center;    
    align-items: center; 
	font-size: 2.5rem;
	color: #fff;
	text-decoration: none; 
}

.menu--content .menu-item a:hover{
	background-color: rgba(0, 0, 0, 0.4); 
	border-radius: 8px;
	color: #fff;
	transition: 0.7s;
}


@media (max-width: 992px) {
    .menu--content .menu__list {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}

/* @media (min-width: 992px) {
	.menu--main .menu__list {
		display: grid;
		grid-template-columns: 1fr;
		row-gap: 20px;
	}

	.menu--content .menu__list{
		flex-direction: inherit;
	}

	

	.menu--main .menu__list a {
		padding-left: 0;
	}

	.menu--main .menu__list>li>a {
		padding-left: 0;
	}

	.menu--main .menu__list>li.menu-item-has-children>a {
		pointer-events: none;
		color: #ffffff;
	}

	.menu--main .menu__list .sub-menu {
		margin-left: 0;
		display: block;
		max-width: 100%;
	}

	.menu--main .menu__list>li>ul a {
		font-size: 1.8rem;
		line-height: 2.2rem;
		margin: 6px 0;
		display: block;
	}

	.menu--content {
		margin-bottom: 8rem;
	}

	.menu--content .menu__list {
		gap: var(--grid-gutter-width);
	}

	
} */



/**
 * WordPress
 */
.aligncenter {
	margin-left: auto;
	margin-right: auto;
	display: block;
}

.alignright {
	text-align: right;
}

.button {
	border-radius: 4px;
	border-width: 1px;
	border-style: solid;
	height: 50px;
	line-height: 50px;
	text-align: center;
	display: block;
	padding: 0;
	font-size: 1.6rem;
	font-weight: 400;
	width: 100%;
}

.button--primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.button--light {
	background-color: var(--light-color);
	border-color: var(--light-color);
}

.button--outline {
	background-color: transparent;
}

.button--light.button--outline {
	color: var(--light-color);
}

.button--link {
	background: transparent;
	border-color: transparent;
}

.fleet__item {
	margin-bottom: 20px;
	position: relative;
}

.fleet__title {
	font-size: 1.8rem;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 10px;
	
}

.fleet__image {
	margin-bottom: 7px;
}

.fleet__image img {
	width: 100%;
	height: auto;
	margin-top: 40px;
}

.fleet__features {
	font-size: 1.2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}


.fleet__features li {
	margin-bottom: 6px;
}

.feature__value {
	font-weight: bold;
}

.feature__unit {
	font-weight: bold;
}

@media (min-width: 992px) {
	.fleet {
		max-width: 960px;
	}

	.fleet__item {
		display: grid;
		grid-gap: 70px;
		grid-template-columns: 250px auto;
		margin-bottom: 40px;
	}

	.fleet__features {
		grid-column-start: 1;
		grid-row-start: 1;
		font-size: 1.8rem;
		padding-top: 40px;
	}

	.fleet__title {
		grid-column-start: 2;
		font-size: 1.8rem;
		margin: 0;
		font-weight: 400;
		/* padding-top: 40px; */
	}

	.fleet__image {
		grid-column-start: 2;
		padding-top: 20px;
	}
}

/**
 * Хлебные крошки.
 */
.breadcrumbs {
	font-size: 16px;
	margin-bottom: 30px;
	margin-top: 20px;
	/* white-space: nowrap; */
}

.breadcrumbs__inner {
	display: block;
	
	grid-gap: 8px;
	align-items: center;
	grid-template-columns: 10px auto;
	/* overflow-x: auto;
	overflow-scrolling: touch; */
	/* -webkit-overflow-scrolling: touch; */
	padding-bottom: 40px;
	margin-bottom: -40px;
}

.breadcrumbs a {
	color: #000;
}

.breadcrumbs__arrow {
	
	cursor: pointer;
	display: flex;
	align-items: center;
	position: relative;
}

.breadcrumbs__arrow:before {
	content: url(/wp-content/uploads/images/wifly/icon/breadcrumbs.svg);
	width: 22px;
    height: 22px;
	margin-right: 12px;
}


.breadcrumbs__arrow a:first-child {
	display: none;
}


@media (max-width: 576px) {
	.breadcrumbs {
		font-size: 14px;
	}
}

.post-categories {
	overflow: hidden;
	/* height: 30px; */
	font-size: 1.2rem;
	margin-bottom: 20px;
	
}

.post-categories__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	padding-bottom: 40px;
	margin-bottom: -40px;
	position: relative;
	
}

@media (max-width: 991px) {
	.post-categories__inner {
		flex-wrap: nowrap !important;
		overflow-x: auto;
		scrollbar-width: thin; 
		-webkit-overflow-scrolling: touch; 
	}

	
	.post-categories__inner::-webkit-scrollbar {
		height: 6px; 
		background: transparent; 
	}

	.post-categories__inner::-webkit-scrollbar-thumb {
		background-color: #ccc; 
		border-radius: 4px; 
	}

	.post-categories__inner::-webkit-scrollbar-track {
		background: transparent; 
	}
}


/* .post-categories__inner>*+* {
	margin-left: 10px;
} */

.post-categories__item {
	color: #2F95FA;
	white-space: nowrap;
	border: 1px solid #2F95FA;
	border-radius: 4px;
	padding: 4px 19px;
	display: flex;
	align-items: center;
	background-color: #E4F2FF;
}



.post-categories__item.active {
	color: #fff;
	background-color: #2F95FA;
}
.disable-dark-mode {
@media (prefers-color-scheme: dark) {
	.post-categories__item {
		color: #fff !important;
	}

	.post-categories__item.active {
		color: #fff !important;
		border-bottom-color: #fff !important;
	}
}
}
.post {}

.post__thumbnail {
	margin-bottom: 20px;
	border-radius: 8px;
	overflow: hidden;
}

.post__thumbnail img {
	display: block;
	margin: 0;
	width: 100%;
	height: auto;
}

.post__content {
	font-size: 1.4rem;
}
.post__title{
	text-align: left;
}
.loop {
	display: grid;
	grid-gap: var(--grid-gutter-width);
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	margin-bottom: 40px;
	justify-content: start;
}

@media (min-width : 576px) {
	.loop {
		grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	}
}

.loop__item {
	max-width: 380px;
}

.loop__item.active {
	pointer-events: none;
	filter: grayscale(100%);
	opacity: 0.4;
}

.loop__image {
	aspect-ratio: 3 / 4;
	background-color: grey;
	overflow: hidden;
	border-radius: 8px;
	margin-bottom: 6px;
}

.loop__image--1x1 {
	aspect-ratio: 1 / 1;
}

.loop__image img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
}

.loop__title {
	font-size: 1.4rem;
	font-weight: 400;
	/* color: var(--primary-color); */
	margin: 0 0 6px 0;
	height: 32px;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.loop__author,
.loop__excerpt {
	font-size: 1.2rem;
	color: var(--muted-color);
	height: 28px;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.deal {
	color: var(--primary-color);
}

.deal__title {
	font-size: 2.4rem;
	margin-bottom: 15px;
}

.deal__thumbnail {
	margin-bottom: 20px;
}

.deal__thumbnail img {
	border-radius: 8px;
	width: 100%;
	height: auto;
}

.deal__content {
	font-size: 1.6rem;
}

.deals {
	display: grid;
	grid-gap: var(--grid-gutter-width);
	grid-template-columns: 1fr;
	margin-bottom: 40px;
}

@media (min-width : 992px) {
	.deals {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}
}

.deals__title {
	font-size: 1.8rem;
	font-weight: 400;
	margin-bottom: 20px;
	margin-top: 0;
	color: var(--primary-color);
}

.deals-item {
	display: block;
}

.deals-item__title {
	font-size: 1.4rem;
	margin-bottom: 6px;
	margin-top: 0;
	color: var(--primary-color);
	font-weight: 400;
}

.deals-item__thumbnail {
	margin-bottom: 6px;
	aspect-ratio: 16 / 9;
	border-radius: 8px;
	overflow: hidden;
}

.deals-item__thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.deals-item__excerpt {
	font-size: 1.2rem;
	color: var(--muted-color);
}

.deals-item__excerpt p {
	margin: 0;
}

.games-item__title {
	font-size: 1.4rem;
	font-weight: 400;
	margin: 0;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.single-game .main {
	height: 100%;
	overflow: hidden;
}

.menu-position-bottom.single-game .main {
	height: calc(100% - 46px);
}

.single-game .main .container {
	height: 100%;
}

.single-game__iframe {
	height: 100%;
	position: relative;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	width: 100vw;
	display: block;
}

/**
 * Журналы
 */
.magazines-related {}

.magazines-related__title {
	font-size: 1.6rem;
	font-weight: 400;
	margin-bottom: 18px;
	margin-top: 0;
}

.magazine__title {}

.magazine__content {
	margin-bottom: 20px;
	background-color: #fff;
	padding: 0;
}

.single-magazine .magazine__content {
	position: relative;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	width: 100vw;
	border-radius: var(--border-radius);
	overflow: hidden;
}

@media (min-width: 992px) {
	.single-magazine .magazine__content {
		margin-left: 0;
		margin-right: 0;
		width: 100%;
	}
}

/**
 * Подкасты.
 */
.podcast {}

.podcast__header {
	display: grid;
	grid-gap: 20px;
	margin-bottom: 20px;
	grid-template-columns: 1fr;
}

.podcast__thumbnail {
	overflow: hidden;
	border-radius: var(--border-radius);
	aspect-ratio: 1 / 1;
}

.podcast__thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.podcast__data {
	position: relative;
}

.podcast__title {
	font-weight: 400;
	font-size: 1.6rem;
	margin: 0 0 6px 0;
}

.podcast__subtitle {
	font-weight: 400;
	font-size: 1.6rem;
	margin: 0 0 8px 0;
}

.podcast__author {
	font-size: 1.4rem;
	margin-bottom: 6px;
	color: var(--muted-color);
}

.podcast__duration {
	font-size: 1rem;
	margin-bottom: 6px;
	color: var(--muted-color);
}

.podcast__content {
	font-size: 1.2rem;
	margin-bottom: 20px;
}

@media (min-width: 992px) {
	.single-podcast .podcast {
		/* max-width: 540px; */
	}

	.podcast__content {
		font-size: 1.6rem;
	}

	.podcast__subtitle {
		font-size: 3.2rem;
	}
}

@media (min-width: 768px) {
	.podcast__header {
		grid-template-columns: 1fr 1fr;
	}

	.podcast__play {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
	}
}

/**
 * Премьер
 */

.single-video .main {
	height: auto;
}
.tax-video_provider .breadcrumbs__arrow:before,
.single-video .breadcrumbs__arrow:before {
	border-color: var(--video-link-color);
}

.single-video .post-categories__item.active {
	border-bottom-color: #fff;
}

.video-single {}

.video-single__logo {
	margin-bottom: 20px;
	background-position: left center;
	background-size: auto 26px;
	background-repeat: no-repeat;
	height: 26px;
	background-image: var(--video-logo);
}

.video-single__header {
	position: relative;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.video-single__thumbnail {
	background-color: var(--muted-color);
	position: relative;
	aspect-ratio: 16 / 9;
	margin-bottom: 20px;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	width: 100vw;
	overflow: hidden;
}

.video-single__plyr {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 13;
	background-color: #111;
	transition: 0.3s ease-in-out;
}

.video-single__thumbnail {
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	border-radius: 8px;
}

.video-single__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	display: block;
	position: relative;
	z-index: 11;
}

.video-single__blur {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 10;
	backdrop-filter: blur(16px);
	background: rgba(255, 255, 255, 0.4);
}

.video-single__image--contain {
	object-fit: cover;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}

.video-single__title {
	/* color: var(--video-text-color); */
	font-weight: 500;
	font-size: 3rem;
	text-align: center;
	margin: 0 0 2rem 0;
}

.video-single__play {
	display: block;
	width: 100%;
	margin-bottom: 30px;
	max-width: 400px;
	cursor: pointer;
	background-color: var(--video-primary-color, #f6891f) !important;
	color: var(--video-background-color) !important;
}

.video-single__content {
	border-bottom: 1px solid #292929;
	padding-bottom: 30px;
	margin-bottom: 2rem;
}

.video-single__meta {
	color: var(--muted-color);
	font-weight: 400;
	font-size: 1.4rem;
	margin-bottom: 15px;
	line-height: 3rem;
}

.video-single__meta span:not(:first-child) {
	margin-left: 15px;
}

.video-single__content {}

.video-single__text {
	font-size: 1.6rem;
	margin-bottom: 15px;
}

.video-single__text p {
	margin-top: 0;
}

.video-single__rating {
	display: flex;
	text-transform: uppercase;
	color: var(--video-text-color);
	align-items: center;
	font-weight: 700;
	font-size: 1.6rem;
	margin-bottom: 10px;
}

.video-single__rating i {
	border-radius: 20px;
	background: #00b54d;
	padding: 5px 10px;
	margin-left: 10px;
	font-weight: 900;
	font-size: 1.4rem;
	line-height: 1.4rem;
	font-style: normal;
	color: #fff;
}

.video-single__starring,
.video-single__director {
	color: var(--muted-color);
	font-weight: 500;
	font-size: 1.4rem;
	margin-bottom: 8px;
}

.video-single__seasons {
	margin-bottom: 0px;
	left: -20px;
	position: relative;
	width: 100vw;
}

.video-single__episodes {}

.video-related {
	overflow: hidden;
}

.video-single__episodes-title,
.video-related__title {
	/* color: var(--video-text-color); */
	font-weight: 700;
	font-size: 2.2rem;
	margin-bottom: 15px;
	margin-top: 0;
}

.video-related .video-archive {}

.video-related .video-archive__item {
	width: 150px;
}

.video-archive__thumbnail {
	width: 150px;
	height: 206px;
	overflow: hidden;
	border-radius: 8px;
}

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

.video-related .video-archive__title {
	color: #fff;
}

.video-player,
.video-player .plyr {
	height: 100%;
	/* Можно изменить высоту плеера здесь */
}

.video-js {
	height: 100% !important;
	width: 100% !important;
}

@media (min-width: 992px) {
	.video-single__thumbnail {
		margin-left: 0;
		margin-right: 0;
		width: 100%;
		/* max-width: 800px; */
		/* Увеличил максимальную ширину плеера */
	}

	.video-single__thumbnail:after {
		content: '';
		background: linear-gradient(180deg, rgba(20, 20, 20, 0) 50%, #141414 98.33%);
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 11;
	}

	.video-single__actions {
		position: absolute;
		bottom: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		max-width: 800px;
		/* Увеличил максимальную ширину плеера */
		z-index: 12;
	}

	.video-single__title {
		color: #fff;
	}

	.video-single__data {
		display: grid;
		grid-template-columns: 650px auto;
		grid-gap: 50px;
	}
}


/**
 * Книги.
 */
.single-book .main,
.post-type-archive-book .main {
	height: auto;
}

.books-related__title {
	font-size: 1.6rem;
	margin: 0 0 18px 0;
	font-weight: 400;
}

.book {}

.book__header {
	display: grid;
	grid-gap: 20px;
	margin-bottom: 20px;
	grid-template-columns: 1fr 1fr;
}

.book__thumbnail {
	overflow: hidden;
}

.book__thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}

.book__data {
	position: relative;
}

.book__title {
	font-weight: 400;
	font-size: 1.6rem;
	margin: 0 0 6px 0;
}

.book__subtitle,
.book__content h2 {
	font-weight: 400;
	font-size: 1.6rem;
	margin: 0 0 8px 0;
}

.book__author {
	font-size: 1.4rem;
	margin-bottom: 6px;
	color: var(--muted-color);
}

.book__duration {
	font-size: 1rem;
	color: var(--muted-color);
}

.book__about {
	font-size: 1.2rem;
	margin-bottom: 20px;
}

.book__content {
	font-size: 1.2rem;
	margin-bottom: 20px;
}

.book__actions {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: grid;
	grid-gap: 14px;
	grid-template-columns: 1fr;
}

@media (min-width: 992px) {
	.single-book .book {
		max-width: 540px;
	}

	.book__about,
	.book__content p {
		font-size: 1.6rem;
	}

	.book__subtitle,
	h2.wp-block-heading,
	.books-related__title {
		font-size: 3.2rem;
	}
}

/**
 * Формы
 */
.form {}

.form-label {
	display: block;
	width: 100%;
	color: var(--primary-color);
	margin-bottom: 12px;
	font-size: 2.4rem;
}

.form-input {
	display: block;
	width: 100%;
	height: 50px;
	line-height: 50px;
	border-radius: 4px;
	background-color: #fff;
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	font-size: 1.6rem;
	padding: 0 15px;
}

.form-button {
	border: 1px solid transparent;
	background-color: #fff;
	height: 50px;
	line-height: 50px;
	border-radius: 4px;
	padding: 0 15px;
	text-align: center;
	font-size: 1.6rem;
	cursor: pointer;
}

.form-button--small {
	height: 28px;
	line-height: 28px;
	font-size: 1.4rem;
}

.form-button--primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: var(--white-color);
}

.form-button--warning {
	background-color: var(--warning-color);
	color: var(--dark-color);
}

.form-button--outline {
	background-color: transparent;
}

.form-button--outline.form-button--primary {
	color: var(--primary-color);
}

.form-button--icon {
	padding: 0;
	border: 0;
	background-color: transparent;
	height: auto;
	line-height: inherit;
	border-radius: 0;
}

.form-button--icon svg {
	display: block;
}

.form-button--block {
	display: block;
	width: 100%;
}

/**
 * Аудио плеер.
 */
.popup {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	box-shadow: 0 -1px 10px 0 rgba(0, 0, 0, 0.15);
	transform: translateY(100%);
	transition: 0.3s ease-in-out;
	padding: 15px 0;
	z-index: 1000;
}

.popup__close {
	position: absolute;
	top: 0;
	right: 20px;
	color: var(--dark-color);
	background-color: transparent;
	border: 0;
	padding: 0;
	cursor: pointer;
	z-index: 1001;
}

.popup__close path {
	fill: currentColor;
}

.menu-position-bottom .popup {
	bottom: 46px;
}

.popup.show {
	transform: translateY(0);
}

.audio-player {
	--plyr-color-main: var(--primary-color);
	--plyr-control-icon-size: 27px;
	--plyr-audio-control-color: var(--primary-color);
	--plyr-range-thumb-height: 20px;
	--plyr-range-thumb-background: var(--primary-color);
	--plyr-range-track-height: 4px;
	--plyr-audio-range-track-background: #d9d9d9;
	--plyr-control-padding: 0;
	--plyr-control-radius: 50%;
	--plyr-audio-control-background-hover: transparent;
	--plyr-audio-control-color-hover: var(--primary-color);

	user-select: none;
	margin-left: auto;
	margin-right: auto;
	background-color: #fff;
}

.audio-player .plyr__controls {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto 45px 45px;
	text-align: left;
	align-items: start;
	padding: 0 !important;
}

.audio-player .plyr__control {}

.audio-player .plyr__controls--header {
	display: grid;
	grid-template-columns: 36px auto;
	grid-gap: 12px;
	font-size: 14px;
	color: var(--plyr-color-main);
	line-height: 18px;
	padding-right: 20px;
	min-height: 45px;
}

.audio-player .plyr__author {
	display: block;
	font-size: 12px;
	color: #737576;
}

.audio-player .plyr__speed {
	display: grid;
	grid-gap: 16px;
	font-size: 12px;
	grid-template-columns: repeat(4, min-content);
}

.audio-player .plyr__speed button {
	color: var(--muted-color);
	border-radius: 4px;
	padding: 4px 6px;
	box-shadow: 0 0 0 1px var(--muted-color);
}

.audio-player .plyr__speed button.active {
	border-color: var(--plyr-color-main);
	color: var(--plyr-color-main);
	box-shadow: 0 0 0 1px var(--primary-color);
}

.audio-player .plyr__speed button.active:hover {
	color: var(--plyr-color-main);
}

.audio-player .plyr__seek {
	position: relative;
}

.audio-player .plyr__time {
	position: absolute;
	font-size: 10px;
	top: 22px;
	color: var(--plyr-color-main);
}

.audio-player .plyr__time.plyr__time--current {
	left: 0;
}

.audio-player .plyr__time.plyr__time--duration {
	right: 0;
	display: block;
}

.audio-player .plyr__time.plyr__time--duration:before {
	display: none;
}

.audio-player .plyr__controls--footer {
	display: grid;
	grid-template-columns: auto 82px;
	align-items: center;
}

.audio-player .plyr__prevnext {
	display: grid;
	grid-gap: 0;
	grid-template-columns: 41px 41px;
	justify-content: end;
}

.audio-player button[data-plyr="play"] {
	background-color: var(--primary-color) !important;
	color: #fff !important;
	width: 36px;
	height: 36px;
	text-align: center;
	padding: 0;
}

.audio-player button[data-plyr="play"] svg {
	width: 16px;
	height: 16px;
	margin-left: auto;
	margin-right: auto;
}

/**
 * Пагинация
 */
.pagination {
	padding: 20px;
	background-color: #fff;
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	display: none;
}

.pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 10px;
	font-size: 1.6rem;
}

/**
 * Страницы.
 */
.page {}

.post {}

.post__content,
.page__content {
	font-size: 1.6rem;
}

.page__content p,
.page__content ul li,
.post__content p,
.post__content ul li {
	font-weight: normal;
	text-align: left;
	font-family: helvetica;
}

@media (min-width : 992px) {

	article.post img,
	article.page img {
		width: 50%;
		height: 100%;
	}
}

/**
 * Collapse.
 */
.collapse {
	overflow: hidden;
	transition: transform 0.3s ease-out;
	height: auto;
	transform: scaleY(0);
	transform-origin: top;
}

.collapse.show {
	transform: scaleY(1);
}

/**
 * Sliders.
 */
.slider {
	--swiper-theme-color: var(--primary-color);
	--swiper-pagination-bullet-horizontal-gap: 5px;
	--swiper-pagination-bullet-size: 8px;
	--swiper-pagination-bullet-width: 6px;
	--swiper-pagination-bullet-height: 6px;
	margin-bottom: 2rem;
}

.slider__header {
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.slider__label {
	color: #000;
	font-weight: 700;
	font-size: 1.8rem;
	margin: 0;
}

.slider__all {
	padding-right: 15px;
	background: url("../images/slider-all.svg") center right no-repeat;
	font-size: 1.4rem;
}

.slider__item {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.slider__thumbnail {
	overflow: hidden;
	
	background-color: var(--muted-color);
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	border-radius: 40px;
}
.slider__thumbnail-main {
	border-radius: 40px;
}
.slider__thumbnail img {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 11;
}

.slider__thumbnail img,
.slider__thumbnail .slider__image--cover {
	object-fit: cover;
}

.slider__thumbnail .slider__image--contain {
	object-fit: cover;
	object-position: center;
}

.slider__thumbnail--provider {
	padding: 2rem;
}

.slider__thumbnail--provider img {
	object-fit: contain;
}

.slider__blur {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 10;
	backdrop-filter: blur(16px);
	background: rgba(255, 255, 255, 0.4);
}

.slider__title {
	font-size: 1.4rem;
	color: var(--dark-color);
	font-weight: 400;
	margin: 0;
}

.slider__description {
	text-align: center;
	position: absolute;
	z-index: 12;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 9.15%, #121212 100%);
	display: flex;
	align-items: end;
	justify-content: center;
	color: #fff;
	font-size: 3rem;
	padding: 1rem;
}

.slider--full {
	position: relative;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	width: 100vw;
}

.slider--3x4 .slider__slide {
	width: 142px;
}

.slider--3x4 .slider__thumbnail {
	aspect-ratio: 3 / 4;
}

.slider--16x9 .slider__slide {
	width: 140px;
}

.slider--16x9.slider--full .slider__slide {
	width: 280px;
}

.slider--16x9 .slider__thumbnail {
	aspect-ratio: 16 / 9;
}

.slider--1x1 .slider__thumbnail {
	aspect-ratio: 1 / 1;
}

.slider--1x1 .slider__slide {
	width: 140px;
}

.slider__main__slide {
	width: 340px !important;
}

.slider__footer {
	position: absolute;
	top: 40%;
	padding: 0 1em;
	z-index: 9;
	display: flex;
	width: 100%;
	justify-content: space-between;
	pointer-events: none;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	align-items: center;
	pointer-events: none;
}



.slider__prev,
.slider__next {
	border: 0;
	height: 50px;
	width: 50px;
	text-align: center;
	line-height: 34px;
	color: gray;
	opacity: 0.6;
	border-radius: 4px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	overflow: hidden;
	white-space: nowrap;
	text-indent: 34px;
	cursor: pointer;
	pointer-events: auto;
}


.slider__prev {
	background-image: url("../images/slider-prev.svg");
}

.slider__next {
	background-image: url("../images/slider-next.svg");
}

.slider__pagination {
	text-align: center;
}

.slider__pagination .swiper-pagination-bullet-active {
	width: 26px;
	border-radius: var(--swiper-pagination-bullet-width);
}

.slider .swiper {
	opacity: 0;
	transition: opacity 500ms;
}

.slider .swiper.swiper-initialized {
	opacity: 1;
	border-radius: 8px;
}

@media (min-width : 992px) {

	.slider {
		margin-bottom: 4rem;
		--swiper-pagination-bullet-horizontal-gap: 8px;
	}

	.slider__header {
		margin-bottom: 4rem;
	}

	.slider--1x1 .slider__slide {
		width: 246px;
	}

	.slider__main__slide {
		width: 482px !important;
	}

	.slider--3x4 .slider__slide {
		width: 246px;
	}

	.slider--16x9 .slider__slide {
		width: 340px;
	}

	.slider--16x9.slider--full .slider__slide {
		width: 760px;
	}

	.slider__footer {
		/*max-width: 760px;*/
	}

	.slider__description {
		/*font-size: 2.4rem;*/
		font-weight: 700;
		height: 100px;
		padding: 2rem;
		/*justify-content: start;*/
	}

	.slider__description-inner {
		max-width: 500px;
	}
}

.page-template-home {
	background-color: #f5f7f8;
}

.page-template-home .main .container {
	max-width: var(--container-max-width);
}

.home-content {
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

.alignfull {

	max-width: 100vw;
}

.alignwide {
	margin-left: -230px;
	margin-right: -230px;
}

.loading-container {
	position: fixed;
	z-index: 999999999999;
	height: 2em;
	width: 2em;
	overflow: visible;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

/* Transparent Overlay */
.loading-container:before {
	content: '';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}

/* :not(:required) hides these rules from IE9 and below */
.loading-container:not(:required) {
	/* hide "loading..." text */
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}

.loading-container:not(:required):after {
	content: '';
	display: block;
	font-size: 10px;
	width: 1em;
	height: 1em;
	margin-top: -0.5em;
	-webkit-animation: spinner 1500ms infinite linear;
	-moz-animation: spinner 1500ms infinite linear;
	-ms-animation: spinner 1500ms infinite linear;
	-o-animation: spinner 1500ms infinite linear;
	animation: spinner 1500ms infinite linear;
	border-radius: 0.5em;
	-webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
	box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}
/***************************
Пользовательское соглашение 
****************************/
.user_agreement{
	font-size: 1.4rem;
	color: var(--dark-color);
	font-weight: 400;
	margin: 0;
	padding: 0 0 20px 0;
}

.user_agreement:hover{
	color: var(--wp--preset--color--muted);
}


/* Animation */

@-webkit-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-moz-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-o-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.video-archive__title {
	color: var(--video-text-color) !important;
}

.form-button--primary {
	background-color: var(--secondary-color) !important;
	border-color: var(--secondary-color) !important;
	color: var(--white-color);
}

.modal__aurora-logo img {
	max-width: 20em;
	object-fit: contain;
}

.sub-menu li a {
	font-size: 1.5em !important;
}

.current_page_item {
	color: #7BA0D0 !important;
	height: fit-content;
}


.modal_x {
	z-index: 999999;
}

.modal_x-body img {
	width: 100%;
	max-width: 50em;
}

.modal_in_develop_body {
	display: flex;
	justify-content: center;
}

.audio-single__play {
	background-color: var(--secondary-color) !important;
	color: white;
	display: block;
	width: 100%;
	margin-bottom: 30px;
	max-width: 400px;
	cursor: pointer;
}


.post-categories-ads{
	display: none;
	border-radius: 25px;
}

.add-image{
	width: inherit;
	height: inherit;
}

.slider--10x1 .slider__thumbnail{
	background-position: center !important;
	aspect-ratio: 10 / 1;
}

.slider--adaptive .slider__thumbnail{
	background-position: center !important;
	aspect-ratio: 10 / 2;
}


#poster-add, #poster-ad-close{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 9999;
	position: absolute;

}

.poster-adblock-close-counter{
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: rgba(28, 28, 28, 0.7);
	border-radius: 100%;
	color: white;
	box-shadow: inset 0 0 5px 2px #282a2d;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5em;
	font-weight: bolder;
	width: 2em;
	height: 2em;
}

.card__sinema{
	border-radius: 8px;
	max-width: 340px;
	margin: 0 auto;
}
.card__sinema img{
	border-radius: 8px;
	max-width: 100%;
}



/* темная тема и нижнее меню */

.menu--content .menu-item-24316,
.menu--content .menu-item-24315,
.menu--content .menu-item-24318 {
	background-size: cover;
	background-position: center;
	border-radius: 8px;
	width: 100%;
	position: relative;
	overflow: hidden;
}


html.dark-theme .menu--content .menu-item-24316 a,
html.dark-theme .menu--content .menu-item-24315 a,
html.dark-theme .menu--content .menu-item-24318 a,
html.light-theme .menu--content .menu-item-24316 a,
html.light-theme .menu--content .menu-item-24315 a,
html.light-theme .menu--content .menu-item-24318 a {
	color: transparent !important;
}
 
html.light-theme .menu--content .menu-item-24315 {
	background-image: url('/wp-content/uploads/images/alrosa/cinema/okko-light.jpg');
	background-position: center;

}
html.light-theme .menu--content .menu-item-24318 {
	background-image: url('/wp-content/uploads/images/alrosa/cinema/premier-light.jpg');
	background-position: center;

}
html.light-theme .menu--content .menu-item-24316 {
	background-image: url('/wp-content/uploads/images/alrosa/cinema/wink-light.jpg');
	background-position: center;

}
html.dark-theme .menu--content .menu-item-24315 {
	background-image: url('/wp-content/uploads/images/alrosa/cinema/okko-dark.jpg');
	background-position: center;

}
html.dark-theme .menu--content .menu-item-24318 {
	background-image: url('/wp-content/uploads/images/alrosa/cinema/premier-dark.jpg');
	background-position: center;

}
html.dark-theme .menu--content .menu-item-24316 {
	background-image: url('/wp-content/uploads/images/alrosa/cinema/wink-dark.jpg');
	background-position: center;

}



.menu--content .menu-item-24316 a,
.menu--content .menu-item-24315 a,
.menu--content .menu-item-24318 a {
	color: transparent;
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
}

.menu--content .menu-item-24315 a:hover,
.menu--content .menu-item-24316 a:hover,
.menu--content .menu-item-24318 a:hover {
    background: none !important;
    color: transparent !important;
}

/* Затемняющий слой — псевдоэлемент */
.menu--content .menu-item-24316 a::before,
.menu--content .menu-item-24315 a::before,
.menu--content .menu-item-24318 a::before {
	content: '';
	position: absolute;
	inset: 0;
	/* background-color: rgba(0, 0, 0, 0);  */
	transition: background-color 0.3s ease;
	z-index: 1;
	border-radius: 8px;
}

/* При наведении — затемнение */
.menu--content .menu-item-24316 a:hover::before,
.menu--content .menu-item-24315 a:hover::before,
.menu--content .menu-item-24318 a:hover::before {
	background-color: rgba(0, 0, 0, 0.4); 
}


html.light-theme body,
html.light-theme {
  background-color: #fff;
  color: #000;
}

html.dark-theme body,
html.dark-theme {
  background-color: #002159;
  color: #fff;
}

.logo-img {
	width: 200px;
	height: 55px;
	background-repeat: no-repeat;
	background-size: contain;
}
html.light-theme .logo-img{
	background-image: url("/wp-content/uploads/images/alrosa/logo/logo-light.svg");
}

html.dark-theme .logo-img {
	background-image: url("/wp-content/uploads/images/alrosa/logo/logo-dark.svg"); 
}
html.light-theme h1,
html.light-theme h2,
html.light-theme h3,
html.light-theme h4,
html.light-theme h5,
html.light-theme h6{
	--primary-color: #002159;
}

html.dark-theme h1,
html.dark-theme h2,
html.dark-theme h3,
html.dark-theme h4,
html.dark-theme h5,
html.dark-theme h6{
	--primary-color: #ffffff;
}

/* Тёмная тема — меняем цвет */
html.dark-theme .loop__title,
html.dark-theme .video-single__title,
html.dark-theme .video-single__episodes-title,
html.dark-theme .tax-video_provider .loop__title,
html.dark-theme .tax-video_provider .breadcrumbs,
html.dark-theme .tax-video_provider .breadcrumbs a,
html.dark-theme .single-video .loop__title,
html.dark-theme .single-video .breadcrumbs,
html.dark-theme .single-video .breadcrumbs a {
	color: #ffffff;
}
html.light-theme .loop__title,
html.light-theme .tax-video_provider .loop__title,
html.light-theme .single-video .loop__title,
html.light-theme .tax-video_provider .breadcrumbs,
html.light-theme .tax-video_provider .breadcrumbs a,
html.light-theme .single-video .loop__title,
html.light-theme .single-video .breadcrumbs,
html.light-theme .single-video .breadcrumbs a {
	color: #002159;
}


/* Светлая тема */
html.light-theme .menu-position-top .header {
	background-color: #ffffff;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

/* Тёмная тема */
html.dark-theme .menu-position-top .header {
	background-color: #002159;
	box-shadow: none;
}

/* Светлая тема */
html.light-theme .main {
	background-color: #f5f7fa;
}

/* Тёмная тема */
html.dark-theme .main {
	background-color: #002159;
}

html.light-theme .menu--content .menu-item{	
	background-color: #002159;	
}
html.light-theme .menu--content .menu-item a{
	color: #fff;
}
html.light-theme .menu--content .menu-item-24316{
	overflow: hidden !important;
}
html.dark-theme .menu--content .menu-item{
	background-color: #BAD9EB;
	
}
html.dark-theme .menu--content .menu-item a{
	color: #002159;
}
html.light-theme .fleet__title{
	--primary-color: #002159;
}

html.dark-theme .fleet__title{
	--primary-color: #ffffff;
}
html.light-theme .fleet__title{
	--primary-color: #002159;
}

html.dark-theme .fleet__title{
	--primary-color: #ffffff;
}

/* Стили кнопки переключения темной и светлой темы */
.theme-toggle {

	bottom: 0px;
	right: 20px;
	z-index: 100001;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
}
.theme-toggle .dark-icon {
	display: none;
}
.dark-theme .theme-toggle .light-icon {
	display: none;
}
.dark-theme .theme-toggle .dark-icon {
	display: inline;
}



.nav-bottom {
		height: 80px;
		position: fixed;
		bottom: 0;
		left: 0px;
		width: 100%;
		z-index: 999;
		transition: background-color 0.3s ease;
		
	}

	/* Тёмная тема */
	html.dark-theme .nav-bottom {
		background-color: #002159;
	}

	/* Светлая тема */
	html.light-theme .nav-bottom {
		background-color: #ffffff;
		border-top: 1px solid #e0e0e0;
	}
	.menu-toggle__button-1 {

		position: fixed;
		bottom: 20px;
		left: 20px;
		display: block;
		width: 40px;
		height: 40px;
		border: none;
		border-radius: 4px;
		cursor: pointer;
		z-index: 1000;
	}
	.menu-toggle__button {
		border-radius: 50%; 
		padding: 8px;     
		display: flex;
		align-items: center;
		justify-content: center;
	}

		/* Светлая тема – фон тёмный */
	html.light-theme .menu-toggle__button {
		background-color: #002159;
	}

		/* Тёмная тема – фон светлый */
	html.dark-theme .menu-toggle__button {
		background-color: #BAD9EB;
	}

	

@media (min-width: 992px) {
	.nav-bottom {
		display: none;
	}
	.menu-toggle__button-1{
		display: block;
	}

	
}

@media (max-width: 991px) {
	.button-1,
	.menu-toggle__button-1{
		display: none;
	}
	html.light-theme .menu-toggle__button,
	html.dark-theme .menu-toggle__button {
		background-color: transparent;
	}
	.nav-bottom {
		display: flex;
		align-items: center;
		
	}
	.nav-bottom:after{
		content: '';
		width: 50%;
		height: 2px;
		background-color: #fff;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		border-radius: 50px;
	}
	.menu-toggle__button {
		position: relative;
		display: inline-block;
	}

	.mobil-dark-icon {
	display: none;
	}

	/* В тёмной теме скрываем светлую иконку и показываем тёмную */
	html.dark-theme .mobil-light-icon {
	display: none;
	}
	html.dark-theme .mobil-dark-icon {
	display: inline;
	}
}
.nav-bottom__items{
	display: flex;
	justify-content: space-between;
	align-items: center;

}
.dividing_line{
	
}
.nav-bottom__icon{
	text-align: center;
}

.nav-bottom__label{
	color: #ACACAC;
	font-size: 12px;
}
html.light-theme .nav-bottom__label-menu{
	color: #002159;
}
html.dark-theme .nav-bottom__label-menu{
	color: #BAD9EB;
}
.nav-bottom__link.menu-toggle__button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  gap: 0;
}

.menu-toggle__button:before{
	display: none;
}

html.light-theme .dark-icon,
html.dark-theme .light-icon {
	display: none;
}

html.light-theme .light-icon,
html.dark-theme .dark-icon {
	display: inline;
}


@media (max-width: 768px) {
		.fluid_fluid_control_duration {
		padding-left: 35px !important;
	}
}

.menu--content .menu-item a {
	font-size: 4rem;
	font-weight: 700;
}
