.sunoti-marquee {
    background: #fff;
    padding: 10px 0;
    font-family: sans-serif;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    position: relative;
}
.sunoti-marquee-inner {
    display: flex;
    align-items: center;
    overflow: hidden;
    flex: 1;
    position: relative;
}
.sunoti-marquee-track {
    display: inline-flex;
    gap: 30px;
    white-space: nowrap;
    overflow-x: auto;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.sunoti-marquee-track::-webkit-scrollbar {
    display: none;
}
@media (hover: hover) {
  .sunoti-marquee-inner:hover .sunoti-marquee-track {
      animation-play-state: paused !important;
  }
}
.sunoti-marquee-item {
    display: inline-flex;
    align-items: center;
    color: #111;
    text-decoration: none;
    flex-shrink: 0;
    font-weight: bold;
	background:#f9f9f9;
	border-radius:50px;
	padding-right:12px;
	border:1px solid #f1f1f1;
}
.sunoti-marquee-thumb-wrapper {
    position: relative;
    width: 32px;
    height: 32px;
    margin-right: 8px;
    flex-shrink: 0;
}
.sunoti-marquee-thumb {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #ccc;
}
.sunoti-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    z-index: 1;
    display: none; /* 🔁 IMPORTANTE: oculto por defecto */
    align-items: center;
    justify-content: center;
}

.sunoti-spinner::before {
    content: "";
    width: 20px;
    height: 20px;
    border: 2px solid #1e90ff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
.sunoti-verificado {
    width: 16px;
    height: 16px;
    margin-left: 5px;
    vertical-align: middle;
    flex-shrink: 0;
}
.sunoti-marquee-item.item-post {
    color: #111;
}
.sunoti-marquee-item.item-fotos {
    color: #1e90ff;
}
.sunoti-marquee-item.item-videos {
    color: #e91e63;
}
