.manuf {
    padding-top: 50px;
    padding-bottom: 60px;
}
.manuf.--pb0 {
	padding-bottom: 0px !important;
}
.manuf__title {
    margin-bottom: 45px;
}
.manuf__list {
    grid: none/repeat(3, 1fr);
    gap: 30px;
}
.manuf__item {
    position: relative;
    padding: 20px 30px 30px 30px;
    border-radius: 4px;
    background-color: #fff;
}
.manuf__item.manuf__item_border {
	border: 1px solid #e5e5e5;
}
.manuf__item:hover .manuf__btn {
    opacity: 1;
    visibility: visible;
}
.manuf__img-wrap {
    position: relative;
    margin-bottom: 5px;
}
.manuf__img {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 300px;
    padding-top: 8px;
}
.manuf__btn {
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	width: 50%;
}
.manuf__teplota {
    z-index: 5;
    position: absolute;
    top: 0px;
    left: -10px;
    font-size: 0px;
	line-height: 0px;
	width: 38px;
	height: 38px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}
.manuf__teplota.--cold {
	background-image: url(../../uploads/icons/icon-calc-balcony-type-cold.png);
}
.manuf__teplota.--warm {
	background-image: url(../../uploads/icons/icon-calc-balcony-type-warm.png);
}
.manuf__label {
    z-index: 5;
    position: absolute;
    top: 0px;
    right: -10px;
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    border-radius: 4px;
    padding: 4.5px 7px;
}
.manuf__label.--green {
    background-color: #5fb113;
    box-shadow: 0 6px 10px rgba(68, 128, 12, 0.35);
}
.manuf__label.--blue {
    background-color: var(--primary-color);
    box-shadow: 0 6px 10px rgba(var(--primary-color-rgb), 0.35);
}
.manuf__label.--pink {
    background-color: #c042aa;
    box-shadow: 0 6px 10px rgba(150, 49, 132, 0.35);
}
.manuf__label.--aqua {
    background-color: #42b6c0;
    box-shadow: 0 6px 10px rgba(66, 182, 192, 0.35);
}
.manuf__label.--red {
    background-color: #cc003e;
    box-shadow: 0 6px 10px rgba(204, 0, 62, 0.35);
}
.manuf__data {
    display: flex;
    align-items: center;
}
.manuf__link {
    font-size: 24px;
    font-weight: 700;
    width: 100%;
}
.manuf__link a {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.manuf__link a:hover {
    color: var(--primary-color-active);
    border-color: transparent;
}
.manuf__price {
    margin-left: 10px;
    font-size: 20px;
    text-align: right;
    font-weight: 500;
	overflow-wrap: normal;
	word-wrap: normal;
	word-break: keep-all;
	line-break: auto;
	-webkit-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	white-space: nowrap;	
}
.manuf__price sup {
    font-size: 11px;
}
.manuf__price .r {
    margin-left: 5px;
}
.manuf__desc {
	font-size: 15px;
	line-height: 24px;
    margin-top: 12px;
    margin-bottom: 12px;
}
.manuf__text {
    margin-bottom: 18px;
}
.manuf__text:last-child {
	margin-bottom: 0px;
}
.manuf__text li {
    margin-bottom: 5px;
}
.manuf__text li:last-child {
    margin-bottom: 0px;
}
@media screen and (min-width: 1576px) {
	.manuf__list {
		gap: 40px;
	}
}
@media screen and (min-width: 1221px) and (max-width: 1575px) {
	.manuf__btn {
		width: 60%;
	}
}
@media screen and (max-width: 1220px) {
    .manuf__list {
        grid: none/repeat(2, 1fr);
    }
}
@media screen and (max-width: 992px) {
    .manuf {
        padding-top: 40px;
        padding-bottom: 45px;
    }
    .manuf__title {
        margin-bottom: 35px;
    }
	.manuf__btn {
		width: 70%;
	}
}
@media screen and (max-width: 767px) {
    .manuf__list {
        grid: none/1fr;
    }
	.manuf__btn {
		width: 80%;
	}
	.manuf__img {
		height: auto;
	}
	.manuf__img img {
		width: auto;
		height: auto;
		image-rendering: -moz-crisp-edges;
		image-rendering: -o-crisp-edges;
		image-rendering: -webkit-optimize-contrast;
		image-rendering: crisp-edges;
		-ms-interpolation-mode: nearest-neighbor;
	}
}
@media screen and (max-width: 480px) {
	.manuf__list {
		gap: 25px;
	}
	.manuf__item {
		padding: 20px 25px 25px 25px;
	}
	.manuf__teplota {
		left: -5px;
	}
	.manuf__label {
		right: -5px;
	}
}