.content {
  //offset content to fit in the middle of everything
  margin-left: 250px;
  padding: 2.5rem;
  transition: all .25s linear;
}


.navbar-default .navbar-toggle {
  border-color: transparent;
  margin: 0;
  padding: 1.7rem;
  transition: all 300ms ease;

  &:hover,
  &:active,
  &:focus {
    background-color: $wk-primary-blue-shade1;
  }

  .icon-bar {
    background-color: white;
  }
}

.wk-left-nav {
  background-color: $wk-primary-blue-tint1;
  border: 0;
  box-shadow: 0 12px 12px black;
  float: left;
  padding: 0;
  position: relative;
  transition: all 0.25s ease 0s;
  width: 250px;
  z-index: 10; //Stay on top


  &-fixed {
    float: none;
    height: 100%;
    left: 0;
    overflow-y: hidden; // Disable horizontal scroll
    position: fixed;
    top: 0;
  }

  &-fixed-example {
    position: relative;
  }


  .panel,
  .panel-heading,
  .panel-body,
  .panel-group,
  .panel-group .panel+.panel {
    background-color: transparent;
    border: 0;
    margin: 0;
  }

  .panel-title > a {
    font-size: 18px;
    font-weight: 500;
  }

  .panel-body {
    padding:0;
    background-color: $wk-primary-gray-tint5;
  }


  .navbar-brand {
    float: none;
    width: 100%;

    > img {
      margin-left: auto;
      margin-right: auto;
    }
  }

  .nav-link {
     padding: 7.5px 40px;
    font-size:16px;
    display:block;
    width: 100%;

    &:active,
    &:hover,
    &[aria-selected=true],
    &.active,
    &:focus {
      background-color: $wk-primary-white;      color: $wk-primary-gray-tint1;
      transition: all .2s ease-in;
      text-decoration: none;
    }

    &.disabled {
      color: $wk-primary-gray-tint4;
      cursor: not-allowed;
    }
  }

  .panel-heading {
    padding:0;
  }

  .accordion-toggle {
    color: $wk-primary-white;
    cursor: pointer;
    display: block;
    font-size: 18px;
    font-weight: 500;
    outline:none;
    padding: .75rem;
    padding-left: 3rem;
    transition: background-color ease-out .5s;

    .disabled {
      color: $wk-primary-gray-tint3;
      cursor: not-allowed;
    }

    a:hover,
    a:focus,
    span:hover,
    span:focus,
    span:active{
      text-decoration: none;
      outline: none;
    }

    &:active,
    &:hover,
    &[aria-selected=true],
    &.active,
    &:focus {
      background-color: $wk-primary-white;
      box-shadow: 1px 1px 8px 0 rgba(0,0,0,.3);
      color: $wk-primary-gray-tint1;
      transition: all .2s ease-in;
      text-decoration: none;
    }

    &.disabled {
      color: $wk-primary-gray-tint4;
      cursor: not-allowed;
    }
  }

  .panel-body {
    list-style: none;
    padding-left: 0;

    .panel-heading {
      font-size: 16px;
      font-weight:normal;
      color: $wk-primary-blue;
      padding: 5px 5px 5px 40px;
      transition: background-color ease-out .5s;

      &.active ,
      &:hover {
        background-color: $wk-primary-white;
        color: $wk-primary-blue-shade1;
        text-decoration: none;
      }
    }
  }
}

@media(max-width: 480px) {
  .content {
    margin-left: 0;
    padding:2rem;
  }

  .wk-left-nav {
    margin-left: -400px;
    text-align: left;
    width: 100%;

    &.active {
      margin-left: 0;
    }

    .sub-nav.nav-link {
      padding: 1em;
    }
  }
}

@media(max-width: 767px) {
  .content {
    margin-left: 0;
    padding:1rem;
  }

  .wk-left-nav {
    display:none;
    left: 0;
    position: fixed;
    top: 0;

    &.active {
      transition: display 300ms ease-in;
      display:block;
      margin-left: 0;
    }

    .wk-left-nav-fixed {
      margin-top: 50px;
    }
  }
}
