
/* Неактивная модалка не перехватывает клики */
.stories__modal:not(.active) {
	pointer-events: none !important;
}

/* Отключаем клики только у шапки, чтобы она не перекрывала модалку */
.stories-modal-open .header-top-line,
.stories-modal-open .header-top-line-wrapper,
.stories-modal-open .header-menu-line,
.stories-modal-open #my-menu {
	pointer-events: none !important;
}

.stories__modal {
	position: fixed;
	height: 100dvh;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	background-color: rgba(0, 0, 0, 0.75);
	-webkit-transition: .3s all;
	-o-transition: .3s all;
	transition: .3s all;
	z-index: 30000; /* выше любых оверлеев темы */
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
}

.stories__modal:before {
	content: '';
	z-index: -1;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 225px;
	background: -webkit-gradient(linear, left top, left bottom, from(0), color-stop(rgba(217, 217, 217, 0)), to(rgba(0, 0, 0, 0.6)));
	background: -o-linear-gradient(0, rgba(217, 217, 217, 0), rgba(0, 0, 0, 0.6));
	background: linear-gradient(0, rgba(217, 217, 217, 0), rgba(0, 0, 0, 0.6));
}

.stories__modal.active {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.stories__slide-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding-right: 0;
	-webkit-transition: .15s all;
	-o-transition: .15s all;
	transition: .15s all;
	z-index: 999;
}


.stories__slide-wrapper.comments-open {
	padding-right: 535px;
}

.stories__slide-content {
	position: relative;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.stories__slide-info {
	position: absolute;
	top: 41px;
	left: 17px;
	z-index:99;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 60px 17px -webkit-max-content;
	-ms-grid-columns: 60px 17px max-content;
	grid-template-columns: 60px -webkit-max-content;
	grid-template-columns: 60px max-content;
	-webkit-column-gap: 17px;
	-moz-column-gap: 17px;
	column-gap: 13px;
	row-gap: 21px;
	font-size: 17px;
	line-height: 24px;
	color: #fff;
	font-weight: 400;
}
.stories__slide-info.from-don {
	-ms-grid-columns: 90px 17px -webkit-max-content;
	-ms-grid-columns: 90px 17px max-content;
	grid-template-columns: 90px -webkit-max-content;
	grid-template-columns: 90px max-content;
	row-gap: 5px;
}

.stories__slide-info a {
	color: #fff;
	z-index: 999999;
}

.stories__slide-icon {
	position: relative;
}

.stories__slide-icon.online:after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 15px;
	height: 15px;
	border-radius: 15px;
	background-color: #00B1C6;
}

.stories__slide-image {
	display: block;
	height: 60px;
	overflow: hidden;
	border-radius: 50%;
}
.from-don .stories__slide-image {
	border-radius: 0;
	width: 100%;
	height: 70px;
}

.stories__slide-image.girl-photo img {
	width: 90px;
	height: 90px;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: -10px 0;
	object-position: -10px 0;
}
.from-don .stories__slide-image.girl-photo img{
	width: 100%;
	height: 60px;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: 0;
	object-position: 0;
}

.stories__slide-image.salon-logo img {
	width: 60px;
	height: 60px;
}

