.marqueue {
    background: #191919;
    color: #fff;
}
.maqueue-container {
    display: flex;
    align-items: center;
    margin: 0 auto;
    max-width: fit-content;
}
.marqueue ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin: 10px;
    height: 30px;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.marqueue li {
    text-align: center;
    transition: .3s all;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    word-break: keep-all;
    width: max-content;
    text-align: center;
}

.marqueue li._active {
    opacity: 1;
    visibility: visible;
}

.marqueue-arrow {
    cursor: pointer;
}