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

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('fonts/slick.html');
    src: url('fonts/slickd41d.html?#iefix') format('embedded-opentype'), url('fonts/slick-2.html') format('woff'), url('fonts/slick-3.html') format('truetype'), url('fonts/slick-4.html#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #0096A9;
    padding: 0;
    margin-top: -10px\9; /*lte IE 8*/
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    outline: none;
    z-index: 1;
}

.slick-prev i,
.slick-next i {
  font-size: 14px;
  color: #fff;
}

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

.slick-prev:hover,
.slick-next:hover {
  background: #0096A9;
}

.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
{
    font-size: 20px;
    line-height: 1;

    color: #0096A9;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.slick-prev
{
    left: 20px;
}

.slick-prev:before {
  background: url('../images/arrow-light-blue.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(180deg);
}

.slick-prev:hover:before,
.slick-next:hover:before {
  background: url('../images/arrow-white.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}


.slick-next
{
    right: 15px;
}

.slick-next:before {
  background: url('../images/arrow-light-blue.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.slick-dotted {
  margin-bottom: 40px;
}

.slick-dots
{
    position: absolute;
    bottom: -22px;

    display: block;

    width: 100%;
    padding: 0;

    list-style: none;

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

    display: inline-block;

    width: 25px;
    height: 25px;
    padding: 0;
    margin: 5px;
    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 25px;
    height: 25px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.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
{
    font-family: 'slick';
    font-size: 25px;
    line-height: 30px;

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

    width: 25px;
    height: 25px;

    content: 'â€¢';
    text-align: center;

    opacity: 1;
    color: #fff;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
} */
/* .slick-dots li.slick-active button:before
{
    opacity: 1;
    color: #F9423A;
} */


@media screen and (max-width: 767px) {

  .slick-prev:before,
  .slick-next:before {
    width: 12px;
    height: 12px;
  }

  .slick-prev,
  .slick-next {
    width: 25px;
    height: 25px;
  }

  .slick-prev
  {
      left: 0;
  }

  .slick-next
  {
      right: 0;
  }

  /* .slick-dots li button:before {
    font-size: 20px;
  } */

}