.stories__slide-data {
	-ms-flex-line-pack: start;
	align-content: start;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.stories__slide-data span {
	display: block;
}

.stories__slide-name {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 25px;
	line-height: 21px;
	font-weight: 600;
}

.stories__slide-owner,
.stories__slide-metro {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	line-height: 12px;
	font-weight: 400;
}

.stories__slide-text {
	font-family: 'Inter', sans-serif;
	font-weight: 300;
	font-style: italic;
	font-size: 16px;
	line-height: 100%;
	-ms-grid-column: 1;
	-ms-grid-column-span: 2;
	grid-column: 1/3;
}

.stories__slide-trend {
	grid-column: 1 / 3;
	margin-top: -12px;
}

.stories__slide-close {
	position: absolute;
	top: 30px;
	right: 12px;
	cursor: pointer;
	z-index: 99999999;
	min-width: 35px;
	min-height: 35px;
	touch-action: manipulation;
	pointer-events: auto !important;
}

.stories__slide-close svg {
	-webkit-transition: .3s all;
	-o-transition: .3s all;
	transition: .3s all;
	fill: rgba(255, 255, 255, 0.8);
	pointer-events: none;
}

/* Фиксированная кнопка закрытия поверх всего (для iOS/Chrome) */

.stories__modal-close-fixed {
	position: fixed;
	top: 18px;
	right: 14px;
	cursor: pointer;
	width: 44px;
	height: 44px;
	border-radius: 22px;
	background: #000000 !important; /* black background */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-tap-highlight-color: transparent;
	z-index: 2147483647; /* поверх всего */
	pointer-events: auto !important;
	/* отключаем гесты браузера/Swiper */
	touch-action: manipulation !important;
	-webkit-user-select: none;
	user-select: none;
}

.stories__modal-close-fixed svg { fill: #ffffff !important; }
.stories__modal-close-fixed:active { transform: scale(0.96); }

.stories__slide-close:hover svg {
	fill: rgba(255, 255, 255, 1);
}

.stories__slide-player {
	height: 100%;
	z-index: 1;
	position: relative;
}

.stories__slide-player video {
	height: 100%;
	z-index: 1;
	position: relative;
}

.stories__slide-timeline {
	position: absolute;
	top: 6px;
	width: calc(100vh - 12px);
	left: 50%;
	height: 2px;
	z-index: 2;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: grey;
	border-radius: 2px;
	overflow: hidden;
}

.stories__slide-timeline span {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	display: block;
	width: 0;
	border-radius: 2px;
	background-color: #fff;
	-webkit-animation-name: timeline;
	animation-name: timeline;
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

@-webkit-keyframes timeline {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}

@keyframes timeline {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}

.stories__slide-play {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;
}

.stories__slide-play img {
	width: 100%;
	height: 100%;
}

.stories__slide-preloader {
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 95px;
	height: 95px;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border: .25rem solid rgba(255, 255, 255, 0.2);
	border-top-color: rgb(255, 255, 255);
	-webkit-animation: spin 1s infinite linear;
	animation: spin 1s infinite linear;
}

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

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

.stories__arrow {
	position: absolute;
	top: 50%;
	height: 65px;
	width: 65px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, .3);
	z-index: 2001;
}

.stories__arrow:not(.swiper-button-disabled) {
	cursor: pointer;
}

.stories__arrow:not(.swiper-button-disabled):hover path {
	fill: rgba(255, 255, 255, 1);
}

.stories__arrow-next {
	right: 0;
	-webkit-transition: .15s all;
	-o-transition: .15s all;
	transition: .15s all;
}

.stories__arrow-next.comments-open {
	right: 535px;
}

.stories__arrow-prev {
	left: 0;
}

.stories__arrow path {
	fill: rgba(255, 255, 255, 0.8);
	-webkit-transition: .3s all;
	-o-transition: .3s all;
	transition: .3s all;
}

.stories__slide-actions {
	position: absolute;
	right: 10px;
	bottom: 18px;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: -webkit-max-content;
	-ms-grid-columns: max-content;
	grid-template-columns: -webkit-max-content;
	grid-template-columns: max-content;
	row-gap: 22px;
}

.stories__slide-actions path {
	fill: rgba(255, 255, 255, 0.8);
	-webkit-transition: .3s all;
	-o-transition: .3s all;
	transition: .3s all;
}

.stories__slide-actions > div {
	position: relative;
	height: 50px;
	cursor: pointer;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, .3);
}

.stories__slide-actions > div:hover path {
	fill: rgba(255, 255, 255, 1);
}

.stories__slide-actions > div > span {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 16px;
	font-weight: 400;
}

.stories__comments {
	display: block;
	width: 535px !important;
	background: #fff;
	height: 100vh;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 100000;
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: .15s all;
	-o-transition: .15s all;
	transition: .15s all;
}


.stories__comments.active {
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

.stories__comments-header {
	position: relative;
	height: 60px;
	text-align: center;
	line-height: 60px;
	border-bottom: 1px solid rgba(45, 45, 45, 0.25);
}

.stories__comments-header span {
	color: #19191A;
	text-align: center;
	font-family: Roboto;
	font-size: 20px;
	font-weight: 600;
}

.stories__comments-header > span {
	margin-left: -17px;
}

.stories__comments-header .stories__comments-count {
	font-weight: 300;
}

.stories__comments-close {
	position: absolute;
	right: 20px;
	top: 11px;
	cursor: pointer;
}

.stories__comments-body {
	height: calc(100vh - 163px);
	padding-top: 20px;
	padding-left: 20px;
	padding-right: 20px;
	overflow-y: auto;
}

.stories__comments-item {
	margin-bottom: 24px;
}

.stories__comments-author {
	color: #19191A;
	font-family: Roboto;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	margin-bottom: 5px;
}

.stories__comments-text {
	color: #000;
	font-family: Roboto;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.stories__comments-empty {
	font-family: Roboto;
	font-size: 19px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-align: center;
}

.stories__comments-footer {
	position: relative;
	padding-left: 100px;
	bottom: 0;
	height: 80px;
	-webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.25);
}

.stories__comments-footer:before {
	content: '';
	display: block;
	position: absolute;
	top: 12px;
	left: 20px;
	width: 60px;
	height: 60px;
	background-image: url(/wp-content/themes/don/images/literary_club_ava.png);
	background-size: 60px 60px;
}

.stories__comments-more {
	display: block;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	color: #19191A;
	font-family: Roboto;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
}

.stories__comments-more-link {
	color: #0D99FF;
	font-family: Roboto;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-decoration: underline;
}

.stories__comments-more-link:hover {
	text-decoration: none;
}

.stories__share {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	padding: 15px;
	border-radius: 15px;
	opacity: 0;
	-webkit-transition: .1s all;
	-o-transition: .1s all;
	transition: .1s all;
	z-index: 2002;
	background-color: #EDEDED;
	pointer-events: none;
}

.stories__share.active {
	opacity: 1;
	pointer-events: auto;
}

.stories__share-content {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
	row-gap: 12px;
}

.stories__share-close {
	position: absolute;
	right: 12px;
	top: 12px;
	cursor: pointer;
	height: 22px;
}

.stories__share-header {
	font-weight: 500;
}

.stories__share-link {
	background-color: #fff;
	padding: 12px 10px;
	border-radius: 6px;
}

.stories__share-copy {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 6px 20px 6px 6px;
	background-color: #008999;
	border-radius: 6px;
	color: #fff;
	font-weight: 500;
	cursor: pointer;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
	transition: .3s all;
}

.stories__share-copy:hover {
	background: #00b1c6;
}

.stories__share-copy[disabled] {
	cursor: auto;
	background: #C4C4C4;
	pointer-events: none;
}

.stories__share-btns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 8px;
	-moz-column-gap: 8px;
	column-gap: 8px;
}

.stories__share-whatsapp > a, .stories__share-tg > a {
	display: block;
	height: 75px;
}

.stories__comments-box {
	display: none;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.50);
	z-index: 1;
	height: 80px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.stories__comments-box > div {
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-left: 26px;
	margin-right: 90px;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.75);
	font-family: Roboto;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.stories__comments-box > div p {
	margin: 0;
	color: rgba(255, 255, 255, 0.75);
	font-family: Roboto;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.stories__slide.hide-controls .stories__slide-info {
	opacity: 1; /* не скрываем аватар и инфо при удержании */
	-webkit-transition: .3s all;
	-o-transition: .3s all;
	transition: .3s all;
}

/* Не скрываем клики у иконки/аватара при hide-controls */
/* Откатываем: вызывает сдвиг сетки у некоторых карточек
.stories__slide.hide-controls .stories__slide-icon,
.stories__slide.hide-controls .stories__slide-image {
	opacity: 1 !important;
	pointer-events: auto !important;
}
*/

/* Кнопка закрытия также скрывается при hide-controls для единообразия */
.stories__slide.hide-controls .stories__slide-close {
	opacity: 0;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
	transition: .3s all;
}

.stories__slide.hide-controls .stories__slide-actions {
	opacity: 0;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
	transition: .3s all;
}

.stories__slide.hide-controls .stories__slide-timeline {
	opacity: 0;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
	transition: .3s all;
}

.stories__slide.hide-controls .stories__slide-pepper {
	opacity: 0;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
	transition: .3s all;
}

.stories__slide.hide-controls .stories__comments-box {
	opacity: 0;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
	transition: .3s all;
}

.stories__arrow.hide-controls {
	opacity: 0;
	-webkit-transition: .3s all;
	-o-transition: .3s all;
	transition: .3s all;
}

.stories__slide-code {
	position: absolute;
	bottom: 100px;
	left: 0;
	z-index: 100;
	color: #fff;
	font-size: 14px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.35), 1px 0 1px rgba(0, 0, 0, 0.35);
	padding: 6px 12px;
}

.stories__help {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 150px;
	height: 150px;
	opacity: 0;
	transform: translate(-50%, -50%);
	background-size: 150px 150px;
	animation: MoveUpDown 3s linear infinite;
	-webkit-animation: MoveUpDown 3s linear infinite;
	background-image: url(/wp-content/themes/donmobile-new/images/Stories_swipe_icon.svg);
	pointer-events: none;
	transition: opacity .3s;
	z-index: 1;
}

.stories__help.active {
	opacity: 0.6;
}

@keyframes MoveUpDown {
	0%, 100% {
		transform: translate(-50%, -50%);
	}
	50% {
		transform: translate(-50%, calc(-50% - 15px));
	}
}

.stories__slide-pepper {
	position: absolute;
	bottom: 10px;
	left: 10px;
}

@media (max-width: 1024px) {
	.stories__modal {
		background-color: rgba(0, 0, 0, 1);
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none
	}

	.stories__arrow {
		display: none;
	}

	.stories__slide-info {
		top: 35px;
		-ms-grid-columns: 70px 20px -webkit-max-content;
		-ms-grid-columns: 70px 20px max-content;
		grid-template-columns: 70px -webkit-max-content;
		grid-template-columns: 70px max-content;
		-webkit-column-gap: 20px;
		-moz-column-gap: 20px;
		column-gap: 20px;
	}

	.stories__slide-image,
	.stories__slide-image.salon-logo img {
		width: 70px;
		height: 70px;
	}

	.stories__slide-player {
		z-index: -1;
	}

	/* Откат: изменение z-index ломало позиционирование у некоторых карточек */
	/*.stories__slide-info,
	.stories__slide-icon,
	.stories__slide-image {
		position: relative;
		z-index: 2;
		pointer-events: auto !important;
	}*/

	.stories__slide-owner, .stories__slide-metro {
		font-size: 17px;
		line-height: 14px;
	}

	.stories__slide-text {
		font-size: 18px;
	}

	.stories__slide-trend {
		margin-top: 0;
	}

	.stories__slide-timeline {
		max-width: calc(100vw - 12px);
	}

	.stories__share {
		width: -webkit-max-content;
		width: -moz-max-content;
		width: max-content;
		padding: 25px;
	}

	.stories__share-header {
		font-size: 25px;
		line-height: 1;
	}

	.stories__share-close {
		top: 17px;
		right: 17px;
	}

	.stories__share-close svg {
		width: 30px;
		height: 30px;
	}

	.stories__share-content {
		row-gap: 16px;
	}

	.stories__share-link {
		font-size: 20px;
		padding: 14px 12px;
	}

	.stories__slide-actions {
		right: 15px;
		bottom: 16px;
		row-gap: 23px;
	}

	.stories__slide-actions > div {
		height: 55px;
		z-index: 2;
	}

	.stories__slide-actions > div svg {
		width: 55px;
		height: 55px;
	}

	.stories__slide-actions > div > span {
		-webkit-transform: translate(-50%, -55%);
		-ms-transform: translate(-50%, -55%);
		transform: translate(-50%, -55%);
	}

	.stories__slide-actions > div path {
		fill: rgba(255, 255, 255, 1);
	}

	.stories__slide-actions > div:last-child {
		background-color: unset;
	}

	.stories__comments-box {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.stories__slide-wrapper.comments-open {
		padding-right: 0px;
	}

	.stories__comments {
		position: absolute;
		top: unset;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100vw !important;
		max-height: calc(100% - 180px);
		height: unset;
		border-radius: 25px 25px 0px 0px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-transform: translateY(100%);
		-ms-transform: translateY(100%);
		transform: translateY(100%);
	}

	.stories__comments.active {
		-webkit-transform: translateY(0%);
		-ms-transform: translateY(0%);
		transform: translateY(0%);
	}

	.stories__comments-header {
		height: 80px;
	}

	.stories__comments-header span {
		font-size: 28px;
		font-weight: 500;
		line-height: 86px;
	}

	.stories__comments-header img {
		right: 20px;
		top: 24px;
	}

	.stories__comments-item {
		margin-bottom: 32px;
	}

	.stories__comments-body {
		height: auto;
		padding-top: 27px;
		padding-left: 24px;
		padding-right: 35px;
	}

	.stories__comments-author {
		font-size: 22px;
		font-style: normal;
		font-weight: 500;
		line-height: 30px;
		margin-bottom: 5px;
	}

	.stories__comments-text {
		font-size: 20px;
		font-style: normal;
		font-weight: 400;
	}

	.stories__comments-footer {
		padding-left: 110px;
		height: 110px;
	}

	.stories__comments-footer::before {
		top: 22px;
		left: 24px;
		width: 70px;
		height: 70px;
		background-size: 70px 70px;
	}

	.stories__comments-more {
		font-size: 18px;
		font-style: normal;
		font-weight: 400;
		line-height: 26px;
	}

	.stories__comments-more-link {
		font-size: 20px;
		font-style: normal;
		font-weight: 700;
	}

	.stories__slide-code {
		display: none;
	}

	.stories__slide-pepper-with-comments {
		bottom: 95px;
	}

	.stories__slide-close {
		top: 20px;
		right: 15px;
		min-width: 44px;
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: rgba(0, 0, 0, 0.3);
		border-radius: 22px;
		-webkit-tap-highlight-color: transparent;
		z-index: 999999999 !important;
		position: absolute !important;
	}

	.stories__slide-close svg {
		width: 30px;
		height: 30px;
	}
}
