@charset "utf-8";
/* CSS Document */
@media only screen and (max-width: 767px) {
  body:after {
    display: none;
    content: "smartphone";
  }
  .hide-arrows-smartphone .flex-direction-nav, .hide-navigation-smartphone .flex-control-paging, .hide-navigation-smartphone .flex-control-nav, .hide-navigation-smartphone .filmstrip {
    display: none !important;
  }
}
@media only screen and (min-width : 768px) and (max-width: 1023px) {
  body:after {
    display: none;
    content: "tablet";
  }
  .hide-arrows-tablet .flex-direction-nav, .hide-navigation-tablet .flex-control-paging, .hide-navigation-tablet .flex-control-nav, .hide-navigation-tablet .filmstrip {
    display: none !important;
  }
}
@media only screen and (min-width : 1024px) and (max-width: 1439px) {
  body:after {
    display: none;
    content: "laptop";
  }
  .hide-arrows-laptop .flex-direction-nav, .hide-navigation-laptop .flex-control-paging, .hide-navigation-laptop .flex-control-nav, .hide-navigation-laptop .filmstrip {
    display: none !important;
  }
}
@media only screen and (min-width : 1440px) {
  body:after {
    display: none;
    content: "desktop";
  }
  .hide-arrows-desktop .flex-direction-nav, .hide-navigation-desktop .flex-control-paging, .hide-navigation-desktop .flex-control-nav, .hide-navigation-desktop .filmstrip {
    display: none !important;
  }
}