.audio-current {
    position: relative;
    min-height: 330px;
    overflow: hidden;
}

.audio-current-head {
    display: flex;
    justify-content: space-between;
    align-self: center;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

.audio-current-content,
.audio-current-share,
.audio-current-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.audio-current-content {
    padding: 30px;
    display: flex;
    position: relative;
}

.audio-current-content .audio-current-content-block {
    width: 100%;
}

.audio-current-background {
    filter: blur(55px);
    -webkit-filter: blur(55px);
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.5);
}

.audio-current-share {
    display: flex;
    align-items: center;
    align-self: center;
    z-index: -1;
}

.audio-current-share > div {
    width: 70%;
    height: 155px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-self: center;
    justify-content: center;
    margin: auto;
}

.audio-current-share > div input {
    border: none !important;
    width: 100%;
    height: 35px;
    border-radius: 3px !important;
    font-size: 22px !important;
    color: #444 !important;
    background: rgba(255,255,255,0.9) !important;
}


.audio-current-share > div button {
    padding: 15px 30px;
    border-radius: 3px;
    border: none;
    font-size: 18px;
    transition: all 0.2s;
}

.audio-current-share > div button:hover {
    transition: all 0.2s;
    box-shadow: 0 14px 25px rgba(0,0,0,0.16);
}

.audio-current-share > div button.audio-current-button-share-close {
    position: absolute;
    right: 30px;
    top: 30px;
}

.audio-current .audio-current-name {
    width: 75%;
}

.audio-current .audio-current-name span {
    display: block;
    width: 100%;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.audio-current .audio-current-name span::first-letter {
    text-transform: uppercase;
}

.audio-current .audio-current-name span:first-child {
    font-size: 25px;
}

.audio-current .audio-current-name span:last-child {
    margin-bottom: 0;
}

.audio-current .album-composer {
    width: 100%;
}

.audio-current .album-composer span {
    display: inline-block;
    width: auto;
}

.audio-current-action {
    width: auto;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    align-self: center;
}

.audio-current .audio-current-button-volume,
.audio-current .audio-current-button-share {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    border: none;
    transition: all 0.2s;
}

.audio-current .audio-current-button-share {
    background: transparent;
}

.audio-current-button-volume-wrap {
    position: relative;
    width: auto;
}

.audio-current .audio-current-button-share {
    margin-right: 15px;
}

.audio-current .audio-current-button-volume:focus,
.audio-current .audio-current-button-share:focus {
    outline: none;
}

.audio-current .audio-current-button-volume:hover {
    transition: all 0.2s;
    box-shadow: 0 14px 25px rgba(0,0,0,0.16);
}

.audio-current .audio-current-button-volume span,
.audio-current .audio-current-button-share span {
    display: block;
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
}

.audio-current .audio-current-button-volume.max span {
    transition: all 0.2s;
}

.audio-current .audio-current-button-volume.medium span {
    transition: all 0.2s;
}

.audio-current .audio-current-button-volume.min span {
    margin-left: 10px;
    transition: all 0.2s;
}

.audio-current .audio-current-volume-control {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 10;
    left: -50px;
    bottom: -65px;
}

.audio-current .audio-current-volume-control::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.audio-current .audio-current-volume-control::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 0;
    height: 0;
    border: 6px outset transparent;
    border-bottom: 6px solid #fff;
}

.audio-current .audio-current-button-volume-wrap:hover .audio-current-volume-control {
    display: block;
    border-radius: 3px;
}

.tr-audio {
    width: 30%;
    height: 10%;
    position: absolute;
    right: -15%;
    bottom: 0;
    top: 45%;
    margin-right: 32px;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    text-align: center;
}

.tr-audio input {
    width: 100%;
}

.audio-current input.audio-range-volume[type=range] {
    margin: auto;
    outline: none;
    padding: 0;
    width: 45%;
    height: 8px;
    background-size: 50% 100%;
    background-repeat: no-repeat;
    border-radius: 10px;
    cursor: pointer;
    -webkit-appearance: none;
}

.audio-current input.audio-range-volume[type=range]::-webkit-slider-runnable-track {
    box-shadow: none;
    border: none;
    background: transparent;
    -webkit-appearance: none;
}

.audio-current input.audio-range-volume[type=range]::-moz-range-track {
    box-shadow: none;
    border: none;
    background: transparent;
}

.audio-current input.audio-range-volume[type=range]::-moz-focus-outer {
    border: 0;
}

.audio-current input.audio-range-volume[type=range]::-webkit-slider-thumb {
    width: 17px;
    height: 17px;
    border: 0;
    background: #fff;
    border-radius: 100%;
    box-shadow: 0 0 1px 0px rgba(0,0,0,0.1);
    -webkit-appearance: none;
}

.audio-current input.audio-range-volume[type=range]::-moz-range-thumb {
    width: 17px;
    height: 17px;
    border: 0;
    border-radius: 100%;
    box-shadow: 0 0 1px 0px rgba(0,0,0,0.1);
}

.audio-current input.audio-range-volume[type=range]::-ms-thumb {
    width: 17px;
    height: 17px;
    background: #fff;
    border-color: transparent;
    border-width: 6px 0;
    color: transparent;
}

.audio-current-media {
    width: 100%;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-self: center;
    position: relative;
}

.audio-current-media-block {
    width: 92%;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: space-between;
}

.audio-current .audio-current-media .audio-current-image {
    width: auto;
    margin: 0;
}

.audio-current .audio-current-media .audio-current-image img {
    width: 120px;
    height: 120px;
    box-shadow: 0 14px 25px rgba(0,0,0,0.16);
}

