.mmp_player:not(.single) {
    display: flex;
}

.mmp_player * {
    box-sizing: border-box;
    user-select: none;
}

.mmp_player a {
    color: inherit;
    text-decoration: none !important;
}

.mmp-flx {
    flex: auto;
    padding: 10px;
    max-width: 100%;
}

.mmp-flx:first-child {
    flex: none;
}

.mmp_player.sticky > .mmp-flx:first-child {
    height: 470px;
    position: sticky;
    top: 0px;
}

/** Detail */
.mmp-detail-content {
    width: 356px;
    height: 356px;
    max-width: 100%;
    background-color: #fcfcfc;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 40px 82px -22px rgba(0, 0, 0, 0.1);
}

.mmp_player.single .mmp-detail-content {
    margin: 0 auto;
}

.mmp-detail-content .mmp-cover {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 16px auto;
    z-index: 1;
}

.mmp-cover-main,
.mmp-cover-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-color: #000;
    background-size: cover !important;
    background-position: center !important;
    z-index: 2;
}

.mmp-detail-content .mmp-cover:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    border-radius: 100%;
    transform: translate(-50%, -50%);
    background-color: #fcfcfc;
    box-shadow: inset 0 10px 20px -8px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.mmp-cover-shadow {
    top: 17px;
    filter: blur(25px);
    z-index: 1;
}

.mmp-title {
    font-family: Roboto, sans-serif;
    font-weight: 900;
    font-size: 24px;
    text-align: center;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 3;
}

.mmp-genres {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    margin-bottom: 12px;
    z-index: 3;
}

.mmp-progress {
    display: flex;
    align-items: center;
    height: 20px;
    cursor: pointer;
}

.mmp-progress-content {
    position: relative;
    width: 100%;
    height: 4px;
    border-radius: 6px;
    background-color: #f3f3f3;
    pointer-events: none;
}

.mmp-progressed,
.mmp-preload {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #e3e3e3;
    z-index: 2;
}

.mmp-preload {
    z-index: 1;
}

.mmp-progress-hover {
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
    transition: all 0.2s cubic-bezier(0.85, 0.01, 0.16, 0.93);
    opacity: 0;
    z-index: 3;
}

.mmp-progress-hover:before,
.mmp-progress-hover:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
}

.mmp-progress-hover:before {
    width: 180%;
    height: 180%;
    background-color: #fff;
    box-shadow: 0 0 10px -4px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.mmp-progress-hover:after {
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 2;
}

.mmp-progress.active .mmp-progress-hover,
.mmp-progress:hover .mmp-progress-hover {
    width: 12px;
    height: 12px;
    opacity: 1;
}

.mmp-detail-content .mmp-meta {
    font-family: Roboto, sans-serif;
    font-size: 12px;
    margin-top: 2px;
}

.mmp-detail-content .mmp-start-time {
    float: left;
}

.mmp-detail-content .mmp-end-time {
    float: right;
}

/** Controller */
.mmp-controller-content {
    margin-top: 30px;
    text-align: center;
    font-size: 0;
}

.mmp-controller-content .mmp-button {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    margin: 0 8px 0 8px;
}

.mmp-controller-content .mmp-button i {
    position: relative;
    z-index: 2;
    transition: all 0.2s ease;
}

.mmp-controller-content .mmp-button#play {
    background-color: #fff;
    border-radius: 100%;
    box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.05);
}

.mmp-controller-content .mmp-button#play i:before {
    content: '\e99d';
}

.mmp-controller-content .mmp-button#play.active i:before {
    content: '\e992';
}

.mmp-controller-content .mmp-button#loop.this:before {
    content: '1';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    text-align: center;
    line-height: 12px;
    font-family: Roboto, sans-serif;
    font-size: 8px;
    background-color: #fff;
    box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

/** List */
.mmp-list-content .mmp-item {
    position: relative;
    display: flex;
    width: 100%;
    height: 60px;
    background-color: #fcfcfc;
    box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    text-align: left;
    align-items: center;
    z-index: 9;
    margin-bottom: 16px;
}

