:root {
    --lecture-color: #232323;
    --headline-color: #000000;
    --blocktitle-color: #000000;

    --action-btn-bg: #000000;
    --action-btn-text: #ffffff;
    --action-btn-border: #000000;

    --action-btn-hover-bg: #333333;
    --action-btn-hover-text: #ffffff;
    --action-btn-hover-border: #666666;

    --category-pill-bg: #ffffff;
    --category-pill-text: #000000;
    --category-pill-border: #000000;

    --category-pill-hover-bg: #ffffff;
    --category-pill-hover-text: #000000;
    --category-pill-hover-border: #000000;

    --category-pill-active-bg: #ef0000;
    --category-pill-active-text: #ffffff;
    --category-pill-active-border: #ef0000;

    --pagination-btn-bg: #ffffff;
    --pagination-btn-text: #000000;
    --pagination-btn-border: #000000;

    --pagination-btn-active-bg: #ef0000;
    --pagination-btn-active-text: #ffffff;
    --pagination-btn-active-border: #ef0000;

    --playerBar-bg: #101010;
    --playerBar-playBtn: #ffffff;
    --playerBar-song-title: #ffffff;
    --playerBar-artist-name: #8f8f8f;
    --playerBar-icons: #ffffff;
    --playerBar-vol-bg: #666666;
    --playerBar-vol-thumb: #ffffff;
    --playerBar-vol-fill: #ffffff;

    --onAir-bg: #1f1f1f;
    --onAir-song-title: #ffffff;
    --onAir-artist-name: #8f8f8f;

    --onAir-btn-bg: #3f3f3f;
    --onAir-btn-text: #ffffff;
    --onAir-btn-dot: #ff0000;

    --onAir-menu-bg: #101010;
    --onAir-menu-text: #8f8f8f;
    --onAir-menu-active-text: #ffffff;
    --onAir-menu-active-border: #ef0000;

    --onAir-played-bg: #f2f2f2;
    --onAir-played-song-info: #232323;
    --onAir-played-album-name: #8f8f8f;
    --onAir-played-date-text: #232323;
    --onAir-played-date-border: #eeeeee;
    --onAir-played-btn-bg: #000000;
    --onAir-played-btn-text: #ffffff;
    --onAir-played-like-text: #d5d5d5;


}

body {
    background-color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: var(--lecture-color);
    padding: 0;
    margin: 0;
}

.song-list-s1 .wpr {
    display: flex;
    gap: 25px;
    margin-bottom: 32px;
} 
.song-list-s1 .time-wpr {
    width: 80px;
    position: relative;
    text-align: center;
}
.song-list-s1 .time-wpr::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    border-left: .3rem dotted var(--onAir-played-date-border);
    left: 50%;
    z-index: 2;
}
.song-list-s1.top .time-wpr::before  {
    border-left: 0rem dotted var(--onAir-played-date-border);
}
.song-list-s1 .time {
    background-color: #fff;
    color: var(--lecture-color);
    font-size: 17px;
    font-weight: 700;
    line-height: 17px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding-top: 5px;
    padding-bottom: 8px;
    z-index: 5;
}
.song-list-s1 .data {
    width: 100%;
    background-color: var(--onAir-played-bg);
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
}
.song-list-s1 .metadata-wpr {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.song-list-s1 .title {
    color: var(--onAir-played-song-info);
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
}
.song-list-s1 .artist {
    color: var(--onAir-played-song-info);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}
.song-list-s1 .album {
    color: var(--onAir-artist-name);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}
.song-list-s1 .artwork {
    min-width: 80px;
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}
.song-list-s1 .btns-wpr {
    display: flex;
    justify-content: end;
    align-items: center;
}
.song-list-s1 .btns {
    margin-right: 20px;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
}
.song-list-s1 .btn-like {
    width: 40px;
    height: 40px;
    color: var(--onAir-played-like-text);
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
}
.song-list-s1 .btn-like:hover {
    background-color: #ddd;
    color: #ef0000;
}
.song-list-s1 .votes-ppBtn {
    width: 42px;
    height: 42px;
    background-color: var(--onAir-played-btn-bg);
    color: var(--onAir-played-btn-text);
    font-size: 20px;
    line-height: 42px;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(to left, var(--onAir-played-btn-bg) 50%, var(--onAir-played-btn-bg) 50%) right;
    background-size: 200%;
    transition: background-position;
    cursor: pointer;
}

.song-list-s1 .wpr:first-child .time-wpr::before {
    height: 50%;
    bottom: 0;
}
.song-list-s1 .wpr:last-child .time-wpr::before {
    height: 50%;
}


#content {
    margin-top: 70px;
}

.content-margin {
    margin-top: 129px !important;
}


a {
    color: var(--body-color);
    text-decoration: none;
}

a:hover {
    color: var(--body-color);
    text-decoration: underline;
}

.position-relative {
    position: relative;
    z-index: 10;
}

.listen-now-btn {
    font-family: 'Montserrat', sans-serif;
    background-color: rgba(0, 0, 0, .3);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    padding: 8px 10px 8px 22px;
    border-radius: 32px;
    text-transform: uppercase;
    border: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.listen-now-btn .arrow {
    width: 28px;
    height: 28px;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    margin-left: 18px;
    border-radius: 50%;
}



.logo-top {
    max-height: 55px;
}

.play::before {
    content: "\e037";
}

.pause::before {
    content: "\e034";
}

.btn-action {
    background-color: var(--action-btn-bg);
    color: var(--action-btn-text) !important;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 9px 48px;
    border-radius: 8px;
}
.btn-action:hover {
    background-color: var(--action-btn-hover-bg);
    color: var(--action-btn-hover-text);
}
.btn-action.dark-transparent {
    border: 1px solid #fff;
}
.btn-action.dark-transparent:hover {
    background-color: #fff;
    color: #000 !important;
}

.tag {
    height: 34px;
    background-color: var(--action-btn-bg);
    color: var(--action-btn-text);
    font-size: 13px;
    font-weight: 500;
    line-height: 34px;
    text-transform: uppercase;
    padding: 0 20px;
}

.tag:hover {
    background-color: var(--action-btn-hover-bg);
    color: var(--action-btn-hover-text);
}

.container {
    max-width: 1220px !important;
}

.filters-overlay-right {
    height: 36px;
    width: 50px;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(255,255,255,1) 100%);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 5;
}
.filters-overlay-left {
    height: 36px;
    width: 50px;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(0,0,0,0) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
}
.filters-arrow-next,
.filters-arrow-prev {
    width: 24px;
    height: 36px;
    color: #000;
    font-size: 36px;
    line-height: 36px;
    position: absolute;
    top: 0px;
    cursor: pointer;
    z-index: 999;
}
.filters-arrow-next {
    right: 0px;
    padding-left: 2px;
    text-align: right;
}
.filters-arrow-next::before {
    content: "\f105";
}
.filters-arrow-prev {
    left: 0px;
    padding-left: 0px;
    text-align: left;
}
.filters-arrow-prev::before {
    content: "\f104";
}
.filters-arrow-next:hover,
.filters-arrow-prev:hover {
    color: #555;
}
.filters-wpr {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 32px !important;
}
.filters {
    height: 36px;
    position: relative;
    display: flex;
    gap: 15px;
    overflow: hidden !important; 
    white-space: nowrap;
    overflow-x: scroll;
    scroll-behavior: smooth;
}
.filters .item {
    height: 36px !important;
    background-color: var(--category-pill-bg);
    color: var(--category-pill-text);
    font-size: 14px;
    line-height: 34px;
    padding: 0px 16px;
    border: 1px solid;
    border-color: var(--category-pill-border);
    border-radius: 32px;
}


.filters .item:hover {
    color: var(--category-pill-hover-text);
    background-color: var(--category-pill-hover-bg);
    border-color: var(--category-pill-hover-border);
}

