/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --roboto: 'Roboto', sans-serif;
    --inter: 'Inter', sans-serif;
    --lato: 'Lato', sans-serif;
    --poppins: 'Poppins', sans-serif;

    --theme: 229, 9, 20;
    --theme-secondary: 249, 115, 22;
    --dark-theme: 41, 41, 41;
    --white-light: #bfbfbf;

    --plyr-color-main: rgb(var(--theme));

    --title-fs: 40px;
    --sub-title-fs: 28px;
    --card-title-fs: 22px;
    --body-fs: 16px;
    --button-fs: 18px;
    --navigation-fs: 20px;
    --caption-fs: 14px;
    --small-btn-fs-size: 14px;

    --navbar-height: 88px;
}

body {
    font-family: var(--inter);
    font-size: var(--body-fs);
    line-height: 1.6;
    color: #333;
    background-color: rgb(var(--dark-theme));
    margin: 0;
    padding: 0;
    margin-top: var(--navbar-height);
}

.section {
    padding: 15px 0;
    margin-bottom: 25px;
}

.section-title {
    color: #ffffffff;
    font-size: var(--card-title-fs);
    line-height: 1.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-btn {
    color: #fff;
    opacity: 1;
    margin-bottom: 12px;
    font-size: var(--small-btn-fs-size);
    transition: 0.4s all ease-in-out;
}

.section-btn:hover {
    color: #fff;
    opacity: 0.8;
}

.text-white-light {
    color: var(--white-light) !important;
}

.theme-btn {
    color: #ffffff !important;
    padding: 10px 20px;
    text-align: center;
    border-radius: 8px;
    white-space: nowrap;
    text-transform: uppercase;
    background-size: 200% auto;
    transition: all 0.4s ease-in-out;
    font-size: var(--small-btn-fs-size);
    background-image: linear-gradient(to right, rgb(var(--theme)) 0%, rgb(var(--theme-secondary)) 100%);
}

.theme-btn:hover {
    background-position: right center;
}

.break {
    color: #4e4e4e;
    opacity: 1;
}

/* Switch Btn */
.custom-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 19px;
  }

  .custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .custom-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgb(var(--theme)), rgb(var(--theme-secondary)));
    border-radius: 30px;
    transition: 0.4s;
  }

  .custom-switch .slider:before {
    content: "";
    position: absolute;
    height: 15px;
    width: 15px;
    left: 2px;
    bottom: 2px;
    background: white;
    border-radius: 50%;
    transition: 0.4s;
  }

   .custom-switch input:checked + .slider {
    background: linear-gradient(90deg, rgb(var(--theme-secondary)), rgb(var(--theme)) );
  }

  .custom-switch input:checked + .slider:before {
    transform: translateX(21px);
  }

  .custom-switch .label-text {
    white-space: nowrap;
    position: absolute;
    right: 125%;
    top: -2px;
  }

  /* Radio Button */
  .custom-radio-group input {
    display: none;
  }

  .custom-radio-group label {
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    font-size: 16px;
  }

  .custom-radio-group label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: linear-gradient(90deg, rgb(var(--theme)), rgb(var(--theme-secondary)));
    border-radius: 50%;
    transition: 0.3s;
  }

  .custom-radio-group label:after {
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
  }

  .custom-radio-group input:checked + label:before {
    background: linear-gradient(90deg, rgb(var(--theme)), rgb(var(--theme-secondary)));
  }

  .custom-radio-group input:checked + label:after {
    transform: translateY(-50%) scale(1);
  }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: var(--navbar-height);
}

.navbar .navbar-brand {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 48px;
    color: rgb(var(--theme));
}

.navbar .navbar-brand span {
    color: rgb(var(--theme-secondary));
}

.navbar .nav-list a {
    position: relative;
    transition: 0.4s all ease-in-out;
}

.navbar .nav-list a:hover {
    color: rgb(var(--theme));
}

.navbar .nav-list a.active {
    color: rgb(var(--theme));
}

.navbar .nav-list a.subscribe {
    /* text-align: center; */
    color: #fff;
    background-color: rgb(var(--theme));
    /* padding: 10px 20px; */
    border-radius: 7px;
    transition: 0.4s all ease-in-out;
}

.navbar .nav-list a svg {
    fill: #fff;
    height: 25px;
    width: 25px;
    position: relative;
    top: -2px;
}

