.exp-page-promo {
	padding-bottom: 4px;
}

.exp-page-promo .exp-page__lead {
	margin: 0 0 12px;
}

.exp-page .exp-page__head {
	margin-bottom: 18px;
}

.exp-page__lead {
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
	color: rgba(var(--tt-rgb), 0.55);
	max-width: 520px;
}

.exp-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	counter-reset: exp-rank;
}

.exp-list-head {
	display: none;
	padding: 0 18px 8px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(var(--tt-rgb), 0.42);
}

.exp-list-head__col--rating {
	text-align: center;
}

.exp-page .pagination {
	margin-top: 22px;
}

.exp-item {
	counter-increment: exp-rank;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px 14px;
	padding: 14px 16px;
	border-radius: 12px;
	border: 1px solid rgba(var(--bdc-rgb), 0.35);
	background: rgba(var(--bg-rgb), 0.55);
	transform: none;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.exp-item:hover {
	background: rgba(var(--bg-darker-1-rgb), 0.45);
	border-color: rgba(var(--accent-rgb), 0.25);
	box-shadow: none;
	transform: none;
}

.dt .exp-item {
	background: rgba(255, 255, 255, 0.03);
	border-color: rgba(255, 255, 255, 0.08);
}

.dt .exp-item:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(var(--accent-rgb), 0.35);
}

.exp-list > .exp-item:nth-child(-n+3) {
	background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.08) 0%, rgba(var(--bg-rgb), 0.55) 48%);
}

.dt .exp-list > .exp-item:nth-child(-n+3) {
	background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.14) 0%, rgba(255, 255, 255, 0.03) 48%);
}

