/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo&family=Quantico:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    padding: 0;
    margin: 0;
    font-family: "Roboto", sans-serif;
}

* {
    box-sizing: border-box;
}

.home {
    height: 100vh;
    position: relative;
    background-image: url("../images/slider.jpg");
    z-index: 1;
}

.home::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 2;
}

.home video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.navbar {
    background-color: transparent;
    padding: 1rem 2rem;
    transition: all 0.25s;
}

.navbar.scrolled {
    background-color: #000;
    padding: 0.25rem 1rem;
}

.nav-link {
    color: #fff !important;
    font-family: 'Inter', sans-serif !important;
    text-transform: uppercase;
    font-size: 20px;
    margin-left: 20px;
}

.nav-link.text-orange {
    color: #ee5c08 !important;
}

.navbar li a {
    font-weight: 500;
}

.navbar li a.active {
    color: #00b0f0 !important;
    font-weight: 600 !important;
}

.navbar-brand img {
    height: 80px;
}

.navbar-nav {
    align-items: center;
    gap: 10px;
}

.slider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 3;
}

.slider h1 {
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 200;
}

.slider p {
    font-size: 20px;
    margin-bottom: 2rem;
}

.slider-btn {
    display: inline-block;
    text-transform: uppercase;
    font-size: 18px;
    background-color: #ffeb00;
    color: #000;
    font-weight: 500;
    border-radius: 6px;
    width: 250px;
    line-height: 50px;
    text-decoration: none;
}

.slider-btn:hover {
    text-decoration: none;
    background-color: #e2d002;
    color: #000;
}

.footer {
    /* position: fixed; */
    /* width: 100%; */
    /* bottom: 0; */
    /* z-index: 2; */
    /* left: 0; */
    background-color: #000000;
    color: #007eac;
    padding: 0 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.footer .row {
    align-items: center;
}

.footer h1 {
    font-size: 20px;
}

.platforms-footer {
    display: flex;
    gap: 10px;
    align-items: center;
}

.platforms-footer img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.player {
    padding-top: 56.25%;
    position: relative;
}

.player .video-js {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.player-only {
    height: 100vh !important;
    position: relative;
}

.player-only .video-js {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 !important;
}

.thumbnail {
    padding-top: 56.25%;
    position: relative;
    cursor: pointer;
    margin-bottom: 1rem;
}

.thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-container {
    padding: 3rem 50px;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
}


.main-container.live-tv {
    padding: 100px 50px 130px 50px !important;
    background-color: #000;
    color: #fff;
    min-height: 80vh;
}

.list-row {
    margin-bottom: 3rem;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.section-heading h3 {
    margin: 0;
}

.section-heading a {
    text-decoration: none;
    color: #fff;
}

.row-item {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 30px;
    z-index: 1;
    transition: transform 0.25s ease-in-out;
}

.thumb-detail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 5;
    color: #fff;
    opacity: 0;
    padding: 1rem;
    transition: opacity 0.25s ease-in-out;
}

.row-item:hover .thumb-detail {
    opacity: 1;
}

.thumb-detail h2 {
    font-size: 24px;
}

.thumb-detail p {
    margin-top: 1rem;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.detail-icons .btn {
    color: #fff;
    padding: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50% !important;
    font-size: 26px;
}

.trending {
    color: #00b0f0;
    margin-bottom: 10px;
    font-weight: 600;
}

.row-item.serials {
    aspect-ratio: 9 / 14;
}

.row-item:hover {
    transform: scale(1.1);
    z-index: 2;
}

.row-item.serials {
    transform: none;
}

.row-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.row-item .live {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 0 10px;
    border-radius: 4px;
    line-height: 24px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.65);
}

.row-item .duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 0 10px;
    border-radius: 4px;
    line-height: 24px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.65);
}

.video-player {
    position: relative;
    padding-top: 56.25%;
}

.video-player::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
}

.video-player img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1c1c1c;
    padding: 2rem 3rem;
    border-radius: 6px;
    text-align: center;
    z-index: 1;
}

.timer-dv {
    display: flex;
    align-items: center;
    gap: 10px;
}

.timer-item {
    width: 80px;
}

.timer-item h2 {
    font-size: 40px;
}

.timer-item p {
    font-size: 16px;
    text-transform: uppercase;
    color: #767676;
}

.information-block {
    padding: 2rem 3rem;
}

.information-block p {
    margin-bottom: 1rem;
}

.information-block p.sub-heading {
    margin-bottom: 2rem;
}


/*============ Contact us*/

.tv-slider {
    position: relative;
    padding: 2rem;
    background-image: url("../images/slider.jpg");
    background-size: cover;
    z-index: 1;
    margin: -20px -50px 0 -50px;
}

