/* Development server */
/* Production server */
#main-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  border-top: 15px solid #cccccc;
  -webkit-border-image: -webkit-linear-gradient(top, #cccccc 0%, white 100%) 100% 1;
       -o-border-image: linear-gradient(to bottom, #cccccc 0%, white 100%) 100% 1;
          border-image: linear-gradient(to bottom, #cccccc 0%, white 100%) 100% 1;
}

#products-navigation {
  width: 100%;
  padding: 20px;
  text-align: center;
  border-bottom: 15px solid #cccccc;
  -webkit-border-image: -webkit-linear-gradient(top, white 0%, #cccccc 100%) 100% 1;
       -o-border-image: linear-gradient(to bottom, white 0%, #cccccc 100%) 100% 1;
          border-image: linear-gradient(to bottom, white 0%, #cccccc 100%) 100% 1;
}
#products-navigation ul {
  display: inline-block;
}
#products-navigation li {
  margin-bottom: 40px;
}
@media only screen and (max-width: 899px) {
  #products-navigation li:last-child {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 900px) {
  #products-navigation li {
    float: left;
    margin: 0px 30px 15px 30px;
  }
}
#products-navigation a {
  display: block;
  height: 95px;
}
#products-navigation a .product-icon {
  margin-bottom: 15px;
}
#products-navigation a .product-description {
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
#products-navigation a:hover .product-description, #products-navigation a:active .product-description {
  color: #3398ff;
}
#products-navigation a.products-navigation-active {
  color: #3398ff;
  cursor: default;
}

#products-text {
  width: 100%;
  padding: 40px;
}
@media only screen and (min-width: 900px) {
  #products-text {
    width: 50%;
    max-width: 600px;
  }
}
#products-text ul {
  list-style: disc inside;
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 15px;
}
#products-text li {
  margin-bottom: 10px;
}
#products-text li:last-child {
  margin-bottom: 0px;
}

#products-image {
  width: 100%;
  padding: 40px;
}
@media only screen and (min-width: 900px) {
  #products-image {
    width: 50%;
    max-width: 600px;
  }
}
#products-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.5);
}
