﻿/* Theme Name: Fable */

*,
:after,
:before {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

:root {
	--icon: url(assets/images/icons/sprite.png);
	--icon2x: url(assets/images/icons/sprite@2x.png);
	
	--white-color: #fff;
	--black-color: #000;
	
	--primary-color-accent: #d0021b;
	--primary-color-hover: #bb0217;
	
	--blue-color-accent: #0676ed;
	--blue-color-ghost: #dcedfe;
	
	--orange-color-accent: #fa8f38;
	--orange-color-ghost: #feebdc;
	
	--red-color-accent: #fa3838;
	--red-color-ghost: #fedcdc;
	
	--green-color-accent: #24AC5C;
	--green-color-ghost: #e2f9eb;
	
	/* Gray Color: */
	
	--gray-color-120: #262626;
	--gray-color-115: #333333;
    --gray-color-110: #404040;
	--gray-color-105: #4d4d4d;
    --gray-color-100: #595959;
	--gray-color-95: #666666;
	--gray-color-90: #737373;
	--gray-color-85: #808080;
	--gray-color-80: #8c8c8c;
	--gray-color-75: #999999;
	--gray-color-70: #a6a6a6;
	--gray-color-65: #b3b3b3;
    --gray-color-60: #bfbfbf;
	--gray-color-55: #cccccc;
	--gray-color-50: #d9d9d9;
	--gray-color-45: #e6e6e6;
    --gray-color-40: #ededed;
	--gray-color-35: #f2f2f2;
    --gray-color-30: #f5f5f5;
	--gray-color-25: #f7f7f7;
    --gray-color-20: #fafafa;
	
	/* Transparent Color: */
	
	--transparent-color-20: rgb(0 0 0 / 20%);
	--transparent-color-15: rgb(0 0 0 / 15%);
	--transparent-color-10: rgb(0 0 0 / 10%);
	--transparent-color-5: rgb(0 0 0 / 5%);
	--transparent-color-3: rgb(0 0 0 / 3%);

	--heading-color: #000;
	--text-color: #222;
	--link-color: #3591fd;
	--link-color-visited: #b40eb4;
	--link-color-hover: #C00;
	--radius: 8px;
}

body,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
input,
textarea,
p {
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,
img {
    border: 0;
}

img {
    vertical-align: middle;
}

ol,
ul {
    list-style: none;
}

@font-face {
    font-family: 'Noto Sans';
    src: local('Noto Sans'), 
		 local('NotoSans'), 
		 url('assets/fonts/400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
	font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: local('Noto Sans SemiBold'), 
		 local('NotoSans-SemiBold'), 
		 url('assets/fonts/500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
	font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: local('Noto Sans SemiBold'), 
		 local('NotoSans-SemiBold'), 
		 url('assets/fonts/600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
	font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: local('Noto Sans Bold'), 
		 local('NotoSans-Bold'), 
		 url('assets/fonts/700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
	font-display: swap;
}

body {
	position: relative;
	background-color: var(--white-color);
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	font-family: 'Noto Sans', sans-serif;
	color: var(--text-color);
	font-weight: 400;
	line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading-color);
    font-size: 100%;
	line-height: 1.5;
	font-weight: 700;
	margin-bottom: 35px;
}

h1 {
	line-height: 1.3;
}

p {
    margin-bottom: 35px;
}

strong {
    font-weight: 600;
}

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

a:visited {
	color: var(--link-color-visited);
}

a:hover {
    color: var(--link-color-hover);
}

.button {
    background-color: var(--primary-color-accent);
    display: table;
	cursor: pointer;
	font-family: inherit;
    color: #fff;
    font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
    border: 1px solid var(--primary-color-accent);
	border-radius: var(--radius);
	user-select: none;
    transition: all .5s;
	padding: 10px 12px;
}

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

.button.neutral {
    background-color: var(--gray-color-45);
	color: var(--black-color);
	border-color: var(--gray-color-45);
}

.button.neutral:hover {
    background-color: var(--gray-color-60);
	color: var(--black-color);
	border-color: var(--gray-color-60);
}

.row {
	position: relative;
    font-size: 0;
}

.main {
	flex: 1 0 auto;
}

.visually-hidden,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	white-space: nowrap;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	border: 0;
	padding: 0;
	margin: -1px;
}

.ellipsis {
	max-width: 100%;
	display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


/* Scrollbar */

.scrollable {
	overflow-x: scroll;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	cursor: grab;
}

.scrollable::-webkit-scrollbar {
	width: 0;
	height: 0;
}

.scrollable.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.scrollbar {
    position: relative;
    background-color: #262626;
	height: 2px;
	border-radius: 2px;
}

.scrollbar .scrollbar-thumb {
    position: absolute;
	background-color: #8c8c8c;
    height: 100%;
    border-radius: 2px;
}


/* ОСНОВНОЙ КОНТЕНТ */

.main {
	padding-bottom: 40px;
}

.content {
	flex: 1 0 auto;
}


/* ШАПКА */

.header {
	z-index: 10000;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 9px;
	padding-bottom: 9px;
}

.header .logotype {
	display: block;
	color: #000;
	font-size: 22px;
	font-weight: 700;
	outline: none;
}

.header .favorites-wrap {
	margin-left: auto;
}

.header .logotype:focus-visible,
.header .search-toggle:focus-visible,
.header .menu-toggle:focus-visible {
	outline: 2px solid var(--primary-color-accent);
	outline-offset: 2px;
}

.header .menu li a,
.header .menu-group {
	color: #000;
	line-height: 1.4;
}

.header .menu-group {
	display: flex;
	align-items: center;
	background: transparent;
	font-family: inherit;
	border: 0;
	cursor: pointer;
	touch-action: manipulation;
}

.header .menu-group:after {
	content: "";
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform .2s ease;
	margin-top: -4px;
	margin-left: 8px;
}

.header .menu-group[aria-expanded="true"]:after {
	transform: rotate(-135deg);
	margin-top: 4px;
}

.header .menu-count {
	color: var(--gray-color-80);
	font-size: 13px;
	font-variant-numeric: tabular-nums;
	margin-left: auto;
}

.header .menu a:focus-visible,
.header .menu-group:focus-visible {
	outline: 2px solid var(--primary-color-accent);
	outline-offset: 2px;
}

.header .search {
	position: absolute;
	top: 50%;
	width: calc(100% - 84px);
	display: none;
	margin-top: -22px;
}

.header .search.show {
	z-index: 10002;
	display: block;
}

.header .search input {
    background-color: var(--gray-color-45);
    width: 100%;
	height: 44px;
	display: block;
	font-family: inherit;
	font-size: 17px;
	line-height: 44px;
    border: none;
	outline: none;
	border-radius: var(--radius);
	padding-left: 15px;
	padding-right: 52px;
}

.header .search-toggle { 
	position: relative;
	background-color: transparent;
	width: 44px;
	height: 44px;
	cursor: pointer;
	border: none;
	border-radius: var(--radius);
}

.header .search-toggle.close { 
	z-index: 10003;
}

.header .search-toggle:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background-image: var(--icon);
    background-repeat: no-repeat;
    background-size: 200px;
	background-position: 0 0;
	width: 20px;
	height: 20px;
	display: block;
	margin-top: -10px;
	margin-left: -10px;
}

.header .search-toggle.close:after {
	background-position: -40px 0;
}


/* ХЛЕБНЫЕ КРОШКИ */

.breadcrumbs {
	font-size: 13px;
	margin-bottom: 25px;
}

.breadcrumbs li {
	position: relative;
	display: inline-block;
	color: var(--text-color);
}

.breadcrumbs li:after {
    content: "→";
    display: inline-block;
	color: inherit;
    margin: 0 10px;
}

.breadcrumbs li:last-child:after {
    content: none;
}

.breadcrumbs li a {
	color: inherit;
	border-bottom: 1px solid transparent;
}

.breadcrumbs li a:hover {
	color: var(--black-color);
	border-color: var(--transparent-color-20);
}


/* TITLE */

.title {
	display: block;
    color: #333;
	font-size: 21px;
	font-weight: 600;
	margin-bottom: 20px;
}


/* HERO */

.hero-image {
	margin-bottom: 40px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
	display: block;
	border-radius: var(--radius);
}



/* ARTICLE */

.article {
	position: relative;
	width: 100%;
	margin-bottom: 100px;
}


/* TOC */

.toc {
	text-align: left;
	transition: transform 0.3s;
}

.toc .toc-title {
	background-color: transparent;
	display: block;
	cursor: default;
	font-family: inherit;
	color: #000;
	font-size: inherit;
	font-weight: 400;
	text-align: left;
	border: none;
	padding: 0;
}

.toc .toc-list {
	overflow: scroll;
	overflow-x: hidden;
	overflow-y: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.toc .toc-list::-webkit-scrollbar {
	display: none;
}

.toc .toc-list li {
	display: block;
	line-height: 1.4;
}

.toc .toc-list a {
	display: block;
	color: inherit;
	font-weight: 400;
}

.toc .toc-list .current {
	color: #d0021b;
}

.toc .toc-list .h3 {
	margin-left: 18px;
}


/* Text */

.text {
	text-align: left;
}

.text h2:not(:first-child) {
    margin-top: 35px;
}

.text > ul,
.text > ol {
    margin-bottom: 35px;
}

.text > ol {
    counter-reset: list;
}

.text > ul li,
.text > ol li {
    position: relative;
    display: block;
    margin: 0 0 15px;
}

.text > ul li:before {
    content: "";
    background-color: #d0021b;
    width: 6px;
    height: 6px;
	display: inline-block;
	vertical-align: middle;
    border-radius: 50%;
    margin-right: 12px;
}

.text > ol li:before {
    content: counter(list) ". ";
	counter-increment: list;
}

.text table {
	max-width: 100%;
	display: inline-block;
	overflow-x: auto;
	margin-bottom: 35px;
}

.text table caption {
	font-size: 14px;
    font-weight: 400;
	text-align: left;
    margin-bottom: 10px;
}

.text table th,
.text table td {
    vertical-align: top;
    border: 1px solid #ddd;
	padding: 15px 20px;
}

.text thead th {
    vertical-align: bottom;
	font-weight: 500;
}

.text mark {
	background-color: #ffeea4;
    padding: 4px 2px;
}

.text q {
	quotes: "«" "»" "„" "“";
	font-family: 'Georgia', 'Times New Roman', serif;
	font-style: italic;  
}

.text blockquote {
	font-family: 'Georgia', 'Times New Roman', serif;
	font-size: 128%;
	line-height: 1.4;
	font-style: italic;
	font-weight: normal;
	border-left: 2px solid #d0021b;
	padding: 0 0 0 28px;
	margin: 50px 0
}

.text blockquote p:last-child {
	margin-bottom: 0;
}


/* Quote container */

.quote-container {
	border: none;
	padding: 0;
	margin: 0 0 35px;
}

.quote-container blockquote {
	margin: 0
}

.quote-container .quote-caption {
	font-size: 85%;
	font-weight: 400;
	margin-top: 25px;
}

.quote-container .quote-caption cite {
	font-style: normal;
}


/* Icon */

.inline-icon {
	height: 24px;
	display: inline-block;
}


/* Image */

.image {
	position: relative;
	margin: 0;
	margin-bottom: 35px;
}

.image img {
	z-index: 1;
	position: relative;
    max-width: 100%;
    height: auto;
	display: block;
	border-radius: var(--radius);
}

.image .caption {
    display: block;
    font-size: 80%;
	color: rgb(0 0 0 / 80%);
	font-weight: 400;
	padding: 10px 0 0;
}


/* Gallery */

.gallery {
	display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
	margin-bottom: 35px;
}

.gallery .image-wrapper {
	position: relative;
	background-color: var(--gray-color-45);
	width: 100%;
	cursor: pointer;
	overflow: hidden;
	border-radius: var(--radius);
	padding-top: 66.67%;
}

.gallery .image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
	max-width: 100%;
    height: auto;
	min-height: 100%;
	display: block;
	object-fit: cover; 
    transition: transform 0.5s ease;
}

.gallery .image-wrapper:hover img {
    transform: scale(1.05);
}


/* Clip */

.clip {
	position: relative;
	width: 100%;
	height: 0;
	max-height: 100vh;
	overflow: hidden;
	border-radius: var(--radius);
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 35px;
}

.clip.ratio-16-9 {
	padding-top: 56.25%;
}

.clip.ratio-4-3 {
	padding-top: 75%;
}

.clip.ratio-1-1 {
	padding-top: 100%;
}

.clip.ratio-9-16 {
	max-width: 56.25vh; 
	padding-top: 177.78%;
}

.clip.ratio-3-4 {
	max-width: 75vh;
	padding-top: 133.33%;
}

.clip video {
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	border: none;
}


/* Media Info */

.media-info {
	z-index: 2;
	position: absolute;
	top: 5px;
	right: 5px;
	background-color: #fff;
	max-width: 310px;
	min-height: 54px;
	display: none;
	color: var(--text-color);
	border-radius: var(--radius);
	padding: 16px 50px 16px 18px;
}

.media-info.show {
	display: block;
}

.media-info .media-author,
.media-info .media-source {
	font-size: 14px;
    line-height: 1.5;
}

.media-info .media-author:before,
.media-info .media-source:before {
    color: #737373;
}

.media-info .media-author:before {
    content: attr(data-author);
}

.media-info .media-source:before {
    content: attr(data-source);
}

.media-info .link {
	display: inline;
	font-size: 15px;
}

.media-info-button {
	z-index: 3;
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: rgb(255 255 255 / 50%);
	width: 32px;
	height: 32px;
	display: block;
	cursor: pointer;
	border: none;
	border-radius: var(--radius);
	user-select: none; 
}

.media-info-button:hover {
	background-color: rgb(255 255 255 / 70%);
}

.media-info-button:after {
	content: "";
	position: absolute;
	top: 6px;
	left: 6px;
	background-image: var(--icon);
    background-repeat: no-repeat;
    background-size: 200px;
	width: 20px;
	height: 20px;
	display: block;
	opacity: .8;
}

.media-info-button.icon-attention:after {
	background-position: -120px 0;
}

.media-info-button.icon-close:after {
	background-position: -40px 0;
}


/* YouTube */

.youtube-video {
	position: relative;
    width: 100%;
    height: 0;
	background-color: var(--gray-color-45);
	overflow: hidden;
	padding-bottom: 56.25%;
	margin-bottom: 35px;
}

.youtube-video iframe,
.youtube-video object,
.youtube-video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* Tabs */

.tabs {
	overflow: visible;
}

.tabs.article-tabs {
	margin-bottom: 35px;
}

.tabs .tablist {
	position: relative;
}

.tabs.article-tabs .tablist {
	z-index: 1000;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	background-color: var(--white-color);
}

.tabs .tablist:after {
	z-index: 1;
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	border-bottom: 1px solid var(--gray-color-50);
}

.tabs.article-tabs .tablist:after {
	border-color: var(--gray-color-70);
}

.tabs .tablist .tabs-inner .tab {
	z-index: 2;
	position: relative;
	background-color: transparent;
    display: inline-block;
	opacity: .8;
    cursor: pointer;
	font-family: inherit;
	font-size: inherit;
	font-weight: 400;
	line-height: 1.3;
    border: none;
	border-bottom: 1px solid transparent;
	user-select: none;
	padding-left: 0;
	padding-right: 0;
	padding-top: 15px;
    padding-bottom: 15px;
}

.tabs .tablist .tabs-inner .tab:last-child {
	margin-right: 0;
}

.tabs .tablist .tabs-inner .tab:hover {
	opacity: 1;
}

.tabs .tablist .tabs-inner .tab.active {
	opacity: 1;
    cursor: default;
	color: var(--primary-color-accent);
	border-color: var(--primary-color-accent);
}

.tabs .tabpanel {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: 
        opacity 0.3s ease,
        visibility 0.3s ease,
        height 0.3s ease;
}

.tabs .tabpanel.active {
    opacity: 1;
    visibility: visible;
    height: auto;
	overflow: visible;
}

.tabs.article-tabs .tabpanel.active {
	border-radius: 0 0 var(--radius) var(--radius);
	border-left: 1px solid var(--gray-color-70);
	border-right: 1px solid var(--gray-color-70);
	border-bottom: 1px solid var(--gray-color-70);
}

.tabs .tabpanel > *:last-child {
    margin-bottom: 0;
}


/* Links */

.links-block {
	text-align: left;
	border: 1px solid var(--gray-color-70);
	border-radius: var(--radius);
	margin-bottom: 35px;
}

.links-block li {
	position: relative;
	width: 100%;
    display: block;
	border-bottom: 1px solid var(--gray-color-70);
	padding-left: 0;
	padding-right: 34px;
	padding-bottom: 20px;
	margin: 0 0 19px;
}

.links-block li:after {
	content: "";
	position: absolute;
	top: 6px;
	right: 0;
	background-image: var(--icon);
    background-repeat: no-repeat;
    background-size: 200px;
	background-position: -60px 0;
	width: 20px;
	height: 20px;
	display: block;
	opacity: .8;
	transform: rotate(270deg);
}

.links-block li:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin: 0;
}

.links-block li a {
	color: var(--black-color);
	font-size: 90%;
	line-height: 1.4;
}

.links-block li a:hover {
    color: var(--link-color-hover);
}


/* Options */

.options {
	width: 100%;
}

.options dl {
	position: relative;
	width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-end;
	text-align: left;
	margin-top: 12px;
	margin-bottom: 12px;
}

.options dl:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 7px;
	background: repeat-x radial-gradient(2px circle at 1px 1px,var(--gray-color-90) 50%,transparent 50.2%) 0 0 /6px 2px;
	height: 2px;
}

.options dl dt span,
.options dl dd {
	z-index: 1;
	position: relative;
	background-color: var(--white-color);
}

.options dl dt {
	margin-right: auto;
}

.options dl dt span {
	color: var(--gray-color-100);
	padding-right: 6px;
}

.options dl dd {
	font-weight: 500;
	padding-left: 6px;
	margin-left: 0;
}

.options dl dd.negative {
    color: var(--red-color-accent);
}

.options dl dd.positive {
    color: var(--green-color-accent);
}


/* Reviews */

.reviews {
	margin-bottom: 60px;
}

.reviews .reviews-sort {
	margin-bottom: 15px;
}

.reviews .reviews-sort .sort-title,
.reviews .reviews-sort .sort-buttons,
.reviews .reviews-sort .sort-buttons .sort-button {
	display: inline-block;
	vertical-align: top;
}

.reviews .reviews-sort .sort-title,
.reviews .reviews-sort .sort-buttons .sort-button {
	color: var(--gray-color-80);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
}

.reviews .reviews-sort .sort-title {
	margin-right: 26px;
}

.reviews .reviews-sort .sort-buttons .sort-button {
	position: relative;
	background-color: transparent;
	cursor: pointer;
	font-family: inherit;
	border: none;
	padding: 0;
	padding-right: 22px;
	margin-right: 10px;
}

.reviews .reviews-sort .sort-buttons .sort-button:last-child {
	margin-right: 0;
}

.reviews .reviews-sort .sort-buttons .sort-button:hover {
    color: var(--gray-color-100);
}

.reviews .reviews-sort .sort-buttons .sort-button.selected {
    color: var(--gray-color-125);
}

.reviews .reviews-sort .sort-buttons .sort-button.selected:hover {
    color: var(--text-color);
}

.reviews .reviews-sort .sort-buttons .sort-button.selected.desc:after,
.reviews .reviews-sort .sort-buttons .sort-button.selected.asc:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	background-image: var(--icon);
	background-repeat: no-repeat;
	background-size: 200px;
	width: 20px;
	height: 20px;
	display: block;
	opacity: .6;
	margin-top: -9px;
}

.reviews .reviews-sort .sort-buttons .sort-button.selected.asc:after {
	background-position: -60px 0;
}

.reviews .reviews-sort .sort-buttons .sort-button.selected.desc:after {
	background-position: -80px 0;  
}

.reviews .review {
	border-top: 1px solid var(--gray-color-60);
	padding-top: 25px;
	padding-bottom: 15px;
}

.reviews .review .schema-rating {
	display: none;
}

.reviews .review .review-header {
	margin-bottom: 22px;
}

.reviews .review .review-header .review-rating,
.reviews .review .review-header .review-source,
.reviews .review .review-header .review-author {
	display: inline-block;
	vertical-align: middle;
}

.reviews .review .review-header .review-rating {
	height: 16px;
	line-height: 16px;
	margin-top: 1px;
}

.reviews .review .review-header .review-rating .star {
	position: relative;
	width: 16px;
	height: 16px;
	display: inline-block;
}

.reviews .review .review-header .review-rating .star:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background-image: var(--icon);
	background-repeat: no-repeat;
	background-size: 200px;
	background-position: -16px -60px;
	width: 16px;
	height: 16px;
	display: block;
}

