*{
    /* border: solid white 2px; */
}

.product-body{
    display: flex;
    flex-direction: column;
}

/* CART */
.cart {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 100%;
    justify-content: center;
    position: inherit;
    padding: 10vh 40vh;
  }
  /* cart header */
  .cart-header {
    min-width: 600px;
    display: flex;
    justify-content: space-evenly;
    padding: 50px 0;
    text-transform:uppercase ;

  }

  .column{
    /* padding: 0 50px;
    text-align: end; */
  }
  /* cart items */
  .cart-items {
    min-width: 600px;
    max-height: calc(100vh - 247px);
    overflow-y: auto;
    overflow-x: hidden;
  }
  /* cart item */
  .cart-item {
    display: flex;
    justify-content: space-around;

    padding: 10px 0;
  }

  .cart-item-space {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cart-item-image{
    display: flex;
    flex-direction: column;
    width: 300px;
  }

  .cart-item-image img{
    height: 200px;
    width: 300px;
  }

  .button-plus{
    width: 60px;
    border-radius: 50%;
    /* left: 50%;
    right: 50%; */
    /* position: relative; */
    height: auto;
    /* background-image: url("icons/plus.png"); */
    display: flex;

  }

  .button-min{
    width: 60px;
    border-radius: 50%;
    /* left: 50%;
    right: 50%;
    position: relative; */
    height: auto;
    /* background-image: url("icons/plus.png"); */
    display: flex;
  }

  button{
    cursor: pointer;
  }

  .button img{
    /* height: 30px;
    width: 30px; */
  }

  .cart-item-aantal{
    display: flex;
    height: 60px;
    width: 260px;
    justify-content: space-evenly;
    padding: 20% 0 ;
  }

  .cart-item-aantal-input{
    color: black;
    font-size: 2rem;
    max-width: 2rem;
  }

  .cart-item-info{
    padding: 20% 0 ;
  }

  /* item info */
  .cart-item .item-info {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.6);

    border-radius: 0 10px 10px 0;

    padding: 10px;
  }
  .cart-item .item-info:hover {
    background-color: rgba(255, 0, 0, 0.6);
    cursor: pointer;
  }
  .cart-item .item-info img {
    width: 75px;
  }
  /* unit price */
  .cart-item .unit-price {
    flex: 1;
    font-size: 1.2rem;
  }
  /* units */
  .cart-item .units {
    flex: 1;
  }
  .cart-item .units .number {
    margin: 0 10px;

    font-size: 1.2rem;
  }
  .cart-item .units .btn {
    width: 20px;
    height: 20px;

    background-color: rgb(39, 39, 39);

    border-radius: 50%;

    font-weight: bold;

    cursor: pointer;

    -webkit-user-select: none; /* Chrome all / Safari all */
    -moz-user-select: none; /* Firefox all */
    -ms-user-select: none; /* IE 10+ */
  }

  /* ////////////////////////////////////////////////////////////////////////////cart footer //////////////////////////////////////////*/
  .cart-footer {
    min-width: 600px;
    background-color: rgb(255, 21, 21);
    bottom: 0;
  }
  .cart-footer div {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 15px 0;

    font-size: 2rem;
  }
  .cart-footer .subtotal {
    background-color: rgb(0, 0, 0);
  }
  .cart-footer .checkout {
    background-color: rgb(53, 53, 53);

    cursor: pointer;
  }

  /* //////////////////////////////////////////////////////////////PRODUCTS///////////////////////////////////////// */

.products-list{
    /* margin-top: 50px; */
    padding: 50px 0 ;
    display: flex;
    justify-content: center;
}


  .products {
    height: 100%;
    width: 70% ;

    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: repeat(3, 3fr);
  }
  .products img {
    width: 200px;
    /* filter: drop-shadow(30px 10px 4px #ddd); */
  }
  .products .item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin: 50px 0;
  }
  .products .item .item-container {
    width: 250px;
    height: 90%;
    background-color: rgb(58, 58, 58);

    border-radius: 25px;

    position: relative;
  }
  .products .item .item-container .item-img {
    width: 100%;
    height: 60%;

    background-color: rgb(24, 24, 24);

    /* border: 1px solid rgb(255, 255, 255); */
    border-radius: 25px 25px 0 0;

    display: flex;
    justify-content: center;
    align-items: center;
  }
  .products .item .item-container .desc {
    width: 100%;
    color: #fff;
    font-size: 2rem;
    padding: 10px;
  }
  .products .item .item-container .add-to-cart {
    background-color: rgb(255, 255, 255);

    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: 13px;
    right: 10px;

    padding: 8px;

    border-radius: 50%;

    cursor: pointer;
  }
  .products .item .item-container .add-to-wishlist {
    background-color: rgba(255, 21, 21, 0.7);

    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: 10px;
    right: 60px;

    padding: 5px;

    border-radius: 50%;

    cursor: pointer;
  }
  .products .item .item-container .add-to-cart img {
    width: 80px;
    height: 80px;
  }
  .products .item .item-container .add-to-wishlist img {
    width: 80px;
    height: 80px;

    padding: 5px;
  }


  @media only screen and (max-width: 1168px) {

    .cart{
      display: flex;
      justify-content: center;
      padding: unset;
      width: 90%;
      position: unset;
      font-size: 3rem ;
      margin: 0 auto;
    }

    .winkelmand{
      display: none;
      /* position: fixed;
      top: 5rem; */
      box-shadow: 0px 0px 15px black;
    }

    .products{
      display: flex;
      flex-direction: column;
      width: max-content;
    }

    .products .item .item-container{
      width: 90%;
      background-color: rgb(46, 46, 46);
    }

    .products img{
      width: inherit;
    }

    .products .item .item-container .add-to-wishlist {
      top: 30px;
      right: 150px;
      padding: 15px;
      border-radius: 50%;

    }

    .products .item .item-container .add-to-cart {
      background-color: rgb(255, 255, 255);
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
      top: 30px;
      right: 10px;
      padding: 20px;
      border-radius: 50%;
      cursor: pointer;
    }

}
