.translator {
	display: grid;
	gap: 16px;
	margin: 1.1rem 0 0
}

.panel {
	border: 1px solid #e0d4bd;
	background: #f7f0df;
	border-radius: 6px;
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 280px
}

.panel-header,.panel-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap
}

.panel-label {
	text-transform: uppercase;
	letter-spacing: .16em;
	font-size: .75rem;
	color: #6b5a45
}

.panel-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap
}

textarea {
	width: 100%;
	min-height: 190px;
	border: 1px solid #e0d4bd;
	background: #f9f3e6;
	color: #2b2418;
	padding: 8px 10px;
	border-radius: 4px;
	font-family: inherit;
	font-size: 1rem;
	line-height: 1.4;
	resize: vertical
}

textarea[readonly] {
	background: #f3ead5
}

select,button {
	font-family: inherit;
	font-size: .9rem;
	color: #2b2418;
	background: #efe4cc;
	border: 1px solid #d8cab1;
	padding: 6px 8px;
	border-radius: 4px
}

button {
	cursor: pointer
}

button:hover {
	border-color: #c1b095
}

button:disabled {
	opacity: .6;
	cursor: not-allowed
}

button.ghost {
	background: 0 0
}

#status[data-kind=error] {
	color: #7a352f
}

#status[data-kind=ok] {
	color: #5a3f1f
}

#status[data-kind=busy] {
	color: #6b5a45
}

@media (min-width:720px) {
	.translator {
		grid-template-columns: 1fr 1fr
	}
}