@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap);

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "outline";
    src: url("font/segoeoutlineui.ttf") format("truetype");
}

:root {
    --font-primary: "Plus Jakarta Sans", sans-serif;
    --outline-font: "outline", sans-serif;
    --bs-primary: #ff0015;
    --bs-black: #000000;
    --bs-darkBrown: #393638;
    --bs-dark: #1d2025;
    --bs-white: #ffffff;
    --bs-darkFilter: #101011;
    --font-title: 36px;
    --bs-success: #d10b29;
}

body {
    font-family: var(--font-primary);
    /* font-family: var(--outline-font); */
    background-color: var(--bs-black);
    position: relative;
}

.modal-content{
    background-color: var(--bs-black);
    border: 1px solid var(--bs-darkBrown);

  

    .modal-header{
          border-color: var(--bs-dark) !important;
        h1,h5{
            color: var(--bs-white);
        }
    }

    .modal-footer{
          border-color: var(--bs-dark) !important;

    }
}

.qr-banner {
    background: linear-gradient(135deg, var(--bs-primary), #2c2c2e, var(--bs-dark));
    /* padding: 1rem; */
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(255, 0, 21, 0.3); 
}


/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


.pad-x {
    padding: 0 50px !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.bg-darkBrown {
    background-color: var(--bs-darkBrown) !important;
}

.btn-primary {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.btn-success {
    background-color: var(--bs-success);
    color: var(--bs-white);
    border-color: var(--bs-success) !important;

    &:hover {
        background-color: #d10b29cd;
    }
}

.btn-white {
    background-color: var(--bs-white) !important;
    color: var(--bs-primary) !important;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.form-label {
    font-size: 16px;
    color: var(--bs-white) !important;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.hov-text-primary {
    transition: all 0.3s ease;

    &:hover {
        color: var(--bs-primary) !important;
    }
}

ul {
    margin: 0;
}

a,
p {
    text-decoration: none;
    margin: 0;
}

li {
    list-style: none;
    margin: 0;
}

.fs-7 {
    font-size: 14px !important;
}

.fs-8 {
    font-size: 12px !important;
}

.shadow {
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2) !important;
}

.w-10px {
    width: 10px !important;
}

.w-40px {
    width: 40px !important;
}

.h-40px {
    height: 40px !important;
}

.h-100vh {
    height: 100vh !important;
}

.section-title {
    font-size: 20px;
}

.viewAllBtn {
    font-size: 15px;
    transition: all 0.3s ease-in-out;

    &:hover {
        color: var(--bs-white) !important;
    }
}

button {
    outline: none;
    border: none;
}

.nav-item {
    position: relative;
    padding: 0 10px;
    transition: all 0.3s ease-in-out;

    a {
        transition: all 0.3s ease-in-out;
    }

    &::after {
        content: "";
        position: absolute;
        bottom: -20px;
        left: 0;
        height: 5px;
        width: 0%;
        background-color: var(--bs-primary);
        transition: all 0.3s ease-in-out;
    }

    &:hover {
        a {
            color: var(--bs-primary) !important;
        }

        &::after {
            width: 100%;
        }
    }
}

.livTv {
    display: none;
    position: absolute;
    transition: all 0.3s ease-in-out;
}

.header {
    position: sticky;
    top: 0;
    z-index: 999999;
}

.mobile-navbar {
    position: absolute;
    width: 100%;
    z-index: 9999;

    ul {
        background-color: var(--bs-white);
        padding-left: 0;
        text-align: left;

        li {
            padding: 5px 0;
            border-bottom: 1px solid #ececec;

            a {
                padding-left: 12px;
                font-size: 14px;
                color: var(--bs-dark) !important;
                font-weight: 700 !important;
            }
        }
    }
}

.mobile-navbar {
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nav-link.active {
    color: var(--bs-primary) !important;
}

.nav-item {
    &.active::after,
    &:hover::after {
        width: 100%;
    }
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    height: 5px;
    width: 100%;
    background-color: var(--bs-primary);
}

.footer {
    background: url("../img/footer-bg-item.png"), #101011;
    padding: 16px 0px;
}

.footer-heading {
    font-size: 20px;
    color: var(--bs-white);
    margin-bottom: 8px;
    font-weight: 500;
    position: relative;

    &::after {
        content: "";
        position: absolute;
        bottom: -7px;
        background-color: var(--bs-primary);
        width: 15%;
        height: 3px;
        left: 0;
        border-radius: 30px;
    }
}

.soical-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--bs-white);
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    color: var(--bs-black);

    &:hover {
        background-color: var(--bs-primary);
        color: var(--bs-white);
    }
}

#heroCarsouel .splide__arrow {
    background-color: var(--bs-white);
    opacity: 0.5;
    transition: all 0.3s ease-in-out;

    svg {
        fill: var(--bs-black);
    }

    &:hover {
        opacity: 1;
    }
}

#latestMovies .splide__arrow,
#upcomingcarsouel .splide__arrow,
#topMovies .splide__arrow,
#actionMovies .splide__arrow,
#dramaMovies .splide__arrow,
#romanceMovies .splide__arrow,
#youMayLike .splide__arrow,
#Popular-shows .splide__arrow {
    background-color: transparent;
    border: 1px solid var(--bs-white);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    svg {
        fill: var(--bs-white);
    }
    &:hover {
        background-color: var(--bs-black);
    }
}

.splide__arrow--next {
    right: -1em !important;
}

.splide__arrow--prev {
    left: -1em !important;
}

#LiveTv .splide__arrow {
    background-color: var(--bs-primary);
    opacity: 1;
    transition: all 0.3s ease-in-out;

    svg {
        fill: var(--bs-white);
    }

    &:hover {
        background-color: var(--bs-black);
    }
}

