/* Put your custom css here */

.app-products .app-products-category h2 {
  margin-bottom: 0px !important;
}

.app-products .app-products-category {
  width: 180px;
}

.app-products .app-products-category-title {
  font-weight: bold;
  font-size: 16px;
}

.app-products .app-products-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: space-between;
  height: 200px;
}

@media (max-width: 767px) {
  .app-products .app-products-category {
    width: auto;
  }

  .app-products .app-products-container {
    display: inline-block;
    height: auto;
  }
}

.app-products-category #filter {
  margin-bottom: 0;
}

.app-products-category #filter li {
  margin-right: 10px;
  margin-bottom: 10px;
}

.app-products-category #filter li a {
  font-size: 18px;
  padding: 10px;
}

.app-products-category .categories-link {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {

  .app-products-category #filter li a {
    font-size: 16px;
    padding: 7px;
  }

  .app-products-category .categories-list {
    display: none;
  }

  .app-products-category .categories-link {
    display: block;
  }

}

.app-element-products-list {
  display: flex;
  flex-wrap: wrap;
}

.app-element-products-list .app-element-products-list-product {
  width: 25%;
  height: 170px;
}

@media (max-width: 990px) {
  .app-element-products-list .app-element-products-list-product {
    width: 33.3333%;
  }
}

@media (max-width: 700px) {
  .app-element-products-list .app-element-products-list-product {
    width: 50%;
  }
}

@media (max-width: 500px) {
  .app-element-products-list .app-element-products-list-product {
    width: 100%;
    height: 150px;
  }
}

.navbar-brand {
  padding: 14px 0;
}

.navbar-brand>img {
  height: 30px;
}

@media (min-width: 1025px) {
  .navbar-brand {
    padding-top: 20px;
  }

  .navbar-brand>img {
    height: 50px;
  }
}

