.mt40 {
    margin-top: 40px;
}

.voice-bar {
    max-width: 600px;
    padding: 40px 70px 40px 120px;
    box-sizing: border-box;
    height: 4px;
    background-color: #f9f9fb;
    border-radius: 50px;
    position: relative;
}

.voice-bar .gy-line {
    height: 2px;
    background-color: #e8e8e8;
    position: relative;
}

.voice-bar .time {
    position: absolute;
    top: -9px;
    width: 46px;
    font-size: 14px;
    color: #bbb;
}

.voice-bar .time-play {
    left: -60px;
    text-align: right;
}

.voice-bar .time-end {
    right: -70px;
}

.voice-bar .blue {
    position: absolute;
    left: 0;
    top: 0px;
    width: 45%;
    height: 2px;
    background-color: #00d899;
}

.voice-bar .dot {
    position: absolute;
    right: -30px;
    top: -6px;
    z-index: 10;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-image: linear-gradient(135deg, #00d899 0%, #00d899 100%);
    box-shadow: 0 5px 80px rgba(0, 0, 0, .15);
    cursor: pointer;
}

.voice-bar .move {
    position: absolute;
    left: 20px;
    top: 20px;
}

.move {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(79, 122, 182, .15);
    cursor: pointer;
}

.move audio {
    display: none;
}

.move .loader1,
.move .loader2,
.move .loader3,
.move .loader4,
.move .loader5 {
    width: 3px;
    background-color: #00d899;
    border-radius: 3px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.move .loader1 {
    height: 12px;
    margin-left: -12px;
}

.move #audio {
    display: none !important;
}


/* .move .loader1,
.move .loader2,
.move .loader3,
.move .loader4,
.move .loader5 {
    width: 3px;
    background-color: #00d899;
    border-radius: 3px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
} */

.move .loader1:after,
.move .loader2:after,
.move .loader3:after,
.move .loader4:after,
.move .loader5:after {
    position: absolute;
    left: 0;
    content: '';
    width: 3px;
    height: 3px;
    background-color: #00d899;
    border-radius: 50%;
}

.move .loader1 {
    height: 12px;
    margin-left: -12px;
}

.move .loader5 {
    height: 12px;
    margin-left: 12px;
}

.move .loader2 {
    height: 18px;
    margin-left: -6px;
}

.move .loader4 {
    height: 18px;
    margin-left: 6px;
}

.move .loader3 {
    height: 26px;
}

.move .loader1:after,
.move .loader3:after,
.move .loader5:after {
    bottom: 0;
}

.move .loader2:after,
.move .loader4:after {
    top: 0;
}


/**/

.play .loader1,
.play .loader2,
.play .loader3,
.play .loader4,
.play .loader5 {
    -webkit-animation: load1 1s infinite ease-in-out;
    animation: load1 1s infinite ease-in-out;
}

.play .loader1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.play .loader2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.play .loader3 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.play .loader4 {
    -webkit-animation-delay: -0.48s;
    animation-delay: -0.48s;
}

.play .loader5 {
    -webkit-animation-delay: -0.64s;
    animation-delay: -0.64s;
}

@-webkit-keyframes load1 {
    0%,
    80%,
    100% {
        height: 12px;
    }
    40% {
        height: 24px;
    }
}

@keyframes load1 {
    0%,
    80%,
    100% {
        height: 12px;
    }
    40% {
        height: 24px;
    }
}