.price-alert {
	margin: 32px 0 10px;
	padding: 24px;
	border: 1px solid #d9e4ea;
	border-radius: 8px;
	background: #f8fbfd;
	scroll-margin-top: 20px;
}

.price-alert__heading {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 20px;
	color: #1aa1e1;
}

.price-alert__heading svg {
	flex: 0 0 auto;
}

.price-alert__heading h2 {
	margin: 0 0 4px;
	font-size: 20px;
	font-weight: 600;
	color: #333;
}

.price-alert__heading p,
.price-alert__notice {
	margin: 0;
	font-size: 14px;
	color: #666;
}

.price-alert__form {
	display: grid;
	grid-template-columns: minmax(180px, 1.25fr) minmax(180px, 1.15fr) minmax(140px, .75fr) minmax(120px, .55fr) auto;
	gap: 14px;
	align-items: end;
}

.price-alert__field label {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 600;
	color: #444;
}

.price-alert__field input,
.price-alert__field select {
	width: 100%;
	height: 42px;
	padding: 8px 10px;
	border: 1px solid #bfcbd2;
	border-radius: 4px;
	background: #fff;
	color: #333;
	font-size: 15px;
}

.price-alert__field input:focus,
.price-alert__field select:focus {
	border-color: #1aa1e1;
	outline: 2px solid rgba(26, 161, 225, .18);
	outline-offset: 1px;
}

.price-alert__price-input {
	display: flex;
}

.price-alert__price-input span {
	display: flex;
	align-items: center;
	padding: 0 12px;
	border: 1px solid #bfcbd2;
	border-right: 0;
	border-radius: 4px 0 0 4px;
	background: #edf2f5;
}

.price-alert__price-input input {
	border-radius: 0 4px 4px 0;
}

.price-alert__action button {
	height: 42px;
	padding: 0 18px;
	border: 1px solid #178fc8;
	border-radius: 4px;
	background: #1aa1e1;
	color: #fff;
	font-weight: 600;
	white-space: nowrap;
	cursor: pointer;
}

.price-alert__action button:hover,
.price-alert__action button:focus-visible {
	background: #1580b3;
}

.price-alert__action button:disabled {
	opacity: .65;
	cursor: wait;
}

.price-alert__response {
	grid-column: 1 / -1;
	margin: 2px 0 0;
	padding: 10px 12px;
	border-radius: 4px;
	font-size: 14px;
}

.price-alert__response.response-waiting {
	background: #eef6fa;
	color: #225475;
}

.price-alert__response.response-success {
	background: #e8f7ed;
	color: #176b32;
}

.price-alert__response.response-error {
	background: #fdecec;
	color: #9c2525;
}

.price-alert__notice {
	margin-top: 14px;
}

.price-alert__notice sup {
	color: #f16022;
}

.price-alert__honeypot {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

body#dark .price-alert {
	border-color: #46525a;
	background: #252b2f;
}

body#dark .price-alert__heading h2,
body#dark .price-alert__field label {
	color: #f1f1f1;
}

body#dark .price-alert__heading p,
body#dark .price-alert__notice {
	color: #c5c5c5;
}

@media (max-width: 1199px) {
	.price-alert__form {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.price-alert__action button {
		width: 100%;
	}
}

@media (max-width: 575px) {
	.price-alert {
		padding: 18px;
	}

	.price-alert__form {
		grid-template-columns: 1fr;
	}
}