.filters .item:hover {
    color: var(--category-pill-hover-text);
    text-decoration: none;
}

.filters .item.active {
    color: var(--category-pill-active-text);
    background-color: var(--category-pill-active-bg);
    border-color: var(--category-pill-active-border);
}









.page-link {
    height: 40px;
    width: 40px;
    background-color: var(--pagination-btn-bg) !important;
    color: var(--pagination-btn-text) !important;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    line-height: 38px;
    padding: 0 !important;
    border-radius: 8px !important;
    border-color: var(--pagination-btn-border) !important;
    margin: 0 10px;
}

.page-link:hover {
    background-color: var(--pagination-btn-hover-bg) !important;
    color: var(--pagination-btn-hover-text) !important;
    border-color: var(--pagination-btn-hover-border) Im !important;
}

.page-item.active .page-link {
    background-color: var(--pagination-btn-active-bg) !important;
    color: var(--pagination-btn-active-text) !important;
    border-color: var(--pagination-btn-active-border) !important;
}

.page-title {
    padding-top: 80px;
    padding-bottom: 40px;
}
.page-title h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 46px !important;
    font-weight: 700;
    color: var(--headline-color);
    text-align: center;
    margin-bottom: 0;
}
.page-title p {
    font-size: 17px;
    text-align: center;
    margin-top: 5px;
}
.page-title.with-desc {
    padding-bottom: 20px;
}

.pb-15 {
    padding-bottom: 15px;
}


section {
    padding-top: 40px;
}

.section-header {
    padding-bottom: 30px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px !important;
    font-weight: 700;
    color: var(--headline-color);
    text-align: center;
}

section footer {
    padding-top: 10px;
    text-align: center;
}

/* Header & Footer */

.header {
    background-color: var(--header-bg);
}
.header .navbar {
    min-height: 70px !important;
    z-index: 999;
}
.header .navbar .nav-link {
    font-size: 17px !important;
    font-weight: 700 !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}
.header .navbar .nav-link,
.header .navbar .nav-link:hover {
    color: var(--header-text);
}

.footer {
    background-color: var(--footer-bg);
    padding: 60px 0;
    margin-top: 0;
}
.footer ul {
    list-style: none;
}
.footer li a,
.footer li a:hover {
    color: var(--footer-text);
}
.footer .apps img {
    max-height: 60px;
    display: block;
    margin-bottom: 5px;
}

.footer .footer-nav {
    padding-top: 30px;
    padding-bottom: 20px;
}

.footer .footer-nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer .footer-nav li {
    font-size: 17px;
    font-weight: 700;
}

.footer .footer-social ul {    
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.footer .footer-social .link {
    width: 44px;
    height: 44px;
    display: block;
    background-color: var(--footer-social-icon-bg);
    color: var(--footer-social-icon-text);
    font-size: 18px;
    text-align: center;
    line-height: 44px;
    border-radius: 50%;
    text-decoration: none;
}
.footer .footer-social .link:hover {
    background-color: var(--footer-social-icon-hover-bg);
}
.footer .footer-apps {
    padding-top: 20px;
}
.footer .footer-apps ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.footer .footer-apps img {
    max-width: 140px;
}
.copyright {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    padding: 20px 0;
    background-color: #fff;
    color: #000;
}

.slider-arrow-next,
.slider-arrow-prev {
    width: 44px;
    height: 44px;    
    background-color: rgba(255, 255, 255, 1);
    color: #000;
    font-size: 42px;
    line-height: 44px;
    position: absolute;
    border-radius: 50%;
    cursor: pointer;    
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0.4rem 1rem, rgba(0, 0, 0, 0.1) 0px 0.4rem 0.4rem;
    z-index: 999;    
}

.slider-arrow-next:hover,
.slider-arrow-prev:hover {
    background-color: #fff;
    color: #ef0000;
}
.slider-arrow-next::before {
    content: "\e5cc";
}
.slider-arrow-prev {
    left: -19px;
    padding-left: 0px;
}
.slider-arrow-next {
    right: -19px;
    padding-left: 4px;
}
.slider-arrow-prev::before {
    content: "\e5cb";
}
.slick-disabled {
    display: none;
  }

.fa-play::before {
    content: "\f04b";
}

.facebook::before {
    content: "\f39e";
}
.twitter::before {
    content: "\f099";
}
.instagram::before {
    content: "\f16d";
}
.youtube::before {
    content: "\f167";
}
.tiktok::before {
    content: "\e07b";
}
.twitch::before {
    content: "\f1e8";
}


/* Body */

.footer-bc {
    background-color: var(--footer-bc-bg);
    padding: 17px;
    margin-top: 50px
}
.footer-bc .breadcrumb {
    margin-bottom: 0 !important;
}
.footer-bc .breadcrumb-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--footer-bc-text);
}
.footer-bc .breadcrumb-item.active {
    color: var(--footer-bc-text);;
    font-weight: 700;
}





/* ARTISTS */

.artist-list {
    margin-bottom: 25px;
}
.artist-list img {
    width: 100%;
    transition: all .3s ease;
}
.artist-list:hover img {
    filter: brightness(65%);
    transition: all .3s ease;
}
.artist-list .title {
    background-color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    margin-top: 5px;
}
.artist-list:hover .title {
    text-decoration: underline;
}

.artist-header {
    height: 300px;
    position: relative;
    overflow: hidden;
    margin-top: 102px;
}
.artist-header .bg {
    width: 100%;
    height: 300px;
    background-color: #000;
    background-size: cover;
    background-position: center;
    filter: brightness(30%) blur(10px);
    transform: scale(1.2);
    position: absolute;
    z-index: 1;
}
.artist-header .dataWpr {
    height: 300px;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 10;
}
.artist-header .data {
    padding-left: 25px;
}
.artist-header .name {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
}
.artist-header .img {
    width: 225px;
    height: 225px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
}
.artist-navbar {
    padding: 0;
    background-color: #000;
}
.artist-navbar .wpr {
    max-width: 1180px;
    margin: 0 auto;
}
.artist-navbar .navbar {
    height: 48px;
}
.artist-navbar .navbar .nav-link {
    color: #fff;
    font-size: 15px !important;
    font-weight: 400 !important;
    text-transform: uppercase;
    padding-left: 20px !important;
    padding-right: 20px !important;
    line-height: 26px !important;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}
.artist-navbar .navbar .nav-link.active {
    color: #fff;
    border-top: 3px solid #ef0000;
}
.artist-navbar .navbar .nav-link:hover {
    background-color: #333;
}

.artist-navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
} 
.artist-navbar li {
    color: #fff;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 50px;
    padding: 0 15px;
    text-transform: uppercase;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}

.artist-navbar li:hover {
    background-color: #666;
}





/* NEWS */

.news-list {
    margin-bottom: 35px;
}
.news-list .title {
    color: var(--headline-color);
    font-size: 20px;
    font-weight: 900;
}
.news-list:hover .title {
    text-decoration: underline;
}
.news-list .date {
    font-size: 13px;
    font-weight: 500;
    color: grey;
}
.news-list img {
    width: 100%;
    margin-bottom: 10px;
    transition: all .3s ease;
}
.news-list:hover img {
    filter: brightness(65%);
    transition: all .3s ease;
}

.news-element .img-wpr {
    width: 100%;
    height: 450px;
    margin-top: 0px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}
.news-element .img-ctr {
    width: 100%;
    height: 450px;
    background-color: #000;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    filter: brightness(20%) blur(12px);
    transform: scale(1.2);
    z-index: 1;
}
.news-element .img {
    width: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}
