h1 {
    font-weight: 700;
	padding: 0 10px;
}
.products-container {
    display: grid;
    grid-template-columns: 300px 1fr;
}
.products-query {
	display: flex;
	flex-direction: column;
}
.products-query.loading {
	opacity: 0.5;
}
.products-query__found {
    padding: 5px 15px;
    font-weight: 500;
    border-bottom: 1px #f2f2f2 solid
}
.products-query__item.pq-item {
	display: flex;
	width: 100%;
	padding: 30px 0;
	padding-top: 20px;
}
.pq-item__thumb {
    display: flex;
    max-width: 330px;
    width: 100%;
	justify-content: flex-start;
	align-items: center;
}
.pq-item__thumb > img {
    max-width: 300px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pq-item__content {
	display: flex;
	width: 100%;
	flex-direction: column;
}
.pq-item__title {
    color: #212121;
    font-family: "Montserrat", Sans-serif;
    font-size: 35px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.pq-item__title > a {
    color: #212121;
}
.pq-item__container {
	display: flex;
	width: 100%;
    justify-content: space-between;
    align-items: flex-start;	
}
.pq-item__params {
    margin-bottom: 30px;
    padding-right: 20px;
    margin-left: 10px;
}
.pq-item__buttons {
	display: flex;
    flex-direction: column;
    flex: none;
}
.pq-item__buttons--btn {
    font-family: "Montserrat", Sans-serif;
    font-weight: 500;
    color: #EF4040;
    background-color: #FFFFFF;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #EF4040;
    border-radius: 20px 20px 20px 20px;
    padding: 10px;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
    font-size: 14px;
    width: 100%;
}
.pq-item__buttons--price {
	font-size: 30px;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
}
.model_price {
	display: flex;
	flex-direction: column;
	margin-bottom: 11px;
}
.model_price__label {
	font-weight: 500;
	font-size: 13px;
	color: #4C4F57;
	line-height: normal;
}
.model_price__value {
	line-height: normal;
	font-weight: bold;
	font-size: 24px;
	color: #4C4F57;
}
.model_price__value > span {
	font-weight: 500;
}
.pq-item__buttons--btn.more-btn {
	/*color: #212121;
	border-color: #212121;*/
	/*new rules*/
	background: #109AC8;
    border-radius: 6px;
    border: none;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #FFF;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
	width: min-content;
    padding: 10px 30px;
}
.pq-item__buttons--btn:hover {
	/*color: #FFFFFF;
    background-color: #0A9AC8;
    border-color: #02010100;*/
	/*new rules*/
	color: #000;
    background-color: #ffffff;
    outline: 2px solid #109ac8;
}
span.pq-item__buttons--btn.form-btn {
    color: #202020;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 6px;
    background: #B4CD1E;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border: none;
}
.products-not-found {
    padding: 80px 0;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 991px) {
	.products-container {
		grid-template-columns: 1fr;
	}
}
@media screen and (max-width: 700px) {
	.pq-item__container {
		flex-direction: column;
	}
	.pq-item__thumb > img {
		max-width: 250px;
	}
	.pq-item__buttons {
		width: 100%;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.pq-item__buttons--btn {
		max-width: 48%;
	}
	.pq-item__buttons--price {
		width: 100%;
		display: flex;
		justify-content: space-around;
	}
	.model_price__value {
		font-size: 20px;
	}
/*
	.pq-item__buttons--btn.more-btn {
		margin-bottom: 10px;
	}
*/
	
}
@media screen and (max-width: 550px) {
	.products-query__item.pq-item {
		flex-wrap: wrap;
        border-top: 1px #e9e9e9 solid;
		padding-top: 30px;
	}
	.products-query__item.pq-item:first-child {
		border: 0;
	}
	.pq-item__thumb > img {
		max-width: 100%;
	}
	.pq-item__content {
		padding: 20px 15px;
		padding-bottom: 0;
	}
	.pq-item__thumb {
		margin: 0 auto;
	}
	.pq-item__buttons--btn {
		width: 100%;
	}}
	.pq-item__params li::marker {
    color: #109ac8 !important;
}
	.pq-item__params li {
    border-bottom: 1px #DDD solid;
	margin-bottom: 7px;
}
