@import './core/variables.scss';

.vc-slider {
  position: relative;

  &--h {
    width: 100%;
  }

  &--v {
    height: 200px;
  }

  &--editable .vc-slider__track-container {
    cursor: grab;
  }

  &__track-container {
    outline: 0;

    &--h {
      width: 100%;
      padding: 12px 0;

      .vc-slider__selection {
        will-change: width, left;
      }
    }

    &--v {
      height: 100%;
      padding: 0 12px;

      .vc-slider__selection {
        will-change: height, top;
      }
    }
  }

  &__track {
    color: var(--vc-primary);
    background: rgba(0, 0, 0, 0.1);
    border-radius: $generic-border-radius;
    width: inherit;
    height: inherit;
  }

  &__inner {
    background: rgba(0, 0, 0, 0.1);
    border-radius: inherit;
    width: 100%;
    height: 100%;
  }

  &__selection {
    background: currentColor;
    border-radius: inherit;
    width: 100%;
    height: 100%;
  }

  &__markers {
    color: rgba(0, 0, 0, 0.3);
    border-radius: inherit;
    width: 100%;
    height: 100%;

    &:after {
      content: '';
      position: absolute;
      background: currentColor;
    }

    &--h {
      background-image: repeating-linear-gradient(to right, currentColor, currentColor 2px, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0));

      &:after {
        height: 100%;
        width: 2px;
        top: 0;
        right: 0;
      }
    }

    &--v {
      background-image: repeating-linear-gradient(to bottom, currentColor, currentColor 2px, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0));

      &:after {
        width: 100%;
        height: 2px;
        left: 0;
        bottom: 0;
      }
    }
  }

  &__marker-labels-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 24px;
    min-width: 24px;
  }

  &__marker-labels {
    position: absolute;

    &--h {
      &-standard {
        top: 0;
      }

      &-switched {
        bottom: 0;
      }

      &-ltr {
        transform: translateX(-50%) #{'/* rtl:ignore */'};
      }

      &-rtl {
        transform: translateX(50%) #{'/* rtl:ignore */'};
      }
    }

    &--v {
      &-standard {
        left: 4px;
      }

      &-switched {
        right: 4px;
      }

      &-ltr {
        transform: translateY(-50%) #{'/* rtl:ignore */'};
      }

      &-rtl {
        transform: translateY(50%) #{'/* rtl:ignore */'};
      }
    }
  }

  &__thumb {
    z-index: 1;
    outline: 0;
    color: var(--vc-primary);
    transition: transform 0.18s ease-out, fill 0.18s ease-out, stroke 0.18s ease-out;

    &.vc-slider--focus {
      opacity: 1 !important;
    }

    &--h {
      top: 50%;
      will-change: left;

      &-ltr {
        transform: scale(1) translate(-50%, -50%) #{'/* rtl:ignore */'};
      }

      &-rtl {
        transform: scale(1) translate(50%, -50%) #{'/* rtl:ignore */'};
      }
    }

    &--v {
      left: 50% #{'/* rtl:ignore */'};
      will-change: top;

      &-ltr {
        transform: scale(1) translate(-50%, -50%) #{'/* rtl:ignore */'};
      }

      &-rtl {
        transform: scale(1) translate(-50%, 50%) #{'/* rtl:ignore */'};
      }
    }
  }

  &__thumb-shape {
    top: 0;
    left: 0;
    stroke-width: 3.5;
    stroke: currentColor;
    transition: transform 0.28s;

    path {
      stroke: currentColor;
      fill: currentColor;
    }
  }

  &__focus-ring {
    border-radius: 50%;
    opacity: 0;
    transition: transform 266.67ms ease-out, opacity 266.67ms ease-out, background-color 266.67ms ease-out;
    transition-delay: 0.14s;
  }

  &__pin {
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.28s ease-out;
    transition-delay: 0.14s;

    &:before {
      content: '';
      width: 0;
      height: 0;
      position: absolute;
    }

    &--h {
      &:before {
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        left: 50%;
        transform: translateX(-50%);
      }

      &-standard {
        bottom: 100%;

        &:before {
          bottom: 2px;
          border-top: 6px solid currentColor;
        }
      }

      &-switched {
        top: 100%;

        &:before {
          top: 2px;
          border-bottom: 6px solid currentColor;
        }
      }
    }

    &--v {
      top: 0;

      &:before {
        top: 50%;
        transform: translateY(-50%);
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
      }

      &-standard {
        left: 100%;

        &:before {
          left: 2px;
          border-right: 6px solid currentColor;
        }
      }

      &-switched {
        right: 100%;

        &:before {
          right: 2px;
          border-left: 6px solid currentColor;
        }
      }
    }
  }

  &__label {
    z-index: 1;
    white-space: nowrap;
    position: absolute;

    &--h {
      left: 50%;
      transform: translateX(-50%);

      &-standard {
        bottom: 7px;
      }

      &-switched {
        top: 7px;
      }
    }

    &--v {
      top: 50%;
      transform: translateY(-50%);

      &-standard {
        left: 7px;
      }

      &-switched {
        right: 7px;
      }
    }
  }

  &__text-container {
    min-height: 25px;
    padding: 2px 8px;
    border-radius: $generic-border-radius;
    background: currentColor;
    position: relative;
    text-align: center;
  }

  &__text {
    color: #fff;
    font-size: 12px;
  }

  &--no-value {
    .vc-slider__thumb,
    .vc-slider__inner,
    .vc-slider__selection {
      opacity: 0;
    }
  }

  &--focus,
  body.desktop &.vc-slider--editable .vc-slider__track-container:hover {
    .vc-slider__focus-ring {
      background: currentColor;
      transform: scale3d(1.55, 1.55, 1);
      opacity: 0.25;
    }

    .vc-slider__thumb,
    .vc-slider__inner,
    .vc-slider__selection {
      opacity: 1;
    }
  }

  &--inactive {
    .vc-slider__thumb {
      &--h {
        transition: left 0.28s, right 0.28s;
      }

      &--v {
        transition: top 0.28s, bottom 0.28s;
      }
    }

    .vc-slider__selection {
      transition: width 0.28s, left 0.28s, right 0.28s, height 0.28s, top 0.28s, bottom 0.28s;
    }

    .vc-slider__text-container {
      transition: transform 0.28s;
    }
  }

  &--active {
    cursor: grabbing;

    .vc-slider__thumb-shape {
      transform: scale(1.5);
    }

    .vc-slider__focus-ring,
    &.vc-slider--label .vc-slider__thumb-shape {
      transform: scale(0) !important;
    }
  }

  body.desktop &.vc-slider--enabled .vc-slider__track-container:hover {
    .vc-slider__pin {
      opacity: 1;
    }
  }

  &--label {
    &.vc-slider--active,
    .vc-slider--focus,
    &.vc-slider--label-always {
      .vc-slider__pin {
        opacity: 1;
      }
    }
  }

  &--dark {
    .vc-slider__track {
      background: rgba(#fff, 0.1);
    }

    .vc-slider__inner {
      background: rgba(#fff, 0.1);
    }

    .vc-slider__markers {
      color: rgba(#fff, 0.3);
    }
  }

  &--dense {
    .vc-slider__track-container {
      &--h {
        padding: 6px 0;
      }

      &--v {
        padding: 0 6px;
      }
    }
  }
}
