.product_item {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    
    gap: 1.5rem;
}

@media screen and (min-width:941px){
    .product_item {
        align-items: flex-start;
    }
}
@media screen and (max-width:940px){
    .product_item{
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 1335px) and (min-width: 481px) {
    .product_item {
        padding: 0px 30px;
    }
}

@media screen and (max-width: 480px) {
    .product_item {
        padding: 10px 10px;
    }
    .product_image {
        max-width: 320px;
    }
    .product_image img {
        width: 100%;
    }
}

.table {
  width: fit-content;
  border-collapse: collapse;
}



.table td,
.table th {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 16px;
}

.table th {
  background-color: #92c9e6;
  color: #ffffff;
}


@media screen and (min-width:481px){
    .table tbody tr:nth-child(even) {
      background-color: #d1e8f5;
    }
}

.tr_green td,
.tr_green th{
    background: green !important;
}

.tr_green td {
    color: #fff !important;
}

/*responsive*/

@media screen and (max-width: 480px) {
  .table thead {
    display: none;
  }

  
  .table {
    display: inline-grid;
    width: 100%;
  }
  .table td {
    display: block;
    width: 100%;
  }
  .table tr{
      display: flex;
      flex-direction: column;
  }
  .table tr {
    margin-bottom: 15px;
  }
  .table th ,
  .table td {
    /* padding-left: 50%; */
    text-align: center;
    position: relative;
  }
  .table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 15px;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
  }
}
