.Timeline {
    display: flex;
    align-items: center;
    height: 200px;
    margin-top: 20px;
}

.event {
    position: relative;
}

.event1Bubble {
    position: absolute;
    background-color: rgba(158, 158, 158, 0.1);
    width: 140px;
    height: 70px;
    top: -80px;
    left: -15px;
    border-radius: 5px;
    box-shadow: inset 0 0 5px rgba(158, 158, 158, 0.64)
}

.event2Bubble {
    position: absolute;
    background-color: rgba(158, 158, 158, 0.1);
    width: 140px;
    height: 70px;
    left: -105px;
    top: 35px;
    border-radius: 5px;
    box-shadow: inset 0 0 5px rgba(158, 158, 158, 0.64)
}

.event1Bubble:after,
.event1Bubble:before,
.event2Bubble:after,
.event2Bubble:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-bottom: 0;
}

.event1Bubble:before {
    bottom: -10px;
    left: 13px;
    border-top-color: lightgray;
    border-width: 12px;
}

.event1Bubble:after {
    bottom: -8px;
    left: 13px;
    border-top-color: #f6f6f6;
    border-width: 12px;
}

.event2Bubble:before {
    bottom: 70px;
    left: 103px;
    border-top-color: lightgray;
    border-width: 12px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.event2Bubble:after {
    bottom: 67px;
    left: 103px;
    border-top-color: #f6f6f6;
    border-width: 12px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.eventTime {
    margin-top: 3px;
    display: flex;
}

.DayDigit {
    font-size: 23px;
    font-family: "Arial Black", Gadget, sans-serif;
    margin-left: 7px;
    color: #4c4a4a;
}

.Day {
    font-size: 11px;
    margin-left: 5px;
    font-weight: bold;
    margin-top: 10px;
    font-family: Arial, Helvetica, sans-serif;
    color: #4c4a4a;
}

.MonthYear {
    font-weight: 600;
    line-height: 10px;
    color: #9e9e9e;
    font-size: 9px;
}

.eventTitle {
    font-family: "Arial Black", Gadget, sans-serif;
    color: #a71930;
    font-size: 9px;
    text-transform: uppercase;
    display: flex;
    flex: 1;
    align-items: center;
    margin-left: 7px;
}

.time {
    position: absolute;
    font-family: Arial, Helvetica, sans-serif;
    width: 50px;
    font-size: 9px;
    margin-top: -3px;
    margin-left: 1px;
    color: #9e9e9e;
}

.eventAuthor {
    position: absolute;
    font-family: Arial, Helvetica, sans-serif;
    color: #9e9e9e;
    font-size: 8px;
    width: 100px;
    top: -8px;
    left: 63px;
}

.event2Author {
    position: absolute;
    font-family: Arial, Helvetica, sans-serif;
    color: #9e9e9e;
    font-size: 8px;
    width: 100px;
    top: 96px;
    left: -32px;
}

.time2 {
    position: absolute;
    font-family: Arial, Helvetica, sans-serif;
    width: 50px;
    font-size: 8px;
    margin-top: -31px;
    margin-left: -5px;
    color: #9e9e9e;
}

.now {
    background-color: #004165;
    color: white;
    border-radius: 7px;
    margin: 1px;
    padding: 3px;
    font-size: 9px;
    font-family: Arial, Helvetica, sans-serif;
    border: 2px solid white;
    font-weight: bold;
    box-shadow: 0 0 0 2px #004165
}

.futureGray {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);

}

.futureOpacity {
    -webkit-filter: opacity(.3);
    filter: opacity(.3);

}

@media (max-width: 768px) {
    .Timeline {
        margin-left: 10px;
    }
}
@media (max-width: 666px) {
    .event1Bubble, .event2Bubble{
        width: 113px;
    }
    .event2Bubble{
        left: -81px;
    }
    .event2Bubble:before {
        left: 79px;
    }
    .event2Bubble:after {
        left: 79px;
    }
    .DayDigit{
        font-size: 19px;
    }
    .eventTitle{
        font-size: 8px;
    }
}
@media (max-width: 566px) {
    .event1Bubble, .event2Bubble{
        width: 80px;
    }
    .event2Bubble{
        left: -46px;
    }
    .event2Bubble:before {
        left: 44px;
    }
    .event2Bubble:after {
        left: 44px;
    }
    .DayDigit{
        font-size: 13px;
    }
    .eventTitle{
        font-size: 8px;
    }
}
@media (max-width: 444px) {
    .event1Bubble, .event2Bubble{
        width: 58px;
        height: 60px;
    }
    .event2Bubble{
        left: -24px;
        top: 40px;
    }
    .event2Bubble:before {
        left: 22px;
        bottom: 58px;
    }
    .event2Bubble:after {
        left: 22px;
        bottom: 55px;
    }
    .DayDigit{
        font-size: 10px;
        margin-left: 4px;
    }
    .eventTitle{
        margin-top: 7px;
        font-size: 6px;
        margin-left: 4px;
    }
}
