.resizable-panel-layout {
  display: flex;
  min-width: 0;
  width: 100%;
}
.resizable-panel-layout__panel {
  flex: 0 0 auto;
  min-width: 0;
  position: relative;
  transition: width 0.1s ease-out;
}
.resizable-panel-layout__panel--resizing {
  transition: none;
}
.resizable-panel-layout__content {
  flex: 1 1 auto;
  min-width: 0;
}
.resizable-panel-layout .resizable-panel-layout__resize-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
  cursor: ew-resize;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
.resizable-panel-layout .resizable-panel-layout__resize-handle:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 100%;
  background: #E4E6EF;
  transition: all 0.2s ease;
}
.resizable-panel-layout .resizable-panel-layout__resize-handle:hover:before, .resizable-panel-layout .resizable-panel-layout__resize-handle:focus:before, .resizable-panel-layout .resizable-panel-layout__resize-handle:active:before {
  width: 2px;
  background: #F35625;
}
.resizable-panel-layout--left .resizable-panel-layout__resize-handle {
  right: 0;
}
.resizable-panel-layout--right .resizable-panel-layout__resize-handle {
  left: 0;
}

@media (max-width: 991.98px) {
  .resizable-panel-layout {
    flex-direction: column;
  }
  .resizable-panel-layout__panel {
    width: 100% !important;
  }
  .resizable-panel-layout .resizable-panel-layout__resize-handle {
    display: none;
  }
}
