.atmp-garage-locator {
    display: flex;
    gap: 16px;
    min-height: 650px;
}

.atmp-gl-panel {
    width: 420px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    z-index: 5;
    top: 10%;
    left: 2%;
    height: 85%;
}

.atmp-gl-searchbar {
    display: flex;
    gap: 8px;
}

.atmp-gl-zip-input {
    flex: 1;
    min-height: 44px;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    padding: 0 12px;
    font-size: 15px;
}

.atmp-gl-search-btn {
    min-height: 44px;
    border: 0;
    border-radius: 8px;
    background: #2d5f74;
    color: #fff;
    padding: 0 14px;
    cursor: pointer;
}

.atmp-gl-notice {
    font-size: 14px;
    line-height: 1.4;
    color: #234150;
    background: #e8f4f8;
    border: 1px solid #b8d9e4;
    border-radius: 10px;
    padding: 10px 12px;
    display: none;
}

.atmp-gl-notice.is-warning {
    color: #725119;
    background: #fff8e8;
    border-color: #ead3a1;
}

.atmp-gl-notice:not(:empty) {
    display: block;
}

.atmp-gl-list {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 10px;
    overflow: auto;
    flex: 1;
}

.atmp-gl-item {
    border-bottom: 1px solid #ececec;
    padding: 10px 6px;
}

.atmp-gl-item-background{
    padding: 8px 10px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.atmp-gl-item-background:hover {
    background-color: #ccc;
    border-radius: 18px;
}

.atmp-gl-item:last-child {
    border-bottom: 0;
}

.atmp-gl-name {
    font-weight: 700;
    margin-bottom: 4px;
}

.atmp-gl-address {
    color: #4a4a4a;
    margin-bottom: 6px;
}

.atmp-gl-contact {
    color: #7a7a7a;
    font-size: 14px;
}

.atmp-gl-empty {
    margin: 8px 0;
}

.atmp-gl-map {
    flex: 1;
    min-height: 560px;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .atmp-garage-locator {
        flex-direction: column;
    }

    .atmp-gl-panel {
        width: 100%;
    }

    .atmp-gl-map {
        min-height: 420px;
    }
}

.gm-style-iw-chr {
    position: absolute;
    right: 0;
    top: 0;
}

.atmp-gl-infowindow {
    min-width: 300px;
    font-size: 18px;
    padding: 16px 24px 8px 8px;
}

.atmp-gl-infowindow .atmp-gl-infowindow__name {
    font-size: 24px;
    font-weight: bold;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 8px;
}