
#music_player {
    height: 66px;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: #333;
    z-index: 1000;
    background-image: url(../images/music/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    box-shadow: 3px 5.196px 36px 0px rgba(0, 0, 0, 0.8);
}

#music_player audio {
    opacity: 0;
}

#music_player .ms-table {
    width: 100%;
    /* play, pause, backward, forward */
    /* progress bar */
    /* playlist, volume, repeat, shuffle */
    /* now playing */
}

#music_player .ms-table > tr > td,
#music_player .ms-table > tbody > tr > td {
    vertical-align: middle;
    height: 66px;
    text-align: left;
}

#music_player .ms-table .ms-buttons {
    width: 180px;
    line-height: 66px;
}
@media screen and (max-width: 1199px) {

    #music_player .ms-table .ms-buttons {
        width: 152px;
    }
}

#music_player .ms-table .ms-buttons a {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 34px;
    float: left;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

#music_player .ms-table .ms-buttons a + a {
    margin-left: 30px;
}

#music_player .ms-table .ms-buttons a svg {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

#music_player .ms-table .ms-buttons a svg path {
    fill: #fff;
}

#music_player .ms-table .ms-buttons .ms-play svg {
    width: 20px;
    height: 26px;
}

#music_player .ms-table .ms-buttons .ms-prev,
#music_player .ms-table .ms-buttons .ms-next {
    opacity: 0.8;
}

#music_player .ms-table .ms-buttons .ms-prev:hover,
#music_player .ms-table .ms-buttons .ms-next:hover {
    opacity: 1;
}

#music_player .ms-table .ms-buttons .ms-prev svg,
#music_player .ms-table .ms-buttons .ms-next svg {
    width: 20px;
    height: 14px;
}

#music_player .ms-table .ms-wrap {
    width: 480px;
}
@media screen and (max-width: 1199px) {
    #music_player .ms-table .ms-wrap {
        width: auto;
        text-align: center;
    }
}
@media screen and (max-width: 767px) {

    #music_player .ms-table .ms-wrap {
        display: none;
    }
}
@media screen and (max-width: 1199px) {

    #music_player .ms-table .ms-controls {
        width: 152px;
    }
}
@media screen and (max-width: 767px) {

    #music_player .ms-table .ms-controls {
        text-align: right;
    }
}

