.navigation-vertical {
    position: fixed;
    z-index: 99999;
    display: block;
    width: 80px;
    height: 100vh;
    background: var(--#{$variable-prefix}vertical-sidebar-bg);
    .navigation{
      height: 100%;
    }
    ul{
      list-style: none;
      &:first-child {
        max-height: calc(100vh - 275px);
        overflow: auto;
        &::-webkit-scrollbar {
          display: none;
        }
      }
    }
    
    .nav-item-block{
      position: relative;
      text-align: center;
      margin: 0 0 10px;
      padding: 0 7px;
      .nav-heading {
        color: rgb(182 184 186 / 70%);
      }
      &.active{
        a{
          font-weight: 700;
          color: #e0e0e3;
          background: var(--#{$variable-prefix}vertical-sidebar-item-active);
          .nav-heading{
            color: #e0e0e3;
          }
        }
        &:before{
          position: absolute;
          top: 50%;
          left: 2px;
          width: 3px;
          height: 28px;
          background: #6f75bc;
          border-radius: 0 2px 2px 0;
          content: '';
          transform: translateY(-50%);
        }
      }
      & > a{
        width: 68px;
        padding: 13px 4px;
        color: rgb(182 184 186 / 70%);
        text-decoration: none;
        border-radius: 6px;
      }
      .dropdown{
        & > a{
          color:rgb(182 184 186 / 70%);
          text-decoration: none;
        }
      }
      .nav-heading{
        font-size: .625rem;
      }
    }
    .dropdown-menu[data-bs-popper] {
      top: inherit;
      bottom: -30px;
      left: calc(100% - 9px);
      margin-top: 0.125rem;
      &.dropdown-menu-calendar {
        left: calc(100% + 14px);
        border: 0;
        box-shadow: 0px 0px 6px #3338410D;
      }
    }
    .user-profile {
      margin: 0 auto;
      font-size: 15px;
      color: #c7e1de;
    }
  }
  
  .main-inner-content {
    width: calc(100vw - 80px);
    margin-left: auto;
  }
  
  /* stylelint-disable */
  .dropdown-calendar{
    .dropdown-menu-calendar {
      min-width: 26.625rem;
      height: 26.625rem;
      max-height: 26.625rem;
      padding: 0;
      overflow: hidden;
      &> .card{
        margin-top: 0 !important;
        .eventlist-wrapper{
          height: 17rem;
          // padding-right: 5px;
          overflow: auto;
          .empty-block-card {
            .empty-block-wrapper {
              min-height: 268px;
            }
          }
        }
      }
    }
    .mk-notification-dot{
      top: initial;
      bottom: 12px;
      right: -4px;
      border-color: #14171e;
    }
  }
  /* stylelint-enabled */
  
  .eventlist-wrapper{
    .event-slot{
      &:last-child{
        margin-bottom: 0;
      }
    }
  }
  