.sc-player {
    padding: 1.5rem;
    position: relative;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.sc-player a {
    color: #444;
}

.sc-player .sc-artwork-list,
.sc-player .sc-info-toggle,
.sc-player .sc-trackslist {
    display: none;
}

.sc-player .sc-waveform-container {
    height: 25px;
}

.sc-player .sc-time-span {
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 7px;
    background-color: transparent;
}

.sc-player .sc-time-span .sc-played {
    position: absolute;
    width: 0%;
    top: 0;
    background-color: #000;
    display: block;
    height: 7px;
    transition: 0.25s;
}

.sc-player .sc-time-span img {
    width: 100%;
    height: 0;
    visibility: hidden;
    position: relative;
}

.sc-player .sc-time-span .sc-buffer {
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    width: 0;
    height: 7px;
    /*background-color: rgba(0, 0, 0, 0.2);*/
    background: white;
    border: 1px solid black;
    transition: 0.25s;
    cursor: pointer;
}

.sc-player .sc-info {
    display: none;
    mix-blend-mode: multiply;
    position: absolute;
    margin-top: 45%;
    top: 35px;
}

.sc-player .sc-info h3 {
    text-transform: uppercase;
}

.sc-player .sc-info .sc-info-close {
    display: none;
}

.sc-player .sc-info p {
    display: none;
}

.sc-player .sc-controls .sc-play,
.sc-player .sc-controls .sc-pause {
    color: transparent;
    width: 30px;
    padding-bottom: 0;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
}

.sc-player .sc-controls .sc-play {
    color: #000;
}

.sc-player .sc-controls .sc-play,
.sc-player .sc-controls .sc-pause {
    width: 3.25rem;
    height: 3.25rem;
    border: 1px solid black;
    display: block;
    border-radius: 100%;
}

.sc-player .sc-controls .sc-play svg,
.sc-player .sc-controls .sc-pause svg {
    height: 1.5rem !important;
    transform: translate(0.6rem, -0.6rem);
}

.sc-player .sc-controls .sc-pause svg {
    transform: translate(0.5rem, -0.6rem);
}

.sc-player .sc-controls .sc-pause {
    color: #000;
    display: none;
}

.sc-player.playing .sc-play {
    display: none;
}

.sc-player.playing .sc-pause {
    display: block !important;
}

.sc-player.playing .sc-played {
    min-width: 1px;
}

.sc-time-indicators {
    /*position: absolute;
    top: -30px;
    right: 0;*/
}

.track-title {
    margin-left: 30px;
}

.sc-controls {
    /*position: absolute;
    top: -37px;
    left: 0;*/
}

.sc-scrubber {
    text-align: right;
    flex-shrink: 1;
    /*position: absolute;
    left: 0px;
    top: -5px;*/
}

.sc-waveform-container {
    height: 7px !important;
}

.sc-title {
    margin-left: 2rem;
    flex-grow: 1;
}
