#countDown-Wrapper {
    font-size: 0;
    z-index: 1;
    width: 272px;
    margin: 0 auto;
    --COLOR_COUNTDOWN: #333333;
    display: flex;
    justify-content: center;
}

#countDown-Wrapper .countDown-Group {
    display: inline-block;
    font-size: 0;
    margin: 0px;
    position: relative;
    width: 68px;
    text-align: center;
    padding-bottom: 25px;
    line-height: 20px;
}

#countDown-Wrapper .countDown-Group:not(:last-child)::after {
    content: " ";
    width: 0;
    height: 20px;
    border-right: 1px solid #b9b6b4;
    top: 0;
    right: 0;
    position: absolute;
}

#countDown-Wrapper .countDown-Label {
    font-family: "Gotham SSm medium A", "Gotham SSm medium B", "Gotham Medium",
        Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: var(--COLOR_COUNTDOWN);
    display: block;
    font-size: 11px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 11px;
}

#countDown-Wrapper .countDown-Digit {
    display: inline-block;
    height: 20px;
    overflow: hidden;
    width: 20px;
    position: relative;
    text-align: right;
    vertical-align: middle;
}

#countDown-Wrapper .countDown-Digit ul {
    display: block;
    margin: 0;
    padding: 0;
    font-family: "Gotham SSm medium A", "Gotham SSm medium B", "Gotham Medium",
        Helvetica, Arial, sans-serif;
    font-size: 26px;
    position: absolute;
    top: 0;
    left: 0;
    transition: none;
    color: var(--COLOR_COUNTDOWN);
}

#countDown-Wrapper .countDown-Digit.Anim ul {
    transition: top 0.5s ease-in-out;
}

#countDown-Wrapper .countDown-Digit ul li {
    display: block;
    height: 20px;
    line-height: 20px;
    text-align: center;
    margin-top: 0;
    margin: 0;
    padding: 0;
    border: 0px solid;
    max-width: none;
    width: 24px;
    box-sizing: content-box;
    float: none;
    color: var(--COLOR_COUNTDOWN);
}