#catalog-modal .modal-content {
  width: 100%;
  max-width: 1344px;
  border-radius: 2.2rem;
  max-height: 100%;
}
#catalog-modal .column > .box {
  height: 100%;
}
#catalog-modal .children {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  transition: all 0.5s ease-in-out;
}
#catalog-modal .children.shown {
  transform: translateX(100%);
}
@media (max-width: 768px) {
  #catalog-modal .children {
    position: fixed !important;
  }
}
