.pr-item-line-list{
	margin-top: 20px;
}
.pr-item-line-list:first-child{
	margin-top: 0;
}
.pr-item{
	background: #fff;
	display: flex;
	justify-content: space-between;
	text-decoration: none;
	position: relative;
}
.pr-item::before{
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	width: 4px;
	height: 100%;
	background: #B62D39;
	opacity: 0;
	transition: 0.3s;
}
.pr-item__pic{
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 100%;
	min-height: 200px;
}
.pr-item__pic a{
	display: flex;
	text-decoration: none;
}
.pr-item__pic img{
	object-fit: contain;
	transition: 0.3s;
}
.pr-item__info{
	margin-left: 16px;
	padding: 16px;
	width: 100%;
}
.pr-item__info-title{
	display: flex;
	justify-content: space-between;
}
.pr-item__info-name{
	color: #1E1E1E;
	font-size: 24px;
	font-weight: 500;
	line-height: 140%;
}

.pr-item:hover{
	text-decoration: none;
}
.pr-item:hover .pr-item__pic img{
	transform: scale(1.1);
}
.pr-item:hover::before{
	opacity: 1;
}
.pr-item__info-char__item{
	margin-top: 16px;
	display: flex;
	justify-content: space-between;
	position: relative;
}
.pr-item__info-char__item::before{
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 100%;
	border-bottom: 1px dotted #BDBDBD;
}
.pr-item__info-char__item span{
	display: flex;
	background: #fff;
	color: #757575;
	font-size: 14px;
	line-height: 140%;
	z-index: 2;
}
.pr-item__info-char__item span.pr-item__info-char__item-sel{
	color: #B62D39;
}
.pr-item__info-char__item span:first-child{
	padding-right: 8px;
}
.pr-item__info-char__item span:last-child{
	padding-left: 8px;
}
.pr-item__info-link{
	margin-top: 16px;
	color: #B62D39;
	font-size: 16px;
	line-height: 140%;
}
.pr-catalog-section-nav{
	display: flex;
	width: 100%;
}
.pr-catalog-section-nav-btn{
	margin-top: 20px;
	border-radius: 60px;
	border: 1px solid #B62D39;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	text-align: center;
	padding: 10px 16px;
	font-size: 16px;
	line-height: 140%;
	color: #B62D39;
	transition: 0.3s;
}
.pr-catalog-section-nav-btn svg{
	margin-left: 4px;
	transition: 0.3s;
}
.pr-catalog-section-nav-btn svg path{
	stroke: #B62D39;
	transition: 0.3s;
}
.pr-catalog-section-nav-btn:hover{
	cursor: pointer;
	color: #8C1F1F;
}
.pr-catalog-section-nav-btn:hover svg{
	transform: rotate(45deg);
}
.pr-catalog-section-nav-btn:hover svg path{
	stroke: #8C1F1F;
}
@media(max-width: 1500px){
	.pr-item__info-name{
		font-size: 22px;
	}
	.pr-item__info-char__item span{
		font-size: 13px;
	}
	.pr-item__info-char__item{
		margin-top: 12px;
	}
	.pr-item__info-link {
	    margin-top: 12px;
	    font-size: 15px;
	}
	.pr-item__pic img{
		width: 110px;
		height: 110px;
	}
	.pr-item__pic{
		width: 160px;
		min-height: 160px;
	}
	.pr-item__info{
		margin-left: 10px;
	}
	.pr-item-line-list {
	    margin-top: 15px;
	}
	.pr-catalog-section-nav-btn{
		margin-top: 15px;
		font-size: 15px;
	}
	.pr-catalog-section-nav-btn svg{
		width: 18px;
		height: 17px;
	}
}
@media(max-width: 576px){
	.pr-item__info-title img{
		display: none;
	}
	.pr-item__info-name {
	    font-size: 18px;
	}
	.pr-item__pic{
		width: 100px;
	    min-height: 135px;
	    margin-left: 12px;
	}
	.pr-item__pic img {
	    width: 100px;
	    height: 100px;
	}
	.pr-item__info {
	    margin-left: 0;
	    padding: 16px 12px;
	}
	.pr-item__info-char__item{
		flex-direction: column;
	}
	.pr-item__info-char__item::before{
		content: none;
	}
	.pr-item__info-char__item span:first-child{
		padding-right: 0;
		font-weight: 600;
	}
	.pr-item__info-char__item span:last-child {
	    padding-left: 0;
	    padding-top: 5px;
	}
	.pr-item__info-link {
	    font-size: 14px;
	}
}
