.root {
  display: flex;
  padding: 2px;
  box-sizing: border-box;
  width: 100%;
  border-radius: 2px;
  height: 40px;
  background: var(--fill4);
}

.tab {
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100%;
  user-select: none;

  &__active {
    background: var(--fill5);
    box-shadow: 0px 2px 4px 0px rgba(121, 153, 171, 0.12), 0px 1px 1px 0px rgba(121, 153, 171, 0.12);
  }
}