@keyframes moverCartel {
    from {
        left:70%;
    }
    to {
        top: 0%;
        left:20%;
    }
}


@keyframes opacityUp {
    from {
        opacity: 0%;
    }
    to {
        opacity: 100%
    }
}

.infoPelicula {
    width: 100%;
    height: 100%;    
}

.moverCartel {
    position: absolute;
    animation: moverCartel;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: 0;
    animation-fill-mode: forwards;

    display: flex;
    flex-direction: column;
    align-items: center;
}

#fondoComentarios {    
    color: var(--text-color);
    position:relative;
    top: 0;
    left: 60%;
    width: 40%;
    height: 100%;
}

#puntuacion {
    position: relative;
    top: 0;
    left: 0%;
    width: 40%;
    height: 100%;

    color: white;
    position: relative;
    padding: .5em;
    width: 50%;
    height: 100px; 
}

#comentarios {
    position:relative;    
    width: 40%;
    height: 100%;
    top:-100%;
    left: 60%;
    
    text-align: center;
}


#compras {
    
    opacity: 0%;
    animation-name: opacityUp;
    animation-delay: 1.5s;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;

    position: absolute;
    
    bottom: -100%;
    width: 50%;
    height: 100px;    
}

form .inputBox label {
    color:white;
}

form .inputBox input {
    text-align: center;
    width: 100%;
    padding: 10px 0;
    font-size: 16px;    
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background:  rgba(65, 135, 246, .5);
}

form input[type="submit"] {  
    text-align: center;
    font-size: .6em;
    padding: .5em;
    background: #4187f6;
    border-radius: 5%;  
    width: 100%;
    box-shadow: 2 10 5 black;
}

#listadecomentarios {
    width: 100%;    
    color:white;
    font-size: .8em;
    padding: 1em;
    display:flex;
    flex-direction: column;
    align-items: flex-start;
}

#comentarioindividual {
    width: 100%;    
    display:flex;    
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: .5em;
}
#comentarioindividual:nth-child(even) {
    background: var(--bg-color);
}
#comentarioindividual:nth-child(odd) {
    background: var(--bg-color-transparent);
}

.star img { 
    height: 40px;
    width: 40px;
}

.star img[class="active"] {
    filter: invert(1);
}

@media only screen and (max-width: 768px) {

    .infoPelicula {
       display:flex;
       flex-direction: column;
       width: 100%;       
    }
    #puntuacion, #comentarios {
        position: static !important;
        width: 100%;
    }

    #compras {
        position: absolute;
        left: 0px;
        top: 300px;
        width: 100%;
    }

    .moverCartel {
        position: absolute;
        left: 50% !important;
        top: 1.1em;
        animation: none;
    }

    #fondoComentarios {        
        visibility:hidden;
    }

    #comentarios {
        text-align: center;
        display:flex;
        flex-direction: column;        
    }
    
    span#puntuacion {
        display:flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    
    .star img {
        height: 20px;
        width: 20px;
    }
}