.navbar .nav-list a.subscribe::before {
    display: none;
}

@media (max-width: 767px) {
    .navbar .navbar-brand {
        font-size: 38px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-list a::before {
        content: '';
        width: 0;
        height: 2px;
        bottom: 6px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgb(var(--dark-theme));
        position: absolute;
        transition: 0.4s all ease-in-out;
    }

    .navbar .nav-list a:hover::before {
        width: 70%;
        background-color: rgb(var(--theme));
    }

    .navbar .nav-list a.active::before {
        width: 70%;
        background-color: rgb(var(--theme));
    }
}

@media (max-width: 991px) {
    .navbar .nav-list a::before {
        content: '';
        width: 2px;
        bottom: 5px;
        left: 0;
        top: 5px;
        background-color: rgb(var(--dark-theme));
        transition: 0.4s all ease-in-out;
        position: absolute;
    }

    .navbar .nav-list a.active::before {
        /* width: 70%; */
        background-color: rgb(var(--theme));
    }

    .navbar .nav-list a.nav-link {
        text-align: start !important;
    }

    .navbar .nav-list {
        padding-left: 8px;
        margin-bottom: 12px;
        border-radius: 6px;
        background-color: #d3d3d38a;
    }

    .navbar .nav-list:last-child {
        padding-left: 0;
        margin-bottom: 0;
    }
}


.movie-items .card-img-top {
    border-radius: 0;
}

.movie-items a {
    position: relative;
}

.user-content .movie-list .card {
    border-radius: 8px !important;
}

.user-content .movie-list a .badge,
.movie-items a .badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background-color: rgb(var(--theme));
    display: inline-block;
    z-index: 9;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: default;
}

.movie-item {
    text-align: center;
    overflow: hidden;
    position: relative;
}

.movie-item:before {
    content: '';
    background: rgba(var(--dark-theme), 0.7);
    /* background-color: linear-gradient(45deg, #ff7e5f, #feb47b); */
    width: 100%;
    height: 100%;
    transform: scaleY(0);
    opacity: 0.75;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.3s ease-in-out;
}

.movie-item:hover:before {
    transform: scaleY(1);
}

.movie-item img {
    width: 100%;
    height: 100%;
    max-height: 210px;
    object-fit: cover;
    transition: 0.4s all ease-in-out;
}

.movie-item-content {
    color:#fff;
    width:100%;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transition: all 0.6s ease;
}

.movie-item:hover .movie-item-content {
    opacity: 1;
}

.movie-item p {
    font-size: 14px;
}
.movie-item .title {
    color: #fff;
    font-weight: 400;
    line-height: 1.4em;
    margin: 0 0 10px;
    padding: 0 24px;
    text-transform: uppercase;
    font-family: var(--inter);
    font-size: 18px;
}

/* Plan Section */
.plan .card .card-header {
    background: linear-gradient(90deg, rgb(var(--theme)), rgb(var(--theme-secondary)));
    color: #fff;
    font-weight: 600;
    position: relative;
}

.plan .card .card-header .device {
    font-size: var(--card-title-fs);
}

.plan .card .card-header .regulation {
    font-size: var(--caption-fs);
}

.plan .feature-list .title {
    font-size: var(--caption-fs);
    font-weight: 500;
    line-height: 1.53846;
    color: rgb(118, 118, 118);
}

.plan .feature-list .details {
    margin-block: 0px;
    margin: 0px;
    padding: 0px;
    color: rgba(0, 0, 0, 0.7);
    font-size: 1rem;
    font-weight: 600;
}

.plan .card-body .feature-list:nth-last-child(2) {
    margin-bottom: 60px !important;
}

.plan .card .theme-btn {
    background-image: linear-gradient(to right, rgb(var(--theme)) 0%, rgb(var(--dark-theme)) 51%, rgb(var(--theme-secondary)) 100%);
}

.plan .card .btn-content {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/* Populer Plan (Ribbon) */
.ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
    transform: scale(0.5);
    display: block;

    top: -52px;
    right: -52px;
}

.ribbon::before,
.ribbon::after {
    position: absolute;
    z-index: -1;
    content: '';
    display: block;
    border: 5px solid #dddddd;

    border-top-color: transparent;
    border-right-color: transparent;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 225px;
    padding: 15px 0;
    background-color: #ffffff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    color: rgb(var(--theme));
    font: 700 18px/1 'Lato', sans-serif;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .2);
    text-transform: uppercase;
    text-align: center;

    left: -25px;
    top: 30px;
    transform: rotate(45deg);
}

