.price_list {

}

.price_list__head > img {
	max-width:100%;
}

.price_list__grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr)
}

.price_list__head {
	display: block;
	border-radius: 4px;
	border:1px solid #EBEBEB;
	margin-bottom: 16px;
}

.price_list__head:hover {
	text-decoration: none;
}

.price_list__info {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 16px;
	cursor: pointer;
	text-decoration: none;
}


.price_list__info p {
	margin:0px;
	margin-right: 24px;
	
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;

	color: #212324;
}

.price_list__info img {
	max-width:100%;
}


/* Items */
.price_list__list {
	
}

.price_list__listIterm {
	padding-top: 8px;
	padding-bottom: 16px;
	
	max-width: 600px;
	margin:0 auto;
}

.price_list__listButtonContainer {
	max-width: 600px;
	margin:0 auto;
	
}

.price_list__listIterm h2 {
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	padding-bottom: 16px;
	margin:0px;
}

.price_list__row p {
	margin: 0px;
	padding-right:12px;
}

.price_list__row p:last-of-type {
	padding-right:0px;
}

.price_list__row {
	display: flex;
	align-items: top;
	justify-content:flex-start;
	background: #F7F7F7;
	padding: 12px;
	margin-bottom: 4px;
}

.price_list__row p.price_list__rowName {
	margin-right: auto;
}

.price_list__rowPrice {
	font-weight: 700;
	font-size: 14px;
	line-height: 18px;
	white-space: nowrap;
	width: 60px;
	min-width: 60px;
	text-align: right;
}

.price_list__row p.price_list__rowSale {
	margin-left: auto;
}

.price_list__rowSaleInner {
	color: #14B1C1;
	font-weight: 500;
	font-size: 10px;
	line-height: 18px;
	
	padding: 0 8px;
	border-radius: 2px;
	border: 1px solid #14B1C1;
	
	display: block;
}

.price_list__rowSaleInner span {
	display: none;
}

.price_list__error {
	text-align: center;
}

.price_list__bigImg {
	width: 100vw;
	margin: 0 -25px;
	margin-bottom: 24px;
	display: none;
}

.price_list__smallImg {
	width: 100vw;
	margin: 0 -25px;
	margin-bottom: 24px;
}


@media (min-width: 768px) {
	
	.price_list__rowSaleInner span {
		display: inline;
		text-transform: uppercase;
	}
	
	.price_list {

	}

	.price_list__grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		grid-gap: 24px;
	}

	.price_list__head {
		
	}

	.price_list__info {
		padding: 24px;
	}
	
	/* Items */
	.price_list__bigImg {
		width: 100%;
		margin: 0px;
		margin-bottom: 48px;
		display: block;
	}
	
	.price_list__smallImg {
		display: none;
	}
	
	
	.price_list__listButtonContainer {
	
		padding-top:24px;
		display: block;
	}
	
	.price_list__listButtonContainer a {
		
	}
}

