.books-detail__book{
    min-height: 600px;
    margin-bottom: 50px;
}
.books-detail__book .wowbook-container{
    z-index: 9;
}
.books-detail__book .wowbook-controls, .books-detail__book.wowbook-share-buttons, .wowbook-nav{
    background-color: #e2001a;
    background-image: none;
}
.books-detail__book .wowbook-thumbnails{
    border-bottom: 0;
}
.books-detail__book .wowbook-thumbnails .wowbook-button{
    background-color: #e2001a;
    background-image: none;
}


.books-detail__book-volumes-wrap{
  max-width: 1024px;
  margin: 44px auto 32px;
  width: 100%;
  padding-left: 39px;
  padding-right: 39px;
}
.books-detail__book-volumes-row{
  margin-left: -65px;
  margin-right: -65px;
}

.books-detail__book-volume{
  margin-bottom: 40px;
  padding: 0 65px;
  display: inline-block;
}
.books-detail__book-volume:last-child{
  margin-right: 0;
}
.books-detail__book-volume__cover{
  width: 100%;
  max-width: 343px;
  height: auto;
  margin-bottom: 23px;
}
.books-detail__book-volume__cover img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  box-shadow: 0 0 5px #3f3f3f;
}
.books-detail__book-volume__description{
  font-family: pf_din_text_cond_promedium;
  font-size: 24px;
  letter-spacing: 1.65px;
  text-transform: uppercase;
  margin-bottom: 54px;
}
.books-detail__book-volume__description span{
  color: #e2001a;
}
.books-detail__book-volume__link{
  display: inline-block;
  position: relative;
  padding: 14px 36px;
  font-family: pf_din_text_cond_promedium;
  font-size: 16px;
  color: #fff;
  letter-spacing: 1px;
  text-decoration: none;
  background-color: #e2001a;
  border-radius: 2px;
  transition: all 0.4s;
}
.books-detail__book-volume__link span{
  position: relative;
}
.books-detail__book-volume__link:hover{
  text-decoration: none;
  color: #e2001a;
}
.books-detail__book-volume__link:before{
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  background: #fff;
  transform: scale(0);
  opacity: 0;
  transition: all 0.4s;
}
.books-detail__book-volume__link:hover:before{
  transform: scale(1);
  opacity: 1;
}
@media screen and (max-width: 640px){
  .books-detail__book-volume__description{
    margin-bottom: 10px;
  }
}