.ribbon::before {
    top: 0;
    left: 0;
}

.ribbon::after {
    bottom: 0;
    right: 0;
}

/* Payments */
.payment .top-points {
    margin-left: 95px;
}

.payment .card.feature-items {
    position: relative;
    border-radius: 10px;
    background: linear-gradient(rgba(var(--dark-theme), 1), rgba(var(--dark-theme), 1)) padding-box,
                linear-gradient(90deg, rgb(var(--theme)), rgb(var(--theme-secondary))) border-box;
    border: 2px solid transparent;
}

.payment .card.feature-items p,
.payment .feature-items .show-price span,
.payment .payment-summary {
    color: #bfbfbf;
    font-size: var(--caption-fs);
}

.payment .feature-items .show-price strong {
    letter-spacing: 1px;
}

.payment .card {
    border: 1px solid #63636354;
}

.payment .pay-by .pay-header,
.payment .payment-summary .summary-header {
    border-bottom: 1px solid #63636354;
}

.payment .payement-method label img {
    max-height: 30px;
}

.payment #promo-code input {
    color: var(--white-light);
    border: 1px solid #63636354;
    border-radius: 8px;
    padding: 10px;
}

.payment #promo-code input::placeholder {
    color: var(--white-light);
    font-style: italic;
    opacity: 0.5;
}

.payment #promo-code .btn {
    padding: 12px 20px;
    border-radius: 8px !important;
}

.payment #promo-code input:focus {
    box-shadow: none;
    border: 1px solid #636363;
}

.payment .promo-code .before-text {
    display: inline-block;
}

.payment .promo-code .after-text {
    display: none;
}

.promo-code-active .promo-code .before-text {
    display: none;
}

.promo-code-active .promo-code .after-text {
    display: inline-block;
}

@media (max-width: 1650px) {
    .payment .top-points {
        margin-left: 60px;
    }
}

@media (max-width: 1525px) {
    .payment .top-points {
        margin-left: 40px;
    }
}

@media (max-width: 1399px) {
    .payment .top-points {
        margin-left: 0;
    }
}

@media (max-width: 1199px) {
    .payment .top-points {
        margin-left: 75px;
    }
}

@media (max-width: 991px) {
    .payment .top-points {
        margin-left: 180px;
    }
}

@media (max-width: 767px) {
    .payment .top-points {
        margin-left: 0;
    }

    .payment .top-points .col {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .payment .section-title {
        text-align: start !important;
    }

    .payment .top-points .col {
        text-align: start;
    }

    .payment .feature-items {
        margin-left: 0;
    }
}

/* Login / Registration / Contact Section */
.login > div,
.registration > div,
.contact > div {
    min-height: 70vh;
}

.login .card,
.registration .card,
.contact .card {
    color: #fff;
    background-color: #5a5a5a;
    position: relative;
    border-radius: 10px;
    background: linear-gradient(rgb(41 41 41), rgba(var(--dark-theme), 1)) padding-box, linear-gradient(90deg, rgb(var(--theme)), rgb(var(--theme-secondary))) border-box;
    border: 2px solid transparent;
}

.login .card input,
.registration .card input,
.contact .card input,
.contact .card textarea {
    padding: 12px 20px;
    box-shadow: none;
    border: 1px solid #63636354;
    background: rgba(255, 255, 255, 0.1);
}

.login .card input:focus,
.registration .card input:focus,
.contact .card input:focus,
.contact .card textarea {
    border: 1px solid #636363;
}

.login .card .theme-btn,
.registration .card .theme-btn,
.contact .card .theme-btn {
    padding: 12px 20px;
}

.login .card .forgot-password a,
.registration .card .forgot-password a {
    font-size: var(--small-btn-fs-size);
}

.login .card .divider,
.registration .card .divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 12px 0;
    justify-content: center;
}

.login .card .divider::before,
.login .card .divider::after,
.registration .card .divider::before,
.registration .card .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #63636354;
}

.login .card .divider span,
.registration .card .divider span {
    padding: 0 10px;
}

