/* Carousel base class */
/* Since positioning the image, we need to help out the caption */
/* line 5, ../sass/slider.scss */
.carousel-caption {
  z-index: 1;
  overflow: hidden;
}

/* Declare heights because of positioning of img element */
/* line 11, ../sass/slider.scss */
.carousel .item {
  background-color: #555;
  overflow: hidden !important;
  height: auto;
  max-height: 500px;
  cursor: move; /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

.carousel item:active {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

/* line 17, ../sass/slider.scss */
.carousel-inner {
  position: relative;
  /*width: 100%;*/
  overflow: hidden;
}

/* line 22, ../sass/slider.scss */
.carousel-inner > .item > img {
  /*height: auto !important;*/
  position: relative !important;
/*  object-fit: cover;*/
  margin: 0 auto;
  /*min-height: 200px;*/
}

@media (max-width: 768px) {
  /* line 35, ../sass/slider.scss */
  .carousel-caption {
    display: none;
  }
}
