.trip_info {
    width: 100%;
    display: flex;
    flex-direction: column;

}

.basic_info_wrapper {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    height: fit-content;
    /* max-width: 400px; */
    width: 100%;
    /* margin-right: 80px; */
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0px 1px 5px 0px #dcd1d1;
}

.trip_header {
    padding: 20px;
    border-bottom: 1px solid #E6F8EB;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.trip_body {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    justify-content: space-between;
}

.trip_body .item {
    min-width: 380px;
    margin: 4px 0;
}

.trip_body .item h6 {
    font-size: 0.8rem;
    color: #303030;
    font-weight: 600;
    line-height: 2rem;
}


.trip_body .item p {
    font-size: 0.7rem;
    color: #6D6D6D;
}


.trip_diagram_wrap {
    margin: 12px 0;
}

.starter_section {
    display: flex;
    flex-direction: row;
}

.section_timeline_line {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    position: relative;
    /* margin: 0 16px; */

}

.section_timeline_line img {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0;
}

.section_main_title {
    height: fit-content;
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid #9090a1;
    font-size: 0.8rem;
    font-weight: 600;
    position: relative;
    top: -5px;
    right: 14px;
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub_item_title {
    height: fit-content;
    display: block;
    padding: 4px 8px;
    border-radius: 8px;
    background-color: #000000;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 10px;
}

.line {
    width: 2px;
    height: 100%;
    background-color: black;
}

.timeline_item_details_wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-top: 12px;
}

.timeline_detail {
    padding: 8px;
    font-size: 0.8rem;
}

.details {
    position: relative;
    margin-left: 20px;
   
}

.details p {
    font-size: 0.7rem;
    margin-left: 20px;
    margin-bottom: 8px;
    
}

.details .desc{
    display: none;
}

.details img {
    width: 20px;
    height: 20px;
}

.details::before {

    content: '';
    position: absolute;
    top: 10px;
    left: -28px;
    width: 30px;
    height: 3px;
    border-bottom: 2px dotted #6e6e6e;
}

.details::after{
    content: url(../img/icons//point2.png);
    position: absolute;
    top: 8px;
    left: -42px;
    width: 33px;
    height: 3px;
    transform: scale(0.5);
} 

.sub_min_detail {
    display: table;
    font-size: 0.7rem;
    color: #707085;
    width: auto;
    background-color: #f0f0f0;
    padding: 4px 8px;
    border-radius: 4px;
}

.view-more-btn{
    border: none;
    background-color: transparent;
    color: #707085;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 20px;
}