.login .card .btn.bg-white,
.registration .card .btn.bg-white,
.contact .card .btn.bg-white {
    font-weight: 500;
    color: rgb(var(--dark-theme));
    padding: 8px 20px;
    text-align: center;
    border-radius: 8px;
    white-space: nowrap;
    background-color: #ffffff !important;
    font-size: var(--small-btn-fs-size);
    background-image: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
}

.login .card .btn.bg-white img,
.registration .card .btn.bg-white img {
    width: 30px;
    height: 30px;
    margin-right: 7px;
    object-fit: contain;
}

.login .card ::placeholder,
.registration .card ::placeholder,
.contact .card ::placeholder {
    color: var(--white-light);
    font-style: italic;
    opacity: 0.5;
    font-weight: 300;
}

/* Forgot Password - Modal */
.forgot-modal .modal-content .card {
    color: #fff;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: rgb(var(--dark-theme));
}

.forgot-modal .modal-content .card input {
    padding: 12px 20px;
    box-shadow: none;
    border: 1px solid #63636354;
    background: rgba(255, 255, 255, 0.1);
}

.forgot-modal .modal-content .card input:focus {
    border: 1px solid #636363;
}

.forgot-modal .modal-content .card input::placeholder {
    color: var(--white-light);
    font-style: italic;
    opacity: 0.5;
}

/* About Section */
.privacy-policy,
.terms-of-service,
.about {
    color: #ffffff;
}

.privacy-policy h1,
.privacy-policy h2,
.privacy-policy h3,
.privacy-policy h4,
.privacy-policy h5,
.privacy-policy h6,
.terms-of-service h1,
.terms-of-service h2,
.terms-of-service h3,
.terms-of-service h4,
.terms-of-service h5,
.terms-of-service h6,
.about h1,
.about h2,
.about h3,
.about h4,
.about h5,
.about h6 {
    color: #ffffff !important;
}

.privacy-policy p,
.privacy-policy li,
.terms-of-service p,
.terms-of-service li,
.about p,
.about li {
    color: #e4e4e4 !important;
}

.privacy-policy a,
.terms-of-service a,
.about a {
    color: #ff7700 !important;
}

