.slider-handle {
  background: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  outline: 0;
  transition: none;

  &:hover {
    background-color: white;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
  }
}

.slider-fill {
  background-color: $mint;
  transition: none;
}

.tns-nav {
  position: absolute;
  overflow: hidden;
  width: 100px;
  left: 50% !important;
  bottom: 14px;
  transform: translateX(-50%);
  text-align: left !important;
}

.tns-nav-mover {
  display: inline-block;
  white-space: nowrap;
  transition: transform 0.2s ease-in-out;
}

.nav-dot {
  outline: 0;
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin: 0 3px;
  background-color: rgba(255, 255, 255, .7);
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;

  &.left-dot, &.right-dot {
    transform: scale(0.5);
  }

  &.tns-nav-active {
    width: 8px;
    height: 8px;
    background-color: white;
  }
}

.nav-container {
  position: absolute;
  left: 50%;
  bottom: 35px;
  transform: translateX(-50%);
}

.slider-container {
  @include breakpoint(large up) {
    max-height: 768px;
    min-height: 420px;
  }
  position: relative;

  .feature-image {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    padding-bottom: 200px;
    @include breakpoint(medium up) {
      padding-bottom: 330px;
    }
    @include breakpoint(large up) {
      padding-bottom: 540px;
    }

    &::after {
      display: block;
      content: '';
      background-color: rgba(0, 0, 0, .5);
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
    }

    &.tns-slide-active {
      border-left: 3px solid $mint;
      border-right: 3px solid $mint;
      position: unset;

      &::after {
        display: none;
      }
    }
  }


  .tns-ovh {
    overflow: unset;
  }

  .tns-nav {
    bottom: 35px;
    z-index: 8;
  }

  .tns-controls {

    button {
      position: absolute;
      bottom: 12px;

      .material-icons {
        font-size: 30px;
        color: white;
      }

      @include breakpoint(br-768 up) {
        bottom: 28px;
        .material-icons {
          font-size: 50px;
        }
      }

      &.prev {
        left: 16px;
      }

      &.next {
        right: 16px;
      }
    }
  }
}

.custom-position {
  top: 0;
  left: 0;
  @include breakpoint(large up) {
    top: 5px;
  }
}