/*@import 'https://fonts.googleapis.com/css?family=Lato';*/
body {
  background-color: #fff;
}

.product_menu {
  list-style: none;
  line-height: 42px;
  //margin: 2em;
  /*outline: 1px solid red */
  padding-left: 0;
  //width: 15em;
  margin-bottom:50px;
}
.product_menu li {
  box-shadow: 3px 0 rgba(16, 39, 71, 0.8) inset;
  padding-left: 1em;
  margin-bottom: 5px;
  transition: all 0.5s;
  outline: 1px solid #fb5710; 
}
.product_menu li:hover {
  box-shadow: 15em 0 rgba(255, 212, 193, 0.4) inset;
}
.product_menu a {
  color: #000;
  //font-family: "Lato", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  transition: all 0.5s;
}
.product_menu a:hover {
  margin-left: 1em;
  transition: all 0.6s;
  color: #fe4d00;
}
