
.broadcast {
    background: #eee;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.broadcast__badge {
    background: #FF0000;
    display: inline-block;
    padding: 4px 10px 4px 40px;
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    border-radius: 5px;
    position: relative;
}
.broadcast__badge::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    left: 10px;
    top: 5px;
    background: url('../img/live-icon-white.svg');
}

.broadcast__badge--recorded {
    background: transparent;
    color: #005294;
    border: 1px solid #005294;
    font-size: 13px;
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 30px;
}
.broadcast__badge--recorded::before {
    background: url('../img/live-icon-hover.svg');
    width: 14px;
    height: 14px;
}

.dark-mode .broadcast__badge--recorded {
    color: #fff;
    border: 1px solid #fff;
}

.dark-mode .broadcast__badge--recorded::before {
    background: url('../img/live-icon-white.svg');
}

.broadcast__badge--live::before {
    animation: fadein .75s ease-in alternate infinite;
}
@keyframes fadein {
    from { opacity: .5; }
    to { opacity: 1; }
}

.broadcast__soon {
    display: flex;
    margin-bottom: 20px;
}

.broadcast__player__badge {
    margin-bottom: 15px;
}

.broadcast__soon__img {
    width: 140px;
    min-width: 140px;
    padding-right: 15px;
}

.broadcast .lazy-load__image, .show__header__cover .lazy-load__image {
    width: 100%;
    min-height: auto;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    animation-duration: 1.7s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: placeholderAnimate;
    background: linear-gradient(to right, #F3F6F7 2%, #dddee0 18%, #F3F6F7 33%);
    background-size: 1300px;
}

.broadcast__soon__content {
    font-size: 16px;
}
.broadcast__soon__content a:not(.btn) {
    color: #111;
}
.broadcast__episodes__title {
    font-size: 16px;
    margin-bottom: 20px;
}
.broadcast__episodes__list {

}
@media (min-width:768px) {
    .show__episodes .broadcast__episodes .broadcast__episodes__list {
        display: flex;
        width: 100%;
        flex-wrap: wrap;
    }
    .show__episodes .broadcast__episode {
        width: 50%;
    }
    .show__episodes .broadcast-promo.broadcast__episode {
        width: 100%;
        padding: 0;
    }
}

.show__episodes .broadcast-promo.broadcast__episode {
    padding: 0;
}

.broadcast__episode {
    margin-bottom: 15px;
}
@media (min-width:768px) {
    .broadcast__episode:nth-child(odd) {
        padding-left: 10px;
    }
    .broadcast__episode:nth-child(even) {
        padding-right: 10px;
    }
    .broadcast__episode:nth-child(1) {
        padding-right: 10px;
        padding-left: 0;
    }
    .broadcast__episode:nth-child(2) {
        padding-left: 10px;
        padding-right: 0;
    }
}
.broadcast__episode__img {
    width: 100%;
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
}
.broadcast__episode__img:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.3) url("../img/play1.png") no-repeat 50% 50%;
    border-radius: 5px;
}
.broadcast__episode__img img {
    border-radius: 5px;
    width: 100%;
    transition: transform .2s;
    height: 220px;
    object-fit: cover;
}
.broadcast__episode__img--default {
    filter: blur(5px);
}
.broadcast__episode__content__title {
    font-size: 16px;
}
.broadcast__episode__content__title a {
    color: #111;
}

