section .flex {
	column-gap: 1rem;
	align-items: flex-end;
}
section .flex .input-wrapper.select{
	width: calc(100% - 13rem);
}
section .flex .button{
	width: 12rem;
	height: 5rem;
}
section .file-options {
	display: none !important;
}
section .file-options.show {
	display: flex !important;
}
section #fields, section #output-wrapper, section #output-title {
	display: none;
}
section #fields {
	margin-top: 2rem;
}
section .field {
	padding: 2rem;
	border: 1px solid var(--color-black);
	border-radius: 0.5rem;
	display: flex;
	justify-content: space-between;
	column-gap: 2rem;
	flex-wrap: wrap;
}
section .field + .field {
	margin-top: 1.5rem;
}
section .field-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
section .field-header .field-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 1rem;
}
section .field-header .field-actions .button {
	width: 6rem;
	padding: 1rem 1.5rem 1rem;
	border-radius: 0.5rem;
	font-size: 1.4rem;
}
section .field-header .field-actions .button.delete {
	width: 8rem;
}
section .field .input-wrapper.text {
	width: calc(50% - 1rem);
}
section .input-wrapper.textarea textarea {
	min-height: 3rem;
}