.intro__header{
    width: 100%;
    height: 7rem;
    position: fixed;
    top: 0;
    z-index: 1;
 
}

.intro__nav{
    height: 100%;
    display: flex;
    align-items: center;
    padding: var(--padding-container);
}

.intro__nav img{
    width: 15rem; 
}
.intro__main{
    text-align: center;
    color: #fff;
    font-family:'Netflix Sans', Arial, Helvetica, sans-serif;
    animation: opacity 0.3s linear, miniscaleXY 0.3s reverse linear;
} 

.intro__main .profile-title{
    width: 100%;
    font-size: 3.5vw;
    letter-spacing: 1px;
}

.intro__ul{
    margin: 2rem 0;
    display: flex;
}

.intro__ul .profile-link{
    width: auto;
    height: auto;
    margin-right: 2vw;
    text-decoration: none;   
}

.intro__li{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    list-style: none;
}
.intro__li:hover .profile-border{
    border: 0.25vw solid white;
}
.intro__li:hover .profile-name{
    color:white;
}


.intro__li .profile-img, .intro__li .add-img{ 
    width: 10vw;
    height: 10vw;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

#link-add{
    margin: 0;
}

#link-add .add-img{
    background-color: #141414;
}
#link-add:hover .add-img{
    background-color: #e5e5e5;
}

#link-add .add-img img{
    width: 100%;
}

.intro__li .profile-border{
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   border-radius: 5px;
}

.intro__li .profile-name{
    margin-top: 0.5vw;
    font-size: 1.3vw;
    color: grey;
}

#courage{
    background: url("https://i.ibb.co/c1n88Z3/Filepicture-Coraje.webp");
    background-size: cover;
}

#woody{
    background: url("https://i.ibb.co/gvF31FC/Filepicture-Woody.webp");
    background-size: cover;
}

#ranger{
    background: url("https://i.ibb.co/0Fmr687/Filepicture-Ranger-Green.webp");
    background-size: cover;
}

/*------------media queries--------------------*/