.embed_container {
    position: relative;
    padding-bottom: 48%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    width: 100%;
    min-height: auto;
    border-radius: 5px;
    animation-duration: 1.7s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: placeholderAnimate;
    background: linear-gradient(to right, #F3F6F7 2%, #dddee0 18%, #F3F6F7 33%);
    background-size: 1300px;
}
.embed_container iframe, .embed_container object, .embed_container embed {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.broadcast__episode__img a {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2;
}

.broadcast__info {
    font-size: 16px;
}

.broadcast__info .broadcast--show__description {
    height: 70px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.broadcast__info__share .at-style-responsive .at-share-btn:last-child {
    display: none;
}

#broadcast__embed__fixed {
    position: sticky;
    bottom: 20px;
    right: 0;
    min-height: 200px;
    width: 100%;
    z-index: 40000;
    display: none;
}

#broadcast__embed__fixed .broadcast__embed {
    min-height: 200px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
}

.broadcast__embed__header {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.broadcast__embed__header .broadcast__player__badge {
    margin-bottom: 0
}

.broadcast__embed__close {
    opacity: 0.3;
    font-size: 16px;
}

.broadcast__embed__close:hover {
    opacity: 1;
}

@media (min-width:768px) {
    .broadcast--hp {
        display: flex;
        padding: 0;
    }
    .broadcast--hp .broadcast__embed {
        width: 65%;
    }

    .broadcast--hp .broadcast__info  {
        padding: 15px;
    }
}
@media (max-width:767.98px) {
    .broadcast__info {
        padding-top: 15px;
    }
    .broadcast--live {
        padding: 0;
    }
    .broadcast--live .broadcast__info {
        padding: 15px;
    }
}
.broadcast--page .broadcast__info  {
    padding-top: 15px;
}
.broadcast--show .broadcast {
    padding: 0;
}
.broadcast--show .broadcast .broadcast__info {
    padding: 15px;
}
.broadcast--show__title a {
    color: #111;
}

.show__header {
    position: relative;
    overflow: hidden;
}

.show__header__cover {
    border-radius: 10px;
    overflow: hidden;
}

.show__header__container {
    color: #000;
}

.dark-mode .show__header__title, .dark-mode .show__header__desc {
    color: #fff;
}

@media (max-width:768px) {
    .show__header__title {
        font-size: 26px
    }
}

.show__header__container {
    margin: 15px 0;
}

.show__actions {
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px;
}
@media (min-width:768px) {
    .show__actions {
        width: 100%;
        align-items: center;
    }
    .show__actions__share {
        margin-left: auto;
    }
}

.btn-notifs {
    padding-left: 40px;
    position: relative;
}
.btn-notifs::before {
    content: "";
    position: absolute;
    left: 10px;
    width: 20px;
    height: 20px;
    background: no-repeat url('../img/notification.svg') 1px 0;
}
.btn-notifs--active::before {
    background-position: -31px 0;
}

.live-badge {
    position: absolute;
    left: 17px;
    top: -13px;
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    background: #FF0000;
    padding: 3px 5px;
    line-height: 1;
    border-radius: 5px;
    border: 1px solid #fff;
    display: none;
}
@media (max-width: 1200px) {
    .live-badge {
        font-size: 9px;
    }
}
.menu__categories .live-now,
.menu__links .live-now {
    color: #FF0000;
}
.menu__categories .live-now::before,
.menu__links .live-now::before {
    background: url('../img/live-icon-red.svg');
    animation: fadein .75s ease-in alternate infinite;
}
.live-soon .live-badge,
.live-now .live-badge {
    display: block;
}

.active .live::before,
.active .live .live-badge {
    background: #005294;
}

#allow-live-notification .modal-body {
    background: #38BB8D;
    border-radius: 5px 5px 0 0;
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding-top: 150px;
    padding-bottom: 30px;
}
#allow-live-notification .modal-footer {
    flex-direction: column;
    display: flex;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 15px;
}
#allow-live-notification .modal-footer .btn-primary {
    border-radius: 30px;
    margin-bottom: 10px;
}

.broadcast-promo .broadcast-promo-container {
    background: #ffffff;
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    margin-bottom: 30px
}

@media (max-width: 992px) {
    .broadcast-promo .broadcast-promo-container {
        display: block;
    }
}

.broadcast-promo .broadcast__info {
    padding: 15px 0;
}

.broadcast-promo .broadcast--show__img{
    background: #F7F7f7;
    text-align: center;
    height: auto;
}

.broadcast-promo .broadcast-promo__img{
    background-image: url(../img/broadcast/podcast-flat-icon.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100%;
    width: 213px;
    height: 230px;
    margin: 40px auto;
    display: inline-block;
    text-align: center;
}

@media (max-width: 992px) {
    .broadcast-promo .broadcast-promo__img {
        width: 183px;
        height: 200px;
    }
}

.broadcast-sidebar .broadcast__episode {
    padding-right: 0;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .broadcast-sidebar .broadcast__episode {
        flex-direction: row;
        align-items: center;
    }
    .broadcast-sidebar .broadcast__episode__img {
        width: 35%;
        margin-right: 1rem;
        margin-bottom: 0;
    }
    .broadcast-sidebar .broadcast__episode__img img {
        height: auto;
        border-radius: 10px;
    }
    .broadcast-sidebar .broadcast__episode__content {
        width: 60%;
    }
}
