.tour_info ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    padding: 0;
    margin: 0;
    position: relative;
}

.tour_info li {
    list-style: none;
    display: flex;
    flex-direction: column;
    background: none;
    position: relative;
}

.col-small {
    flex: 1
}

.col-medium {
    flex: 2
}

.col-large {
    flex: 3
}

.col-xlarge {
    flex: 4
}

.tour_info .title {
    background: #c89b43;
    color: #fff;
    padding: 10px 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .5px;
    white-space: nowrap;
    text-align: center
}

.tour_info .value {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #f6f6f6;
    padding: 12px;
    color: #333;
    font-size: 15px;
    line-height: 1.4;
    max-width: 100%;
    min-height: 44px;
}

.price-text,
.destination-truncated {
    flex: 1 1 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.info-icon {
    flex: 0 0 auto;
    border: 1px solid #c89b43;
    background: #c89b43;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.popup-box {
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    margin-top: 4px;
    background: #fff;
    padding: 12px;
    font-size: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
     max-width: 300px;
    width: max-content;
    z-index: 1000;
    text-align: left;
    white-space: normal;
    border: 1px solid #ddd;
    border-radius: 6px;
    pointer-events: auto;
}

.tour_info .value.show-full .popup-box {
    display: block !important;
}

@media(max-width:768px) {
    .tour_info {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        padding-bottom: 10px;
        position: relative;
    }

    .tour_info ul {
        width: max-content;
        gap: 10px;
        position: relative;
    }

    .tour_info li {
        min-width: 180px;
        flex: 0 0 auto;
        position: relative;
    }

    .popup-box {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin-top: 0 !important;
        max-width: 90vw !important;
        width: auto !important;
        z-index: 9999 !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    }

    .popup-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /* background: rgba(0, 0, 0, 0.5); */
        z-index: 9998;
    }

    .value.show-full~.popup-overlay {
        display: block;
    }
}

@media(max-width:600px) {
    .tour_info .value {
        max-width: 100vw
    }

    .info-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

.tour_info .value {
    min-height: 55px;
}




/* remove this css from server */
/* https: //indiatoursandtravels.com/css/responsive.css 
@media screen and (max-width: 480px) {
    .tour_info ul {
        /* flex-direction: column; 
        text-align: center;
    }
}*/

/* https: //indiatoursandtravels.com/css/style.css 
.tour_info ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0;
}
    
.tour_info ul li {
 padding: 0px 10px; 
 position: relative; 
 color: #cd9b4f; 
 font-size: 18px; 
 text-transform: uppercase; 
 border-right: 1px solid #d8d8d8; 
 letter-spacing: 1px; 
 width: fit-content !important; 
 text-align: left !important; 
}
/* end of remove this css from server */