.product-item-container {
	width: calc(20% - 30px);
	margin-right: 15px;
	margin-left: 15px;
	margin-bottom: 25px;
	background: #FFFFFF;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
	border-radius: 6px;
	overflow: hidden;
	display: flex;
}

.product-item {
	position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.product-slider-item {
	min-height: 200px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	/*background-size: cover;*/
	background-size: contain;
}

.product-slider-arrow {
	position: absolute;
	text-decoration: none;
	top: calc(50% - 15px);
	z-index: 2;
	width: 23px;
	border-radius: 50%;
	height: 23px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 0, 0.2);
	border: 1px solid #222222;
	transition: 0.2s linear;
	opacity: 0.75;
}

.product-slider-arrow:hover {
	opacity: 1;
	cursor: pointer;
	text-decoration: none;
	transition: 0.2s linear;
}

.product-slider-wr {
	position: relative;
}

.product-slider-arrow-l {
	left: 5px;
}

.product-slider-arrow-r {
	right: 5px;
}

.product-item-label-ring {
	background: #01499b;
	border-radius: 5px 5px 36px 36px;
	position: absolute;
	z-index: 2;
  padding: 6px 10px;
}

.product-item-label-top {
	top: 0;
}

.product-item-label-left {
	left: 5px;
}

.product-item-label-ring span {
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	text-align: center;
	color: #FFFFFF;
}

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

.product-item-title a {
	color: #0D0D0D;
	text-decoration: none;
	letter-spacing: -0.41px;
	font-weight: 600;
	font-size: 14px;
	line-height: 22px;
	transition: 0.2s linear;
}

.product-item-title a:hover {
	transition: 0.2s linear;
	text-decoration: none;
	color: #01499b;
}

.product-item-price-container {
	display: flex;
	justify-content: space-between;
	padding: 0 10px;
	align-items: center;
	margin-bottom: 10px;
}

.product-item-price-current {
	color: #0D0D0D;
	font-weight: 600;
	font-size: 18px;
}

.product-item-price-old {
	letter-spacing: -0.24px;
	color: #000000;
	font-weight: normal;
	font-size: 12px;
	position: relative;
	margin-left: 10px;
}

.product-item-price-old::after {
  content: '';
  position: absolute;
  bottom: 35%;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(254, 103, 76, 0.9);
  transform: rotate(-2deg);
}

.product-item-info-container[data-entity=buttons-block] {
	margin-top: 10px;
}

.buy-button-item {
	margin: 0 10px 10px 10px;
	padding: 9px 12px;
	background: #01499b;
	border-radius: 6px;
	text-align: center;
	letter-spacing: -0.24px;
	color: #FFFFFF;
	font-size: 15px;
	font-weight: 900;
	text-decoration: none;
	transition: 0.2s linear;
	display: inline-block;
}

.buy-button-item:hover {
	transition: 0.2s linear;
	background: #f2583d;
	color: #FFFFFF;
	text-decoration: none;
}

.prop-strana {
	padding: 0 10px;
	margin-bottom: 10px;
	font-size: 15px;
	letter-spacing: -0.24px;
	color: #000000;
}

.prop-strana img {
	max-width: 14px;
	margin-right: 5px;
}

.pod-zakaz-stiker {
	position: absolute;
	bottom: 0;
	right: 5px;
	padding: 5px 8px;
    background: #01499b;
    border-radius: 6px;
	font-size: 12px;
	color: #fff;
}

.not-avalible-text {
	text-align: center;
	margin: 0 0 20px 0;
	display: inline-block;
	width: 100%;
	text-decoration: none;
	font-weight: 600;
    color: #AFAFAF;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
	.product-item-container {
		width: calc(33% - 30px);
	}
}

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

	.prop-strana {
		display: flex;
		align-items: center;
	}
}
