.map-container {
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.contact-map-form-comb {
    display: flex;
    flex-direction: row;
    column-gap: 1rem;
}

.contact-map-form-comb .contact-map {
    flex-grow: 1;
    width: 50%;
    min-height: 16rem;
}

.contact-map-form-comb .contact-card {
    flex-grow: 1;
    width: 50%;
}

/* contact map */
.contact-map {
    display: flex;
    flex: 1 1 auto;
    margin: 0.5rem 0;

    position: relative;
    z-index: 1;

    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--light);
}

.map-container {
    z-index: 2;
}

.contact-map .loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* sm screen */
@media only screen and (max-width: 768px) {
    .contact-map-form-comb {
        flex-direction: column;
    }

    .contact-map-form-comb .contact-map {
        flex-grow: 1;
        flex-shrink: 0;
        width: 100%;
    }

    .contact-map-form-comb .contact-card {
        width: 100%;
    }
}