.about .profile-img {
    height: 300px;
    width: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.about .social-links {
    display: flex;
}

.about .social-links .social-item {
    background-color: #fff;
    display: inline-block;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 18px;
    color: rgb(var(--theme));
    padding-top: 3px;
    transition: 0.4s all ease-in-out;
}

.about .social-links .social-item.facebook i {
    color: #1877f2;
}

.about .social-links .social-item.linkedin i {
    color: #0077B5;
}

.about .social-links .social-item.instagram i {
    background: linear-gradient(45deg, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about .social-links .social-item.cloudefire i {
    color: rgb(var(--theme-secondary));
}

.about .social-links .social-item.sound-cloud i {
    color: #ff7700;
}

.about .social-links .social-item:hover {
    background-color: var(--white-light);
}

/* Video Details */
.video-details .top-txt  {
    color: var(--white-light);
    font-style: italic;
    font-size: 18px;
    margin-bottom: 5px;
}

.video-details .list-item {
    list-style: none;
    color: var(--white-light);
}

.video-details .list-item a {
    color: var(--white-light);
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

.video-details .list-item a:hover {
    color: #ffffff;
}

.video-details .details {
    color: var(--white-light);
}

.video-details .details h5 {
    font-size: 16px;
    color: var(--white-light);
}

/* .video-details .ratio::before {
    display: inline;
} */

.video-details .position-sticky {
    top: 100px;
}

/* Terms of Service / Privacy Policy */
.terms-of-service .section-title
.privacy-policy .section-title {
    font-size: 28px;
}

.breadcrumb {
    background: #3f3f3f;
}

.breadcrumb a,
.breadcrumb .breadcrumb-item {
    color: #ffffff;
}

.breadcrumb .breadcrumb-item.active {
    color: var(--white-light);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #ffffff;
}

/* User Dashboard */
.dashboard-content .user-sidebar {
    top: 115px;
    position: sticky;
}

.dashboard-content .user-sidebar,
.dashboard-content .user-content {
    min-height: 350px;
    background-color: #3f3f3f;
}

.dashboard-content .user-sidebar ul {
    min-height: 300px;
}

.dashboard-content .user-sidebar ul {
    list-style: none;
}

.dashboard-content .user-sidebar li a {
    background-image: none;
    margin-bottom: 12px;
    background-color: rgb(var(--dark-theme));
}

.dashboard-content .user-sidebar a.active {
    font-weight: 500;
    color: rgb(var(--theme)) !important;
    border: 2px solid transparent;
    background: linear-gradient(rgb(41 41 41), rgba(var(--dark-theme), 1)) padding-box, linear-gradient(90deg, rgb(var(--theme)), rgb(var(--theme-secondary))) border-box;
}

.dashboard-content .user-sidebar li:last-child a {
    position: absolute;
    bottom: -16px;
    width: 100%;
    margin-bottom: 0;
    background-image: none;
    background-color: rgb(var(--theme)) !important;
}

.dashboard-content .user-content .card {
    transform: translateY(0);
    transition: all 0.4s ease-in-out;
}

.dashboard-content .user-content .card:hover {
    transform: translateY(-2px);
}

.dashboard-content .user-content .card .icon {
    width: 50px;
    height: 50px;
    font-size: 40px;
    text-align: end;
    line-height: 50px;
    fill: rgb(var(--theme));
    color: rgb(var(--theme));
}

.dashboard-content .user-content .card {
}

.dashboard-content .user-content .card input,
.dashboard-content .user-content .card select {
    padding: 12px 20px;
    box-shadow: none;
    color: rgb(var(--dark-theme));
}

.dashboard-content .user-content .card input:focus,
.dashboard-content .user-content .card select:focus {
    border: 1px solid #636363;
}

.dashboard-content .user-content .card form .input-group .btn {
    background-color: #dee2e6;
    background-image: none;
}

.dashboard-content .user-content .card form .input-group .btn:hover {
    background-color: rgb(var(--dark-theme));
}

.dashboard-content .user-content .plan .card .theme-btn.active {
    font-weight: 500;
    cursor: default;
    opacity: 0.8;
    pointer-events: none;
    color: #ffffff !important;
    border: 2px solid transparent;
    background: linear-gradient(rgb(41 41 41), rgba(var(--dark-theme), 1)) padding-box, linear-gradient(90deg, rgb(var(--theme)), rgb(var(--theme-secondary))) border-box;
}

.dashboard-content .user-content .movie-card {
    background: rgb(var(--dark-theme));
    color: white;
    border-radius: 10px;
    overflow: hidden;
}

.dashboard-content .user-content .movie-card img {
    height: 200px;
    object-fit: cover;
}

.dashboard-content .user-content .movie-card .card-body {
    padding: 15px;
}

.dashboard-content .user-content .movie-card .btn {
    font-size: 14px;
    padding: 8px 12px;
    display: block;
    white-space: nowrap;
}

.dashboard-content .user-content .movie-card .btn.btn-remove {
    color: #ffffff;
    background-color: rgb(var(--theme));
}

@media (max-width: 1400px) and (min-width: 1200px) {
    .dashboard-content .user-content .movie-card .btn.theme-btn {
        margin-bottom: 8px;
    }
}

@media (max-width: 767px) and (min-width: 576px) {
    .dashboard-content .user-content .movie-card .btn.theme-btn {
        margin-bottom: 8px;
    }
}













/* Footer */
.footer {
    padding: 40px 0;
    background-color: #0d1117;
    color: #ffffff;
}

.footer h5 {
    font-size: 16px;
}

.footer ul {
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer li {
    display: inline-block;
    padding: 0 10px;
}

.footer ul li a {
    color: inherit;
    text-decoration: none;
    color: var(--white-light);
    position: relative;
    transition: 0.4s all ease-in-out;
}

.footer ul li a::before {
    content: " • ";
    left: -16px;
    position: absolute;
    color: var(--white-light);
}

.footer ul  li:first-child a::before {
    display: none;
}

.footer ul li a:hover {
    color: rgb(var(--theme));
}

.footer .social {
    text-align: center;
    padding-bottom: 25px;
}

.footer .social h5 {
    font-size: 16px;
}

.footer .social > a {
    font-size: 22px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin: 0 5px;
    color: inherit;
    opacity: 0.75;
}

.footer .social > a:hover {
    opacity: 0.9;
}

.footer .copyright {
    text-align: center;
    font-size: 16px;
    color: #aaa;
    margin-bottom: 0;
}

.footer .footer-break {
    margin: 30px 0;
    height: 1px;
    border-width:0;
    color:gray;
    background-color: #ffffff6b;
}

@media (max-width: 767px) {
    .footer h5 {
        margin-bottom: 3px;
    }
}