.audio-current .audio-current-waveform {
    width: 85%;
    margin: 0;
    position: relative;
}

.audio-current .audio-current-waveform #waveform {
    position: relative;
    margin-left: 15px;
}

.audio-current .audio-current-waveform #waveform .progress {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
}

.audio-current .audio-current-waveform #waveform wave canvas {
    max-width: none !important;
}

.audio-current .audio-current-actions {
    position: relative;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}

.audio-current .audio-current-button-prev,
.audio-current .audio-current-button-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.audio-current .audio-current-button-prev:focus,
.audio-current .audio-current-button-next:focus {
    outline: 0;
}

.audio-current .audio-current-button-prev span,
.audio-current .audio-current-button-next span {
    display: block;
    margin-left: 3px;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
}

.audio-current .audio-current-button-prev span {
    margin-left: 0;
}

.audio-current .audio-current-button-next span {
    margin-left: 3px;
}

.audio-current .audio-current-button-pause-play {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    width: 65px;
    height: 65px;
    margin-left: 40px;
    margin-right: 40px;
    border-radius: 50%;
    font-size: 20px;
    border: none;
    transition: all 0.2s;
}

.audio-current .audio-current-button-pause-play:focus {
    outline: 0;
}

.audio-current .audio-current-button-pause-play:hover {
    transition: all 0.2s;
    box-shadow: 0 14px 25px rgba(0,0,0,0.16);
}

.audio-current  .audio-current-button-pause-play span {
    display: block;
    background-repeat: no-repeat;
}

.audio-current .audio-current-button-pause-play.play span {
    margin-left: 7px;
    width: 30px;
    height: 30px;
    transition: all 0.2s;
}

.audio-current .audio-current-button-pause-play.pause span {
    margin-left: 0;
    width: 25px;
    height: 25px;
    transition: all 0.2s;
}

.audio-current  .audio-time {
    position: absolute;
    right: 0;
    font-weight: bold;
    text-shadow: none;
}

.audio-lists {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    margin-top: 15px;
}

.audio-lists .audio-item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-self: center;
    align-items: center;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: 1px solid #eeeeee;
    min-height: 60px;
    transition: all 0.2s;
}

.audio-lists .audio-item:hover {
    cursor: pointer;
    background: rgba(217, 217, 217, 0.3);
    transition: all 0.2s;
}

.audio-lists .audio-item.audio-item-active {
    background: rgba(225, 225, 225, 0.3);
}

.audio-lists .audio-item .audio-item-play {
    width: auto;
    max-width: 100%;
    margin: 0 20px 0 5px;
    max-height: 44px;
}

.audio-lists .audio-item .audio-item-play .audio-item-button-play-pause {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 0;
    font-size: 13px;
    text-align: center;
    text-shadow: none;
    transition: all 0.2s;
}

.audio-lists .audio-item .audio-item-play .audio-item-button-play-pause:focus {
    outline: none;
}

.audio-lists .audio-item .audio-item-play .audio-item-button-play-pause:hover {
    transition: all 0.2s;
    box-shadow: 0 14px 25px rgba(0,0,0,0.16);
}

.audio-lists .audio-item .audio-item-play .audio-item-button-play-pause span {
    display: block;
    background-repeat: no-repeat;
}

.audio-lists .audio-item .audio-item-play .audio-item-button-play-pause.play span {
    margin-left: 5px;
    width: 17px;
    height: 17px;
    transition: all 0.2s;
}

.audio-lists .audio-item .audio-item-play .audio-item-button-play-pause.pause span {
    margin-left: 1px;
    width: 20px;
    height: 20px;
    transition: all 0.2s;
}

.audio-lists .audio-item .audio-item-name {
    width: 50%;
    flex-grow: 2;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    min-width: 0;
    flex-shrink: 2;
}

.audio-lists .audio-item .audio-item-name span {
    display: block;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.audio-lists .audio-item .audio-item-name span:first-child {
    font-weight: bold;
}

.audio-lists .audio-item .audio-item-name span::first-letter {
    text-transform: uppercase;
}

.audio-lists .audio-item .audio-item-name span:last-child {
    margin-top: 2px;
}

.audio-lists .audio-item .audio-item-name span.composer {
    display: none;
}


@media screen and (max-width: 768px) {


    .audio-current-head {
        flex-wrap: wrap;
    }

    .audio-current-head > div {
        width: 100% !important;
        text-align: center;
    }

    .audio-current .composer {
        font-size: 16px !important;
    }

    .audio-current .audio-current-media .audio-current-image {
        width: 100%;
        text-align: center;
    }

    .audio-current-action {
        display: none;
    }

    .audio-current-content {
        flex-wrap: wrap;
        padding-top: 15px;
        padding: 10px;
    }

    .audio-current-media-block {
        width: 100%;
        flex-wrap: wrap;
    }

    .audio-current-actions {
        flex-wrap: wrap;
    }

    .audio-current .audio-current-waveform {
        width: 100%;
    }

    .audio-current .audio-time {
        order: -1;
        position: relative;
        width: 100%;
        text-align: center;
        margin-bottom: 6px;
    }

    .tr-audio {
        display: none;
        position: relative;
        width: 100%;
        height: 25px;
        transform: none;
        right: auto;
        bottom: auto;
        top: auto;
        margin-right: auto;
    }

    #waveform {
        margin-top: 10px;
    }

    #waveform > * {
        height: 60px !important;
    }

    .audio-lists .audio-item .audio-item-name {
        max-width: 230px;
    }

}