.geo-popup-modal-overlay {
	display: none;
	background-color: rgba(0,0,0,0.6);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 100;
    width: 100%;
    height: 100%;
}
.geo-popup-modal {
    position: fixed;
    top: 25%;
    left: 5%;
    transform: translate(-2.5%, -12.5%);
    max-width: 640px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

@media (min-width: 678px) {
	.geo-popup-modal {
		top: 50%;
    	left: 50%;
		transform: translate(-50%, -50%);
	}
}

.geo-popup-modal-container {
	display: flex;
	flex-wrap: wrap;
}
@media (min-width: 678px) {
	.geo-popup-modal-container {
		flex-wrap: nowrap;
	}
}
.geo-popup-modal-image {
	max-height: 200px;
}
@media (min-width: 678px) {
	.geo-popup-modal-image {
		max-width: 200px;
		max-height: 100%;
	}
}

.geo-popup-modal-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.geo-popup-modal-content {
	padding: 20px;
}
@media (min-width: 678px) {
	.geo-popup-modal-content {
		padding: 40px;
	}	
}

.geo-popup-modal-copy {
	margin-bottom: 1.5rem;
}

.geo-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
	color: white;
}
@media (min-width: 678px) {
	.geo-popup-close {
		color: var(--wp--preset--color--mud-brown);
	}
}