.reviews .review .review-header .review-rating .star.filled:after {
	background-position: 0 -60px;
}

.reviews .review .review-header .review-source,
.reviews .review .review-header .review-author {
	color: var(--gray-color-110);
	font-size: 17px;
	font-weight: 400;
	line-height: 1;
}

.reviews .review .review-header a.review-source:hover {
	color: var(--link-color-hover);
}

.reviews .review .review-body {
	font-size: 100%;
    line-height: inherit;
    border-left: none;
    padding: 0;
	margin: 0;
}

.reviews .review .review-body p:last-child {
	margin-bottom: 0;
}

.reviews .review .review-vote {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
	margin-top: 10px;
}

.reviews .review .review-vote .vote-button {
	position: relative;
	background-color: transparent;
	cursor: pointer;
	opacity: .75;
	font-family: inherit;
	color: var(--gray-color-120);
	font-size: 14px;
	font-weight: 600;
	border: none;
	padding: 10px 10px 10px 38px;
}

.reviews .review .review-vote .vote-button.icon-dislike {
	margin-left: 10px;
}

.reviews .review .review-vote .vote-button:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 10px;
	background-image: var(--icon);
	background-repeat: no-repeat;
	background-size: 200px;
	width: 20px;
	height: 20px;
	display: block;
	opacity: .7;
	margin-top: -10px;
}

