.alemPortalArea {
    position: relative;
    z-index: 99;
}

.alemPortalArea .alem-select {
    position: relative;
    width: 220px;
    user-select: none;
    border: 2px solid #ffac00;
    border-radius: 40px;
    padding: 5px 10px;
    background: #fff;
    box-sizing: border-box;
}

.alem-select__header {
    background: #fff;
    padding: 0 8px 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 40px;
    width: 100%;
    box-sizing: border-box;
}

.alem-select__selected {
    display: flex;
    align-items: center;
    flex: 1;
    min-height: 36px;
}

.alem-select__selected img {
    max-height: 32px;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.alem-select__title {
    font-weight: 700;
    color: #222;
    font-size: 14px;
}

.alem-select__chevron {
    width: 20px;
    height: 20px;
    transition: transform .25s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.alem-select.is-open .alem-select__chevron {
    transform: rotate(180deg);
}

.alem-select__list {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 2px solid #ffac00;
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .14);
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 9999;
    width: 100%;
    box-sizing: border-box;
}

.alem-select.is-open .alem-select__list {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.alem-select__list-inner {
    padding: 8px 0;
}

.alem-select__list-title {
    text-align: center;
    padding: 14px 10px 10px;
    font-weight: 500;
    color: #222;
    font-size: 12px;
    border-bottom: 1px solid #eee;
}

.alem-select__option {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background .15s;
}

.alem-select__option:last-child {
    border-bottom: none;
}

.alem-select__option:hover {
    background: #fff5e6;
}

.alem-select__option.is-active {
    background: #ffe8c7;
}

.alem-select__option img {
    max-height: 44px;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.header-main-desktop .right-side {
    position: relative;
    width: 225px;
    min-height: 50px;
}

.header-main-mobile .left-area .newMobileLogo {
    display: none;
}

.header-main-mobile .right-area {
    position: relative;
    min-height: 50px;
}

.header-main-mobile .right-area .alemPortalArea {
    position: absolute;
    right: 0;
    top: 0;
}

.body-alem-portal .header-main-desktop,
.body-alem-portal .header-main-mobile {
    margin-bottom: 0;
}

.alem-portal-section {
    background: url(/assets/img/podcast-bg.png);
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
    height: 500px;
    color: #fff;
}

.alem-portal-section .podcast-title {
    font-size: 70px;
    font-weight: 900;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.alem-portal-section .podcast-body {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.alem-portal-section .podcast-body .podcast-img-circle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background-color: rgba(28, 7, 0, .5);
    border: 2px solid;
    padding: 30px;
}

.alem-portal-section .podcast-body .podcast-img-circle img {
    width: 100%;
    height: 100%;
    opacity: .7;
}

.alem-portal-section .podcast-body .podcast-img-circle.active {
    background-color: #1c0700;
}

.alem-portal-section .podcast-body .podcast-img-circle.active img {
    opacity: 1;
}

.alem-portal-section .podcast-body .podcast-img-circle.active .active-text {
    display: flex;
}

.alem-portal-section .podcast-body .podcast-img-circle.active.alemfm-slow {
    box-shadow: 0 0 54px #d24381;
}

.alem-portal-section .podcast-body .podcast-img-circle.active.alemfm-plaktan {
    box-shadow: 0 0 54px #927137;
}

.alem-portal-section .podcast-body .podcast-img-circle.active.alemfm-farabesk {
    box-shadow: 0 0 54px #a92024;
}

.alem-portal-section .podcast-body .podcast-img-circle.active.alemfm-atmosfer {
    box-shadow: 0 0 54px #3179aa;
}

.alem-portal-section .podcast-body .podcast-img-circle .active-text {
    position: absolute;
    right: auto;
    left: auto;
    bottom: 30px;
    display: none;
    align-items: center;
    justify-content: center;
}

.alem-equalizer {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    height: 22px;
    min-width: 24px;
}

.alem-equalizer span {
    display: block;
    width: 3px;
    height: 8px;
    background: #fff;
    border-radius: 3px;
    animation: alemEqualizer 1s ease-in-out infinite;
}

.alem-equalizer span:nth-child(2) {
    animation-delay: .12s;
}

.alem-equalizer span:nth-child(3) {
    animation-delay: .24s;
}

.alem-equalizer span:nth-child(4) {
    animation-delay: .36s;
}

.alem-equalizer-dark span {
    background: #000;
}

@keyframes alemEqualizer {
    0%, 100% {
        height: 7px;
    }

    50% {
        height: 22px;
    }
}

.alem-portal-section .podcast-body .podcast-img-circle.alemfm-slow {
    border-color: #d24381;
}

.alem-portal-section .podcast-body .podcast-img-circle.alemfm-slow:hover {
    box-shadow: 0 0 54px #d24381;
}

.alem-portal-section .podcast-body .podcast-img-circle.alemfm-plaktan {
    border-color: #927137;
}

.alem-portal-section .podcast-body .podcast-img-circle.alemfm-plaktan:hover {
    box-shadow: 0 0 54px #927137;
}

.alem-portal-section .podcast-body .podcast-img-circle.alemfm-farabesk {
    border-color: #a92024;
}

.alem-portal-section .podcast-body .podcast-img-circle.alemfm-farabesk:hover {
    box-shadow: 0 0 54px #a92024;
}

.alem-portal-section .podcast-body .podcast-img-circle.alemfm-atmosfer {
    border-color: #3179aa;
}

.alem-portal-section .podcast-body .podcast-img-circle.alemfm-atmosfer:hover {
    box-shadow: 0 0 54px #3179aa;
}

.alem-portal-section .podcast-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #000;
    border: 2px solid #ff7a00;
    border-radius: 40px;
    padding: 5px;
}

.alem-portal-section .podcast-btn .podcast-btn-text {
    font-size: 18px;
    font-weight: 700;
}

.alem-portal-section .podcast-btn .podcast-btn-text :first-child {
    color: #ff7a00;
}

.alem-portal-section .row {
    justify-content: center;
}

.body-alem-portal .radio-player .player-wrapper,
.radio-player-alem-portal .player-wrapper {
    flex-wrap: nowrap;
    gap: 10px;
}

.body-alem-portal .radio-player .player-btn-wrapper,
.radio-player-alem-portal .player-btn-wrapper {
    background-color: rgba(255, 255, 255, .8);
    border: 1px solid #927137;
    border-radius: 160px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
}

.body-alem-portal .radio-player .alemfm-listen-active.alemfm-slow,
.radio-player-alem-portal .alemfm-listen-active.alemfm-slow {
    border-color: #d24381;
}

.body-alem-portal .radio-player .alemfm-listen-active.alemfm-plaktan,
.radio-player-alem-portal .alemfm-listen-active.alemfm-plaktan {
    border-color: #927137;
}

.body-alem-portal .radio-player .alemfm-listen-active.alemfm-farabesk,
.radio-player-alem-portal .alemfm-listen-active.alemfm-farabesk {
    border-color: #a92024;
}

.body-alem-portal .radio-player .alemfm-listen-active.alemfm-atmosfer,
.radio-player-alem-portal .alemfm-listen-active.alemfm-atmosfer {
    border-color: #3179aa;
}

.body-alem-portal .radio-player .alemfm-listen-active img,
.radio-player-alem-portal .alemfm-listen-active img {
    max-width: 120px;
    object-fit: contain;
}

.body-alem-portal .radio-player .alemfm-listen .alemfm-text,
.radio-player-alem-portal .alemfm-listen .alemfm-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
}

.body-alem-portal .radio-player .alemfm-listen .alemfm-text span,
.radio-player-alem-portal .alemfm-listen .alemfm-text span {
    font-size: 16px;
    font-weight: 600;
}

.body-alem-portal .radio-player .alemfm-listen .alemfm-text :first-child,
.radio-player-alem-portal .alemfm-listen .alemfm-text :first-child {
    color: #ff7a00;
    white-space: nowrap;
}

.body-alem-portal .radio-player .alemfm-listen .alemfm-text :last-child,
.radio-player-alem-portal .alemfm-listen .alemfm-text :last-child {
    color: #000;
}

.body-alem-portal .radio-player .alemfm-listen,
.body-alem-portal .radio-player .alemfm-listen-active,
.body-alem-portal .radio-player .info-action-wrapper,
.radio-player-alem-portal .alemfm-listen,
.radio-player-alem-portal .alemfm-listen-active,
.radio-player-alem-portal .info-action-wrapper {
    order: 0;
}

.body-alem-portal .radio-player .slider-input,
.radio-player-alem-portal .slider-input {
    min-width: 12rem;
}

@media (max-width: 768px) {
    .header-main-mobile .left-area .newMobileLogo {
        display: block;
        margin-left: 10px;
    }

    .header-main-mobile .center-area {
        display: none;
    }

    .alem-select__title {
        font-size: 11px;
    }

    .alemPortalArea .alem-select {
        width: 150px;
    }

    .alem-select__header {
        width: 100%;
        padding: 0;
    }

    .alem-select__chevron {
        width: 15px;
        height: 15px;
        margin-left: 5px;
    }

    .alem-select__list-title {
        font-size: 10px;
        padding: 7px 0 0;
        text-align: left;
    }

    .alem-select__option img {
        max-height: 28px;
    }

    .alem-select__option {
        padding: 12px 0;
    }

    .alem-select__selected img {
        max-height: 29px;
    }

    .alem-select__list {
        width: 180px;
    }

    .alem-portal-section {
        height: auto;
    }

    .alem-portal-section .podcast-title {
        font-size: 28px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .alem-portal-section .podcast-body {
        gap: 15px;
        margin-bottom: 20px;
    }

    .alem-portal-section .podcast-body .podcast-img-circle {
        width: 160px;
        height: 160px;
        padding: 20px;
    }

    .alem-portal-section .podcast-body .podcast-img-circle.active .active-text {
        bottom: 22px;
    }

    .alem-portal-section .podcast-btn {
        margin-bottom: 15px;
    }

    .alem-portal-section .podcast-btn .podcast-btn-text {
        font-size: 14px;
    }

    .body-alem-portal .radio-player .player-btn-wrapper,
    .radio-player-alem-portal .player-btn-wrapper {
        width: 155px;
        height: 60px;
        padding: 10px 25px;
    }

    .body-alem-portal .radio-player .alemfm-listen-active img,
    .radio-player-alem-portal .alemfm-listen-active img {
        width: 100px;
        height: 40px;
    }

    .body-alem-portal .radio-player .alemfm-listen img,
    .radio-player-alem-portal .alemfm-listen img {
        height: 32px;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .alem-portal-section {
        height: auto;
    }

    .alem-portal-section .podcast-title {
        font-size: 35px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .alem-portal-section .podcast-body {
        gap: 15px;
        margin-bottom: 20px;
        flex-wrap: nowrap;
    }

    .alem-portal-section .podcast-body .podcast-img-circle {
        width: 180px;
        height: 180px;
        padding: 20px;
    }

    .alem-portal-section .podcast-body .podcast-img-circle.active .active-text {
        bottom: 22px;
    }

    .alem-portal-section .podcast-btn {
        margin-bottom: 15px;
    }

    .alem-portal-section .podcast-btn .podcast-btn-text {
        font-size: 16px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .alem-portal-section {
        height: auto;
    }

    .alem-portal-section .podcast-title {
        font-size: 50px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .alem-portal-section .podcast-body {
        gap: 20px;
        margin-bottom: 20px;
    }

    .alem-portal-section .podcast-body .podcast-img-circle {
        width: 200px;
        height: 200px;
        padding: 20px;
    }

    .alem-portal-section .podcast-body .podcast-img-circle.active .active-text {
        bottom: 22px;
    }

    .alem-portal-section .podcast-btn {
        margin-bottom: 20px;
    }

    .alem-portal-section .podcast-btn .podcast-btn-text {
        font-size: 16px;
    }
}

@media (max-width: 1200px) {
    .body-alem-portal .radio-player .player-wrapper,
    .radio-player-alem-portal .player-wrapper {
        flex-wrap: wrap !important;
    }

    .body-alem-portal .radio-player .player-btn-wrapper,
    .radio-player-alem-portal .player-btn-wrapper {
        width: 155px;
        height: 60px;
        padding: 10px 25px;
    }

    .body-alem-portal .radio-player .alemfm-listen-active,
    .radio-player-alem-portal .alemfm-listen-active {
        order: 1;
    }

    .body-alem-portal .radio-player .alemfm-listen-active img,
    .radio-player-alem-portal .alemfm-listen-active img {
        width: 100px;
        height: 40px;
    }

    .body-alem-portal .radio-player .alemfm-listen,
    .radio-player-alem-portal .alemfm-listen {
        order: 2;
    }

    .body-alem-portal .radio-player .alemfm-listen img,
    .radio-player-alem-portal .alemfm-listen img {
        height: 32px;
    }

    .body-alem-portal .radio-player .info-action-wrapper,
    .radio-player-alem-portal .info-action-wrapper {
        order: 3;
        width: 100%;
    }
}

.section-player .radio-player.radio-player-alem-portal .player-wrapper,
.body-alem-portal-player .section-player .radio-player .player-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: nowrap !important;
    gap: 10px;
}

.section-player .radio-player.radio-player-alem-portal .player-btn-wrapper,
.body-alem-portal-player .section-player .radio-player .player-btn-wrapper {
    flex: 0 0 auto;
    width: auto;
    min-width: 170px;
    height: 75px;
    padding: 10px 30px;
    background-color: rgba(255, 255, 255, .8);
    border: 1px solid #927137;
    border-radius: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-player .radio-player.radio-player-alem-portal .alemfm-listen-active.alemfm-slow,
.body-alem-portal-player .section-player .radio-player .alemfm-listen-active.alemfm-slow {
    border-color: #d24381;
}

.section-player .radio-player.radio-player-alem-portal .alemfm-listen-active.alemfm-plaktan,
.body-alem-portal-player .section-player .radio-player .alemfm-listen-active.alemfm-plaktan {
    border-color: #927137;
}

.section-player .radio-player.radio-player-alem-portal .alemfm-listen-active.alemfm-farabesk,
.body-alem-portal-player .section-player .radio-player .alemfm-listen-active.alemfm-farabesk {
    border-color: #a92024;
}

.section-player .radio-player.radio-player-alem-portal .alemfm-listen-active.alemfm-atmosfer,
.body-alem-portal-player .section-player .radio-player .alemfm-listen-active.alemfm-atmosfer {
    border-color: #3179aa;
}

.section-player .radio-player.radio-player-alem-portal .alemfm-listen,
.section-player .radio-player.radio-player-alem-portal .alemfm-listen-active,
.section-player .radio-player.radio-player-alem-portal .info-action-wrapper,
.body-alem-portal-player .section-player .radio-player .alemfm-listen,
.body-alem-portal-player .section-player .radio-player .alemfm-listen-active,
.body-alem-portal-player .section-player .radio-player .info-action-wrapper {
    order: 0;
}

.section-player .radio-player.radio-player-alem-portal .info-action-wrapper,
.body-alem-portal-player .section-player .radio-player .info-action-wrapper {
    flex: 1 1 auto;
    width: auto;
    min-width: 260px;
}

.section-player .radio-player.radio-player-alem-portal .alemfm-listen-active img,
.body-alem-portal-player .section-player .radio-player .alemfm-listen-active img {
    width: auto;
    height: auto;
    max-width: 120px;
    max-height: 51px;
    object-fit: contain;
}

.section-player .radio-player.radio-player-alem-portal .alemfm-listen img,
.body-alem-portal-player .section-player .radio-player .alemfm-listen img {
    width: 32px;
    height: 32px;
}

.section-player .radio-player.radio-player-alem-portal .alemfm-listen .alemfm-text,
.body-alem-portal-player .section-player .radio-player .alemfm-listen .alemfm-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
}

.section-player .radio-player.radio-player-alem-portal .alemfm-listen .alemfm-text span,
.body-alem-portal-player .section-player .radio-player .alemfm-listen .alemfm-text span {
    font-size: 16px;
    font-weight: 600;
}

.section-player .radio-player.radio-player-alem-portal .alemfm-listen .alemfm-text :first-child,
.body-alem-portal-player .section-player .radio-player .alemfm-listen .alemfm-text :first-child {
    color: #ff7a00;
    white-space: nowrap;
}

.section-player .radio-player.radio-player-alem-portal .alemfm-listen .alemfm-text :last-child,
.body-alem-portal-player .section-player .radio-player .alemfm-listen .alemfm-text :last-child {
    color: #000;
}

@media (max-width: 1200px) {
    .section-player .radio-player.radio-player-alem-portal .player-wrapper,
    .body-alem-portal-player .section-player .radio-player .player-wrapper {
        flex-wrap: wrap !important;
    }

    .section-player .radio-player.radio-player-alem-portal .player-btn-wrapper,
    .body-alem-portal-player .section-player .radio-player .player-btn-wrapper {
        flex: 1 1 calc(50% - 5px);
        min-width: 0;
        width: auto;
        max-width: none;
        height: 60px;
        padding: 10px 25px;
    }

    .section-player .radio-player.radio-player-alem-portal .alemfm-listen-active,
    .body-alem-portal-player .section-player .radio-player .alemfm-listen-active {
        order: 1;
    }

    .section-player .radio-player.radio-player-alem-portal .alemfm-listen,
    .body-alem-portal-player .section-player .radio-player .alemfm-listen {
        order: 2;
    }

    .section-player .radio-player.radio-player-alem-portal .info-action-wrapper,
    .body-alem-portal-player .section-player .radio-player .info-action-wrapper {
        order: 3;
        width: 100%;
        min-width: 0;
    }

    .section-player .radio-player.radio-player-alem-portal .alemfm-listen-active img,
    .body-alem-portal-player .section-player .radio-player .alemfm-listen-active img {
        width: 100px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .header-main-mobile .left-area .newMobileLogo {
        display: block;
        margin-left: 10px;
    }

    .header-main-mobile .center-area {
        display: none;
    }

    .header-main-mobile .right-area {
        position: relative;
        height: 50px;
    }

    .header-main-mobile .right-area .alemPortalArea {
        position: absolute;
        right: 0;
        top: 0;
    }

    .header-main-mobile .alemPortalArea .alem-select {
        width: 150px;
        padding: 5px 10px;
        border: 2px solid #ffac00;
        border-radius: 40px;
        background: #fff;
        overflow: hidden;
    }

    .header-main-mobile .alem-select__header {
        width: 125px;
        padding: 0;
        background: #fff;
        border-radius: 40px;
    }

    .header-main-mobile .alem-select__title {
        font-size: 11px;
    }

    .header-main-mobile .alem-select__selected {
        min-height: 36px;
    }

    .header-main-mobile .alem-select__selected img {
        max-height: 29px;
    }

    .header-main-mobile .alem-select__chevron {
        width: 15px;
        height: 15px;
        margin-left: 5px;
    }

    .header-main-mobile .alem-select__list {
        position: static;
        width: 125px;
        max-height: 0;
        opacity: 0;
        visibility: visible;
        pointer-events: none;
        transform: none;
        transition: max-height .3s ease, opacity .2s ease;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        overflow: hidden;
    }

    .header-main-mobile .alem-select.is-open .alem-select__list {
        max-height: 600px;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .header-main-mobile .alem-select__list-title {
        font-size: 10px;
        padding: 7px 0 0;
        text-align: left;
        border-top: 1px solid #eee;
        border-bottom: 0;
    }

    .header-main-mobile .alem-select__option {
        padding: 12px 0;
    }

    .header-main-mobile .alem-select__option img {
        max-height: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .alem-equalizer span {
        animation: none;
        height: 14px;
    }
}
