.shop-wrapper {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .shop-wrapper {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.shop-wrapper .sidebar-wrapper {
  width: 25%;
  padding: 20px;
  margin-right: 40px;
}
.shop-wrapper .sidebar-wrapper .close-sidebar {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .shop-wrapper .sidebar-wrapper {
    width: 100%;
    margin-right: 0;
  }
  .shop-wrapper .sidebar-wrapper .close-sidebar {
    background: #ec2028;
    color: #fff;
    margin-bottom: 15px;
    display: inline-block;
  }
  .shop-wrapper .sidebar-wrapper .sidebar-form {
    display: none;
  }
}
.shop-wrapper .sidebar-wrapper ul {
  border: 1px solid #ccc;
  padding: 20px;
  margin-bottom: 15px;
}
.shop-wrapper .sidebar-wrapper ul h2 {
  margin-bottom: 0;
  font-size: 18px;
  position: relative;
}
.shop-wrapper .sidebar-wrapper ul h2 i {
  position: absolute;
  right: 0;
  top: -6px;
  font-size: 25px;
  cursor: pointer;
}
.shop-wrapper .sidebar-wrapper ul li {
  padding-left: 0!important;
  list-style-type: none;
  list-style-position: inside;
}
.shop-wrapper .sidebar-wrapper ul li:before {
  display: none!important;
}
.shop-wrapper .sidebar-wrapper .subcategories-wrapper ul {
  max-height: 400px;
  overflow-y: auto;
}
.shop-wrapper .sidebar-wrapper button {
  transition: all linear 0.35s;
}
.shop-wrapper .sidebar-wrapper button:hover {
  color: #fff;
}
.shop-wrapper .product-wrapper {
  width: 75%;
  padding: 20px;
}
@media only screen and (max-width: 1024px) {
  .shop-wrapper .product-wrapper {
    width: 100%;
  }
}
.shop-wrapper .product-wrapper .product-container {
  display: flex;
  flex-basis: 25%;
  flex-wrap: wrap;
}
.shop-wrapper .product-wrapper .product-container .item-wrapper {
  border: 1px solid #ccc;
  background: #fff;
  margin: 10px;
  width: calc((100% / 3) - 20px);
}
.shop-wrapper .product-wrapper .product-container .item-wrapper img {
  width: 100%;
  margin-top: 0;
}
.shop-wrapper .product-wrapper .product-container .item-wrapper h2 {
  margin-bottom: 10px;
  font-size: 18px;
  text-align: center;
}
.shop-wrapper .product-wrapper .product-container .item-wrapper p {
  margin-bottom: 5px;
  text-align: center;
  color: #ec2028;
  font-weight: bold;
}
