/* .t888-history-wrapper {
   padding-right: 36px;
} */



.t888-year-block {
    margin-bottom: 60px;
}

.t888-year {
    font-family: 'Open Sans';
    display: flex;
    align-items: center;
    width: 100%;
    gap: 12px;
}

.t888-year-icon {
    margin-top: -30px;
}

.t888-year-left {
    color: #00377B;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}

.t888-year-content {
    margin-top: 60px;
}

.t888-year-line {
    flex: 1 1 auto;
    height: 4px;
    background: rgba(0, 55, 123, 0.10);
    margin-top: 30px;
}

.t888-year-toggle {
    position: relative;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
}

.t888-year-toggle::before {
    content: "";
    position: absolute;
    width: 28px;
    border-top: 4px solid #00377B;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.t888-year-toggle[aria-expanded="false"]::after {
    content: "";
    position: absolute;
    height: 28px;
    border-left: 4px solid #E90380;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.t888-year-toggle[aria-expanded="false"]::before {
    border-top-color: #E90380;
}


.t888-button-event {
    border-bottom: 4px solid rgba(0, 55, 123, 0.1);
    width: 100%;
    display: flex;
    justify-content: end;
}

.t888-event {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 120px 60px 120px;
}

.t888-event.is-reverse {
    margin-bottom: 0;
}

.t888-event-text {
    padding: 50px 90px 50px 60px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow:
        0 0 4px rgba(0, 0, 0, 0.15),
        0 2px 16px rgba(0, 0, 0, 0.15);
    max-width: 55.556%;
    z-index: 1;
}

.t888-event-date {
    display: inline-block;
    background: #00377B;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    padding: 5px 0px;
    border-radius: 4px;
    margin-bottom: 20px;
    align-items: center;
    width: 100%;
    text-align: center;
    line-height: 27px;
}

.t888-event-description {
    font-family: 'Open Sans';
    font-size: 16px;
    font-weight: 400px;
    line-height: 100%;
    letter-spacing: 0px;
    color: #1E1E1E;
    line-height: 22px;
}

/* ===== IMAGE ===== */

.t888-event-image {
    flex: 1;
    z-index: 2;
}

.t888-event-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.t888-event:not(.is-reverse) .t888-event-text {
    margin-right: -50px;
}

.t888-event.is-reverse {
    flex-direction: row-reverse;
}

.t888-event.is-reverse .t888-event-text {
    margin-left: -50px;
    padding: 50px 60px 50px 90px !important;
}

.t888-event+.t888-event {
    margin-top: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px){
.t888-event{
    margin: 0 40px;
}
}
@media (max-width: 767px) {
    .t888-event{
        margin: 0;
        gap: 15px;
    }
    .t888-event,
    .t888-event.is-reverse {
        flex-direction: column;
    }

    .t888-event-text,
    .t888-event.is-reverse .t888-event-text {
        max-width: 100%;
        margin: 2px ;
    }
    .t888-event:not(.is-reverse) .t888-event-text {
        margin-right: 2px;
    }
    .t888-event-text{
        padding: 20px;
    }
    .t888-year-left{
        font-size: 28px;
        line-height: 38px;
    }
    .t888-year-content{
        margin-top: 40px;
    }
    .t888-year-block{
        margin-bottom: 30px;
    }
    .t888-event-image{
        margin: 2px;
    }
}

/* //dong mơ  */
.t888-year-content {
    overflow: hidden;
    transition: height 0.35s ease, opacity 0.25s ease;
}

.t888-year-block.is-collapsed .t888-year-content {
    height: 0 !important;
    opacity: 0;
}



/* ICON XOAY */
.t888-year-block.is-collapsed .t888-year-toggle {
    transform: rotate(360deg);
}