.wrapper-select{
    width: 100%;
	min-height: 60px;
	text-align: center;
}
.select-css { 
    font-size: 16px; 
    font-family: sans-serif; 
    font-weight: 600;
    color: #444;
    margin: 5px; 
    padding: 10px;
    border: 2px solid rgb(180, 27, 7);
    border-radius: 5px;
    background-color: #fff; 
}  
.select-css:focus { 
    border-color: rgb(114, 14, 0); 
    box-shadow: 0 0 1px 1px rgb(114, 14, 0);
    color: #222;
    outline: none; 
} 
.select-css option { 
    font-size: 15px;
    font-family: sans-serif;
    margin: 15px;
    padding: 15px;
    background-color: transparent;
    border: 0;
    padding-right: 15px;
}
.info{
    font-size: 18px; 
    font-family: sans-serif; 
    margin: 5px;
    line-height: 2;
}
.button {
	display: none;
	margin-top: 15px;
    margin-bottom: 15px;
	width: 250px;
    height: 45px;
    text-align: center;
	border-radius: 5px;
	background-color: #ffffff;
    cursor: pointer;
    border: 2px solid rgb(180, 27, 7);
} 

.button span {
    line-height: 45px;
	color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 15px;
	text-transform: uppercase;
}
#map{
    height: 500px;
    width: 700px;
    z-index: 1;
}

.content{
    height: 100%;
    width: 100%;
    font-size: 18px; 
    font-family: sans-serif;
    text-align: left;
	line-height: 1.5;
	overflow: auto;
}


.overlay {
	position: absolute;
	width: 100%;
	height: 150vh;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .5);
	display: none;
}

.popup {
	position: absolute;
	width: 40%;
	height: 50%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	padding: 40px;
	box-sizing: border-box;
	background-color: #ffffff;
    color: rgb(0, 0, 0);
    border: 1px solid rgb(59, 153, 252);
    z-index: 1000;
}

.close-popup {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 23px;
	height: 23px;
	cursor: pointer;
}

.close-popup:before {
	content: '';
	background-color: rgb(0, 0, 0);
	position: absolute;
	height: 1px;
	width: 31px;
	top: 11px;
	left: -4px;
	transform: rotate(-45deg);
}

.close-popup:after {
	content: '';
	background-color: rgb(0, 0, 0);
	position: absolute;
	height: 1px;
	width: 31px;
	top: 11px;
	transform: rotate(45deg);
	left: -4px;
}

@media screen and (max-width: 768px) {

	.popup {
		width: 100%;
		height: 100vh;
		font-size: 15px;
	}
}