.main-container {
    margin: auto;
}


/* Global Styles */


/* Here are the some root colos, change them so, they will change throughout the website */

:root {
    --primary-color: #e50914;
    --dark-color: #181818;
    --black-color: #000;
    --light-color: #fafafa;
    --text-color-in-black: #b0aaaa;
    --border-color: #212121;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /* To change font */
    font-family: 'Arial', sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #000;
    color: #999;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    color: var(--light-color);
}

a {
    color: var(--light-color);
    text-decoration: none;
}

p {
    margin: 0.5rem 0;
}

img {
    width: 100%;
}

.hidden {
    display: none !important;
}

.enable {
    display: inherit;
}

.dim-text {
    color: var(--text-color-in-black);
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.showcase {
    max-width: 1900px;
    margin: auto;
    width: 100%;
    height: 706px;
    position: relative;
    background: url('/content/images/background.jpg') no-repeat center center/cover;
}

.showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -12;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: inset 120px 100px 250px #000000, inset -120px -100px 250px #000000;
}

.showcase-top {
    padding: 30px 50px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.showcase-top .logo {
    width: 260px;
    margin-left: 0;
}

.showcase-content {
    position: relative;
    z-index: 2;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 9rem;
    color: var(--light-color);
}

.showcase-content h1 {
    font-weight: 700;
    font-size: 50px;
    line-height: 1.1;
    margin: 0 0 1rem;
    width: 640px;
}

.showcase-content .x-p {
    text-transform: capitalize;
    font-weight: 400;
    font-size: 26px;
}

.showcase-content .membership-text {
    font-weight: 400;
    font-size: 19px;
    word-spacing: 3px;
    margin: 20px 0px;
}

.footer {
    max-width: 1900px;
    width: 100%;
    margin: 1rem auto;
    overflow: auto;
    padding: 0px 50px;
}

.footer,
.footer a {
    color: #999;
    font-size: 0.9rem;
}

.footer p {
    margin-bottom: 1.5rem;
}

.footer .footer-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2rem;
}

.footer li {
    line-height: 1.9;
}


/*  language selector  */

#language-selector {
    position: relative;
    width: 8em;
}

#language-selector::before {
    content: url(../../img/globe-icon.png);
    position: absolute;
    top: 55%;
    left: 15%;
    transform: translate(-50%, -50%)
}

#language-selector::after {
    content: url(../../img/language-arrow.png);
    position: absolute;
    top: 45%;
    left: 90%;
    transform: translate(-50%, -50%);
}

#language-selector-wrapper {
    margin-top: 20px;
}

#lang-dropdown {
    color: #999;
    border: 1px solid #333;
    border-radius: 2px;
    font-size: 1rem;
    background-color: black;
    width: inherit;
    height: 2.2rem;
    padding-left: 2.1rem;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.lang-dropdown {
    color: #999;
    border: 1px solid #333;
    border-radius: 2px;
    font-size: 1rem;
    background-color: black;
    width: inherit;
    height: 2.2rem;
    padding-left: 2.1rem;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}


/* Container */

.container {
    max-width: 1100px;
    width: 100%;
    margin: auto;
    overflow: hidden;
    padding: 0 2rem;
}

section {
    padding: 70px 45px;
}


/* Text Styles */

.text-xl {
    font-size: 2rem;
}

