/* 배경지도 */
#map_subBaseSelect {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.map-option {
    display: flex;
    align-items: center;
    gap:0.8rem;
    padding:0.4rem;
    padding-right:1.2rem;
    border-radius: 4px;
    cursor: pointer;
    color:#555;
    text-align: left;
    font-size:1.3rem;
    font-weight: 400;
    border:1px solid #fff;
}

.map-option .mapImg{
    width: 4rem;
    height:4rem;
    img{
        width:100%;
    }
}

.map-option:hover {
    background: #F6F7FF;
}

.map-option input {
    display: none;
}

.map-option input:checked + span,
.map-option:has(input:checked) {
    color: #186BFE;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid #186BFE;
    background: #F6F7FF;
    box-sizing: border-box;
}