.sidebar-outer{
  width: 40rem;
}
.sidebar{
  background: var(--white);
  border-radius: 0.8rem;
  padding: 4rem;
}
.sidebar-head{
  display: none;
  align-items: center;
  justify-content: space-between;
}
#closeFilter{
  width: 4rem;
  height: 4rem;
  border: 1px solid #E1E3E3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
#closeFilter:hover{
  border-color: var(--pink);
}
.sidebar-top:last-child,
.sidebar-item:last-child{
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.checkbox-item{
  margin-bottom: 1.2rem;
}
.checkbox-item:nth-child(n + 6){
  display: none;
}
.checkbox-item.show{
  display: block;
}
.checkbox-list + .btn-link{
  margin-top: 0.8rem;
}
#showFilter{
  display: none; 
}
.sidebar-top .btn-link-black {
  margin-bottom: 0.8rem;
}
.sidebar-top .btn-link-black:last-child{
  margin-bottom: 0;
}
@media(min-width:1360px) and (max-width:1459.98px){
  .sidebar-outer {
    width: 35rem;
  }
  .sidebar {
    padding: 3.2rem;
  }
}
@media(min-width:1200px) and (max-width:1359.98px){
  .sidebar-outer {
    width: 35rem;
  }
  .sidebar {
    padding: 3.2rem;
  }
}
@media(min-width:992px) and (max-width:1199.98px){
  .sidebar-outer {
    width: 33rem;
  }
  .sidebar {
    padding: 2.4rem;
  }
}
@media(max-width:991.98px){
  .showsidebar{
    overflow: hidden;
  }
  .sidebar-outer {
    width: 100%;
    height: initial !important;
  }
  .sidebar-outer .inner-wrapper-sticky{
    position: relative !important;
    top: initial !important;
    bottom: initial !important;
    left: 0 !important;
    width: 100% !important;
    transform: initial !important;
  }
  .sidebar {
    background: var(--white);
    border-radius: 0;
    padding: 2rem 2rem 7rem 2rem;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100dvh;
    height: 100dvh;
    overflow: hidden;
    overflow-y: auto;
    z-index: 99;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
  .showsidebar .sidebar{
    left: 0;
  }
  .sidebar-head {
    display: flex;
    margin-bottom: 2rem;
  }
  .sidebar-item .input-column {
    width: calc(50% - 0.6rem);
  }
  .sidebar-btns {
    position: fixed;
    left: -100%;
    bottom: 0;
    background: var(--white);
    border-top: 1px solid #E1E3E3;
    width: 100%;
    padding: 1.5rem 2rem;
    z-index: 2;
    display: flex;
    align-items: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
  .showsidebar .sidebar-btns{
    left: 0;
  }
  .sidebar-btn {
    margin: 0;
  }
  .sidebar-btn:first-child{
    flex-grow: 1;
  }
  .sidebar-btn + .sidebar-btn{
    margin-left: 1.6rem;
  }
  #showFilter{
    display: flex;
    margin-left: 1.2rem;
    flex-shrink: 0;
    width: 4.8rem !important;
    height: 4.8rem !important;
    order: 1;
  }
}