.reviews .review .review-vote .vote-button.icon-like:after {
	background-position: 0 -20px;
}

.reviews .review .review-vote .vote-button.icon-dislike:after {
	background-position: -20px -20px;  
}

.reviews .review .review-vote .vote-button:hover,
.reviews .review .review-vote .vote-button.voted {
	opacity: 1;
}

.reviews .load-more {
	margin: 10px auto 0;
}


/* Author Box */

.authors {
    margin-top: 60px;
}

.authors .author {
	border-bottom: 1px solid var(--gray-color-70);
	padding-bottom: 25px;
	margin: 0 0 25px;
}

.authors .author:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin: 0;
}

.authors .author-header {
    display: grid;
    grid-template-columns: 80px 1fr; 
    grid-template-rows: auto auto;
    column-gap: 20px; 
}

.authors .author-header .author-photo {
	background-color: var(--gray-color-45);
    width: 80px;
    height: 80px;
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
	overflow: hidden;
	border-radius: var(--radius);
}

.authors .author-header .author-photo img {
    width: 80px;
    height: 80px;
	display: block;
	object-fit: cover;
}

.authors .author-header .role {
	display: block;
    grid-column: 2;
    grid-row: 1;
    align-self: end;
	line-height: 1.3;
    margin-bottom: 6px;
}

