.locales {
	display: flex;
}

.locale img {
	height: 2em;
	width: 3em;
	margin: 0 1em;
	padding: 0.2em;
}

.locale.nonexistent img {
	border: 0.3em solid grey;
	margin: -0.3em 0.7em;
}

.locale .active {
	border: 0.1em solid red;
	margin: -0.1em 0.9em;
}

.locale.nonexistent img.active {
	border: 0.3em solid pink;
	margin: -0.3em 0.7em;
}

.comment {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	margin: 1em;
	border: 0.1em dashed;
	border-radius: 1em;
	border-color: #f5debf;
}

.comment:hover {
	border-color: #d4b387;
}

.comment .avatar {
	width: 5em;
	height: 5em;
	margin: 0 1em 0 0;
	border-radius: 1em;
}

.comment .reply {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	margin: 1em;
}

.comment .reply .avatar {
	width: 2em;
	height: 2em;
	margin: 0 0.5em 0 0;
	border-radius: 0.5em;
}

.comment.not-approved {
	filter: opacity(50%);
}

.comment.deleted {
	filter: opacity(50%) blur(0.15em);
}

.comment .comment-header {
	font-size: .7em;
}

.comment .comment-header .ip, .comment .comment-header .agent {
	cursor: default;
}

.comment .awaiting-approval {
	font-size: .8em;
	font-weight: 700;
	color: #773109;
	margin: 0 1em;
}

.comment pre {
	font-family: 'Ubuntu';
	font-size: .85em;
  margin: 0.5em 0 0 1px;
  min-width: 100%;
  max-width: 100%;
  min-height: 2em;
  max-height: 10em;
  white-space: pre-wrap;
	overflow: auto;
}

.comment .comment-body {
	width: 100%
}

.comment-form {
	padding: 0 5em;
}

.comment-form textarea, .comment-edit-form textarea {
	width: 100%;
	height: 10em;
	border: 0.1em solid #fac9b2;
	border-radius: 0.5em;
	padding: 0.5em;
	margin-top: 1em;
}

.comment-form input[type="checkbox"].subscribe {
	margin: 0 0 0 1em;
	height: 2em;
	width: 2em;
	vertical-align: middle;
}

.comment-form label {
	vertical-align: middle;
	margin-bottom: 1em;
}

.reply-form {
	padding: 1em 3em;
	display: flex;
}

.reply-form textarea {
	width: 50%;
	height: 3em;
	border: 0.1em solid #fac9b2;
	border-radius: 0.5em;
	padding: 0.5em;
}

a.comment-edit-button {
	color: #e73609;
	text-decoration: none;
	position: relative;
	display: block;
	height: 0;
	width: 0;
	font-size: 2em;
	right: 1em;
	bottom: 0.25em;
}

a.comment-edit-button:visited {
	color: #e73609;
}

a.comment-edit-button:hover {
	color: #ac0808;
}

.comment-edit-form {
	padding: 0;
	width: 80%;
}

.comment-edit-form textarea {
	min-height: 4em;
	max-height: 10em;
}
