h1 {
    font-weight: 700;
	padding: 0 10px;
}
.products-container {
    display: grid;
    grid-template-columns: 300px 1fr;
}
.products-query {
	display: flex;
	flex-direction: column;
    margin-left: 20px;
}
.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: 0;
    max-height: 460px;
    border: 1px #dddddd solid;
    margin-bottom: 30px;
    border-radius: 10px;
}
.pq-item__thumb {
    display: flex;
    max-width: 330px;
/*    max-width: 425px;*/
    width: 100%;
	justify-content: flex-start;
	align-items: center;
    border-radius: 10px;
    overflow: hidden;
}
.pq-item__thumb > img {
/*    max-width: 395px;*/
    max-width: 300px;
    width: 100%;
    height: 100%;
    border-radius: 10px 0px 0px 10px;
    object-fit: cover;
}
.pq-item__content {
	display: flex;
	width: 100%;
	flex-direction: column;
    padding: 30px 0;
}
.pq-item__title {
    color: #212121;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.pq-item__title > a {
    color: #212121;
}
.pq-item__container {
	display: flex;
    align-items: flex-start;	
    flex-wrap: wrap;
    flex-direction: column;
}
.pq-item__price {
    width: 100%;
    display: flex;
    margin-bottom: 15px;
}
.model_price {
	display: flex;
	flex-direction: column;
    margin-right: 25px;
}
.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__params {
    margin-bottom: 30px;
    padding-left: 0;
    margin-left: 0;
    list-style: none;
}
.pq-item__params li {
    font-size: 14px;
    font-weight: 500;
    color: var(--e-global-color-text);
    transition: color 0.3s;
    border-bottom: 1px #DDD solid;
    padding: 3px 0;
    list-style: none;
    display: flex;
    align-items: center;
}
.pq-item__params .spp-icon {
    position: relative;
    width: 10px;
    height: 10px;
    display: flex;
    margin-right: 5px;
}
.pq-item__params .spp-icon svg {
    fill: var(--e-global-color-secondary);
    transition: fill 0.3s;
}
.pq-item__buttons {
	display: flex;
    flex: none;
    grid-gap: 15px;
}
.pq-item__buttons--btn {
    background-color: var(--e-global-color-secondary);
    font-weight: 500;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: var(--e-global-color-secondary);
    border-radius: 0 0 0 0;
    padding: 10px 25px;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all .25s ease;
    border-radius: 10px;
}

.pq-item__buttons--btn .elementor-button-icon {
    margin-right: 10px;
}
.pq-item__buttons--btn .elementor-button-icon svg {
    fill: #fff;
}
.pq-item__buttons--btn:hover {
    background-color: transparent;
    color: var(--e-global-color-secondary);
}
.pq-item__buttons--btn:hover .elementor-button-icon svg {
    fill: var(--e-global-color-secondary);
}
.pq-item__buttons--btn.form-btn {
    background-color: #4CD352;
    border-color: #4CD352;
}
.pq-item__buttons--btn.form-btn .elementor-button-icon svg {
    transform: rotate(-90deg);
}
.pq-item__buttons--btn.form-btn:hover {
    background-color: transparent;
    color: #4CD352;
}
.pq-item__buttons--btn.form-btn:hover .elementor-button-icon svg {
    fill: #4CD352;
}
.products-not-found {
    padding: 80px 0;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

@media screen and (max-width: 1100px) and (min-width: 993px) {
    .products-query__item.pq-item {
        max-height: 100%;
    }
    .pq-item__content {
        padding: 10px 0;
        padding-right: 20px;
    }
    .pq-item__thumb {
        max-width: 320px;
    }
    .pq-item__buttons {
        flex-direction: column;
        width: 100%;
        grid-gap: 10px;
    }
}

@media screen and (max-width: 992px) {
    .products-query {
        margin-left: 0;
    }
	.products-container {
		grid-template-columns: 1fr;
	}
    .pq-item__buttons--btn {
        padding: 10px 15px;
    }
}
@media screen and (max-width: 768px) {
    .products-query__item.pq-item {
        max-height: 100%;
    }
    .pq-item__content {
        padding: 10px 0;
        padding-right: 20px;
    }
    .pq-item__thumb {
        max-width: 320px;
    }
    .pq-item__params {
        margin-bottom: 20px;
    }
    .pq-item__buttons {
        flex-direction: column;
        width: 100%;
        grid-gap: 10px;
    }
}
@media screen and (max-width: 700px) {
	.pq-item__container {
		flex-direction: column;
	}
    .pq-item__thumb {
        padding-right: 20px;
    }
	.pq-item__thumb > img {
/*		max-width: 250px;*/
	}
	.pq-item__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: 651px) {
	.products-query__item.pq-item {
		flex-wrap: wrap;
		padding: 20px 0;
        padding-top: 0;
	}
    .pq-item__thumb {
        max-width: 100%;
        margin-right: 0;
        max-height: 450px;
        border-radius: 10px 10px 0px 0px;
    }
	.pq-item__thumb > img {
		max-width: 100%;
        border-radius: 10px 10px 0px 0px;
	}
    .pq-item__price {
        justify-content: flex-start;
    }
	.pq-item__content {
		padding: 20px 15px;
		padding-bottom: 0;
	}
	.pq-item__thumb {
		margin: 0 auto;
	}
	.pq-item__buttons--btn {
		width: 100%;
}