/* Gallery Page */

.cart-wrapper {
  display: table;
  background-color: #005696;
  width: 100%;
}
.cart-container {
  display: table;
  width: 90%;
  margin: 0 auto;
  min-height: 1080px;
  background-image: url('/assets/img/pti_photos/jed/portfolio/bottom_parallax_inside.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.imagerow{
  display: table-row;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-around;
}
.productwindow {
  display: table-cell;
  vertical-align: top;
  justify-content: space-around;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 20%;
  min-width: 275px;
  background-color: #FFFFFF;
  box-shadow: 2px 2px 6px 2px #555;
}
/*
Featured Categories
*/
.categories {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  width: 100%;
  justify-content: space-around;
}
.categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.categories li {
    display: inline-block;
    text-align: center;
    min-width: 90px;
    width: 95%;
    height: auto;
    max-height: 300px;
    margin: 5px;
    font-weight: lighter;
    opacity: 0.75;
    transition: 0.5s;
    cursor: pointer;
}
.categories li:hover {
  opacity: 1;
  transform: scale(1.05);
  transition: 0.5s;
}
.categories_photo {
  text-align: center;
}

.categories li:hover {
  opacity: 1;
  transform: scale(1.05);
  transition: 0.5s;
}

.categories_photo img {
  margin-top: 5px;
  min-width: 90px;
  width: 90%;
  height: auto;
  max-height: 275px;
}

/*
Wrap the cart in Border
*/

.cart_wrapper {
  width: 95%;
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0 auto;
  background-color: white;
}

.cart-inner {
  padding: 10px;
  margin: 5px;
}

.printwindow {
  display: table-cell;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 600px;
}

.other-items-wrapper {
  position: absolute;
  background-color: #08477C;
  width: 100%;
}
.other-items-container {
  position: relative;
  background-color: yellow;
  width: 80%;
  margin: 0 auto;
}
