main {
    width: 100%;
    margin: 0;
    direction: rtl;
    background: linear-gradient(55deg, rgba(255, 124, 3, 0.72) 22.73%, rgba(253, 214, 11, 0.72) 76.7%);
    background-image: linear-gradient(to right top, #ff7c03, #ff9300, #ffaa00, #ffc000, #ffd600);
    padding: 0;
    border-radius: 0;
}

.podcast-category .arrows {
    position: absolute;
    z-index: 999;
    top: 0;
    width: 100%;
    display: flex;
}

.podcast-category .arrows i {
    font-size: 21px;
    margin: 0 5px;
    color: #d3d3d3;
    cursor: pointer;
}

.podcast-category .arrows i:hover {
    color: #000000;
}
.podcastPlaylist a {
    height: 100%;
}
.podcastPlaylist .podcastBox {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: #fff;
    padding: 1rem;
    margin: 0.5rem 0;
    height: 95%;
}

.podcastPlaylist .podcastBox.active {
    box-shadow: 1px 1px 10px #00000052;
}

.podcastPlaylist .podcastBox:hover {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.16);
    transition: 0.3s;
}

.podcastPlaylist .podcastBox img {
    width: 100%;
    height: auto;
}

.podcastPlaylist .podcastBox div.title {
    padding: 8px 10px 3px;
    text-align: center;
}

.podcastPlaylist .podcastBox h5 {
    margin: 0 0 1.5rem;
    font-weight: 700;
    text-align: center;
    padding: 0 7px;
    font-size: 1.1rem;
    color: #000;
}

audio {
    display: none;
}

.blog-main .action {
    text-align: center;
    width: 85%;
    margin: 0 auto;
}

.action .controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
    margin: 0 auto;
}

.hidden {
    display: none;
}

.action .controls a i {
    position: relative;
    font-size: 22px;
    border-radius: 100%;
    cursor: pointer;
    color: #fff;
}

.action .play-stop-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.action .play-stop-actions a {
    display: flex;
    background: #00C853;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-bottom: 11px;
    margin-right: 6px;
}

.action .play-stop-actions a.stop-audio {
    background: #2962FF;
}

.podcast-duration {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4b4949;
    text-align: center
}

.podcast-duration span {
    font-weight: bold;
    margin-right: 7px;
}

.action div.speed {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    text-align: center;
    margin-bottom: 5px;
    width: max-content;
}

.action div.speed a {
    padding: 2px 13px;
    font-size: 12px;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 3px;
    font-weight: 300;
    color: #fff;
    background: #78909C;
}

.action div.speed a:hover {
    transition: 0.5s;
    background-color: #6b6b6b;
    color: #ffffff;
    border: 1px solid #fff0;
}

.action div.speed a.b2 {
    background-color: #6b6b6b;
    color: #ffffff;
    border: none;
}

.action .audio {
    width: 85%;
    margin: 0 auto;
}