.text-lg {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.text-md {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.text-center {
    text-align: center;
}

.text-dark {
    color: #999;
}

.pic_container {
    border-bottom: 8px solid var(--border-color);
}

.pic_container * {
    width: 100%;
}

.pic_container .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pic_container .container div:first-child {
    margin-right: 80px;
}

.pic_container .container .text h2 {
    font-size: 50px;
}

.pic_container .container .text p {
    font-size: 26px;
    color: var(--light-color);
}


/* Buttons */

.btn {
    width: 180px;
    display: inline-block;
    padding: 10px;
    font-size: 1rem;
    text-align: center;
    border: none;
    cursor: pointer;
    margin-right: 0.5rem;
    transition: opacity 0.2s ease-in;
    outline: none;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
    border-radius: 4px;
    font-weight: 500;
}

.btn:hover {
    opacity: 0.9;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--light-color);
}

.btn-secondary {
    background: var(--light-color);
    color: var(--dark-color);
}

.btn-transparent {
    padding: 10px 30px;
    background: rgba(53, 53, 53, 0.507);
}

.btn i {
    margin-right: 10px;
    font-size: 12px;
}


/* .btn-xl {
	font-size: 2rem;
	padding: 1.5rem 2.1rem;
	text-transform: uppercase;
}

.btn-lg {
	font-size: 1rem;
	padding: 0.8rem 1.3rem;
	text-transform: uppercase;
} */

.btn-icon {
    margin-left: 1rem;
}


/* For Rounded Corners */

.rounded-100 {
    border-radius: 100vw;
}

.search {
    z-index: 2;
    margin: 1.25rem 0px;
    width: 450px;
    display: flex;
    align-items: center;
    background: var(--light-color);
    border: none;
    opacity: 0.999;
}

.hero-search {
    line-height: 22px;
    font-weight: 300;
    flex: 1;
    background: transparent;
    border: none;
    color: #1a1a1a;
    padding: 10px 10px;
    font-size: 18px;
    background: var(--light-color);
}

.search-btn {
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    cursor: pointer;
    color: #1a1a1a;
}

.search-btn i {
    padding: 13px;
    font-weight: 600;
    color: var(--light-color);
}


/* login */

.login-screen {
    height: 100vh !important;
    max-width: 100%;
}

.login {
    z-index: 2;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 4px;
    width: 450px;
    height: 550px;
    margin: auto;
    padding: 60px 68px 40px 68px;
}

.login__title {
    z-index: 2;
    margin-bottom: 20px;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--light-color);
}

.login__group {
    position: relative;
    z-index: 10;
    display: flex;
}

.login__group__label {
    position: absolute;
    z-index: 101;
    color: #b3b3b3;
    font-size: 0.9rem;
    top: 30px;
    left: 18px;
    transition: all 300ms ease-in;
}

.login__group__input {
    width: 100%;
    position: relative;
    z-index: 100;
    background: #333;
    margin-bottom: 20px;
    border-radius: 4px;
    border: none;
    opacity: 1;
    font-size: 1rem;
    color: var(--light-color);
    line-height: 50px;
    padding: 12px 18px 0;
}

.login__sign-in {
    margin: 24px 0 12px;
    padding: 16px;
    color: var(--light-color);
    background: var(--primary-color);
    font-size: 0.9rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    z-index: 2;
}

.login__secondary-cta {
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: space-between;
}

.login__secondary-cta__text {
    opacity: 1;
    font-size: 0.9rem;
    color: #b3b3b3;
    text-decoration: none;
}


/* 
.login__secondary-cta__text--need-help {
	transition: all 0.3s ease-in;
} */

.login__secondary-cta__text--need-help:hover {
    text-decoration: underline;
}

::-moz-placeholder {
    font-size: 0.7rem;
}

:-ms-input-placeholder {
    font-size: 0.7rem;
}

::placeholder {
    font-size: 0.7rem;
}


/* main page Css */

.main {
    max-width: 1900px;
    margin: auto;
    width: 100%;
    min-height: 706px;
    position: relative;
    margin-bottom: 30px;
}

.main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.356);
    box-shadow: inset 120px 100px 250px #000000, inset -120px -100px 250px #000000;
}

.main .top-links {
    display: flex;
    align-items: center;
}

.main .top-menu {
    display: flex;
    margin-left: 50px;
    align-items: center;
}

.m-menu {
    display: none;
}

.main .top-menu li {
    font-weight: 500;
    margin: 0px 8px;
}

.main .top-menu li a,
.main .top-menu li .icon_wrap .name {
    font-weight: 100;
    color: var(--text-color-in-black);
}

.main .top-menu li a:hover,
.main .top-menu li .icon_wrap .name:hover {
    border-bottom: 1px;
    color: var(--light-color);
}

.main .main-show {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: var(--light-color);
    margin: 0px 45px;
    margin-top: 6rem;
    width: 600px;
}

.main-show .select-btn {
    display: flex;
    margin: 25px 0px;
}

.main .main-show h1 {
    max-width: 450px;
	width: 100%;
    font-size: 5rem;
    line-height: 70px;
    text-transform: uppercase;
    font-weight: 700;
}
@media only screen and (min-width: 786px) {
	.swiper-container {
    overflow: initial !important;
    overflow-x: clip !important;
	}

}
.main .main-show .membership-text {
    color: var(--text-color-in-black);
}

.main-container {
    max-width: 1900px;
    width: 100%;
}

.netflix-slider {
    width: 100%;
    max-width: 1900px;
    margin: auto;
    padding: 0px 20px;
}

.netflix-slider h2 {
    font-size: 1.4rem;
}

