.drawer{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100vh - 100px);
  .main{
    max-height: calc(100vh - 150px);
    overflow: auto;
  }
  .footer{
    .btns{
      margin-top: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 5px;
      button{
        flex: 1;
        max-width: 200px;
      }
    }
  }
  .pikerCtrl{
    margin-bottom: 5px;
    display: flex;
    gap: 5px;
  }
}
.drawerTriger{
  height: 34px;
  padding: 0 8px;
  border: 1px solid #C4C6CF;
  color:#999999 !important;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}