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


/* === Evolventa font === */
 @font-face {
  font-family: 'Evolventa';
  src: url('../fonts/evolventa/Evolventa-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Evolventa';
  src: url('../fonts/evolventa/Evolventa-Oblique.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Evolventa';
  src: url('../fonts/evolventa/Evolventa-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Evolventa';
  src: url('../fonts/evolventa/Evolventa-BoldOblique.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
} 

:root {
	--container-max-width: 1140px;
	--grid-gutter-width: 2rem;
	--desktop-min-width: 992px;
	--border-radius: 8px;
	--body-font-family: 'Evolventa', sans-serif !important;
}
.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-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;
}

.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 var(--primary-color);
	border-bottom: 2px solid var(--primary-color);
	position: relative;
	background-color: transparent;
	padding: 0;
	margin: 0;
	cursor: pointer;
	display: block;
}
.menu-toggle__button:before {
	content: '';
	display: block;
	height: 2px;
	background-color: var(--primary-color);
}
.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;
	z-index: 10001;
}
.admin-bar.menu-position-top .header {
	top: 46px;
}
@media (min-width: 992px) {
	.admin-bar.menu-position-top .header {
		top: 32px;
	}
}
.header__inner {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	flex-wrap: nowrap;
	align-items: center;
	min-height: 80px;
	padding: 16px 0;
}
.header img {
	display: block;
	height: 50px;
	width: auto;
}

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

}
.header__column--one{
	/* margin-right: calc(50% - 231px); */
	flex: 1;
    display: flex;
    justify-content: center;
}
@media  screen and (max-width: 768px) {
	.header__column--one{
		margin-right: calc(50% - 120px);
	}
}
.header__column--two {
	justify-self: end;
	gap: 40px;
}
.header__logo {}
.header__logo--small {}
.header__logo--big {

}
.header__menu {

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

.ornamentYamal{
	background-image: url("/wp-content/uploads/2024/06/yamalornamentpattern.png");
	max-height: 100px;
  	height: 100%;
  	background-size: contain;
	margin: 50px 0px -10px 0px;
}
@media screen and (max-width : 768px) {
	.ornamentYamal{
		margin: 15px 0px -10px 0px;
	}
}
/* @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%;
	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;
	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 {
		min-height: 300px;
		grid-row-start: 1;
	}
	#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__list li {

}
/* Цвет текста 0094c7 для маленького меню на главной */
#menu-item-17135> a, #menu-item-13185> a, #menu-item-13171 > a{
	color: #1D5E9A;
}

.menu--main .menu__list a {
	color: var(--white-color);
	font-size: 2.4rem;
	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;
	list-style: none;
	display: none;
}
.menu--main .menu__list .sub-menu--expanded {
	display: block;
}

.menu--content {
	margin-bottom: 20px;
}
.menu--content .menu__list {
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem;
	flex-direction: column;
}
.menu--content .menu-item {
	background: #ffffff;
	border-radius: 8px;
	max-width: 360px;
}
.menu--content .menu-item a {
	display: grid;
	grid-template-columns: min-content 1fr min-content;
	align-items: center;
	gap: 1.4rem;
	grid-gap: 1.4rem;
	padding: 8px 7px 8px 12px;
	font-size: 1.6rem;
	white-space: nowrap;
}
.menu--content .menu-item a:after {
	content: '';
	background: url("../images/plane-sign.svg") center no-repeat;
	width: 34px;
	height: 34px;
}
.menu--content .menu-item__icon {

	width: 26px;
	height: 26px;
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2px;
}
.menu--content .menu-item__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
@media (min-width: 992px) {
	.menu--main .menu__list {
		display: grid;
		grid-gap: 65px;
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}
	.menu--main .menu__list a {
		padding-left: 0;
		background: none !important;
	}
	.menu--main .menu__list > li > a {
		padding-left: 0;
	}
	.menu--main .menu__list > li.menu-item-has-children > a {
		pointer-events: none;
		color: #1D5E9A;
	}
	.menu--main .menu__list .sub-menu {
		margin-left: 0;
		display: block;
	}
	.menu--main .menu__list > li > ul a {
		font-size: 1.8rem;
		line-height: 2.2rem;
		margin-bottom: 12px;
	}
	.menu--content {
		margin-bottom: 8rem;
	}
	.menu--content .menu__list {
		gap: var(--grid-gutter-width);
	}
	.menu--content .menu__list {
		flex-direction: row;
	}
}
/**
 * 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: 1.2rem;
	height: 16px;
	margin-bottom: 16px;
	overflow: hidden;
	white-space: nowrap;
}
.breadcrumbs__inner {
	display: grid;
	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 {
	padding-left: 5px;
	cursor: pointer;
}
.breadcrumbs__arrow:before {
	content: '';
	display: block;
	border: 1px solid #000;
	border-right-width: 0;
	border-bottom-width: 0;
	width: 7px;
	height: 7px;
	transform: rotate(-45deg);
}
.post-categories {
	overflow: hidden;
	height: 30px;
	font-size: 1.1rem;
	margin-bottom: 20px;
}
.post-categories__inner {
	display: flex;
	align-items: center;
	overflow-x: auto;
	overflow-scrolling: touch;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 40px;
	margin-bottom: -40px;
	position: relative;
}
.post-categories__inner > * + * {
	margin-left: 10px;
}
.post-categories__item {
	color: #000;
	border-bottom: 1px solid transparent;
	white-space: nowrap;
	height: 30px;
	line-height: 30px;
}
.post-categories__item.active {
	color: var(--primary-color);
	border-bottom-color: var(--primary-color);
}
.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;
}
.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,
.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 {
	/* color: var(--video-link-color); */
}
.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;
}
.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;
	transform: translateY(-100%);
	transition: 0.3s ease-in-out;
}
.video-single__plyr.show {
	transform: translateY(0);
}
.video-single__thumbnail {
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}
.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: contain;
	width: auto;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}
