/* Responsive fixes for long city/zone labels */
.form-group, .form-group .col-lg-9, .form-group .col-md-9, .form-group .col-sm-12 {
	min-width: 0;
}

.form-group label[for="field-id_state"],
.form-group label[for="field-city"] {
	white-space: normal;
	word-break: break-word;
}

.custom-city-select,
#field-id_state {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
}

@media (max-width: 576px) {
	.form-group .col-lg-9, .form-group .col-md-9, .form-group .col-sm-12 {
		width: 100%;
	}
}

