.show-more-container {
	text-align: center;
	margin-top: 32px;
}

.show-more-btn {
	max-height: 48px;
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 24px;
	transition-duration: 0.3s;
	transition-property: background-color;
	text-align: center;
	text-decoration: none;
	color: #FFFFFF;
	border: none;
	border-radius: 16px;
	outline: 0;
	background-color: #BD0C1E;
	gap: 10px;
	white-space: nowrap;
}

.show-more-btn:hover {
	color: #FFFFFF;
	background-color: #121217;
}

.show-more-btn._disabled {
	color: #B2B2B2;
	background: #FFFFFF;
	border: 1px solid #F2F2F2;
	pointer-events: none;
}