
  .booksContainer {
    padding-top: 1em;
    
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  
  .booksContainer > .bookItem {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 2 - 1.5em);
    flex: 0 0 calc(100% / 2 - 1.5em);
    margin-right: 1.5em;
  }
  
  .booksContainer > .bookItem img {
    width: 100%;
  }

  .bookItem {
    margin-right: 1em;
    
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
  }
  
  .bookItem > a {
    min-height: 12em;
    width: 100%;
  }
  
  .bookItem .imageContainer {
    width: 100%;
  }
  
  .bookItem > div {
    text-align: left;
  }
  
  .bookTitle {
    color: #333333;
  }
  
  .bookTitle > h3 {
    font-family: "OPEN-SANS-SEMIBOLD", sans-serif;
    font-size: 1rem;
    font-weight: normal;
  }
  
  .bookPrice {
    font-weight: bold;
    /* font-size: 1.2em; */
  }
  
  .old_price {
    display: block;
    margin-top: 0.2em;
    color: #a4a4a4;
    text-decoration: line-through;
  }
  
  .discountPrice {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0.05em 0.4em;
    color: #ffffff;
    background: #53c274;
  }
  
  #favouriteBookActions {
    margin: 1em 0em;
    display: flex;
    column-gap: 0.5em;
  }

  @media screen and (min-width: 350px) {
    .bookItem > a {
      min-height: 17em;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: end;
      -ms-flex-align: end;
      align-items: flex-end;
      margin-bottom: 0.5em;
    }
  }

  @media screen and (min-width: 600px) {
    .booksContainer > .bookItem {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 3 - 1.5em);
      flex: 0 0 calc(100% / 3 - 1.5em);
    }
  }

  @media screen and (min-width: 850px) {
    .booksContainer > .bookItem {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 5 - 1.5em);
      flex: 0 0 calc(100% / 5 - 1.5em);
    }
  }

  @media screen and (min-width: 1000px) {
    .booksContainer > .bookItem {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 6 - 1.5em);
      flex: 0 0 calc(100% / 6 - 1.5em);
    }
  }
 
