#city-selections-popup {
	background-color: rgba(0,0,0, 0.7);
	cursor: pointer;
    display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
    top: 0;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    -webkit-overflow-scrolling: touch;
    z-index: 999998;
}
#city-selections-popup-closebtn {
    position: absolute;
    top: 0;
    right: 35px;
    font-size: 60px;
    cursor: pointer;
    color: #181818;
}
#city-selections-popup-content {
	background-clip: padding-box;
    position: relative;
    top: 20%;
	width: 1083px;
    text-align: center;
    margin-top: 30px;
    margin: auto;
    background-color: #fff;
	padding: 50px 50px 25px 50px;
}
#city-selections-popup-content h3 {
	color: #181818 !important;
    font-size: 1.8em;
    font-weight: bold;
	margin-bottom: 25px;
}
#city-selections-popup-content .fa-map-marker {
    font-size: 28px;
    margin-right: 5px;
	color: rgba(86, 185 ,71);
	display: none;
}
#city-selections-popup-msg-1 {
    text-align: center;
    display: block;
}
#city-selections-popup-location {
    font-weight: bold;
}
#city-selection-items {
    /* float: left; */
    /* width: 100%; */
    /* margin: 30px 0; */
    /* clear: both; */
    margin: 40px 0 25px 0;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-gap: 15px;
}
.popup-city-item {
    border: 1px solid;
    padding: 20px;
    border-radius: 5px;
    height: 52px;
    border-radius: 6px;
    cursor: pointer;
    padding: 15px;
    border: solid 1px #000;
    font-size: 14px;
    text-align: center;
}
#cities-popup-selected-url {
    color: #fff;
    border-radius: 6px;
    padding: 15px 30px 15px 30px;
    font-weight: 600;
    border: 2px solid #56b947;
    line-height: 100%;
    background: #56b947;
    text-transform: uppercase;
}
.active-selected-popup-city{
    background: #000;
    color: #fff;
}
#city-selections-popup-msg-2 {
    display: block;
    width: 100%;
    text-align: center;		
	font-weight: bold;
	margin-bottom: 25px;
}
#city-selections-popup-submit{
    display: block;
    padding-bottom: 15px
}
@media (max-width: 1099px) {
	#city-selections-popup-content {
		width: 600px;
	}
	#city-selection-items {
    	grid-template-columns: repeat(3,1fr);
	}
}
@media (max-width: 650px) {
	#city-selections-popup-content {
		margin: 10px;
		overflow-x: hidden;
    	overflow-y: auto;
		padding: 50px 30px 20px;
		top: 0;
		width: auto;
		height: 100%;
	}	
	#city-selections-popup-closebtn {
		right: 20px;
		font-size: 50px;
	}
	#city-selection-items {
		grid-template-columns: repeat(2,1fr);
		margin-top: 20px;
	}
	#city-selections-popup-content h3 {
		line-height: 1.2;
    	margin-bottom: 15px;
	}	
}
@media (max-width: 450px) {
	#city-selections-popup-content h3 {
    	font-size: 18px;
	}
	.popup-city-item {
		height: 38px;
		padding: 8px;
		font-size: 13px;
	}
	#cities-popup-selected-url {
		padding: 10px 25px;
    	font-size: 13px;
	}
	#city-selection-items {
		grid-template-columns: repeat(1,1fr);
		grid-gap: 8px;
		margin-bottom: 10px;
		margin-top: 10px;
	}	
	#city-selections-popup-submit {
		padding-bottom: 10px;
	}
	#city-selections-popup-msg-2 {
		margin-bottom: 20px;
	}
	#city-selections-popup-msg-1 {
    	font-size: 14px;
	}
}
@media (max-width: 390px) {
	/* #city-selections-popup-content {
		top: 65%;
	} */
	#city-selections-popup-content h3 {
	  font-size: 16px;
	}
}