/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 01 2026 | 09:30:04 */
#place-id {
    position: relative;
    width: 100%;
    height: 370px;
    border-radius: var(--radius);
    overflow: hidden;
    background: #f3f5f8;
    border: var(--border);
}

.pa-map-canvas {
    position: absolute;
    inset: 0;
}

.pa-map-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/wp-content/uploads/2026/01/google-map-overlay-placeholder.jpg');
	background-size: cover;
	background-repeat: no-repeat;
    backdrop-filter: blur(10px);
    border: var(--border);
    box-shadow: var(--shadow);
	border-radius: var(--radius);
}

.pa-map-btn {
    appearance: none;
    border: 0;
    padding: 12px 22px;
    border-radius: 999px;
    background: #1f3a5f;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform .15s ease, opacity .15s ease;
}

.pa-map-btn:hover {
    transform: translateY(-1px);
    opacity: .9;
}

.pa-map-foot {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 4;
    background: rgba(255, 255, 255, .85);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    color: #5f6c7b;
}

#place-id.is-loading .pa-map-btn {
    pointer-events: none;
    opacity: .6;
}

@media (max-width: 960px) {
    #place-id {
        height: 260px;
    }
}