.splide__slide {
    position: relative;
    margin-right: 14px !important;

    .herocarousel-details {
        position: absolute;
        bottom: 0px !important;
        left: 40px;
        text-align: left;

        h4 {
            color: var(--bs-white);
            font-size: var(--font-title);
            /* margin-bottom: 10px; */
            font-size: 18px;
            font-weight: 500 !important;
        }
    }

    .hero-carsoul-image {
        height: 240px;
        width: 100%;
        object-fit: fill;
        border-radius: 10px;
    }
}

#latestMovies {
    .splide-card {
        width: 100%;
        padding: 0 40px;
        height: auto;
        height: 100%;
        overflow: hidden;
        border-radius: 5px;
        position: relative;
        overflow: hidden;
        .rating-overlay {
            top: 10px;
            right: 10px;
            background-color: rgba(0, 0, 0, 0.5);
            width: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 30px;
            border-radius: 50%;
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            z-index: 10;
        }
        .count-outine {
            position: absolute;
            bottom: 30px;
            left: -3px;
            font-size: 100px;
            font-family: var(--outline-font);
            font-weight: 400;
            color: var(--bs-black);
            -webkit-text-stroke: 1px var(--bs-white);
            z-index: 1;
            user-select: none;
            pointer-events: none;
            text-shadow: 1px 0 black, -1px 0 black, 0 1px black, 0 -1px black;
        }
        .premium {
            position: absolute;
            top: 8px;
            /* right: 8px; */
            margin-left: 8px;
            width: 30px;
            height: 30px;
            padding: 7px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--bs-black);
            /* background-color: var(--bs-primary); */
            z-index: 10;
            svg {
                width: 16px;
                height: 16px;
            }

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        img {
            width: 100%;
            height: 100%;
            /* object-fit: fill; */
            transition: all 0.8s ease;
            position: relative;
            z-index: 5; 
        }

        span {
            position: absolute;
            bottom: 0;
            width: calc(100% - 60px);
            left: 50%;
            transform: translate(-50%);
            background-color: var(--bs-primary);
            color: var(--bs-white);
            padding: 7px 12px;
            font-size: 12px;
            font-weight: 700;
            text-align: center;
            opacity: 0;
            text-transform: capitalize;
            transition: all 0.5s ease;
            z-index: 10;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        &::after {
            content: "";
            width: 100%;
            height: 100%;
            background-color: var(--bs-black);
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            transition: all 0.5s ease;
        }

        &:hover {
            &::after {
                opacity: 0.2;
            }

            img {
                scale: 1.1;
            }
            span {
                opacity: 1;
            }
        }
    }
}

