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

.storeMapArea {
    width: 100%;
    height: calc(100vh - 15rem);
    min-height: 30rem;

    background-color: #eee;
}

.storeListArea {
    width: 40%;
    height: calc(100vh - 15rem);
    min-height: 30rem;

    display: flex;
    flex-flow: column nowrap;
}
.storeListHead {
    padding: 2rem;
    font-weight: 500;
}
.storeListUtil {
    padding: 0 2rem 2rem 2rem;
}
.storeListUtil select {
    border: 1px solid #eee;
    padding: 0.5rem 0;
    border-radius: 2rem;
}
.storeListUl {
    height: 100%;
    overflow-y: scroll;
}
.storeListLi {
    padding: 2rem;
    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;
    padding-bottom: 0.75rem;
}
.storeListLiName {
    font-size: 1.25rem;
}
.storeListLiType {
    width: 6rem;
    line-height: 1.875rem;
    text-align: center;
    border-radius: 1.5rem;
    border: 1px solid var(--bordergrey);
}

/* BASIC css end */

