.sp__container
{
    /* display: none; */

    background-color: white;
    position: fixed;
    bottom: 20px;
    right: -700px;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);

    z-index: 99;

    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
}

.sp__container.active {
    /* display: block; */
    right: 50px;
}

.sp__video
{
    width: 640px;
    height: 480px;
    
    border-radius: 10px;
    
    background-color: black;
}

.sp__video video
{
    border-radius: 10px;
    width: 640px;
    height: 480px;
}

.sp__controls
{
    display: flex;
    flex-direction: row;

    justify-content: space-between;

    margin: 15px 20px;
}

.sp__artist-info
{
    display: flex;
    flex-direction: row;;
}

.sp__artist-name
{
    font-family: 'Roobert-Regular';
    font-size: 26px;
    max-width: 328px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    vertical-align: middle;
    height: 50px;
    line-height: 50px;
    text-transform: uppercase;
}

.sp__song-nav
{
    display: flex;
    flex-direction: row;
    line-height: 30px;
    vertical-align: middle;
    width: 100px;
    justify-content: space-around;
    padding-top: 6px;
}

.sp__song-nav__prev img,
.sp__song-nav__next img
{
    display: inline-block;
    height: 35px;
    width: 30px;
}

.sp__save-artist {
    padding-top: 7px;
    margin-left: 1em;
}

.sp__save-artist.active path {    
    fill: #7347FD;
}

.sp__close {
    position: absolute;
    top: 0;
    right: 0;
    height: 40px;
    width: 40px;
    background-image: url(/images/x.png);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    cursor: pointer;
}

.sp__close:hover {
    opacity: 1;
}