.audio-card {
    max-width: 400px;
}

.audio-card-cover-wrapper {
    position: relative;
}

.audio-card-cover {
    width: 100%;
    display: block;
}

.audio-card-play {

    position: absolute;

    bottom: 10px;
    right: 10px;

    width: 70px;
    height: 70px;

    border: none;
    border-radius: 50%;

    background: rgba(0,0,0,0.4);

    color: white;

    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.audio-card-title {

    margin-top: 10px;

    font-weight: bold;

    text-align: center;

    color: white;
}

.audio-card-progress {

    width: 100%;

    margin-top: 10px;

    cursor: pointer;
}