/* kakao css */
.root_daum_roughmap .wrap_controllers {
    display: none;
}

.root_daum_roughmap .border1,
.root_daum_roughmap .border2,
.root_daum_roughmap .border3,
.root_daum_roughmap .border4 {
    display: none;
}

.root_daum_roughmap_landing {
    max-width: 100%;
    z-index: 0;
}

.root_daum_roughmap .wrap_map {
    transition: 0.3s;
}

.map_box {
    border-top: 2px solid #1C63B7;
}

.address_box {
    background: #F1F6FC;
    height: 80px;
}

.address_box > ul {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    align-items: center;    
}

.address_box > ul > li {
    display: flex;
    flex-flow: row nowrap;
    gap: 20px;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #222;
}

.address_box > ul > li:first-child {
    flex: 1 0 auto;
}

.address_box > ul .map_icon {
    display: flex;
    width: 80px;
    aspect-ratio: 1/1;
    justify-content: center;
    align-items: center;
}

.address_box > ul > li > .map_icon {
    background: #1C63B7;
}

.address_box > ul > li > .map_icon > img {
    display: block;
    width: 24px;
}

.bus_station dl.station {
    display: flex;
    flex-flow: row nowrap;
    gap: 40px;
    font-size: 18px;
    border-bottom: 1px solid #ECECEC;
    padding: 22px 0;
    margin-bottom: -35px;
}

.bus_station dl.station > dt {
    font-weight: 600;   
    color: #1C63B7;
}

.bus_station .station > dd {
    display: flex;
    flex-flow: row wrap;
    font-weight: 500;   
    gap: 7px 0;
}

.bus_station .station > dd > span {
    position: relative;
    padding-left: 27px;
    color: #222 ;
    font-weight: 400;
}

.bus_station .station > dd > span:first-child {
    padding-left: 0px;
}

.bus_station .station > dd > span::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 15px;
    left: 6px;
    top: 3px;
    background: url('../images/flow_arrow.svg') no-repeat;
    background-size: 100%;
}

.bus_station .station > dd > span:first-child:after {
    display: none;
}

.bus_station .station > dd > span.blue_station {
    color: #1C63B7;
    font-weight: 500;
}

.bus_station .station > dd > span.blue_station::after {
    background: url('../images/flow_arrow_blue.svg') no-repeat;
}

@media screen and (max-width: 1200px) {
    
}

@media screen and (max-width: 1024px) {
    .root_daum_roughmap .wrap_map {
        height: 450px !important;
    }
}

@media screen and (max-width: 850px) {
    .bus_station dl.station {
        gap: 20px;
        font-size: 17px;
        padding: 17px 0;
        margin-bottom: -25px;
    }

    .address_box {
        height: 65px;
    }

    .address_box > ul .map_icon {
        width: 65px;
    }

    .address_box > ul > li {
        gap: 15px;
        font-size: 18px;
        word-break: break-all;
    }

    .address_box > ul > li:first-child {
        flex: 0 0 auto;
        width: calc(100% - 130px);
    }
}

@media screen and (max-width: 767px) {
}

@media screen and (max-width: 630px) {
    .root_daum_roughmap .wrap_map {
        height: 350px !important;
    }

    .bus_station dl.station {
        gap: 15px;
        font-size: 16px;
        padding: 15px 0;
        margin-bottom: -20px;
    }

    .address_box > ul > li > span {
        padding: 0 15px;
        font-size: 16px;        
    }

    .address_box > ul > li > span.map_icon {
        display: none;
    }
}

@media screen and (max-width: 370px) {
    .address_box {
        height: auto;
        padding: 10px 0 15px;
    }

    .address_box > ul {
        flex-flow: row wrap;
        justify-content: center;
        gap: 10px;
    }

    .address_box > ul > li:first-child {
        width: 100%;
    }

    .address_box > ul .map_icon {
        width: 50px;
        border-radius: 20px;
        overflow: hidden;
    }
}