.flex-container {
  width: 100%;
  max-width: 1240px;
  display: flex;
  margin: auto;
  padding: 0 15px;
}
@media only screen and (max-width: 768px) {
  .flex-container {
    padding: 0 10px;
  }
}
.flex-container.row {
  flex-direction: row;
}
.flex-container.column {
  flex-direction: column;
}
.flex-container.h-center {
  justify-content: center;
}
.flex-container.v-center {
  align-items: center;
}

.hub-button, .category .products div.product .button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  height: 40px;
  min-width: 150px;
  max-width: 455px;
  overflow: hidden;
  border-radius: 4px;
  border: none;
  padding: 10px 25px;
  cursor: pointer;
  text-decoration: none;
  color: #ffffff;
  opacity: 1;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.hub-button.disabled, .category .products div.product .disabled.button, .hub-button[disabled], .category .products div.product [disabled].button, .hub-button[disabled="disabled"], .category .products div.product [disabled="disabled"].button {
  opacity: 0.7;
  cursor: not-allowed;
}
.hub-button .hub-button__label, .category .products div.product .button .hub-button__label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #ffffff;
}
.hub-button:hover, .category .products div.product .button:hover {
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.hub-button.small, .category .products div.product .small.button {
  font-size: 0.7rem;
  padding: 10px 25px;
}
.hub-button.rounded, .category .products div.product .rounded.button {
  border-radius: 100px;
}
.hub-button.blue, .category .products div.product .blue.button {
  background: #06a2dd;
}
.hub-button.blue:hover, .category .products div.product .blue.button:hover {
  background: #1dbdf9;
}
.hub-button.blue.outline, .category .products div.product .blue.outline.button {
  background: transparent;
  border: 1px solid #06a2dd;
  color: #06a2dd;
}
.hub-button.blue.outline:hover, .category .products div.product .blue.outline.button:hover {
  background: #06a2dd;
  color: #ffffff;
}
.hub-button.white, .category .products div.product .white.button {
  background: #ffffff;
  color: #ffffff;
}
.hub-button.white .hub-button__label, .category .products div.product .white.button .hub-button__label {
  color: #ffffff;
}
.hub-button.white:hover, .category .products div.product .white.button:hover {
  background: #06a2dd;
  color: #ffffff !important;
}
.hub-button.white:hover .hub-button__label, .category .products div.product .white.button:hover .hub-button__label {
  color: #ffffff;
}
.hub-button.white.outline, .category .products div.product .white.outline.button {
  background: transparent;
  border: 1px solid #ffffff;
}
.hub-button.white.outline:hover, .category .products div.product .white.outline.button:hover {
  background: rgba(255, 255, 255, 0.3);
}
.hub-button.big, .category .products div.product .big.button {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0px 50px;
}
.hub-button.big .hub-button__label, .category .products div.product .big.button .hub-button__label {
  font-size: 0.9rem;
}
.hub-button.orange, .category .products div.product .button {
  background: #f59900;
  color: #ffffff;
}
.hub-button.orange:hover, .category .products div.product .button:hover {
  background: #ffaf29;
}
.hub-button.orange.outline, .category .products div.product .outline.button {
  border-color: #f59900;
}
.hub-button.orange.outline .hub-button__label, .category .products div.product .outline.button .hub-button__label {
  color: #f59900;
}
.hub-button.orange.outline:hover, .category .products div.product .outline.button:hover {
  background: #f59900;
}
.hub-button.orange.outline:hover .hub-button__label, .category .products div.product .outline.button:hover .hub-button__label {
  color: #ffffff;
}
.hub-button.green, .category .products div.product .green.button {
  background: #99ca3c;
}
.hub-button.green:hover, .category .products div.product .green.button:hover {
  background: #aed564;
}
.hub-button.green.outline, .category .products div.product .green.outline.button {
  background: transparent;
  border: 1px solid #99ca3c;
  color: #99ca3c;
}
.hub-button.green.outline:hover, .category .products div.product .green.outline.button:hover {
  background: #99ca3c;
  color: #ffffff;
}
.hub-button.dark, .category .products div.product .dark.button {
  background: #515151;
}
.hub-button.dark:hover, .category .products div.product .dark.button:hover {
  background: #6b6b6b;
}
.hub-button.dark.outline, .category .products div.product .dark.outline.button {
  background: transparent;
  border: 1px solid #515151;
  color: #515151;
}
.hub-button.dark.outline:hover, .category .products div.product .dark.outline.button:hover {
  background: #515151;
  color: #ffffff;
}
.hub-button .icon, .category .products div.product .button .icon {
  margin-right: 5px;
}
.hub-button.outline, .category .products div.product .outline.button {
  background: transparent;
  border: 1px solid #ffffff;
}

.category .products {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 15px;
}
@media only screen and (max-width: 768px) {
  .category .products {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
.category .products div.product {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 3px solid transparent;
  border-radius: 4px;
  align-self: flex-start;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .category .products div.product {
    margin: 0;
  }
}
@media not all and (pointer: coarse) {
  .category .products div.product:hover:hover {
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-color: #f0f0f0;
  }
  .category .products div.product:hover:hover .button {
    display: flex;
  }
  .category .products div.product:hover:hover .information {
    margin-top: -75px;
    padding: 10px;
    box-shadow: 0 -5px 5px -2px rgba(0, 0, 0, 0.3);
  }
}
.category .products div.product .button {
  display: none;
  height: 40px;
  margin: 10px auto 20px auto;
}
.category .products div.product a {
  text-decoration: none;
}
.category .products div.product .produt-image {
  overflow: hidden;
  display: inline-block;
  position: relative;
  border-radius: 4px;
  background: #f0f0f0;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .category .products div.product .produt-image {
    height: 115px;
  }
}
.category .products div.product .produt-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  width: 100%;
}
.category .products div.product .onsale {
  width: 154px;
  border-radius: 0;
  transform: rotate(45deg);
  top: -20px;
  right: -59px;
  position: absolute;
  left: auto;
  padding: 44px 35px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 400;
  line-height: 17px;
  background: #99ca3c;
  color: #fff;
  font-size: 12px;
}
.category .products div.product .woocommerce-LoopProduct-link {
  display: inline-block;
  text-decoration: none;
}
.category .products div.product .woocommerce-LoopProduct-link .wp-post-image {
  width: 100%;
  max-height: 190px;
  overflow: hidden;
  display: inline-block;
}
.category .products div.product .information {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 1rem;
  flex-direction: column;
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 4px;
  min-height: 100px;
}
.category .products div.product .information .price {
  color: #06a2dd;
  font-size: 1.2rem;
  font-family: "Rubik", sans-serif;
  font-weight: bold;
  padding: 0.5rem 0 0 0;
  text-decoration: none;
  width: 100%;
}
.category .products div.product .information .price small {
  font-size: 0.8rem;
  display: inline-block;
  margin-right: 4px;
}
.category .products div.product .information .price ins {
  width: 100%;
  text-decoration: none;
  display: inline-block;
}
.category .products div.product .information .price del {
  color: #515151;
  display: inline-block;
  width: 100%;
}
.category .products div.product .information .price del small {
  font-size: 0.6rem;
  color: #515151;
}
.category .products div.product .information .price del .amount {
  font-size: 0.9rem;
  color: #515151;
  font-weight: normal;
}
.category .products div.product .information h2 {
  text-align: left;
  color: #515151;
  font-size: 0.8rem;
  font-family: "Rubik", sans-serif;
  padding: 0 1.5rem 0 0;
  line-height: 1.49;
}
.category .products div.product .information .listStars {
  display: inline-block;
  width: 100%;
  min-width: auto;
  max-width: none;
  margin: 10px 0;
}
@media only screen and (max-width: 768px) {
  .category .products div.product .information .listStars {
    display: flex;
    flex-direction: column;
  }
}
