#newLocationPopup{
	background: rgb(0 0 0 / 66%);
	width: 100vw;
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999;
}
#popupContent{
	width: 80%;
	max-width: 700px;
	background: #f8f8f8;
	text-align: center;
	padding: 5em 4em;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.5s ease-in-out;
}
#newLocationPopup.active #popupContent{
	top: 50%;
	transform: translate(-50%, -50%);
}
#popupContent .new_location{
	font-weight: 600;
}
#removePopup{
	border: 0;
	background: #e84a58;
	color: #fff;
	font-size: 1.5em;
    width: 1.5em;
    height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
	margin: 0;
	position: absolute;
	right: 0;
	top: 0;
}
@media(min-width: 768px){
	#popupContent .content{
		font-size: 18px;
	}
}
@media(max-width: 767px){
	#popupContent{
		padding: 3em 1em;
	}
}