#upcomingcarsouel,
#topMovies,
#actionMovies,
#dramaMovies,
#romanceMovies,
#youMayLike {
    .splide-card {
        width: 100%;
        height: auto;
        height: 100%;
        overflow: hidden;
        border-radius: 5px;
        position: relative;
        overflow: hidden;
        .rating-overlay {
            top: 10px;
            right: 10px;
            background-color: rgba(0, 0, 0, 0.5);
            width: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 30px;
            border-radius: 50%;
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            z-index: 10;
        }

        .premium {
            position: absolute;
            top: 8px;
            /* right: 8px; */
            margin-left: 8px;
            width: 30px;
            height: 30px;
            padding: 7px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--bs-black);
            /* background-color: var(--bs-primary); */
            z-index: 10;
            svg {
                width: 16px;
                height: 16px;
            }

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        img {
            width: 100%;
            height: 100%;
            /* object-fit: fill; */
            transition: all 0.8s ease;
        }

        span {
            position: absolute;
            bottom: 0;
            width: 100%;
            left: 0;
            background-color: var(--bs-primary);
            color: var(--bs-white);
            padding: 7px 12px;
            font-size: 12px;
            font-weight: 700;
            text-align: center;
            opacity: 0;
            text-transform: capitalize;
            transition: all 0.5s ease;
            z-index: 10;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        &::after {
            content: "";
            width: 100%;
            height: 100%;
            background-color: var(--bs-black);
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            transition: all 0.5s ease;
        }

        &:hover {
            &::after {
                opacity: 0.2;
            }

            img {
                scale: 1.1;
            }
            span {
                opacity: 1;
            }
        }
    }
}

#LiveTv {
    .splide-card {
        height: 140px;
        overflow: hidden;
        border-radius: 5px;
        position: relative;

        .premium {
            position: absolute;
            top: 8px;
            left: 8px;
            /* width: 30px;
            height: 30px;
            padding: 3px;
            border-radius: 50%; */
            display: flex;
            align-items: center;
            justify-content: center;
            /* background-color: var(--bs-primary); */
            z-index: 10;
        }

        img {
            width: 100%;
            height: 100%;
            transition: all 0.8s ease;
            object-fit: cover;
        }

        span {
            position: absolute;
            bottom: 0;
            width: 100%;
            left: 0;
            background-color: var(--bs-primary);
            color: var(--bs-white);
            padding: 7px 12px;
            font-size: 16px;
            font-weight: 700;
            text-align: center;
            opacity: 0;
            text-transform: capitalize;
            transition: all 0.5s ease;
            z-index: 10;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        &::after {
            content: "";
            width: 100%;
            height: 100%;
            background-color: var(--bs-black);
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            transition: all 0.5s ease;
        }

        &:hover {
            &::after {
                opacity: 0.2;
            }

            img {
                scale: 1.1;
            }

            span {
                opacity: 1;
            }
        }
    }
}

.popularPlaylistCard {
    width: 150px;
}

.moivePageCard {
    margin-bottom: 1rem;
    /* width: 160px; */

    .movie-card {
        height: auto;

        img {
            object-fit: fill;
            width: none;
            height: none;
        }

        span {
            font-size: 12px;
            font-weight: 500;
        }
    }
}

/* ======= movie page ======= */

.filteration-main {
    background-color: var(--bs-darkFilter);
    padding: 15px 20px;
    border-radius: 5px;
}

.mainFilterMoives {
    display: flex;
    justify-content: start;
    align-items: center;
}

.cus-fil-disabled {
    background-color: #29282b;
    font-size: 15px;
    color: var(--bs-white);
    text-transform: uppercase;
    text-align: center;
    padding: 9px 15px 8px 15px;
    font-weight: 700;
    border-radius: 4px;
    margin: 5px 0;
    display: inline-block;
}

