@charset 'UTF-8';

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;

  position: absolute;
  top: 50%;

  display: block;

  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);

  cursor: pointer;

  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev {
  left: -40px;
  width: 40px;
  height: 40px;
  background: url('../icons/arrow-left.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.slick-next {
  right: -40px;
  width: 40px;
  height: 40px;
  background: url('../icons/arrow-right.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.carousel-slick-dots {
  position: absolute;
  bottom: 60px;

  display: block;

  width: 100%;
  padding: 0;
  margin: 0;

  list-style: none;

  text-align: center;
}
.carousel-slick-dots li {
  position: relative;

  display: inline-block;

  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;

  cursor: pointer;
}
.carousel-slick-dots li button {
  font-size: 0;
  line-height: 0;

  display: block;

  width: 20px;
  height: 20px;
  padding: 5px;

  cursor: pointer;

  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.carousel-slick-dots li button:hover,
.carousel-slick-dots li button:focus {
  outline: none;
}
.carousel-slick-dots li button:hover:before,
.carousel-slick-dots li button:focus:before {
  opacity: 1;
}
.carousel-slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;

  position: absolute;
  top: 0;
  left: 0;

  width: 20px;
  height: 20px;

  content: '•';
  text-align: center;

  opacity: 0.25;
  color: black;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.carousel-slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

.carousel-slick-dots li {
  width: 8px !important;
  height: 8px !important;
  display: inline-block !important;
  padding: 0 !important;
  margin: 0 5px !important;
}
.carousel-slick-dots li > button {
  background: #737373 !important;
  width: 8px !important;
  height: 8px !important;
  opacity: 1 !important;
  padding: 0 !important;
  -moz-border-radius: 8px !important;
  -webkit-border-radius: 8px !important;
  -o-border-radius: 8px !important;
  border-radius: 8px !important;
  -webkit-transition: 0.2s !important;
  -moz-transition: 0.2s !important;
  -o-transition: 0.2s !important;
  transition: 0.2s !important;
}
.carousel-slick-dots li > button::before {
  display: none !important;
}
.carousel-slick-dots li > button:hover {
  background: #ffffff !important;
}
.carousel-slick-dots li.slick-active > button {
  background: #ffffff !important;
}

@media (max-width: 576px) {
  .carousel-slick-dots {
    bottom: 20px;
  }
  .slick-prev {
    left: -24px;
    width: 24px;
    height: 24px;
  }

  .slick-next {
    right: -24px;
    width: 24px;
    height: 24px;
  }
}
