.vte-topbar{
height:var(--topbar-height);
background:linear-gradient(90deg,var(--sun1),var(--sun2),var(--sun3));
color:#fff;
font-size:13px;
display:flex;
align-items:center;
}

.vte-top-inner{
max-width:var(--container);
margin:auto;
width:100%;
display:flex;
align-items:center;
justify-content:space-between;
gap:14px;
padding:0 14px;
}

.top-left{
display:flex;
align-items:center;
}

.top-right{
display:flex;
align-items:center;
gap:8px;
flex-shrink:0;
}

.social img{
width:20px;
height:20px;
}

.social img:hover{
transform:scale(1.1);
}

/* buttons */
.track-btn,
.b2b-btn{
background:#fff;
color:#ee0979;
padding:5px 14px;
border-radius:20px;
font-weight:700;
text-decoration:none;
display:inline-flex;
align-items:center;
}

/* ticker */
.ticker{
flex:1;
overflow:hidden;
white-space:nowrap;
}

.ticker-text{
display:inline-block;
padding-left:20px;
animation:scrollRTL 22s linear infinite;
color:#fff;
font-weight:700;
text-decoration:none;
}

@keyframes scrollRTL{
0%{transform:translateX(100%)}
100%{transform:translateX(-100%)}
}