.crm-side-scroller {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 400;
  pointer-events: none;
  left: 0;
  right: 0;
}

.crm-side-scroller .left,
.crm-side-scroller .right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 65px;
  height: 100%;
  display: block;
  overflow: hidden;
  cursor: pointer;
  pointer-events: fill;
}

.crm-side-scroller .left {
  left: 0;
  background-size: 100% 100%;
}

.fg-content--dark-theme .crm-side-scroller .left {
  background: linear-gradient(to right, rgba(34, 36, 38, 1) 0%, rgba(34, 36, 38, 0) 100%);
}

.fg-content--light-theme .crm-side-scroller .left {
  background: linear-gradient(to right, rgba(242, 242, 242, 1) 0%, rgba(242, 242, 242, 0) 100%);
}

.crm-side-scroller .right {
  right: 0;
  background-size: 100% 100%;
}

.fg-content--dark-theme .crm-side-scroller .right {
  background: linear-gradient(to right, rgba(34, 36, 38, 0) 0%, rgba(34, 36, 38, 1) 100%);
}

.fg-content--light-theme .crm-side-scroller .right {
  background: linear-gradient(to right, rgba(242, 242, 242, 0) 0%, rgba(242, 242, 242, 1) 100%);
}