.cus-filter {
    background-color: var(--bs-primary);
    font-size: 15px;
    color: var(--bs-white);
    text-transform: uppercase;
    text-align: center;
    padding: 9px 15px 8px 15px;
    font-weight: 700;
    border-radius: 4px;
    margin: 5px 0;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.custom-dropdown {
    width: max-content;
    cursor: pointer;
    position: relative;
}

.dropdown-list {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    background: var(--bs-white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
    border-radius: 5px;
    width: 100%;
    text-transform: capitalize;
}

.custom-dropdown.active .dropdown-list {
    max-height: 300px;
    opacity: 1;
}

.dropdown-list ul {
    margin: 0;
}

.dropdown-list ul li {
    padding: 7px 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdown-list ul li:first-child {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

.dropdown-list ul li:hover {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

.dropdown-list ul li.active {
    background-color: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.chevron i {
    transition: transform 0.3s ease;
}

.custom-dropdown.active .chevron i {
    transform: rotate(180deg);
}

.movie-card {
    height: 350px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;

    img {
        width: 100%;
        height: 100%;
        transition: all 0.8s ease;
        object-fit: cover;
    }

    .premium {
        position: absolute;
        top: 8px;
        margin-left: 8px;
        width: 30px;
        height: 30px;
        padding: 7px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--bs-primary);
        z-index: 10;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    &::after {
        content: "";
        width: 100%;
        height: 100%;
        background-color: var(--bs-black);
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 0.5s ease;
    }

    span {
        position: absolute;
        bottom: 0;
        width: 100%;
        left: 0;
        background-color: var(--bs-primary);
        color: var(--bs-white);
        padding: 7px 12px;
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        opacity: 0;
        text-transform: capitalize;
        transition: all 0.5s ease;
        z-index: 10;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    &:hover {
        &::after {
            opacity: 0.2;
        }

        img {
            scale: 1.1;
        }

        span {
            opacity: 1;
        }
    }
}

.pagination {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

/* ======= Shows page ======= */

.show-card {
    .movie-card {
        margin-bottom: 10px;
        height: 300px;
        border-radius: 8px;
    }

    .outer-span {
        display: block;
        color: var(--bs-white);
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s ease;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    &:hover {
        .outer-span {
            color: var(--bs-primary);
        }
    }
}

.you_may_also_like {
    background-color: var(--bs-darkFilter);
    border-radius: 5px;
    padding: 20px;

    h3 {
        color: var(--bs-white);
        font-size: 22px;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .movie-card {
        height: 250px;

        span {
            font-size: 14px;
        }
    }
}

.video-details-movie {
    h2 {
        font-size: 26px;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: var(--bs-white);
        margin: 0 0 10px 0;

        a {
            color: var(--bs-white);
            transition: all 0.3s ease;
            font-weight: 600;

            &:hover {
                color: var(--bs-primary);
            }
        }
    }

    .categories {
        ul {
            display: flex;
            align-items: center;
            justify-content: start;
            padding-left: 0;
            margin: 0 0 10px 0;

            li {
                border-left: 1px solid var(--bs-white);
                padding: 0 20px;

                a {
                    color: var(--bs-white);
                    transition: all 0.3s ease-in-out;

                    &:hover {
                        color: var(--bs-primary);
                    }
                }

                &:first-child {
                    border: 0;
                    padding-left: 0;
                }
            }
        }
    }

    .watch-trailer,
    .watch-movie {
        text-transform: capitalize;
    }

    /* h3{
      color: var(--bs-white);
      font-size: 16px;
      font-weight: 600;
      display: block;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    } */
    p {
        font-size: 16px;
        font-weight: 500;
        color: var(--bs-white);
    }

    .movie-des {
        font-size: 16px;
        font-weight: 500;
        color: var(--bs-white);
        -webkit-line-clamp: 9;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* ======= login wrapper ======= */

.login-wrapper {
    background-image: url("../../img/login-signup-bg-img.jpg");
    background-color: rgba(0, 0, 0, 0.833);
    background-blend-mode: overlay;
}

.form-main {
    max-width: 450px !important;
    width: 450px;
}

.login-form-main {
    box-shadow: 0 0px 25px rgba(255, 255, 255, 0.06);
    border: 6px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.6);
}

.form-title-item {
    font-size: 26px;
    font-weight: 700;
    padding-bottom: 8px;
    position: relative;
    color: var(--bs-white);

    &::after {
        content: "";
        position: absolute;
        bottom: -5px;
        background-color: var(--bs-primary);
        height: 4px;
        width: 15%;
        left: 0;
        border-radius: 30px;
    }
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 20px 10px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: #e4e4e4;
    background: #101011;
    border: 2px solid #242426;
    border-radius: 4px;
}

.form-control:focus {
    color: #f2f2f2;
    border-color: rgba(255, 0, 21, 0.8);
    outline: 0;
    box-shadow: 0 0 0 0.1rem rgba(0, 123, 255, 0.25);
    background: #101011;
}

.form-control::placeholder {
    color: #777369;
}

.forgot-password {
    a {
        color: var(--bs-primary);
    }

    &:hover {
        text-decoration: underline;
        text-decoration-color: var(--bs-primary);
    }
}

.form-check-input:checked {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.form-check-input:focus {
    box-shadow: none !important;
}

/* ======= Subscription Plan ======= */

.breadcrumb-section {
    height: 160px;
    background-image: url("../img/breadcrum-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.646);
    background-blend-mode: overlay;
}

.breadcrumb-main {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.plan-card {
    border: 2px solid red;
    background: url("../img/plan_shape_bg.png"), var(--bs-darkFilter);
    border: 0px solid #242426;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    background-size: cover;
    margin-bottom: 25px;

    .btn {
        transition: all 0.3s ease;

        &:hover {
            background-color: var(--bs-black) !important;
            color: var(--bs-white) !important;
            border-color: var(--bs-black) !important;
            box-shadow: 0 3px 18px 0 rgba(255, 255, 255, 0.2);
        }
    }
}

.card-price {
    position: relative;

    &::after {
        content: "";
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 60%;
        background-color: var(--bs-primary);
        height: 4px;
        border-radius: 20px;
    }
}

.coupen-card {
    border: 2px solid red;
    background: url("../img/plan_shape_bg.png"), var(--bs-darkFilter);
    border: 0px solid #242426;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 40px;
    background-size: cover;
    margin-bottom: 25px;
}

/* ======= About us ======= */

.about-us {
    background-color: var(--bs-darkFilter);
    border: 0px solid #242426;
    border-radius: 6px;
    padding: 30px;
    margin-bottom: 20px;

    p {
        font-size: 16px;
        line-height: 25px;
        font-weight: 600;
        color: #c2c0c0;
        margin-bottom: 15px;
    }
}

.details-item-block {
    h2 {
        color: var(--bs-white);
    }

    h4 {
        color: var(--bs-white);
    }

    ul {
        padding-left: 0;
        margin-bottom: 5px;

        li {
            color: var(--bs-white);
        }
    }
}

/* ======= Contact us ======= */

.contact-us {
    background-color: var(--bs-darkFilter);
    border: 0px solid #242426;
    border-radius: 6px;
    padding: 30px;
    margin-bottom: 20px;

    .form-control {
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.5;
        color: #e4e4e4;
        padding: 0.7rem 0.96rem;
        height: inherit;
        background: #1b1b1c;
        border: 2px solid #2e2e31;
        border-radius: 4px;
        width: 100%;
    }

    .btn {
        transition: all 0.3s ease;
        border-radius: 5px !important;

        &:hover {
            background-color: var(--bs-black) !important;
            color: var(--bs-white) !important;
            border-color: var(--bs-black) !important;
            box-shadow: 0 3px 18px 0 rgba(255, 255, 255, 0.2);
            border-radius: 0 !important;
        }
    }
}

.contact-form {
    p {
        font-size: 16px;
        line-height: 25px;
        font-weight: 600;
        color: #c2c0c0;
        margin-bottom: 15px;
    }
}

.plyr {
    --plyr-color-main: var(--bs-primary);
}

.liveChannel-main {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
}

.card-liveTv {
    columns: span 1;
}

.liveTv-newCard {
    position: relative;
    .img-conatiner {
        height: 250px;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .tv-channel-name {
        position: absolute;
        bottom: 0;
        width: 100%;
        left: 0;
        background-color: var(--bs-primary);
        color: var(--bs-white);
        padding: 7px 12px;
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        opacity: 0;
        text-transform: capitalize;
        transition: all 0.5s ease;
        z-index: 10;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .rating-overlay {
        top: 10px;
        right: 10px;
        background-color: rgba(0, 0, 0, 0.5);
        width: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 30px;
        border-radius: 50%;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        z-index: 10;
    }

    .premium {
        position: absolute;
        top: 8px;
        /* right: 8px; */
        margin-left: 8px;
        width: 30px;
        height: 30px;
        padding: 7px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--bs-black);
        /* background-color: var(--bs-primary); */
        z-index: 10;
        svg {
            width: 16px;
            height: 16px;
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    &::after {
        content: "";
        width: 100%;
        height: 100%;
        background-color: var(--bs-black);
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 0.5s ease;
    }
    &:hover {
        .tv-channel-name {
            opacity: 1;
        }

        &::after {
            opacity: 0.3;
        }
    }
}

@media screen and (max-width: 2000px) {
    .liveChannel-main {
        grid-template-columns: repeat(12, 1fr);
    }

    .liveTv-newCard {
        .img-conatiner {
            height: 200px;
        }
    }
}

@media screen and (max-width: 1800px) {
    .liveChannel-main {
        grid-template-columns: repeat(10, 1fr);
    }
}

@media screen and (max-width: 1600px) {
    .liveChannel-main {
        grid-template-columns: repeat(8, 1fr);
    }

    .liveTv-newCard {
        .img-conatiner {
            height: 150px;
        }
    }
}

@media screen and (max-width: 1400px) {
    .liveChannel-main {
        grid-template-columns: repeat(7, 1fr);
    }
}

@media screen and (max-width: 1200px) {
    .liveChannel-main {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .liveChannel-main {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .liveChannel-main {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .liveChannel-main {
        grid-template-columns: repeat(3, 1fr);
    }

    .liveTv-newCard {
        .img-conatiner {
            height: 130px;
        }
    }

    .tv-channel-name {
        font-size: 13px !important;
    }
}

@media screen and (max-width: 400px) {
    .liveChannel-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 1050px) {
    .popularPlaylistCard {
        width: 120px;
    }
}

@media screen and (max-width: 450px) {
    .popularPlaylistCard {
        width: 80px;
    }

    .livTv {
        display: none !important;
    }

    .sports {
        display: none !important;
    }

    .splide__slide {
        position: relative;
        margin-right: 14px !important;

        .hero-carsoul-image {
            height: 160px;
            width: 100%;
            object-fit: fill;
            border-radius: 10px;
        }
    }

    .section-title {
        font-size: 16px;
    }

    .viewAllBtn {
        font-size: 13px;
        transition: all 0.3s ease-in-out;

        &:hover {
            color: var(--bs-white) !important;
        }
    }

    #latestMovies,
    #upcomingcarsouel,
    #topMovies,
    #actionMovies,
    #dramaMovies,
    #romanceMovies,
    #youMayLike {
        .splide-card {
            .rating-overlay {
                top: 5px;
                right: 5px;
                background-color: rgba(0, 0, 0, 0.5);
                width: 25px;
                display: flex;
                align-items: center;
                justify-content: center;
                height: 25px;
                border-radius: 50%;
                color: #fff;
                font-size: 10px;
                font-weight: 600;
                z-index: 10;
            }
        }
    }

    #LiveTv {
        .splide-card {
            height: 80px;

            span {
                font-size: 13px;
            }
        }
    }

    .movie-card {
        height: 170px;

        span {
            font-size: 13px;
        }
    }

    .show-card {
        .outer-span {
            font-size: 13px;
        }
    }
    .login-form-main {
        padding: 40px 25px;
        width: 100%;
    }

    .breadcrumb-section {
        .container {
            display: flex;
            align-items: center;
        }
    }

    .breadcrumb-main {
        text-align: center;
        display: block;
        height: auto;
        margin: 0 auto;
    }

    .about-us {
        padding: 20px;
    }

    .contact-us {
        padding: 20px;
    }

    .video-details-movie {
        h2 {
            font-size: 20px;
            display: block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            color: var(--bs-white);
            margin: 0 0 10px 0;
        }
    }

    .filteration-main {
        background-color: transparent;
        padding: 0px;
        border-radius: 0px;
    }

    .cus-filter {
        background-color: var(--bs-primary);
        font-size: 12px;
        color: var(--bs-white);
        text-transform: uppercase;
        text-align: center;
        padding: 10px 8px;
        font-weight: 700;
        border-radius: 4px;
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 5px;
        width: 100%;
    }

    .dropdown-list ul li {
        padding: 5px 10px;
        font-weight: 500;
        cursor: pointer;
        font-size: 12px;
        transition: all 0.2s ease;
    }

    .dropdown-list ul li:first-child {
        background-color: var(--bs-primary);
        color: var(--bs-white);
    }

    .cus-fil-disabled {
        background-color: #29282b;
        font-size: 12px;
        color: var(--bs-white);
        text-transform: uppercase;
        text-align: center;
        padding: 9px 15px 8px 15px;
        font-weight: 500;
        border-radius: 4px;
        margin: 0px;
        display: block;
        width: 100%;
    }

    .mainFilterMoives {
        justify-content: center;
    }
}

@media screen and (max-width: 300px) {
    html {
        display: none;
    }
}

.watch-movie {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.d-none {
    display: none !important;
}

.video-container {
    width: 100%;
}
/* 
.searchInputForm {
    position: relative;
}

.modalSearchOnType {
    position: absolute;
    top: 100%;
    left: 0;
    height: 0;
    width: 100%;
    overflow-x: hidden;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: height 0.3s ease-in-out;
    max-height: 400x;
} */

.serach-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
}

.searchInputNavbar button {
    border: none;
    background: none;
    color: #8b8ba7;
}

/* styling of whole input container */
.searchInputNavbar {
    --timing: 0.3s;
    --width-of-input: 500px;
    --height-of-input: 44px;
    --border-height: 2px;
    --input-bg: #fff;
    --border-color: var(--bs-primary);
    --border-radius: 30px;
    --after-border-radius: 1px;
    position: relative;
    width: var(--width-of-input);
    height: var(--height-of-input);
    display: flex;
    align-items: center;
    padding-inline: 0.8em;
    background: var(--input-bg, #fff);
    border-bottom: 3px solid var(--bs-primary);
}

/* styling of Input */
.searchInput {
    font-size: 16px;
    background-color: transparent;
    width: 100%;
    height: 100%;
    padding-inline: 0.5em;
    padding-block: 0.7em;
    border: none;
    font-family: var(--font-primary);
}

/* styling of animated border */
.searchInputNavbar:before {
    content: "";
    position: absolute;
    background: var(--bs-primary);
    transform: scaleX(0);
    transform-origin: center;
    width: 100%;
    height: var(--border-height);
    left: 0;
    bottom: 0;
    border-radius: 1px;
    transition: transform var(--timing) ease;
}

/* Hover on Input */
.searchInputNavbar:focus-within {
    border-radius: var(--after-border-radius);
}

.searchInput:focus {
    outline: none;
}

/* here is code of animated border */
.searchInputNavbar:focus-within:before {
    transform: scale(1);
}

/* styling of close button */
/* == you can click the close button to remove text == */
.searchReset {
    border: none;
    background: none;
    opacity: 0;
    visibility: hidden;
}

/* close button shown when typing */
.searchInput:not(:placeholder-shown) ~ .reset {
    opacity: 1;
    visibility: visible;
}

/* sizing svg icons */
.searchInputNavbar svg {
    width: 17px;
    margin-top: -3px;
}

@media screen and (max-width: 1270px) {
    .searchInputNavbar {
        width: 400px;
    }

    .navbarUl {
        padding-left: 0px;
    }
}

@media screen and (max-width: 1170px) {
    .searchInputNavbar {
        width: 300px;
    }
}

@media screen and (max-width: 992px) {
    .navLinks {
        display: none !important;
    }

    .pad-x {
        padding: 0 30px !important;
    }
}

.flex-shrink-inherit {
    flex-shrink: inherit;
}

.langageSelect {
    width: 200px !important;
}

@media screen and (max-width: 680px) {
    .searchInputForm {
        display: none !important;
    }

    .loginBtn {
        display: none !important;
    }

    .searchInputNavbar {
        width: 100%;
    }

    .pad-x {
        padding: 0 16px !important;
    }

    #latestMovies .splide__arrows,
    #upcomingcarsouel .splide__arrows,
    #topMovies .splide__arrows,
    #actionMovies .splide__arrows,
    #dramaMovies .splide__arrows,
    #romanceMovies .splide__arrows,
    #youMayLike .splide__arrows,
    #Popular-shows .splide__arrow {
        display: none !important;
    }
}

@media screen and (min-width: 680px) {
    .offcanvasFooter {
        display: none !important;
    }

    .offcanvasInputSearch {
        display: none !important;
    }
}

.buttonPrimary {
    background-color: var(--bs-primary);
    color: var(--bs-white);
    width: 100%;
    height: 44px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid var(--bs-primary);
    text-transform: uppercase;
}

.buttonPrimary:hover {
    background-color: transparent;
    color: var(--bs-primary);
}

.buttonPrimaryOnHover {
    background-color: transparent;
    color: var(--bs-primary);
    width: 100%;
    height: 44px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid var(--bs-primary);
    text-transform: uppercase;
}

.buttonPrimaryOnHover:hover {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

#heroCarsouel .splide__pagination {
    bottom: -1.5em !important;
    justify-content: start !important;
}

.artplayer-app,
.art-video-player {
    height: 580px !important;
    width: 100% !important;
    /* border: 2px solid red; */
}

.art-poster {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1900px) {
    .artplayer-app,
    .art-video-player {
        height: 550px !important;
    }
}

@media screen and (max-width: 1500px) {
    .artplayer-app,
    .art-video-player {
        height: 500px !important;
    }
}

@media screen and (max-width: 1200px) {
    .artplayer-app,
    .art-video-player {
        height: 400px !important;
    }
}

@media screen and (max-width: 800px) {
    .artplayer-app,
    .art-video-player {
        height: 350px !important;
    }
    .movie-player-main {
        .pad-x {
            padding: 0 !important;
        }
    }
}

@media screen and (max-width: 480px) {
    .artplayer-app,
    .art-video-player {
        height: 250px !important;
    }

    .art-control-pip {
        display: none !important;
    }
}

/* HTML: <div class="loader"></div> */
.moives-Loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    -webkit-mask: conic-gradient(from 15deg, #0000, #000);
    animation: l26 1s infinite steps(12);
}

.moives-Loader,
.moives-Loader:before,
.moives-Loader:after {
    background: radial-gradient(
                closest-side at 50% 12.5%,
                var(--bs-primary) 96%,
                #0000
            )
            50% 0/20% 80% repeat-y,
        radial-gradient(closest-side at 12.5% 50%, var(--bs-primary) 96%, #0000)
            0 50%/80% 20% repeat-x;
}

.moives-Loader:before,
.moives-Loader:after {
    content: "";
    grid-area: 1/1;
    transform: rotate(30deg);
}

.moives-Loader:after {
    transform: rotate(60deg);
}

@keyframes l26 {
    100% {
        transform: rotate(1turn);
    }
}

.rating-overlay {
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.movie-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(11, 1fr);
    .moivePageCard {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 2000px) {
    .movie-grid {
        grid-template-columns: repeat(11, 1fr);
    }
}

@media screen and (max-width: 1800px) {
    .movie-grid {
        grid-template-columns: repeat(10, 1fr);
        .moivePageCard {
            grid-template-columns: repeat(1, 1fr);
        }
    }
}

@media screen and (max-width: 1600px) {
    .movie-grid {
        grid-template-columns: repeat(8, 1fr);
        .moivePageCard {
            grid-template-columns: repeat(1, 1fr);
        }
    }
}

@media screen and (max-width: 1400px) {
    .movie-grid {
        grid-template-columns: repeat(7, 1fr);
        .moivePageCard {
            grid-template-columns: repeat(1, 1fr);
        }
    }
}

@media screen and (max-width: 1200px) {
    .movie-grid {
        grid-template-columns: repeat(6, 1fr);
        .moivePageCard {
            grid-template-columns: repeat(1, 1fr);
        }
    }
}

@media screen and (max-width: 992px) {
    .movie-grid {
        grid-template-columns: repeat(4, 1fr);
        .moivePageCard {
            grid-template-columns: repeat(1, 1fr);
        }
    }
}

@media screen and (max-width: 768px) {
    .movie-grid {
        grid-template-columns: repeat(3, 1fr);
        .moivePageCard {
            grid-template-columns: repeat(1, 1fr);
        }
    }
}

@media screen and (max-width: 375px) {
    .movie-grid {
        grid-template-columns: repeat(2, 1fr);
        .moivePageCard {
            grid-template-columns: repeat(1, 1fr);
        }
    }
}

@media (min-width: 768px) {
    #userContainer:hover #userDropdown {
        display: block !important;
    }
}
