

#shuttle {
    display:flex;
    flex-direction:column;
    gap:80px;
}
#shuttle .route_cont {
    display:flex;
    flex-direction:column;
    gap:30px;
}
#shuttle .route_cont .route_times {
    display:flex;
    align-items:stretch;
    gap:20px;
}
#shuttle .route_cont .route_times .times_box {
    border:1px solid #D7EDFF;
    background-color:#fff;
    border-radius:30px;
    box-shadow: 0px 5px 10px 5px rgba(49, 84, 114, 0.20);
    padding:30px;
    display:flex;
    flex-direction:column;
    gap:10px;
    flex:1;
    max-width:calc(33.333% - 13.333px);
}
#shuttle .route_cont .route_times .times_box .times_title {
    border-radius:30px;
    text-align:center;
    padding:20px 50px;
}
#shuttle .route_cont .route_times .times_box .times_title p {
    font-size:1.22em;
    font-weight:600;
}
#shuttle .route_cont .route_times .times_box .times_title span {
    color:#004F90;
}
#shuttle .route_cont .route_times .times_box .shuttle_number {
    display:flex;
    align-items:center;
    gap:5px;
}
#shuttle .route_cont .route_times .times_box .shuttle_number .number_ti {
    width:20px;
    height:20px;
    border-radius:50%;
    text-align:center;
    font-size:0.74em;
    font-weight:700;
    color:#fff;
    line-height:20px;
}
#shuttle .route_cont .route_times .times_box .start_point {
    font-weight:700;
}


#shuttle .route_cont .route_info {
    border-radius: 50px 0px 50px 50px;
    padding:30px 50px;
    display:flex;
    align-items:center;
    gap:20px;
}
#shuttle .route_cont .route_info p {
    font-size:1.22em;
    font-weight:700;
    color:#fff;
}
#shuttle .route_cont .route_info .route_box {
    display:flex;
    align-items:center;
    gap:5px;
}
#shuttle .route_cont .route_info .route_box .info_point {
    background-color:#fff;
    border-radius:30px;
    padding:0 8px;
}

#shuttle .route_cont.route01 .route_times .times_box .times_title {
    border:5px solid #D7EDFF;
}
#shuttle .route_cont.route01 .route_times .times_box .times_title span {
    color:#004F90;
}
#shuttle .route_cont.route01 .route_times .times_box .shuttle_number .number_ti {
    background-color:#004F90;
}
#shuttle .route_cont.route01 .route_times .times_box .start_point {
    color:#192D60;
}
#shuttle .route_cont.route01 .route_info {
    background-color:#004F90;
}
#shuttle .route_cont.route01 .route_info .route_box .info_point {
    color:#004F90;
}

#shuttle .route_cont.route02 .route_times .times_box .times_title {
    border:5px solid #DDF6ED;
}
#shuttle .route_cont.route02 .route_times .times_box .times_title span {
    color:#00613E;
}
#shuttle .route_cont.route02 .route_times .times_box .shuttle_number .number_ti {
    background-color:#00613E;
}
#shuttle .route_cont.route02 .route_times .times_box .start_point {
    color:#00613E;
}
#shuttle .route_cont.route02 .route_info {
    background-color:#00613E;
}
#shuttle .route_cont.route02 .route_info .route_box .info_point {
    color:#00613E;
}
#shuttle .route_cont.route02 .scroll table thead tr th {
    background-color:#DDF6ED;
}

/* 반응형 미디어쿼리 css */
@media (max-width:1600px) {}
@media (max-width:1440px) {
    #shuttle .route_cont .route_times .times_box {
        padding:20px;
    }
}
@media (max-width:1200px) {
    #shuttle .route_cont .route_info {
        flex-direction:column;
        gap:10px;
        padding:20px;
    }
}
@media (max-width:1024px) {
    #shuttle .scroll .scroll_wd {
        width:640px;
    }
}
@media (max-width:991px) {
    #shuttle .route_cont.route01 .route_times .times_box .times_title {
        padding:10px 20px;
    }

    #shuttle .route_cont .route_times {
        flex-direction:column;
    }
    #shuttle .route_cont .route_times .times_box {
        max-width:100%;
    }
    #shuttle .scroll .scroll_wd {
        width:1024px;
    }


    #shuttle .route_cont .route_info {
        align-items: flex-start;
    }
    #shuttle .route_cont .route_info p {
        font-size:1em;
    }
}
@media (max-width:768px) {
    #shuttle .scroll .scroll_wd {
        width:991px;
    }
}
@media (max-width:640px) {
    #shuttle .scroll .scroll_wd {
        width:768px;
    }


    #shuttle .route_cont .route_info {
        border-radius:30px 0px 30px 30px;
    }
    #shuttle .route_cont .route_info .route_box {
        flex-wrap: wrap;
    }
    
}
@media (max-width:460px) {
    #shuttle .scroll .scroll_wd {
        width:640px;
    }
}