@media (max-width: 800px) and (max-aspect-ratio: 1/1){

    
    .intro__main{
        width: 55%;
    }
    
    .intro__main .profile-title {
        font-size: 4vw;
        letter-spacing: 0.5px;
    }
    
    .intro__ul{
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .intro__ul .profile-link{  
       margin-bottom: 3.5vw;
    }
    
    .intro__li .profile-img, .intro__li .add-img {
        width: 23vw;
        height: 23vw;
    }
    
    .intro__li .profile-name {
        margin-top: 1.5vw;
        font-size: 2.5vw;
    }
    
}

@media (max-width: 400px) and (max-aspect-ratio: 1/1){

    
    .intro__main{
        width: 60%;
    }
    
    .intro__main .profile-title {
        font-size: 5vw;
    }
    
    .intro__ul{
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .intro__ul .profile-link{  
       margin-bottom: 7vw;
    }
    
    .intro__li .profile-img, .intro__li .add-img {
        width: 26vw;
        height: 26vw;
    }
    
    .intro__li .profile-name {
        margin-top: 1.5vw;
        font-size: 3vw;
    }
    
}
#intro {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #141414;
}
.home__header{
    width: 100%;
    height: 7rem;
    position: fixed;
    top: 0;
    background: linear-gradient(to bottom,rgba(0,0,0,.7) 10%,rgba(0,0,0,0));
    transition: background-color 0.4s;
    z-index: 3;
    padding: var(--padding-container); 
}

.home__header.background-dark{
    background-color: rgba(20, 20, 20);
}

.home__nav{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

.nav-primary{
    display: flex;
    align-items: center;
}

.home__nav img{
    width: 15rem;
    margin-right: 2.5rem;
}

/*---------------nav-list----------------*/

ul > li {
    display: inline-block;
}

.nav-list li{
    margin-left: 2rem;
}
.nav-list li a{
    text-decoration: none;
    transition: color 0.4s;
    color: #e5e5e5;
    font-size: 1.4rem;
    line-height: 1.2;
    transition: color 0.4s;
}
.nav-list li a:hover{
    color: #b3b3b3;
}

.nav-list li .a-active{
    font-weight: 700;
    cursor: default;
    color: #e5e5e5;
}

.nav-list li .a-active:hover{
    color: #e5e5e5;
}

/*------------nav-secondary------------*/

.nav-secondary{
    display: flex;
    align-items: center;
    margin-bottom: 0.3rem;
}

.nav-secondary .btn{
    cursor: pointer;
    font-size: 2rem;
    color: white;
    margin-right: 2rem;
}

.nav-dropdown{
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav-profile{
    width: 3rem;
    height: 3rem;
    margin-right: 1.2rem;
    border-radius: 5px;
    background-size: cover;
}

.nav-dropdown-list{
    position: absolute;
    right: var(--right-container);
    top: 70px;
    width: 180px;
    display: none;
    flex-direction: column;
    background-color: rgba(0,0,0,.8);
    color: #fff !important;
    font-size: 13px;
    line-height: 21px;
    border: solid 1px rgba(255,255,255,.15);
    padding: 10px 0 5px 0;
    border-radius: 5px;
    z-index: 4;
    opacity: 0;
    
}

.nav-profile-item:hover span, .profile-manage:hover{
    text-decoration: underline;
}

.profile-manage{
    padding: 10px 10px;
}

.nav-profile-item{
    display: flex;
    align-items: center;
    padding: 5px 10px;
}

a:-webkit-any-link{
    color: #fff;
    text-decoration: none;
}

.nav-profile.first {
    background-image: url("https://i.ibb.co/c1n88Z3/Filepicture-Coraje.webp");
    background-size: cover;
}

.nav-profile.second {
    background-image: url("https://i.ibb.co/gvF31FC/Filepicture-Woody.webp");
    background-size: cover;
}

.nav-profile.third {
    background-image: url("https://i.ibb.co/0Fmr687/Filepicture-Ranger-Green.webp");
    background-size: cover;
}


.transform-arrow{
    font-size: 1rem;
    transform: scaleX(2);
    color: white;
    transition: transform 367ms;
}

.transform-arrow.rotated{
    transform: scaleX(2) rotate(180deg);
}

.visible{
    display: flex;
    animation: opacity;
    animation-duration: 0.3s;
    opacity: 1;
}

/*-----------media queries-----------------*/

@media (max-width: 800px) and (max-aspect-ratio: 1/1){
    
    .home__header{
        width: 100%;
        height: 7rem;
        position: absolute;
        background: rgba(20, 20, 20, 0.8);
        
    }

    .home__header.background-dark{
        background: rgba(20, 20, 20, 0.8);
    }

    .nav-list{
        position: absolute;
        top: 7rem;
        left: 0;
        right: 0;
        height: 7rem;
        padding: var(--padding-container); 
        transition: background-color 0.4s;
        z-index: 3;
        display: flex;
        justify-content: space-around;
        align-items: center;
        background: linear-gradient(180deg, rgba(20,20,20,0.8) 0%, rgba(20,20,20,0.76) 8% ,rgba(20,20,20,0.72) 15%, rgba(20,20,20,0.66) 30%, rgba(20,20,20,0.5) 60%, rgba(20,20,20,0.25) 80%, rgba(20,20,20,0) 100%);
    }

    .nav-profile{
        width: 4rem;
        height: 4rem;
    }

    .nav-list li{
        margin-left: 0;
    }
    .nav-list li a{
        font-size: 1.5rem;
    }

}

#info-modal{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: auto;
    background: rgba(0, 0, 0, 0.7);
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: opacity;
    animation-duration: 0.3s;
    color: white;
}

.info-modal__banner{
    width: 50vw;   
    height: fit-content;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.info-modal__img-div{
    width: 100%;
    height: 40rem;
    background-size: cover;
    background-position: center;
}

.info-modal__banner-info{
    height: fit-content;
    margin-top: -15rem;
    background: rgb(24, 24, 24);
    background: linear-gradient(to top,rgb( 24, 24, 24)60%,rgb( 24, 24, 24,0.86)65%,rgb( 24, 24, 24,0.72)70%,rgb( 24, 24, 24,0.58)75%,rgba( 24, 24, 24,0.44)80%, rgba( 24, 24, 24,0.30)85%,rgb( 24, 24, 24,0.16)90%,rgb( 24, 24, 24,0.02)95%, rgba( 23, 24, 24,0)100%);
    padding: 0 0 2rem 5rem;
}

.icon-close{
    width: 2.6vw;
    height: 2.6vw;
    border-radius: 50%;
    background:rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-close svg{
    width: 60%;
    height: 60%;
    outline: none;
}

.info-modal__banner-info h3{
    margin-bottom: 3rem;
    text-shadow: 2px 2px 2px black;
    font-size: 2rem;
    line-height: 1.2;
}

.info-modal__banner-info .buttons {
    display: flex;
    width: auto;
    align-items: center;
}
.info-modal__banner-info .buttons .button-plus{
    width: 2.6vw;
    height: 2.6vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid rgb(175, 175, 175, 0.8);
    background-color: transparent;
    color: #fff;
    cursor: pointer;
}

.info-modal__banner-info .buttons .button-plus:hover{
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.info-modal__banner-info .buttons .button-plus svg{
    width: 60%;
    height: 60%;
    outline: none;
}

.banner-info__top-info{
    width: 100% ;
    margin-top: 3vw;
    font-size: 1.6rem;
}

.banner-info__top-info .categorie{
    border: 1px solid grey;
    padding: 0 0.6rem;
    margin-right: 1rem;
    color: rgb(26, 184, 26);
    font-weight: 700;
}

.banner-info__bottom-info{
    margin-top: 2rem;
}

.info-modal__banner-info .synopsis{
    display: block;
    width: 65%;
    font-size: 1.6rem;
}

/*-------------------------media queries-----------------*/

@media (max-width: 800px) and (max-aspect-ratio: 1/1){

    .info-modal__banner{
        width: 80vw;   
    }

    .info-modal__banner-info{
        padding: 0 0 2rem 2rem;
    }
 
    .icon-close{
        width: 3vw;
        height: 3vw;
    }

    .info-modal__banner-info .buttons .button-plus{
        width: 4.5vw;
        height: 4.5vw;
        margin-left: 0.5rem;
        border: 2px solid rgb(175, 175, 175, 0.8);
    }

    .banner-info__top-info{
        margin-top: 4vw;
        font-size: 1.3rem;
    }

    .info-modal__banner-info .synopsis{
        width: 75%;
        font-size: 1.3rem;
    }
}

@media (max-width: 400px) and (max-aspect-ratio: 1/1){

    .info-modal__banner{
        width: 90vw;   
    }

    .info-modal__banner-info{
        padding: 0 0 2rem 1rem;
    }

    .info-modal__img-div{
        height: 30rem;
    }

    .icon-close{
        width: 3.5vw;
        height: 3.5vw;
    }

    .info-modal__banner-info .buttons .button-plus{
        width: 5.5vw;
        height: 5.5vw;
    }

    .banner-info__top-info{
        margin-top: 7vw;
        font-size: 1.3rem;
    }

    .info-modal__banner-info .synopsis{
        width: 80%;
        font-size: 1.2rem;
    }
}

.principal-preview{
    width: 100%;
    height: 50vw;
    min-height: 30rem;
    background-size: cover;
    background-position: center;
    padding: var(--padding-container);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 5vw;
    color: white;
}

.preview-container{
    width: 36%;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.principal-png-btm{
    width: 27vw;
}

.principal-buttons{
    margin-top: 2vw;
    display: flex;
}

.play-btn span{
    font-size: 1.6vw; 
    margin-right: .5rem;
}

.play-btn:hover{
    background-color: rgba(255, 255, 255, 0.75);
}

.info-btn, .play-btn{
    padding: 0.8rem;
    padding-left: 2rem;
    padding-right: 2.4rem;
    border-radius: 5px;
    font-size: 1.2vw;
    border: none;
    font-weight: 700;
    background-color: rgba(109, 109, 110, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    color: white;
}

.play-btn{
    margin-right: 1rem;
    background-color: rgba(255, 255, 255);
    color: rgb(0, 0, 0);
}

.info-btn:hover{
    background-color:rgba(109, 109, 110, 0.4);
}

.icon-info, .icon-play{
    width: 2.4rem;
    height: 2.4rem;
    margin-right: 1rem;
}

.age-categorie{
    position: absolute;
    right: 0;
    top: 30vw;
    border: solid 3px #dcdcdc;
    border-style: none none none solid;
    background-color: rgba(51,51,51,.6);
    font-size: 1.1vw;
    padding: .5vw 3.6vw .5vw .8vw;
}

.synopsis{
    color: #fff;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    font-size: 1.4vw;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 60%);
    margin-top: 1.3vw;
}

/*-------------------------media queries-----------------*/

@media (max-width: 800px) and (max-aspect-ratio: 1/1){

    .principal-preview{
    padding-top: 14rem;
    height: 80vw;
    }

    .preview-container{
        width: 50%;
    }

    .principal-png-btm{
        width: 35vw;
    }

    .info-btn, .play-btn{
    font-size: 1.4vw;
    padding: 0.6rem;
    padding-left: 1.7rem;
    padding-right: 2rem;
    }
    .icon-info, .icon-play{
    width: 2rem;
    height: 2rem;
    }

    .synopsis{
    font-size: 1.8vw;
    }

    .age-categorie{
        top: 50vw;
        font-size: 2vw;
        padding: .5vw 3.6vw .5vw .8vw;
    }
}

@media (max-width: 400px) and (max-aspect-ratio: 1/1){

    .principal-preview{
    height: 90vw;
    padding-bottom: 10vw;
    }

    
    .preview-container{
        width: 65%;
    }

    .principal-png-btm{
        width: 38vw;
    }

    .info-btn, .play-btn{
    font-size: 1.8vw;
    padding: 0.5rem;
    padding-left: 1.3rem;
    padding-right: 1.6rem;
    }

    .icon-info, .icon-play{
    width: 1.4rem;
    height: 1.4rem;
    }

    .synopsis{
    font-size: 2.4vw;
    }

    .age-categorie{
        top: 60vw;
    }
}
.serie-pic{
    min-width: calc(20% - 0.3vw);
    width: calc(20% - 0.3vw); /* necesario para el width de MY LIST */
    height: 11vw;
    margin-right: 0.3vw;
    border-radius: 5px;
    cursor: pointer;
}

.serie-pic.last-pic{ /*necesario para que el carousel traslade bien*/
    min-width: 20%;
    margin: 0;
    padding-right: 0.3vw;
}

.serie-pic img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

/*-------------------------media queries-----------------*/

@media (max-width: 800px) and (max-aspect-ratio: 1/1){
    
    .serie-pic{
        min-width: calc((100%/3) - 0.5vw);
        width: calc((100%/3) - 0.5vw);
        margin-right: 0.5vw;
        height: 19vw;
    }
    .serie-pic.last-pic{
        min-width: calc(100%/3);
        padding-right: 0.5vw;
    }
}

@media (max-width: 400px) and (max-aspect-ratio: 1/1){
    
    .serie-pic{
        min-width: calc(50% - 0.8vw);
        width: calc(50% - 0.8vw);
        margin-right: 0.8vw;
        height: 27.5vw;
    }
    .serie-pic.last-pic{
        min-width: 50%;
        padding-right: 0.5vw;
    }
}
#zoom-pic{
    /* width by js */
    height: auto;
    border-radius: 5px;
    overflow: hidden;
    color: white;
    font-size: 1vw;
    position: absolute;
    top: 0px;
    /* margin: 0 var(--right-container); */
    background-color: #141414;
    box-shadow: rgb(0 0 0 / 75%) 0px 3px 10px;
    z-index: 2;
    transform: scale(1.3);
    animation: scaleSerie 0.2s;
}


#zoom-pic img{
    width: 100%;
    height: 11vw;
    cursor: pointer;
}

#zoom-pic .zoom-pic-down{
    width: 100%;
    padding: 1.3vw 1.2vw;
}
#zoom-pic .zoom-pic-down-buttons{
    display: flex;
    justify-content: space-between;
}

#zoom-pic .zoom-pic-down-buttons .buttons-left{
    width: auto; 
    display: flex; 
    color: white;
}

#zoom-pic .zoom-pic-down-buttons .buttons{
    width: 2.1vw;
    height: 2.1vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1.7px solid rgb(175, 175, 175, 0.8);
    background-color: transparent;
    color: #fff;
    margin-right: 0.4vw;
    padding: 0 0.4vw;
    cursor: pointer;
}

#zoom-pic .zoom-pic-down-buttons .buttons:hover{
    border: 1.7px solid rgba(255, 255, 255);
}

