.each_podcast_activator {
    cursor: pointer;
}

.podcast_player_wrapper {
    position: fixed;
    width: 100vw;
    height: 90px;
    bottom: 0;
    left: 0;
    background: #fff;
    z-index: 100;
    box-shadow: 0 0 20px #0000001f;
    transition: all 0.5s ease;
    transform: translateY(110%);
}

.podcast_player_container {
    max-width: var(--site-content-width, 1200px);
    margin: auto;
    padding: 10px 30px;
    display: flex;
    flex-direction: row-reverse;
    height: 100%;
    align-items: center;
    gap: 20px;
}

.podcast_audio_control {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    gap: 13px;
}

.podcast_btn.podcast_play_pause {
    font-size: 23px;
    position: relative;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
}

.podcast_btn.podcast_play_pause i {
    position: absolute;
    transition: all 0.5s ease;
    transform: scale(0);
    color: var(--color-content-primary);
}

.podcast_btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.podcast_btn.podcast_play_pause.paused i.fas.fa-play {
    transform: scale(1);
}

.podcast_btn.podcast_play_pause.played i.fas.fa-pause {
    transform: scale(1);
}

.podcast_speed_control {
    display: flex;
    gap: 10px;
    font-family: nooshikaybakhen, serif;
    line-height: 17px;
    font-size: 15px;
    color: #707070;
    font-weight: 700;
    border-radius: 4px;
}

.podcast_speed_control div {
    padding: 3px 8px 0;
    cursor: pointer;
    background: #f1f1f1;
    border-radius: 3px;
}

.podcast_speed_control div.active {
    background: var(--color-content-primary);
    color: #fff;
}

canvas.podcast_waveform {
    width: 100%;
    height: 200px;
    position: absolute;
    z-index: 1;
    top: -97px;
    pointer-events: none;
}

.podcast_timeline {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.podcast_timeline_bg {
    width: 100%;
    height: 5px;
    background: #dbdbdb;
    border-radius: 6px;
    position: relative;
    z-index: 2;
}

.podcast_timeline_elapsed {
    position: absolute;
    left: 0;
    width: 0;
    border-radius: 5px;
    height: 5px;
    background: var(--color-content-primary);
    z-index: 3;
}

.podcast_time_pointer {
    position: absolute;
    top: 100%;
    font-size: 15px;
    font-weight: 500;
    line-height: 28px;
}

.podcast_time_pointer.elapsed_time {
    left: 0;
}

.podcast_time_pointer.remaining_time {
    right: 0;
    cursor: pointer;
}

.podcast_pointer_dot {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 4px 1px #0000004d;
    transition: all 0.2s ease;
    border: solid #fff 2px;
}

.podcast_timeline_pointer {
    position: absolute;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    z-index: 12;
    transform: translate(-10px);
    cursor: pointer;
}

.podcast_timeline_pointer:hover div {
    transform: scale(1.5);
    background: var(--color-content-primary);
}

.podcast_player_wrapper.active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    .podcast_player_container {
        flex-direction: column;
        justify-content: space-between;
        padding-bottom: 30px;
    }

    .podcast_player_wrapper {
        height: 130px;
    }

    .podcast_timeline {
        width: 100%;
        flex-grow: 0;
    }
}




.podcast_player_block {
    margin: 50px 0px 0px;
}
.podcast_speed_control {
    justify-content: center;
    margin: 13px;
}
.audio_player_box {
    z-index: 5;
    position: relative;
    background: rgb(221, 237, 250);
    border-radius: 20px;
    padding: 20px 30px;
    margin-top: 30px;
}
.player_control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.player_control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.audio_question_container {
    max-width: 470px;
    margin: 15px auto;
}

.active.player_toggle i.fal.fa-pause {
    transform: scale(1);
}

