._window.music {
    /* width: 800px;
    height: 500px; */
    top: 10px;
    left: 20px;
}

._window.music .container {
    display: flex;
    flex-direction: column;
}

.player-ctrl {
    background-color: #e8e8e7;
    border-top: 1px solid #d2d2d1;
}

.player-ctrl>div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: auto;
}

.player-ctrl .label {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    width: 50px;
    height: 32px;
    justify-content: center;
    text-align: center;
    word-wrap: normal;
    word-break: normal;
    /* padding: 0px 10px; */
}

.player-ctrl .progress-bar {
    flex-grow: 1;
    height: 32px;
}

.player-ctrl .progress-bar .ball {
    background-color: white;
}

.music .switcher {
    /* width: 100%; */
    margin: auto;
}

.music .stack {
    width: 100%;
    flex-grow: 1;
    height: calc(100% - 80px);
    background-color: #fefef9;
    overflow-y: auto;
}

.music .player-ctrl {
    /* width: 100%; */
    height: 80px;
}

.music .icon-label .pixbuf {
    border-radius: 95px;
}

.music .play-list {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* overflow-y: auto; */
}

.music-playing {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.lyrics {
    /* display: flex; */
    /* flex-direction: column;*/
    width: 100%;
    height: 120px;
    position: absolute;
    top: calc(100% - 260px);
    pointer-events: none;
    z-index: 99999998;
    margin: auto;
}

.lyrics>div {
    width: calc(90%);
    height: 100%;
    margin: auto;
}

.lyrics .line {
    display: block;
    width: calc(100%);
    height: 60px;
}

.lyrics .body {
    width: auto;
    height: 100%;
}

.lyrics .line .down {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 60px;
    overflow: hidden;
    white-space: nowrap;
    word-break: normal;
    word-wrap: normal;
    background: -moz-linear-gradient(top, blue, royalblue);
    background: -webkit-linear-gradient(top, blue, royalblue);
    background: -o-linear-gradient(top, blue, royalblue);
    background: -ms-linear-gradient(top, blue, royalblue);
    color: transparent;
    -moz-background-clip: text;
    -webkit-background-clip: text;
    -o-background-clip: text;
    -ms-background-clip: text;
    font-size: 42px;
    justify-content: center;
    z-index: 1;
}

.lyrics .line .down.hidden {
    display: none;
}

.lyrics .line .upper {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 60px;
    top: -60px;
    overflow: hidden;
    white-space: nowrap;
    word-break: normal;
    word-wrap: normal;
    background: -moz-linear-gradient(top, red, greenyellow);
    background: -webkit-linear-gradient(top, red, greenyellow);
    background: -o-linear-gradient(top, red, greenyellow);
    background: -ms-linear-gradient(top, red, greenyellow);
    color: transparent;
    -moz-background-clip: text;
    -webkit-background-clip: text;
    -o-background-clip: text;
    -ms-background-clip: text;
    font-size: 42px;
    justify-content: center;
    z-index: 2;
}

.lyrics .line.two .body {
    position: relative;
    /* left: 100%;
    margin-left: -50%; */
}














