/*============================================================================
  #Override Stylesheet
  #Add Custom Styles Here
==============================================================================*/

 
 
 
 
  @import url('https://fonts.cdnfonts.com/css/netflix-font');


body , h1, h2, h3, h4, h5, h6, .btn, p, a {
    font-family: Netflix Sans, Helvetica Neue, Segoe UI, Roboto, Ubuntu, sans-serif !important;
}

p.card__title.text span {
    font-weight: 400 !important;
}

p.card__title.text {
    margin-bottom: 10px;
    text-align:left;
}



        .text {
            font-size: 0.6rem;
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            .text {
                font-size: 0.8rem;
            }
        }

        @media (min-width: 1024px) {
            .text {
                font-size: 1rem;
            }
        }

        .text--bold {
            font-weight: 700;
            margin-right: 0.3rem;
        }

        .text--muted {
            color: grey;
        }

        .text--white {
            color: white;
        }

        .text--category {
            font-size: 0.8rem;
            margin-bottom: 1rem;
        }

            .text--category {
                font-size: 1rem;
            }

        @media (min-width: 1024px) {
            .text--category {
                font-size: 1.2rem;
            }
        }

        .flex {
            display: flex;
        }

        .justify-between {
            justify-content: space-between;
        }

        .items-center {
            align-items: center;
        }

        .cards {
            display: flex;
            gap: 0.75rem;
        }



.wrapper {
    position: relative;
}

.wrapper__front {
    transition: all 400ms ease-out;
    transition-delay: 300ms;
}

.wrapper__back {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    width: 100%; /* Set initial width to 100% */
    transform: scale(1) translateY(0); /* Start with the original scale and position */
    transition: opacity 0.5s ease 0.3s, visibility 0.5s ease 0.3s, transform 0.5s ease 0.3s, width 0.5s ease 0.3s;
    z-index: 999;
}

@media (min-width: 1024px) {
    .wrapper__back {
        width: 100%;
        top: 0%;
        left:3%;
    }
}

.hover:hover .wrapper__front {
    /* opacity: 0; */ /* Commented out for now if not needed */
    transform: scale(1) translateY(-10%); /* Scale up and move up */
    transition: opacity 0.6s ease 0.6s, visibility 0.5s ease 0.5s, transform 0.5s ease 0.5s, width 0.5s ease 0.5s;
}

.hover:hover .wrapper__back {
    opacity: 1;
    visibility: visible;
    // width: 150%; /* Zoom in */
    transform: scale(1.26) translateY(-13%); /* Scale up and move up */
    transition: opacity 0.5s ease 0.3s, visibility 0.5s ease 0.3s, transform 0.5s ease 0.3s, width 0.5s ease 0.3s;
}

@media (min-width: 1024px) {
    .hover:hover .wrapper__back {
        width: 92%; /* Adjust zoom for larger screens */
    }
}

.card {
    overflow: hidden;
    background-color: #141414;
    box-shadow: 0 0 10px 1px #0a0a0a;
    border-radius: 4px;
}

.card__body {
    padding: 1rem 0.75rem;
}








        .card__icon {
            width: 1rem;
            height: 1rem;
            fill: white;
        }

        @media (min-width: 768px) {
            .card__icon {
                width: 0.8rem;
                height: 0.8rem;
            }
        }

        @media (min-width: 1024px) {
            .card__icon {
                width: 1rem;
                height: 1rem;
            }
        }

        .card__title {
            color: white;
            margin-bottom: 10px;
        }

        .card__progress {
            gap: 0.75rem;
        }
        
        .progress__bar{
            width:100%;
        }

        .btn {
            padding: 0.5rem;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            border: 2px solid rgba(255, 255, 255, 0.5);
 cursor: pointer;
            transition: all 250ms;
        }

        .btn--transparent {
            background: transparent;
        }

        .btn--circle {
            border-radius: 50%;
        }

        // .btn:hover {
        //     background: white;
        // }

        .btn:hover .card__icon {
            fill: #fff;
        }

        .progressbar {
            flex: 1;
            height: 0.15rem;
            border-radius: 5px;
            background: grey;
            overflow: hidden;
        }

        .progressbar__status {
            width: 98%;
            height: 100%;
            background: rgb(229, 9, 20);
        }




  /* Video Player Container Styling */
  /* Video Player Container Styling */
  /* Video Player Container Styling */
  /* Video Player Container Styling */


@media(max-width:767px){

    .hover:hover .wrapper__front {
    
    transform: none !important;
}
    .hover:hover .wrapper__back {
        display: none;
    }
}



@media (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait){
   
       .hover:hover .wrapper__front {
    
    transform: none !important;
}
    .hover:hover .wrapper__back {
        display: none;
    }
   
   
   
}



@media (min-width: 768px) and (max-width: 1024px) {

       
    .hover:hover .wrapper__front {
    
    transform: none !important;
}
    .hover:hover .wrapper__back {
        display: none;
    }    
   
}