#zoom-pic .zoom-pic-down-buttons .buttons#zoom-pic__play-btn{
    color: black; 
    background-color: white; 
}

#zoom-pic .zoom-pic-down-buttons .buttons#zoom-pic__play-btn:hover{
    background-color: rgb(255, 255, 255, 0.89);
}

#zoom-pic .zoom-pic-down-info{
    width: 100% ;
    margin-top: 0.9vw;
}

#zoom-pic .zoom-pic-down-info .categorie{
    border: 1px solid grey;
    padding: 0 0.6rem;
    margin-right: 0.9vw;
    color: rgb(26, 184, 26);
    font-weight: 700;
}

@media (max-width: 800px) and (max-aspect-ratio: 1/1){
    
    #zoom-pic{
        /* width by js */
        font-size: 1.4vw;
        transform: scale(1.2);
        animation: scaleMovie 0.2s;
    }

    #zoom-pic img{
        height: 19vw;
    }

    #zoom-pic .zoom-pic-down{
        padding: 2.3vw 2vw;
    }

    #zoom-pic .zoom-pic-down-buttons .buttons{
        width: 3.6vw;
        height: 3.6vw;
        border: 0.1rem solid rgb(175, 175, 175, 0.8);
        margin-right: 1vw;
        padding: 0 0.6vw;    
    }

    #zoom-pic .zoom-pic-down-info{
        margin-top: 2vw;
    }
}