.authors .author-header .name {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    font-weight: 500;
	margin-bottom: 0;
}

.authors .author-body {
	margin-top: 20px;
}

.authors .author-body .author-socials {
	margin-top: 15px;
}

.authors .author-body .author-socials a {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	margin-right: 25px;
}


/* FAQ */

.qa {
	margin-top: 60px;
}

.qa .question {
	text-align: left;
	border-bottom: 1px solid var(--gray-color-70);
	padding-top: 24px;
	padding-bottom: 25px;
	margin: 0
}

.qa .question:first-of-type {
	padding-top: 0;
}

.qa .question:last-child {
    border-bottom: none;
	padding-bottom: 0;
}

.qa .question .name {
	position: relative;
	display: block;
	font-weight: 500;
	padding-right: 35px;
	margin-bottom: 0;
}

.qa .question .name button {
	background-color: transparent;
	width: 100%;
	cursor: pointer;
	font: inherit;
	text-align: left;
	border: none;
	padding: 0;
	margin: 0;
}

.qa .question:not(.show) .name button:hover {
	color: #d0021b;
}

.qa .question .name::after {
	content: "";
	position: absolute;
	top: 6px;
	right: 0;
	background-image: var(--icon);
    background-repeat: no-repeat;
    background-size: 200px;
	background-position: -60px 0;
	width: 20px;
	height: 20px;
	display: block;
	opacity: .6;
}