#music_player .ms-table .ms-controls .ms-entry-controls {
    position: relative;
    line-height: 0px;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item {
    display: inline-block;
    line-height: 0px;
    /* Volumn Control */
    /* Playlist */
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item + .ec-item {
    margin-left: 5px;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item > a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    position: relative;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item > a svg {
    width: 24px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item > a svg path {
    fill: rgba(255, 255, 255, 0.3);
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item > a.active svg path {
    fill: #7f7033;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-volume {
    position: relative;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-volume .ec-volume-control {
    position: absolute;
    bottom: 25px;
    left: -6px;
    width: 38px;
    height: 146px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-volume .ec-volume-control::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 119px;
    background-color: #0c0c0c;
}
@media screen and (max-width: 1199px) {

    #music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-volume .ec-volume-control::before {
        height: 123px;
    }
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-volume .ec-volume-control .ec-vol-el {
    width: 2px;
    height: 94px;
    position: absolute;
    top: 13px;
    left: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    margin-left: -1px;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-volume .ec-volume-control .ec-vol-el .ui-slider-range {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background: #7f7033;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-volume .ec-volume-control .ec-vol-el .ui-slider-handle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #7f7033;
    position: absolute;
    left: -4px;
    margin-bottom: -5px;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-volume .ec-volume-control .ec-vol-el .ui-slider-handle:focus {
    outline: none;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-volume:hover .ec-volume-control {
    visibility: visible;
    opacity: 1;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist {
    position: relative;
    text-align: left;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control {
    position: absolute;
    width: 324px;
    height: 453px;
    left: -240px;
    bottom: 25px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
@media screen and (max-width: 1199px) {

    #music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control {
        left: auto;
        right: 0px;
    }
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control::before {
    content: '';
    background-color: #090c14;
    position: absolute;
    bottom: 27px;
    top: 0px;
    left: 0px;
    right: 0px;
}
@media screen and (max-width: 1199px) {

    #music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control::before {
        bottom: 23px;
    }
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-head {
    display: block;
    position: relative;
    overflow: hidden;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 30px;
    padding-bottom: 20px;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-head h5 {
    font-family: 'Montserrat';
    font-size: 18px;
    font-weight: normal;
    color: #fff;
    letter-spacing: 0px;
    text-transform: uppercase;
    float: left;
    margin: 0px;
    line-height: 1em;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-head .ms-control-shuffle {
    display: inline-block;
    float: right;
    position: relative;
    top: 1px;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-head .ms-control-shuffle svg {
    width: 24px;
    height: 16px;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-head .ms-control-shuffle svg path {
    fill: rgba(255, 255, 255, 0.2);
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-head .ms-control-shuffle.active svg path {
    fill: #7f7033;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-list-container {
    max-height: 348px;
    overflow: auto;
    position: relative;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-list-container::-webkit-scrollbar {
    display: none;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-list {
    width: 100%;
    position: relative;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-list tr {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-list tr td {
    color: #fff;
    vertical-align: middle;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-list tr td a {
    color: #fff;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-list tr td.td-num {
    width: 86px;
    text-align: center;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-list tr td.td-title {
    padding-top: 10px;
    padding-bottom: 10px;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-list tr td.td-title > a {
    margin-right: 40px;
    font-size: 14px;
    line-height: 1.3em;
    display: inline-block;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-list tr td.td-title .pl-item-title {
    margin-right: 5px;
    font-family: 'Montserrat';
    font-weight: normal;
    letter-spacing: 0px;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-list tr td.td-title .pl-item-duration {
    opacity: 0.2;
    font-family: 'SF-UI-Display';
    font-weight: 500;
    letter-spacing: 0px;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-list tr td.td-title .pl-item-artist {
    display: block;
    opacity: 0.2;
    font-family: 'SF-UI-Display';
    font-weight: 500;
    letter-spacing: 0.3px;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-list tr td span.number {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 25px;
    height: 25px;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-list tr td span.number::before {
    content: attr(data-value);
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: normal;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1em;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-list tr td span.number::after {
    content: '';
    font-family: Fontawesome;
    font-size: 18px;
    color: #7f7033;
    line-height: 1em;
    position: absolute;
    top: 150%;
    left: 50%;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-list tr td span.number.playing::before {
    top: 0%;
    visibility: hidden;
    opacity: 0;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-list tr td span.number.playing::after {
    top: 50%;
    visibility: visible;
    opacity: 1;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-list tr:hover {
    background-color: #7f7033;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-list tr:hover td.td-num span.number::before {
    color: rgba(255, 255, 255, 0.5);
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-list tr:hover td.td-num span.number::after {
    color: #fff;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-list tr:hover .td-title .pl-item-artist {
    opacity: 0.5;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist .ec-playlist-control .pl-list tr:hover .td-title .pl-item-duration {
    opacity: 0.5;
}

#music_player .ms-table .ms-controls .ms-entry-controls .ec-item.ec-playlist:hover .ec-playlist-control {
    opacity: 1;
    visibility: visible;
}

#music_player .ms-table .ms-nowplaying {
    width: 280px;
    position: relative;
    /* responsive for now playing box */
}
@media screen and (max-width: 1199px) {

    #music_player .ms-table .ms-nowplaying {
        display: none;
    }
}

#music_player .ms-table .ms-nowplaying .np-thumb {
    display: inline-block;
    width: 66px;
    height: 66px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

#music_player .ms-table .ms-nowplaying .np-meta {
    position: absolute;
    top: 50%;
    left: 80px;
    right: 25px;
    line-height: 1.3em;
    margin-top: -2px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

#music_player .ms-table .ms-nowplaying .np-meta .np-title {
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0px;
    color: #ffffff;
    margin-right: 5px;
}

#music_player .ms-table .ms-nowplaying .np-meta .np-artist {
    font-family: 'SF-UI-Display';
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.4);
}

#music_player .ms-table .ms-nowplaying .ms-add-fav {
    width: 15px;
    height: 14px;
    line-height: 14px;
    position: absolute;
    top: 50%;
    right: 0px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

#music_player .ms-table .ms-nowplaying .ms-add-fav svg {
    width: 15px;
    height: 14px;
}

#music_player .ms-table .ms-nowplaying .ms-add-fav svg path {
    fill: #fff;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

#music_player .ms-table .ms-nowplaying .ms-add-fav.active svg path {
    fill: #7f7033;
}


/* MediaElement MS Skin */

.msplayer-skin.mejs-container {
    display: inline-block;
    background: none;
    /* Total rail */
    /* Current rail */
    /* Loaded rail */
}

.msplayer-skin.mejs-container .mejs-offscreen {
    clip: auto;
    clip-path: none;
}

.msplayer-skin.mejs-container .mejs-controls {
    background: none;
}

.msplayer-skin.mejs-container .mejs-controls .mejs-time {
    font-size: 14px;
    font-family: 'SF-UI-Display';
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    width: 44px;
}

.msplayer-skin.mejs-container .mejs-time-total.mejs-time-slider:focus {
    outline: none;
}

.msplayer-skin.mejs-container .mejs-controls .mejs-time-rail .mejs-time-total {
    background: none;
}

.msplayer-skin.mejs-container .mejs-controls .mejs-time-rail .mejs-time-total::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0px;
    width: 100%;
    height: 2px;
    margin-top: -1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.msplayer-skin.mejs-container .mejs-controls .mejs-time-rail .mejs-time-current {
    background: none;
}

.msplayer-skin.mejs-container .mejs-controls .mejs-time-rail .mejs-time-current::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0px;
    width: 100%;
    height: 2px;
    margin-top: -1px;
    background-color: #7f7033;
}

.msplayer-skin.mejs-container .mejs-controls .mejs-time-rail .mejs-time-current::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #7f7033;
    position: absolute;
    top: 50%;
    margin-top: -5px;
    right: 0px;
    margin-right: -5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.msplayer-skin.mejs-container .mejs-controls .mejs-time-rail .mejs-time-loaded {
    background: none;
}

.msplayer-skin.mejs-container .mejs-controls .mejs-time-rail .mejs-time-loaded::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0px;
    width: 100%;
    height: 2px;
    margin-top: -1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.msplayer-skin.mejs-container .mejs-controls .mejs-time-rail .mejs-time-float {
    display: none !important;
}

.msplayer-skin.mejs-container .mejs-controls .mejs-time-rail:hover .mejs-time-current::after {
    visibility: visible;
    opacity: 1;
}

.masonry-layout1.ms-masonry-layout .post .image {
    overflow: hidden;
}

.masonry-layout1.ms-masonry-layout .post .image::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-image: inherit;
    background-position: center top;
    background-size: cover;
    /*
                      -webkit-filter: blur(4px);
                         -moz-filter: blur(4px);
                              filter: blur(4px);
                      */
    visibility: hidden;
    opacity: 0;
    z-index: 0;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.masonry-layout1.ms-masonry-layout .post .image > * {
    z-index: 10;
}

.masonry-layout1.ms-masonry-layout .post .meta-holder {
    background-color: transparent;
}

.masonry-layout1.ms-masonry-layout .post:hover .image::before {
    opacity: 1;
    visibility: visible;
    -webkit-transform: rotate(-2deg) scale(1.03);
    -moz-transform: rotate(-2deg) scale(1.03);
    transform: rotate(-2deg) scale(1.03);
}

.masonry-layout1.ms-masonry-layout .post:hover .image .play-button svg {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
}