
/*!
 * SmartWizard v4.3.x
 * jQuery Wizard Plugin
 * https://www.techlaboratory.net/smartwizard
 *
 * Created by Dipu Raj
 * https://dipuraj.me
 *
 * Licensed under the terms of MIT License
 * https://github.com/techlab/SmartWizard/blob/master/LICENSE
 */

/* SmartWizard Theme: Dots */

.sw-theme-dots {
  .sw-container {
    min-height: 300px;
  }

  .step-content {
    padding: 15px;
    border: none;
    background-color: $white;
    text-align: left;
  }

  .sw-toolbar {
    background: $white;
    border-radius: 0 !important;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 0 !important;
  }

  .sw-toolbar-top {
    border-bottom-color: #ddd !important;
  }

  .sw-toolbar-bottom {
    border-top-color: #ddd !important;
    border-bottom-color: #ddd !important;
  }

  > ul.step-anchor {
    position: relative;
    background: $white;
    border: 0px solid #313e6a !important;
    list-style: none;

    &:before {
      content: " ";
      position: absolute;
      top: 59px;
      bottom: 0;
      left: 20px;
      width: 96%;
      height: 5px;
      background-color: #ebeff8;
      border-radius: 3px;
      z-order: 0;
      z-index: 0;
    }

    > li {
      border: none;

      > a {
        position: relative;
        text-align: center;
        font-weight: bold;
        background: transparent;
        border: none;

        /* color: #313e6a; */
        text-decoration: none;
        outline-style: none;
        z-index: 96;
        display: block;
      }
    }
  }
}

/* Anchors styles */

.step-anchor .nav-tabs .nav-item .nav-link {
  color: #313e6a !important;
}

.sw-theme-dots {
  > ul.step-anchor > li > a:before {
    content: ' ';
    position: absolute;
    bottom: 14px;
    left: 37%;
    margin-top: 20px;
    display: block;
    border-radius: 50%;
    color: $primary;
    background: #ebeff8;
    border: none;
    width: 30px;
    height: 30px;
    text-decoration: none;
    z-index: 98;
  }

  nav-tabs .nav-link:hover:not(.disabled) {
    color: inherit;
    background: transparent !important;
  }

  > ul.step-anchor > li {
    > a {
      &:after {
        content: ' ';
        position: relative;
        left: 38%;
        bottom: 5px;
        margin-top: 24px;
        display: block;
        width: 16px;
        height: 16px;
        background: #b4bdce;
        border-radius: 50%;
        z-index: 99;
      }

      &:hover {
        color: #313e6a;
        background: transparent;
      }

      &:focus {
        color: #313e6a;
        border: none;
      }
    }

    &.clickable > a:hover {
      color: #999;
    }

    &.active > a {
      color: $primary;

      &:hover {
        border: none;
      }

      &:after {
        background: $primary;
      }
    }

    &.done > a {
      color: #313e6a;

      &:after {
        background: #b3b7da;
      }
    }

    &.danger > a {
      color: #d5cef3;

      &:after {
        background: #d5cef3;
      }
    }

    &.disabled > a {
      color: #eee !important;

      &:hover {
        color: #eee !important;
      }

      &:after {
        background: #eee;
      }
    }
  }
}

/* Active anchors */

/* Done anchors */

/* Danger anchors */

/* Responsive CSS */
@media screen and (max-width: 480px) {
  .sw-theme-dots {
    > ul.step-anchor {
      &:before {
        top: 0;
        bottom: 0;
        left: 19px;
        width: 5px;
        height: 100%;
        background-color: #f5f5f5;
        display: block;
        margin-right: 10px;
      }

      > li {
        margin-left: 20px;
        display: block;
        clear: both;

        > a {
          text-align: left;
          margin-left: 0;
          display: block;

          &:before {
            top: -17px;
            left: -14px;
            margin-right: 10px;
            display: block;
          }

          &:after {
            top: -48px;
            left: -33px;
            margin-right: 10px;
            display: block;
          }
        }
      }
    }

    .nav .nav-item {
      width: 100%;
    }
  }
}