.qa .question.show .name:after {
	background-position: -80px 0;
}

.qa .question .answer {
	display: none;
	margin: 25px 0 0;
}

.qa .question.show .answer {
	display: block;
}


/* Citations */

.citations {
	margin-top: 60px;
}

.citations .citations-list {
	list-style: none;
    counter-reset: citations-counter;
    padding: 0;
    margin: 0;
}

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

.citations .citations-list li::before {
    counter-increment: citations-counter;
	content: counter(citations-counter) ". ";
}

.citations .citations-list li a::after {
	content: "\00A0\2197";
	display: inline-block;
}


/* Social */

.social {
	margin-top: 50px;
	margin-bottom: 50px;
}

.social .item {
	position: relative;
	background-color: #505053;
	width: 34px;
	height: 34px;
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	border: none;
	border-radius: var(--radius);
	margin-right: 8px;
	margin-bottom: 8px;
}

.social .item:after {
	content: "";
	position: absolute;
	top: 7px;
	left: 7px;
	background-image: var(--icon);
    background-repeat: no-repeat;
    background-size: 200px;
	width: 20px;
	height: 20px;
	display: block;
}

.social .item.vk:after {
	background-position: 0 -40px;
}

.social .item.vk:hover {
	background-color: #4c75a3;
}

.social .item.fb:after {
	background-position: -20px -40px;
}

.social .item.fb:hover {
	background-color: #3b5998;
}

.social .item.x:after {
	background-position: -40px -40px;
}

.social .item.x:hover {
	background-color: #00abf1;
}

.social .item.telegram:after {
	background-position: -60px -40px;
}

.social .item.telegram:hover {
	background-color: #64a9dc;
}

.social .item.whatsapp:after {
	background-position: -80px -40px;
}

.social .item.whatsapp:hover {
	background-color: #65bc54;
}

.social .item.dzen:after {
	background-position: -100px -40px;
}

.social .item.dzen:hover {
	background-color: #111;
}


/* ПАГИНАЦИЯ */

.pagination {
    text-align: center;
    margin: 45px auto;
}

.pagination a,
.pagination span:not(.screen-reader-text) {
	background-color: var(--gray-color-45);
	min-width: 46px;
	height: 46px;
	display: inline-block;
	white-space: nowrap;
	color: #000;
    font-size: 15px;
	font-weight: 500;
	line-height: 46px;
	text-align: center;
	border: none;
	outline: none;
	border-radius: var(--radius);
	padding-right: 12px;
	padding-left: 12px;
	margin: 4px;
}

.pagination a:hover {
	background-color: #f2f2f2;
}

.pagination span.current {
	background-color: #d0021b;
    color: #fff;
}


/* POPUP */

.popup .popup-image {
	z-index: 1;
	position: fixed;
	top: 50%;
	left: 50%;
	width: auto;
	max-width: 95vw;
	max-height: 95vh;
	display: block;
	transform: translate(-50%, -50%);
}

.popup .popup-close {
	z-index: 2;
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--transparent-color-20);
	width: 44px;
	height: 44px;
	display: block;
	cursor: pointer;
	border: none;
	outline: none;
}

.popup .popup-close:after {
	content: "";
	position: absolute;
	top: 12px;
	left: 12px;
	background-image: var(--icon);
    background-repeat: no-repeat;
    background-size: 200px;
	background-position: -140px 0;
	width: 20px;
	height: 20px;
	display: block;
}

.popup .popup-prev,
.popup .popup-next {
	z-index: 2;
	position: absolute;
	top: calc(50% - 22px);
	background-color: var(--transparent-color-20);
	width: 44px;
	height: 44px;
	display: block;
	cursor: pointer;
	border: none;
	outline: none;
}

.popup .popup-prev {
	left: 0;
}

.popup .popup-next {
	right: 0;
}

