.countdowns {
    position: absolute;
    top: 60px;
}

.countdowns .countdown {
    margin-top: 10px;
    background: #eaeaea;
    padding: 5px;
    border-radius: 5px;
}

.countdowns .countdown .title {
    text-align: center;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.countdowns .countdown .timer {
    display: flex;
}

.countdowns .countdown .timer div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ccc;
    padding: 5px;
    border-radius: 5px;
    margin-right: 5px;
}

.countdowns .countdown .timer div:last-child {
    margin-right: 0;
}

.countdowns .countdown .timer div span {
    font-size: 1.3rem;
}