.map-container {
    position: relative;
    max-width: 1280px;
    width: 90%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

#map {
    width: 100%;
    height: 540px;
}

.store-list-container {
    width: 300px;
    background: #FFF;
    border: 1px solid #7C7C7C;
    overflow: hidden;
    height: 500px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
}

.search-head {
    display: flex;
    box-sizing: border-box;
    padding: 12px 20px;
    justify-content: space-between;
    align-items: center;
    color: #222;
    text-align: center;
    font-size: 16px;
    line-height: 24px; /* 150% */
    letter-spacing: -0.4px;
    gap: 10px;
}

.search-head input[type="text"] {
    border: none !important;
    padding: 0 !important;
    height: 24px;
    width: 100%;
}

.search-head input[type="text"]::placeholder {
    color: #999;
    font-size: 16px;
    line-height: 24px; /* 150% */
    letter-spacing: -0.4px;
}

.search-head input[type="text"]:focus {
    box-shadow: none !important;
    border: none !important;
}

#search-btn {
    cursor: pointer;
}

.select-box {
    display: flex;
    box-sizing: border-box;
    padding: 10px 20px;
    align-items: center;
    border-top: 1px solid #EEE;
    position: relative;
    background: #FFF;
}

.select {
    width: 100%;
    display: flex;
    gap: 8px;
    align-items: center;
    color: #505050;
    text-align: center;
    font-size: 14px;
    line-height: 24px; /* 171.429% */
    letter-spacing: -0.35px;
}

.option-list{
    position: absolute;
    background: #fff;
    top: 44px;
    box-sizing: border-box;
    padding: 5px 20px;
    display: none;
    z-index: 100;
    border: 1px solid #EEE;
}

.option {
    color: #505050;
    text-align: center;
    font-size: 14px;
    line-height: 24px; /* 171.429% */
    letter-spacing: -0.35px;
    cursor: pointer;
}

.list-wrap {
    overflow-y: scroll;
    height: calc(100% - 93px);
    display: flex;
    flex-direction: column;
    border-top: 1px solid #EEE;
    overflow-y: scroll;
    background: #FFF;
}

.rotate-180 {
    transform: rotate(180deg);
}

.store-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 10px 20px;
    border-top: 1px solid rgba(183, 162, 137, 0.20);
    cursor: pointer;
}

.store-item:first-of-type {
    border-top: none;
}

.s-name {
    color: #222;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px; /* 150% */
    letter-spacing: -0.4px;
}

.s-address {
    color: #505050;
    font-size: 14px;
    line-height: 18px; /* 142.857% */
    letter-spacing: -0.35px;
}

.s-number {
    font-size: 16px;
    line-height: 24px; /* 150% */
    letter-spacing: -0.4px;
}

.total {
    color: #D8222B;
}

.no-store {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 24px; /* 150% */
    letter-spacing: -0.4px;
}

@media(max-width: 900px) {
    .store-list-container {
        width: 100%;
        position: static;
        border: none;
        border-bottom: 1px solid #7C7C7C;
    }
    .caution>p {
        font-size: 8px;
        line-height: 14px;
        letter-spacing: -0.2px;
    }
}

@media(max-width: 768px) {
    .map-container {
        width: 90%;
    }
}

@media(max-width: 650px) {
    .store-list-container {
        height: 400px;
    }
    #map {
        height: 440px;
    }
}

@media(max-width: 480px) {
    .store-list-container, #map {
        height: 350px;
    }
}

@media(max-width: 400px) {
    .store-list-container, #map {
        height: 320px;
    }
}
