/**
 * @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/
 */


 @font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/subset-Montserrat-Regular.woff2) format('woff2'),
		 url(../fonts/subset-Montserrat-Regular.woff) format('woff');
    
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/subset-Montserrat-Bold.woff2) format('woff2'),
		 url(../fonts/subset-Montserrat-Bold.woff) format('woff');
    
}
:root {
	--container-max-width: 1140px;
	--grid-gutter-width: 2rem;
	--desktop-min-width: 992px;
	--border-radius: 8px;
	--body-font-family: Montserrat;
}

.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: border-box;
}

body {
	background-size: cover;
	background-position: center;
	background-color: var(--light-color);
	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;
	/* color: var(--primary-color); */
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--primary-color);
}

h1 {
	font-size: 2.4rem;
}
ul{
	padding-inline-start: 0px;
}
.app {}

.container {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	max-width: var(--container-max-width);
	padding: 0 10px;
}

.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(0, 0, 0, 0.15);
	background-color: #fff;
	position: relative;
	z-index: 100;
	margin-bottom: 20px;
}

.menu-position-top .header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
}

.admin-bar.menu-position-top .header {
	top: 46px;
}

@media (min-width: 992px) {
	.admin-bar.menu-position-top .header {
		top: 32px;
	}
}

.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__logo {}

.header__logo--small {}

.header__logo--big {}

.header__menu {
	display: flex;
    justify-content: flex-end;
}

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

.header__menu .menu-toggle__button:before {
	height: 4px;
}
.header__link{
	color: #3497F9;
}
.header__link:hover{
	color: #1D5A96;
	transition: 0.5s;
}
/* бургерное меню */

.header__menu-btn{
    display: none;
    width: 30px;    
}
.header__menu-row{
    width: 30px;
    background-color: #3497F9;
    height: 4px;
    margin-bottom: 4px;
}
/* бургерное меню */
.header__list.active {
    display: block;
}
@media (max-width : 768px) {
/* бургерное меню */
	   .header__menu-btn{
       display: block;
		-ms-grid-column: 2;
		grid-column: 2;
		-ms-grid-column-align: end;
		    justify-self: end;
    }
    .header__menu ul{
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1;
        background-color: #fff;
    }
    .header__menu li{
        display: block;
        text-align: center;
        padding: 15px 0;
    	border-bottom: 1px solid #eee;
    }
    .header__menu li + li {
        margin-left: 0;
        margin-top: 10px;
    }
    .header__menu a{
        display: block;
    }
	/* бургерное меню */





	.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;
	}

}

@media (min-width : 768px) {
	.menu-position-top .main {
		padding-top: 100px !important;
	}
}

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

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

.menu-position-top .main {
	padding-top: 66px;
}

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

@media (min-width: 992px) {
	.menu-position-top .main {
		padding-top: 100px;
	}
}

.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__left {}

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

.modal {          
        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: 20px;
	margin-left: auto;
	margin-right: auto;
}

.modal__header {
	align-self: start;
}

.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;
}

.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;*/
}

#modal-menu>.modal__content {}

.menu {}

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

.menu--main ul li {
	/* background-color: rgb(255, 255, 255, 0.6); */
	padding: 1.5em 0;
	margin-bottom: 1em;
	border-radius: 10px;
}

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

.sub-menu li {
	padding-left: 3em !important;
}

@media (max-width: 991px) {
	.sub-menu li {
		padding: 0.5em 3em !important;
		width: 100%;
	}
}

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

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

.menu--main .menu__list a {
	/* color: var(--white-color); */
	font-size: 2rem;
	/*min-height: 35px;*/
	/*line-height: 35px;*/
	display: block;
	/*margin-bottom: 12px;*/
}

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

.menu--main .menu__list li.menu-item-has-children>a {
	background: url("../images/arrow-right.svg") no-repeat 0 0;
}

.menu--main .menu__list li.menu-item-has-children--expanded>a {
	background: url("../images/arrow-bottom.svg") no-repeat 0 0;
}

