/*kismat dai le milaunu huncha*/
.audio-block-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    background-color: #4b4747;
    padding: 10px 20px 10px 10px;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 8px;
}

@media (max-width: 991px) {
    .audio-block-wrapper {
        padding: 10px;
        flex-wrap: wrap;
    }
}

.audio-block-wrapper .audio-src {
    display: none;
}

.audio-block-wrapper .img-block {
    max-width: 200px;
    flex: 0 0 200px;
    height: 150px;
}

@media (max-width: 991px) {
    .audio-block-wrapper .img-block {
        max-width: 180px;
        flex: 180px;
        height: 140px;
    }
}

@media (max-width: 374px) {
    .audio-block-wrapper .img-block {
        max-width: 150px;
        flex: 150px;
        height: 120px;
    }
}

.audio-block-wrapper .img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.audio-block-wrapper .title-player-block h2 {
    font-size: 24px;
    line-height: 30px;
    color: #fff;
    padding-bottom: 10px;
}

@media (max-width: 767px) {
    .audio-block-wrapper .title-player-block h2 {
        font-size: 20px;
        line-height: 24px;
    }
}

.audio-block-wrapper .title-player-block h4 {
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    padding-bottom: 15px;
}

@media (max-width: 767px) {
    .audio-block-wrapper .title-player-block h4 {
        font-size: 14px;
        line-height: 18px;
    }
}


.audio-block-wrapper .title-player-block {
    flex: 0 0 calc(100% - 280px);
    max-width: calc(100% - 280px);
    padding: 10px;
}

@media (max-width: 991px) {
    .audio-block-wrapper .title-player-block {
        max-width: 100%;
        flex: 100%;
        order: 3;
        padding: 10px 0;
    }
}

.audio-block-wrapper .btn-block {
    width: 80px;
    text-align: center;
}

@media (max-width: 767px) {
    .audio-block-wrapper .btn-block {
        width: 60px;
    }
}

.audio-block-wrapper .btn-block .time {
    margin-top: 15px;
    color: #fff;
}

.audio-block-wrapper.no-feat-img {
    flex-wrap: nowrap;
}

.audio-block-wrapper.no-feat-img .title-player-block {
    flex: 0 0 calc(100% - 80px);
    max-width: calc(100% - 80px);
    padding: 0 10px 0 0;
}

@media (max-width: 991px) {
   .audio-block-wrapper.no-feat-img .title-player-block {
    order: -1;
   } 
}

@media (max-width: 767px) {
   .audio-block-wrapper.no-feat-img .title-player-block {
    flex: 0 0 calc(100% - 60px);
    max-width: calc(100% - 60px);
   } 
}

/*kismat dai le milaunu huncha*/

.audio-block-wrapper .play-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border: 2px solid #fff;
    border-radius: 50%;
    /*filter: drop-shadow(0 0 3.1rem rgba(255, 255, 255, 0.8));*/
    padding: 0;
    /* Remove extra padding */
    margin: 0 auto;
    background-color: #fff;
    cursor: pointer;
}

@media (max-width: 767px) {
    .audio-block-wrapper .play-container {
        width: 50px;
        height: 50px;
    }
}

/* Play button (triangle) */
.audio-block-wrapper .toggle-play.play {
    margin-left: 5px;
    /* Adjust alignment */
    background: none;
    border: none;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 24px solid #ABF018;
    height: 32px;
    width: 24px;
}

@media (max-width: 767px) {
    .audio-block-wrapper .toggle-play.play {
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        border-left: 20px solid #ABF018;
        height: 24px;
        width: 20px;
    }
}

/* Pause button (two vertical bars) */
.audio-block-wrapper .toggle-play.pause {
    position: relative;
    background: none;
    border: none;
    height: 32px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .audio-block-wrapper .toggle-play.pause {
        height: 24px;
        width: 16px;
    }
}

/* The two vertical bars */
.audio-block-wrapper .toggle-play.pause:before,
.audio-block-wrapper .toggle-play.pause:after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 30%;
    /* Adjust for better spacing */
    background: #ABF018;
}

.toggle-play.pause:before {
    left: 0;
}

.toggle-play.pause:after {
    right: 0;
}

.audio-block-wrapper .timeline {
    background: white;
    width: 100%;
    position: relative;
    cursor: pointer;
    /*box-shadow: 0 2px 10px 0 #0008;*/
    height: 5px;
    border-radius: 8px;
}

.audio-block-wrapper .timeline .audio-progress {
    background: #ABF018;
    height: 100%;
    transition: 0.25s;
    position: relative;
    border-radius: 8px;
}

.audio-block-wrapper .timeline .audio-progress:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #ABF018;
    display: block;
    border-radius: 50%;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    left: calc(100% - 2px);
}