/* messages.html.twig */
.mx_locator_item {
	box-sizing: content-box;
	border: 1px #DDD solid;
	width: 450px;
	margin-bottom: 20px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.mx_locator_name,
.mx_locator_distance {
	box-sizing: border-box;
	background: #f9f9f9;
	display: block;
	padding: 6px 10px;
	border-bottom: 2px #DDD solid;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.mx_locator_name {
	font-weight: bold;
	float: left;
	width: 300px;
	border-radius: 5px 0px 0px 0px;
	-moz-border-radius: 5px 0px 0px 0px;
	-webkit-border-radius: 5px 0px 0px 0px;
}

.mx_locator_name img {
	float: right;
	margin-left: 5px;
}

.mx_locator_distance {
	float: right;
	width: 150px;
	text-align: right;
	border-radius: 0px 5px 0px 0px;
	-moz-border-radius: 0px 5px 0px 0px;
	-webkit-border-radius: 0px 5px 0px 0px;
}

.mx_locator_data {
	clear: both;
	padding: 10px;
}

/* write.html.twig */
form.mx_locator .mx_locator_row {
	display: table;
	width: 100%;
	clear: both;
	margin-bottom: 3px;
}

form.mx_locator label {
	width: 150px;
	float: left;
}

form.mx_locator input[type=submit] {
	margin-left: 150px;
}

form.mx_locator .mx_locator_input {
	float: left;
	display: table;
}

.mx_captcha {
	width: 50px;
}