  .productoverview {
    display: grid;
    grid-template-columns: repeat(6, 1fr);;

  }

  .item {
    display: inline-block;
    width: 300px;
    height: 550px;
    padding: 5px;
    overflow: hidden;
    border: 2px solid #000;
    border-radius: 20px;
    z-index: 1;
  }
  .iteminfo {
    display: inline-block;
    width: 100%;
    height: 500px;
  }
  .productdiv {
    position: inline-block;
    vertical-align: top;
    top: 0;
    left: 0;
    background: grey;
    width: 200px;
    height: 200px;
  }

  #product_image {
    display: inline-block;
    vertical-align: left;
    padding: 0;
    width: 200px;
    height: 200px;
    overflow: hidden;
    position: relative;
    border: 1px solid #000;
  }
  .shoppingcart_add {
    display: flex;
    height: 30px;
    width: 60px;
  }
  .btn_add {
    display: flex;
    width: 200 !important;
    padding: 0;
    z-index: 2;
    color: var(--royal-blue);
    font-weight: bold;
    background: white;
  }
  .productinfo {
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px;
    overflow: auto;

  }

  .adminpanel {
    display: block;
    background: var(--housestyle-green);
  }
