.player {
    background: rgba(252, 243, 255, 1);
}

.audio-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    /* margin: 20px auto; */
    font-family: Arial, sans-serif;
}

.time {
    font-size: 14px;
    color: #333;
    width: 60px;
    text-align: center;
}

.progress-bar {
    flex: 1;
    height: 10px;
    margin: 0 10px;
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}


.btn:focus {
    box-shadow: none !important;
}

@media only screen and (max-width: 600px) {
    #progress-bar {
        width: 100%;
    }

    .audio-container {
        display: block;
        padding: 20px;
    }
}

.podcast-summary {
    position: absolute;
    height: 100%;
    top: -110%;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 5;
    transition: top .5s;
    font-size: 14px;
    overflow: auto;
}

#podcast-img {
    border-radius: 20px;
    object-fit: cover;
}

.subscribe_btn {
    margin-top: 10px;
    border: 1px solid
}

#new_player_episode_title {
    font-size: 20px;
    font-weight: bold;
}

#episode-season-number {
    font-size: 10px;
    font-weight: bold;
}

#15secforward-button {
    border-radius: 50%;
    font-size: 20px;
}

.fa-info-circle {
    font-size: 15px;
}

.br-50 {
    border-radius: 50%;
}

.fs-30 {
    font-size: 30px;
}

.fs-22 {
    font-size: 22px;
}

.fs-20 {
    font-size: 20px;
}

.fs-15 {
    font-size: 15px;
}

.tipbtn {
    width: 100%;
    font-size: 14px;
    position: relative;
}

@media (min-width: 1000px) {
    #podcast-img {
        width: 200px;
    }
}