@media (max-width: 400px) and (max-aspect-ratio: 1/1){

    #zoom-pic{
        font-size: 2vw;
    }

    #zoom-pic img{
        height: 27.5vw;
    }

    #zoom-pic .zoom-pic-down{
        padding: 3.5vw 3vw;
    }

    #zoom-pic .zoom-pic-down-buttons .buttons{
        width: 5.5vw;
        height: 5.5vw;
        margin-right: 1vw;
        padding: 0 1.2vw;    
    }

    #zoom-pic .zoom-pic-down-info{
        margin-top: 3vw;
    }

}
.movie-pic{
    min-width: calc(20% - 0.3vw);
    height: 30vw;
    margin-right: 0.3vw;
    border-radius: 5px;
    cursor: pointer;
}

.movie-pic.last-pic{
    min-width: calc(20% + var(--right-container));
    padding-right: calc(var(--right-container) + 0.3vw);
}

.movie-pic img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

/*-------------------------media queries-----------------*/

@media (max-width: 800px) and (max-aspect-ratio: 1/1){


    .movie-pic{
        min-width: calc((100%/3) - 0.5vw);
        height: 50vw;
        margin-right: 0.5vw;
    }
    
    .movie-pic.last-pic{
        min-width: calc((100%/3) + var(--right-container));
        padding-right: calc(var(--right-container) + 0.5vw);
    }

}

