.countdown {
    display: flex;
    margin: 1rem 0;
    width: 100%;
}

.countdown .time {
    width: 25%;
    text-align: center;
    background: var(--red);
    color: var(--white);;
    padding: .8rem 0;
    margin: 0;
    position: relative;
}

.countdown .time::before {
    content: '';
    border-left: 1px solid rgba(255,255,255,.2);
    position: absolute;
    left: 0;
    height: calc(100% - .8rem * 2);
    top: .8rem;
}

.countdown .time b {
    display: block;
    font-weight: bold;
    line-height: 1;
    font-size: 1.4rem;
    margin-bottom: -4px;
}

.countdown .time .time-label {
    text-transform: uppercase;
    font-size: 10px;
    color: var(--white);
    line-height: 1;
}