.video-single__title {
	color: var(--video-text-color);
	font-weight: 500;
	font-size: 3rem;
	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) !important; */
	background-color: #df2d30 !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;
	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: 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 {
	/*display: flex;*/
	/*grid-gap: 0;*/
}
.video-related .video-archive__item {
	width: 150px;
	/*min-width: 43%;*/
	display: block;
}
.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%;
	}
	.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;
		left: 2rem;
		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;
}
@media (min-width : 992px) {
	.page .main > .container,
	.single-post .main > .container {
		max-width: 760px;
	}

	article.post img,
	article.page img {
		width: 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;
	border-radius: 8px;
	background-color: var(--muted-color);
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.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: contain;
}
.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 {
	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: 1.6rem;
	padding: 1rem 1rem 1rem 1.5rem;
	/*text-align: center;*/
}
.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--2x1 .slider__slide {
	width: 300px;
	height: 150px;
}
.slider--2x1 .slider__thumbnail {
	aspect-ratio: 4 / 3;
} */

.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__footer {
	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: 34px;
	width: 34px;
	text-align: center;
	line-height: 34px;
	color: #fff;
	background-color: var(--primary-color);
	border-radius: 4px;
	background-position: center;
	background-repeat: no-repeat;
	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;
}
@media (min-width : 992px) {
	.slider {
		margin-bottom: 8rem;
		--swiper-pagination-bullet-horizontal-gap: 8px;
	}
	.slider__header {
		margin-bottom: 4rem;
	}
	.slider--1x1 .slider__slide {
		width: 246px;
	}
	.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: 2.5rem;
		/*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 {
	margin-left  : calc( -100vw / 2 + 100% / 2 );
	margin-right : calc( -100vw / 2 + 100% / 2 );
	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;
}

.container-footer {

	width: 100%;
	margin: 0 auto;
	padding: 0 60px;
  }
  .agreement {
    width: 100%;
    display: flex;
    justify-content: space-between;
	margin: 0;
    padding: 20px 0;
}

.agreement .user_agreement {
	font-size: 1.2rem;
	font-weight: 400;
    width: 50%;
    text-align: left;
}

.agreement .wifly {
	font-size: 1.2rem;
	font-weight: 400;
    width: 50%;
    text-align: right;
}

.agreement a {
    text-decoration: none;
}

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

/* .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);
	}
}
.audio-single__play{
	background-color: var(--secondary-color) !important;
	color: white;
	display: block;
	width: 100%;
	margin-bottom: 30px;
	max-width: 400px;
	cursor: pointer;
}

 @media (max-width: 768px) {

	.fluid_fluid_control_duration {
    padding-left: 35px !important;
}

}
.page-muzyka-yamala .loop__image{
	aspect-ratio: 1 / 1;
}
.page-muzyka-yamala .loop__image img {
    object-fit: contain;
    object-position: center;
}


/* Стили кнопки наверх  */
	.scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 50%;
	background: rgba(0,0,0,0.6);
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	transition: opacity 0.3s, transform 0.3s;
}

.scroll-top.show {
	display: flex;
	opacity: 1;
	transform: translateY(0);
}

.scroll-top.hide {
	opacity: 0;
	transform: translateY(20px);
}
/* Стили кнопки наверх  */
body {
  font-family: 'Evolventa', sans-serif !important;
}

