body {
  overflow-x: hidden;
}

.drawerContainer {
  height: 100%;
  position: inherit;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  transition: all 0.4s ease-in-out;
  .toggleBtn {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.35%;
    height: 14%;
    top: 35%;
    background-color: $primary-color;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
  }
  .drawer {
    position: relative;
    background-color: $white;
    border-radius: 8px;
    transition: all 0.4s ease-in-out;
  }
}
