/* Modal Styles */
.location-modal {
    display: none;
	justify-content: center;
	align-items: center;
	flex-direction: column;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.location-modal-content {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	flex-direction: column;
    background-color: #fefefe;
    width: 90%;
    max-width: 500px;
	border-radius: 15px;
	padding: 16px 6px
}

.location-modal-content p {
    color: #fff;
    float: right;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
	background-color: #BD9E7B;
	border-radius: 15px;
	margin: 20px;
	padding: 5px 25px;
}

.location-modal-content img {
    height: 70%;
	margin-bottom: 30px;
}