@media (max-width: 400px) and (max-aspect-ratio: 1/1){


    .movie-pic{
        min-width: calc(50% - 0.8vw);
        height: 75vw;
        margin-right: 0.8vw;
    }
    
    .movie-pic.last-pic{
        min-width: calc(50% + var(--right-container));
        padding-right: calc(var(--right-container) + 0.5vw);
    }

}


#zoom-movie-pic{
    height: 30vw;
    border-radius: 5px;
    overflow: hidden;
    color: white;
    font-size: 1.2rem;
    position: absolute;
    top: 0px;
    background-color: #141414;
    box-shadow: rgb(0 0 0 / 75%) 0px 3px 10px;
    z-index: 2;
    transform: scale(1.2);
    animation: scaleMovie 0.2s;
}

#zoom-movie-pic img{
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
}

#zoom-movie-pic .zoom-pic-down{
    width: 100%;
    padding: 3rem 1.5rem 2rem;
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top,rgba(0,0,0, 1),rgba(0,0,0, 0.8),rgba(0,0,0, 0) );
}
#zoom-movie-pic .zoom-pic-down-buttons{
    display: flex;
    justify-content: space-between;
}

#zoom-movie-pic .zoom-pic-down-buttons .buttons-left{
    width: auto; 
    display: flex; 
    color: white;
}