.news-element .details {
    color: var(--lecture-color);
    text-align: justify;
}
.news-element .readAlso {
    margin-top: 40px;
    max-width: 600px;
}
.news-element .readAlso .read-also {
    font-size: 24px;
    font-weight: 900;
    color: var(--headline-color);
    line-height: 1.2;
    margin-bottom: 16px;
}
.news-element .readAlso .ctr {
    display: flex;
}
.news-element .readAlso img {
    width: auto;
    height: 75px;
    margin-right: 12px;
    transition: all .3s ease;
}
.news-element .readAlso .title {
    font-size: 20px;
    font-weight: 900;
    color: var(--headline-color);
}
.news-element .readAlso:hover .title {
    text-decoration: underline;
}
.news-element .readAlso:hover img {
    filter: brightness(65%);
}

.top-news {
    background: #1a1a1a;
    color: #fff;
    padding-top: 38px;
    padding-bottom: 30px;
    margin-top: 10px;
    margin-bottom: 50px;
}
.top-news .title {
    font-family: 'Montserrat';
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding-bottom: 15px;
}
.top-news .item {
    height: 120px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #fff;
    padding: 15px 0;
    margin-bottom: 15px;
}
.top-news .number {
    font-size: 80px;
    font-weight: 900;
    line-height: 80px;
    color: red;
    text-decoration: none !important;
}
.top-news a .number:hover {
    text-decoration: none !important;
}
.top-news .item .headline {
    font-size: 19px;
    line-height: 22px;
    font-weight: 600;
    color: #fff;
    text-align: left;
    padding-left: 40px;
}

/* VIDEOS*/

.video-list {
    text-align: left;
    position: relative;
    margin-bottom: 35px;
}
.video-list .title {
    color: var(--headline-color);
    font-size: 20px;
    font-weight: 900;
}
.video-list .date {
    font-size: 13px;
    color: #8f8f8f;
    font-weight: 700;
}
.video-list img {
    width: 100%;
    margin-bottom: 10px;
    transition: all .3s ease;
}
.video-list:hover img {
    filter: brightness(65%);
    transition: all .3s ease;
}
.video-list:hover .bg {
    filter: brightness(65%);
    transition: all .3s ease;
}
.video-list .play {
    width: 38px;
    height: 38px;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    line-height: 38px;
    text-align: center;
    position: absolute;
    top: 168px;
    left: 16px;
    border-radius: 50%;
    opacity: 0;
}
.video-list .playAlt {
    width: 48px;
    height: 48px;
    color: #fff;
    font-size: 48px;
    text-align: center;
    position: absolute;
    top: 93px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
}
.video-list .play::before {
    content: "\f04b";
}
.video-list:hover .play {
    opacity: 1;
    transition: all .3s ease;
}

.more-videos-bg {
    background-color: #4d4d4d;
}
.more-videos-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.more-videos {
    height: 400px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0px 20px;
}
.more-videos .video {
    display: flex;
    padding-bottom: 16px;
    border-bottom: 1px solid #fff;
    margin-bottom: 16px;
}
.more-videos .video img {
    width: 132px;
    height: 74px;
    transition: all .3;
}
.more-videos .video:hover img {
    filter: brightness(65%);
}
.more-videos .title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding-left: 12px;
}
.more-videos .video:hover .title {
    text-decoration: underline;
}
.more-videos::-webkit-scrollbar {
    width: 5px;
}
.more-videos::-webkit-scrollbar-track {
    box-shadow: inset 0 0 0px grey;
    border-radius: 10px;
}
.more-videos::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 10px;
}
.more-videos::-webkit-scrollbar-thumb:hover {
    background: #808080;
}

/* ALBUMS */

.album-list {
    text-align: center;
    margin-bottom: 30px;
}
.album-list .title {
    font-size: 20px;
    font-weight: 900;
}
.album-list .date {
    font-size: 15px;
    font-weight: 500;
    color: grey;
    margin-bottom: 1px;
}
.album-list img {
    width: 100%;
    margin-bottom: 10px;
    transition: all .3s;
}
.album-list:hover img {
    filter: brightness(65%);
}

.album-element {
    width: 100%;
    display: flex;
    justify-content: start;
}
.album-element .cover {
    width: 250px;
    min-width: 250px;
}
.album-element img {
    width: 100%;
}
.album-element .wpr {
    width: 100%;
}
.album-element .details {
    height: 250px;
    padding-left: 20px;
    padding-top: 10px;
}
.album-element .title {
    color: var(--headline-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    line-height: 60px;
    font-weight: 700;
}
.album-element .date {
    font-size: 20px;
    color: var(--lecture-color);
}
.album-element .desc {
    margin-top: 10px;
    color: var(--lecture-color);
}
.album-element .songs {
    margin-left: 20px;
}
.album-element .song {
    display: flex;
    font-size: 20px;
    font-weight: 900;
    line-height: 50px;
    border-top: 1px solid #999;
}
.album-element .song .number {
    width: 50px;
    height: 50px;
    text-align: center;
}

/* PROGRAMS */

.pills-style-1 {
    margin-bottom: 32px !important;
}

.pills-style-1 .nav-fill .nav-item, .nav-fill>.nav-link {
    flex: 0 0 auto;
    text-align: center;
}

.pills-style-1 .nav-item {    
    margin-right: 15px;
}

.pills-style-1 .nav-pills .nav-link {  
    height: 36px !important;  
    font-size: 14px;
    line-height: 34px;
    padding: 0px 16px;
    border: 1px solid;
    border-radius: 32px;
    background-color: var(--category-pill-bg);
    color: var(--category-pill-text);
    border-color: var(--category-pill-border);
}

.pills-style-1 .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: var(--category-pill-active-text);
    background-color: var(--category-pill-active-bg);
    border-color: var(--category-pill-active-border);
}

.pills-style-1 .nav-pills .nav-link:hover {
    color: var(--category-pill-hover-text);
    background-color: var(--category-pill-hover-bg);
    border-color: var(--category-pill-hover-border);
    text-decoration: none;
}

.program-list-wpr {
    position: relative;
    margin-top: 15px;
}
.program-list-wpr .line {
    width: 4px;
    height: 100%;
    background-color: #000;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 10;
}
.program-list {
    width: 50%;
}
.program-list img {
    width: 100%;
    margin-bottom: 10px;
}
.program-list .title {
    font-size: 24px;
    font-weight: 900;
    color: #000;
}
.program-list .hours {
    font-size: 36px;
    font-weight: 700;
}
.program-list p {
    font-size: 16px;
}
.program-list:nth-child(odd) {
    padding-right: 20px;
}
.program-list:nth-child(even) {
    margin-left: 50%;
    padding-left: 20px;
}

/* PODCASTS */