.tv-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: -1;
}

.tv-detail {
    padding: 1rem 0;
}

.tv-detail h2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.tv-detail .live-badge {
    display: inline-block;
    color: #9ba0c7;
    background-color: #1e2a48;
    padding: 2px 15px;
    border-radius: 4px;
    text-transform: uppercase;
}

.tv-detail p {
    font-size: 18px;
}

.tv-detail p span {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-right: 5px;
    border-radius: 3px;
    padding: 0 10px;
}

.channel-header {
    display: flex;
    gap: 3px;
    color: #787878;
    margin: 0;
    align-items: center;
}

.channel-item {
    width: 100%;
    padding: 1rem 2rem;
}

.channel-item strong {
    color: #fff;
}

.channel-item p {
    margin: 0;
}

.channel-body {
    margin: 0;
    background-color: #000;
    padding: 1px;
}

.channel-list {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.channel-list .channel-list-name {
    width: 150px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    padding: 0 20px;
    height: 70px;
    line-height: 70px;
    cursor: pointer;
    transition: all 0.25s;
}

.channel-list-name {
    text-transform: uppercase;
}

.channel-list-name span {
    display: inline-block;
    background-color: #fff;
    color: #111;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    vertical-align: middle;
    text-align: center;
    line-height: 25px;
    font-weight: 600;
    position: relative;
    top: -2px;
    margin-left: 3px;
}

.channel-list .channel-list-name:hover {
    background-color: #007eac;
}

.channel-list .channel-list-name1 {
    width: 150px;
    border-radius: 2px;
    color: #fff;
    text-align: center;
    padding: 0 20px;
    line-height: 40px;
    cursor: pointer;

}


.channel-list-name img {
    margin-left: 30px;
    height: 30px;
    width: 40px;
    object-fit: contain;
}

.channel-list .channel-list-info {
    width: calc(100% - 105px);
    color: #fff;
    text-align: center;
    display: flex;
    gap: 10px;
}

.channel-list .channel-list-item {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.075);
    border-radius: 4px;
    padding: 0 20px;
    line-height: 40px;
    text-align: left;
    position: relative;
    transition: all 0.25s;
    cursor: pointer;
}

.channel-list-item:hover {
    background-color: rgba(255, 255, 255, 0.85);
    color: #111;
    transform: scale(1.025);
}

.channel-list .channel-list-item1 {
    width: 100%;
    background-color: transparent;
    border-radius: 4px;
    line-height: 40px;
    text-align: left;
}


.calendar .tv-detail {
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
    border: 1px solid rgba(255, 255, 255, 0.125);
    border-left: none;
    padding-right: 100px;
    position: relative;
}

.calendar .tv-detail p {
    font-weight: 300;
    font-size: 14px;
    margin-top: 0.5rem;
}

.calendar .tv-detail h3 {
    font-size: 22px;
}

.btn {
    border-radius: 25px !important;
}

.calendar .tv-detail .btn-dark {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
    border-radius: 0 8px 8px 0 !important;
    padding: 0;
    line-height: 170px;
}

.calendar .thumbnail {
    border-radius: 8px 0 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    border-right: none;
    overflow: hidden;
    padding-top: 59.25%;
}

.cal-date {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    overflow: hidden;
    text-align: center;
    padding: 1rem;
    position: relative;
    padding-top: 3.5rem;
}

.cal-month {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 40px;
    font-size: 14px;
    text-transform: uppercase;
    background-color: rgba(0, 0, 0, 0.5);
}

.cal-date h2 {
    font-size: 36px;
}

