/* BASIC css start */
.storeListContainer {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
}

.storeMapArea {
    width: 100%;
    height: 40vh;
    min-height: 12rem;

    background-color: #eee;
}

.storeListArea {
    width: 100%;
    display: flex;
    /* height Á¶Àý ÇØ¾ßÇÔ */
    height: 40vh;
    min-height: 12rem;
    flex-flow: column nowrap;
}
.storeListHead {
    padding: 1rem;
    font-weight: 500;
}
.storeListUtil {
    padding: 0 1rem 1rem 1rem;
}
.storeListUtil select {
    border: 1px solid #eee;
    /* padding: 0.5rem 0; */
    border-radius: 2rem;
}
.storeListUl {
    height: 100%;
    overflow-y: scroll;
}
.storeListLi {
    padding: 1rem;
    border-top: 1px solid var(--bordergrey);
    display: flex;
    flex-flow: column;
    gap: 0.5rem;
}
.storeListLi:last-child {
    border-bottom: 1px solid var(--bordergrey);
}
.storeListLi:hover {
    background-color: #f0f0f0;
    transition: 0.3s;
}
.storeListLiTittle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.storeListLiName {
    font-size: 1rem;
}
.storeListLiType {
    width: 6rem;
    line-height: 1.75rem;
    text-align: center;
    border-radius: 1.5rem;
    border: 1px solid var(--bordergrey);
}

/* BASIC css end */

