.slick-slider {
  position: relative;
  overflow: hidden;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  &:focus {
    outline: none;
  }
  &.dragging {
    cursor: pointer;
    cursor: hand;
  }
}

.grey-dots{
  overflow: visible;
    .slick-dots{ 
        z-index: 1;   
        left: 0;    
        .slick-active{
            button{
                background: $theme-silver;
            }
        }
        li{
            button{
                background: rgba($theme-white,0.5);
            }
        }
    }
}

.slick-slider {
  .slick-track, .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  &:before {
    content: "";
    display: table;
  }
  &:after {
    content: "";
    display: table;
    clear: both;
  }
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide {
  img {
    display: block;
  }
  &.slick-loading img {
    display: none;
  }
  &.dragging img {
    pointer-events: none;
  }
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* Icons */
@font-face {
  font-family: "FontAwesome";
  font-weight: normal;
  font-style: normal;
}


/* Arrows */

.slick-prev, .slick-next {
  position: absolute;
  display: block;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border:1px solid #484848 !important;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev {
  &:hover, &:focus {
    outline: none;
    background: transparent;
    color: transparent;
  }
}

.slick-next {
  &:hover, &:focus {
    outline: none;
    background: transparent;
    color: transparent;
  }
}

.slick-prev {
  &:hover:before, &:focus:before {
    opacity: 1;
  }
}

.slick-next {
  &:hover:before, &:focus:before {
    opacity: 1;
  }
}

.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before, .slick-next:before {
  font-family: "FontAwesome";
  font-size: 20px;
  line-height: 0.6;
  color: #d2d1d3;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "\f104";
}

[dir="rtl"] .slick-prev:before {
  content: "\f104";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "\f105";
}

[dir="rtl"] .slick-next:before {
  content: "\f105";
}

/* Dots */

.slick-dots {
  position: absolute;
  bottom: -50px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
  @media (min-width: 300px){
      bottom: 0px;
  }
}

.\--big-dot .slick-dots {
  bottom: -40px;
}

.\--xbig-dot .slick-dots {
  bottom: -60px;
}

.\--small-dot .slick-dots {
  bottom: 20px;
}
.\--xsmall-dot .slick-dots {
  bottom: 40px;
}

.slick-dots {
  li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer;
      &:hover, &:focus {
        outline: none;
      }
      &:hover:before, &:focus:before {
        opacity: 1;
      }
      &:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-family: "FontAwesome";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }
    }
    &.slick-active button:before {
      color: black;
      opacity: 0.75;
    }
  }
  .slick-active button {
    background: $theme-secondary  ;
  }
  li {
    height: auto;
    width: auto;
    button {
      // border-radius: 50%;
      width: 10px;
      height: 10px;
      background: #e5e5e5;
      border: 0px solid #858585;
      margin: 0;
      padding: 0;
      &:before {
        display: none;
      }
    }
  }
}

.dots-n-arrow{
  overflow: visible;
    .slick-dots{ 
        z-index: 1;   
        left: 0;    
        .slick-active{
            button{
                background: $theme-white;
            }
        }
        li{
            button{
                background: $theme-secondary;
            }
        }
    }
    .slick-next {
      right: -60px;
    }
    .slick-prev {
      left: -60px;
    }
    .slick-prev:before,
    .slick-next:before{
      font-size: 40px;
    }
    .slick-next:before {
      content: "\f105";
    }
    .slick-prev:before {
      content: "\f104";
    }
}

.dots-n-arrow-testimonial{
  overflow: visible;
    
    .slick-next {
         right: 25px;
    /* bottom: 0px; */
    /* padding: 10px !important; */
    top: 90%;
    width: 30px;
    background: $theme-primary;
    border-radius: 0px !important;
    height: 30px;
    }
    .slick-prev {
         right: 65px;
         z-index: 11;
    top: 90%;
    background: white;
    border-radius: 0px !important;
    left: unset !important  ;
    width: 30px;
    height: 30px;
    }
    
    .slick-next:before {
      content: "\f105";
    }
    .slick-prev:before {
      content: "\f104";
      color: $theme-primary;
    }
}

.dots-car-o{
  overflow: visible;
   .slick-dots{ 
    position:relative;
            display: block;
        background: white;
        width: 100px;
        margin: auto;
        left: 0;
        bottom:20px;
        right: 0;
           padding-top: 7px;
    padding-bottom: 13px;

        z-index: 1;   
        left: 0;    
        &:before{
          content: '';
          position: absolute;
          width: 0;
          left: -19px;
          bottom: 0;
          top: 0;
          height: 0;
          border-right: 19px solid white;
          border-top: 41px solid #f6f6f600;
        }
        &:after{
           content: '';
          position: absolute;
          width: 0;
          right: -19px;
          bottom: 0;
          top: 0;
          height: 0;
          border-left: 19px solid white;
          border-top: 41px solid #f6f6f600;
        }
        .slick-active{
            button{
                background: $theme-middle;
            }
        }
        li{
            button{
                background: transparent;
                border:1px solid $theme-middle;
            }
        }
    }
}
@media(min-width: 1170px){ 
.car-o-liner-slider{
  overflow: visible !important;
  .slick-list{
    overflow: visible !important;
  }
  .slick-current{
      .bg-center{
        transform: scale(1.1);
        z-index: 1;
        
      }
  }
}}