.cal-date p {
    font-size: 14px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.calendar-header span {
    font-size: 24px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
}

.calendar-header button {
    font-size: 20px;
}

.more .thumbnail {
    background-color: rgba(255, 255, 255, 0.125);
}

.more .thumbnail img {
    object-fit: contain;
}

.live-player-page {
    padding: 0;
}

.btn {
    padding: 0 20px;
    line-height: 44px;
    border-radius: 2px;
}

.btn-info,
.btn-info:hover {
    background-color: #ee5c08;
    border-color: #ee5c08;
}

.btn-danger {
    background-color: #e70000;
}

.contact-form {
    padding: 2rem;
    background-color: #fff;
    color: #000;
    border-radius: 25px;
}

.contact-form .form-control {
    min-height: 50px;
    border-radius: 25px;
    padding: 5px 20px;
}

.contact-form .contact-heading {
    margin-bottom: 1.5rem;
}

.contact-heading p {
    color: #787878;
}

.contact-form textarea.form-control {
    padding: 10px 20px;
}

.contact-form .btn-contact {
    height: 50px;
    border-radius: 25px;
    background-color: #ee5c08;
    color: #fff;
}

@media (max-width: 1024px) {
    .footer h1 {
        font-size: 18px;
    }

    .platforms-footer img {
        width: 50px;
        height: 50px;
    }

    .live-player-page {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .platforms-footer {
        gap: 5px;
    }

    .platforms-footer img {
        width: 30px;
        height: 30px;
    }

    .information-block {
        padding: 2rem 0;
    }
}

.contact-us .row {
    align-items: center;
}

.contact-info h1 {
    font-size: 4em;
}

.contact-info p {
    font-size: 1.5em;
    color: #787878;
    max-width: 400px;
}

.contact-info p.contact-email {
    color: #ee5c08;
}

.advertise {
    background: #cc0000;
    margin: -18px -50px 0 -50px;
    padding: 50px;
    background-image: url("../images/slider.jpg");
    position: relative;
    z-index: 1;
    text-align: center;
    padding-bottom: 100px;
}

.advertise::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

.text-theme {
    color: #ee5c08;
}

.advertise h1 {
    font-size: 4em;
}

.advertise p {
    font-size: 1.3em;
    max-width: 1100px;
    color: #898989;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.advertise .btn {
    margin-bottom: 1rem;
}

.advertise-plans {
    position: relative;
    margin-top: -20px;
    z-index: 5;
    display: flex;
    gap: 50px;
    justify-content: center;
}

.advertise-plans .plan-item {
    flex: 0 0 320px;
    width: 320px;
    text-align: center;
    background-color: #111;
    padding: 1rem;
    padding-top: 50px;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.075);
}

.plan-item h3 {
    color: #ee5c08;
}

.plan-item p {
    color: #999;
}

.plan-item::after {
    content: "\f46c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 22px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background-color: #ffeb00;
    border-radius: 50%;
    top: -40px;
    text-align: center;
    line-height: 80px;
    color: #000;
}

.row-heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    align-items: center;
}

.row-heading h3 {
    color: #00b0f0;
    font-size: 20px;
    margin: 0;
}

.row-heading p {
    font-size: 20px;
    margin: 0;
}

.live-tv-detail {
    padding: 20px;
    padding-top: 180px;
    margin-bottom: 4rem;
}

.live-tv-detail h2 {
    font-size: 30px;
    font-weight: 300;
}

.live-tv-detail h1 {
    font-size: 60px;
    font-weight: 900;
    color: #666;
}

.live-slider .thumbnail {
    margin-top: 20px;
    position: relative;
}

.live-slider .thumbnail::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 20px 20px 20px #000, inset -20px -20px 20px #000;
    z-index: 5;
}

.shows-container {
    padding: 0 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.portrait {
    position: relative;
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    transition: all 0.25s ease-in-out;
}

.portrait:hover {
    transform: scale(1.1);
    z-index: 2;
}

.portrait i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    font-size: 40px;
    opacity: 0;
}

.portrait:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.portrait:hover i {
    opacity: 1;
}

.portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.show-description {
    text-align: center;
}

.show-description p {
    margin: 0;
}

.show-description span {
    color: #767676;
}

/*Added By Shoaib Z */

.clock-container {
    display: flex;
    justify-content: right;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 30px;
    z-index: 5;
    align-items: center;
}

.clock {
    border: 2px solid #007eac;
    border-radius: 8px;
    padding: 5px 15px;
    text-align: center;
}

.clock.active {
    border-color: #ee5c08;
}

.city {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
    color: #fff;
}

.time {
    font-size: 12px;
    font-weight: 400;
    color: #ccc;
}

.time1 {
    font-size: 8px;
    font-weight: 150;
}

.play-btn {
    min-width: 150px;
    font-size: 20px;
    margin-right: 10px;
}

.play-btn i {
    font-size: 22px;
    position: relative;
    top: 1px;
}

.live-heading {
    color: #fff !important;
    font-size: 20px !important;
    font-weight: 400;
}

.live-heading i {
    color: #cc0000;
}

.row-heading.livenow {
    align-items: baseline;
}

