.cr-floating-menu-option {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;

  .anticon {
    svg {
      width: 28px;
      height: 28px;
    }
  }

  &__label {
    font-size: 10px;
    line-height: 10px;
    font-weight: 400;

    &--horizontal {
      font-size: 14px;
      line-height: 18px;
    }
  }

  &--horizontal {
    flex-direction: row;
    gap: 12px;
    justify-content: left;

    .anticon {
      svg {
        width: 20px;
        height: 20px;
      }
    }
  }
}