#ap-player {
    background-color: #e24232;
    width: 100%;
    height: 80px;
    border-radius: 40px;
    overflow: hidden;
}

#ap-player .ap-player-wrap {
    display: flex;
    height: 100%;
}

#ap-player .ap-player-left {
    display: flex;
    align-items: center;
    padding-left: 18px;
}

#ap-player .ap-player-right {
    width: 100%;
    overflow: hidden;
}

.ap-right-state-live {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    padding-top: 15px;
}

.ap-right-state-stop {
    font-size: 30px;
    text-align: right;
    font-style: italic;
    font-weight: 900;
    color: #ffffff;
    line-height: 31px;
    padding-right: 30px;
    padding-top: 8px;
}

.ap-live-text-loop {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

.ap-live-text-loop .marquee {
    /* font-weight: bold; */
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

#playBtn {
    display: flex;
    border-radius: 100%;
    height: 50px;
    width: 50px;
    padding: 0 0;
    justify-content: center;
    align-items: center;

    cursor: pointer;
    border: none;
    background: #ffffff;
    color: white;
}

#playBtn svg {
    width: 30px;
    height: 30px;
    fill: #e24232;
    /* margin-left: 5px; */
}

#playBtn.inverse {
    background: #000000;
}

#playBtn.inverse svg {
    fill: #ffffff;
}

#visualizer {
    display: block;
    width: 100%;
    /* height: 80px; */
    margin: 0px auto 0;
    background: transparent;
}

.canvas-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
