/* line 2, app/assets/stylesheets/custom.scss */
.fader {
  opacity: 0;
  transform: translate(0, 20px);
  transition: all 2s;
}

/* line 8, app/assets/stylesheets/custom.scss */
.visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 640px) {
  /* line 15, app/assets/stylesheets/custom.scss */
  .hide {
    display: none;
  }
}

@media (min-width: 641px) {
  /* line 21, app/assets/stylesheets/custom.scss */
  .show {
    display: none;
  }
}
