.SpotifyPlayer {
    background: rgba(0, 0, 0, 0.1);
    color: var(--white);
    display: flex;
    flex-direction: row;
    opacity: 0;
    padding: 0.5rem;
    transition: all ease 0.5s;
    z-index: 0;

    &.ready {
        opacity: 1;
    }

    &-body {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding: 0.5rem;
    }

    &-artists,
    &-title {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    &-artists {
        font-size: 0.9rem;
    }

    &-controls {
        align-items: center;
        display: flex;
        margin-left: auto;
    }

    &-play-btn {
        outline: none;
        margin-right: 0.5rem;
    }

    &-close-btn {
        align-self: flex-start;
        outline: none;
        padding: 2px;

        .CloseGlyphIcon {
            display: block;
            height: 10px;
            width: 10px;
        }
    }
}