.livenow .live-heading {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.player-banner {
    text-transform: uppercase;
}

.banner-header {
    background-color: #007eac;
    display: flex;
    gap: 40px;
    padding: 0.5rem 1rem;
}

.banner-body {
    color: #007eac;
    background-color: #fff;
    display: flex;
    gap: 40px;
    padding: 0.25rem 1rem;
    position: relative;
    letter-spacing: 1.5px;
}

.banner-body .local {
    background-color: #007eac;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 3px 1.5rem;
    font-weight: 500;
}

.banner-body p {
    font-weight: 500;
}

.banner-body p span {
    display: inline-block;
    margin-left: 20px;
}

.player-banner h3 {
    margin: 0;
}

.player-banner p {
    margin: 0;
}

:root {
    --g1: #7b61ff4d;
    --g2: #00c3ff60;
    --g3: #7ef9b34f;
}

.mving-box {
    position: absolute;
    animation: moveX 20s linear infinite;
    padding: 10px;
    border-radius: 30px;
    background:
        radial-gradient(1200px 600px at 10% 10%, color-mix(in srgb, var(--g1) 45%, transparent) 0%, transparent 35%),
        radial-gradient(1000px 500px at 90% 90%, color-mix(in srgb, var(--g2) 40%, transparent) 0%, transparent 35%),
        linear-gradient(135deg, var(--g1), var(--g2), var(--g3));
    background-blend-mode: screen;
}

@keyframes moveX {
    0% {
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    25% {
        left: 50%;
        top: 82%;
        transform: translateX(-50%);
    }

    50% {
        left: 80%;
        top: 50%;
        transform: translateX(-50%);
    }

    75% {
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

    100% {
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}

.poster-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.flex-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

.flex-box img {
    height: 60px;
}

.mving-box p {
    text-align: center;
    margin: 0;
}

#typewriter {
    white-space: nowrap;
    border-right: 3px solid #333;
    animation: blinkCursor 0.7s steps(1) infinite;
    color: #fff;
}

@keyframes blinkCursor {
    50% {
        border-color: transparent;
    }
}

.video-slider {
    position: relative;
    height: 100vh;
    background-color: #000000;
}

.video-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    object-fit: cover;
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.video-box .btn-control {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 100px;
    right: 100px;
    z-index: 5;
    color: #fff;
    font-size: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0;
}

.video-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* Corners */
        radial-gradient(circle at top left, rgba(0, 0, 0) 0%, transparent 50%),
        radial-gradient(circle at top right, rgba(0, 0, 0) 0%, transparent 50%),
        radial-gradient(circle at bottom left, rgba(0, 0, 0) 0%, transparent 50%),
        radial-gradient(circle at bottom right, rgba(0, 0, 0) 0%, transparent 50%),
        /* Sides */
        linear-gradient(to top, rgba(0, 0, 0) 0%, transparent 20%),
        linear-gradient(to bottom, rgba(0, 0, 0) 0%, transparent 20%),
        linear-gradient(to left, rgba(0, 0, 0) 0%, transparent 5%),
        linear-gradient(to right, rgba(0, 0, 0) 0%, transparent 20%);
    pointer-events: none;
    z-index: 2;
    border-radius: 8px;
}

.video-slider-text {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 5;
}

.video-slider-text h1 {
    font-size: 70px;
    max-width: 800px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Nanum Myeongjo", serif;

}

.video-slider-text p {
    font-size: 36px;
    max-width: 600px;
    text-transform: uppercase;
    font-family: "Quantico", sans-serif;
}

.video-slider-text .btn {
    font-size: 16px;
    min-width: unset;
    width: auto;
    line-height: 40px;
    padding: 0 20px;
}

.video-slider-text .btn i {
    position: relative;
    bottom: -2px;
}

.channel-list-item .btn-play {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: #007eac;
    border: 1px solid #007eac;
    width: 30px;
    height: 30px;
    padding: 0;
    line-height: 29px;
    border-radius: 50%;
}

.slick-slide {
    padding: 20px;
    /* spacing between slides */
}

.live-mark {
    font-size: 14px;
    margin-bottom: 10px;
}

.live-mark i {
    background: #cc0000;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    display: inline-block;
    font-size: 12px;
}

.slider-event-image {
    margin-bottom: 20px;
}

.slider-event-image img {
    max-width: 500px;
    max-height: 150px;
}

.play-btn.btn-outline {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.85);
}

.live i {
    color: #eb0000;
    /* font-size: 24px; */
}

.live i.sched {
    color: #2988c7;
    /* font-size: 24px; */
}

.details-pg {
    padding-top: 120px;
}

.carousel-indicators li {
    width: 12px;
    height: 12px !important;
    border-radius: 6px;
    background-clip: border-box;
    border: none;
}

.carousel-indicators li.active {
    width: 30px;
}

.platforms {
    background-color: #111;
    position: relative;
}

.platforms img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
}

.slick-track {
    margin-left: unset;
    margin-right: unset;
}

.fulscreen-player {
    padding: 0 !important;
    height: 100vh;
}