.reproductor {
    background-color: #f6f6f6;
    width: 100%;
    height: auto;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    /*box-shadow: 0 0 8px rgba(0,0,0,.1)*/
}

.reproductor:before {
    content: '';
    position: absolute;
    right: -10px;
    height: 100%;
}

.reproductor .cover {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reproductor .cover > img {
    width: inherit;
}

.playaudio, .playaudio2 {
    font-size: 14px;
    width: 60px;
    height: 60px;
    display: flex;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    background-color: #017D94;
    transform: scale(1.1);
    border: solid 10px #dadada;
    /*margin-right: 20px;*/
    color: #fff;
    cursor: pointer;
    transition: all ease .3s;
    margin-right: 10px;
}

.playaudio:hover, .playaudio2:hover {
    transform: scale(1.2);
}

.reproductor progress {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -5px;
    z-index: 1;
}


.playactive {
    background-color: red;
}


progress {
    width: 100%;
    height: 3px;
    /*border-top-right-radius: 3px;
    border-top-left-radius: 3px;*/
    overflow: hidden;
    margin: 5px 0;
    cursor: pointer;
    background-color: #f1f1f1;
    transition: all ease .3s;
}

progress:hover {
    height: 6px;
}

progress[value]::-webkit-progress-bar {
    background-color: transparent;
}


progress[value]::-webkit-progress-value {
    background-color: #017D94;
    border-radius: 2px;
    background-size: 35px 20px, 100% 100%, 100% 100%;
    -webkit-animation: animate-stripes 5s linear infinite;
    animation: animate-stripes 5s linear infinite;
}
