.map_container {
    display: flex;
    width: 100%;
    margin: auto;
    background-color: #fff;
    padding: 50px 10%;
}

.map_container #map {
    width: 55%;
    height: 500px;
}

.select_shop_box {
    width: 45%;
    height: 500px;
    overflow-y: scroll;
    background-color: #fcfbf1;
    color: #333333;
}

.svg-box {
    margin-right: 8px;
}
.svg-path {
    fill: #333333;
}
.svg-path.selected {
    fill: #CF1529;
}

.shop_item_link {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #fff;
    padding: 12px 15px;
    color: #231816;
}
.shop_item_link:hover  {
    color: #333333 !important;
    text-decoration: none !important;
}
.shop_item_link .title,
.shop_item_link .address {
    color: #333333;
    font-size: 16px;
}
.shop_item_link .title {
    margin-bottom: 2px;
}
.shop_item_link .address {
    margin-bottom: 0px;
}

.svg-text {
    font-size: 10px;
    fill: white;
}

.link_arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #333333;
}

.marker_content {
    display: flex;
    align-items: center;
    gap: 15px;
}
.marker_content:hover  {
    color: #333333 !important;
    text-decoration: none !important;
}

@media screen and (max-width: 768px) {
    .map_container {
        display: block;
        padding: 50px 5%;
    }

    .map_container #map {
        width: 100%;
        height: 280px;
    }
    
    .select_shop_box {
        width: 100%;
        height: 300px;
    }
    .shop_item_link .title,
    .shop_item_link .address {
        font-size: 14px;
        max-width: 250px;
    }
}