/* 미니맵 검색 로딩 */
.map-search-form.is-searching .map-search-submit svg {
    opacity: 0;
}

.map-search-form.is-searching .map-search-submit::after {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: mapSearchSpin 0.65s linear infinite;
}

.map-search-submit {
    position: relative;
}

@keyframes mapSearchSpin {
    to {
        transform: rotate(360deg);
    }
}

.store_info_wrap.is-search-loading .store_info_desc {
    color: #7452f6;
}

.store_search-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 28px 16px 32px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
}

.store_search-loading__spinner {
    width: 28px;
    height: 28px;
    border: 3px solid #e8e4ff;
    border-top-color: #7452f6;
    border-radius: 50%;
    animation: mapSearchSpin 0.7s linear infinite;
}