.netflix-slider .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: var(--light-color);
    /* Center slide text vertically */
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}
.text-details-flex {
        display: flex;
        gap: 15px;	  
        color: #C8C8C8 !important;

    }
    .rated{
        border-left: 1px solid #000;
        border-right: 1px solid #000;
padding: 0px 5px;
    }
.swiper-slide img {
    height: auto;
    object-fit: cover;
    height: 100%;
    max-width: 400px;
	width:100%;
    border-radius: 5px;
}
.swiper-slide .text-details {
	color: var(--light-color);
    text-align: left;
    padding: 15px 15px;
    font-size: 11px;
}


.netflix-slider .swiper-slide .slide-img {
    padding: 0px;
	width:100%;
	  height: 100%;
}
.search__submit .fas fa-search{
	    margin-left: 9px;
}
.netflix-slider .swiper-wrapper {
    padding: 0px;
    padding-top: 20px;
    padding-bottom: 70px;
}

.netflix-slider .swiper-slide {
    -webkit-transition: 350ms all;
    transition: 350ms all;
}


@media screen and (min-width: 780px) {
	.netflix-slider .swiper-slide:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    z-index: 1;
}
  .netflix-slider .swiper-slide:hover>.slide-details {
    display: block;
}

}

.netflix-slider .swiper-slide:first-child:hover {
    margin: 0 30px;
}

.netflix-slider .swiper-slide:last-child:hover {
    margin: 0 -10px;
}

.swiper-button-next::after {
    color: var(--light-color) !important;
    font-size: 20px !important;
    font-weight: bold !important;
}

.swiper-button-prev::after {
    color: var(--light-color) !important;
    font-size: 20px !important;
    font-weight: bold !important;
}

.swiper-slide .slide-details {
    max-width:400px;
	width: 100%;
    top: 80%;
    position: absolute;
    background: var(--border-color);
    display: none;
}

.description__button__container {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding: 0px 30px;
    margin-bottom: 4px;
}

.description__button__container .show-btn {
    display: flex;
}

.description__button {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--text-color-in-black);
    border-radius: 50%;
    padding: 9px;
    margin: 0px 2px;
}

.description__button i {
    font-size: 10px;
}

.description__button:hover {
    background: var(--light-color);
    color: black;
}

.swiper-slide:hover>.description__button__container {
    font-size: 1px;
    background: var(--primary-color);
    color: orange;
}

.show-ep {
    margin: 0;
}

.mr-2 {
    margin-left: 1rem;
    font-weight: bolder;
}


/* Profile Css */

.netflix-profile-page-bg {
    background: #000 !important;
    height: 600px;
}

.netflix-profile-page-bg .showcase-content {
    margin-top: 2rem;
}

.main-div-profile {
    /* background-color: rosybrown; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main-div-profile h1 {
    letter-spacing: 0.2rem;
    font-size: 2rem;
}

.memberDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
}

.memberDiv .profile-div {
    width: 135px;
    margin: 0px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 5px;
}

.profile-div img {
    margin-bottom: 10px;
    border-radius: 5px;
}

.memberDiv .profile-div,
.addIcon {
    border-radius: 0.4rem;
    border: none;
    outline: none;
    cursor: pointer;
}

.memberDiv .profile-div:hover>img {
    border: 5px solid white;
    border-radius: 5px;
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.9);
}

.memberDiv .profile-div span,
.addIcon span {
    text-transform: capitalize;
    color: rgb(153, 153, 153);
    font-size: 1rem;
}

.fa-plus-circle {
    font-size: 100px;
    color: grey;
    opacity: 0.8;
}

.addIcon {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    align-items: center;
}

.addIcon:hover {
    background-color: var(--light-color);
}

.addicon:hover>.fa-plus-circle {
    opacity: 1;
}

.manageProfile {
    border: 1px solid grey;
    color: grey;
    text-transform: uppercase;
    padding: 0.8rem 2.6rem;
    letter-spacing: 0.5rem;
    background-color: transparent;
    cursor: pointer;
}

.manageProfile:hover {
    border: 1px solid var(--light-color);
    color: var(--light-color);
}


/* modal css */

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 10%;
    z-index: 999;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    margin: 2rem auto;
    width: 60%;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
    animation-name: modalopen;
    background: var(--primary-color);
    animation-duration: var(--modal-duration);
}

.modal-header h2,
.modal-footer h3 {
    margin: 0;
}

