@charset 'UTF-8';

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

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  padding: 0;
  width: 47px;
  height: 93px;
  font-size: 0;
  color: transparent;
  line-height: 0;  
  display: block;  
  cursor: pointer;  
  background: transparent;
  border: none;
  outline: none;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  background: transparent;
  outline: none;  
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}

.slick-prev:before,
.slick-next:before {
  color: #fff;
  line-height: 1;
  opacity: .75;  
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -47px;
}

[dir='rtl'] .slick-prev {
  right: -47px;
  left: auto;
}

.slick-prev:before {
  content: "";
  width: 47px;
  height: 93px;
  display: inline-block;
  background-image: url("slick_prev.png");
  background-repeat: no-repeat;
}

[dir='rtl'] .slick-prev:before {
  content: "";
  width: 47px;
  height: 93px;
  display: inline-block;
  background-image: url("slick_next.png");
  background-repeat: no-repeat;  
}

.slick-next {
  right: -47px;
}

[dir='rtl'] .slick-next {
  right: auto;
  left: -47px;
}

.slick-next:before {
  content: "";
  width: 47px;
  height: 93px;
  display: inline-block;
  background-image: url("slick_next.png");
  background-repeat: no-repeat;
}

[dir='rtl'] .slick-next:before {
  content: "";
  width: 47px;
  height: 93px;
  display: inline-block;
  background-image: url("slick_prev.png");
  background-repeat: no-repeat;
}

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

.slick-dots {
  position: absolute;
  bottom: -25px;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
  display: block;  
}

.slick-dots li {
  position: relative;
  margin: 0 5px;
  padding: 0;
  width: 20px;
  height: 20px;  
  display: inline-block;
  cursor: pointer;
}

.slick-dots li button {
  padding: 5px;
  width: 20px;
  height: 20px;  
  font-size: 0;
  color: transparent;
  line-height: 0;
  display: block;
  cursor: pointer;  
  background: transparent;
  border: 0;
  outline: none;  
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  content: '•';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  font-size: 6px;
  color: #000;
  line-height: 20px;  
  text-align: center;
  opacity: .25;  
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: #000;
  opacity: .75;
}


@media screen and (max-width: 1860px) {
  .slick-prev,
  .slick-next {
    width: 20px;
    height: 40px;
  }
  
  .slick-prev {
    left: 20px;
  }

  [dir='rtl'] .slick-prev {
    right: 20px;
  }

  .slick-prev:before {
    width: 20px;
    height: 40px;
    background-size: 20px;
  }

  [dir='rtl'] .slick-prev:before {
    width: 20px;
    height: 40px;
    background-size: 20px;
  }

  .slick-next {
    right: 20px;
  }

  [dir='rtl'] .slick-next {
    left: 20px;
  }

  .slick-next:before {
    width: 20px;
    height: 40px;
    background-size: 20px;
  }

  [dir='rtl'] .slick-next:before {
    width: 20px;
    height: 40px;
    background-size: 20px;
  }
}