.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-end {
    justify-content: flex-end;
}

.w-50 {
    width: 50%;
}

.w-75 {
    width: 75%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.cursor-pointer {
    cursor: pointer;
}

.p-1 {
    padding: .5em;
}

.fa-spinner {
    -webkit-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.volume-slider-wrapper {
    display: grid;
    grid-template-columns: 1fr 5fr 1fr;
    justify-content: center;
    align-items: center;
}

.volume-slider-wrapper i {
    color: #002F5F;
}

.range-container {
    --range-container-height: 7px;
    --range-height: 3px;
    --hover-range-height: var(--range-height);
    --thumb-height: 200%;
    --range-bg-color: rgba(100, 100, 100, 0.5);
    --thumb-color: red;
    --preview-color: rgba(255, 255, 255, 0.5);
    --progress-color: #f00;
    --buffer-color: rgba(255, 255, 255, 0.3);
    height: var(--range-container-height);
    margin-inline: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex: 1;
}
.range-container.expandOnHover {
    --hover-range-height: 100%;
}
.range-container .range {
    background-color: var(--range-bg-color);
    height: var(--range-height);
    width: 100%;
    position: relative;
    border-radius: 10px;
}
.range-container .range .preview {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    right: calc(100% - var(--preview-position) * 100%);
    background-color: var(--preview-color);
    display: none;
}
.range-container .range .progress {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    right: calc(100% - var(--progress-position) * 100%);
    background-color: var(--progress-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.range-container .range .progress .percent-value {
    font-size: var(--percent-font-size);
    color: var(--percent-color);
    z-index: 1080;
}
.range-container .range .buffered {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    right: calc(100% - var(--buffer-position) * 100%);
    transition: all 100ms ease-in-out;
    background-color: var(--buffer-color);
}
.range-container .range .thumb-indicator {
    position: absolute;
    transform: translate(-50%, -50%) scale(1);
    height: var(--thumb-height);
    top: 50%;
    left: calc(var(--progress-position) * 100%);
    background-color: var(--thumb-color);
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    z-index: 10;
}
.range-container:hover .range {
    height: var(--hover-range-height);
}
.range-container:hover .range .preview {
    display: block;
}
.range-container:hover .thumb-indicator {
    display: block !important;
}

.progress-slider {
    display: flex;
    flex-flow: column nowrap;
    margin-top: 1em;
}

.progress-slider > div {
    width: 80%;
}

.rh-podcast a {
    text-decoration: none;
}

.rh-podcast .rh-podcast__header {
    display: grid;
    grid-template-columns: 23fr 77fr;
}

.rh-podcast .rh-podcast__header .rh-podcast__cover img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.rh-podcast .rh-podcast__header .rh-podcast__info {
    padding: 1em;
}

.rh-podcast .rh-podcast__header .rh-podcast__info h2 {
    position: relative;
    margin: 0;
    padding-bottom: 1em;
}

.rh-podcast .rh-podcast__header .rh-podcast__info h2:after {
    position: absolute;
    content: ' ';
    bottom: 23%;
    left: 0;
    width: 6%;
    height: 1px;
    background-color: #9B9B9B;
}

.rh-podcast .rh-podcast__controls {
    margin: 3em 0;
}

.rh-podcast .rh-podcast__controls .player-timers {
    display: flex;
    justify-content: space-between;
    margin-top: .5em;
}

.rh-podcast .rh-podcast__controls .rhwp-playstop-box {
    padding: 3px;
    border: 2px solid #002F5F;
    border-radius: 100%;
}

.rh-podcast .rh-podcast__controls .rhwp-playstop {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #aac7dc;
    font-size: 24px;
    color: #E00034;
    border-radius: 100%;
    cursor: pointer;
}

.time-skip {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.time-skip svg {
    position: absolute;
    top: 0;
    left: 0;
    fill: #002F5F;
}

.time-skip.time-skip--rewind svg {
    transform: rotate(90deg);
}

.time-skip.time-skip--forward svg {
    transform: scaleX(-1) rotate(90deg);
}

.time-skip span {
    color: #E00034;
    font-weight: bold;
    line-height: 1;
    margin-top: 4px;
    margin-right: 1px;
}

.change-podcast a {
    color: #002F5F;
    font-size: 1.5em;
}

.rh-podcast .disabled {
    opacity: 0.4;
    pointer-events: none;
}

.rh-podcast__footer {
    color: #002F5F;
    font-size: 1em;
}

.rh-podcast__footer i {
    font-size: 1.5em;
}

@media screen and (min-width: 601px) {
    .rh-podcast__footer {
        display: flex;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 991px) {
    .w-75 {
        width: 100%;
    }
}


@media screen and (max-width: 600px) {
    .rh-podcast .rh-podcast__header {
        grid-template-columns: 1fr;
    }

    .rh-podcast .rh-podcast__header .rh-podcast__cover {
        text-align: center;
    }

    .rh-podcast .rh-podcast__header .rh-podcast__cover img {
        max-width: 90%;
    }

    .rh-podcast .rh-podcast__header .rh-podcast__info {
        justify-content: center;
    }

    .rh-podcast__info, .rh-podcast__footer {
        text-align: center;
    }
}
