.hellobar-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 44px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    min-height: 40px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

a.hellobar-wrap.hellobar-link {
    text-decoration: none;
    display: flex;
    transition: opacity 0.2s;
}

a.hellobar-wrap.hellobar-link:hover {
    opacity: 0.9;
    text-decoration: none;
}

.hellobar-message {
    flex: 1;
}

.hellobar-message a {
    color: inherit;
    text-decoration: underline;
}

.hellobar-countdown {
    display: inline-block;
    margin-left: 10px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.hellobar-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: inherit;
    opacity: 0.65;
    padding: 2px 8px;
    transition: opacity 0.2s;
    z-index: 1;
}

.hellobar-close:hover {
    opacity: 1;
}

@media (max-width: 767px) {
    .hellobar-wrap {
        font-size: 12px;
        padding: 8px 36px;
        min-height: 36px;
    }
    .hellobar-close {
        right: 6px;
        font-size: 18px;
    }
}