.menu--main .menu__list .sub-menu {
	padding: 0;
	/*margin: 0 0 0 50px;*/
	margin: 0 2em;
	list-style: none;
	display: none;
}

.menu--main .menu__list .sub-menu--expanded {
	display: flex;
	margin-top: 1em;
	flex-direction: column;
	align-items: center;
}

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

.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-item {
	background: linear-gradient(90deg, #3497F9 0%, #1D5A96 100%);
	border-radius: 8px;
	width: 100%;
	height: 8em;
}

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

.menu--content .menu-item a:hover{
	background:  #1D5A96;
	border-radius: 8px;
	color: #fff;
	transition: 0.7s;
}


.menu--content .menu-item__icon {
	/* background-color: var(--primary-color); */
	width: 90px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: start;
	border-radius: 15px 50% 50% 15px;
	padding-left: 15px;
	margin-right: 0.5em;
}

.menu--content .menu-item__icon div {
	/*width: 70%;*/
	/*height: 70%;*/
	width: 50px;
	height: 100%;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	/*object-fit: contain;*/
}

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

/**
 * 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 {}

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

.fleet__title {
	color: var(--primary-color);
	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;
}

.fleet__features {
	font-size: 1.2rem;
	color: var(--muted-color);
	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;
	}
}

/**
 * Хлебные крошки.
 */
.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(/img/icons/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 {
	text-align: center;
	font-size: 1rem;
	font-weight: 400;
	color: #000;
	margin: 0 0 6px 0;
	height: 32px;
}
.loop__item .loop__title:hover{
	color: #023def;
	transition: 0.3s;
}

.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,
.tax-video_provider .main {
	background-color: var(--video-background-color);
}

.single-video .main {
	height: auto;
}

/* .single-video .main,
.tax-video_provider .post-categories__item,
.single-video .post-categories__item {
	border: 1px solid #2F95FA !important;
	border-radius: 4px !important;
	padding: 4px 19px !important;
	display: flex !important;
	align-items: center !important;
} */

.tax-video_provider .loop__title,
.single-video .loop__title,
.tax-video_provider .breadcrumbs,
.tax-video_provider .breadcrumbs a,
.single-video .breadcrumbs,
.single-video .breadcrumbs a {
	color: var(--video-link-color);
}

.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: #6c757d;
	font-weight: 700;
	font-size: 0.9rem;
	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.2rem;
	margin-bottom: 15px;
	color: var(--video-text-color);
}

.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: #6c757d;
	font-weight: 500;
	font-size: 1rem;
	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 {}

.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 {
	/*border: 1px solid #737576;*/
	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__slide {}

.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;
}
.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;
	/*display: grid;*/
	/*max-width: 280px;*/
	/*gap: var(--grid-gutter-width);*/
	/*grid-template-columns: min-content 1fr min-content;*/
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	align-items: center;
}

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

