@charset "UTF-8";
/* Slider */
.slick-loading .slick-list {
  background: #fff url('./ajax-loader.gif') center center no-repeat;
}
/* Dots */
.slick-dotted .slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  width: 100%;
  position: absolute;
  top: -10px;
  left: 0;
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  position: relative;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  display: block;
  height: 18px;
  width: 18px;
  cursor: pointer;
  position: relative;
  color: transparent;
  font-size: 1px;
  border: none;
  background: #F24A46;
  border-radius: 50%;
}
.slick-dots li button:before {
  display: block;
  content: "";
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid #F24A46;
  position: absolute;
  top: -9px;
  left: -9px;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  transform: scale(0.5);
}
.slick-dots li.slick-active button {
  background: #F24A46;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  transform: scale(1);
}
