.product__price {
	font-weight: 600;
	font-size: 1.5rem;
}
.product__note {
	color: var(--color-gray-dark);
	font-size: 0.75rem;
	line-height: 1.2em;
}

.difficulty-product__item {
	background: var(--color-gray-light);
	border-radius: 50%;
	display: block;
	width: 12px;
	height: 12px;
}
.difficulty-product {
	gap: 2px;
}
.difficulty-product__item:nth-child(1) {
	background: #f0d44d;
}
.difficulty-product__item:nth-child(2) {
	background: #f0b84d;
}
.difficulty-product__item:nth-child(3) {
	background: #f0904d;
}
.difficulty-product__item:nth-child(4) {
	background: #f06a77;
}
.difficulty-product .difficulty-product__item.active ~ span {
	background: var(--color-gray-light);
}

.show-more-date {
	align-items: center;
	color: var(--color-brown);
	cursor: pointer;
	font-size: 13px;
	letter-spacing: .02em;
	white-space: nowrap;
}
.date-text {
	color: var(--color-gray-dark);
}
.date-text_mb {
	margin-bottom: -10px;
}
.date-with-time_time {
	word-spacing: -0.2em;
}
.product-calendar {
	font-size: .875rem;
}
.product-one .product-calendar__item {
	line-height: 1.125rem;
}
.product-one .product-calendar__item .product__note {
	line-height: 1.5em;
}

@media (min-width: 1200px) {
	.show-more-date {
		height: 30px;
		margin-top: 12px;
		padding: 6px 8px;
		border-radius: var(--border-radius_m);
		border: 1px solid var(--color-gray-light);
		box-shadow: var(--box-shadow-m);
	}
	.date-with-time__date {
		width: 100%;
	}
}

@media (max-width: 1399px) {
	.show-more-date {
		font-size: .75rem;
	}
}

@media (max-width: 1199px) {
	.show-more-date {
		margin-left: 5px;
		font-weight: 600;
		color: var(--color-blue);
	}
}