.exp-list > .exp-item:nth-child(1) .exp-item__rank {
	color: #8a5a00;
	background: linear-gradient(145deg, #ffe08a, #f5c542);
}

.exp-list > .exp-item:nth-child(2) .exp-item__rank {
	color: #4a5568;
	background: linear-gradient(145deg, #eef2f7, #c5ced8);
}

.exp-list > .exp-item:nth-child(3) .exp-item__rank {
	color: #6b3f1f;
	background: linear-gradient(145deg, #f0c4a8, #d4926a);
}

.exp-item__rank {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 700;
	border-radius: 10px;
	color: rgba(var(--tt-rgb), 0.7);
	background: rgba(var(--bdc-rgb), 0.2);
}

.exp-item__rank::before {
	content: counter(exp-rank);
}

.exp-item__poster {
	flex-shrink: 0;
	width: 65px;
}

.exp-item__img {
	display: block;
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 2 / 3;
}

.exp-item__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.exp-item__info {
	min-width: 0;
}

.exp-item__title {
	margin: 0 0 4px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.25;
}

.exp-item__title a {
	color: inherit;
	text-decoration: none;
}

.exp-item__title a:hover {
	color: var(--accent);
}

.exp-item__meta {
	margin: 0;
	font-size: 13px;
	line-height: 1.35;
	color: rgba(var(--tt-rgb), 0.58);
}

.exp-item__meta--desc {
	margin-top: 6px;
}

.exp-item__premiere {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px 8px;
	margin: 8px 0 0;
	padding: 5px 10px;
	border-radius: 999px;
	font-size: 12px;
	line-height: 1.3;
	background: rgba(var(--accent-rgb), 0.08);
	border: 1px solid rgba(var(--accent-rgb), 0.16);
}

.dt .exp-item__premiere {
	background: rgba(var(--accent-rgb), 0.12);
	border-color: rgba(var(--accent-rgb), 0.22);
}

.exp-item__premiere-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(var(--tt-rgb), 0.48);
}

.exp-item__premiere-date {
	font-weight: 600;
	color: var(--accent-dark, var(--accent));
	white-space: nowrap;
}

.exp-item__rating {
	flex-shrink: 0;
	min-width: 92px;
	text-align: center;
}

/* Модуль anons_rating внутри списка ожидаемых премьер */
.exp-item__rating .movie-expected {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	width: 100%;
	min-width: 0;
}

.exp-item__rating .movie-expected__bar {
	order: 1;
	height: 4px;
	margin: 0 0 8px;
	border-radius: 999px;
	overflow: hidden;
	background: rgba(var(--bdc-rgb), 0.28);
}

.dt .exp-item__rating .movie-expected__bar {
	background: rgba(255, 255, 255, 0.1);
}

.exp-item__rating .movie-expected__green {
	height: 100%;
	min-height: 4px;
	width: var(--exp-rating-width, 0%);
	border-radius: 999px;
	background: linear-gradient(90deg, #5ecf82 0%, #0a8f4a 100%);
	position: static;
}

.exp-item__rating .movie-expected__green::after {
	display: none;
}

.exp-item__rating .movie-expected__actions {
	order: 2;
	display: block;
	margin: 0;
	width: 100%;
}

.exp-item__rating .movie-expected__wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	margin: 0;
	padding: 10px 10px 9px;
	border-radius: 10px;
	text-align: center;
	background: rgba(var(--accent-rgb), 0.07);
	border: 1px solid rgba(var(--accent-rgb), 0.16);
	box-sizing: border-box;
}

.dt .exp-item__rating .movie-expected__wrapper {
	background: rgba(63, 157, 101, 0.1);
	border-color: rgba(63, 157, 101, 0.22);
}

.exp-item__rating .movie-expected__percent {
	display: block;
	margin: 0;
	padding: 0;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.03em;
	font-variant-numeric: tabular-nums;
	color: #0a8f4a;
	align-self: auto;
}

.dt .exp-item__rating .movie-expected__percent {
	color: #3ecf8e;
}

.exp-item__rating .movie-expected__count {
	display: block;
	margin: 0;
	padding: 0;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.25;
	font-variant-numeric: tabular-nums;
	color: rgba(var(--tt-rgb), 0.52);
	align-self: auto;
	white-space: nowrap;
}

.dt .exp-item__rating .movie-expected__count {
	color: rgba(255, 255, 255, 0.55);
}

.exp-item__rating .movie-expected__btns,
.exp-item__rating .movie-expected__most {
	display: none !important;
}

.exp-item__open {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	color: rgba(var(--tt-rgb), 0.55);
	text-decoration: none;
	border: 1px solid rgba(var(--bdc-rgb), 0.35);
	flex-shrink: 0;
	margin-left: auto;
}

.exp-item__open:hover {
	color: var(--accent);
	border-color: rgba(var(--accent-rgb), 0.35);
}

.exp-item__fav {
	margin-top: 8px;
}

.exp-item__fav .movie-rate-watchlist {
	display: inline-flex;
}

.exp-item__fav .movie-rate-watchlist button {
	min-height: 32px;
	padding: 6px 10px;
	font-size: 12px;
	font-weight: 600;
	border-radius: 8px;
	border: 1px solid rgba(var(--bdc-rgb), 0.45);
	background: rgba(var(--bg-rgb), 0.85);
	color: inherit;
	box-shadow: none;
	text-transform: none;
}

.exp-item__fav .movie-rate-watchlist button:hover {
	background: rgba(var(--accent-rgb), 0.08);
	border-color: rgba(var(--accent-rgb), 0.35);
}

.exp-item__fav .watchlist_btn_success {
	border-color: rgba(10, 143, 74, 0.45) !important;
	background: rgba(10, 143, 74, 0.12) !important;
	color: #0a8f4a !important;
}

.exp-item__fav .watchlist_btn_success i {
	color: inherit !important;
}

@media (min-width: 900px) {
	.exp-page__lead {
		text-align: right;
	}

	.exp-list-head,
	.exp-item {
		display: grid;
		grid-template-columns: 36px 65px minmax(160px, 1fr) 108px 34px;
		align-items: center;
		column-gap: 14px;
	}

	.exp-item {
		flex-wrap: nowrap;
		padding: 16px 18px;
	}

	.exp-item__rank {
		grid-column: 1;
	}

	.exp-item__poster {
		grid-column: 2;
	}

	.exp-item__info {
		grid-column: 3;
	}

	.exp-item__rating {
		grid-column: 4;
	}

	.exp-item__open {
		grid-column: 5;
		margin-left: 0;
		justify-self: end;
	}
}

.qapo__expected-slot {
	margin-top: 0;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid rgba(var(--qapo-lamp-rgb, var(--accent-rgb)), 0.22);
	background: rgba(var(--bg-rgb), 0.55);
	box-sizing: border-box;
}

.qapo__info .qapo__expected-slot {
	margin-top: 0;
}

.dt .qapo__expected-slot {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(var(--qapo-lamp-rgb, var(--accent-rgb)), 0.28);
}

.qapo__expected-slot .qapo__rating-panel-label {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	color: rgba(var(--tt-rgb), 0.62);
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.qapo__expected-slot .movie-expected {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}

.qapo__expected-slot .movie-expected__bar {
	height: 6px;
	width: 100%;
	margin: 0;
	border-radius: 999px;
	overflow: hidden;
	background: rgba(var(--bdc-rgb), 0.28);
}

.qapo__expected-slot .movie-expected__green {
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #0a8f4a 0%, #3ecf8e 100%);
	transition: width 0.35s ease;
}

.qapo__expected-slot .movie-expected__green::after {
	display: none;
}

.qapo__expected-slot .movie-expected__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	min-width: 0;
}

.qapo__expected-slot .movie-expected__wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 10px;
	min-width: 0;
	flex: 1 1 auto;
}

.qapo__expected-slot .movie-expected__percent {
	font-size: 22px;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.03em;
	line-height: 1;
	color: #0a8f4a;
}

.dt .qapo__expected-slot .movie-expected__percent {
	color: #3ecf8e;
}

.qapo__expected-slot .movie-expected__count {
	margin: 0;
	font-size: 12px;
	line-height: 1.2;
	color: rgba(var(--tt-rgb), 0.48);
	align-self: center;
	white-space: nowrap;
}

.qapo__expected-slot .movie-expected__btns {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
	min-width: 0;
}

.qapo__expected-slot .movie-expected__btns button {
	margin: 0;
	min-height: 34px;
	padding: 6px 12px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	border-radius: 8px;
	border: 1px solid rgba(var(--bdc-rgb), 0.4);
	background: rgba(var(--tt-rgb), 0.04);
	color: inherit;
	cursor: pointer;
	box-shadow: none;
	text-transform: none;
	white-space: nowrap;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.qapo__expected-slot .movie-expected__btns button:hover {
	opacity: 1;
	border-color: rgba(var(--accent-rgb), 0.35);
	background: rgba(var(--accent-rgb), 0.08);
}

.qapo__expected-slot .movie-expected__btns button:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.qapo__expected-slot .movie-expected__wait.is-active,
.qapo__expected-slot .movie-expected__wait.success {
	border-color: rgba(10, 143, 74, 0.45);
	background: rgba(10, 143, 74, 0.12);
	color: #0a8f4a;
}

.qapo__expected-slot .movie-expected__nowait.is-active,
.qapo__expected-slot .movie-expected__nowait.success {
	border-color: rgba(var(--accent-rgb), 0.45);
	background: rgba(var(--accent-rgb), 0.12);
	color: var(--accent);
}

.qapo__expected-slot .movie-expected__wait i {
	color: #0a8f4a;
	margin-right: 0;
}

.qapo__expected-slot .movie-expected__nowait i {
	color: var(--accent);
	margin-right: 0;
}

.qapo__expected-slot .movie-expected__most {
	margin: 0;
	font-size: 12.5px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	color: rgba(var(--tt-rgb), 0.58);
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.qapo__expected-slot .movie-expected__most::before {
	content: "\f0c0";
	font-family: "Font Awesome 5 Pro";
	font-weight: 300;
	margin-right: 6px;
}

.qapo__expected-slot .movie-expected__most:hover {
	color: var(--accent);
}

.qapo__expected-slot--inline {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	align-items: center;
	column-gap: 10px;
	row-gap: 10px;
}

.qapo__expected-slot--inline .qapo__rating-panel-label {
	grid-column: 1;
	grid-row: 1;
	margin: 0;
	text-align: left;
}

.qapo__expected-slot--inline .movie-expected,
.qapo__expected-slot--inline .movie-expected__actions,
.qapo__expected-slot--inline .movie-expected__wrapper {
	display: contents;
}

.qapo__expected-slot--inline .movie-expected__percent {
	grid-column: 2;
	grid-row: 1;
	font-size: 20px;
}

.qapo__expected-slot--inline .movie-expected__count {
	grid-column: 3;
	grid-row: 1;
}

.qapo__expected-slot--inline .movie-expected__bar {
	grid-column: 1 / -1;
	grid-row: 2;
}

.qapo__expected-slot--inline .movie-expected__btns {
	grid-column: 1;
	grid-row: 3;
	justify-self: start;
}

.qapo__expected-slot--inline .movie-expected__most {
	grid-column: 2 / -1;
	grid-row: 3;
	justify-self: end;
	max-width: 100%;
}

.qapo__expected-slot--inline .exp-panel.qapo__rating-panel {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	text-align: left;
}

.qapo__expected-slot--inline .exp-panel__bar {
	margin: 0;
	height: 6px;
}

.qapo__expected-slot--inline .exp-panel__actions {
	justify-content: flex-start;
	flex-wrap: wrap;
	min-width: 0;
}

.qapo__expected-slot--inline .exp-panel__score {
	flex-direction: row;
	align-items: baseline;
	gap: 8px;
}

.qapo__expected-slot--inline .exp-panel__percent {
	font-size: 20px;
}

.qapo__expected-slot--inline .exp-panel__link {
	margin-left: 0;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.exp-panel {
	margin-top: 0;
}

.exp-panel__bar {
	height: 8px;
	border-radius: 999px;
	overflow: hidden;
	background: rgba(var(--bdc-rgb), 0.35);
}

.exp-panel__bar-fill {
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #0a8f4a 0%, #3ecf8e 100%);
	transition: width 0.35s ease;
}

.exp-panel__score {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 72px;
}

.exp-panel__percent {
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	color: #0a8f4a;
}

.dt .exp-panel__percent {
	color: #3ecf8e;
}

.exp-panel__count {
	font-size: 12px;
	color: rgba(var(--tt-rgb), 0.5);
}

.exp-panel__btns {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.exp-panel__btn {
	min-height: 40px;
	padding: 8px 14px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	border-radius: 10px;
	border: 1px solid rgba(var(--bdc-rgb), 0.45);
	background: rgba(var(--bg-rgb), 0.85);
	color: inherit;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.exp-panel__btn--wait.is-active,
.exp-panel__btn--wait:hover {
	border-color: rgba(10, 143, 74, 0.45);
	background: rgba(10, 143, 74, 0.12);
	color: #0a8f4a;
}

.exp-panel__btn--nowait.is-active,
.exp-panel__btn--nowait:hover {
	border-color: rgba(var(--accent-rgb), 0.45);
	background: rgba(var(--accent-rgb), 0.12);
	color: var(--accent);
}

.exp-panel__link {
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	color: rgba(var(--tt-rgb), 0.65);
	white-space: nowrap;
}

.exp-panel__link::before {
	margin-right: 6px;
}

.exp-panel__link:hover {
	color: var(--accent);
}

.qapo--expected .exp-full__eyebrow {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--accent);
}

.qapo--expected .lodyt__label--soon {
	background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.exp-full__stat {
	text-align: center;
}

.exp-full__stat-row {
	flex-wrap: wrap;
	justify-content: center;
}

.exp-full__stat-value {
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	color: #0a8f4a;
}

.dt .exp-full__stat-value {
	color: #3ecf8e;
}

.exp-full__stat-votes {
	font-size: 13px;
	color: rgba(var(--tt-rgb), 0.55);
}

.exp-full__rank-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-top: 12px;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	color: rgba(var(--tt-rgb), 0.65);
}

.exp-full__rank-link:hover {
	color: var(--accent);
}

.qapo__to-watch--expected {
	gap: 10px;
}

.qapo__to-watch-btn--ghost {
	color: inherit;
	background: rgba(var(--bg-rgb), 0.85);
	border: 1px solid rgba(var(--bdc-rgb), 0.45);
	box-shadow: none;
	text-decoration: none;
}

.qapo__to-watch-btn--ghost:hover {
	filter: none;
	color: var(--accent);
	border-color: rgba(var(--accent-rgb), 0.35);
	background: rgba(var(--accent-rgb), 0.08);
	box-shadow: none;
}

.qapo--expected .qapo__description {
	margin-top: 0;
}

.qapo--expected .exp-full__media {
	margin-top: 0;
}

.exp-full__trailer {
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.exp-full__toolbar {
	margin-top: 14px;
}

.expected-top {
	padding: 16px 18px;
	border-radius: 12px;
	border: 1px solid rgba(var(--bdc-rgb), 0.35);
	background: rgba(var(--bg-rgb), 0.55);
}

.dt .expected-top {
	background: rgba(255, 255, 255, 0.03);
	border-color: rgba(255, 255, 255, 0.08);
}

.expected-top__title {
	margin: 0 0 12px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
}

.expected-top__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.expected-top__item {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr) auto auto;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	line-height: 1.3;
}

.expected-top__pos {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	border-radius: 8px;
	color: rgba(var(--tt-rgb), 0.7);
	background: rgba(var(--bdc-rgb), 0.2);
}

.expected-top__list > .expected-top__item:nth-child(1) .expected-top__pos {
	color: #8a5a00;
	background: linear-gradient(145deg, #ffe08a, #f5c542);
}

.expected-top__list > .expected-top__item:nth-child(2) .expected-top__pos {
	color: #4a5568;
	background: linear-gradient(145deg, #eef2f7, #c5ced8);
}

.expected-top__list > .expected-top__item:nth-child(3) .expected-top__pos {
	color: #6b3f1f;
	background: linear-gradient(145deg, #f0c4a8, #d4926a);
}

.expected-top__link {
	color: inherit;
	text-decoration: none;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.expected-top__link:hover {
	color: var(--accent);
}

.expected-top__rating {
	font-weight: 700;
	color: #0a8f4a;
	white-space: nowrap;
}

.dt .expected-top__rating {
	color: #3ecf8e;
}

.expected-top__votes {
	font-size: 11px;
	color: rgba(var(--tt-rgb), 0.5);
	white-space: nowrap;
}

.expected-top__more {
	display: inline-flex;
	align-items: center;
	margin-top: 12px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	color: rgba(var(--tt-rgb), 0.65);
}

.expected-top__more:hover {
	color: var(--accent);
}

@media (max-width: 899px) {
	.exp-page__lead {
		width: 100%;
	}

	.exp-item__info {
		flex: 1 1 calc(100% - 113px);
		min-width: 0;
	}

	.exp-item__rating {
		flex: 1 1 100%;
		min-width: 0;
		text-align: left;
	}

	.exp-item__rating .movie-expected {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: stretch;
		gap: 8px;
	}

	.exp-item__rating .movie-expected__bar {
		flex: 1 1 100%;
		margin: 0;
		order: 0;
	}

	.exp-item__rating .movie-expected__actions {
		flex: 1 1 auto;
		order: 1;
	}

	.exp-item__rating .movie-expected__wrapper {
		flex-direction: row;
		align-items: baseline;
		justify-content: flex-start;
		gap: 8px;
		padding: 8px 12px;
		text-align: left;
	}

	.exp-item__rating .movie-expected__percent {
		font-size: 20px;
	}

	.exp-item__open {
		margin-left: auto;
	}
}

@media (max-width: 640px) {
	.exp-item {
		padding: 12px;
	}

	.exp-item__premiere {
		margin-top: 6px;
		padding: 4px 9px;
		font-size: 11px;
	}

	.exp-item__rating .movie-expected__wrapper {
		width: 100%;
		justify-content: space-between;
	}

	.qapo__expected-slot--inline {
		grid-template-columns: minmax(0, 1fr) auto auto;
	}

	.qapo__expected-slot--inline .qapo__rating-panel-label {
		grid-column: 1 / -1;
		white-space: normal;
	}

	.qapo__expected-slot--inline .movie-expected__percent {
		grid-column: 1;
		grid-row: 2;
		justify-self: start;
	}

	.qapo__expected-slot--inline .movie-expected__count {
		grid-column: 2 / -1;
		grid-row: 2;
		justify-self: start;
	}

	.qapo__expected-slot--inline .movie-expected__bar {
		grid-row: 3;
	}

	.qapo__expected-slot--inline .movie-expected__btns {
		grid-column: 1 / -1;
		grid-row: 4;
		width: 100%;
	}

	.qapo__expected-slot--inline .movie-expected__btns button {
		flex: 1 1 0;
		justify-content: center;
	}

	.qapo__expected-slot--inline .movie-expected__most {
		grid-column: 1 / -1;
		grid-row: 5;
		justify-self: start;
		white-space: normal;
	}

	.qapo__expected-slot--inline .exp-panel__btns {
		width: 100%;
	}

	.qapo__expected-slot--inline .exp-panel__btn {
		flex: 1;
		justify-content: center;
	}

	.qapo__expected-slot--inline .exp-panel__link {
		width: 100%;
		justify-content: center;
		display: inline-flex;
		margin-left: 0;
	}

	.expected-top__item {
		grid-template-columns: 24px minmax(0, 1fr);
		grid-template-rows: auto auto;
	}

	.expected-top__rating,
	.expected-top__votes {
		grid-column: 2;
	}

	.expected-top__rating {
		justify-self: start;
	}

	.expected-top__votes {
		justify-self: end;
		margin-top: -18px;
	}
}

.lodyt__expected {
	position: absolute;
	left: 8px;
	right: 8px;
	bottom: 8px;
	z-index: 2;
	pointer-events: none;
}

.lodyt__expected .movie-expected {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 6px 8px;
	border-radius: 8px;
	background: rgba(9, 12, 20, 0.82);
	backdrop-filter: blur(4px);
}

.lodyt__expected .movie-expected__bar,
.lodyt__expected .movie-expected__btns,
.lodyt__expected .movie-expected__most {
	display: none;
}

.lodyt__expected .movie-expected__actions {
	margin: 0;
}

.lodyt__expected .movie-expected__wrapper {
	margin: 0;
	align-items: baseline;
	gap: 6px;
}

.lodyt__expected .movie-expected__percent {
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	color: #3ecf8e;
}

.lodyt__expected .movie-expected__count {
	margin: 0;
	font-size: 11px;
	line-height: 1;
	color: rgba(255, 255, 255, 0.72);
	align-self: auto;
}

