.shuttle-detail-container{
    width: 100%;
    /* min-height: calc(100vh - var(--height-header)); */
    display: flex;
    flex-direction: column;
    line-height: normal;
}
.shuttle-detail-container .pc-only{display: block;}
.shuttle-detail-container .mobile-only{display: none;}
.shuttle-detail-container .main-title{
    color: var(--color-text);
    display: flex;
    align-items: center;
    column-gap: 8px;
}
.shuttle-detail-container .main-title::before{
    content: '';
    width: 46px;
    aspect-ratio: 1/1;
    background-image: url(/shared/images/ico-main-title.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.shuttle-detail-container .section-title{
    font-size: 30px;
    font-weight: 500;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-text);
    padding-bottom: 12px;
    margin-bottom: 20px;
}
.shuttle-detail-container .item-title{
    
}
.shuttle-detail-container .item-title:has(.timetable-except){
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 12px;
}
.shuttle-detail-container .item-title:has(.timetable-except) > span{
    flex: 0 0 auto;
}
.shuttle-detail-container .timetable-except{
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    display: flex;
    align-items: center;
    column-gap: 12px;
    row-gap: 4px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.shuttle-detail-container .timetable-except [class*="type-"]{
    display: flex;
    align-items: center;
    column-gap: 4px;
}
.shuttle-detail-container .timetable-except [class*="type-"]::before{
    content: '';
    display: block;
    width: 6px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--color-text);
    flex-shrink: 0;
}
.shuttle-detail-container .timetable-except [class*="type-autonomous"]{
    font-size: 20px;
    font-weight: 500;
    color: var(--color-primary);
}
.shuttle-detail-container .timetable-except [class*="type-autonomous"]::before{
    content: "";
    width: 24px;
    aspect-ratio: 1/1;
    background-image: url(/shared/images/ico-autonomous-primary.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    background-color: transparent;
}
.shuttle-detail-container .timetable-note{
    font-size: 20px;
    font-weight: 400;
    color: var(--color-text);
    display: flex;
    align-items: center;
    column-gap: 4px;
    margin-top: 12px;
}
.shuttle-detail-container .timetable-note::before{
    content: '※';
    display: block;
}
.shuttle-detail-container .description{
    
}
.shuttle-detail-container .main-title + .description{
    margin-top: 8px;
    display: none;
}
.shuttle-detail-body{
    flex: 1;
    display: flex;
    flex-direction: column;
}
.shuttle-detail-visual{   
    flex: 0;
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
}
.shuttle-detail-visual .bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.shuttle-detail-visual .bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.shuttle-detail-visual .bg::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.shuttle-detail-visual .text{
    position: relative;
    width: 100%;
}
.shuttle-detail-visual .text .page-title{
}
.shuttle-detail-visual .text .zone-note{
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    margin-top: 4px;
    word-break: keep-all;
}
.shuttle-detail-visual .text .zone-note span{
    font-weight: 700;
}
.shuttle-detail-content{
    padding: 60px 0 100px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 32px;
    /* background-color: var(--color-primary); */
    flex: 1;
}
.shuttle-detail-content .bg{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
.shuttle-detail-content .bg .image{overflow: hidden;}
.shuttle-detail-content .bg .image:first-child{flex: 1;}
.shuttle-detail-content .bg .image:last-child{flex: 0 0 360px;}
.shuttle-detail-content .bg .image img{}
.shuttle-detail-content .content{
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 6px 7px 24px 0 rgba(0, 0, 0, 0.30);
    background-color: #fff;
}
.shuttle-detail-content .tab-container-direct{}
.shuttle-detail-content .tab-container-direct .tab-header-direct{
    display: flex;
    align-items: center;
    background-color: var(--color-primary);
}

/* 버튼이 한 개뿐일 때 탭 헤더 숨기기 */
.shuttle-detail-content .tab-container-direct .tab-header-direct:has(> button:only-child){
    display: none;
}
.shuttle-detail-content .tab-container-direct .tab-header-direct > button{
    flex: 1;
    border: none;
    font-size: 32px;
    font-weight: 400;
    color: #A6A6A6;
    background-color: #DCDCDC;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 86px;
    padding: 0;
    transition: background-color var(--transition), color var(--transition);
}
.shuttle-detail-content .tab-container-direct .tab-header-direct > button.active{
    color: var(--color-primary);
    background-color: #fff;
    font-weight: 700;
}
.shuttle-detail-content .tab-container-direct .tab-header-direct > button:hover{
    color: var(--color-primary);
    background-color: #fff;
}
.shuttle-detail-content .tab-container-direct .tab-content-direct{
    padding: 40px;
}
.shuttle-detail-content .tab-container-direct .tab-content-direct .direct-item{}

.shuttle-detail-content .tab-container-route{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin-top: 28px;
}
.shuttle-detail-content .tab-container-route .tab-header-route{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 8px;
    row-gap: 8px;

}
.shuttle-detail-content .tab-container-route .tab-header-route > button{
    font-size: 20px;
    font-weight: 500;
    background-color: #fff;
    padding: 4px 20px;
    min-height: 40px;
    border-radius: 40px;
    transition: all var(--transition);
    border: 1px solid #6C757D;
    color: var(--color-text);
    text-wrap: balance;
}
.shuttle-detail-content .tab-container-route .tab-header-route > button.active{
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}
.shuttle-detail-content .tab-container-route .tab-header-route > button:hover{
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}
.shuttle-detail-content .tab-container-route .tab-content-route{}
.shuttle-detail-content .tab-container-route .tab-content-route .route-item{}

.shuttle-detail-content .route-container{
    border: 1px solid #CED4DA;
    border-radius: 12px;
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}
.shuttle-detail-content .route-container .util{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    display: none;
}
.shuttle-detail-content .route-container .util .map-url{
    font-size: 14px;
    color: #fff;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    padding: 0 28px;
    height: 32px;
    border-radius: 4px;
    transition: all var(--transition);
}
.shuttle-detail-content .route-container .util .map-url[href="#"] {
    pointer-events: none;
    cursor: default;
    opacity: 0.4;
    user-select: none;
}
.shuttle-detail-content .route-container .util .map-url:hover{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
}
.shuttle-detail-content .route-container .route{
    
}
.shuttle-detail-content .route-container .route > ul{
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    padding: 20px 40px;
}
.shuttle-detail-content .route-container .route > ul > li{
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    display: flex;
    align-items: flex-end;
    column-gap: 8px;
    position: relative;
    height: 150px;
}
.shuttle-detail-content .route-container .route > ul > li::before{
    content: '';
    position: relative;
    top: 0;
    left: 0;
    width: 18px;
    aspect-ratio: 1 / 1;
    background-color: #fff;
    border-width: 4px;
    border-style: solid;
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 1;
    border-color: var(--color-arrival);
}
.shuttle-detail-content .route-container .route > ul > li[class*="marker-"]{
    color: var(--color-arrival);
    font-weight: 700;
}
.shuttle-detail-container.arrival .shuttle-detail-content .route-container .route > ul > li[class*="marker-"], .shuttle-detail-container.to-venue .shuttle-detail-content .route-container .route > ul > li[class*="marker-"]{
    color: var(--color-arrival);
}
.shuttle-detail-container.departure .shuttle-detail-content .route-container .route > ul > li[class*="marker-"], .shuttle-detail-container.to-hotel .shuttle-detail-content .route-container .route > ul > li[class*="marker-"]{
    color: var(--color-departure);
}
.shuttle-detail-content .route-container .route > ul > li[class*="marker-"]::before{
    width: 36px;
    top: 9px;
    left: -9px;
    outline-width: 3px;
    outline-style: solid;
    border: 1px solid #fff !important;
    outline-color: var(--color-arrival);
    background-color: var(--color-arrival);
    background-size: 26px;
    background-repeat: no-repeat;
    background-position: center;
}
.shuttle-detail-container.arrival .shuttle-detail-content .route-container .route > ul > li[class*="marker-"]::before, .shuttle-detail-container.to-venue .shuttle-detail-content .route-container .route > ul > li[class*="marker-"]::before{
    outline-color: var(--color-arrival);
    background-color: var(--color-arrival);
}
.shuttle-detail-container.departure .shuttle-detail-content .route-container .route > ul > li[class*="marker-"]::before, .shuttle-detail-container.to-hotel .shuttle-detail-content .route-container .route > ul > li[class*="marker-"]::before{
    outline-color: var(--color-departure);
    background-color: var(--color-departure);
}
.shuttle-detail-content .route-container .route > ul > li.marker-airport::before{
    background-image: url(/shared/images/ico-marker-airport.png);
}
.shuttle-detail-content .route-container .route > ul > li.marker-subway::before{
    background-image: url(/shared/images/ico-marker-subway.png);
}
.shuttle-detail-content .route-container .route > ul > li.marker-palace::before{
    background-image: url(/shared/images/ico-marker-palace.png);
}
.shuttle-detail-content .route-container .route > ul > li.marker-apec::before{
    background-image: url(/shared/images/ico-marker-apec.png);
}
.shuttle-detail-content .route-container .route > ul > li::after{
    content: '';
    position: absolute;
    bottom: 7px;
    width: calc(100% + 20px);
    height: 4px;
    background-color: var(--color-arrival);
}
.shuttle-detail-content .route-container .route > ul > li.long-gap::after{
    background: repeating-linear-gradient(to right, #fff 0, #fff 6px, transparent 6px, transparent 10px) center/100% 2px no-repeat, #505050 !important;
}
.shuttle-detail-content .route-container .route > ul > li:last-child::after{
    display: none;
}
.shuttle-detail-container.arrival .shuttle-detail-content .route-container .route > ul > li::before, .shuttle-detail-container.arrival .shuttle-detail-content .route-container .route > ul > li.line-end::after, .shuttle-detail-container.to-venue .shuttle-detail-content .route-container .route > ul > li::before, .shuttle-detail-container.to-venue .shuttle-detail-content .route-container .route > ul > li.line-end::after{
    border-color: var(--color-arrival);
}
.shuttle-detail-container.arrival .shuttle-detail-content .route-container .route > ul > li::after, .shuttle-detail-container.to-venue .shuttle-detail-content .route-container .route > ul > li::after{
    background-color: var(--color-arrival);
}
.shuttle-detail-container.departure .shuttle-detail-content .route-container .route > ul > li::before, .shuttle-detail-container.departure .shuttle-detail-content .route-container .route > ul > li.line-end::after, .shuttle-detail-container.to-hotel .shuttle-detail-content .route-container .route > ul > li::before, .shuttle-detail-container.to-hotel .shuttle-detail-content .route-container .route > ul > li.line-end::after{
    border-color: var(--color-departure);
}
.shuttle-detail-container.departure .shuttle-detail-content .route-container .route > ul > li::after, .shuttle-detail-container.to-hotel .shuttle-detail-content .route-container .route > ul > li::after{
    background-color: var(--color-departure);
}
.shuttle-detail-content .route-container .route > ul > li > div{
    position: absolute;
    z-index: 1;
    transform-origin: left bottom;
    transform: rotate(-58deg);
    width: 150px;
    height: 63px;
    left: 44px;
    bottom: 8px;
    display: flex;
    align-items: center;
    transition: all var(--transition);
}
.shuttle-detail-content .route-container .route > ul > li[class*="marker-"] > div{
    left: 48px;
    bottom: 16px;
}
.shuttle-detail-content .route-container .route > ul > li span{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-wrap: balance;
    letter-spacing: -0.5px;
    text-shadow: 1px 1px 0 #fff;
    padding-right: 2px;
}

.shuttle-detail-content .route-container .route > ul > li.long-gap.line-reverse::after{
    width: calc(200% + 40px);
}

.shuttle-detail-content .route-container .route > ul > li.long-gap.line-reverse + li.line-reverse::after{
    width: calc(50% + 10px);
}

/* S자 형태 노선 연결선 스타일 */
.shuttle-detail-content .route-container .route > ul > li.line-forward::after{
    left: 0;
}
.shuttle-detail-content .route-container .route > ul > li.line-reverse::after{
    /* right: calc(100% - 18px); */
    right: 100%;
}
.shuttle-detail-content .route-container .route > ul > li.line-end::after {
    background-color: transparent !important;
    width: calc(100% + 40px);
    height: calc(100% + 24px);
    top: calc(100% - 11px);
    border-width: 4px;
    border-style: solid;
    border-color: var(--color-arrival);
}
.shuttle-detail-content .route-container .route > ul > li.line-end.long-gap::after{
    outline: 2px dashed #fff;
    outline-offset: -3px;
    border-color: #505050 !important;
}
.shuttle-detail-content .route-container .route > ul > li.line-end.long-gap.line-forward::after{
    clip-path: inset(0 0 0 4px);
}
.shuttle-detail-content .route-container .route > ul > li.line-end.long-gap.line-reverse::after{
    clip-path: inset(0 4px 0 0);
}
.shuttle-detail-content .route-container .route > ul > li.line-end.line-forward::after {
    left: 0;
    border-left: 0;
    border-radius: 0 40px 40px 0;
}
.shuttle-detail-content .route-container .route > ul > li.line-end.line-reverse::after {
    left: -40px;
    border-right: 0;
    border-radius: 40px 0 0 40px;
    width: 44px;
}
.shuttle-detail-content .accommodation-container{
    border: 1px solid #CED4DA;
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
}
.shuttle-detail-content .accommodation-container .title{
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text);
    word-break: keep-all;
}
.shuttle-detail-content .accommodation-container .note{
    font-size: 16px;
    color: #E8383D;
    font-weight: 500;
    margin-top: 8px;
}
.shuttle-detail-content .accommodation-container .accommodation-list{
    margin-top: 20px;
}
.shuttle-detail-content .accommodation-container .accommodation-list > ul{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.shuttle-detail-content .accommodation-container .accommodation-list > ul > li{}
.shuttle-detail-content .accommodation-container .accommodation-list > ul > li > div{
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}
.shuttle-detail-content .accommodation-container .accommodation-list .station{
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    word-break: keep-all;
}
.shuttle-detail-content .accommodation-container .accommodation-list .hotels{
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
    color: var(--color-text);
    word-break: keep-all;
}
.shuttle-detail-content .accommodation-container .accommodation-list .hotels a{}
.shuttle-detail-content .accommodation-container .accommodation-list .hotels a:hover{
    text-decoration: underline;
}
.shuttle-detail-content .accommodation-container .accommodation-list .hotels a:not(:last-child)::after{
    content: ", ";
}
.shuttle-detail-content .timetable-container{
    /* margin-top: 40px; */
    display: flex;
    flex-direction: column;
    /* row-gap: 12px; */
}
.shuttle-detail-content .timetable-container .timetable-date-selector{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 8px;
    row-gap: 8px;
    margin-top: 12px;
}
.shuttle-detail-content .timetable-container .timetable-date-selector button{
    font-size: 20px;
    color: var(--color-text);
    font-weight: 500;
    height: 40px;
    border-radius: 40px;
    border: 1px solid #6C757D;
    padding: 0 20px;
    background-color: #fff;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    column-gap: 8px;
    position: relative;
}
.shuttle-detail-content .timetable-container .timetable-date-selector button::before{
    content: "";
    position: relative;
    top: -2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: all var(--transition);
    display: none;
}
.shuttle-detail-content .timetable-container .timetable-date-selector button.active{
    color: #fff;
    background-color: #009A94;
    border-color: #009A94;
}
.shuttle-detail-content .timetable-container .timetable-date-selector button.active::before{
    display: block;
}
.shuttle-detail-content .timetable-container .timetable-date-selector button:hover{
    color: #fff;
    background-color: #009A94;
    border-color: #009A94;
}
.shuttle-detail-content .timetable-container .timetable-info{
    padding: 24px;
    border-radius: 12px;
    background-color: #EFF4FA;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    margin-top: 20px;
}
.shuttle-detail-content .timetable-container .timetable-info > ul{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.shuttle-detail-content .timetable-container .timetable-info > ul > li{display: none;}
.shuttle-detail-content .timetable-container .timetable-info > ul > li:first-child{
    grid-column: span 2;
    display: block;
}
.shuttle-detail-content .timetable-container .timetable-info > ul > li > div{
    display: flex;
    gap: 4px 8px;
}
.shuttle-detail-content .timetable-container .timetable-info > ul > li > div > span{
    font-size: 20px;
}
.shuttle-detail-content .timetable-container .timetable-info > ul > li > div > span.label{
    color: var(--color-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    column-gap: 4px;
}
.shuttle-detail-content .timetable-container .timetable-info > ul > li > div > span.label::after{
    content: ":";
    display: block;
}
.shuttle-detail-content .timetable-container .timetable-info > ul > li > div > span.value{
    color: var(--color-text);
    font-weight: 500;
}
.shuttle-detail-content .timetable-container > .item-title{
    margin-top: 40px;
}
.shuttle-detail-content .timetable-container .timetable-util{
    padding: 20px 0;
    display: flex;
    justify-content: center;
    transition: all var(--transition);
    position: relative;
    z-index: 20;
    margin-top: 0;
    width: calc(100% + 120px);
    left: -60px;

    display: none;
}
.shuttle-detail-content .timetable-container .timetable-util.collapsed{
    background: linear-gradient(to top, #fff, transparent);
    margin-top: -80px;
}
.shuttle-detail-content .timetable-container .timetable-util .btn-more{
    padding: 0 48px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    font-size: 16px;
    color: var(--color-primary);
    background-color: #fff;
    border: 1px solid var(--color-primary);
    transition: all var(--transition);
}
.shuttle-detail-content .timetable-container .timetable-util .btn-more:hover{
    color: #fff;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
.shuttle-detail-content .timetable-container .timetable-util .btn-more::after{
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url(/shared/images/ico-arrow-down.png) no-repeat center center / contain;
    transition: all var(--transition);
    transform: rotate(180deg);
}
.shuttle-detail-content .timetable-container .timetable-util .btn-more:hover::after{
    filter: brightness(0) invert(1);
}
.shuttle-detail-content .timetable-container .timetable-util.collapsed .btn-more::after{
    transform: rotate(0deg);
}
.shuttle-detail-content .timetable-container .timetable-wrap{
    margin-top: 12px;
    position: relative;
}
.shuttle-detail-content .timetable-container .timetable{
    width: calc(100% + 60px);
    display: flex;
    flex-direction: column;
    /* overflow: overlay; */
    scrollbar-width: none;
    border-radius: 12px 0 0 12px;
    user-select: none;
    cursor: grab;
    padding-right: 60px;
    overflow-y: hidden;
    transition: all var(--transition);
    max-height: none;
    position: relative;
    /* border: 1px solid #CED4DA; */
}
.shuttle-detail-content .timetable-container .timetable.collapsed{
    max-height: 0;
    overflow: hidden;
    /* border-radius: 12px 12px 0 0; */
    /* border-bottom: none; */
}
.shuttle-detail-content .timetable-container .timetable:active{
    cursor: grabbing;
}
.shuttle-detail-content .timetable-container .timetable .item-title{}
.shuttle-detail-content .timetable-container .timetable .timetable-header{}
.shuttle-detail-content .timetable-container .timetable .timetable-header .th-item{
    border-top: 1px solid #CED4DA;
    /* border-top: none !important; */
    background-color: #D0E5FF !important;
}
.shuttle-detail-content .timetable-container .timetable .timetable-header .th-item:first-child{
    border-top-left-radius: 12px;
}
.shuttle-detail-content .timetable-container .timetable .timetable-header .th-item:last-child{
    border-top-right-radius: 12px;
}
.shuttle-detail-content .timetable-container .timetable .timetable-header .th-item.thead-stops{}
.shuttle-detail-content .timetable-container .timetable .timetable-header .th-item > span{}
.shuttle-detail-content .timetable-container .timetable .timetable-grid{
    position: relative;
}
.shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row,
.shuttle-detail-content .timetable-container .timetable .timetable-header{
    display: flex;
    width: fit-content;
    position: relative;
    min-height: 60px;
}
.shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row .station-name.time-item,
.shuttle-detail-content .timetable-container .timetable .timetable-header .th-item.thead-stops{
    width: 200px;
    position: sticky;
    left: 0;
    z-index: 10;
    justify-content: flex-start;
    padding: 0 16px;
    background-color: #EFF4FA;
    color: var(--color-primary);
    border-left: 1px solid #CED4DA;
    /* border-left: none; */
}
.shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row .time-item,
.shuttle-detail-content .timetable-container .timetable .timetable-header .th-item{
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 74px;
    border-right: 1px solid #CED4DA;
    border-bottom: 1px solid #CED4DA;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
}
.shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row:first-child .time-item{
    /* border-top: 1px solid #CED4DA; */
}
.shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row:first-child .time-item:first-child{
    /* border-top-left-radius: 12px; */
}
.shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row:first-child .time-item:last-child{
    /* border-top-right-radius: 12px; */
}
.shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row:last-child .time-item{}
.shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row:last-child .time-item:first-child{
    border-bottom-left-radius: 12px;
}
.shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row:last-child .time-item:last-child{
    border-bottom-right-radius: 12px;
}

/* 자율 주행 셔틀 표시 */
.shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row .time-item.notice{}
.shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row .time-item.notice::before{}
.shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row .time-item.notice > span{
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 4px;
    padding: 4px 0;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row .time-item[class*="except-"]{
    display: flex;
    align-items: center;
    column-gap: 4px;
}

.shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row .time-item[class*="except-"] > span{
    border-radius: 30px;
    width: 55px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row .time-item[class*="except-"]::before{
    /* content: ""; */
    display: block;
    width: 6px;
    aspect-ratio: 1/1;
    border-radius: 50%;
}
.shuttle-detail-container .timetable-except .type-1::before,
.shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row .time-item.except-type-1::before,
.shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row .time-item.except-type-1 > span{
    color: #fff;
    background-color: var(--color-except-type-1);
}
.shuttle-detail-container .timetable-except .type-2::before,
.shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row .time-item.except-type-2::before,
.shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row .time-item.except-type-2 > span{
    color: #fff;
    background-color: var(--color-except-type-2);
}
.shuttle-detail-container .timetable-except .type-3::before,
.shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row .time-item.except-type-3::before,
.shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row .time-item.except-type-3 > span{
    color: #fff;
    background-color: var(--color-except-type-3);
}
.shuttle-detail-container .timetable-except .type-4::before,
.shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row .time-item.except-type-4::before,
.shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row .time-item.except-type-4 > span{
    color: #fff;
    background-color: var(--color-except-type-4);
}
.shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row .time-item.empty{}
.shuttle-detail-content .location-container{
    margin-top: 80px;
}
.shuttle-detail-content .location-container .location{
    margin-top: 28px;
}
.location-container{}
.location-container .location{}
.location-container .location > ul{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 20px;
}
.location-container .location > ul > li{}
.location-container .location > ul > li > div{
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    height: 100%;
}
.location-container .location > ul > li > div .text{
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}
.location-container .location .item-title{}
.location-container .location .list-dot{
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}
.location-container .location .list-dot .list-item{
    display: flex;
    align-items: baseline;
    column-gap: 8px;
}
.location-container .location .list-dot .list-item::before{
    content: "•";
    display: block;
}
.location-container .location .list-dot .list-item [class*="pass-color-"]{
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    padding: 2px 12px;
    min-height: 28px;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.location-container .location .list-dot .list-item .pass-color-white{
    border-color: #CED4DA;
    background-color: #fff;
    color: var(--color-text);
}
.location-container .location .list-dot .list-item .pass-color-white::before{
    content: "White";
}
.location-container .location .list-dot .list-item .pass-color-blue{
    border-color: #0968FF;
    background-color: #0968FF;
    color: #fff;
}
.location-container .location .list-dot .list-item .pass-color-blue::before{
    content: "Blue";
}
.location-container .location .list-dot .list-item .pass-color-yellow{
    border-color: #D4B816;
    background-color: #D4B816;
    color: #fff;
}
.location-container .location .list-dot .list-item .pass-color-yellow::before{
    content: "Yellow";
}
.location-container .location .image{
    width: 100%;
    aspect-ratio: 55/40;
    position: relative;
}
.location-container .location .image > a{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* a 링크가 없는 경우 */
.location-container .location .image > a[href="#"] {
    pointer-events: none;
    cursor: default;
}

.location-container .location .image > a > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.location-container .location .image > a > .tag{
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    padding: 0 36px;
    height: 64px;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    transition: all var(--transition);
    /* transform-origin: left bottom; */
}

/* a 링크가 없는 경우 */
.location-container .location .image > a[href="#"] > .tag{
    display: none;
}

.location-container .location .image > a:hover > .tag{
    transform: scale(1.05);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
}
.location-container .location .image > a > .tag::after{
    content: "";
    width: 24px;
    height: 24px;
    background-image: url(/shared/images/ico-marker.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top 3px;
}
.location-container .location .note{}
.location-container .location .note .description{}
.shuttle-detail-content .information{
    margin-top: 80px;
}
.shuttle-detail-content .information .info-list{}
.shuttle-detail-content .information .info-list ul{
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}
.shuttle-detail-content .information .info-list ul li{
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text);
    display: flex;
    align-items: baseline;
    column-gap: 8px;
}
.shuttle-detail-content .information .info-list ul li::before{
    content: "•";
    display: block;
}
.additional-info-container{}
.autonomous-container{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}
.autonomous-container .item-title{}
.autonomous-container .description{}
.autonomous-container .image{}
.autonomous-container .image > img{
    width: 100%;
    max-width: 100%;
}

.custom-route-content{
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}
.custom-route-content .description{
    line-height: 1.4;
}
.custom-route-content .description .highlight-blue  {
    color: var(--color-primary);
    font-weight: 700;
}
.custom-route-content .btn-group .btn-link{
    color: #fff;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
.custom-route-content .btn-group .btn-link::after{
    background-color: #fff;
}

@media (hover: hover) {
    .shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row:hover{
        filter: brightness(0.95);
        z-index: 20;
    }
    .shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row .time-item:not(.station-name):hover{
        transform: scale(1.1);
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
        border: none;
        background-color: var(--color-primary);
        color: #fff;
        z-index: 10;
    }
}

/* Responsive */
@media screen and (max-width: 768px) {
    .shuttle-detail-container{
        /* padding-bottom: var(--height-detail-link); */
        min-height: 100vh;
    }
    .shuttle-detail-visual{
        min-height: 160px;
    }
    .shuttle-detail-content{
        padding: 0;
    }
    .shuttle-detail-content > .inner{
        padding: 0;
    }
    .shuttle-detail-content .content{
        border-radius: 0;
    }
    .shuttle-detail-content .tab-container-direct .tab-header-direct > button{
        font-size: 16px;
        height: 44px;
        border-radius: 0;
    }
    .shuttle-detail-content .tab-container-direct .tab-content-direct{
        padding: 32px 16px;
    }
    .shuttle-detail-container .main-title{
        column-gap: 4px;
    }
    .shuttle-detail-container .main-title::before{
        width: 24px;
    }
    .shuttle-detail-content .tab-container-route{
        margin-top: 20px;
    }
    .shuttle-detail-content .tab-container-route .tab-header-route > button{
        font-size: 16px;
        min-height: 28px;
        padding: 2px 16px;
    }
    .shuttle-detail-content .route-container{
        padding: 20px 16px;
    }
    .shuttle-detail-content .route-container .route{
        overflow: hidden;
    }
    .shuttle-detail-content .route-container .route > ul{
        display: flex;
        flex-direction: column;
        padding: 12px;
    }
    .shuttle-detail-content .route-container .route > ul > li{
        height: auto;
        align-items: center;
    }
    .shuttle-detail-content .route-container .route > ul > li.long-gap{
        padding-bottom: 60px;
    }
    .shuttle-detail-content .route-container .route > ul > li.long-gap::after{
        height: calc(100% + 28px);
        top: 2px;
        bottom: auto;
        background: repeating-linear-gradient(to bottom, #fff 0, #fff 6px, transparent 6px, transparent 10px) center/2px 100% no-repeat, #505050 !important;
        border: none;
        outline: none !important;
        clip-path: none !important;
    }
    .shuttle-detail-content .route-container .route > ul > li > div{
        position: relative;
        top: auto !important;
        left: auto !important;
        bottom: auto !important;
        right: auto !important;
        transform: none;
        width: 100%;
        height: auto;
    }
    .shuttle-detail-content .route-container .route > ul > li span{
        display: block;
    }
    .shuttle-detail-content .route-container .route > ul > li::after{
        width: 4px !important;
        height: calc(100% + 60px) !important;
        left: 7px !important;
        bottom: auto;
        top: 50% !important;
        border-radius: 0 !important;
    }
    .shuttle-detail-content .route-container .route > ul > li.long-gap::after{
        top: 2px !important;
    }
    .shuttle-detail-content .route-container .route > ul > li:last-child::after{
        display: block;
        height: calc(50% + 12px) !important;
        bottom: -12px;
        top: auto !important;
        border-color: #fff !important;
    }
    .shuttle-detail-content .route-container .route > ul > li[class*="marker-"]::before{
        width: 32px;
        top: auto;
        left: -7px;
        background-size: 22px;
    }
    .shuttle-detail-content .route-container .route > ul > li:not([class*="marker-"]){
        column-gap: 22px;
    }
    .shuttle-detail-content .accommodation-container{
        padding: 20px 16px;
    }
    .shuttle-detail-content .accommodation-container .title{
        font-size: 20px;
    }
    .shuttle-detail-content .accommodation-container .note{
        font-size: 14px;
        /* margin-top: 4px; */
    }
    .shuttle-detail-content .accommodation-container .accommodation-list{
        /* margin-top: 12px; */
    }
    .shuttle-detail-content .accommodation-container .accommodation-list > ul{
        /* row-gap: 12px; */
    }
    .shuttle-detail-content .accommodation-container .accommodation-list > ul > li > div{
        /* row-gap: 4px; */
    }
    .shuttle-detail-content .accommodation-container .accommodation-list .station{
        font-size: 16px;
    }
    .shuttle-detail-content .accommodation-container .accommodation-list .hotels{
        font-size: 16px;
    }
    /* .shuttle-detail-content .timetable-container .timetable-wrap{
        width: calc(100% + 32px);
        left: -16px;
    } */
    .shuttle-detail-content .timetable-container .timetable-info{
        padding: 20px 16px;
    }
    .shuttle-detail-content .timetable-container .timetable-info > ul > li > div{
        flex-direction: column;
    }
    .shuttle-detail-content .timetable-container .timetable-info > ul > li > div > span{
        font-size: 16px;
    }
    .shuttle-detail-content .timetable-container > .item-title{
        margin-top: 32px;
    }
    .shuttle-detail-container .timetable-except{
        font-size: 14px;
        margin-top: 8px;
    }
    .shuttle-detail-container .timetable-except [class*="type-autonomous"]{
        font-size: 16px;
    }
    .shuttle-detail-container .timetable-except [class*="type-autonomous"]::before{
        width: 20px;
    }
    .shuttle-detail-content .timetable-container .timetable-date-selector button{
        font-size: 16px;
        height: 28px;
        padding: 0 16px;
    }
    .shuttle-detail-content .timetable-container .timetable-wrap{
        margin-top: 8px;
    }
    .shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row .time-item, .shuttle-detail-content .timetable-container .timetable .timetable-header .th-item{
        font-size: 14px;
    }
    .shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row, .shuttle-detail-content .timetable-container .timetable .timetable-header{
        min-height: 48px;
    }
    .shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row .station-name.time-item, .shuttle-detail-content .timetable-container .timetable .timetable-header .th-item.thead-stops{
        width: 120px;
        padding: 0 8px;
        line-height: 1;
    }
    .shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row .time-item, .shuttle-detail-content .timetable-container .timetable .timetable-header .th-item{
        width: 50px;
    }
    .shuttle-detail-content .timetable-container .timetable .timetable-grid .station-row .time-item.notice > span{
        min-width: 45px;
        padding: 2px 0;
    }
    .shuttle-detail-container .timetable-note{
        font-size: 16px;
        margin-top: 8px;
    }
    .shuttle-detail-content .location-container{
        margin-top: 32px;
    }
    .shuttle-detail-content .location-container .location{
        margin-top: 20px;
    }
    .location-container .location > ul{
        grid-template-columns: repeat(1, 1fr);
        row-gap: 24px;
    }
    .location-container .location > ul > li > div{
        row-gap: 8px;
    }
    .location-container .location .image > a > .tag{
        font-size: 16px;
        height: 48px;
        padding: 0 16px;
        column-gap: 4px;
        font-weight: 500;
    }
    .location-container .location .list-dot .list-item{
        column-gap: 4px;
    }
    .location-container .location .list-dot .list-item [class*="pass-color-"]{
        font-size: 14px;
        min-height: 24px;
        padding: 2px 8px;
    }
    .shuttle-detail-content .information{
        margin-top: 32px;
    }
    .shuttle-detail-container .section-title{
        font-size: 20px;
        padding-bottom: 8px;
        margin-bottom: 16px;
    }
    .shuttle-detail-content .information .info-list ul li{
        font-size: 14px;
        column-gap: 4px;
    }
    .autonomous-container{
        margin-top: 32px;
        row-gap: 8px;
    }
    .custom-route-content .btn-group .btn-md{
        font-size: 14px;
        min-height: 32px;
    }
    .custom-route-content .btn-group .btn-md.btn-link::after{
        width: 16px;
    }
}