#zoom-movie-pic .zoom-pic-down-buttons .buttons{
    width: 2.5vw;
    height: 2.5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid rgb(175, 175, 175, 0.8);
    background-color: transparent;
    color: #fff;
    padding: 0 0.4vw;
    margin-right: 0.5rem;
    cursor: pointer;
}

#zoom-movie-pic .zoom-pic-down-buttons .buttons:hover{
    border: 2px solid rgba(255, 255, 255, 0.8);
}

#zoom-movie-pic .zoom-pic-down-buttons .buttons#zoom-pic__play-btn{
    color: black; 
    background-color: white; 
}

#zoom-movie-pic .zoom-pic-down-buttons .buttons#zoom-pic__play-btn:hover{
    background-color: rgb(255, 255, 255, 0.89);
}

#zoom-movie-pic_title{
    margin-top: 5px;
}

#zoom-movie-pic .zoom-pic-down-info{
    width: 100% ;
    margin-top: 1rem;
}

#zoom-movie-pic .zoom-pic-down-info .categorie{
    border: 1px solid grey;
    padding: 0 0.6rem;
    margin-right: 1rem;
    color: rgb(26, 184, 26);
    font-weight: 700;
}

@media (max-width: 800px) and (max-aspect-ratio: 1/1){

    #zoom-movie-pic{
        height: 50vw;
        font-size: 1.2rem;
        line-height: 1;
    }
    #zoom-movie-pic .zoom-pic-down-buttons .buttons{
        width: 4vw;
        height: 4vw;
        padding: 0 0.7vw;
        margin-right: 0.7rem;
    }
    
    #zoom-movie-pic_title{
        margin: 1rem 0 1.3rem 0;
    }
    
}  

@media (max-width: 400px) and (max-aspect-ratio: 1/1){

    #zoom-movie-pic{
        height: 75vw;
        font-size: 1.2rem;
    }

    #zoom-movie-pic .zoom-pic-down-buttons .buttons{
        width: 6vw;
        height: 6vw;
        padding: 0 1.2vw;
        margin-right: 0.7rem;
    }
}  
.carousel-container{
    width: 100%;
    height: auto;
    background: linear-gradient(to top,rgba(20,20,20,1)75%,rgba(20,20,20,0.66)87%, rgba(20,20,20,0.33)93%, rgba(20,20,20,0)100%); 
    color: #ffffffea;
    line-height: 1.25vw;
    font-size: 1.1vw; 
    margin-bottom: 3.5vw;
}

.carousel-container.top{
    margin-top: -7vw;
}

.carousel-container .carousel-title{
    padding: var(--padding-container);
    margin-bottom: 1.4rem;
}

.carousel{
    width: 100%;
    height: auto;
    color: #e5e5e5;
    position: relative;
}

.left-arrow, .right-arrow{
    border: none;
    width: var(--right-container);
    outline:none;
    background: rgba(0,0,0,.4);
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content:center;
    align-items: center;
    cursor: pointer;
    z-index: 1;
    opacity: 1;
}

#arrow-space{
    width: var(--right-container);
    height: auto;
}

.right-arrow{
    right: 0;
}

.left-arrow img, .right-arrow img {
    width: 3rem;
    height: 4rem;
    display: none;
}

.left-arrow:hover{
background: rgba(0,0,0,.6);
}
.left-arrow:hover img, .right-arrow:hover img{
    display: block;  
} 

.pics{
    width: 100%;
    height: auto;
    display: flex;
    padding: var(--padding-container);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/*-------------------------media queries-----------------*/

@media (max-width: 800px) and (max-aspect-ratio: 1/1){

    .carousel-container{
        margin-bottom: 6vw;
    }
    

    .carousel-container .carousel-title{
    line-height: 0.7vw;
    font-size: 3vw;
    font-weight: 400;
    margin-bottom: 2rem;
    }

    .left-arrow img, .right-arrow img {
        width: 1.5rem;
        height: 2rem;
    }
}

@media (max-width: 400px) and (max-aspect-ratio: 1/1){
    
    .carousel-container .carousel-title{
    font-size: 4vw;
    }

}
#loading {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #141414;
}

