.description {
    display: flex !important;
    justify-content: start;
    align-items: center;
    min-height: 63px;
    background-color: #27AE00;
    -webkit-clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
    padding: 10px 22px;
    font-size: 18px;
    color: #fff;
    font-family: "RobotoCondensed-Italic";
    font-weight: 400;
    font-style: italic;
    transition: 0.7s all;
    -webkit-transition: 0.7s all;
    -moz-transition: 0.7s all;
    cursor: pointer;
    word-break: break-all;
}

.description:hover {
    color: #fff;
}

.date {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    height: 63px;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}

.date-past {
    background-color: #228006;
}

.date-now {
    background-color: #27AE00;
}

.date-next {
    background-color: #FFFFFF;
    color: #252A37;
}

.date > span {
    font-size: 23px;
    color: #fff;
    font-family: "RobotoCondensed-Italic";
    font-weight: 400;
    font-style: italic;
}

.date-next > span {
    color: #252A37;
}

.text-report {
    font-size: 16px;
    color: #9498AB;
    font-family: "RobotoCondensed-Italic";
    font-weight: 400;
    font-style: italic;
}

.timetable {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s all;
    -webkit-transition: 1s all;
    -moz-transition: 1s all;
}

@media (min-width: 1025px) {
    .description {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .description:hover {
        transform: translateX(80px);
    }
}

@media (max-width: 1559px) {
    .date > span {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .table-row {
        display: flex !important;
        flex-direction: column-reverse !important;
    }

    .date > span {
        font-size: 18px;
    }

    .date {
        width: max-content;
        height: 0;
        border-radius: 50px;
        padding: 18px;
        margin-left: auto;
        margin-bottom: 14px;
    }
}

@media (max-width: 575px) {
    .date > span {
        font-size: 16px;
    }

    .description {
        font-size: 16px;
    }
}