body {
    font-family: Tahoma, Arial, sans-serif;
    background: #EEE;
    display: flex;
    flex-wrap: wrap;
}
.wrappers {
    margin-right: 20px;
}
.playerWrapper {
    position: relative;
    overflow: hidden;
    width: 445px;
    min-height: 20px;
    margin-bottom: 10px;
    padding: 10px 20px 10px 60px;
    background: #DDD;
    border-radius: 20px;
    box-sizing: border-box;
}
.singlePlayer .playerWrapper {
    background: #CBCBCB;
}
.trackPicture {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    filter: grayscale(100%);
    opacity: 0.75;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: none;
}
.controlsWrapper {
    display: flex;
    align-items: center;
}
.playerButton {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 0 10px 0 auto;
    width: 60px;
    height: 20px;
    border: none;
    border-radius: 20px;
    background: #777;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease-in;
}
.playerButton.pause {
    background: purple;
}
.playerButton:hover {
    background: #444;
}
.playerButton.pause:hover {
    background: #C5007F;
}
.playerButton:before {
    font-size: 10px;
    font-weight: 700;
    content: "loading";
    color: #DDD;
    text-transform: uppercase;
}
.playerButton.play:before {
    content: "play";
}
.playerButton.pause:before {
    content: "pause";
}
.playerButton.stop:before {
    content: "stop";
}
.volumeWrapper {
    position: relative;
    width: 40px;
    height: 2px;
    background: #AAA;
    cursor: pointer;
}
.volumeLine {
    width: 100%;
    height: 2px;
    background: #777;
}
.volumeHandler {
    margin-left: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    width: 10px;
    height: 10px;
    background: #777;
    border: none;
    border-radius: 50%;
    transform: translate(-4px, -4px);
    cursor: pointer;
    outline: none;
}
.volumeHandler:hover {
    background: #444;
}
.volumeHandler:hover + .volumeLine {
    background: #444;
}
.volumeIcon {
    margin-right: 5px;
    width: 14px;
    height: 14px;
    background-image: url('speaker.svg');
    background-color: transparent;
    background-size: 14px 14px;
    border: none;
    opacity: 0.5;
    cursor: pointer;
    outline: none;
}
.volumeIcon.muted {
    background-image: url('mute.svg');
}
.playerButton.pause + .volumeIcon {
    opacity: 1;
}
.channelName {
    margin: 0 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1px;
}
.titleWrapper {
    display: flex;
    flex-grow: 0;
    width: 225px;
    font-size: 12px;
    letter-spacing: 0.1px;
    color: #777;
}
.titleWrapper a {
    color: #777;
}
.titleWrapper a:hover {
    text-decoration: none;
}
.titleAuthor {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 800;
}
.titleTrack {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.titleTrack:before {
    margin: 0 5px;
    content: "-";
}
.titleTrack.hidden {
    display: none;
}
.titleTrack.hidden:before {
    display: none;
}
.timelineWrapper {
    margin: 0 10px;
    width: 100%;
    height: 10px;
    background: #AAA;
    cursor: pointer;
}
.timelineProgress {
    background: #777;
    width: 0;
    height: 10px;
    /*transition: all 0.2s ease;*/
}
.timelineNumbers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
    font-size: 11px;
    color: #999;
}
.broadcastSourceWrapper {
    margin-bottom: 5px;
}