div#one-timeline-popup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    background: #0009;
    backdrop-filter: blur(2px);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999999;
}
.timeline-contents {
    /*width: 30%;*/
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}
.timeline-contents .timeline-header {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}
.timeline-contents .timeline-header h3{
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 600;
}
.timeline-contents .timeline-history {
    padding: 20px;
    max-height: 80vh;
    overflow-y: auto;
}
.timeline-contents .timeline-history ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
span.close-timeline {
    transform: rotate(45deg);
    font-size: 28px;
    line-height: 28px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
}
.timeline-contents .timeline-history ul li.timeline-history {
    display: flex;
    padding: 0 10px;
    justify-content: space-between;
    align-items: center;
    height: 150px;
}
.timeline-contents p {
    margin: 0;
    font-size: 16px;
    font-weight: 100;
}
.history_info {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 5px;
    width: 50%;
    height: fit-content;
    box-shadow: 0px 0px 16px -7px;
}
.history_date {
    display: flex;
    align-items: center;
    width: 40%;
    height: 100%;
    position: relative;
}
.history_icon {
    border-radius: 50%;
    background: #ffba54;
    color: #fff;
    padding: 3px;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.history_date:after {
    content: "";
    width: 3px;
    height: 100%;
    /* height: calc(100% + 24px); */
    background: rgb(0 0 0 / 10%);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 14px;
}
/* .timeline-contents .timeline-history ul li:last-child .history_date:after{
    height: 100%;
} */
.history_date:before {
    content: "";
    width: 11px;
    height: 11px;
    background: #ffba54;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    border-radius: 50%;
    z-index: 9;
}
/*CUSTOM*/
.timeline-history-item {
    padding: 20px;
    max-height: 80vh;
    overflow-y: auto;
}
.timeline-text {
    font-size: 13px !important;
    color: #6c757d !important;
    font-style: italic;
}
/*RESPONSIVE*/
@media only screen and (max-width: 450px) {
    .timeline-contents .timeline-history ul li.timeline-history {
        height: 220px !important;
    }
    .history_date {
        white-space: normal;
    }
    .history_date p {
        margin-right:25px;
    }
}