
::-webkit-scrollbar {
  width: 5px;
  display: none;
}

::-webkit-scrollbar-track {
  background-color: #1F1D2B;
  display: none;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #FFAA00;
}
.sidebar {
  scroll-behavior:smooth;
    width: 250px;
    background-color: #262335;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    overflow-y:scroll;
    transition: all ease-in .2s ;
    z-index: 3;
    border-left: #FFAA00 2px solid;
    min-height: 100vh;
  }

  .sidebar-toggler{
/*     position: absolute;
    top: 10px;
    left: 10px; */
    color: white;
    font-size: 25px;
    cursor: pointer;
    z-index:1;
  }
  .sidebar li {
    display: block;
    color: white;
    padding: .8rem;
    text-decoration: none;
    padding-top: .1rem;
    text-align: start;
    /* padding-bottom: .2rem; */
  }
  .sidebar li a span
  {
    transition: all ease-in-out 2s;
  }
  /* Sidebar links */
  .sidebar li a {
    display: flex;flex-direction: row;
    align-items: center;
    color: white;
    padding: .125rem;
    border-radius: 10px;
    text-decoration: none;
    text-align: start;
    font-size: .8rem;
  }
  .sidebar li p {
    font-size: .8rem;
  }
  .sidebar li a img {
    width: 35px;
    height: 35px;
  }
  .sidebar .brand{
  width: 70%;
  transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) .2s;
  }
  /* Active/current link */
  .sidebar a.active {
    /* background-color: #FFAA00; */
    color: white;
    font-weight: bold;
  }

  /* Links on mouse-over */
  .sidebar a:hover:not(.active) {
    background-color: #555;
    color: white;
  }
  .sidebar-hidden {
    right: -250px;
    background-color: #1F1D2B;
    height: 100vh;
    overflow: auto;

  }
  .sidebar-hidden .sidebar-toggler{
    left: 50%;
    transform: translateX(-50%);
  }
  .sidebar-hidden .brand{
    width: 100%;
   /*  visibility: hidden; */
  }
  .sidebar-hidden li a span {
    display: none;
    opacity: 0;
    transition-duration: 20s;
  }
  .sidebar-hidden li a .fa {
    font-size: 25px;
  }
  .sidebar-hidden li{
    padding: .5rem;

  }
  .sidebar-hidden li a{
    padding: 0;
    text-align: right;
    padding-top: .2rem;
    /* padding-bottom: .5rem; */
  }
  div.content {
    min-height: 100vh;
    padding: 1px 16px;
    height:  100%;
    position: relative;
    background-color: #3D3E65;
/*     border-radius: 30px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; */
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) .2s;
    overflow-y:hidden;
  }
  div.content.expaned {
    /* margin-right: 250px; */
    padding: 1px 16px;
    height: 1000px;
  }
  .title-text ,.title-drop{
    z-index: 1;
  }
  div.content .overlay{
    background-color: #1f1d2bc2;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    z-index: 2;
  }
  div.content .overlay.showed{
    visibility:visible
  }
  .left-section{
    background-color: #F1F2F3;
    height: 100%;
    border-top-right-radius: 30px;
    padding: 20px;
    height: 1000px;
    min-height: 100%;
}

  @media screen and (max-width: 700px) {

    div.content {margin-left: 60px;width: 100%}
  }


  @media screen and (max-width: 400px) {
    .sidebar a {
      text-align: center;
      float: none;
    }
  }
hr{
    background: rgba(255, 255, 255, 0.3) !important;
}
