.nmp-other-colors {
	margin: 8px 0 22px;
	padding: 0 0 19px;
	border-bottom: 1px solid #dedede;
}

.nmp-other-colors__title {
	margin: 0 0 11px;
	color: #1f252b;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
}

.nmp-other-colors__list {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	align-items: center;
}

.nmp-other-colors__item {
	display: block;
	width: 52px;
	height: 52px;
	padding: 3px;
	overflow: hidden;
	border: 1px solid #d8d8d8;
	border-radius: 5px;
	background: #fff;
	box-shadow: none;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.nmp-other-colors__item:hover,
.nmp-other-colors__item:focus-visible {
	border-color: #f5a10b;
	box-shadow: 0 0 0 2px rgba(245, 161, 11, .18);
	transform: translateY(-1px);
	outline: none;
}

.nmp-other-colors__image,
.nmp-other-colors__image img {
	display: block;
	width: 100%;
	height: 100%;
}

.nmp-other-colors__image img {
	margin: 0;
	border-radius: 2px;
	object-fit: cover;
}

@media (max-width: 767px) {
	.nmp-other-colors {
		margin-top: 6px;
		margin-bottom: 18px;
		padding-bottom: 17px;
	}

	.nmp-other-colors__item {
		width: 48px;
		height: 48px;
	}
}

