.placeholder {
    display: flex !important;
    position: relative;
    overflow: hidden;
    background-color: var(--text-disabled-color) !important;
    border-radius: 4px;
    opacity: 1 !important;
}

.placeholder img {
    display: none;
}

.timecode.placeholder {
    width: 35px;
    height: 18px;
}

.meta-title .title.placeholder {
    width: 100px;
    height: 20px;
}

.meta-title .subtitle.placeholder {
    width: 60px;
    height: 20px;
}

.meta-artists.placeholder {
    width: 80px;
    height: 18px;
}

.placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    /* Start the gradient off-screen to the left */
    width: 100%;
    /* Or larger to ensure full coverage during animation */
    height: 100%;
    background: #ffffff;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    animation: shimmer 1.5s infinite linear;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}