/* iPadPro */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .ProductFilter_SideWide_CurrentFilters_List {
    padding: 15px 0;
  }
}

/* iPad */
@media only screen and (min-width: 426px) and (max-width: 768px) {
  .ProductFilterOuterWrap  .ProductFilter_SideWide_Box {
    position: fixed;
    top: 120px;
    left: 0;
    width: 80vw;
    height: calc(100vh - 120px);
    overflow-y: auto;
  }
}

/* Mobile */
@media only screen and (max-width: 426px) {
  .ProductFilterOuterWrap  .ProductFilter_SideWide_Box {
    position: fixed;
    top: 120px;
    left: 0;
    width: 80vw;
    height: calc(100vh - 120px);
    overflow-y: auto;
  }
}