.root {
  display: flex;
  gap: 16px;
  width: 100%;
  padding: 6px 16px;
  box-sizing: border-box;
}

.root__value {
  display: flex;
  gap: 8px;
  padding: 6px 16px;
  box-sizing: border-box;
  align-items: center;
}

.center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  gap: 2px;

  svg {
    cursor: pointer;

    &:hover {
      opacity: 0.8;
    }
  }

  &__top {
    display: flex;
    gap: 4px;
    align-items: center;
  }
}

.right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;

  &__top {
    display: flex;
    gap: 8px;

    button {
      background: none;
      outline: none;
      border: none;
      cursor: pointer;
      padding: 0;

      &:hover {
        opacity: 0.8;
      }
    }
  }
}

.info {
  background: none;
  outline: none;
  width: 16px;
  height: 16px;
  cursor: pointer;
  border: none;
  padding: 0;
}