/*-----------------------
	AMHTML5AUDIO Player
------------------------*/
.amhtml5audiopro {
    width: 100%;
    max-width: 100%;
    font-family: inherit;
    font-size: 14px;
    background: #eeeeee;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.amhtml5audiopro.default {
    border: 4px solid #fff;
    box-shadow: -2px 2px 2px #c0c0c0;
}

.amhtml5audiopro.fixed {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.amPlayerContainer {
}

.amPlayerNav {
    display: flex;
    max-width: 1440px;
    margin: auto;
}

.amPlayerInfo {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-direction: row;
    opacity: 0;
    height: 0px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.amhtml5audiopro .amPlayerInfo.visible {
    opacity: 1 !important;
    -webkit-transition: 0.5s !important;
    -moz-transition: 0.5s !important;
    -o-transition: 0.5s !important;
    transition: 0.5s !important;
}

.amPlayerInfo .amPlayerInfo-image {
    -webkit-order: 0;
    order: 0;
    width: 200px;
    height: 0px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.amPlayerInfo .amPlayerInfo-image img {
    height: 0px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.amPlayerInfo-inner {
    position: relative;
    -webkit-order: 1;
    order: 1;
    max-height: 200px;
    width: calc(100% - 200px);
    overflow: auto;
    text-align: center;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.amPlayerInfo-visualiation {
}

.amhtml5audiopro canvas.amCanvas {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 0px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.amPlayerInfo-inner::-webkit-scrollbar {
    background: #e0e0e0;
    width: 5px;
}

.amPlayerInfo-inner::-webkit-scrollbar-thumb {
    background: #333333;
}

.amPlayerInfo-title {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 0px;
    max-height: 200px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.amPlayerInfo-title h3 {
    padding: 10px;
    color: #999999;
}

.amPlayerInfo-title .amPlayerInfo-desc {
    padding: 0px 10px;
    color: #555555;
}

.amPlayerInfo.visible, .amPlayerInfo.visible .amPlayerInfo-image, .amPlayerInfo.visible .amPlayerInfo-image img, .amPlayerInfo.visible canvas.amCanvas, .amPlayerInfo.visible .amPlayerInfo-title {
    height: 200px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.amPlayerNav-inner {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.amPlayerNav-playback>.amPlayerNav-controls, .amPlayerNav-settings>.amPlayerNav-controls {
    flex: 0 25%;
}

@-webkit-keyframes fs {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes fs {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

img.amPlayerNav-img {
    width: 50px;
    height: 50px;
}

.amPlayerNav-track {
    position: relative;
    flex: 1 40%;
    padding: 0 20px;
}

.amPlayerNav-track-inner {
    position: relative;
    width: 100%;
    align-self: flex-start;
    padding: 5px 0 0;
}

.amPlayerNav-track-title {
    position: absolute;
    width: 100%;
    overflow: hidden;
    padding-right: 80px;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.amPlayerNav-track-time {
    position: absolute;
    top: 5px;
    right: 0;
    padding-left: 10px;
}

.amPlayerNav-progress-container {
    padding: 7px 0;
    margin-top: 15px;
    overflow: hidden;
    cursor: pointer;
}

.amPlayerNav-progress-container:hover .amPlayerNav-progress-bar:after {
    opacity: 1;
}

.amPlayerNav-progress {
    position: relative;
    height: 3px;
    border-radius: 3px;
    background: #ddd;
}

.amPlayerNav-progress-bar, .amPlayerNav-progress-preload {
    position: absolute;
    width: 0;
    height: 3px;
    border-radius: 3px 0 0 3px;
}

.amPlayerNav-progress-bar {
    background: steelblue;
    z-index: 1;
}

.amPlayerNav-progress-bar:after {
    position: absolute;
    top: 0;
    right: -7px;
    width: 7px;
    height: 7px;
    margin-top: -2px;
    content: '';
    border-radius: 6px;
    background: steelblue;
    opacity: 0;
    transition: opacity .3s ease;
}

.amPlayerNav-progress-bar--active:after {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
}

.amPlayerNav-progress-preload {
    background: #c4c4c4;
    z-index: 0;
}

.amPlayerNav-progress-search {
    position: absolute;
    background: #f2f2f2;
    color: #383838;
    border: 1px solid #ccc;
    padding: 2px;
    top: -10px;
    box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    transition: 0.3s;
}

.amPlayerNav-progress-search::before {
    content: '';
    position: absolute;
    bottom: -12px;
    border: 7px solid transparent;
    border-top: 7px solid #f2f2f2;
    left: 50%;
    margin-left: -7px;
    z-index: 3;
}

.amPlayerNav-progress-search::after {
    content: '';
    position: absolute;
    bottom: -14px;
    border: 7px solid transparent;
    border-top: 7px solid #cecece;
    left: 52%;
    margin-left: -7px;
    z-index: 2;
}

.amPlayerNav-progress-search.visible {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    transition: 0.7s;
}

.amPlayerNav-progress-spiner {
    position: absolute;
    width: 15px;
    height: 15px;
    top: 16px;
    opacity: 0;
    transition: 0.2s;
}

.amhtml5audiopro .amPlayerNav-progress-spiner.visible {
    opacity: 1 !important;
    transition: 0.2s;
}

.amPlayerNav-progress-spiner .svgSpinner {
    animation: rotate 1s linear infinite;
    -webkit-animation: rotate 1s linear infinite;
    -moz-animation: rotate 1s linear infinite;
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 2;
}

.amPlayerNav-progress-spiner .svgSpinnerBg {
}

.amPlayerNav-progress-spiner .svgSpinnerPath {
    stroke-dasharray: 10;
    stroke-dashoffset: 10;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotate {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.amPlayerNav-controls, .amhtml5audiopro button {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    position: relative;
    display: block;
    height: 50px;
    text-align: center;
    cursor: pointer;
    transition: background .3s ease;
}

.amPlayerNav-controls:active, .amhtml5audiopro button:active {
    background: rgba(0, 0, 0, 0.1);
}

.amPlayerNav-controls:hover, .amhtml5audiopro button:hover {
    opacity: 1;
}

.am-icon-play>path {
    transition: all .3s ease;
}

.amPlayerNav-toggle-play.is-playing .am-icon-play {
    fill: steelblue;
}

svg.am-icon-play, svg.am-icon-volume-on, svg.am-icon-volume-off {
    width: auto;
    height: auto;
}

.amPlayerNav-volume_step {
    color: #979797;
    font-size: 12px;
}

.amPlayerNav-volume_btn {
    display: block;
    text-align: center;
    width: 100%;
}

.amPlayerNav-volume_bar {
    position: absolute;
    left: 50%;
    bottom: 45px;
    width: 40px;
    margin-left: -20px;
    height: 140px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.17, 0.72, 0.26, 1.23);
    background: #f2f2f2;
    border: 1px solid #ccc;
    border-radius: 1px;
    box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 88888;
}

.amPlayerNav-volume_bar::before, .amPlayerNav-volume_bar::after {
    content: '';
    position: absolute;
    bottom: -12px;
    border: 7px solid transparent;
    border-top: 7px solid #f2f2f2;
    left: 50%;
    margin-left: -7px;
}

.amPlayerNav-volume_bar::after {
    bottom: -14px;
    z-index: -1;
    border-top: 7px solid #ccc;
}

.amPlayerNav-volume:hover .amPlayerNav-volume_bar {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
}

.amPlayerNav-volume_fender {
    position: relative;
    display: block;
    width: 3px;
    height: 100px;
    margin: 10px auto;
    background: #ddd;
    border-radius: 3px;
    overflow: hidden;
}

.amPlayerNav-volume_level {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: steelblue;
    height: 50%;
}

.am-icon-volume-off {
    display: none;
}

.muted .am-icon-volume-on {
    display: none;
}

.muted .am-icon-volume-off {
    display: inline;
    opacity: .7;
}

.amPlayerNav-toggle-playlist.active>svg, .amPlayerNav-order-repeat.active>svg, .amPlayerNav-order-repeat-one.active>svg, .amPlayerNav-order-shuffle.active>svg {
    fill: steelblue;
    -webkit-filter: drop-shadow(0 0 3px rgba(70, 130, 180, 0.4));
    filter: drop-shadow(0 0 3px rgba(70, 130, 180, 0.4));
}

.amhtml5audiopro button.amPlayerNav-order-none, .amhtml5audiopro button.amPlayerNav-order-repeat, .amhtml5audiopro button.amPlayerNav-order-repeat-one, .amhtml5audiopro button.amPlayerNav-order-shuffle {
    display: none;
    text-align: center;
    width: 100%;
}

.amhtml5audiopro button.amPlayerNav-order-none.active, .amhtml5audiopro button.amPlayerNav-order-repeat.active, .amhtml5audiopro button.amPlayerNav-order-repeat-one.active, .amhtml5audiopro button.amPlayerNav-order-shuffle.active {
    display: block;
}

.amPlayerNav-imageBtn {
    position: relative;
}

.amPlayerNav-imageBtn-toggle {
    opacity: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.amPlayerNav-imageBtn-toggle svg {
    width: 50px;
    height: 50px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.amhtml5audiopro .amPlayerNav-imageBtn-toggle.visible, .amPlayerNav-imageBtn-toggle:hover {
    opacity: 1 !important;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.amhtml5audiopro .amPlayerNav-imageBtn-toggle.visible svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

@media (max-width: 1024px) {
    .amPlayerNav-inner>.amPlayerNav-controls {
        flex: 1;
    }
}

@media (max-width: 640px) {
    .amhtml5audiopro .amPlayerInfo.visible {
        height: 400px;
    }

    .amPlayerInfo {
        flex-direction: column;
    }

    .amPlayerInfo-inner {
        width: 100%;
    }
}

@media (max-width: 580px) {
    .amhtml5audiopro {
        min-width: 250px;
    }

    .amhtml5audiopro, .amPlayerNav {
        height: auto;
    }

    .amPlayerNav {
        flex-wrap: wrap;
    }

    .amPlayerNav-imageBtn {
        flex: 1 1 50px;
        order: 1;
    }

    .amPlayerNav-track {
        margin-bottom: 10px;
        padding: 0 20px;
        order: 1;
        flex: 1 1 calc(100% - 100px);
    }

    .amPlayerNav-playback, .amPlayerNav-settings {
        flex: 1 1 50%;
        order: 2;
    }
}
/*-----------------------
	Playlist Player - PL
------------------------*/
.amListContainer {
    height: 0px;
    overflow: auto;
    font-family: inherit;
    font-size: 14px;
    background: #cecece;
    opacity: 0;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}

.amListContainer.default {
}

.amListContainer.default.visible {
    height: 300px;
    opacity: 1 !important;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}

.amListContainer.fixed {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 50px;
    left: 0;
    z-index: 77777;
    transition: 1s;
}

.amListContainer.fixed.visible {
    height: auto;
    opacity: 1 !important;
    transition: 1s;
}

.amList-ul {
    max-width: 550px;
    margin: 0 auto;
    padding: 30px 10px 100px 10px;
}

.amList-li {
    display: flex;
    align-items: center;
    height: 40px;
    line-height: 40px;
}

.amList-li svg {
    fill: steelblue;
}

.amList-li+.amList-li {
    border-top: 1px solid #eee;
}

.amList-li:not(.is-playing):hover, .amList-li.is-current:not(.is-playing) {
    background: #f6f6f6;
}

.amList-icon, .pl-list__remove {
    flex: 0 50px;
    text-align: center;
}

.amList-icon_play {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #555;
}

.amList-title {
    overflow: hidden;
    padding-right: 10px;
    cursor: pointer;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    flex: 1;
}

.pl-list__remove {
    height: 100%;
    background: transparent;
    border: 0;
    outline: 0;
    cursor: pointer;
    opacity: 0;
    transition: opacity .2s ease;
}

.pl-list__remove>svg {
    width: 16px;
    height: 16px;
}

.amList-icon_eq {
    display: none;
}

.amList-li.is-playing {
    background: steelblue;
    color: #fff;
}

.amList-li.is-playing svg {
    fill: #fff;
}

.amList-li.is-playing .amList-icon_eq {
    display: block;
}

.amList-li.is-playing .amList-icon_play {
    display: none;
}

.amList-li:hover .pl-list__remove, .amList-li.is-playing .pl-list__remove {
    opacity: 1;
}

.amList-li.is-playing .pl-list__remove:hover {
    background: #3f75a2;
}

.pl-list--empty {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 2rem;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    letter-spacing: 2px;
    color: #ccc;
}

.amListContainer .amList-close {
    position: fixed;
    top: 12px;
    right: 40px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.amListContainer .amList-close svg line {
    stroke: #000;
    stroke-width: 2;
}

@-webkit-keyframes amList-icon_eq_bar {
    0% {
        height: 3px;
    }

    50% {
        height: 20px;
    }

    100% {
        height: 3px;
    }
}

@keyframes amList-icon_eq_bar {
    0% {
        height: 3px;
    }

    50% {
        height: 20px;
    }

    100% {
        height: 3px;
    }
}

.amList-icon_eq_bar {
    display: flex;
    width: 20px;
    height: 20px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: flex-end;
}

.amList-track_eq_strip {
    width: 4px;
    background: #fff;
    -webkit-filter: drop-shadow(0 0 5px #fff);
    filter: drop-shadow(0 0 5px #fff);
}

.amList-track_eq_strip:nth-child(1) {
    -webkit-animation: amList-icon_eq_bar .8s ease-in-out infinite 0s;
    animation: amList-icon_eq_bar .8s ease-in-out infinite 0s;
}

.amList-track_eq_strip:nth-child(2) {
    -webkit-animation: amList-icon_eq_bar .8s ease-in-out infinite .2s;
    animation: amList-icon_eq_bar .8s ease-in-out infinite .2s;
}

.amList-track_eq_strip:nth-child(3) {
    -webkit-animation: amList-icon_eq_bar .8s ease-in-out infinite .4s;
    animation: amList-icon_eq_bar .8s ease-in-out infinite .4s;
}