body {
  background-color: #F9FAFB;;
}

.top-bar {
  height: 65px;
  //overflow: hidden;

  //&.sidebar-hidden {
  //  &.half {
  //    left: 0;
  //  }
  //}
  //
  //&.half {
  //  left: 250px;
  //  transition: transform 0.3s ease;
  //}

  color: rgba(0, 0, 0, 0.65);

  .logo {

    img {
      width: 40px;
      height: auto;
    }

    h4 {
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 0;
      width: 165px;
      height: 1.5rem;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      color: $blue;
    }
  }

  .sidebar-toggle {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;

    i {
      font-size: 2rem;
    }

    &:hover {
      background-color: rgba(128, 128, 128, 0.18);
      color: $orange;
    }
  }

  .dropdown-toggle {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;

    .badge {
      top: 12px;
      right: -10px;
      font-size: 0.8rem;
    }

    &.show {
      background-color: rgba(128, 128, 128, 0.18);
      color: $orange;
    }

    i {
      font-size: 1.3rem;
    }

    &:hover {
      background-color: rgba(128, 128, 128, 0.18);
      color: $orange;
    }

    &:after {
      display: none;
    }
  }

  .dropdown-menu {
    padding: 0;
    width: auto;
    left: 0;
    right: 0;
    top: calc(100% - 2.5rem) !important;

    @include media-breakpoint-down(sm) {
      width: 410px;
    }
  }

  .animation-dropdown-fade-in {
    opacity: 0;
    //transform: translateY(-10px);
    transition: opacity 0.3s ease-in-out;


    &.show {
      opacity: 1;
      //transform: translateY(0);
      //margin-top: 10px !important;
      //padding: 0;
    }
  }
}