Here is a MWE:
% Preview source code
%% LyX 2.3.2-2 created this file. For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\documentclass[a4paper,english,hebrew,numbers=noenddot]{scrartcl}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{fontspec}
\setlength{\parindent}{0bp}
\usepackage{color}
\usepackage[unicode=true,pdfusetitle,
bookmarks=true,bookmarksnumbered=false,bookmarksopen=false,
breaklinks=false,pdfborder={0 0 0},pdfborderstyle={},backref=false,colorlinks=true]
{hyperref}
\hypersetup{
linkcolor=blue}
\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% LyX specific LaTeX commands.
\pdfpageheight\paperheight
\pdfpagewidth\paperwidth
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
\newfontfamily\hebrewfont[Script=Hebrew]{David CLM}
\newfontfamily\hebrewfonttt[Script=Hebrew]{Miriam Mono CLM}
\newfontfamily\hebrewfontsf[Script=Hebrew]{Bellefair}
\newfontfamily{\am}{Open Sans Hebrew}
\AtBeginDocument{
\renewcommand\footnoterule{%
\kern -3pt
\hbox to \textwidth{\hfill\vrule height 0.4pt width .4\textwidth}
\kern 2.6pt
}}
\renewcommand{\labelenumii}{\labelenumi\arabic{enumii}.}
\addtokomafont{disposition}{\rmfamily}
\renewcommand{\descriptionlabel}[1]{\hspace{\labelsep}\bfseries\am\textcolor{blue}{#1:}}
\makeatother
\usepackage{polyglossia}
\setdefaultlanguage{hebrew}
\setotherlanguage{english}
\begin{document}
\begin{description}
\item [{כחגלדך}] דג סקרן שט לו ביום דג סקרן שט לו ביום דג סקרן שט לו ביום
דג סקרן שט לו ביום דג סקרן שט לו ביום דג סקרן שט לו ביום דג סקרן שט
לו ביום דג סקרן שט לו ביום דג סקרן שט לו ביום דג סקרן שט לו ביום דג
סקרן שט לו ביום דג סקרן שט לו ביום דג סקרן שט לו ביום דג סקרן שט לו
ביום דג סקרן שט לו ביום דג סקרן שט לו
\end{description}
\end{document}
As you can see there text is below the blue word. Can I separate them?
i.e.:
All of the text will be after the black line. Can I do something like this?

In other words - it is possible to make a space for the labels (blue words) and space for the text that they wont mix?
EDIT:
I use this solution to design my description - https://stackoverflow.com/a/7629070/2013542, so there is something that I can add for this that it will work?
Thank you!


enumitempackage. You could then use something like\begin{description}[labelwidth =<width of your choice>]– leandriis Jun 15 '19 at 14:42tabularxenvironment would do the trick. CanLyXusetabularx? – David Purton Jun 15 '19 at 14:54