
/*===============*/
/* Scroll Panels */
/*===============*/
ui-scroll-panel {
  display: block;
  width: 100%;
  height: 240px;
  background-color: #ccc;
  padding: 20px;
  -webkit-overflow-scrolling: touch;
  overflow-y: hidden !important;
  overflow-x: scroll;
  white-space: nowrap;
  box-sizing: border-box;
}
ui-scroll-panel > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-padding-start: 0;
  font-size: 0;
  width: 100%;
}
ui-scroll-panel > ul li {
  display: inline-block;
  border: solid 1px #666;
  box-shadow: 0 0 4px #666;
  width: 200px;
  height: 200px;
  overflow: hidden;
  margin-right: 20px;
  font-size: 0;
}
ui-scroll-panel > ul li:first-of-type {
  margin-left: 0 !important;
}
ui-scroll-panel > ul li:last-of-type {
  margin-right: 20px !important;
}
@media only screen and (max-device-width: 480px) {
  ui-scroll-panel {
    height: 125px !important;
    padding: 10px;
  }
  ui-scroll-panel > ul li{
    height: 100px !important;
    width: 100px !important;
  }
}
