.section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.relative {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.figure {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px var(--theme-border);
  border-radius: 2px;
  cursor: pointer;
  user-select: none;

  &:hover {
    box-shadow:
      0 0 0 1px var(--theme-border),
      0 0 0 4px var(--theme-input-active);
  }
}

.input {
  width: 1px;
  height: 1px;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  outline: none;
  box-shadow: none;
  visibility: hidden;
  opacity: 0;
  user-select: none;
}

.right {
  min-width: 10%;
  width: 100%;
  padding: 0px 0px 0px 12px;
  line-height: 1.5;

  @media (max-width: 768px) {
    padding: 5px 0px 0px 8px;
  }
}
