I am using
\documentclass[final, hyperref={pdfpagelabels=false}, xcolor=svgnames, mathserif]{beamer}
and
\usepackage[orientation=portrait,size=a0,scale=1.4,debug]{beamerposter}
In an itemize environment, for all items the horizontal spacing between bullet and text is too small. I would like to increase it. I've read about the \labelsep option and the enumitem package. However, I've also read that enumitem should not be used in context with beamer. Is there a simple solution?
Edit: A semi-optimal solution I have found so far is in the preamble
\usepackage{enumitem}% http://ctan.org/pkg/enumitem
\setitemize{label=\usebeamerfont*{itemize item}
\usebeamercolor[fg]{itemize item}
\usebeamertemplate{itemize item}}
and then using e.g.
\begin{itemize}[leftmargin=*,labelindent=1cm,labelsep=0.5cm]
This is based on Does enumitem conflict with beamer for lists?. For my special case, this is definitely fine. However, beamer-specific formatting of nesting level two is lost (and probably more).