.countdown {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 16px;
    background-color: #111828;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 99999;
}
.countdown__title {
    font-family: "transducer", Arial, Helvetica;
    position: relative;
    padding-right: 78px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.countdown__title::after {
    position: absolute;
    right: 39px;
    content: " ";
    width: 1px;
    height: 100%;
    background-color: #EEE109;
}
.countdown__title__brand {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #EEE109;
    line-height: 1;
}
.countdown__title__dates {
    font-size: 16px;
}
.countdown__clock {
    display: flex;
    font-family: monospace;
}
.countdown__clock__counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}
.countdown__clock__counter + .countdown__clock__counter {
    position: relative;
    padding-left: 20px;
}
.countdown__clock__counter + .countdown__clock__counter::before {
    content: ":";
    position: absolute;
    left: 5px;
    top: 10px;
    font-size: 16px;
}
.countdown__clock__counter__number {
    font-size: 34px;
    font-weight: 700;
}
.countdown__clock__counter__text {
    font-size: 14px;
}

@media screen and (max-width: 568px) {
    .countdown {
        flex-direction: column;
    }
    .countdown__title {
        padding-right: 0;
        padding-bottom: 12px;
        margin-bottom: 12px;
    }
    .countdown__title::after {
        right: auto;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
    }
}