.map-wrap{
	position:relative;
	margin:0 auto;
	max-width:100%
}
.map-wrap .btn{
	margin-top:1.5em;
}

.map-layers {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}
.map-layers div{
	position:absolute;
	background-color:rgba(255,255,255,0);
	cursor:pointer;
	visibility:visible;
	-webkit-transition:all .15s ease-in-out;
	transition:all .15s ease-in-out;    
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
-webkit-box-align:center;
    -ms-flex-align:center;
        align-items:center;
-webkit-box-pack:center;
    -ms-flex-pack:center;
        justify-content:center;	
}
.wp-block .map-layers div:hover{
	background-color:rgba(255,255,255,.3);
}
.p-heading{
	margin-top:0;
}
.p-button{
	margin-bottom:2rem;
}
.p-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.p-content {
    max-width: 960px;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    margin: auto;
    top: 5vh;
}
p.p-physicians, p.p-locations, p.p-services {
    line-height: 1.7rem;
    font-size: 14px;
}
.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #2c5aa0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}
.close-button:before {
    content: "×";
    color: #2c5aa0;
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
    transform: translateY(-1px);
}

.close-button:hover {
    background-color: #2c5aa0;
    transform: scale(1.1);
}

.close-button:hover:before {
    color: #ffffff;
}