.le-dialog-window{
    -webkit-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 23%);
    -moz-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 23%);
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 23%);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    overflow: hidden;
    z-index: 9999999;
    display: flex;
    flex-direction: column;
}

.le-dialog-window-header {
    background: #cecece;
    color: #3e3e3e;
    height: 28px;
    flex: 0 0 28px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 30px 0 10px;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;
}


.le-close-sign {
    cursor: pointer;
    position: absolute;
    right: 0px;
    top: 0px;
}
.le-close-sign:before{
    content: ' ';
    display: block;
    background-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/" x="0px" y="0px" viewBox="-0.017 -0.916 22 23" enable-background="new -0.017 -0.916 22 23" xml:space="preserve"> <defs> </defs> <path style="fill:%233e3e3e" d="M21.238,21.737c-0.128,0-0.256-0.049-0.354-0.146L0.146,0.854c-0.195-0.195-0.195-0.512,0-0.707s0.512-0.195,0.707,0 l20.738,20.737c0.195,0.195,0.195,0.512,0,0.707C21.494,21.688,21.366,21.737,21.238,21.737z"/> <path style="fill:%233e3e3e" d="M0.5,21.737c-0.128,0-0.256-0.049-0.354-0.146c-0.195-0.195-0.195-0.512,0-0.707L20.884,0.146 c0.195-0.195,0.512-0.195,0.707,0s0.195,0.512,0,0.707L0.854,21.591C0.756,21.688,0.628,21.737,0.5,21.737z"/> </svg>');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 15px;
    width: 28px;
    height: 28px;
    filter: drop-shadow(0px 4px 8px rgb(0 0 0 / 0.4));
}

.le-dialog-window-body {
    border-top: 0;
    background-color: var(--simpleDialogBg);
    flex: 1;
    display: flex;
    overflow: hidden;
}
