/* ALBUMS */
.album-page {
    height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
    background: url('../img/bg6.jpg') center top no-repeat #9e5216;
    background-size: 100%;
}
.album-page .row.gx-md-5 {
    margin-left: -25px;
    margin-right: -25px;
}
.album-page .row.gx-md-5 > div[class^='col'] {
    padding-left: 25px;
    padding-right: 25px;
}
.album-page h1 {
    font-weight: bold;
    color: #fff;
    font-size: 92px;
    text-transform: uppercase;
}
.album-page h2 {
    font-weight: bold;
    color: #fff;
    font-size: 30px;
    text-transform: uppercase;
}
.album-page h3 {
    font-weight: 600;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
}
.album-page h4 {
    font-weight: 600;
    color: #e09752;
    font-size: 20px;
    margin: 40px 0 10px 0;
    text-transform: uppercase;
}
.album-page .team-image {
    border-radius: 20px;
    margin: 0 0 40px 0;
}
.album-page .album-wrapper {
    color: #fff;
    margin-bottom: 40px;
}
.album-page .album-wrapper p {
    font-size: 14px;
}
.album-page .album-wrapper h3 {
    font-size: 24px;
}
.album-page .album-description {
    color: #fff;
    margin: 0 0 40px 0;
}
.album-page .album-reviews {
    color: #fff;
    margin: 0 0 40px 0;
}
.album-page .album-artists {
    color: #fff;
    margin: 0 0 40px 0;
}


.music-player {
    width: 100%;
    max-width: 100%;
    font-family: inherit;
    color: #222;
    margin-bottom: 40px;
}


/* Main player
-------------------------------------------------- */

.player-main {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 76px;
    gap: 18px;
}


/* Play button
-------------------------------------------------- */

.player-play {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    padding: 0;
    border: 0;
    border-radius: 50%;

    background: #FFFFFF;
    color: #111111;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;

    transition:
        transform .15s ease,
        opacity .15s ease;
}

.player-play:hover {
    transform: scale(1.05);
}

.player-play .pause-icon {
    display: none;
    font-size: 15px;
}

.music-player.is-playing
.player-play .play-icon {
    display: none;
}

.music-player.is-playing
.player-play .pause-icon {
    display: block;
}


/* Current track information
-------------------------------------------------- */

.player-track-info {
    flex: 1;
    min-width: 0;
}

.player-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    color: #fff;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-artist {
    margin-top: 4px;

    font-size: 13px;
    opacity: .55;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}


/* Navigation
-------------------------------------------------- */

.player-navigation {
    display: flex;
    align-items: center;
    gap: 4px;
}

.player-navigation button {
    width: 38px;
    height: 38px;

    padding: 0;
    border: 0;

    background: transparent;

    cursor: pointer;

    font-size: 30px;
    line-height: 1;

    opacity: .65;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: opacity .15s ease;
}

.player-navigation button:hover {
    opacity: 1;
}


/* Main progress
-------------------------------------------------- */

.player-progress {
    position: relative;

    width: 100%;
    height: 5px;

    margin: 8px 0 30px;

    background: rgba(0, 0, 0, .10);

    cursor: pointer;
}

.player-progress-position {
    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 100%;

    background: #fff;

    pointer-events: none;
}

.player-time {
    position: absolute;

    right: 0;
    top: 10px;

    display: flex;
    gap: 4px;

    font-size: 11px;
    opacity: .5;
    color: #fff;
}


/* Track list
-------------------------------------------------- */

.track-list {
    width: 100%;
}

.track-item {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 62px;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    cursor: pointer;

    transition: background .15s ease;
}

.track-item:hover {
    background: rgba(0, 0, 0, .035);
}

.track-item.is-active {
    background: rgba(0, 0, 0, .055);
}


/* Track number + play button
-------------------------------------------------- */

.track-number {
    width: 55px;
    flex: 0 0 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    font-size: 13px;
    opacity: .55;
    color: #fff;
}

.track-play {
    width: 30px;
    height: 30px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: transparent;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;

    opacity: .7;
}

.track-item:hover .track-play,
.track-item.is-active .track-play {
    opacity: 1;
}

.track-play .pause-icon {
    display: none;
}

.track-item.is-playing
.track-play .play-icon {
    display: none;
}

.track-item.is-playing
.track-play .pause-icon {
    display: block;
}


/* Track information
-------------------------------------------------- */

.track-info {
    flex: 1;
    min-width: 0;

    padding-right: 20px;
}

.track-title {
    font-size: 15px;
    line-height: 1.35;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}

.track-duration {
    width: 55px;
    flex: 0 0 55px;

    padding-right: 5px;

    text-align: right;

    font-size: 12px;
    opacity: .5;
    color: #fff;
}


/* Individual track progress
-------------------------------------------------- */

.track-progress {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background: transparent;
}

.track-progress-position {
    width: 0;
    height: 100%;

    background: #fff;
}


/* Mobile
-------------------------------------------------- */

@media (max-width: 600px) {

    .player-main {
        gap: 12px;
    }

    .player-play {
        flex-basis: 46px;

        width: 46px;
        height: 46px;
    }

    .player-title {
        font-size: 16px;
    }

    .player-artist {
        font-size: 11px;
    }

    .player-navigation button {
        width: 32px;
        height: 32px;
    }

    .track-number {
        width: 50px;
        flex-basis: 50px;
    }

    .track-title {
        font-size: 14px;
    }

    .track-duration {
        width: 45px;
        flex-basis: 45px;
    }

}