.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 : 500px) and (max-width: 991px) {*/
/*	.slider--1x1{*/
/*		max-width: 70%;*/
/*	}*/
/*}*/

@media (min-width : 992px) {

	/*.slider--1x1{*/
	/*	max-width: 50%;*/
	/*}*/
	.slider {
		margin-bottom: 8rem;
		--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;
}

.logo-img {
	background-image: url("/wp-content/uploads/images/logo/logo_wifly.svg");
	background-size: cover;
	width: 110px;
	height: 45px;
}

.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 {
	/* background-color: var(--primary-color) !important; */
	/* background-color: #2F95FA; */
	color: #7BA0D0 !important;
	height: fit-content;
}

.current_page_item a {
	/* color: white !important; */
}

.modal_x {
	z-index: 999999;
}

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

.modal_in_develop_body {
	display: flex;
	justify-content: center;
}
.disable-dark-mode {
	
@media (prefers-color-scheme: dark) {
	.header {
	/*	background-color: rgb(71, 71, 71) !important; */
	}

	.menu-toggle {
		color: var(--secondary-color) !important;
	}

	.menu-toggle__button {
		border-top-color: var(--secondary-color) !important;
		border-bottom-color: var(--secondary-color) !important;
	}

	.menu-toggle__button:before {
		background-color: var(--secondary-color);
	}

	.main {
	     /*	background-color: rgb(51, 51, 51) !important; */
	}

	.logo-img {
		background-image: url("/wp-content/uploads/2023/10/moroshka-1.svg") !important;
	}

	.loop__title {
		color: white !important;
	}

	.breadcrumbs a {
		color: #fff !important;
	}

	.breadcrumbs__arrow:before {
		border-color: #fff !important;
	}

	.breadcrumb_last {
		color: white !important;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		color: #fff !important;
	}

	body {
		color: white !important;
	}

	.single-magazine .breadcrumbs span span:nth-child(3) {
		background-color: transparent !important;
	}

	.forminator-label {
		color: white !important;
	}

	.forminator-button {
		background-color: var(--secondary-color) !important;
	}

	.menu--content .menu-item {
		background-color: rgb(71, 71, 71) !important;
	}

	.menu--content .menu-item__icon {
		background-color: white !important;
	}

	.menu--content .menu-item a {
		color: white !important;
	}
}
}
.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{
	/*width: 100%;*/
	/*height: 20em;*/
	display: none;
	/*background-size: contain;*/
	/*background-repeat: no-repeat;*/
	/*background-position: center;*/
	/*margin: 1em 0;*/
	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;
}
/* @media (max-width : 768px){
	.slider--adaptive .slider__thumbnail{
		aspect-ratio: 10 / 3;
	}
} */



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

}

.poster-adblock-close-counter{
	position: absolute;
	top: 10px;
	right: 10px;
	/*background-size: cover !important;*/
	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;
}

/* стили видео для автобусов */
 .video-wrapper {
      position: relative;
      padding-top: 56.25%; 
      height: 0;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      background-color: #000;
      max-width: 100%;
    }

    .video-wrapper video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; 
      border: none;
    }
	

/* стили видео для автобусов */

/* Стили audio2.html */

 .screen-reader-text {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.disabled {
  color: #666;
  cursor: default;
}

.show {
  display: inline-block;
}


/* PLAYER */

/* === PLAYER === */
.player {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 500px;
  padding: 10px 0;
  box-sizing: border-box;
}

/* === КНОПКА ПУСК/ПАУЗА === */
.player .large-toggle-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: end;
  justify-content: center;
  background: #fff;
  flex-shrink: 0;
  cursor: pointer;
}

.player .large-toggle-btn .large-play-btn::before,
.player .large-toggle-btn .large-pause-btn::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  content: url("../img/icons/play.svg");
}

.player .large-toggle-btn .large-pause-btn::before {
  content: url("../img/icons/pause.svg");
}

/* === ПРОГРЕСС БАР === */
.player .progress-box {
  flex: 1;
  min-width: 100px;
  position: relative;
}

.player .progress-box .progress-cell {
  height: 12px;
  position: relative;
  width: 100%;
}