.player_toggle {
    width: 30px;
    height: 30px;
    font-size: 18px;
    color: rgb(255, 255, 255);
    background: var(--main-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.player_toggle:not(.active) i.fal.fa-play {
    transform: scale(1);
}

.player_toggle i {
    position: absolute;
    transition: all 0.5s ease 0s;
    transform: scale(0);
}

.player_toggle i.fal.fa-play {
    left: 9px;
}

.player_control > div {
    cursor: pointer;
    display: flex;
}

.player_bar {
    position: relative;
    width: 100%;
    height: 4px;
    margin: 10px 0px;
    border-radius: 5px;
    background: rgb(255, 255, 255);
    cursor: pointer;
}

.player_elapsed {
    position: absolute;
    height: 100%;
    background: var(--main-color);
    width: 0px;
    left: 0px;
    border-radius: 10px;
}

.player_dot {
    position: absolute;
    width: 10px;
    height: 10px;
    left: 0px;
    transform: translateX(-5px);
    top: -3px;
    background: var(--main-color);
    box-shadow: 0px 0px 2px;
    border-radius: 6px;
}

.player_repeat.active i.fal {
    font-weight: 700;
    color: var(--main-color);
}
.answer_audio_player .audio_player_box {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    align-items: center;
}

.answer_audio_player .player_replay {
    display: none;
}

.answer_audio_player .player_repeat {
    display: none;
}
.answer_audio_player {
    position: absolute;
    width: calc(100% - 70px);
    transition: all 0.5s ease 0s;
    opacity: 0;
    pointer-events: none;
    left: 24px;
}
.answer_audio_player .player_toggle {
    background: transparent;
    color: rgb(0, 0, 0);
    opacity: 0;
    pointer-events: none;
}
.stop_recording_btn.answer_btn.active, .player_toggle.ready_for_send, .delete_record_audio_btn.answer_btn.active, .answer_audio_player.active, .record_timer.active, .active.answer_btn.upload_recorded_audio_btn {
    pointer-events: all;
    opacity: 1;
}
.player_duration_container {
    font-size: 14px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
}

.play_list_podcast {
	cursor: pointer;
}












.play_pause {
  display: flex;
  align-items: center;
}
img.play {
	transform: scale(1);
	opacity: 1;
}
.podcast_control_section img {
	display: block;
	cursor: pointer;
}
.play_pause img {
	position: absolute;
	transition: all ease 0.2s;
}
.playing img.play {
  transform: scale(0.5);
  opacity: 0;
}
img.pause {
	opacity: 0;
	transform: scale(0.5);
}
.podcast_player_main img.barg_logo {
  width: 100%;
  border-radius: 0;
  position: relative;
  top: 0;
  min-width: 638px;
  min-height: 356px;
  left: 28px;
  transform: unset;
  display: block;
}
.podcast_player_main .play_xl{
	display: block;
}
.podcast_player_main .play_xl {
	position: absolute;
	left: 47%;
	top: 38%;
	z-index: 10;
}
.podcast_player_main .play_pause{
	position: absolute;
	left: 13px;
	width: 19px;
	top: 12px;
}
.playing img.pause {
	opacity: 1;
	transform: scale(1);
}
.podcast_player_main .podcast_player_block{
	position: absolute;
	max-width: 304px;
	padding: 0px 50px 12px 71px;
	left: -5px;
	border-radius: 0px 0px 0 12px;
	width: 100%;
	bottom: 44px;
}
.podcast_player_block {
	margin: auto;
	margin-top: -20px;
}
.podcast_header {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.podcast_control_section {
	display: flex;
	align-items: center;
	margin-top: 10px;
}
.podcast_player_main #eq_canvas {
	display: none;
}
canvas#eq_canvas {
	margin: auto;
	transform: rotate(180deg);
	transform-origin: center;
	max-width: 100%;
}
.podcast_player_main .forward_bottom{
	display: none;
}
.podcast_control_section > div {
	width: 40px;
}
.podcast_control_section img {
	display: block;
	cursor: pointer;
}
.podcast_player_main .backward_bottom {
	display: none;
}
.podcast_player_main .timeline_container {
	margin: 0;
	height: 4px;
}
.timeline_container {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 0 3px #00000035;
}






.podcast_player_main .elapsed_bar {
	background: #000;
}
.elapsed_bar {
	height: 100%;
	margin-right: auto;
}
.elapsed_bar {
	position: absolute;
	border-radius: 5px;
	left: 0;
}
.timeline_container {
	cursor: pointer;
	font-size: 14px;
}
.podcast_player_main .time_pointer_dot{
	width: 9px;
	background: #000;
	height: 9px;
	top: -2px;
	transform: translateX(-5px);
}
.time_pointer_dot {
	position: absolute;
	border-radius: 5px;
	z-index: 10;
	box-shadow: 0 0 3px 0px #000;
	transition: width 0.2s ease-in-out, height 0.2s ease-in-out, border-radius 0.2s ease-in-out;
}
.mouseLine {
  position: absolute;
  width: 3px;
  height: 100%;
  background: #000;
  bottom: 0;
  display: none;
  z-index: 5;
}
.mouseLine {
  border-radius: 5px;
  left: 0;
  opacity: 0.5;
}
.podcast_player_main .elapsed_time {
  top: -12px;
  transform: none;
  left: -42px;
  color: #fff;
}
.elapsed_time {
  height: 30px;
  line-height: 30px;
  width: 45px;
  text-align: left;
  margin-left: 5px;
  direction: ltr;
}
.elapsed_time {
  position: absolute;
  left: 0;
  top: 100%;
  transform: translateY(7px);
}
.podcast_player_main .remaining_time {
  top: -13px;
  transform: none;
  right: -36px;
  display: none;
}
.remaining_time {
  position: absolute;
  top: 100%;
  right: 0;
  transform: translateY(7px);
}
.podcast_header_archive_page {
	position: absolute;
	right: 0;
	top: 0;
}
.podcast_player_main .podcast_title_container {
	color: #000;
	display: none;
}
.podcast_player_main .podcast_topic_container {
	display: none;
}
.podcast_player_main .podcast_title.podcast_title-custom{
	display: none;
}
.podcast_title {
	font-size: 20px;
	font-weight: 700;
	user-select: none;
	padding-left: 5px;
	margin-left: 5px;
	border-left: 2px solid;
	line-height: 22px;
}
.podcast_narrator {
	max-height: 17px;
	line-height: 21px;
	font-size: 15px;
}
.podcast_topic {
	font-size: 20px;
	font-weight: 700;
	user-select: none;
	padding-left: 5px;
	margin-left: 5px;
	line-height: 22px;
}