.podcast-list {
    height: 140px;
    background-color: #f2f2f2;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    border-radius: 10px;
}
.podcast-list img {
    height: 140px;
    width: 140px;
    min-width: 140px;
    border-radius: 10px 0 0 10px;
}
.podcast-list .data {
    padding-left: 50px;
}
.podcast-list .data .title {
    font-size: 22px;
    color: var(--headline-color);
    font-weight: 700;
    display: flex;
    align-items: center;
}
.podcast-list .data .date {
    font-size: 14px;
    color: var(--lecture-color);
    font-weight: 500;
}
.podcast-list .data .details {
    font-size: 14px;    
    color: var(--lecture-color);
    font-weight: 500;    
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.podcast-list .data p {
    margin: 0;
    padding: 0;;
}
.podcast-list .podcast-ppBtn {
    width: 48px;
    height: 48px;
    background-color: var(--action-btn-bg);
    color: var(--action-btn-text);
    text-align: center;
    line-height: 48px;
    position: absolute;
    top: 46px;
    left: 116px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
}

/* EVENTS */

.event-list {
    margin-bottom: 35px;
}
.event-list img {
    width: 100%;
    margin-bottom: 15px;
}
.event-list .title {
    font-size: 17px;
    color: var(--headline-color);
    font-weight: 900;
    text-align: center;
}
.event-list:hover img {
    filter: brightness(65%);
    transition: all .3s ease;
}

.event-element .img-wpr {
    width: 100%;
    height: 450px;
    margin-top: 0px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}
.event-element .img-ctr {
    width: 100%;
    height: 450px;
    background-color: #000;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    filter: brightness(20%) blur(6px);
    transform: scale(1.2);
    z-index: 1;
}
.event-element img {
    width: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}
.event-element .venue {
    background-color: #e6e6e6;
    color: #000;
    padding: 20px;
    margin-bottom: 25px;
}
.event-element .venue .title {
    font-size: 20px;
    font-weight: 900;
}
.event-element .venue .date {
    font-size: 17px;
}
.event-element .readAlso {
    margin-top: 40px;
    max-width: 600px;
}
.event-element .readAlso .read-also {
    font-size: 24px;
    font-weight: 900;
    color: #000;
    line-height: 1.2;
    margin-bottom: 16px;
}
.event-element .readAlso .ctr {
    display: flex;
}
.event-element .readAlso img {
    width: auto;
    height: 75px;
    margin-right: 12px;
}
.event-element .readAlso .title {
    font-size: 20px;
    font-weight: 900;
    color: #000;
}
.event-element .readAlso:hover .title {
    text-decoration: underline;
}

/* HOME */



/* HOME VIDEOS */

.home-videos-list {
    background-color: var(--featured-bg);
    position: relative;
    margin-top: 50px;
    padding-bottom: 45px;
}
.home-videos-list section footer{
    margin-top: 22px !important;
}
.home-videos-list .section-header h2 {    
    color: var(--featured-text);
}
.home-videos-list .item {
    position: relative;
    gap: 14px;
    display: flex;
}
.home-videos-list .item.first {
    display: block;
}
.home-videos-list .item img {
    width: 200px;
}
.home-videos-list .item.first img {
    width: 100%;
}
.home-videos-list .item .title {    
    color: var(--featured-text);
    font-size: 18px;
    font-weight: 900;
    line-height: 26px;  
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-videos-list .item.first .title {
    font-size: 26px;
    line-height: 34px;
    margin-top: 12px;
}
.home-videos-list .item .date {
    color: var(--featured-text);
    font-size: 13px;
    font-weight: 600;
    margin-top: 3px;
}
.home-videos-list .item .ppBtn {
    width: 32px;
    height: 32px;
    background-color: var(--action-btn-bg);
    color: var(--action-btn-text);
    font-size: 16px;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    position: absolute;
    left: 10px;
    bottom: 10px;
    opacity: 0;
    z-index: 5;
}
.home-videos-list .item.first .ppBtn {
    width: 48px;
    height: 48px;
    font-size: 24px;
    line-height: 48px;
    left: 16px;
    bottom: 90px;
}
.home-videos-list .item:hover .ppBtn {
    opacity: 1;
    transition: all .3s ease;
}

.home-videos-list .item:hover img {
    filter: brightness(50%);
    transition: all .3s ease;
}
.home-videos-list .item:hover .title {
    text-decoration: underline;
}

.home-programs-list {
    position: relative;
}
.home-programs-list section footer {
    padding-top: 35px !important;
}
.home-programs-list img {
    width: 100%;
}
.home-programs-list .title {
    color: var(--headline-color);
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    margin-top: 5px;
}
.home-programs-list .time {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    text-align: center;
    line-height: 21px;
    margin-bottom: 10px;
}

.home .events-list {
    position: relative;
}
.home .events-list section footer {
    padding-top: 5px !important;
}    
.home .events-list .title {
    margin-bottom: 30px;
}
.home .events-list .item img {
    width: 100%;
}
.home .events-list .title {
    color: var(--headline-color);
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    margin-top: 5px;
}
.home .events-list .item:hover img {
    filter: brightness(50%);
    transition: all .3s ease;
}

/* HOME LAST PLAYED */

.home-nowplaying {
    width: 100%;
    background-color: var(--onAir-bg);
    position: absolute;
    top: 130px;
    z-index: 100;
}
.home-nowplaying .ctr {
    max-width: 1196px;
    position: relative;
    padding: 50px 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
.home-nowplaying .metadata {
    width: 100%;
    padding-right: 40px;
    padding-top: 0px;
    position: relative;
    order: 1;
    z-index: 5;
}
.home-nowplaying .title {
    font-size: 50px;
    font-weight: 900;
    line-height: 56px;
    color: var(--onAir-song-title);
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    z-index: 2;
}
.home-nowplaying .album-info {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    color: var(--onAir-artist-name);
    text-transform: uppercase;
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-nowplaying .artwork {
    min-width: 250px;
    width: 250px;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 8px;
    order: 2;
    z-index: 5;
}
.home-nowplaying .badge {
    height: 26px;
    color: var(--onAir-btn-text);
    font-size: 12px;
    font-weight: 600;
    line-height: 26px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: 8pxpx;
    padding: 0px 12px 0px 24px;
    border-radius: 32px;
    cursor: pointer;
}
.home-nowplaying .badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--onAir-btn-dot);
    position: absolute;
    border-radius: 50%;
    left: 10px;
    top: 10px;
}
.home-nowplaying .badge::before {
    animation: blink-1 2s infinite;
}

.home-nowplaying .loader-wpr{
    width: 100%;
    height: 100%;
    background-color: var(--featured-bg);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}
.home-nowplaying .loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: translate(-50%) translateY(-50%);
    border: 3px solid;
    border-color: #FFF #FFF transparent transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    z-index: 5;
}
.home-nowplaying .loader::after,
.home-nowplaying .loader::before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent transparent #FF3D00 #FF3D00;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
}
.home-nowplaying .loader::before {
    width: 32px;
    height: 32px;
    border-color: #FFF #FFF transparent transparent;
    animation: rotation 1.5s linear infinite;
}

