.comments_cont {
	display: grid;
	gap: 20px;
	max-width: 1400px;
	margin: 2rem auto;
	padding: 0 20px;
}

.comment {
	display: flex;
	gap: 0.75rem;
	border-bottom: 2px dashed #0a2140;
	padding-bottom: 1rem;
}
.comment-left .avatar-img-wrap {
	width: 55px;
	height: 55px;
	border-radius: 100%;
	overflow: hidden;
}
.comment-left .avatar-img-wrap img {
	width: 100%;
	object-fit: cover;
}
.comment-desc {
	margin-bottom: 8px;
	font-size: 13px;
}
.comment-desc-name {
	display: flex;
	align-items: center;
	gap: 4px;
	line-height: 18px;
	margin-bottom: 12px;
	font-size: 1.5rem;
}
.comment-desc-text {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 20px;
	max-width: 800px;
}
.comment-desc .additional_logo {
	display: flex;
	width: 12px;
	height: 12px;
}
.comment-desc .additional_logo img {
	width: 100%;
	object-fit: cover;
}
.comment-panel {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
	gap: 0.5rem;
}
.likes-wrap,
.comment-panel .dislike {
	background: #003366;
	border-radius: 100%;
	padding: 0.5rem;
	display: flex !important;
	justify-content: center;
	align-items: center;
}
.likes-wrap .img {
	width: 100%;
	height: 100%;
	position: relative;
	bottom: 1px !important;
}

.dislike .img {
	position: relative;
	bottom: 1px !important;
}

.comment-panel .dislike .img {
	bottom: 0px !important;
	position: relative;
}

.comment-panel.getLiked .likes .likes-wrap .img {
	background-image: url('../img/liked.png');
}
.comment-panel.getDisliked .dislike .img {
	background-image: url('../img/disliked.png');
}
.comment-panel .likes {
	display: flex;
	align-items: center;
	gap: 4px;
}
.comment-panel .likes .likes-wrap {
	width: 36px;
	height: 36px;
	padding: 6px;
}
.comment-panel .likes .likes-wrap .img {
	width: 100%;
	height: 100%;
	background-image: url('../img/like.png');
	background-repeat: no-repeat;
	background-size: cover;
}
.comment-panel .likes span {
	display: block;
	color: #636363;
	font-weight: 600;
	font-size: 1rem;
	margin-left: 0.125rem;
}
.comment-panel .dislike {
	display: block;
	width: 36px;
	height: 36px;
	padding: 6px;
}
.comment-panel .dislike .img {
	width: 100%;
	height: 100%;
	background-image: url('../img/dislike.png');
	background-repeat: no-repeat;
	background-size: cover;
}
.comment-panel .author_like {
	position: relative;
	margin-left: 8px;
}
.comment-panel .author_like .author-wrap {
	width: 24px;
	height: 24px;
	border-radius: 100%;
	overflow: hidden;
}
.comment-panel .author_like .author-wrap img {
	width: 100%;
	object-fit: cover;
}
.comment-panel .liked-outline {
	z-index: 20;
}
.comment-panel .liked-fill {
	z-index: 19;
}
.comment-panel .liked-outline,
.comment-panel .liked-fill {
	position: absolute;
	right: -3px;
	bottom: 3px;
	width: 12px;
	height: 12px;
}
.comment-panel .liked-outline img,
.comment-panel .liked-fill img {
	width: 100%;
	object-fit: cover;
}
.comment-panel .text-responde {
	padding: 4px 8px;
}
.comment-panel .text-responde:hover {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 18px;
}
.comment .comments_more-wrap {
	display: block;
	margin-left: 12px;
}
.comment .comments_more {
	display: flex;
	width: fit-content;
	align-items: center;
	color: #2ea0ff;
	padding: 4px 16px 4px 8px;
	border-radius: 18px;
}
.comment .comments_more:hover {
	background: #263850;
}
.comment .comments_more .img-wrap {
	width: 24px;
	height: 24px;
	margin-right: 6px;
}
.comment .comments_more .img-wrap img {
	width: 100%;
	object-fit: cover;
}
.comment .comments_more span {
	color: #2ea0ff;
}
@media (max-width: 768px) {
	.comment-left .avatar-img-wrap {
		width: 36px;
		height: 36px;
	}
	.comment .comments_more span {
		font-size: 14px;
	}
}

.dislikes_js {
	cursor: pointer;
}

@media (max-width: 500px) {
	.comment-desc-name {
		margin-bottom: 8px;
		font-size: 1.125rem;
	}

	.comment-desc-text {
		font-size: 1rem;
	}

	.comment-panel .likes .likes-wrap {
		width: 25px;
		height: 25px;
		padding: 4px;
	}

	.comment-panel .dislike {
		display: block;
		width: 25px;
		height: 25px;
		padding: 4px;
	}
	.comment-panel .likes span {
		font-size: 0.75rem;
	}
}

