#jsrq-quote-modal {
	position: fixed;
	inset: 0;
	z-index: 999999;
}

.jsrq-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

.jsrq-modal-content {
	position: relative;
	z-index: 2;
	width: 90%;
	max-width: 600px;
	max-height: 90vh;
	overflow-y: auto;
	margin: 5vh auto;
	padding: 30px;
	background: #fff;
	border-radius: 8px;
	box-sizing: border-box;
}

.jsrq-close {
	position: absolute;
	top: 10px;
	right: 15px;
	border: 0;
	background: none;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
}

.jsrq-product {
	display: flex;
	gap: 15px;
	align-items: center;
	margin-bottom: 20px;
}

.jsrq-product-image img {
	max-width: 80px;
	height: auto;
}

.jsrq-field {
	margin-bottom: 15px;
}

.jsrq-field label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
}

.jsrq-field input,
.jsrq-field textarea {
	width: 100%;
	box-sizing: border-box;
}

.jsrq-submit {
	margin-bottom: 0;
}

.jsrq-response {
	margin-bottom: 15px;
	padding: 10px;
	display: none;
}

.jsrq-response.jsrq-success {
	display: block;
}

.jsrq-response.jsrq-error {
	display: block;
}