.saargo-pscv {
	width: 100%;
}

.saargo-pscv__form {
	display: flex;
	align-items: center;
	gap: 24px;
	width: 100%;
	margin: 0 0 34px;
	padding: 18px;
	border: 2px solid #d7dde5;
	border-radius: 6px;
	background: #fff;
	box-sizing: border-box;
}

.saargo-pscv__controls,
.saargo-pscv__actions {
	display: flex;
	align-items: center;
	gap: 18px;
	min-width: 0;
	box-sizing: border-box;
}

.saargo-pscv__controls {
	flex: 0 1 60%;
	max-width: 60%;
}

.saargo-pscv__actions {
	flex: 0 1 40%;
	max-width: 40%;
	justify-content: flex-end;
}

.saargo-pscv__clear {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	white-space: nowrap;
	color: #0073aa;
	font-size: 16px;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.saargo-pscv__clear:hover,
.saargo-pscv__clear:focus {
	color: #005f8d;
	text-decoration: none;
}

.saargo-pscv__field {
	position: relative;
	min-width: 0;
}

.saargo-pscv__field--search {
	flex: 1 1 auto;
}

.saargo-pscv__field--select {
	flex: 0 0 280px;
}

.saargo-pscv__field--search .saargo-pscv__input {
	padding-left: 48px;
}

.saargo-pscv__icon {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #4a5568;
	pointer-events: none;
}

.saargo-pscv__input,
.saargo-pscv__select {
	width: 100%;
	height: 54px;
	border: 2px solid #333c48;
	border-radius: 4px;
	background-color: #fff;
	color: #252b33;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 500;
	outline: none;
	box-shadow: none;
	box-sizing: border-box;
}

.saargo-pscv__input {
	padding: 0 16px;
}

.saargo-pscv__select {
	padding: 0 46px 0 16px;
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, #252b33 50%), linear-gradient(135deg, #252b33 50%, transparent 50%);
	background-position: calc(100% - 24px) 23px, calc(100% - 16px) 23px;
	background-size: 8px 8px, 8px 8px;
	background-repeat: no-repeat;
}

.saargo-pscv__input:focus,
.saargo-pscv__select:focus,
.saargo-pscv__button:focus,
.saargo-pscv__clear:focus {
	outline: 3px solid rgba(0, 133, 186, 0.22);
	outline-offset: 2px;
}

.saargo-pscv__button {
	height: 54px;
	min-width: 150px;
	padding: 0 26px;
	border: 2px solid #0073aa;
	border-radius: 4px;
	background: #fff;
	color: #0073aa;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.saargo-pscv__button:hover,
.saargo-pscv__button:active {
	background: #0073aa;
	color: #fff;
}

.saargo-pscv.is-loading .saargo-pscv__button {
	cursor: wait;
	opacity: 0.72;
}

.saargo-pscv__status {
	min-height: 1px;
	margin: -20px 0 18px;
	font-size: 15px;
	color: #4a5568;
}

.saargo-pscv__message {
	padding: 18px 20px;
	border: 1px solid #d7dde5;
	border-radius: 6px;
	background: #fff;
	color: #3c4655;
}

@media (max-width: 1180px) {
	.saargo-pscv__form {
		gap: 18px;
	}

	.saargo-pscv__controls {
		flex-basis: 65%;
		max-width: 65%;
	}

	.saargo-pscv__actions {
		flex-basis: 35%;
		max-width: 35%;
	}

	.saargo-pscv__field--select {
		flex-basis: 240px;
	}
}

@media (max-width: 980px) {
	.saargo-pscv__form {
		flex-direction: column;
		align-items: stretch;
	}

	.saargo-pscv__controls,
	.saargo-pscv__actions {
		flex: 1 1 100%;
		max-width: 100%;
		width: 100%;
	}

	.saargo-pscv__actions {
		justify-content: flex-end;
	}
}

@media (max-width: 640px) {
	.saargo-pscv__form {
		gap: 14px;
		padding: 14px;
	}

	.saargo-pscv__controls {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
	}

	.saargo-pscv__field--search,
	.saargo-pscv__field--select {
		flex: 1 1 auto;
		width: 100%;
	}

	.saargo-pscv__actions {
		gap: 14px;
	}

	.saargo-pscv__clear {
		min-height: 44px;
		font-size: 15px;
	}

	.saargo-pscv__button {
		min-width: 140px;
	}
}

@media (max-width: 430px) {
	.saargo-pscv__actions {
		flex-direction: column-reverse;
		align-items: stretch;
	}

	.saargo-pscv__button,
	.saargo-pscv__clear {
		width: 100%;
	}
}
