

.hello-bar {
    --hello-bar-background: #030303;
    --hello-bar-background-hover: #252e3d;
    --hello-bar-text: #fff;
    --hello-bar-text-span: #ff44ef;
    --padding-top: 8px;
    --transition: 0.3s ease;
    transition: opacity var(--transition), max-height var(--transition), padding var(--transition);
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
}

.hello-bar--dismissed {
    max-height: 0;
    visibility: hidden;
    pointer-events: none;
    margin: 0;
}

@keyframes glowMove {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.hello-bar__container {
    position: relative;
}

.hello-bar__inner {
    position: relative;
}



.hello-bar__link {
    --hello-bar-left-offset: 0;
    --hello-bar-right-offset: 0;
    --hello-bar-close-size: 20px;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    inline-size: 100%;
    padding: var(--padding-top) calc(16px + var(--hello-bar-close-size)) 8px 16px;
    min-height: 40px;
    border-radius: 8px;
    background-color: var(--hello-bar-background);
    color: var(--hello-bar-text);
    text-decoration: none;
    overflow: hidden;
    transition: background-color var(--transition);
    z-index: 6;
}

.hello-bar__link:hover,
.hello-bar__link a:hover {
    text-decoration: none;
    background-color: var(--hello-bar-background-hover);
    cursor: pointer;
}

.hello-bar__link:focus {
    background-color: var(--hello-bar-background);
}

.hello-bar__link--shimmer::after {
    position: absolute;
    top: 50%;
    left: -20%;
    z-index: 5;
    display: block;
    width: 30%;
    height: 300%;
    pointer-events: none;
    content: '';
    filter: blur(60px);
    border-radius: 50%;
    transition: opacity 0.5s linear;
    transform: translateY(-50%);
    animation: glowMove 5s linear infinite;
    background-color: var(--hello-bar-shimmer-color);
}

.hello-bar__text {
    display: inline;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    color: inherit;
}

.hello-bar__text span {
    color: var(--hello-bar-text-span);
}

.hello-bar__text-wrap {
    position: relative;
    z-index: 6;
    text-align: left;
}

.hello-bar__icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.hello-bar__icon--left {
    margin-right: 6px;
    margin-top: -6px;
}

.hello-bar__icon--right {
    margin-left: 8px;
    margin-top: -6px;
}

.hello-bar__close {
    position: absolute;
    top: 16px;
    right: 8px;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--hello-bar-close-size);
    height: var(--hello-bar-close-size);
    padding: 0;
    border: none;
    background: none;
    color: inherit;
    cursor: pointer;
    transform: translateY(-50%);
    transition: opacity var(--transition);
}

.hello-bar__close:hover {
    opacity: 0.8;

}

.hello-bar__close svg {
    display: block;
}

.hello-bar__close svg path {
    fill: var(--hello-bar-close-color);
}

.hello-bar__decor {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    width: 534px;
    height: 100%;
    object-fit: cover;
}

.hello-bar__decor--left {
    left: var(--hello-bar-left-offset);
}

.hello-bar__decor--right {
    right: var(--hello-bar-right-offset);
    width: 526px;
}

@media (min-width: 768px) {
    .hello-bar__link {
        --hello-bar-left-offset: -444px;
        --hello-bar-right-offset: -396px;
        padding-right: calc(16px + var(--hello-bar-close-size));
        padding-left: 16px;
    }

    .hello-bar__decor {
        display: block;
    }

    .hello-bar__text-wrap {
        text-align: center;
    }
}

@media (min-width: 1024px) {
    .hello-bar__link {
        --hello-bar-left-offset: -324px;
        --hello-bar-right-offset: -260px;
    }
}

@media (min-width: 1280px) {
    .hello-bar__link {
        --hello-bar-left-offset: -228px;
        --hello-bar-right-offset: -100px;
    }
}

@media (min-width: 1536px) {
    .hello-bar__link {
        --hello-bar-left-offset: -132px;
        --hello-bar-right-offset: 0;
    }
}

@media (min-width: 1920px) {
    .hello-bar__link {
        --hello-bar-left-offset: 0;
    }
}