/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Dots */
.slick-dots {
  background-color: #ffffff;
  border-radius: calc(infinity * 1px);
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  list-style: none;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 10px;
  margin: 0;
  width: auto;
}
.slick-dots li {
  border-radius: 50%;
  position: relative;
  display: grid;
  height: 30px;
  width: 30px;
  place-items: center;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  background-color: #b8bbbe;
  border: 0;
  border-radius: 50%;
  display: block;
  height: 10px;
  width: 10px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button .circle-progress {
  width: 30px;
  height: 30px;
  position: absolute;
  top: -10px;
  left: -10px;
}
.slick-dots li button .circle-bg {
  fill: none;
  stroke-width: 2;
}
.slick-dots li button .circle-progress-bar {
  fill: none;
  stroke: #1c82e7;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 87.96;
  stroke-dashoffset: 87.96;
  transform-origin: center;
  transform: rotate(-90deg);
  transition: stroke-dashoffset 0.1s ease;
}
.slick-dots li.slick-active button {
  background-color: #1c82e7;
}
.slick-dots li.slick-active button .circle-progress-bar {
  animation: circleProgress 5s linear forwards;
}

.hero-slider .slick-dots li.slick-active button .circle-progress-bar {
  animation: circleProgress 5s linear forwards;
}

@keyframes circleProgress {
  from {
    stroke-dashoffset: 87.96;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@media screen and (max-width: 767px) {
  .slick-dots {
    background-color: #ffffff;
    border-radius: calc(infinity * 1px);
    position: absolute;
    left: 50%;
    right: auto;
    top: calc(100% - 22px);
    transform: translateX(-50%);
    list-style: none;
    display: flex;
    flex-direction: row;
    text-align: center;
    padding: 5px;
    margin: 0;
    width: auto;
  }
  .slick-dots li {
    border-radius: 50%;
    position: relative;
    display: grid;
    height: 30px;
    width: 30px;
    place-items: center;
    padding: 0;
    cursor: pointer;
  }
  .slick-dots li button {
    background-color: #b8bbbe;
    border: 0;
    border-radius: 50%;
    display: block;
    height: 10px;
    width: 10px;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 0;
    cursor: pointer;
    position: relative;
  }
  .slick-dots li button:hover, .slick-dots li button:focus {
    outline: none;
  }
  .slick-dots li button .circle-progress {
    width: 30px;
    height: 30px;
    position: absolute;
    top: -10px;
    left: -10px;
  }
  .slick-dots li button .circle-bg {
    fill: none;
    stroke-width: 2;
  }
  .slick-dots li button .circle-progress-bar {
    fill: none;
    stroke: #1c82e7;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 87.96;
    stroke-dashoffset: 87.96;
    transform-origin: center;
    transform: rotate(-90deg);
    transition: stroke-dashoffset 0.1s ease;
  }
  .slick-dots li.slick-active button {
    background-color: #1c82e7;
  }
  .slick-dots li.slick-active button .circle-progress-bar {
    animation: circleProgress 5s linear forwards;
  }
}/*# sourceMappingURL=slick-theme.css.map */