.popup .popup-prev:after,
.popup .popup-next:after {
	content: "";
	position: absolute;
	top: 12px;
	left: 12px;
	background-image: var(--icon);
    background-repeat: no-repeat;
    background-size: 200px;
	width: 20px;
	height: 20px;
	display: block;
}

.popup .popup-prev:after {
	background-position: -160px 0;
}

.popup .popup-next:after {
	background-position: -180px 0;
}

.popup .popup-loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    border: 2px solid rgb(255 255 255 / 30%);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/* ПОДВАЛ */

.footer {
	background-color: #1e1f20;
	width: 100%;
	flex: 0 0 auto;
	color: #919399;
	font-size: 15px;
    padding-top: 30px;
}

.footer li {
    display: inline-block;
}

.footer li a {
	color: #fff;
}

.footer li a:hover {
	opacity: .8;
}

.footer .top,
.footer .middle,
.footer .bottom {
    padding-top: 20px;
	padding-bottom: 20px;
}

.footer .top .menu li {
	margin-top: 10px;
	margin-bottom: 10px;
}

.footer .top .social {
	text-align: left;
	margin-top: 0;
	margin-bottom: 0;
}

.footer .top .social .item {
	margin: 0;
	margin-right: 10px;
}

.footer .middle {
	font-size: 14px;
}

.footer .bottom {
	text-align: center;
	border-top: 1px solid #242729;
	margin-top: 20px;
}


/* NOTICE */

.notice-container {
	z-index: 10003;
	position: fixed;
	right: 15px;
	bottom: 15px;
	max-width: 290px;
}

.notice-container .notice {
	position: relative;
	overflow: hidden;
	color: #fff;
	font-size: 16px;
	line-height: 1.3;
	text-align: left;
	border-radius: var(--radius);
	padding: 15px 20px;
	margin-bottom: 10px;
}

.notice-container .notice:last-child {
	margin-bottom: 0;
}

.notice-container .notice.info {
	background-color: #0050d8;
}

.notice-container .notice.warning {
	background-color: #fecc2f;
}

.notice-container .notice.success {
	background-color: #028357;
}

.notice-container .notice.error {
	background-color: #e51045;
}

.notice-container .notice output {
	z-index: 2;
	position: relative;
    display: block;
}

.notice-container .notice .notice-progress {
	z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
	background-color: rgb(255 255 255 / 70%);
	width: 100%;
    height: 3px;
    transition: width 0.1s linear; 
}


/* COOKIES */

.cookies {
	z-index: 10000;
	position: fixed;
    left: 50%;
	right: auto;
	bottom: 10px;
	background-color: #424242;
    max-width: 320px;
	display: none;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	line-height: 1.2;
	border: none;
	border-radius: var(--radius);
	box-shadow: 0 4px 24px var(--transparent-color-10);
	transform: translate(-50%,0);
    padding: 12px 8px 12px 16px;
}

.cookies.show {
	display: flex;
}

.cookies small {
	width: calc(100% - 46px);
	width: -moz-calc(100% - 46px);
	width: -webkit-calc(100% - 46px);
	display: inline-block;
	font-size: 13px;
}

.cookies button {
	background-color: #d0021b;
	width: 36px;
	height: 36px;
	cursor: pointer;
	font-family: inherit;
	color: #fff;
	font-size: 12px;
	text-transform: uppercase;
	text-align: center;
	outline: none;
	border: none;
	border-radius: var(--radius);
	margin-left: 10px;
}

.cookies button:hover {
	background-color: #d93449;
	color: #fff;
}


/* OVERLAY */

.overlay {
	z-index: 10001;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgb(0 0 0 / 80%);
	width: 100%;
	height: 100%;
}


/* АВТОЗАПОЛНЕНИЕ */

.autocomplete {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 4px);
    background-color: #fff;
	height: auto;
	border-radius: var(--radius);
	padding: 6px;
}

.autocomplete li {
	display: block;
}

.autocomplete li.no-results,
.autocomplete li a {
	display: block;
	color: #000;
	font-size: 15px;
	line-height: 1.5;
	border-radius: var(--radius);
	padding: 5px 10px;
}

.autocomplete li a:hover {
	background-color: var(--gray-color-45);
}

.autocomplete li.focused a {
	background-color: #1e1f20;
	color: #fff;
}


/* UP */

.up {
	z-index: 9999;
	position: fixed;
	right: 5px;
	bottom: 100px;
	background-color: var(--gray-color-45);
	width: 44px;
	height: 44px;
	display: block;
	opacity: 0;
	cursor: pointer;
	border: none;
	border-radius: var(--radius);
	transition: opacity 0.4s;
}

.up.show {
	opacity: .5;
}

.up.show:hover {
	opacity: .9;
}

.up:active {
	-webkit-transform: scale(.85);
	-ms-transform: scale(.85);
	transform: scale(.85);
}

.up:after {
	content: "";
	position: absolute;
	top: 12px;
	left: 12px;
	background-image: var(--icon);
    background-repeat: no-repeat;
    background-size: 200px;
	background-position: -80px 0;
	width: 20px;
	height: 20px;
	display: block;
}


/* АДАПТИВ */