#loading img{
    width: 12rem;
    animation: rotate 1s infinite;
    animation-timing-function: linear;
    margin-bottom: 20rem;
}


#footer{
max-width: 980px;
margin: 10rem auto 0;
padding-bottom: 3.5rem;
}

.footer_container-links{
    font-size: 1.3rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 0 1.4rem 0;
}

.footer_link{
    min-width: 25%;
    list-style-type: none;
    margin-bottom: 1.6rem;
}

.footer_link a span{
    color: grey;
}

.footer_link a span:hover{
    text-decoration: underline;
}

.footer_signature{
    display: inline;  
    font-size: 1.3rem;
    padding: 0.3rem;
    border: 1px solid rgb(65, 65, 65);
    cursor: pointer
}

.footer_signature a span{
    color: grey;
}

.footer_signature:hover a span{
    color: rgb(201, 201, 201);
}

.icon-github{
    width: 3vw;
    height: 3vw;
    margin-left: 0;
    margin-bottom: 1rem;
    background: url("https://i.ibb.co/7YJv91t/Github.png");
    background-size: cover;
}

.icon-github:hover{
    filter: brightness(2);
}

/*-------------------------media queries-----------------*/

@media (max-width: 800px) and (max-aspect-ratio: 1/1){
    
    #footer{
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .footer_container-links{
        display: none;
    }

    .icon-github{
        width: 6vw;
        height: 6vw;
        margin-bottom: 1rem;
    }
}

@media (max-width: 400px) and (max-aspect-ratio: 1/1){

    .icon-github{
        width: 8vw;
        height: 8vw;
        margin-bottom: 1rem;
    }

}
#my-list-page{
    padding-top: 7rem;
}

@media (max-width: 800px) and (max-aspect-ratio: 1/1){

#my-list-page{
    padding-top: 14rem;
}

}
#error {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #141414;
}

.error__text{
    color: #fff;
    display: flex;
    justify-content:center;
    align-items: center;
    animation: opacity 0.3s;
}
.error__text span{
    font-size: 3.5vw;
    letter-spacing: 1px;
    margin-right: 3rem;
}
.error__text img{
    filter: invert();
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    font-size: 62.5%;
}

@font-face {
    font-family: 'Netflix Sans';
    font-weight: 400;
    font-display: optional;
    src: url(https://assets.nflxext.com/ffe/siteui/fonts/netflix-sans/v3/NetflixSans_W_Rg.woff2) format('woff2'),url(https://assets.nflxext.com/ffe/siteui/fonts/netflix-sans/v3/NetflixSans_W_Rg.woff) format('woff')
}

#app {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    font-family:'Netflix Sans', Arial, Helvetica, sans-serif;
    background: #141414;

    -webkit-tap-highlight-color: rgba(0,0,0,0); /* Quitar fondo azul al TOUCH en mobile */
    -webkit-tap-highlight-color: transparent;

    --padding-container: 0 5.1rem;
    --right-container: 5.1rem;
}

.d-none{
    display: none;
}

/*----------------Media queries---------------------*/

@media (max-width: 800px) and (max-aspect-ratio: 1/1){

    #app {
    --padding-container: 0 3rem;
    --right-container: 3rem;
    }
}

@media (max-width: 400px) and (max-aspect-ratio: 1/1){

    #app {
    --padding-container: 0 2.5rem;
    --right-container: 2.5rem;
    }
}
/*----------------Keyframes----------------------*/

@keyframes opacity{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
    
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes scaleSerie {
    from{
        transform: scale(1);
    }
    to{
        transform: scale(1.3);
    }
}

@keyframes scaleMovie {
    from{
        transform: scale(1);
    }
    to{
        transform: scale(1.2);
    }
}

@keyframes miniscaleXY {
    from{
        transform: scale(1);
    }
    to{
        transform: scale(1.1);
    }
}


