.list-item { display: flex; flex-direction: column; text-align: center; position: relative; cursor: pointer; margin-bottom: 15px; &:hover { .list-item__rating, .list-item__addtolist { visibility: visible; } .list-item__img { opacity: 0.5; } } .list-item__rating, .list-item__addtolist { &:hover { .list-item__img { opacity: 0.5; } } } &__rating-container { width: 100%; display: flex; justify-content: center; } &__rating { padding: 5px; background-color: black; display: inline-flex; align-items: center; margin-top: 15px; border-radius: 5px; position: absolute; top: 0%; visibility: hidden; z-index: 40; } &__rank { font-size: 1.1rem; font-weight: lighter; margin-left: 7px; margin-top: 3px; color: white; } &__ten { font-size: 14px; margin-top: 4px; color: white; } &__imdb { width: 50px; } &__star { width: 30px; } &__addtolist { position: absolute; color: white; bottom: 16%; text-shadow: 5px 5px 6px black; z-index: 40; cursor: pointer; visibility: hidden; display: flex; justify-content: center; width: 100%; align-items: center; } &__remove-icon { display: inline; font-size: 2.2rem; &:hover { transition: all 0.25s ease-in; transform: scale(1.25); } } &__img-box { display: flex; width: 100%; justify-content: center; } &__img { width: 240px; height: 360px; cursor: pointer; transition: opacity 0.4s, ease 0.6s; @media screen and (max-width: 800px) { width: 200px; height: 320px; } } &__title { font-size: 1.1rem; margin-bottom: 10px; } }