.single-map-shell {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: var(--single-map-min-height, 300px);
    overflow: hidden;
}

.single-map-shell .single-map-canvas {
    width: 100%;
    height: var(--single-map-height, 100%);
    min-height: var(--single-map-min-height, 300px);
    overflow: hidden;
}

.single-map-shell .single-map-search {
    margin-bottom: 10px;
}

.single-map-shell .single-map-search-input {
    display: block;
    width: min(350px, calc(100% - 20px));
    margin: 10px 0 0 10px;
    padding: 0 20px;
    height: 43px;
    line-height: 43px;
    border: 0;
    border-radius: 4px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}

.single-map-shell .gm-style .mapzoom-in,
.single-map-shell .gm-style .mapzoom-out {
    position: absolute;
    z-index: 100;
    top: 50%;
    right: 12px;
    width: 40px;
    height: 40px;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 8px 0 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.16);
    color: #22a836;
    cursor: pointer;
}

.single-map-shell .gm-style .mapzoom-out {
    margin-top: -42px;
    border-radius: 0 0 8px 8px;
}

.single-map-shell .gm-style .mapzoom-in {
    margin-top: -84px;
}

.single-map-shell .gm-style .mapzoom-in::before,
.single-map-shell .gm-style .mapzoom-out::before {
    font-family: "Font Awesome 5 Pro", sans-serif;
    font-size: 10px;
    font-weight: 600;
}

.single-map-shell .gm-style .mapzoom-in::before {
    content: "\f067";
}

.single-map-shell .gm-style .mapzoom-out::before {
    content: "\f068";
}

@media (max-width: 767.98px) {
    .single-map-shell {
        min-height: var(--single-map-mobile-min-height, 360px);
    }

    .single-map-shell .single-map-canvas {
        min-height: var(--single-map-mobile-min-height, 360px);
    }

    .single-map-shell .single-map-search-input {
        width: calc(100% - 20px);
    }
}