.player .progress-box .progress-cell .progress {
  background: #fff;
  border: 1px solid #d9d9d9;
  height: 8px;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

.player .progress-buffer {
  background: #337ab7;
  height: 100%;
  width: 0%;
}

.player .progress-indicator {
  background: #fff;
  border: 1px solid #bebebe;
  border-radius: 3px;
  cursor: pointer;
  height: 10px;
  width: 22px;
  position: absolute;
  top: -2px;
  left: 0;
}

/* === INFO BOX === */
.info-box {
  flex: 1 1 100%;
  font-size: 12px;
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  /* justify-content: space-between;
  visibility: visible; */
}
.track-info-box{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.track-title-text {
  white-space: nowrap;
  /* overflow: hidden; */
  text-overflow: ellipsis;
  /* max-width: 70%; */
  margin-right: 10px;
}

.audio-time {
  min-width: 60px;
  text-align: right;
}

/* === ПЕРЕКЛЮЧЕНИЕ ТРЕКОВ === */
.controls-box {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.controls-box .previous-track-btn,
.controls-box .next-track-btn {
  cursor: pointer;
  display: inline-block;
  width: 24px;
  height: 24px;
}
 
  
.previous-track-btn::before {
 content: url("../img/icons/previous.svg");
}

.next-track-btn::before {
 content: url("../img/icons/next.svg");
}

/* PLAYLIST */


.play-list {
  display: block;
  margin: 20px 0; /* убрано auto, чтобы не было центрирования */
  width: 100%;
}

.play-list .play-list-row {
  display: flex;          
  align-items: center;      
  justify-content: flex-start;
  gap: 10px;                
  margin: 10px 0;
  width: 100%;
}


.play-list .play-list-row .small-toggle-btn {
  /* border: 1px solid #d9d9d9;
  border-radius: 2px; */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.play-list .play-list-row .small-toggle-btn .small-play-btn,
.play-list .play-list-row .small-toggle-btn .small-pause-btn {
  display: block;
  width: 100%;
  height: 100%;
}

.play-list .play-list-row .small-toggle-btn .small-play-btn::before {
  content: url("../img/icons/small-play.svg");
  display: block;
  width: 14px;
  height: 14px;
  margin: auto;
}

.play-list .play-list-row .small-toggle-btn .small-pause-btn::before {
  content: url("../img/icons/small-pause.svg");
  display: block;
  width: 14px;
  height: 14px;
  margin: auto;
}
.playlist-track{
   text-decoration: none;
    color: #000;
}
.playlist-track:hover {
  color: #3497F9;
}

  

/* Стили audio2.html */

/* Стили фильтра в смотреть */
 .filters-bar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    align-items: center;
    flex-wrap: wrap;
  }

  .filters-bar__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1 1 auto;
    min-width: 250px;
  }

  select,
  input[type="text"] {
    padding: 0.6rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    width: 100%;
    transition: border-color 0.3s;
    appearance: none; 
    background-color: white;
  }

  select:focus,
  input[type="text"]:focus {
    border-color: #3497F9;
  }

  button {
    padding: 0.6rem 1rem;
    background-color: #3497F9;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
  }

  button:hover {
    background-color: #0056b3;
  }

  .search-form {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    width: 100%;
  }

  .fa-user {
    font-size: 1.5rem;
    color: #3497F9;
    flex-shrink: 0;
  }

  @media (max-width: 768px) {
    .filters-bar {
      flex-direction: column;
      align-items: stretch;
    }

    .filters-bar__item {
      flex-direction: column;
      align-items: stretch;
      min-width: 100%;
    }

    .search-form {
      flex-direction: column;
      align-items: stretch;
    }

    button {
      width: 100%;
    }

    .fa-user {
      margin-bottom: 0.5rem;
    }
  }

   .custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
  }

  .custom-select select {
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: white;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    cursor: pointer;
   
  }

  .custom-select::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 1.2rem;
    height: 1.2rem;
    pointer-events: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%233497F9" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease;
  }
  .custom-select.open::after {
    transform: translateY(-50%) rotate(180deg);
  }
 
  .custom-select select:focus + .custom-select::after,
  .custom-select select:focus-visible + .custom-select::after {
    transform: translateY(-50%) rotate(180deg);
  }

  /* Стили фильтра в смотреть */
   /* Стили модального окна */
.modal {
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;

  transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  position: relative;
  text-align: center;
}

.modal .close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.ad-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: #3497F9;
  color: white;
  border-radius: 8px;
  text-decoration: none;
}

.ad-link:hover {
  background: #0070d1;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
     /* Стили модального окна */


	/* кнопка наверх */

	.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: none;
  background-color: #3497F9;
  color: white;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.scroll-to-top:hover {
  background-color: #0070d1;
}
.breadcrumbs button{
    padding: 0;
}
/* кнопка наверх */
