#depo-modal #map {
	width:100%;
	height:100px
}

.depo-wrapper {
    display: block;
}

/* The Modal (background) */
.depo-modal {
	display: none;
	position: fixed;
	z-index: 99998;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.6);
}

.depo-modal-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

.pac-container {
	z-index: 99999;
}

/* Modal Content/Box */
.depo-modal-content {
	background-color: #fefefe;
	margin: auto;
	padding: 5px 20px 20px 20px;
	width: 80%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* The Close Button */
.depo-modal-close {
	color: #aaa;
	font-size: 28px;
	font-weight: bold;
	position: absolute;
	top: 0px;
	right: 0px;
}

.depo-modal-close:hover,
.depo-modal-close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

.mc-top {
	position: relative;
}

.mc-container {
	padding: 10px 0px;
}

.mc-item-left {
	float: left;
	width: 35%;
	padding: 10px 5px 10px 0px;
}

.mc-item-right {
	float: right;
	width: 65%;
	padding: 10px 0px 10px 5px;
}

.mc-places {
	overflow: auto;
	/*height: 452px;*/
	height: 52px;
	margin-top: 10px;
	border: 1px solid #eee;
	background: white;
}

.mc-places-wrapper {
	position: relative;
}

.mc-places-overlay {
	display: none;
	position: absolute;
	background: rgba(0,0,0,0.7);
	width: 100%;
	height: 100%;
	box-shadow: 0px 0px 4px black;
}

.mc-bottom {
	text-align: right;
}

.mc-done {
	font-size: 16px;
	display: inline-block;
	vertical-align: middle;
}

.mcb-selected {
	display: inline-block;
	margin-right: 15px;
	vertical-align: middle;
	font-size: 16px;
	border: 1px solid green;
	padding: 8px 12px 7px 12px;
	min-width: 400px;
	text-align: left;
}

.mcp-place {
	padding: 8px 10px;
	border-bottom: 1px solid #eee;
	display: block;
}

.mcp-place:nth-child(2n) {
	background-color: #f3f3f3;
}

.mcp-place.alert-success {
	background-color: #41b44a;
}

.mcp-place.alert-success:hover {
	color: white;
}

.mcp-place:last-of-type {
	border-bottom: 0;
}

.mcpp-active {
	background: #00e64d;
	color: black;
}

.place-detail {
	display: none;
}

#depo-title {
	font-size: 18px;
	padding: 10px 5px;
	border-bottom: 1px solid #eee;
}

#pac-input {
	width: 100%;
	padding: 10px;
	border: 1px solid #eee;
	font-size: 16px;
}

#pac-input:focus {
	box-shadow: 0px 0px 4px #46a74e;
}

@media (max-width: 991px) {
	.depo-modal-content {
		width: 95%;
	}

	.mc-item-left {
		width: 50%;
	}

	.mc-item-right {
		width: 50%;
	}

	.mcb-selected {
		min-width: unset;
	}
}

@media (max-width: 768px) {
	.mc-item-left {
		width: 100%;
		float: none;
		padding: 10px 0px 10px 0px;
	}

	.mc-item-right {
		width: 100%;
		float: none;
		padding: 10px 0px 10px 0px;
	}

	#depo-modal #map {
		min-height: 250px;
	}

	.mc-places {
		display: none;
	}

	.depo-modal-content {
		position: static;
		transform: none;
	}

	.mc-bottom {
		text-align: center;
	}

	.mcb-selected {
		margin: 0;
		text-align: center;
		width: 100%;
	}

	.mc-done {
		margin-top: 20px;
	}


}