/**
 * @file
 * Styles for the slider render.
 *
 * Copied from node-module.css
 */


/**
 * hide the slider mobile picture when the screen is large or extra large
 */
@media screen and (min-width: 62em) {
  .slider-mobile-img {
    display: none;
  }
  .has_mobile_slider {
    display: inline;
  }
}

/**
 * show the slider mobile picture when the screen is medium, small ou extra small
 */
@media screen and (max-width: 61.99em) {
  .slider-mobile-img {
    display: inline;
  }
  .has_mobile_slider {
    display: none;
  }
}
