#top-banner
{
    display: flex;
    align-items: center;
    padding: 6px 140px;
    height: 40px;
    position: relative;
}

#top-banner.columns-1
{
    justify-content: center;
}

#top-banner.columns-2
{
    justify-content: space-evenly;
}

#top-banner.columns-3
{
    justify-content: space-between;
}

#top-banner p,
#top-banner span,
#top-banner a
{
    margin-bottom: 0;
    font-size: 15px;
    line-height: 18px;
    color: inherit;
    text-transform: uppercase;
    box-sizing: border-box;
}

#top-banner a
{
    font-weight: bold;
    margin-left: 5px;
}

#top-banner .top-banner_center,
#top-banner .top-banner_countdown-clock,
#top-banner .top-banner_countdown-clock .clock-part
{
    display: flex;
    align-items: center;
}

#top-banner .top-banner_countdown-clock
{
    margin-left: 15px;
    user-select: none;
}

#top-banner .top-banner_countdown-clock .clock-part
{
    flex-flow: row wrap;
    justify-content: center;
}

#top-banner .top-banner_countdown-clock .clock-part .clock-digit
{
    width: 14px;
    text-align: center;
    display: block;
    padding: 0 2px;
    user-select: none;
}

#top-banner .top-banner_countdown-clock .clock-part .clock-label
{
    font-size: 10px;
    line-height: 10px;
    flex-basis: 100%;
    text-align: center;
    user-select: none;
}

@media (max-width: 767px)
{
    #top-banner
    {
        padding: 6px 20px;
        height: max-content !important;
    }

    #top-banner .top-banner_text-left,
    #top-banner .top-banner_text-right
    {
        display: none;
    }

    #top-banner .top-banner_center
    {
        flex-flow: row wrap;
        justify-content: center;
    }
    #top-banner .top-banner_center p,
    #top-banner .top-banner_center span,
    #top-banner .top-banner_center a
    {
        font-size: 12px;
    }
}

#top-banner .close-banner
{
    position: absolute;
    top: 50%;
    right: 10px;
    color: inherit;
    background-color: transparent;
    border: none;
    outline: none;
    transform: translateY(-50%);
}