.mmp_player:not(.sticky) .mmp-list-content {
    max-height: 452px;
    overflow-y: auto;
    padding-right: 10px;
}

.mmp-list-content .mmp-item .mmp-flx {
    flex: auto;
    padding: 6px;
    white-space: nowrap;
}

.mmp-list-content .mmp-item .mmp-flx:first-child,
.mmp-list-content .mmp-item .mmp-flx:last-child {
    flex: none;
    font-size: 0;
}

.mmp-list-content .mmp-item .mmp-cover {
    display: inline-block;
    width: 42px;
    height: 42px;
    background-color: #000;
    border-radius: 6px;
    margin-left: 4px;
    vertical-align: middle;
    background-size: cover !important;
    background-position: center !important;
}

.mmp-list-content .mmp-item .mmp-number {
    display: inline-block;
    vertical-align: middle;
    font-family: Roboto, sans-serif;
    font-weight: 700;
    color: #000;
    font-size: 16px;
    padding: 0 14px;
}

.mmp-list-content .mmp-item .mmp-number:after {
    content: '.';
}

.mmp-list-content .mmp-item .mmp-title {
    text-align: left;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.mmp-list-content .mmp-item .mmp-button {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}

.mmp-list-content .mmp-item .mmp-button i {
    transition: all 0.2s ease;
}

.mmp-list-content .mmp-item .mmp-button.liked#like {
    color: #f00;
}

/**
 * Artist
 */
.mmp-artist {
    display: flex;
    text-align: left;
}

.mmp-artist .mmp-flx {
    flex: auto;
}

.mmp-artist .mmp-flx:first-child {
    flex: none;
}

.mmp-artist .mmp-flx:last-child {
    padding-left: 40px;
    padding-top: 26px;
}

.mmp-artist .mmp-profile-image {
    width: 220px;
    height: 220px;
    border-radius: 220px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.mmp-artist .mmp-title {
    font-family: Roboto, sans-serif;
    font-weight: 700;
    font-size: 28px;
    text-align: left;
}

.mmp-artist .mmp-follow {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 34px;
    text-align: center;
    text-transform: capitalize;
    width: 220px;
    height: 34px;
    border-radius: 6px;
    vertical-align: middle;
    margin-left: 12px;
    cursor: pointer;
}

.mmp-artist .mmp-follow:not(.following) {
    background-color: #006D9A;
    color: #fff;
}

.mmp-artist .mmp-follow.following {
    border: 1px solid #d5d5d5;
}

.mmp-artist .mmp-meta {
    padding: 26px 0;
}

.mmp-artist .mmp-meta {
    font-family: Roboto, sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.mmp-artist .mmp-rank {
    display: inline-block;
    text-align: center;
    margin-right: 30px;
}

.mmp-artist .mmp-rank span {
    font-weight: 400;
    font-size: 14px;
    margin-left: 4px;
}

.mmp-artist .mmp-meta-2 {
    text-align: left;
}

.mmp-artist .mmp-meta-2 .mmp-item span {
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #c2c2c2;
}

.mmp-artist .mmp-meta-2 .mmp-item div,
.mmp-artist .mmp-meta-2 .mmp-item div a {
    display: inline-block;
    font-weight: 400;
    color: #000;
    font-size: 12px;
    text-transform: capitalize;
}

@media screen and (max-width: 870px) {

    .mmp_player.sticky > .mmp-flx:first-child {
        position: relative;
    }

    .mmp-detail-content {
        margin: auto;
    }

    .mmp_player:not(.single) {
        display: block;
    }

}

@media screen and (max-width: 768px) {

    .mmp-artist {
        display: block;
        text-align: center;
    }

    .mmp-artist .mmp-profile-image {
        margin: auto;
    }

    .mmp-artist .mmp-item,
    .mmp-artist .mmp-title {
        text-align: center;
    }

    .mmp-artist .mmp-rank {
        margin-right: 14px;
    }

    .mmp-list-content .mmp-title {
        max-width: 514px;
    }

}

@media screen and (max-width: 360px) {

    .mmp-list-content .mmp-title {
        max-width: 105px;
    }

    .mmp-list-content .mmp-cover {
        display: none !important;
    }

}