@media screen and (min-width: 1100px)  {
	
	body {
		font-size: 20px;
	}
	
	h1 {
		font-size: 46px;
	}

	h2 {
		font-size: 34px;
	}

	h3 {
		font-size: 28px;
	}
	
	h4 {
		font-size: 24px;
	}
	
	.container {
		position: relative;
		width: 100%;
		max-width: 1326px;
		min-width: 980px;
		padding-right: 20px;
		padding-left: 20px;
		margin-right: auto;
		margin-left: auto;
	}

	.header.container,
	.footer .container {
		max-width: none;
		padding-right: 32px;
		padding-left: 32px;
	}
	
	.header {
		margin-bottom: 30px;
	}
	
	.header .logotype {
		margin-right: 0;
	}
	
	.header .menu {
		position: absolute;
		left: 50%;
		width: max-content;
		transform: translateX(-50%);
		margin-right: 0;
	}

	.header .menu li {
		z-index: 1;
		position: relative;
		display: inline-block;
		vertical-align: middle;
		border-radius: 4px;
		padding: 4px 8px 6px;
	}
	
	.header .menu li a,
	.header .menu-group {
		font-size: 16px;
		padding: 2px 4px;
	}
	
	.header .menu li:hover,
	.header .menu li.dropdown:focus-within {
		z-index: 2;
		background-color: var(--gray-color-20);
	}
	
	.header .menu li.dropdown {
		border-radius: 4px 4px 0 0;
	}
	
	.header .menu li a {
		display: inline-block;
	}
	
	.header .menu .sub-menu {
		position: absolute;
		top: 100%;
		left: 0;
		background-color: var(--white-color);
		min-width: 340px;
		max-height: calc(100vh - 80px);
		display: none;
		overflow-y: auto;
		opacity: 0;
		border: 1px solid var(--gray-color-40);
		border-radius: 0 8px 8px 8px;
		box-shadow: 0 16px 38px rgba(38, 38, 38, .12);
		transition: opacity .2s ease;
		padding: 10px 0;
	}
	
	.header .menu li.dropdown:hover > .sub-menu,
	.header .menu li.dropdown:focus-within > .sub-menu,
	.header .menu .sub-menu.show {
		display: block;
		opacity: 1;
	}
	
	.header .menu li .sub-menu li {
		display: block;
		border-radius: 0;
	}
	
	.header .menu li .sub-menu li:hover {
		background-color: var(--gray-color-20);
	}
	
	.header .menu li .sub-menu li a {
		display: flex;
		align-items: baseline;
		gap: 20px;
	}
	
	.header .search {
		right: 15px;
		max-width: 300px;
	}
	
	.header .menu-toggle {
		display: none;
	}
	
	.title {
		text-align: left;
	}
	
	.article .layout {
		position: relative;
		padding-right: 240px;
	}
	
	.lead p {
		font-size: 22px;
	}
	
	.toc {
		z-index: 1001;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		background-color: var(--white-color);
		width: 180px;
		font-size: 16px;
		margin-top: 14px;
	}
	
	.toc .toc-title {
		opacity: .3;
		margin-bottom: 26px;
		padding: 0 4px;
	}
	
	.toc .toc-title span {
		display: none;
	}
	
	.toc .toc-title:before {
		content: attr(data-title);
	}
	
	.toc .toc-list {
		position: -webkit-sticky;
		position: sticky;
		top: 15px;
		width: inherit;
		max-height: calc(100vh - 60px);
	}
	
	.toc .toc-list li {
		padding: 2px;
		margin-bottom: 10px;
	}
	
	.toc .toc-list li a {
		padding: 2px 4px;
	}
	
	.tabs .tablist .tabs-inner .tab {
		margin-right: 28px;
	}
	
	.tabs.article-tabs .tabpanel.active {
		padding: 30px;
	}
	
	.links-block {
		padding: 30px;
	}
	
	.reviews .review .review-header .review-rating,
	.reviews .review .review-header .review-source,
	.reviews .review .review-header .review-author {
		margin-right: 32px;
	}
	
	.reviews .review .review-vote {
		justify-content: end;
	}
	
	.authors {
		font-size: 20px;
	}
	
	.authors .author-header .role {
		font-size: 17px;
	}
	
	.authors .author-header .name {
		font-size: 23px;
	}
	
	.qa .question .name {
		font-size: 23px;
	}
	
	.footer .top {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.footer .top .menu li {
		margin-right: 30px;
	}
	
	.footer .top .menu {
		margin-right: auto;
	}

	.footer .top .social {
		margin-left: auto;
	}
	
}


@media screen and (min-width: 1200px) {
	
	.article .layout {
		padding-right: 270px;
	}
	
	.toc {
		width: 210px;
	}
	
}


@media screen and (min-width: 900px)  {


	
}


@media screen and (max-width: 899px) {
		

	
}


@media screen and (max-width: 1099px) {
	
	body {
		font-size: 19px;
	}
	
	h1 {
		font-size: 40px;
	}

	h2 {
		font-size: 26px;
	}

	h3 {
		font-size: 24px;
	}
	
	h4 {
		font-size: 22px;
	}
	
	.container {
		position: relative;
		width: 100%;
		max-width: 900px;
		padding-right: 20px;
		padding-left: 20px;
		margin: 0 auto;
	}

	.header.container,
	.footer .container {
		max-width: none;
		padding-right: 32px;
		padding-left: 32px;
	}
	
	.header {
		margin-bottom: 15px;
	}
	
	.header .logotype {
		margin-right: auto;
	}
	
	.header .menu {
		z-index: 1000;
		position: fixed;
		top: 0;
		right: -100%;
		bottom: 0;
		background-color: #fff;
		width: min(320px, calc(100vw - 44px));
		overflow: scroll;
		overflow-x: hidden;
		overflow-y: auto;
		transition: right .25s ease;
		padding: 80px 0 40px;
	}

	.header .menu.show {
		right: 0;
		box-shadow: -100vw 0 0 100vw rgba(22, 25, 31, .28), -12px 0 32px rgba(22, 25, 31, .12);
	}

	body:has(.header .menu.show) {
		overflow: hidden;
	}
	
	.header .menu::-webkit-scrollbar { 
		width: 0;
		height: 0; 
	}
	
	.header .menu li a,
	.header .menu-group {
		display: flex;
		align-items: center;
		width: 100%;
		font-size: 18px;
		text-align: left;
		padding-top: 10px;
		padding-left: 30px;
		padding-right: 30px;
		padding-bottom: 10px;
	}

	.header .menu .sub-menu {
		display: none;
		padding-bottom: 8px;
	}

	.header .menu .sub-menu.show {
		display: block;
	}

	.header .menu-group[aria-expanded="true"] {
		background-color: var(--gray-color-20);
		color: var(--primary-color-accent);
	}
	
	.header .menu li.dropdown .sub-menu a {
		padding-left: 50px;
	}
		
	.header .menu li a:hover,
	.header .menu-group:hover {
		background-color: var(--transparent-color-5);
	}
	
	.header .menu-toggle { 
		z-index: 1001;
		position: relative;
		background-color: var(--white-color);
		width: 44px;
		height: 44px;
		cursor: pointer;
		touch-action: manipulation;
		border: none;
		outline: none;
		border-radius: var(--radius);
		margin-left: 10px;
		margin-right: -13px;
	}
	
	.header .menu-toggle.close {
		background-color: var(--gray-color-45);
	}

	.header .menu-toggle:after {
		content: "";
		position: absolute;
		top: 12px;
		left: 12px;
		background-image: var(--icon);
		background-repeat: no-repeat;
		background-size: 200px;
		background-position: -20px 0;
		width: 20px;
		height: 20px;
		display: block;
	}
	
	.header .menu-toggle.close:after {
		background-position: -40px 0;
	}
	
	.header .search {
		right: 64px;
	}
	
	.toc {
		z-index: 999;
		position: -webkit-sticky;
		position: sticky;
		top: 0;
		background-color: var(--gray-color-45);
		font-size: 17px;
		border-radius: 0 0 var(--radius) var(--radius);
		padding: 12px 20px 13px;
		margin-left: -20px;
		margin-right: -20px;
		margin-bottom: 30px;
	}
	
	.toc.show {
		z-index: 10002;
		padding-bottom: 25px;
	}
	
	.toc .toc-title {
		position: relative;
		width: 100%;
		cursor: pointer;
		font-size: inherit;
		padding-right: 50px;
	}
	
	.toc .toc-title:after {
		content: "";
		position: absolute;
		top: 2px;
		right: 0;
		background-image: var(--icon);
		background-repeat: no-repeat;
		background-size: 200px;
		background-position: -60px 0;
		width: 20px;
		height: 20px;
		display: block;
		opacity: .8;
	}

	.toc.show .toc-title:after {
		background-position: -80px 0;
	}	
	
	.toc .toc-list {
		display: none;
	}
	
	.toc.show .toc-list {
		max-height: calc(100vh - 60px);
		display: block;
		margin-top: 25px;
	}
	
	.toc .toc-list li {
		margin-bottom: 16px;
	}
	
	.text:has(.toc) .tabs.article-tabs .tablist {
		z-index: 998;
		top: 48px;
	}
	
	.tabs .tablist .tabs-inner .tab {
		margin-right: 22px;
	}
	
	.tabs.article-tabs .tabpanel.active {
		padding: 25px;
	}
	
	.links-block {
		padding: 25px;
	}
	
	.reviews .review .review-header .review-rating,
	.reviews .review .review-header .review-source,
	.reviews .review .review-header .review-author {
		margin-right: 26px;
	}
	
	.reviews .review .review-vote {
		justify-content: start;
	}
	
	.authors {
		font-size: 17px;
	}
	
	.authors .author-header .role {
		font-size: 16px;
	}
	
	.authors .author-header .name {
		font-size: 20px;
	}
	
	.qa .question .name {
		font-size: 20px;
	}
	
	.footer .top .menu li {
		margin-right: 25px;
	}
	
	.footer .top .social {
		margin-top: 25px;
	}
	
}


@media screen and (max-width: 640px) {
	
	.header.container,
	.footer .container {
		padding-right: 20px;
		padding-left: 20px;
	}

	
}


@media screen and (max-width: 480px) {
	
	h1 {
		font-size: 36px;
	}
	
}


@media screen and (max-width: 420px) {
	
	h1 {
		font-size: 34px;
	}
	
	.text blockquote {
		padding-left: 20px;
	}
	
	.gallery {
        grid-template-columns: 1fr;
    }
	
}


@media screen and (max-width: 360px) {
	
	.authors .author-header .name {
		font-size: 19px;
	}
	
	.qa .question .name {
		font-size: 19px;
	}
	
}


@media screen and (max-width: 320px) {
	
	.cookies {
		width: 300px;
	}

}


@media (prefers-reduced-motion: reduce) {

	.header .menu,
	.header .menu .sub-menu,
	.header .menu-group:after {
		transition: none;
	}

}


@media 	only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min-resolution: 1.5dppx),
only screen and (min-resolution: 144dpi) {
	
	.header .search-toggle:after {
		background-image: var(--icon2x);
	}
	
	.header .menu-toggle:after {
		background-image: var(--icon2x);
	}
	
	.toc .toc-title:after {
		background-image: var(--icon2x);
	}
	
	.media-info-button:after {
		background-image: var(--icon2x);
	}
	
	.links-block li:after {
		background-image: var(--icon2x);
	}
	
	.reviews .reviews-sort .sort-buttons .sort-button.selected.desc:after,
	.reviews .reviews-sort .sort-buttons .sort-button.selected.asc:after {
		background-image: var(--icon2x);
	}
	
	.reviews .review .review-header .review-rating .star:after {
		background-image: var(--icon2x);
	}
	
	.reviews .review .review-vote .vote-button:after {
		background-image: var(--icon2x);
	}
	
	.qa .question .name:after {
		background-image: var(--icon2x);
	}
	
	.social .item:after {
		background-image: var(--icon2x);
	}
	
	.popup .popup-close:after {
		background-image: var(--icon2x);
	}

	.popup .popup-prev:after,
	.popup .popup-next:after {
		background-image: var(--icon2x);
	}
	
	.up:after {
		background-image: var(--icon2x);
	}
	
}
