/* Styles the New Books widget on the homepage */

#new-books {
  overflow: hidden;
}

#new-books-wrapper {
  position: absolute;
  height: 150px;
  vertical-align: top;
  padding: 0;
  margin: 0;
  -webkit-transform: translateZ(0);
  background: transparent;
  overflow-y: hidden;
}

.new-book {
  display: inline-block;
  position: relative;
  background: #ffffff;
  margin: 0;
  padding: 16px 32px;
  vertical-align: top;
  max-width: 100%;
}

.new-book-img {
  text-align: center;
  width: 100px;
  height: 127px;
  position: absolute;
}

.new-book-img img {
  max-height: 100%;
  max-width: 100px;
}

.new-book-format {
  display: none;
}

.new-book-info {
  margin-left: 116px;
}

.new-book-author {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.new-books-nav {
  position: absolute;
  top: 50%;
  height: 18px;
  width: 24px;
  margin-top: -9px;
  text-align: center;
  cursor: pointer;
  background-position: 4px 0px;
  background-repeat: no-repeat;
  z-index: 1000;
}

.new-books-nav:hover {
  background-position: 4px -18px;
}

#new-books-prev {
  background-image: url('chevron-left.png');
  left: 0;
}

#new-books-next {
  background-image: url('chevron-right.png');
  right: 0;
}

 /* Mobile styles */
@media only screen and (max-width: 640px) {
  #new-books-wrapper {
    text-align: center;
    height: 190px;
    overflow: visible;
  }
  
  .new-book-img {
    height: auto;
  }
  
  .new-book h5,
  .new-book p {
    display: none;
  }
  
  .new-book-img {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .new-book-img img {
    max-width: 100%;
    max-height: 185px;
  }
}