body {
  padding-bottom: 40px; }

h1 {
  text-align: center;
  margin-bottom: 40px; }

.search-field {
  width: 100%;
  max-width: 600px;
  margin: 0 auto; }

#search-input {
  display: block;
  width: 100%;
  padding: 5px;
  border: 1px solid #dedede;
  color: #666666;
  margin-bottom: 30px;
  border-radius: 5px;
  outline: none !important; }

.products-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.product {
  flex-basis: 48%;
  text-align: center;
  padding: 10px;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
  margin-bottom: 7px; }
  @media screen and (min-width: 700px) {
    .product {
      flex-basis: 32%; } }
  .product.hide {
    display: none; }
  .product:hover {
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
    text-decoration: none; }

.product-image-holder {
  height: 200px;
  margin-bottom: 15px;
  overflow: hidden; }

.product-image {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 70%;
  height: auto; }

.product-name {
  font-size: 1.4em;
  height: 3em; }

.product-cost {
  font-size: 1.1em; }
  .product-cost .current-price {
    display: inline-block;
    margin-right: 14px; }
  .product-cost .scratched-price {
    display: inline-block;
    color: silver;
    text-decoration: line-through; }

.category-tabs {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  display: flex;
  background: white;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.4); }
  .category-tabs .category-tab {
    flex-basis: 33%;
    padding: 10px 0;
    text-align: center;
    font-size: 18px;
    color: #212121;
    cursor: pointer;
    border-right: 1px solid rgba(0, 0, 0, 0.2); }
    .category-tabs .category-tab:last-child {
      border-right: none; }
    .category-tabs .category-tab.active {
      color: #f27040; }

/*# sourceMappingURL=products.css.map */
