body {
  overflow: auto;
}
section {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  width: 400px;
  height: 112px;
  border-radius: 6px;
  justify-content: space-between;
}
.product {
  display: grid;
  border-radius: 5px;
  row-gap: 10px;
  box-shadow: #0000006b 0px 2px 5px 1px;
  padding: 8px;
  width: 300px;
  grid-template-rows: auto auto auto auto 1fr;
}
.description {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/*p {*/
/*  font-style: normal;*/
/*  font-weight: 500;*/
/*  font-size: 14px;*/
/*  line-height: 20px;*/
/*  letter-spacing: -0.154px;*/
/*  color: #242d60;*/
/*  height: 100%;*/
/*  width: 100%;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  box-sizing: border-box;*/
/*}*/

p{
  font-size: 14px;
  padding: 0;
  margin: 5px;
}
img {
  border-radius: 6px;
  margin: 10px;
  width: 54px;
  height: 57px;
}
h3,
h5 {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.154px;
  color: #242d60;
  margin: 0;
}
h5 {
  opacity: 0.5;
}
button {
  height: 36px;
  background: #556cd6;
  color: white;
  width: 100%;
  font-size: 14px;
  border: 0;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.6;
  border-radius: 0 0 6px 6px;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
}
button:hover {
  opacity: 0.8;
}

.sub_container{
  max-width: calc(100vw - 50px);
  display: grid;
  grid-gap: 25px;
  margin: 25px 25px 25px 25px;
  grid-template-columns: repeat(auto-fill, 300px);
  grid-row-gap: 20px;
  justify-items: center;
  justify-content: center;
}

.individual_product{
  grid-column: -1/1;
}

.tabs{
  width:min-content;
  margin:auto;
  display:grid;
  grid-gap:20px;
  grid-template-columns: auto auto;
}

.tab_item{
  white-space: nowrap;
  cursor:pointer;
  transition: 0.2s;
}

.tab_item:hover::after{
  width: 100%;
  /*border-bottom: 3px solid #5edd60;*/
}

.tab_active{
  border-bottom: 3px solid #5edd60;
}

.tab_item::after{
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: #5edd60;
  transition: .3s;
  margin:auto;
}

.tab_active::after{
  height: 0;
  display: none;
}

.tab_content_active{
  display: grid !important;
}

.sub_container{
  display: none;
}

.price{
  font-weight: bold;
  font-size: 20px;
  padding-top: 20px;
}

.product_specs{
  margin-top: 20px;
}

.checkout_btn{
  width: 100%;
  border: 1px solid #5edd60;
  padding: 8px;
  height: min-content;
  border-radius: 5px;
  text-align:center;
  cursor: pointer;
  color: #5edd60;
  transition: 0.2s;
  align-self: end;
}

.checkout_link{
  align-self: end;
  text-decoration: none;
}

.checkout_link:hover{
  text-decoration: none;
}

.checkout_btn:hover{
  background: #5edd60;
  color: black;
}

.product_header{
  height: 35px;
}
.product_subheader{
  height: 45px;
}

.total{
  text-align: end;
}

.total_label{
  font-size: 1.1rem;
  color: grey;
}

.total_price{
  font-size: 1.4rem;
}