.home-history {
    width: 100%;
    height: 448px;
    box-sizing: border-box;
    background-color: var(--featured-bg);    
    color: var(--featured-text);
    position: absolute;
    top: 480px;
    padding-top: 35px;
    padding-bottom: 52px;
}
.home-history .last-played {
    font-family: 'Montserrat', sans-serif;
    color: var(--featured-text);
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
}
.home-history .item {
    position: relative;
}
.home-history .item .top {
    position: relative;
}
.home-history .item img {
    width: 100%;
    border-radius: 8px;
}
.home-history .item .title {
    font-size: 17px;
    font-weight: 700;
    color: var(--featured-text);
    text-align: center;
    text-transform: capitalize;
    margin-top: 8px;    
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-history .item .artist {
    font-size: 16px;
    color: var(--featured-text);
    text-align: center;
    text-transform: capitalize;    
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: .7;
}
.home-history .played-ppBtn {
    font-size: 64px;
    color: #fff;
    text-align: left;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    cursor: pointer;
    opacity: 0;
    z-index: 5;
}
.home-history .played-progress {
    width: 100%;
    height: 5px;    
    background: linear-gradient(to right, #ff0000 50%, #ff0000 50%) left;
    background-size: 0% 100%;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0 0 8px 8px;
    z-index: 5;
}
.home-history .item:hover img {
    width: 100%;
    border-radius: 8px;
    filter: brightness(45%);
    transition: all .3s ease;
}
.home-history .item:hover .played-ppBtn {
    opacity: 1;
    transition: all .3s ease;
}

/* HOME LATEST NEWS */

.home-latest-news {
    margin-top: 880px;
}

.home-latest-news img {
    width: 100%;
}
.home-latest-news .item .headline {
    color: var(--headline-color);
    font-size: 20px;
    font-weight: 900;
    line-height: 27px;
    margin-top: 10px;  
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-latest-news .item.first .headline {
    font-size: 26px;
    line-height: 33px;
}
.home-latest-news .item .date {
    font-size: 13px;
    font-weight: 600;
    color: #8f8f8f;
    margin-top: 5px;
}
.home-latest-news .item:hover img {
    filter: brightness(65%);
    transition: all .3s ease;
}
.home-latest-news section footer {
    padding-top: 30px !important;
}


.home ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
} 
.home .played-list {
    background: var(--featured-bg);    
    color: var(--featured-text);
    position: relative;
    margin-top: 452px;
    padding-bottom: 45px;
}
.home .played-list section footer{
    margin-top: 22px !important;
}
.home .played-list .section-header h2 {
    color: var(--featured-text);
}
.home .played-list .slider-wpr {
    position: relative;
}
.home .played-list .item {
    position: relative;
    margin-right: 20px;
}
.home .played-list .item:last-child {
    margin-right: 0px;
}
.glider-track li {
    color: red !important;
    list-style: none;
}
.home .played-list li::marker {
    list-style-type: none !important;    
    padding: 0;
    display: none;
}
.home .played-list .item .top {
    position: relative;
}
.home .played-list .item img {
    width: 100%;
    border-radius: 8px;
}
.home .played-list .item .title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    margin-top: 8px;    
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home .played-list .item .artist {
    font-size: 16px;
    color: #aaa;
    text-align: center;
    text-transform: capitalize;    
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home .played-list .played-ppBtn {
    font-size: 64px;
    color: #fff;
    text-align: left;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    cursor: pointer;
    opacity: 0;
    z-index: 5;
}
.home .played-list .progress {
    width: 100%;
    height: 5px;    
    background: linear-gradient(to right, #ff0000 50%, #ff0000 50%) left;
    background-size: 0% 100%;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0 0 8px 8px;
    z-index: 5;
}
.home .played-list .item:hover img {
    width: 100%;
    border-radius: 8px;
    filter: brightness(45%);
    transition: all .3s ease;
}
.home .played-list .item:hover .played-ppBtn {
    opacity: 1;
    transition: all .3s ease;
}
.home .played-list .slider-arrow-next,
.home .played-list .slider-arrow-prev {
    width: 44px;
    height: 44px;    
    font-size: 42px;
    line-height: 44px;
    top: 71px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0.4rem 1rem, rgba(0, 0, 0, 0.1) 0px 0.4rem 0.4rem;
}
.home .played-list .slider-arrow-prev {
    left: -22px;
}
.home .played-list .slider-arrow-next {
    right: -22px;
}

/* HOME PODCASTS */

.home-podcast-list {
    position: relative;
}
.home-podcast-list .item {
    position: relative;
    margin-right: 20px;
}
.home-podcast-list .item .title {
    font-size: 16px;
    color: var(--headline-color);
    text-align: center;
    margin-top: 5px;
}
.home-podcast-list img {
    border-radius: 8px;
}
.home-podcast-list .item:hover img {
    filter: brightness(85%);
    transition: all .3s ease;
}
.home-podcast-list .item .ppBtn {
    width: 42px;
    height: 42px;
    background-color: var(--action-btn-bg);
    color: var(--action-btn-text);
    font-size: 28px;
    text-align: center;
    line-height: 42px;
    border-radius: 50%;
    position: absolute;
    right: 16px;
    top: 178px;
    opacity: 0;
    cursor: pointer;
    z-index: 5;
}
.home-podcast-list .item:hover .ppBtn {
    opacity: 1;
    transition: all .3s ease;
}
.home-podcast-list footer {
    padding-top: 30px !important;
}
.home-podcast-list .slider-arrow-next,
.home-podcast-list .slider-arrow-prev {
    width: 44px;
    height: 44px;    
    font-size: 42px;
    line-height: 44px;
    top: 71px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0.4rem 1rem, rgba(0, 0, 0, 0.1) 0px 0.4rem 0.4rem;
}
.home-podcast-list .slider-arrow-prev {
    left: -22px;
}
.home-podcast-list .slider-arrow-next {
    right: -22px;
}

/* Home Sponsors */

.home-sponsors-list {
    position: relative;
}
.home-sponsors-list .item {
    position: relative;
    margin-right: 20px;
}
.home-sponsors-list .item img {
    min-height: 120px;
    max-height: 120px;
}
.sponsors-slider .glider-track {
  justify-content: center; /* Align children to center */
  display: flex !important; /* Override internal styles */
}
.sponsors-slider .glider-slide {
  flex: 0 0 auto;
  width: auto !important;  /* override 50 % */
}

.home .news-style-1 {
    display: block;
    position: relative;
}
.home .news-style-1 img {
    width: 100%;
    position: relative;
    z-index: 2;
}
.home .news-style-1 .overlay {
    width: 100%;
    height: 50%;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 75%);
    position: absolute;
    bottom: 0;
    z-index: 3;
}
.home .news-style-1 .title {
    color: #fff;
    font-size: 21px;
    font-weight: 900;
    line-height: 25px;
    position: absolute;
    padding: 0 16px;
    bottom: 15px;
    z-index: 4;
}
.home .news-style-1.first .title {
    font-size: 29px;
    line-height: 33px;
    bottom: 19px;
}

.featured-block {
    background-color: var(--featured-bg) !important;
    color: var(--fatured-text) !important;
    padding-bottom: 40px;
    margin-bottom: 40px;
}
.featured-block .slider-wpr {
    position: relative;
}
.featured-block section h2 {
    font-family: 'Montserrat';
    font-size: 36px;
    color: var(--featured-text);
    text-align: center;
}
.featured-block .item {
    margin-right: 25px;
}
.featured-block .item:last-child {
    margin-right: 0px;
}
.featured-block .item:hover img {
    filter: brightness(65%);
}
.featured-block .title {
    font-size: 17px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
}
.featured-block .slider-arrow-next,
.featured-block .slider-arrow-prev {
    top: 85px;
}
.featured-block.events .slider-arrow-next,
.featured-block.events .slider-arrow-prev {
    top: 57px;
}


.gradient-bg-1 {
    background: rgb(51, 51, 51);
    background: linear-gradient(180deg, rgba(51, 51, 51, 1) 0%, rgba(0, 0, 0, 1) 100%);
}


.angle-down {
    coior: red;
}
.angle-down::before {
    content: "\f107";
}
.angle-up::before {
    content: "\f106";
}



.py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.py-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.dn {
    display: none;
}

.di {
    display: inline;
}


/* ON AIR */

.onAir-loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: translate(-50%) translateY(-50%);
    border: 3px solid;
    border-color: #FFF #FFF transparent transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    z-index: 5;
}

.onAir-loader::after,
.onAir-loader::before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent transparent #FF3D00 #FF3D00;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
}

.onAir-loader::before {
    width: 32px;
    height: 32px;
    border-color: #FFF #FFF transparent transparent;
    animation: rotation 1.5s linear infinite;
}

.onAir-wpr {
    width: 100%;
    background-color: var(--onAir-bg);
    position: absolute;
    top: 130px;
}
.onAir-ctr {
    max-width: 1196px;
    position: relative;
    padding: 50px 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
.onAir-bg {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: 70%;
    background-repeat: no-repeat;
    filter: blur(50px);
    opacity: .1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.onAir-metadata {
    width: 100%;
    padding-right: 40px;
    padding-top: 0px;
    position: relative;
    order: 1;
    z-index: 5;
}
.onAir-title {
    font-size: 50px;
    font-weight: 900;
    line-height: 56px;
    color: var(--onAir-song-title);
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    z-index: 2;
}
.onAir-albumInfo {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    color: var(--onAir-artist-name);
    text-transform: uppercase;
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.onAir-artwork {
    min-width: 250px;
    width: 250px;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 8px;
    order: 2;
    z-index: 5;
}
.onAir-ppBtn {
    height: 64px;
    width: 64px;
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 500px;
    height: 64px;
    color: #fff;
    background-color: #ef0000;
    text-align: center;
    text-transform: uppercase;
    border-radius: 32px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 3px 5px 0px rgba(0,0,0,0.3);
    -webkit-box-shadow: 1px 3px 5px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 1px 3px 5px 0px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}
.onAir-badge {
    height: 26px;
    color: var(--onAir-btn-text);
    font-size: 12px;
    font-weight: 600;
    line-height: 26px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: 8pxpx;
    padding: 0px 12px 0px 24px;
    border-radius: 32px;
    cursor: pointer;
}
.onAir-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--onAir-btn-dot);
    position: absolute;
    border-radius: 50%;
    left: 10px;
    top: 10px;
}
.onAir-badge::before {
    animation: blink-1 2s infinite;
}


.onAir-streams-wpr {
    height: 60px;
    width: 100%;
    background-color: var(--onAir-menu-bg);
    position: absolute;    
    display: flex;
    align-items: center;
    top: 80px;
    z-index: 999;
}
.onAir-streams-ctr {
    position: relative;
    max-width: 1196px;
    padding: 0;
    margin: 0 auto;
}
.onAir-streams {
    max-width: 1196px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    gap: 30px;

    overflow: hidden !important; 
    white-space: nowrap;
    overflow-x: scroll;
    scroll-behavior: smooth;
}
.onAir-streams .item {
    color: var(--onAir-menu-text);
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}
.onAir-streams .item img {
    height: 30px;
    border-radius: 5px;
}
.onAir-streams .item .title {
}
.onAir-streams .item.active .title {
    color: var(--onAir-menu-active-text);
}
.onAir-streams .item.active {
    border-color: var(--onAir-menu-active-border);
    color: var(--onAir-menu-active-text);
}
.onAir-streams-overlay-right {
    height: 60px;
    width: 50px;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(var(--onAir-overlay-bg)) 100%);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 5;
}
.onAir-streams-overlay-left {
    height: 60px;
    width: 50px;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(var(--onAir-overlay-bg)) 0%, rgba(0,0,0,0) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
}
.onAir-streams-arrow-next,
.onAir-streams-arrow-prev {
    width: 24px;
    height: 60px;
    color: var(--onAir-menu-text);
    font-size: 36px;
    line-height: 60px;
    position: absolute;
    top: 0px;
    cursor: pointer;
    z-index: 999;
}
.onAir-streams-arrow-next {
    right: 0px;
    padding-left: 2px;
    text-align: right;
}
.onAir-streams-arrow-next::before {
    content: "\f105";
}
.onAir-streams-arrow-prev {
    left: 0px;
    padding-left: 0px;
    text-align: left;
}
.onAir-streams-arrow-prev::before {
    content: "\f104";
}
.onAir-streams-arrow-next:hover,
.onAir-streams-arrow-prev:hover {
    color: #ddd;
}

















.onAir-played-wpr {
    margin-top: 10px;
}
.onAir-played-song-wpr {
    display: flex;
    gap: 25px;
    margin-bottom: 32px;
}
.onAir-played-time-wpr {
    width: 80px;
    position: relative;
    text-align: center;
}
.onAir-played-time-wpr::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    border-left: .3rem dotted var(--onAir-played-date-border);
    left: 50%;
    z-index: 2;
}
.onAir-played-time {
    background-color: #fff;
    color: var(--onAir-played-date-text);
    font-size: 17px;
    font-weight: 700;
    line-height: 17px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding-top: 5px;
    padding-bottom: 8px;
    z-index: 5;
}
.onAir-played-data {
    width: 100%;
    background-color: var(--onAir-played-bg);
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
}
.onAir-played-metadataWpr {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.onAir-played-title {
    color: var(--onAir-played-song-info);
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
}
.onAir-played-artist {
    color: var(--onAir-played-song-info);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}
.onAir-played-album {
    color: var(--onAir-played-album-name);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}
.onAir-played-artwork {
    min-width: 80px;
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}
.onAir-played-btns-wpr {
    display: flex;
    justify-content: end;
    align-items: center;
}
.onAir-played-btns {
    margin-right: 20px;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
}
.onAir-played-btn {
    width: 40px;
    height: 40px;
    color: var(--onAir-played-like-text);
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
}
.onAir-played-btn:hover {
    background-color: #ddd;
    color: #ef0000;
}
.onAir-played-ppBtn {
    width: 42px;
    height: 42px;
    background-color: var(--onAir-played-btn-bg);
    color: var(--onAir-played-btn-text);
    font-size: 20px;
    line-height: 42px;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(to left, var(--onAir-played-btn-bg) 50%, var(--onAir-played-btn-bg) 50%) right;
    background-size: 200%;
    transition: background-position;
    cursor: pointer;
}
.onAir-played-song-wpr:first-child .onAir-played-time-wpr::before {
    height: 50%;
    bottom: 0;
}
.onAir-played-song-wpr:last-child .onAir-played-time-wpr::before {
    height: 50%;
}


/* PLAYER BAR */

.playerBar {
    height: 90px;
    width: 100%;
    background-color: var(--playerBar-bg);
    position: fixed;
    bottom: -90px;
    border-top: 1px solid #1f1f1f;
    transition: all .3s ease;
    justify-content: space-between;
    z-index: 999;
}
.playerBar .actionBtns {
    width: 200px;
    height: 90px;
    position: absolute;
    top: 0px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transform: translateX(-50%);
    z-index: 10;
}
.playerBar .ppBtn {
    width: 48px;
    height: 48px;
    color: var(--playerBar-playBtn);
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}
.playerBar .backwardBtn, .playerBar .forwardBtn {
    width: 32px;
    height: 32px;
    color: var(--playerBar-playBtn);
    font-size: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}
.playerBar .backwardBtn::before {
    content: "\e059";
}
.playerBar .forwardBtn::before {
    content: "\e056";
}
.playerBar .play::before {
    content: "\e037";
}
.playerBar .pause::before {
    content: "\e034";
}
.playerBar .metadata {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
}
.playerBar .artwork {
    width: 90px;
    height: 90px;
    background-position: center;
    background-size: cover;
}
.playerBar .details {
    padding-left: 20px;
    padding-right: 26px;
    margin-top: -8px;
}
.playerBar .details .now-playing {
    font-size: 13px;
    color: var(--playerBar-song-title);
    font-weight: 500;
}
.playerBar .details .stream-name {
    font-size: 13px;
    color: var(--playerBar-song-title);
    font-weight: 600;
}
.playerBar .details .angle-up {
    color: var(--playerBar-song-title);
    margin-left: 10px;
    cursor: pointer;
    vertical-align: middle;
}
.playerBar .details .song {
    font-size: 16px;
    line-height: 20px;
    color: var(--playerBar-song-title);
    font-weight: 600;
    text-transform: capitalize;
}
.playerBar .details .album {
    font-size: 16px;
    line-height: 20px;
    color: var(--playerBar-artist-name);
    font-weight: 500;
    text-transform: capitalize;
}
.playerBar .stream-list {
    min-width: 200px;
    padding: 0;
    background-color: #1f1f1f;
    position: absolute;
    left: 130px;
    bottom: 20px;
    border-radius: 8px 8px 0 0;
    display: none;
    z-index: 9999;
}
.playerBar .stream-list .top {
    padding-top: 20px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.playerBar .stream-list .angle-down {
    color: var(--playerBar-song-title);
    margin-right: 20px;
    cursor: pointer;
}
.playerBar .stream-list .stream-title {
    color: var(--playerBar-song-title) !important;    
    font-size: 18px;
    font-weight: 700;
    padding-left: 20px;
}
.playerBar .stream-list .item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
}
.playerBar .stream-list .item img {
    height: 40px;
    width: 40px;
    border-radius: 6px;
}
.playerBar .stream-list .item .title {
    font-size: 16px;
    font-weight: 700;
    color: var(--playerBar-artist-name);
    padding-left: 17px;
}
.playerBar .stream-list .item:hover, .playerBar .stream-list .item.active  {
    background-color: rgba(255,255,255,.1);
}
.playerBar .stream-list .item:hover .title, .playerBar .stream-list .item.active .title  {
    color: var(--playerBar-song-title) !important;
}
.playerBar .buttons {
    height: 80px;
    position: absolute;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
    z-index: 5;
}
.playerBar .icon {
    width: 38px;
    height: 38px;
    font-size: 24px;
    color: var(--playerBar-icons);
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}
.playerBar .like {
    font-size: 18px;
}
.playerBar .icon:hover {
    color: var(--playerBar-icons);
    background-color: rgba(255, 255, 255, .0);
}
.playerBar .apple::before {
    content: "\e2c0";
}
.playerBar .list::before {
    content: "\e03b";
}
.playerBar .twitter::before {
    content: "\e80d";
}
.playerBar .like::before {
    content: "\e87d";
}
.playerBar .vol1::before {
    content: "\e04f";
}
.playerBar .vol2::before {
    content: "\e04d";
}
.playerBar .vol3::before {
    content: "\e050";
}
.playerBar .volWpr {
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
}
.playerBar .volCtr {
    width: 100px;
    margin-right: 10px;
}
.playerBar input[type="range"] {
    -webkit-appearance: none;
    margin-right: 15px;
    margin-bottom: 18px;
    width: 100px;
    height: 3px;
    background: var(--playerBar-vol-bg);
    border-radius: 5px;
    background-image: linear-gradient(var(--playerBar-vol-fill), var(--playerBar-vol-fill));
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 0;
}
.playerBar input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 11px;
    width: 11px;
    border-radius: 50%;
    background: var(--playerBar-vol-thumb);
    cursor: pointer;
    box-shadow: 0 0 2px 0 #000;
    transition: background .3s ease-in-out;
}
.playerBar input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    height: 11px;
    width: 11px;
    border-radius: 50%;
    background: var(--playerBar-vol-thumb);
    cursor: pointer;
    box-shadow: 0 0 2px 0 #000;
    transition: background .3s ease-in-out;
}
.playerBar input[type="range"]::-ms-thumb {
    -webkit-appearance: none;
    height: 11px;
    width: 11px;
    border-radius: 50%;
    background: var(--playerBar-vol-thumb);
    cursor: pointer;
    box-shadow: 0 0 2px 0 #000;
    transition: background .3s ease-in-out;
}
.playerBar input[type="range"]::-webkit-slider-thumb:hover {
    background: var(--playerBar-vol-thumb);
}
.playerBar input[type="range"]::-moz-range-thumb:hover {
    background: var(--playerBar-vol-thumb);
}
.playerBar input[type="range"]::-ms-thumb:hover {
    background: var(--playerBar-vol-thumb);
}
.playerBar input[type=range]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    box-shadow: none;
    border: none;
    background: transparent;
}
.playerBar input[type=range]::-moz-range-track {
    -webkit-appearance: none;
    box-shadow: none;
    border: none;
    background: transparent;
}
.playerBar input[type="range"]::-ms-track {
    -webkit-appearance: none;
    box-shadow: none;
    border: none;
    background: transparent;
}
.playerBar .seekBarWpr {
    width: 100%;
    height: 14px;
    padding: 0;
    margin: 0;
    position: absolute;
    top: -16px;
    z-index: 999;
}
.playerBar .seekBarWpr input[type="range"] {
    -webkit-appearance: none;
    margin-right: 0;
    margin-bottom: 0;
    padding: 0;
    margin: 0;
    width: 100% !important;
    height: 4px;
    background: var(--playerBar-seek-bg);
    border-radius: 0px;
    background-image: linear-gradient(var(--playerBar-seek-fill), var(--playerBar-seek-fill));
    background-size: 0% 100%;
    background-repeat: no-repeat;
    cursor: pointer;
    opacity: 1;
}
.playerBar .seekBarWpr input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: var(--playerBar-seek-fill);
    cursor: pointer;
    box-shadow: 0 0 2px 0 #000;
    transition: background .3s ease-in-out;    
    opacity: 1;
}


