.bottom-timer-banner {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100000;
    box-sizing: border-box;
    min-height: 44px;
    background: #ff6417;
    color: #fff;
    box-shadow: 0 -8px 24px rgba(60,57,75,.15);
}

.bottom-timer-banner * {
    box-sizing: border-box;
}

.bottom-timer-banner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    max-width: 1920px;
    min-width: 280px;
    margin: 0 auto;
    padding: 8px 56px 8px 8px;
    text-align: center;
}

.bottom-timer-banner__text {
    font-family: Oswald,Arial,Helvetica CY,Nimbus Sans L,sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    text-transform: uppercase;
}

.bottom-timer-banner__text p {
    margin: 0;
}

.bottom-timer-banner__text a {
    color: #fff;
    text-decoration: underline;
}

.bottom-timer-banner__countdown {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 0;
    min-height: 28px;
    margin-left: 18px;
    border: 2px solid #4837ad;
    border-radius: 26px;
    background: #4837ad;
    padding: 0 16px;
    font-family: Oswald,Arial,Helvetica CY,Nimbus Sans L,sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.bottom-timer-banner__close {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 28px;
    height: 28px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
}

.bottom-timer-banner__close:before,
.bottom-timer-banner__close:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 1px;
    background: currentColor;
}

.bottom-timer-banner__close:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.bottom-timer-banner__close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width:720px) {
    .bottom-timer-banner__inner {
        flex-direction: column;
        padding: 8px 56px 8px 8px;
    }

    .bottom-timer-banner__countdown {
        min-height: 28px;
        width: 100%;
        max-width: 290px;
        margin-top: 8px;
        margin-left: 0;
        padding: 0 16px;
    }
}
