
.ela-new-contain {
  width: 100%;
}
.books-row {
  overflow: scroll;
  overflow-y:hidden;
  width: 100%;
  margin-top:20px;
}
.books {
  transition: 450ms transform;
  font-size: 0;
  white-space: nowrap;
  margin: 45px 0;
  padding-bottom: 10px;
}
.book {
  position: relative;
  display: inline-block;
  width: 124.138px;
  height: 180px;
  margin-right: 10px;
  font-size: 20px;
  cursor: pointer;
  transition: 450ms all;
  transform-origin: center left;
}
.cover-img {
  width: 124.138px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.book-details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  font-size: 10px;
  opacity: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
  transition: 450ms opacity;
}
.book-details::after,
.book-details::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
}
.book-details::after {
  margin-top: -25px;
  margin-left: -25px;
  width: 50px;
  height: 50px;
  border: 3px solid #ecf0f1;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}
.book-details::before {
  content: url('./cela-color-sign.svg');
  left: 0;
  width: 25px;
  height: auto;
  margin-left: 49px;
  margin-top: -16px;
  text-align: center;
  z-index: 2;
}
.book:hover .book-details {
  opacity: 1;
}
.book-title,
.book-author {
  position: absolute;
  padding: 5px 2px;
  background: white;
  opacity: .85;
  text-align: center;
  width: 100%;
  margin: auto;
  white-space: normal;
  line-height: 1em;
  color:#5f5f5f;
}
.book-title {
  bottom: 30px;
}
.book-author {
  top: 30px;
  font-size:.9125em;
}
.books:hover {
  transform: translate3d(-2.5px, 0, 0);
}
.books:hover .book {
  opacity: 0.5;
}
.books:hover .book:hover {
  transform: scale(1.5);
  opacity: 1;
}
.book:hover ~ .book {
  transform: translate3d(62.069px, 0, 0);
}