.modal-header {
    background: var(--modal-color);
    padding: 15px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.modal-body {
    background: var(--dark-color);
    padding: 10px 20px;
    color: var(--text-color-in-black);
}

.modal-footer {
    background: var(--modal-color);
    padding: 10px;
    color: var(--light-color);
    text-align: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.close {
    color: #ccc;
    float: right;
    font-size: 30px;
    color: var(--light-color);
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

@keyframes modalopen {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.checkbox-group {
    display: flex;
}

.checkbox-group div {
    margin: 0px 10px;
}


/* Content Page */

.tv-show {
    max-width: 1900px;
    margin: auto;
    width: 100%;
    height: 100%;
    min-height: 706px;
    padding-bottom: 20px;
    position: relative;
    background: url('https://occ-0-3587-58.1.nflxso.net/dnm/api/v6/6AYY37jfdO6hpXcMjf9Yu5cnmO0/AAAABcM1ypsBpqLR0A_jnhXyYlQ0ErDQVGcjNm3Grg5GxlhfJ-nUWKU2yVsyoL-EjP1JNrT9mMu95PtfodpZTqAu0x9clJDf.jpg?r=5ce') no-repeat center center/cover;
}

.tv-show::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    filter: blur(50px);
    height: 100%;
    z-index: 1;
    background: rgba(71, 71, 71, 0.685);
    box-shadow: inset 120px 100px 250px #000000, inset -120px -100px 250px #000000;
}

.sticky-menu {
    background: var(--black-color);
    padding: 10px 45px !important;
    position: fixed;
    width: 100%;
    max-width: 1900px;
    margin-bottom: 0px;
    margin: auto;
    z-index: 999;
}

.sticky-menu .logo {
    width: 110px;
}

.show {
    padding: 0px 30px !important;
}

.show h2 {
    font-weight: 100;
}

.tv-show .main-show {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: var(--light-color);
    margin: 0px 45px;
    padding-top: 13rem;
    width: 600px;
}

.tv-show .main-show .show-info {
    color: var(--text-color-in-black);
    font-size: 12px;
}

.tv-show .main-show .show-info a {
    color: var(--text-color-in-black);
    font-size: 12px;
    margin: 0px 3px;
}

.tv-show .main-show .show-info a:hover {
    color: var(--light-color);
    font-size: 12px;
    margin: 0px 3px;
    text-decoration: underline;
}

.border-bottom-8px {
    border-bottom: 8px solid var(--border-color);
}

.shows-screenShots {
    display: grid;
    grid-template-columns: 20% 20% 20% 20% 20%;
    margin: 5rem 0px;
    margin-top: 20px;
    gap: 25px;
}

.shows-screenShots .screenShot {
    width: 100%;
    position: relative;
}

.shows-screenShots .screenShot img {
    width: 100%;
}

.screenShot .play-btn-div {
    height: 50px;
    position: absolute;
    bottom: 25%;
    left: 0;
    padding: 20px;
}

.screenShot i {
    position: relative;
    font-size: 40px;
    background: var(--black-color);
    border-radius: 50%;
    padding: 0px;
    margin: 0px;
}

.shows-episodes {
    display: grid;
    margin-top: 30px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    margin-bottom: 20px;
    grid-gap: 20px;
}

.shows-episodes .episode {
    width: 100%;
}

.main-show .story {
    margin: 1.5rem 0px;
}

.more-details {
    display: flex;
    padding: 10px 0px;
    padding-bottom: 40px;
}

.more-details * {
    width: 100%;
}

.more-details h4 {
    margin: 20px 0px;
    font-weight: 100;
    color: var(--light-color);
}


/* Tv Shows */

.netflix-slider .swiper-slide {
    background: none !important;
}

.collection {
    max-width: 1900px;
    margin: auto;
    width: 100%;
    height: 20px;
    position: relative;
    background: url('https://occ-0-3587-58.1.nflxso.net/dnm/api/v6/6AYY37jfdO6hpXcMjf9Yu5cnmO0/AAAABcM1ypsBpqLR0A_jnhXyYlQ0ErDQVGcjNm3Grg5GxlhfJ-nUWKU2yVsyoL-EjP1JNrT9mMu95PtfodpZTqAu0x9clJDf.jpg?r=5ce') no-repeat center center/cover;
}

.collection-div {
    margin: 1rem 0px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.collection-div .episode {
    position: relative;
}

.collection-div .episode-details {
    background: #181818;
    color: #fafafa;
    padding: 20px;
    position: absolute;
    top: 50%;
    width: 600px;
    z-index: 90;
    display: none;
}

.collection-div .episode:hover .episode-details {
    display: block;
}

.collection-div .episode:hover .episode-details .e-title {
    font-size: 1.5rem;
}

.collection-div .episode:hover .episode-details strong {
    color: #818181;
}

.collection-div .episode:hover .episode-details .flex {
    display: flex;
    justify-content: space-between;
}


/* not found */

.not-found {
    background: url('../../img/bg-lost-in-space.png') !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    width: 100%;
    height: 100vh;
}

.Not-found-div {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--light-color);
    margin: 0px 45px;
    height: 100vh;
}

.Not-found-div h1 {
    font-size: 4rem;
}

.Not-found-div p {
    margin: 1.3rem 0px;
    font-size: 1.3rem;
}
.categories .profile-ul{
	padding:10px !important;
}

#navIcon{
	font-size:18px;
	
}
@media screen and (max-width: 500px) {
    .main .showcase-top {
        padding: 30px 10px;
    }
    .main .top-links {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }
    .navbar_right {
		gap:5px;
    }
    .search-movie {
        right: -5px;
    }
}

.shows-episodes {
    display: grid;
    margin-top: 30px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

@media only screen and (max-width: 1023px) {
    .shows-episodes,
    .shows-screenShots {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media only screen and (max-width: 599px) {
    .shows-episodes,
    .shows-screenShots {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media only screen and (max-width: 460px) {
    .shows-episodes,
    .shows-screenShots {
        grid-template-columns: 1fr 1fr;
    }
    .show {
        padding: 0px 15px !important;
    }
}

.navbar_right div {
    margin: 0px 2px;
}

.navbar_right div:nth-child(2) {
    margin: 0px;
    margin-left: 15px;
}

.index-top-functions {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 20px;
}

.navbar_right {
    display: flex;
    align-items: center;
}

.navbar_right .top-functions {
    display: flex;
    align-items: center;
}

.navbar_right .top-functions a {
    margin: 0px 5px;
    color: var(--text-color-in-black);
    font-size: 15px;
}

.navbar_right .top-functions a:hover {
    margin: 0px 5px;
    color: var(--light-color);
}

.navbar_right .icon_wrap {
    cursor: pointer;
}

.navbar_right img {
    width: 25px;
}

.content {
    background: transparent;
    width: 200px;
    box-shadow: 0 0 3em rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.search-movie {
    --size: 35px;
    background: transparent;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    font-size: 10px;
    position: relative;
    width: var(--size);
    height: var(--size);
    transition: width 450ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
    padding-top: 5px;
}

.search__input {
    border: 0;
    border-bottom: 1px solid var(--primary-color);
    padding: 10px;
    flex-grow: 1;
    outline: 0;
    z-index: 2;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 100%;
    width: 100%;
    font-size: 15px;
    background: transparent;
    opacity: 0;
    cursor: pointer;
    color: var(--light-color);
}

.search__submit {
    font-size: 14px;
    margin-left: auto;
    background: transparent;
    border: 0;
    cursor: pointer;
    border-radius: 50%;
    transition: background 200ms ease-out;
    width: calc(var(--size) - 10px);
    height: calc(var(--size) - 10px);
    color: var(--text-color-in-black);
}

.search-movie:focus-within {
    width: 100%;
}

.search-movie:focus-within .search__input {
    opacity: 1;
    z-index: initial;
    cursor: initial;
    width: calc(100% - var(--size));
}

.search-movie:focus-within .search__submit {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.search-movie:focus-within .search__submit:hover,
.search-movie:focus-within .search__submit:focus {
    outline: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.65);
}

.navbar_right .notifications {
    margin-right: 10px;
}

.navbar_right .notifications .icon_wrap {
    font-size: 18px;
}

.navbar_right .profile,
.navbar_right .notifications {
    position: relative;
}

.profile .profile_dd,
.notification_dd {
    position: absolute;
    top: 48px;
    right: -15px;
    user-select: none;
    background: var(--dark-color);
    width: 350px;
    height: auto;
    display: none;
    border-radius: 3px;
    box-shadow: 10px 10px 35px rgba(0, 0, 0, 0.125), -10px -10px 35px rgba(0, 0, 0, 0.125);
}
 .sidenav .categories{
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
}
 .categories{
	cursor:pointer;
}
.categories .categories_dd {
	font-size: 16px;
    position: absolute;
    margin-top: 10px;
    /*right: -15px;*/
    user-select: none;
    background: var(--dark-color);
    /*width: 350px;*/
    height: auto;
    display: none;
    border-radius: 3px;
    box-shadow: 10px 10px 35px rgba(0, 0, 0, 0.125), -10px -10px 35px rgba(0, 0, 0, 0.125);
}
.categories_dd a {
    font-size: 18px;
}
.profile .profile_dd:before,
.notification_dd:before {
    content: "";
    position: absolute;
    top: -20px;
    right: 15px;
    border: 10px solid;
    border-color: transparent transparent var(--dark-color) transparent;
}

.categories .categories_dd:before {
    content: "";
    position: absolute;
    top: -20px;
    /*right: 15px;*/
    border: 10px solid;
    border-color: transparent transparent var(--dark-color) transparent;
}

.notification_dd li {
    border-bottom: 1px solid var(--text-color-in-black);
    padding: 10px 20px;
    display: flex;
    align-items: center;
}

.notification_dd li .notify_icon {
    display: flex;
}

.notification_dd li.baskin_robbins .notify_icon .icon {
    background-position: 0 -43px;
}

.notification_dd li.mcd .notify_icon .icon {
    background-position: 0 -86px;
}

.notification_dd li.pizzahut .notify_icon .icon {
    background-position: 0 -129px;
}

.notification_dd li.kfc .notify_icon .icon {
    background-position: 0 -178px;
}

.notification_dd li .notify_data {
    margin: 0 15px;
    width: 185px;
}

.notification_dd li .notify_data .title {
    color: #000;
    font-weight: 600;
}

.notification_dd li .notify_data .sub_title {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 5px;
}

.notification_dd li .notify_status p {
    font-size: 12px;
}

.notification_dd li.success .notify_status p {
    color: #47da89;
}

.notification_dd li.failed .notify_status p {
    color: #fb0001;
}

.notification_dd li.show_all {
    padding: 20px;
    display: flex;
    justify-content: center;
}

.notification_dd li.show_all p {
    font-weight: 700;
    color: var(--main-bg);
    cursor: pointer;
}

.notification_dd li.show_all p:hover {
    text-decoration: underline;
}

.navbar_right .profile .icon_wrap {
    display: flex;
    align-items: center;
}

.navbar_right .profile img {
    margin: 0px 5px;
}

.navbar_right .profile .name {
    display: inline-block;
    margin: 0 10px;
}

.navbar_right .icon_wrap:hover,
.navbar_right .profile.active .icon_wrap,
.navbar_right .notifications.active .icon_wrap {
    color: #e0e0e0;
}

.profile .profile_dd {
    width: 200px;
}

.profile .profile_dd:before {
    right: 10px;
}

.profile .profile_dd ul li a {
    display: block;
    padding: 15px 35px;
    position: relative;
}

.profile .profile_dd ul li a .picon {
    display: inline-block;
    width: 30px;
}

.profile .profile_dd ul li a:hover {
    color: var(--primary-color);
    background: var(--light-color);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.profile .profile_dd ul li.profile_li a:hover {
    background: transparent;
    cursor: default;
    color: var(--light-color);
}

.profile .profile_dd ul li .btn-notify {
    height: 32px;
    padding: 7px 10px;
    color: var(--light-color);
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
    background: var(--main-bg);
    width: 125px;
    margin: 5px auto 15px;
    border: none;
    transition: 0.3s;
}

.profile .profile_dd ul li .btn-notify:hover {
    background: var(--secondary-btn-color);
}

.profile.active .profile_dd,
.notifications.active .notification_dd,
.categories.active .categories_dd {
    display: block;
}

.popup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.2s ease;
    display: none;
}

.popup .shadow {
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
}

.popup .inner_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
}

.popup .notification_dd {
    display: block;
    position: static;
    margin: 0 auto;
    height: 357px;
    overflow: auto;
}

.popup .notification_dd:before {
    display: none;
}

.popup .notification_dd li.title {
    font-weight: 700;
    color: var(--main-bg);
    display: flex;
    justify-content: center;
    position: relative;
}

.popup .notification_dd li.title .close {
    position: absolute;
    top: 2px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

.popup .notification_dd li.title .close:hover {
    opacity: 0.5;
}

.notification-div {
    background: var(--dark-color);
    cursor: pointer;
    display: grid;
    place-items: center;
}

.notification-dot {
    position: relative;
    top: 7px;
    width: 8px;
    height: 8px;
    background: var(--secondary-btn-color);
    border-radius: 50%;
}

.fa-bell {
    font-size: 18px;
}

.profile-img-div {
    background: var(--info-color);
    display: flex;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

.profile-img {
    cursor: pointer;
    width: 40px;
}


/* navbar */

.nav-icon {
    visibility: hidden;
	cursor:pointer;
    width: 0px;
}

.navbar-show {
    display: flex !important;
    flex-direction: column !important;
}


/* Sidebar Nav */

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999 !important;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    z-index: 10000;
}

.sidenav ul {
    list-style: none;
}
.sidebar-search {
	margin: 10px;
    margin-left: 32px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.sidebar-search input {
    padding: 10px 20px;
}

.sidebar-search-input {
    padding: 10px !important;
	background: var(--border-color);
	color : var(--text-color-in-black);
	font-size: 18px;
	border :none;
}

.sidebar-search-btn {
    width: 120px;
    cursor: pointer;
    border: none;
     background: var(--text-color-in-black);
    transition: 0.3s;

}

.sidebar-search-btn:hover {
    background: var(--primary-color);
    color: var(--light-color);
}
.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}


/* For Making Responsive */


/* Here is the Media Query Screens */

@media only screen and (max-width: 920px) {
    .sticky-menu {
        padding: 10px 10px !important;
    }
}

@media only screen and (max-width: 780px) {
    .sticky-menu {
        padding: 10px 5px !important;
    }
	.profile_ul{
	column-count:1 !important;
	}
}

@media only screen and (max-width: 750px) {
    .hide-sm {
        display: none;
    }
    .top-links .top-menu {
        display: none;
        visibility: hidden;
        width: 0px;
        height: 0px;
    }
    .main .top-menu {
        display: flex;
        margin-left: 0px;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .nav-icon {
        visibility: visible;
        width: auto;
        margin-right: 10px;
    }
}

@media only screen and (max-width: 1919px) {
    .shows-episodes,
    .shows-screenShots {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
}

@media only screen and (max-width: 1023px) {
    .collection-div {
        margin: 1rem 0px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 20px;
    }
    .shows-episodes,
    .shows-screenShots {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media only screen and (max-width: 599px) {
    .shows-episodes,
    .shows-screenShots {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media only screen and (max-height: 1150px) {
    .top-links .top-menu {
        margin: 0;
        margin-right: 2px;
        margin-left: 20px;
    }
    .top-links .top-menu li {
        margin: 5px;
    }
    .navbar_right div:nth-child(2) {
        margin: 0px;
        margin-left: 5px;
    }
}

@media only screen and (max-height: 1080px) {
    .main .showcase-top {
        padding: 30px 20px;
    }
}

@media only screen and (max-width: 960px) {
    .memberDiv .profile-div {
        width: 100px;
    }
    .profile-div img {
        width: 100px;
        margin: 2px;
        padding: 0px;
        margin-bottom: 15px;
    }
    .showcase-content h1 {
        font-size: 3.7rem;
        line-height: 1;
    }
    .showcase-content p {
        font-size: 1.5rem;
    }
    .footer .footer-cols {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1rem;
    }
    .btn-xl {
        font-size: 1.5rem;
        padding: 1.4rem 2rem;
        text-transform: uppercase;
    }
    .text-xl {
        font-size: 1.5rem;
    }
    .text-lg {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    .text-md {
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }
}

@media only screen and (max-width: 700px) {
    section {
        padding: 30px 10px;
    }
    .main {
        /*height: 600px;*/
    }
    .netflix-slider {
        width: 100%;
        max-width: 1900px;
        margin: auto;
        padding: 0px 10px;
    }
    .description__button {
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid var(--text-color-in-black);
        border-radius: 50%;
        padding: 7px;
        margin: 0px 2px;
    }
    .description__button i {
        font-size: 8px;
    }
    .sticky-menu {
        background: var(--black-color);
        padding: 10px 15px !important;
        position: fixed;
        width: 100%;
        max-width: 1900px;
        margin-bottom: 0px;
        margin: auto;
        z-index: 999;
    }
    .showcase-top {
        padding: 20px 20px;
    }
    .pic_container .container div:first-child {
        margin-right: 0px;
        margin-bottom: 20px;
    }
    .showcase-content h1 {
        width: 100%;
        font-size: 2rem;
    }
    .pic_container .container {
        flex-direction: column;
        justify-content: center;
    }
    .showcase::after {
        background: rgba(0, 0, 0, 0.6);
        box-shadow: inset 80px 80px 150px #000000, inset -80px -80px 150px #000000;
    }
    .showcase-content p {
        font-size: 1rem;
    }
    .btn-xl {
        font-size: 1rem;
        padding: 1.2rem 1.6rem;
        text-transform: uppercase;
    }
    .main .main-show {
        margin: 0px 15px;
        width: auto;
        padding-top: 8rem;
    }
    header.main.collection.loged::after {
        width: 0px;
        height: 0px;
    }
    .collection {
        height: 20px !important;
    }
    .collection-div {
        margin: 1rem 0px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .more-details {
        flex-direction: column;
    }
    .index .showcase-content {
        margin-left: 20px;
        margin-right: 20px;
    }
    .showcase-content .x-p {
        font-size: 22px;
    }
    .search {
        width: auto;
    }
    .main .showcase-content {
        margin-top: 3rem;
    }
    .footer .footer-cols {
        grid-template-columns: 1fr;
    }
    .navbar_right div:nth-child(2) {
        margin: 0px;
        margin-left: 5px;
    }
    .showcase-top .logo {
        width: 100px;
    }
    .main .main-show h1 {
        font-size: 3.5rem;
    }
    .btn {
        width: 130px;
        padding: 7px 2px;
    }
    .navbar_right .top-functions a {
        margin: 0px 2px;
        color: var(--text-color-in-black);
        font-size: 15px;
    }
    .collection-div {
        margin: 1rem 0px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .swiper-slide .slide-details {
		max-width:400px;
        width: 100%;
        top: 80%;
        position: absolute;
        background: var(--border-color);
        display: none;
    }
    .description__button__container {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
        padding: 0px 30px;
        margin-bottom: 4px;
    }
    .description__button__container .show-btn {
        display: flex;
    }
    .description__button {
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid var(--text-color-in-black);
        border-radius: 50%;
        padding: 7px;
        margin: 0px 2px;
    }
    .description__button i {
        font-size: 8px;
    }
    .description__button:hover {
        background: var(--light-color);
        color: black;
    }
    .swiper-slide:hover>.description__button__container {
        font-size: 1px;
        background: var(--primary-color);
        color: orange;
    }
  
    .index .showcase-top {
        padding: 20px 10px;
    }
}

@media only screen and (max-width: 500px) {
    #language-selector {
        display: none;
        width: 0px;
    }
    .content {
        display:none;
		width:0px;
    }
    .btn {
        width: 120px;
        padding: 6px 12px;
    }
    .netflix-slider .swiper-slide .slide-img {
        padding: 0px;
        height: 143px;
    }
}

@media only screen and (max-width: 460px) {
    .collection-div {
        margin: 1rem 0px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
	.main .main-show h1 {
    font-size: 3rem;
}
    .shows-episodes {
        grid-template-columns: 1fr 1fr;
    }
    #language-selector {
        display: none;
        width: 0px;
    }
    .content {
        width: 150px;
    }
	.main-show .select-btn {
    display: flex;
    margin: 25px 0px;
    gap: 10px;
    flex-direction: column;
}
    .btn {
        width: 200px;
        padding: 6px 12px;
    }
    .netflix-slider .swiper-slide .slide-img {
        padding: 0px;
        height: 143px;
    }
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }
    .sidenav a {
        font-size: 18px;
    }
    .navbar {
        overflow: hidden;
        background-color: #333;
    }
    .navbar a {
        float: left;
        font-size: 16px;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }
    .dropdown {
        float: left;
        overflow: hidden;
    }
    .dropdown .dropbtn {
        font-size: 16px;
        border: none;
        outline: none;
        color: white;
        padding: 14px 16px;
        background-color: inherit;
        font-family: inherit;
        margin: 0;
    }
    .navbar a:hover,
    .dropdown:hover .dropbtn {
        background-color: red;
    }
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;
    }
    .dropdown-content a {
        float: none;
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }
    .dropdown-content a:hover {
        background-color: #ddd;
    }
    .dropdown:hover .dropdown-content {
        display: block;
    }
}

.show {
    display: block;
}

.m-hidden{
    display: block;
}

.d-hidden{
    display: none;

}

@media only screen and (max-width: 786px) {
    .m-hidden {
        display: none;
    }
    .d-hidden{
        display: block;
    }
	.navbar_right *{
		font-size:21px;
	}
	#navIcon {
    font-size: 21px;
	}
}
	
}