.student-dashboard-wrapper{
  position: sticky;
  top: 56px;
  z-index: 100;
  color: #fff;
  background-color: var(--#{$variable-prefix}liberty-color);
  ~ .secondary-header {
    top: 117px;
  }
  .nav-link{
    color: rgba($color: #fff, $alpha: .7);
    &.active{
      color: #fff;
    }
  }
}

.navbar-student-dashboard{
  padding-right: 12px;
  padding-left: 12px;
  .navbar-brand {
    img {
      max-width: 170px;
      height: 23px;
      object-fit: contain;
      object-position: left;
    }
  }
  .navbar-toggler{
    padding-left: 0;
    padding-right: 0;
  }
  .navbar-toggler-icon{
    width: auto;
    height: auto;
  }
}

.field-buttonset-wrapper{
  position: relative;
  .form-floating {
    > .form-control{
      padding-right: 250px;
    }
  }
  .btn-group {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 1;
    // Prevent double borders when buttons are next to each other
    > .btn:not(:first-child),
    > .btn-group:not(:first-child) {
      margin-left: -1px;
    }

    // Reset rounded corners
    > .btn:not(:last-child):not(.dropdown-toggle),
    > .btn-group:not(:last-child) > .btn {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
    }

    // The left radius should be 0 if the button is:
    // - the "third or more" child
    // - the second child and the previous element isn't `.btn-check` (making it the first child visually)
    // - part of a btn-group which isn't the first child
    > .btn:nth-child(n + 3),
    > :not(.btn-check) + .btn,
    > .btn-group:not(:first-child) > .btn {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
    }
    .btn{
      font-weight: 400;
      color: #13171f;
      background-color: #fff;
      border-color: #eaebef;
    }
    .btn-check:checked {
      + .btn:focus,
      + .btn {
        font-weight: 700;
        color: #13171f;
        background-color: #eff1f4;
      }
    }
  }
}

