.vox-preheader-container {
    --vph-weight: 500;
    --vph-weight-link: 600;
    --vph-size: 14px;
    --vph-bg-color: black;
    --vph-color: white;

    text-align: center;
    overflow: hidden;
    position: relative;
    height: 32px;
    line-height: 32px;
    font-size: var(--vph-size);
}

.vox-preheader-slider {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--vph-bg-color);
}

.vox-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.vox-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 2;
}

.vox-slide .vox-message-text {
    font-weight: var(--vph-weight);
    color: var(--vph-color);
}

.vox-preheader-container .vox-slide a.vox-message-link {
    color: var(--vph-color);
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    font-weight: var(--vph-weight-link);
}
.vox-preheader-container .vox-slide a.vox-message-link:hover {
    color: var(--vph-color);
    text-decoration: underline;
}