.quote-form-container {
	width: 100%;
	max-width: 50rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.swappable {
	width: 100%;
	color: var(--body-text);
	/* display: flex; */
	flex-direction: column;
	gap: 1.5rem;
	display: none;
}

.quote-dropdown {
	display: flex;
	flex-direction: column;
	color: var(--body-text);
	width: 100%;
	max-width: 50rem;
	margin-bottom: 2rem;
}

.quote-dropdown__label {
	display: inherit;
	color: inherit;
	margin-bottom: 0.5rem;
}

.quote-form__group {
	display: flex;
	flex-direction: row;
	gap: 1rem;
}

.quote-form__label {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.quote__input {
	width: 100%;
	padding: 0.5rem;
	border: 2px solid #ddd;
	border-radius: 0.375rem;
	background: transparent;
	font-size: inherit;
	color: inherit;
	resize: none;
}

.quote-dropdown__select {
	padding: 0.5rem;
	border: 2px solid #ddd;
	color: inherit;
	border-radius: 0.375rem;
	background: transparent;
	font-size: inherit;
}

.quote__input::placeholder {
	opacity: 0.6;
}

.show {
	display: flex;
}

.hide {
	display: none;
}

@media (max-width: 810px) {
	.quote-form__group {
		flex-direction: column;
	}
}
