.pcast-player {
    margin-top: 30px;
    display: inline-block;
    direction: ltr;
    width: 100%;
}

.pcast-player-controls {
    display: block;
    width: 100%;
    text-align: center;
}

.pcast-play span,
.pcast-pause span,
.pcast-rewind span,
.pcast-forward span,
.pcast-mute span {
    display: none
}

.pcast-player-controls button {
    border: 0px;
    background: transparent;
    color: #d81b60;
    margin: 0 5px;
    cursor: pointer;
    outline: 0;
}


.pcast-progress,
.volumeRange {
    -webkit-appearance: none;
    height: 9px;
    outline: none;
    background: linear-gradient(to right, #d81b60 0%, #d81b60 0%, #eeeeee 0%, #eeeeee 100%);
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    opacity: 0.5;
    cursor: pointer;
}

.volumeRange {
    width: 100px;
    background: linear-gradient(to right, #d81b60 50%, #d81b60 50%, #eeeeee 0%, #eeeeee 100%);
}

.pcast-progress:hover {}

.pcast-progress::-webkit-slider-thumb,
.volumeRange::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #d81b60;
    cursor: pointer;
    border-radius: 100%;
    box-shadow: 0px 0px 5px #999;
}

.pcast-progress::-moz-range-thumb,
.volumeRange::-moz-slider-thumb {
    width: 20px;
    height: 20px;
    background: #d81b60;
    cursor: pointer;
    border-radius: 100%;
    box-shadow: 0px 0px 3px #555;
}


.pcast-currenttime.pcast-time {
    position: absolute;
    bottom: 3px;
    left: 0;
}
.pcast-duration.pcast-time {
    position: absolute;
    bottom: 3px;
    right: 0;
}


/***single podcast style***/
.single-podcast {
    width: 100%;
    margin: 40px 0px;
}
.top-single-podcast {
    gap: 2.75rem;
    display: grid;
    grid-template-columns: repeat(24, minmax(0, 1fr));
    margin-bottom: 40px;
}
.single-podcast-thumbnail {
    margin-bottom: 40px;
    grid-column: span 9/span 9;
}
.single-podcast-thumbnail img {
    max-width: 100%;
    border-radius: 6px;
    height: 16rem;
    object-fit: cover;
}
.single-podcast-info {
    grid-column: span 15/span 15;
    position: relative;
    height: 16rem;
}
.podcast-title {
    margin-bottom: 30px;
    font-size: 39px;
    color: #334155;
    line-height: 37px;
    width: 100%;
    display: inline-block;
    margin-top: 25px;
}
.more-podcast {
    background: #536479;
    color: white;
    border-radius: 6px;
    padding: 4px 7px;
    font-size: 13px;
    cursor: pointer;
    border: 1px solid #536479;
    transition-duration: .15s;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    float: right;
    margin-top: -7px;
}
.more-podcast:hover {
    background: #ffff;
    color: #536479;
}
.more-podcast svg {
    vertical-align: middle;
    margin-right: 6px;
    width: 17px;
}
.pcast-col1 {
    float: left;
    display: flex;
    justify-content: center;
}
button.pcast-play, button.pcast-rewind, button.pcast-pause, button.pcast-forward {
    font-size: 23px;
    color: #536479;
    margin: 0 12px;
    vertical-align: middle;
}
button.pcast-mute {
    background: #ffb7cb80;
    padding: 5px;
    font-size: 15px;
    border-radius: 6px;
    color: #eb4040;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
button.pcast-speed {
    background: #b2e0ef80;
    padding: 5px;
    font-size: 15px;
    border-radius: 6px;
    color: #5555ff;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
}
a.pcast-download {
    background: #ebebeb;
    color: #767676;
    padding: 5px;
    border-radius: 6px;
    transition-duration: .15s;
    height: 30px;
    display: flex;
    align-items: center;
}
a.pcast-download:hover {
    background: #2a9ce0;
    color: white;
}
a.pcast-download svg {
    vertical-align: middle;
    margin-right: 6px;
    width: 17px;
}
.pcast-player-controls svg{
    vertical-align: middle;
}
.single-podcast-meta {
    float: right;
    color: #5e96bf;
    margin-left: 18px;
    background: #41d2f71a;
    padding: 2px;
    border-radius: 6px;
}
.single-podcast-meta i {
    margin-left: 2px;
}
.related-podcast-item {
    overflow: hidden;
    margin: 0px 1px 32px;
    padding-bottom: 1rem;
    padding-top: 2.15rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 10px;
    box-shadow: -3px 2px 62px rgb(56 56 56 / 25%);
}
.related-podcast-item a {
    line-height: 26px;
}
.podcast-related-image {
    float: left;
    width: 7rem;
}
.podcast-related-image img {
    height: auto;
    max-width: 100%;
    border-radius: 6px;
    transition-duration: .3s;
}
.podcast-related-image img:hover {
    transform: scale(1.1);
}
.related-podcast-item h2 {
    display: block;
    transition-duration: .3s;
    position: relative;
    padding-right: 34px;
    direction: rtl;
}
.related-podcast-item h2:hover {
    color: var(--main-color);
}
.podcast-view {
    margin: 8px 25px 0px;
    float: left;
    display: flex;
    flex-direction: column;
}
.views-podcast {
    background: #ffb7cb78;
    padding: 1px 5px;
    border-radius: 6px;
    font-size: 13px;
    color: #ff5a5a;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: rtl;
}
.times-podcast {
    background: #195af926;
    padding: 1px 5px;
    border-radius: 6px;
    font-size: 13px;
    color: #55a4f3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}
.times-podcast i {
    margin-left: 3px;
}
svg.related-pod-svg {
    vertical-align: middle;
    margin-left: 20px;
    width: 30px;
    float: right;
    position: absolute;
    right: -4px;
}
.read-podcast {
    margin-right: 46px;
    font-size: 12px;
    color: #038ead;
    margin-top: 15px;
    display: block;
    border: 1px solid;
    border-radius: 30px;
    padding: 6px 9px;
    float: right;
    transition-duration: .3s;
    direction: ltr;

}
.read-podcast:hover {
    color: white;
    background: var(--secondary-color);
}
.read-podcast svg {
    vertical-align: middle;
}
.block-podcast-post {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 20px;
}

////swl2
.swal2-title h2 {
    font-size: 22px !important;
    font-family: yekanbakh;
}

h2#swal2-title {
    font-size: 22px;
    font-family: yekanbakh;
}

button.swal2-confirm.swal2-styled {
    background: var(--main-color);
    border-radius: 5px;
}

button.swal2-confirm.swal2-styled a {
    color: white;
    font-family: 'yekanbakh';
}

@media screen and (max-width: 992px) {
    .single-podcast-thumbnail {
        grid-column: span 12/span 12;
        margin-bottom: 15px;
    }
    .top-single-podcast {
        gap: 0;
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }
    .single-podcast-thumbnail img {
        height: 13rem;
        object-fit: cover;
        margin: auto auto;
        display: block;
    }
}

@media screen and (max-width: 768px) {
.pcast-player {
        text-align: -webkit-center;
    }
.pcast-player-controls {
        display: table-cell;
    }
.pcast-col1 {
    float: none;
    margin-bottom: 20px;
}
.more-podcast {
    display: block;
    text-align: center;
    margin-top: 20px;
    float: none;
    margin-bottom: 23px;
}
.single-podcast-info {
    height: auto;
}
.podcast-view {
    margin: 5px 0 0 0;
    float: right;
}
.related-podcast-item h2 {
    width: 100%;
    float: right;
    margin-top: 20px;
    font-size: 17px;
    display: inline-flex;
    position: relative;
    justify-content: right;
}
svg.related-pod-svg {
    margin-left: 0px;
}
.read-podcast {
    margin-right: 0px;
}
}

@media screen and (max-width: 567px) {
    .podcast-title {
        font-size: 24px;
        margin-bottom: 5px;
    }
    .single-podcast-meta {
            font-size: 12px;
    }
}