.section {
    height: auto;
    position: relative;
}

.now-playing {
    margin-bottom: 20px;
}

.now-playing-image, .now-playing-detail {
    display: inline-block;
    vertical-align: top;
}

.now-playing-image {
    position: relative;
    width: 110px;
    height: 110px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.now-playing-detail {
    height: 110px;
    padding: 0 20px;
}

.now-playing-text {
    margin-bottom: 20px;
}

.now-playing-title {
    font-family: worksans-semibold;
    font-size: 16pt;
    margin-bottom: 5px;
    margin-bottom: 1px;    
}

.now-playing-author {
    font-family: worksans-light;
    font-size: 14pt;
}

.song-item-icon {
    width: 16px;
    height: 16px;
    background-color: #363636;
    border-radius: 100%;
}

.song-item-icon:nth-child(1) {
    margin-bottom: 7px;
}

.now-playing-player {
    clear: both;
    overflow: auto;
}

.now-playing-skip-prev, .now-playing-stream, .now-playing-skip-next {
    float: left;
    cursor: pointer;
}

.now-playing-skip-prev, .now-playing-skip-next {
    width: 26px;
    height: 26px;
    background-size: 110%;
    background-repeat: no-repeat;
    background-position: center;
}

.now-playing-stream {
    margin: 10px 5px 0;
    width: 150px;
    height: 5px;
    border-radius: 5px;
    background-color: #c0bebf;
}

.info-label, .info-value {
    font-size: 10pt;
    display: inline-block;
    vertical-align: top;
    line-height: 20px;
}

.info-label {
    font-family: worksans-bold;
    width: 60px;
}

.song-lyric {
    width: 370px;
}

.lyric-tab {
    display: inline-block;
    vertical-align: top;
    font-size: 14pt;
    font-family: worksans-light;
}

.lyric-tab.active {
    font-family: worksans-bold;
}

.lyric-tab:not(.active) {
    cursor: pointer;
}

.lyric-tab:nth-child(1) {
    margin-right: 40px;
}

.lyric-content-container {
    margin-top: 30px;
}

.lyric-content {
    font-size: 10pt;
    line-height: 20px;
    display: none;
}

.lyric-content.active {
    display: block;
}

.select-transpose {
    width: 80px;
    display: block !important;
    clear: both !important;
    margin-right: 100%;
}

.select-transpose .dropdown-container {
    top: 37px;
}

.related-songs-title {
    font-size: 16pt;
    font-family: worksans-semibold;
    margin-bottom: 30px;
}

.song-item-container {
    clear: both;
}

.song-item {
    display: block;
    text-decoration: none;
    color: black;
    width: 100%;
    height: 70px;
    background: linear-gradient(to bottom, #f3f3f3, #e0e0e0);
    font-size: 10pt;
    padding-top: 15px;
    padding-left: 15px;
    cursor: pointer;
}

.song-item-title-author, .song-item-icon-container {
    float: left;
}

.song-item-title-author {
    width: 290px;
    margin-right: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.song-item-title {
    margin-bottom: 7px;
}

.song-item-author {
    font-family: worksans-light;
}

.youtube-video {
    width: 100%;
    height: 30%;
    margin-top: 30px;
}

@media all and (max-width: 767px) {
    .section-1 {
        margin-top: 150px;
        padding: 0 5vw;
    }

    .song-lyric {
        margin-bottom: 50px;
    }

    .lyric-content-container {
        font-size: 11pt;
    }

    .info {
        margin-bottom: 10px;
    }

    .info-label, .info-value {
        display: block;
        font-size: 11pt;
    }

    .section-right {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .song-item-title-author {
        width: calc(100% - 45px);
    }
}

@media all and (min-width: 768px) and (max-width: 1024px) {
    .section-1 {
        margin-top: 50px;
        padding-right: 60px;
        overflow-y: auto;
    }

    .section-left {
        float: left;
        width: calc(100vw - 410px);
    }
    
    .section-left-inner {
        width: 800px;
        margin: 0 auto;
    }

    .song-lyric {
        float: right;
        margin-left: 20px;
    }

    .song-info {
        float: left;
        width: 330px;
        margin-right: 10px;
        margin-left: 50px;
        margin-top: 10px;
    }

    .section-right {
        float: right;
        width: 350px;
    }
}

@media all and (min-width: 1025px) {
    .section-1 {
        margin-top: 50px;
        padding-right: 60px;
        overflow-y: auto;
    }

    .section-left {
        float: left;
        width: calc(100vw - 410px);
    }
    
    .section-left-inner {
        width: 800px;
        margin: 0 auto;
    }

    .song-lyric {
        float: right;
        margin-left: 20px;
        margin-bottom: 50px;
    }

    .song-info {
        float: left;
        width: 330px;
        margin-right: 10px;
        margin-left: 50px;
        margin-top: 10px;
    }

    .section-right {
        float: right;
        width: 350px;
        margin-bottom: 50px;
    }
}