/* line 1, app/assets/stylesheets/image_gallery.css.scss */
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

/* line 8, app/assets/stylesheets/image_gallery.css.scss */
.carousel-frame {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 10px auto;
  overflow: hidden;
  box-shadow: inset 60px 0px 60px -60px black, inset -60px 0px 60px -60px black;
  background-image: radial-gradient(circle, transparent, transparent 75%, rgba(0, 0, 0, 0.3));
  background-color: white;
}

/* line 25, app/assets/stylesheets/image_gallery.css.scss */
.image_gallery_class {
  display: block;
  max-width: 150px;
  max-height: 150px;
  width: auto;
  height: auto;
}

/* line 33, app/assets/stylesheets/image_gallery.css.scss */
.carousel-slide {
  display: flex;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}

/* line 40, app/assets/stylesheets/image_gallery.css.scss */
.carousel-slide img {
  min-width: 100%;
  object-fit: cover;
}

/* line 45, app/assets/stylesheets/image_gallery.css.scss */
.carousel-prev {
  position: absolute;
  top: 50%;
  left: 2px;
  margin-top: -15px;
  z-index: 10;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

/* line 56, app/assets/stylesheets/image_gallery.css.scss */
.carousel-next {
  position: absolute;
  top: 50%;
  right: 2px;
  margin-top: -15px;
  z-index: 10;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

/* line 67, app/assets/stylesheets/image_gallery.css.scss */
.carousel-dots {
  list-style: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5%;
  margin: 0 auto;
  width: 100px;
  display: flex;
  justify-content: space-between;
}

/* line 79, app/assets/stylesheets/image_gallery.css.scss */
.carousel-dots li {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

/* line 88, app/assets/stylesheets/image_gallery.css.scss */
.carousel-dots .active-dot {
  background-color: rgba(255, 255, 255, 0.8);
}

/* line 94, app/assets/stylesheets/image_gallery.css.scss */
.image_gallery_class_modal {
  display: block;
  width: 300px;
  height: 300px;
}

/* line 100, app/assets/stylesheets/image_gallery.css.scss */
.blur {
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}