/* MOBILE */

@media only screen and (max-width: 600px) {
    body {
        font-size: 15px;
    }
    .page-title h1 {
        font-size: 34px !important;
    }
    .page-title p {
        font-size: 15px;
        margin-top: 5px;
    }
    .section-header h2 {
        font-size: 30px !important;
    }
    .footer {
        padding: 50px 0;
        margin-top: 0;
    }  

    .onAir-wpr {
        width: 100%;
        position: absolute;
        top: 130px;
    }
    .onAir-ctr {
        max-width: 1196px;
        position: relative;
        padding: 30px 0;
        margin: 0 auto;
        display: block;
        justify-content: space-between;
        align-items: center;
        overflow: hidden;
    }
    .onAir-metadata {
        width: 100%;
        padding-right: 10px;
        padding-left: 10px;
        padding-top: 0px;
        text-align: center;
        order: 2;
    }
    .onAir-title {
        font-size: 20px;
        font-weight: 700;
        line-height: 32px;
        -webkit-line-clamp: 1;
    }
    .onAir-albumInfo {
        font-size: 15px;
        font-weight: 500;
        line-height: 26px;
        margin-top: 8px;
        -webkit-line-clamp: 1;
    }
    .onAir-artwork {
        min-width: 180px;
        width: 180px;
        height: 180px;
        margin: 0 auto;
        order: 2;
    }    
    .onAir-badge {
        margin-bottom: 8px;
        margin-top: 10px;
    }

    .home-nowplaying {
        width: 100%;
        height: 380px;
        box-sizing: border-box;
        position: absolute;
        top: 130px;
        z-index: 100;
    }
    .home-nowplaying .ctr {
        padding: 50px 0 30px 0;
        margin: 0 auto;
        display: block;
    }
    .home-nowplaying .metadata {
        padding-right: 20px;
        padding-left: 20px;
        padding-top: 10px;
        text-align: center;
        order: 2;
    }
    .home-nowplaying .title {
        font-size: 18px;
        font-weight: 900;
        line-height: 24px;
        padding-top: 5px;
        -webkit-line-clamp: 1;
    }
    .home-nowplaying .album-info {
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        margin-top: 8px;
        -webkit-line-clamp: 1;
    }
    .home-nowplaying .artwork {
        min-width: 200px;
        width: 200px;
        height: 200px;
        margin: 0 auto;
        order: 1;
    }
    
    .home-history {
        height: 410px;
        top: 508px;
    }

    .home-history .last-played {
        font-size: 30px;
    }

    .home-latest-news {
        margin-top: 900px;
    }

    .home .programs-list {
        position: relative;
    }
    .home .program-list .item {  
    }
    .home .programs-list section footer {
        padding-top: 5px !important;
    }
    .home .programs-list img {
        width: 100%;
    }
    .home .programs-list .title {
        font-size: 20px;
        font-weight: 900;
        margin-top: 5px;
        text-align: center;      
        margin-bottom: 30px;
    }
    .home .programs-list .time {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        text-align: center;
        line-height: 21px;
        margin-bottom: 10px;
    }

    .home-videos-list {
        position: relative;
        margin-top: 50px;
        padding-bottom: 45px;
    }
    .home-videos-list section footer{
        margin-top: 22px !important;
    }
    .home-videos-list .item {
        position: relative;
        gap: 14px;
        display: flex;
    }
    .home-videos-list .item img {
        width: auto;
        height: 70px;

    }
    .home-videos-list .item .title {    
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        line-height: 23px;
        -webkit-line-clamp: 2;
    }
    
    .home-videos-list .item.first {
        display: block;
        margin-bottom: 30px;
    }
    
    .home-videos-list .item.first img {
        width: 100%;
        height: 100%;
    }
    .home-videos-list .item.first .title {
        font-size: 20px;
        line-height: 34px;
        margin-top: 12px;
    }
    .home-videos-list .item .date {
        color: #8f8f8f;
        font-size: 13px;
        font-weight: 600;
        margin-top: 3px;
    }
    .home-videos-list .item .ppBtn {
        width: 32px;
        height: 32px;
        background-color: #000;
        color: #fff;
        font-size: 16px;
        text-align: center;
        line-height: 32px;
        border-radius: 50%;
        position: absolute;
        left: 10px;
        bottom: 10px;
        opacity: 0;
        z-index: 5;
    }
    .home-videos-list .item.first .ppBtn {
        width: 48px;
        height: 48px;
        font-size: 24px;
        line-height: 48px;
        left: 16px;
        bottom: 90px;
    }
    .home-videos-list .item:hover .ppBtn {
        opacity: 1;
        transition: all .3s ease;
    }
    
    .home-videos-list .item:hover img {
        filter: brightness(50%);
        transition: all .3s ease;
    }
    .home-videos-list .item:hover .title {
        text-decoration: underline;
    }
    .home-podcast-list .item .ppBtn {
        width: 38px;
        height: 38px;
        font-size: 24px;
        line-height: 38px;
        right: 12px;
        top: 93px;
        opacity: 1;
    }
    .home-podcast-list .item:hover .ppBtn {
        opacity: 1;
        transition: all .3s ease;
    }

    

    .onAir-streams-ctr {
        position: relative;
        max-width: 400px;
        padding: 0;
        margin: 0 auto;
    }

    .news-element .img-wpr {
        width: 100%;
        height: 225px;
        margin-top: 0px;
        margin-bottom: 10px;
    }
    .news-element .img-ctr {
        display: none;
    }
    .news-element .img-wpr img {
        width: 100% !important;
        position: static !important;
        left: auto!important;
        transform: none!important;
    } 

    .news-element .readAlso .read-also {
        font-size: 20px;
        font-weight: 900;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    .news-element .readAlso .ctr {
        display: flex;
    }
    .news-element .readAlso img {
        width: auto;
        height: 75px;
        margin-right: 12px;
    }
    .news-element .readAlso .title {
        font-size: 18px;
        font-weight: 900;
    }

    .podcast-list {
        height: 100px;
        display: flex;
    }
    .podcast-list img {
        height: 100px;
        width: 100px;
        min-width: 100px;
    }
    .podcast-list .data {
        padding-left: 15px;
    }
    .podcast-list .data .title {
        font-size: 18px;
        font-weight: 700;
        display: block;
    }
    .podcast-list .data .date {
        font-size: 14px;
    }
    .podcast-list .data .details {
        font-size: 13px;    
        -webkit-line-clamp: 2;
    }
    .podcast-list .data p {
        margin: 0;
        padding: 0;;
    }
    .podcast-list .podcast-ppBtn {
        width: 42px;
        height: 42px;
        line-height: 42px;
        top: 29px;
        left: 29px;
    }

    .artist-header {
        height: auto;
        position: relative;
        overflow: hidden;
        margin-top: 70px;
    }
    .artist-header .bg {
        width: 100%;
        height: 300px;
        background-color: #000;
        background-size: cover;
        background-position: center;
        filter: brightness(30%) blur(10px);
        transform: scale(1.2);
        position: absolute;
        z-index: 1;
    }
    .artist-header .dataWpr {
        height: 100%;
        color: #fff;
        display: block;
        align-items: center;
        text-align: center;
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .artist-header .data {
        padding-left: 0px;
        padding-top: 20px;
    }
    .artist-header .name {
        font-size: 24px;
        font-weight: 700;
    }
    .artist-header .img {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .album-element {
        display: block;
        justify-content: center;
        text-align: center;
    }
    .album-element .cover {
        width: 200px;
        min-width: 200px;
        margin: 0 auto;
    }
    .album-element .details {
        height: auto;
        padding-left: 0px;
        padding-top: 10px;
    }
    .album-element .title {
        font-size: 24px;
        line-height: 32px;
    }
    .album-element .date {
        font-size: 18px;
    }
    .album-element .desc {
        margin-top: 10px;
        margin-bottom: 20px;
    }
    .album-element .songs {
        margin-left: 0px;
    }
    .album-element .song {
        font-size: 17px;
    }

    .program-list-wpr {
        position: relative;
        margin-top: 15px;
    }
    .program-list-wpr .line {
        display: none;
    }
    .program-list {
        width: 100%;
        margin-bottom: 20px;
    }
    .program-list img {
        width: 100%;
        margin-bottom: 10px;
    }
    .program-list .title {
        font-size: 20px;
    }
    .program-list .hours {
        font-size: 26px;
        font-weight: 700;
    }
    .program-list p {
        font-size: 16px;
    }
    .program-list:nth-child(odd) {
        padding-right: 0px;
    }
    .program-list:nth-child(even) {
        margin-left: 0;
        padding-left: 0px;
    }

    .video-list .title {
        font-weight: 900;
    }

    .event-list .title {
        font-size: 18px !important;
    }
    .event-list img {
        margin-bottom: 10px;
    }
    .event-element .venue .title {
        font-size: 18px;
    }
    .event-element .venue .date {
        font-size: 15px;
    }    
    .event-element .img-wpr {
        width: 100%;
        height: 225px;
        margin-top: 0px;
        margin-bottom: 10px;
    }
    .event-element .img-ctr {
        display: none;
    }
    .event-element img {
        width: 100%;
        position: static;
        left: auto;
        transform: none;
    }    
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.scrolled:hover {
    animation: scroll-rtl 15s linear forwards;
}

@keyframes scroll-rtl {
    0% {
        transform: translate(0);
    }

    100% {
        transform: translate(-100%);
    }
}

.slide-in-blurred-top {
    -webkit-animation: slide-in-blurred-top 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
    animation: slide-in-blurred-top 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
}

.slide-in-blurred-bottom {
    -webkit-animation: slide-in-blurred-bottom 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
    animation: slide-in-blurred-bottom 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
}

.rotate-vert-center {
    -webkit-animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
    animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}

.blink-1 {
    -webkit-animation: blink-1 0.6s both;
    animation: blink-1 0.6s both;
}

@-webkit-keyframes rotate-vert-center {
    0% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
    }

    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}

@keyframes rotate-vert-center {
    0% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
    }

    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}

@-webkit-keyframes slide-in-blurred-top {
    0% {
        -webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
        transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
        -webkit-transform-origin: 50% 0%;
        transform-origin: 50% 0%;
        -webkit-filter: blur(40px);
        filter: blur(40px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
        transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
    }
}

@keyframes slide-in-blurred-top {
    0% {
        -webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
        transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
        -webkit-transform-origin: 50% 0%;
        transform-origin: 50% 0%;
        -webkit-filter: blur(40px);
        filter: blur(40px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
        transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
    }
}

@-webkit-keyframes slide-in-blurred-bottom {
    0% {
        -webkit-transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
        transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        -webkit-filter: blur(40px);
        filter: blur(40px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
        transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
    }
}

@keyframes slide-in-blurred-bottom {
    0% {
        -webkit-transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
        transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        -webkit-filter: blur(40px);
        filter: blur(40px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
        transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
    }
}

@-webkit-keyframes blink-1 {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

@keyframes blink-1 {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}