

.mapTextarea {
	height: 50px;
    box-sizing: border-box;
    width: 93%;
    max-width: 100%;
    min-width: 50%;
    padding: 4px 10px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 0 #ddd;
    resize: none;
    margin-bottom: 3px;
    display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.26);
}

.locationLive {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #32cd32;
	display: block;
	margin-left: 5px;
}

.locationContainer {
	display: flex;
    flex-direction: column;
    width: calc(100% - 50px);
    box-sizing: border-box;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 2px;
}

.locationTitle {
	font-size: 12px;
	color: #999;
}

.address {
	font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-align: left;
    margin: 3px 0px;
}

.searchIcon {
	width: 18px;
}