#playerWrapper {
    width: 90%;
    height: 70%;
    margin: 0 auto;
    top: 50%;
    transform: 	translateY(-50%);
    position: relative;
    background-color: #8E251F;
    display: flex;
    align-content: flex-start;
    background-image: url('../images/blackBlocks.jpg');
}

#albumArt {
    /*	float:left;*/
    height: 66%;
    overflow: hidden;
    width: 100%;
    position: relative;
}

#albumArt img {
    position: relative;
    display: inline-block;
}

#songList {

    display: inline;
}

#songList ul {
    padding: 0px;
    list-style-type: none;
    display: inline;
}

#songList ul li {
    font-family: sans-serif;
    font-variant: normal;
    border-bottom: 1px solid white;
    cursor: pointer;

}

#playerControls {
/*    bottom: 5px;*/
    position: relative;
    height: 100%;
    background-color: #D7D8DA;
/*    left: 0px;*/
    width: 33%;
    display: inline-block;
}

#playerControls img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

#seekBar {
    width: 100px;
    background-color: white;
    border: 1px solid black;
    border-radius: 10px;
    vertical-align: middle;
}
#seekBar::after {
    border-radius: 10px;
}

#selected {
    color: red;
}

#playerRight {
    height: 100%;
/*    float: right;*/
    position: relative;
    width: 33%;
    display: inline-block;
/*    float: right;*/
}

#playerLeft {
/*    float: left;*/
    width: 33%;
    overflow: hidden;
    position: relative;
    display: inline-block;
/*    height needs to be set explicitly in order for child elements to stretch to container*/
    height: 100%; 
    background-image: url('../images/blackBlocks.jpg');
    background-position: left;
    background-size:cover;

}