#main .product-landing-page.photobook {
    margin-top: 0px;
    padding-top: 30px
}
.product-landing-page .banner .product-header h1 {
    font-size: 40px;
}
.discount-code-bar {
    width: 100%;
    min-height: 30px;
    font-size: 25px;
    font-weight: bold;
    color: white;
    background-color: #ff6114;
    text-align: center;
    word-wrap: break-word;
    padding: 10px 20px;
}
.discount-code-bar .code{
    text-decoration: underline;
    /* text-transform: uppercase; */
}
.discount-disclaimer {
    padding: 20px;
    font-style: italic;
}
.product-landing-page .content-container {
    display: flex;
    margin-top: 20px;
    margin-bottom: 100px;
}

.product-landing-page .banner {
    display: flex;
    box-sizing: content-box;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    z-index: 2;
    width: 100%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
.product-landing-page .banner .product-header {
    display: flex;
    flex-direction: column;
}
.product-landing-page .banner .product-header h1{
    font-size: 47px;
}
.product-landing-page .banner .product-header .price-container {
    display: flex;
    font-size: 25px;
}
.product-landing-page .banner .product-header .price-container .price.old {
    text-decoration: line-through;
    color: grey;
    font-weight: 200;
}
.product-landing-page .banner .product-header .price-container .currency.old {
    text-decoration: line-through;
    color: grey;
    font-weight: 200;
}
.product-landing-page .banner .product-header .price-container .from {
    text-transform: capitalize;
}
.product-landing-page .banner .product-header .price-container .price {
    color: #ff6114;
    font-weight: 800;
}
.product-landing-page .banner .product-header .price-container .currency {
    color: #ff6114;
    font-weight: 800;
}
.product-landing-page .banner .product-photo {
    margin-left: auto;
}
.product-landing-page .banner .product-photo img {
    width: 100%;
    width: auto;
    height: 300px;
}
.product-landing-page .banner .call-to-action {
    margin-top: 20px;
}
.product-landing-page .banner .call-to-action a {
    padding: 25px 40px;
    transition-duration: .4s;
    transition-property: background,background-color,color,opacity,border-color,box-shadow;
    display: inline-block;
    max-width: 100%;
    padding: 15px 25px;
    color: #fff!important;
    font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 1.43;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none!important;
    text-shadow: none;
    letter-spacing: .05em;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    background: 0 0;
    border: 2px solid #ff6114;
    color: #ff6114!important;
    line-height: 16px;
}
.product-landing-page .banner .call-to-action a:hover {
    background: #ff6114;
    color: #fff!important;
    opacity: 1;
    -webkit-box-shadow: none;
    box-shadow: none;
}
#tp-carusell .trustpilot-widget.gbox {
    background: none;
    width: 90%;
    margin: auto;
}



/* CAROUSEL STYLES */
  .product__images {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .product__slider-wrap {
    max-width: 500px;
    min-height: 100px;
    display: flex;
    align-items: center;
  }
  
  .product__slider {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  
  .product__image {
    max-width: 180px;
    max-height: 100px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    margin: 0.25rem;
  }
  
  .product__image:first-child {
    margin-left: 0;
  }
  
  .product__image:last-child {
    margin-right: 0;
  }
  
  .product__image:hover {
    opacity: 1;
  }
  
  .product__image--active {
    opacity: 1;
  }
  
  .product__slider::-webkit-scrollbar {
    height: 10px;
  }
  
  .product__slider::-webkit-scrollbar-thumb {
    background-color: #ff6114;
    border-radius: 50px;
  }
  #main-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    cursor: pointer;
  }
  /* WAVES IN THE BACKGROUND */

  @media (max-width: 768px) {
    #main-image {
        width: 200px;
        height: 200px;
        object-fit: cover;
        cursor: pointer;
    }
    .discount-code-bar {
        margin-top: 71px;
    }
    .product-landing-page .banner .product-header .description {
        line-height: 31px;
    }
    .product-landing-page .banner {
        flex-direction: column;
        width: 90%;
    }
    #main-image {
        display: block;
    }
    .product-landing-page .banner .product-photo {
        margin: auto;
        margin-top: 50px;
    }
    .product__slider {
        max-width: 80vw;
    }
    .product-landing-page .banner .product-photo .product__slider img {
        height: 100px;
        width: auto;
    }
    .product-landing-page .banner .product-photo img.product__main-image {
        height: 250px;
        width: auto;
    }
    .product-landing-page .content-container {
        margin-top: 20px;
    }
  }