.tab-container .tab{
    text-align: center;
}

.tab-container .tab .tab-button{
  font-size: 1.2125em;
}

.tab-container .tab .active{
  font-size: 1.2125em;
  background-color: #FFD62C;
}
@media (max-width: 767px) {
  .tab-container .tab .tab-button{
  font-size: .8125em;
  padding: 10px 15px;
  }

  .tab-container .tab .active{
    font-size: .8125em;
    padding: 10px 15px;
    background-color: #FFD62C;
  }
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: inherit;
    text-align: center;
  }
  
  .product-grid-item {
    position: relative;
    width: calc(33.33% - 10px);
    margin-bottom: 20px;
    padding: 10px;
    margin: 5px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }
  
  .product-grid-item.in-stock:hover .hover-image {
    opacity: 1;
  }
  
  .product-grid-item.out-of-stock {
    opacity: 0.5;
  }
  
  .first-image{
    width: 100%;
  }
  .hover-image {
    position: absolute;
    top: 10px;
    left: 0;
    opacity: 0;
  }
  
  .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px;
    background-color: #ff0000;
    color: #fff;
  }
  
  .title {
    margin-top: 10px;
    font-weight: bolder;
    color:#3D3D3D;
  }
  
  .price {
    margin-top: 5px;
  }
  
  .load-more {
    display: block;
    margin: auto;
    font-weight: bolder;
    font-size: 1.2125em;
  }
  
  .add_to_cart_inline {
    border: 0px solid #ccc !important;
  }
  .add_to_cart_button{
    display: block !important;
    margin-top: 20px !important;
  }
  .related_product{
    text-align: center;
  }
  .aux-primary .content .product .related {
    display: none;
  }
  .woocommerce .quantity .qty{
    height: 35px;
  }