@charset "UTF-8";
/* CSS Document */

ul#featured-products {
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 40px;
  margin-left: 0;
  flex-direction: column;
  align-items: center;
}
ul#featured-products li {
  list-style-type: none;
  display: flex;
  margin: 15px;
  text-align: center;
  /*	border: 1px solid red;*/
}
ul#featured-products li a {
  display: flex;
  padding: 8px 2px;
  border: 1px solid #ffffff;
}
ul#featured-products li a:hover {
  background-color: #eeeeee;
  border-radius: 4px;
  border: 1px solid #cccccc;
}
ul#featured-products li a:focus {
  border: 1px solid #000000;
}
ul#featured-products li a > .flex {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
ul#featured-products li .text h3 {
  font-family: "Open Sans", arial, sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 8px;
  line-height: 1.1em;
  margin-bottom: 5px;
}
ul#featured-products li .img {
  width: 100%;
  border-bottom: 3px solid #CCCCCC;
}
@media handheld, only screen and (min-width:550px) {
  ul#featured-products {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: unset;
  }
}
@media handheld, only screen and (min-width:768px) {
  ul#featured-products li {
    margin: 5px 15px;
    width: calc(100% / 4);
    justify-content: center;
  }
}
@media handheld, only screen and (min-width:790px) {
/*
  #whats-new h2 {
    text-align: left;
    margin-top: 40px;
  }
*/
}
@media handheld, only screen and (min-width:992px) {
  ul#featured-products li {
    margin: 5px auto;
    width: calc(100% / 5);
    max-width: 180px;
  }
}