.changelog_modal .modal-dialog {
    top: 2%;
    overflow: auto;
    max-width: 800px;
}

.timeline_container {
    width: 90%;
}

.timeline_date {
    padding-right: 10px;
    padding-top: 10px;
}

.timeline_date::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #d1d1d1;
    background: #75ce66;
    border: 3px solid #ffff;
    z-index: 1;
    margin-right: 20px;
}

.timeline_vertical_line {
    height: 100%;
    width: 2px;
    background: #d1d1d1;
    margin-right: 100px
}

.timeline_content {
    background: #ffffff;
    padding: 1rem 2rem;
    border-radius: 10px;
    border: 1px solid #CCCCCC;
    box-shadow: 0 0 4px rgba(128, 128, 128, 0.27);
    width: 100%;
    margin-right: 60px;
    margin-bottom: 3rem;
}

ul.timeline_descriptions {
    list-style-type: none;
    line-height: 2em;
}

ul.timeline_descriptions li::before {
    content: "  •  ";
    color: #CC9670;
}

.timeline_block:nth-child(2) .timeline_vertical_line{
    margin-top: 10px;
}

.timeline_block:last-child .timeline_vertical_line{
    bottom: 3rem;
}

@media screen and (max-width: 320px) {
    .timeline_block .timeline_vertical_line {
        opacity: 0;
    }
    .timeline_block {
        flex-wrap: wrap;
    }

    .timeline_content{
        margin-right: 0px !important;
        margin-top: 15px;
    }

    .timeline_date::after {
        margin-right: -90px;
    }

    .timeline_date {
        padding-right: 25px !important;
    }
}
