@charset "UTF-8";
/*! Author: Christoph Schüßler <schreib@herrschuessler.de> */
/*
 *
 * Build a grid system.
 * 
 * @param $breakpoints A sass map with min-width and max-width definitions
 * 
 * $breakpoints: (
 *   s: (
 *    min-width: null,
 *     max-width: 767px
 *   ),
 *   m: (
 *     min-width: 768px,
 *     max-width: 979px
 *   ),
 *   l: (
 *     min-width: 980px,
 *     max-width: 1279px
 *   ),
 *   xl: (
 *     min-width: 1280px,
 *     max-width: null
 *   )
 * );
 * 
 */
.slick-slider {
  position: relative; }

.slick-prev,
.slick-next {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url(../images/icon-arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  text-indent: -9999%;
  overflow: hidden;
  display: block;
  border: none;
  color: #fff;
  position: absolute;
  z-index: 1;
  width: 40px;
  height: 40px;
  top: 50%;
  margin-top: -20px;
  white-space: nowrap; }

.slick-prev {
  left: 0;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg); }

.slick-next {
  right: 0; }

.slick-dots {
  list-style: none;
  margin: 0;
  padding: 0; }

.slick-slide img {
  height: auto; }

/*# sourceMappingURL=module.gallery.css.map */
