.product-item-container-line {
	width: calc(25% - 63px);
  margin-bottom: 30px;
	background: #FFFFFF;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
	border-radius: 6px;
	padding: 30px 20px;
  min-height: 310px;
	position: relative;
	display: flex;
	transition: 0.2s linear;
	margin-left: 15px;
	margin-right: 15px;
}

.product-item-container-line:hover {
	transition: 0.2s linear;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
}

.product-item {
	display: flex;
	flex-direction: column;
	position: relative;
	/* justify-content: space-between; */
	justify-content: flex-end;
}

.product-item-container-line:nth-child(4n+1) {
  margin-right: 15px;
	margin-left: 0;
}

.product-item-container-line:nth-child(4n+4) {
  margin-left: 15px;
	margin-right: 0;
}

.product-item-image-original {
	min-height: 155px;
	width: 100%;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: contain;
  display: block;
	margin: 15px 0;
}

.product-item-label-ring {
	display: inline-block;
	/* padding: 5px 15px; */
	padding: 5px 0;
	width: 60px;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	line-height: 20px;
	color: #fff;
	position: relative;
}

.product-item-label-ring span{
	/* position: absolute;
	top: 0;
	left: 0; */
	position: relative;
	z-index: 2;
}

.product-item-label-ring::after {
	content: '';
	background: #F13A30;
	border-radius: 4px;
	transform: rotate(-10.68deg);
	width: 59.75px;
	height: 26px;
	position: absolute;
	top: 0;
	left: 0;
}

.product-item-price-current {
	font-weight: bold;
	font-size: 20px;
	line-height: 23px;
	color: #F13A30;
	order: 1;
	margin-right: 15px;
}

.product-item-price-old {
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
	color: #0D0D0D;
	position: relative;
	order: 2;
}

.product-item-price-old::after {
	content: '';
	position: absolute;
  bottom: 35%;
  left: 0;
  right: 0;
  width: 80%;
  height: 5px;
  background-color: rgba(241, 58, 48, 0.8);
  transform: rotate(-7deg);
}

.product-item-price-container {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.product-item-title {
	margin: 15px 0;
}

.product-item-title a {
	text-decoration: none;
	color: #0D0D0D;
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
}

.product-item-button-container a {
	text-decoration: none;
	font-weight: bold;
	font-size: 10px;
	line-height: 12px;
	color: #0D0D0D;
	padding: 6px 12px;
	background: #FFE921;
	border-radius: 4px;
	transition: 0.2s linear
}

.product-item-button-container a:hover {
	background: #F13A30;
	color: #fff;
	text-decoration: none;
	transition: 0.2s linear
}

.product-add-info {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.product-add-info-img {
	margin-right: 15px;
}

.product-add-info-img img {
	max-width: 80px;
}

.product-add-info-title {
	margin-right: 10px;
	font-size: 16px;
	line-height: 25px;
	font-weight: normal;
	color: #0D0D0D;
	font-family: 'Roboto';
	max-width: 200px;
}

.product-add-info-price {
	margin-right: 10px;
	font-size: 16px;
	line-height: 25px;
	font-weight: bold;
	color: #0D0D0D;
	font-family: 'Roboto';
}

.popup-window-titlebar-text {
	font-weight: bold;
	color: #0D0D0D;
	font-size: 16px;
	font-family: 'Roboto';
}

.popup-window.popup-window-content-white.popup-window-with-titlebar.bx-blue {
	background: #FFFFFF;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	border-radius: 6px;
    padding: 15px 20px;
}

.go-to-cart {
	text-decoration: none;
	color: #0D0D0D;
	background: #FFE921;
	border-radius: 6px;
	width: 100%;
	padding: 10px;
	font-size: 14px;
	font-family: 'Roboto';
	font-weight: bold;
	transition: 0.2s linear;
}

.go-to-cart:hover {
	text-decoration: none;
	transition: 0.2s linear;
	color: #fff;
	background: #F13A30;
	cursor: pointer;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
	.product-item-container-line {
		width: calc(50% - 55px);
	}

	.product-item-container-line {
		margin-right: 0;
		margin-left: 0;
	}

	.product-item-container-line:nth-child(4n+1) {
		margin-right: 0;
		margin-left: 0;
	}

	.product-item-container-line:nth-child(4n+4) {
		margin-left: 0;
		margin-right: 0;
	}

	.product-item-container-line:nth-child(2n+1) {
		margin-right: 15px;
		margin-left: 0;
	}

	.product-item-container-line:nth-child(2n) {
		margin-left: 15px;
		margin-right: 0;
	}
}

@media screen and (max-width: 767px) {
	.product-item-container-line {
    width: calc(100% - 40px);
	}

	.product-item-container-line {
	  margin-right: 0;
		margin-left: 0;
	}

	.product-item-container-line:nth-child(4n+1) {
	  margin-right: 0;
		margin-left: 0;
	}

	.product-item-container-line:nth-child(4n+4) {
	  margin-left: 0;
		margin-right: 0;
	}

	.catalog-section {
		padding: 0 15px;
	}

	.product-item {
		width: 100%;
	}

	.product-item-button-container a {
		font-size: 14px;
	}

	.product-add-info {
		flex-direction: column;
	}

	.product-add-info-img,
	.product-add-info-title {
    margin-right: 0;
		text-align: center;
	}
}