/* results */

.results {
	background: #0a2647;
	color: #fff;
	padding: 2rem 1.25rem;
	text-align: center;
	margin-top: 1rem;
	width: 100%;
}

.results-container {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	padding: 0;
}

.results-header__title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.results-header__subtitle {
	font-size: 1.25rem;
	line-height: 1.4;
	margin-bottom: 1.5rem;
	color: #d9d9d9;
}

.results-table {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 1px solid #ccc; /* внешняя рамка */
	border-radius: 6px;
	overflow: hidden;
}

.results-table__header,
.results-table__cell {
	border: 1px solid #ccc;
	margin: -1px 0 0 -1px; /* чтобы не было двойных линий */
}

.results-table__header {
	background: #001f3f;
	color: #fff;
	font-weight: 700;
	padding: 12px;
	text-align: center;
	font-size: 1.25rem;
	line-height: 135%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.results-table__cell {
	display: flex;
	align-items: center;
	padding: 12px 15px;
	background: #fff;
	color: #000;
	font-size: 1.125rem;
}

.results-table__cell--left {
	font-weight: 600;
	gap: 1.5rem;
}

.results-table__cell--right {
	justify-content: center;
	text-align: center;
	font-weight: 600;
}

.results-table__icon {
	width: 2.5rem;
	height: 2.5rem;
	flex-shrink: 0;
}

.results-footer {
	font-size: 1rem;
	color: #d9d9d9;
	line-height: 150%;
	margin-top: 1.75rem;
}

@media screen and (max-width: 500px) {
	.results-header__title {
		font-size: 1.75rem;
	}
	.results-header__subtitle {
		font-size: 1rem;
	}
	.results-table__cell {
		font-size: 0.875rem;
		padding: 0.5rem;
		gap: 0.75rem;
	}
	.results-footer {
		font-size: 0.85rem;
	}
	.results-table__header {
		font-size: 0.95rem;
	}
	.results-table__icon {
		width: 2rem;
		height: 2rem;
	}
}

/* ask */

.ask {
	width: 100%;
	position: relative;
	padding: 1rem 0;
	box-sizing: border-box;
	background: #fff;
	font-family: 'Open Sans', Roboto, Arial, sans-serif;
}

.ask__container {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	margin: 0 auto;
	box-sizing: border-box;
	gap: 1rem;
	padding-bottom: 1rem;
}

.ask-top {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	max-width: 600px;
	margin: 1rem auto;
}

.ask__title {
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	width: 100%;
	margin: 0 auto;
}

.ask__subtitle {
	font-size: 1.125rem;
	font-weight: 700;
	text-align: center;
	width: 100%;
	margin: 0 auto;
	color: #333;
	font-weight: 600;
}

.ask__block {
	width: 100%;
	max-width: 900px;
	position: relative;
	border: 1px solid silver;
	margin: 0 auto;
	border-radius: 8px;
	box-sizing: border-box;
	overflow: hidden;
}

.ask__item {
	position: relative;
	padding: 18px 25px 18px 18px;
	border-bottom: 1px solid silver;
	overflow: visible;
	box-sizing: border-box;
}

.ask__item + .ask__item {
	margin-top: 0;
}

.ask__item-name {
	cursor: pointer;
	font-size: 1.25rem;
	font-weight: 700;
	position: relative;
	user-select: none;
	display: block;
	line-height: 1.2;
	border-radius: 1rem;
	transition: all 0.35s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.25rem;
}

.ask__item-name img {
	transform: rotate(180deg);
	width: 1.75rem;
	height: 1.75rem;
	transition: all 300ms cubic-bezier(0.2, 0.9, 0.3, 1);
	display: flex;
	border-radius: 100%;
	padding: 0.35rem;
	border: 2px solid white;
}

.ask__item--open .ask__item-name img {
	transform: rotate(360deg);
}

.rotate {
	transition: transform 300ms ease;
}

.ask__descr {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transform: translateY(-6px);
	transition: max-height 360ms cubic-bezier(0.2, 0.9, 0.3, 1),
		opacity 260ms ease, transform 260ms ease;
	will-change: max-height, opacity, transform;
}

.ask__descr-text {
	padding: 1rem 1rem 0 2.5rem;
	color: #333;
	line-height: 1.5;
}

.ask__item--open .ask__descr {
	max-height: 1000px;
	opacity: 1;
	transform: translateY(0);
}

.ask__item:hover .ask__item-name {
	background: #003366;
	color: white;
}

.ask__item:hover .ask__item-name img {
	background-color: white;
	border: 2px solid #003366;
}

@media (max-width: 500px) {
	.ask__subtitle {
		font-size: 1rem;
	}
	.ask__item-name {
		font-size: 1rem;
	}
	.ask__descr {
		font-size: 0.875rem;
	}
	.ask__descr-text {
		padding-top: 0.5rem;
		padding-left: 2.5rem;
	}
}
