

#audioplayer {
    display: flex;
    min-height: 90px;
    background: #aba8a8;
    border-radius: 15px;
}

#audioplayer img {
    display: block;
    max-width: 30%;
    height: auto;
    margin: auto 0px;
    border-radius: 0;
    box-shadow: 0 0 0;
    border: 1px solid;
}

.player {
    display: block;
    overflow: hidden;
    width: auto;
    margin: auto;
}

.player-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    color: #000000e8;
}



.playpause-track {
    position: relative;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color .3s ease;
    margin: 0 10px
}

.playpause-track.active {
    background-color: #4caf50
}

.playerthird {
    margin: 0;
    padding: 0;
    display: block
}

.flip{
    cursor: pointer;
    margin: auto 7px;
    display: inline-block;
    font-size: 22px;
}

.fa-pause-circle::after {
    content: ' ';
    display: flex;
    width: 50px;
    height: 50px;
    border: 2px solid #1a7329;
    border-radius: 50%;
    animation: blinkAnimation 1.5s infinite;
    margin: 4px;
    box-shadow: inset 0 0 20px 11px #189303
}

@keyframes blinkAnimation {
    0%,100% {
        opacity: 0
    }

    50% {
        opacity: 1
    }
}

.volume_slider {
    display: flex;
    width: 80%;
    height: 5px;
    -webkit-appearance: none;
    outline: none;
    background-image: repeating-linear-gradient(87deg,#fff,#393939 5px);
    border: 1px solid;
    justify-content: center;
    margin: 10px auto
}

.volume_slider::-webkit-slider-thumb {
    appearance: none;
    width: 30px;
    height: 15px;
    cursor: pointer;
    background-color: #e74910;
    background-image: repeating-linear-gradient(92deg,#fff,#d35400 5px);
    border: 1px solid
}

.prev-track,.next-track {
    cursor: pointer;
    color: #d50000
}

.track-name {
    flex-grow: 1;
    text-align: center;
    padding: 0 10px;
    display:none;
}

 

#playPauseIcon {
    display: contents
}

.fa-play-circle::after {
    content: " ";
    display: flex;
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: rotateAnimation 7s linear forwards;
    border-style: dashed;
    box-shadow: inset 0 0 9px 6px #373232;
    justify-content: center;
    align-items: baseline;
    padding: 2px;
    margin: 4px
}

@keyframes rotateAnimation {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

 

@media screen and (max-width: 500px) {
    .player {
        width:auto
    }

    .fa-play-circle::after {
        width: 40px;
        height: 40px
    }

    .fa-pause-circle::after {
        width: 40px;
        height: 40px
    }

    .track-name {
        flex-grow: 1;
        text-align: center;
        padding: 0 10px;
        display: none
    }
}

@media screen and (max-width: 350px) {
    .player {
        width:auto
    }

    .fa-play-circle::after {
        width: 40px;
        height: 40px
    }

    .fa-pause-circle::after {
        width: 40px;
        height: 40px
    }
.prev-track,.next-track{
    cursor: pointer;
    color: #fff;
    display: none;
}
#audioplayer img {
    display: none;
     
    height: auto;
    margin: auto 5px;
    border-radius: 20px;
    padding: 10px;
}
}

@media screen and (max-width: 200px) {
    .player {
        width:auto
    }

    .fa-play-circle::after {
        width: 20px;
        height: 20px
    }

    .fa-pause-circle::after {
        width: 20px;
        height: 20px
    }

    .playerpartOne {
        display: flex;
        background-color: #333;
        overflow: hidden;
        width: 70%;
        justify-content: center;
        align-items: center;
        padding: 5px
    }

    .playerthird {
        margin: 0;
        padding: 0;
        display: none
    }

    .playertreadmark {
        display: none
    }
}

@media screen and (max-width: 140px) {
    .playerpartOne {
        display:flex;
        background-color: #333;
        overflow: hidden;
        width: 96%;
        justify-content: center;
        align-items: center;
        padding: 5px
    }
}

.player-alert {
    display: none;
    background: #fff;
    color: red;
    padding: 5px;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    overflow: auto;
}

