/* BASICS */

.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  color: black;
  direction: ltr;
}

/* PADDING */

.CodeMirror-lines {
  padding: 4px 0; /* Vertical padding around content */
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  padding: 0 4px; /* Horizontal padding of content */
}

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white; /* The little square between H and V scrollbars */
}

/* GUTTER */

.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
.CodeMirror-linenumbers {}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}

.CodeMirror-guttermarker { color: black; }
.CodeMirror-guttermarker-subtle { color: #999; }

/* CURSOR */

.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}
.cm-fat-cursor-mark {
  background-color: rgba(20, 255, 20, 0.5);
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
}
.cm-animate-fat-cursor {
  width: auto;
  border: 0;
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7;
}
@-moz-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@-webkit-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}

/* Can style cursor different in overwrite (non-insert) mode */
.CodeMirror-overwrite .CodeMirror-cursor {}

.cm-tab { display: inline-block; text-decoration: inherit; }

.CodeMirror-rulers {
  position: absolute;
  left: 0; right: 0; top: -50px; bottom: 0;
  overflow: hidden;
}
.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0; bottom: 0;
  position: absolute;
}

/* DEFAULT THEME */

.cm-s-default .cm-header {color: blue;}
.cm-s-default .cm-quote {color: #090;}
.cm-negative {color: #d44;}
.cm-positive {color: #292;}
.cm-header, .cm-strong {font-weight: bold;}
.cm-em {font-style: italic;}
.cm-link {text-decoration: underline;}
.cm-strikethrough {text-decoration: line-through;}

.cm-s-default .cm-keyword {color: #708;}
.cm-s-default .cm-atom {color: #219;}
.cm-s-default .cm-number {color: #164;}
.cm-s-default .cm-def {color: #00f;}
.cm-s-default .cm-variable,
.cm-s-default .cm-punctuation,
.cm-s-default .cm-property,
.cm-s-default .cm-operator {}
.cm-s-default .cm-variable-2 {color: #05a;}
.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}
.cm-s-default .cm-comment {color: #a50;}
.cm-s-default .cm-string {color: #a11;}
.cm-s-default .cm-string-2 {color: #f50;}
.cm-s-default .cm-meta {color: #555;}
.cm-s-default .cm-qualifier {color: #555;}
.cm-s-default .cm-builtin {color: #30a;}
.cm-s-default .cm-bracket {color: #997;}
.cm-s-default .cm-tag {color: #170;}
.cm-s-default .cm-attribute {color: #00c;}
.cm-s-default .cm-hr {color: #999;}
.cm-s-default .cm-link {color: #00c;}

.cm-s-default .cm-error {color: #f00;}
.cm-invalidchar {color: #f00;}

.CodeMirror-composing { border-bottom: 2px solid; }

/* Default styles for common addons */

div.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}
.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
.CodeMirror-activeline-background {background: #e8f2ff;}

/* STOP */

/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */

.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}

.CodeMirror-scroll {
  overflow: scroll !important; /* Things will break if this is overridden */
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px; margin-right: -30px;
  padding-bottom: 30px;
  height: 100%;
  outline: none; /* Prevent dragging from highlighting the element */
  position: relative;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 30px solid transparent;
}

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actual scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
}
.CodeMirror-vscrollbar {
  right: 0; top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0; left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0; bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0; bottom: 0;
}

.CodeMirror-gutters {
  position: absolute; left: 0; top: 0;
  min-height: 100%;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -30px;
}
.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
.CodeMirror-gutter-background {
  position: absolute;
  top: 0; bottom: 0;
  z-index: 4;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
.CodeMirror-gutter-wrapper ::selection { background-color: transparent }
.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }

.CodeMirror-lines {
  cursor: text;
  min-height: 1px; /* prevents collapsing before first draw */
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: contextual;
  font-variant-ligatures: contextual;
}
.CodeMirror-wrap pre.CodeMirror-line,
.CodeMirror-wrap pre.CodeMirror-line-like {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}

.CodeMirror-linebackground {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 0;
}

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  padding: 0.1px; /* Force widget margins to stay inside of the container */
}

.CodeMirror-widget {}

.CodeMirror-rtl pre { direction: rtl; }

.CodeMirror-code {
  outline: none;
}

/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}
.CodeMirror-measure pre { position: static; }

div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
div.CodeMirror-dragcursors {
  visibility: visible;
}

.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}

.CodeMirror-selected { background: #d9d9d9; }
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
.CodeMirror-crosshair { cursor: crosshair; }
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }

.cm-searching {
  background-color: #ffa;
  background-color: rgba(255, 255, 0, .4);
}

/* Used to force a border model for a node */
.cm-force-border { padding-right: .1px; }

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}

/* See issue #2901 */
.cm-tab-wrap-hack:after { content: ''; }

/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext { background: none; }




/**
 * simplemde v1.11.2
 * Copyright Next Step Webs, Inc.
 * @link https://github.com/NextStepWebs/simplemde-markdown-editor
 * @license MIT
 */
.CodeMirror{color:#000}.CodeMirror-lines{padding:4px 0}.CodeMirror pre{padding:0 4px}.CodeMirror-gutter-filler,.CodeMirror-scrollbar-filler{background-color:#fff}.CodeMirror-gutters{border-right:1px solid #ddd;background-color:#f7f7f7;white-space:nowrap}.CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:#999;white-space:nowrap}.CodeMirror-guttermarker{color:#000}.CodeMirror-guttermarker-subtle{color:#999}.CodeMirror-cursor{border-left:1px solid #000;border-right:none;width:0}.CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}.cm-fat-cursor .CodeMirror-cursor{width:auto;border:0!important;background:#7e7}.cm-fat-cursor div.CodeMirror-cursors{z-index:1}.cm-animate-fat-cursor{width:auto;border:0;-webkit-animation:blink 1.06s steps(1) infinite;-moz-animation:blink 1.06s steps(1) infinite;animation:blink 1.06s steps(1) infinite;background-color:#7e7}@-moz-keyframes blink{50%{background-color:transparent}}@-webkit-keyframes blink{50%{background-color:transparent}}@keyframes blink{50%{background-color:transparent}}.cm-tab{display:inline-block;text-decoration:inherit}.CodeMirror-ruler{border-left:1px solid #ccc;position:absolute}.cm-s-default .cm-header{color:#00f}.cm-s-default .cm-quote{color:#090}.cm-negative{color:#d44}.cm-positive{color:#292}.cm-header,.cm-strong{font-weight:700}.cm-em{font-style:italic}.cm-link{text-decoration:underline}.cm-strikethrough{text-decoration:line-through}.cm-s-default .cm-keyword{color:#708}.cm-s-default .cm-atom{color:#219}.cm-s-default .cm-number{color:#164}.cm-s-default .cm-def{color:#00f}.cm-s-default .cm-variable-2{color:#05a}.cm-s-default .cm-variable-3{color:#085}.cm-s-default .cm-comment{color:#a50}.cm-s-default .cm-string{color:#a11}.cm-s-default .cm-string-2{color:#f50}.cm-s-default .cm-meta,.cm-s-default .cm-qualifier{color:#555}.cm-s-default .cm-builtin{color:#30a}.cm-s-default .cm-bracket{color:#997}.cm-s-default .cm-tag{color:#170}.cm-s-default .cm-attribute{color:#00c}.cm-s-default .cm-hr{color:#999}.cm-s-default .cm-link{color:#00c}.cm-invalidchar,.cm-s-default .cm-error{color:red}.CodeMirror-composing{border-bottom:2px solid}div.CodeMirror span.CodeMirror-matchingbracket{color:#0f0}div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#f22}.CodeMirror-matchingtag{background:rgba(255,150,0,.3)}.CodeMirror-activeline-background{background:#e8f2ff}.CodeMirror{position:relative;overflow:hidden;background:#fff}.CodeMirror-scroll{overflow:scroll!important;margin-bottom:-30px;margin-right:-30px;padding-bottom:30px;height:100%;outline:0;position:relative}.CodeMirror-sizer{position:relative;border-right:30px solid transparent}.CodeMirror-gutter-filler,.CodeMirror-hscrollbar,.CodeMirror-scrollbar-filler,.CodeMirror-vscrollbar{position:absolute;z-index:6;display:none}.CodeMirror-vscrollbar{right:0;top:0;overflow-x:hidden;overflow-y:scroll}.CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}.CodeMirror-scrollbar-filler{right:0;bottom:0}.CodeMirror-gutter-filler{left:0;bottom:0}.CodeMirror-gutters{position:absolute;left:0;top:0;min-height:100%;z-index:3}.CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;vertical-align:top;margin-bottom:-30px}.CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:0 0!important;border:none!important;-webkit-user-select:none;-moz-user-select:none;user-select:none}.CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}.CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}.CodeMirror-lines{cursor:text;min-height:1px}.CodeMirror pre{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;border-width:0;background:0 0;font-family:inherit;font-size:inherit;margin:0;white-space:pre;word-wrap:normal;line-height:inherit;color:inherit;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent;-webkit-font-variant-ligatures:none;font-variant-ligatures:none}.CodeMirror-wrap pre{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.CodeMirror-linebackground{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.CodeMirror-linewidget{position:relative;z-index:2;overflow:auto}.CodeMirror-code{outline:0}.CodeMirror-gutter,.CodeMirror-gutters,.CodeMirror-linenumber,.CodeMirror-scroll,.CodeMirror-sizer{-moz-box-sizing:content-box;box-sizing:content-box}.CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}.CodeMirror-cursor{position:absolute}.CodeMirror-measure pre{position:static}div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}.CodeMirror-focused div.CodeMirror-cursors,div.CodeMirror-dragcursors{visibility:visible}.CodeMirror-selected{background:#d9d9d9}.CodeMirror-focused .CodeMirror-selected,.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:#d7d4f0}.CodeMirror-crosshair{cursor:crosshair}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}.cm-searching{background:#ffa;background:rgba(255,255,0,.4)}.cm-force-border{padding-right:.1px}@media print{.CodeMirror div.CodeMirror-cursors{visibility:hidden}}.cm-tab-wrap-hack:after{content:''}span.CodeMirror-selectedtext{background:0 0}.CodeMirror{height:auto;min-height:300px;border:1px solid #ddd;border-bottom-left-radius:4px;border-bottom-right-radius:4px;padding:10px;font:inherit;z-index:1}.CodeMirror-scroll{min-height:300px}.CodeMirror-fullscreen{background:#fff;position:fixed!important;top:50px;left:0;right:0;bottom:0;height:auto;z-index:9}.CodeMirror-sided{width:50%!important}.editor-toolbar{position:relative;opacity:.6;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;padding:0 10px;border-top:1px solid #bbb;border-left:1px solid #bbb;border-right:1px solid #bbb;border-top-left-radius:4px;border-top-right-radius:4px}.editor-toolbar:after,.editor-toolbar:before{display:block;content:' ';height:1px}.editor-toolbar:before{margin-bottom:8px}.editor-toolbar:after{margin-top:8px}.editor-toolbar:hover,.editor-wrapper input.title:focus,.editor-wrapper input.title:hover{opacity:.8}.editor-toolbar.fullscreen{width:100%;height:50px;overflow-x:auto;overflow-y:hidden;white-space:nowrap;padding-top:10px;padding-bottom:10px;box-sizing:border-box;background:#fff;border:0;position:fixed;top:0;left:0;opacity:1;z-index:9}.editor-toolbar.fullscreen::before{width:20px;height:50px;background:-moz-linear-gradient(left,rgba(255,255,255,1) 0,rgba(255,255,255,0) 100%);background:-webkit-gradient(linear,left top,right top,color-stop(0,rgba(255,255,255,1)),color-stop(100%,rgba(255,255,255,0)));background:-webkit-linear-gradient(left,rgba(255,255,255,1) 0,rgba(255,255,255,0) 100%);background:-o-linear-gradient(left,rgba(255,255,255,1) 0,rgba(255,255,255,0) 100%);background:-ms-linear-gradient(left,rgba(255,255,255,1) 0,rgba(255,255,255,0) 100%);background:linear-gradient(to right,rgba(255,255,255,1) 0,rgba(255,255,255,0) 100%);position:fixed;top:0;left:0;margin:0;padding:0}.editor-toolbar.fullscreen::after{width:20px;height:50px;background:-moz-linear-gradient(left,rgba(255,255,255,0) 0,rgba(255,255,255,1) 100%);background:-webkit-gradient(linear,left top,right top,color-stop(0,rgba(255,255,255,0)),color-stop(100%,rgba(255,255,255,1)));background:-webkit-linear-gradient(left,rgba(255,255,255,0) 0,rgba(255,255,255,1) 100%);background:-o-linear-gradient(left,rgba(255,255,255,0) 0,rgba(255,255,255,1) 100%);background:-ms-linear-gradient(left,rgba(255,255,255,0) 0,rgba(255,255,255,1) 100%);background:linear-gradient(to right,rgba(255,255,255,0) 0,rgba(255,255,255,1) 100%);position:fixed;top:0;right:0;margin:0;padding:0}.editor-toolbar a{display:inline-block;text-align:center;text-decoration:none!important;color:#2c3e50!important;width:30px;height:30px;margin:0;border:1px solid transparent;border-radius:3px;cursor:pointer}.editor-toolbar a.active,.editor-toolbar a:hover{background:#fcfcfc;border-color:#95a5a6}.editor-toolbar a:before{line-height:30px}.editor-toolbar i.separator{display:inline-block;width:0;border-left:1px solid #d9d9d9;border-right:1px solid #fff;color:transparent;text-indent:-10px;margin:0 6px}.editor-toolbar a.fa-header-x:after{font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;font-size:65%;vertical-align:text-bottom;position:relative;top:2px}.editor-toolbar a.fa-header-1:after{content:"1"}.editor-toolbar a.fa-header-2:after{content:"2"}.editor-toolbar a.fa-header-3:after{content:"3"}.editor-toolbar a.fa-header-bigger:after{content:"▲"}.editor-toolbar a.fa-header-smaller:after{content:"▼"}.editor-toolbar.disabled-for-preview a:not(.no-disable){pointer-events:none;background:#fff;border-color:transparent;text-shadow:inherit}@media only screen and (max-width:700px){.editor-toolbar a.no-mobile{display:none}}.editor-statusbar{padding:8px 10px;font-size:12px;color:#959694;text-align:right}.editor-statusbar span{display:inline-block;min-width:4em;margin-left:1em}.editor-preview,.editor-preview-side{padding:10px;background:#fafafa;overflow:auto;display:none;box-sizing:border-box}.editor-statusbar .lines:before{content:'lines: '}.editor-statusbar .words:before{content:'words: '}.editor-statusbar .characters:before{content:'characters: '}.editor-preview{position:absolute;width:100%;height:100%;top:0;left:0;z-index:7}.editor-preview-side{position:fixed;bottom:0;width:50%;top:50px;right:0;z-index:9;border:1px solid #ddd}.editor-preview-active,.editor-preview-active-side{display:block}.editor-preview-side>p,.editor-preview>p{margin-top:0}.editor-preview pre,.editor-preview-side pre{background:#eee;margin-bottom:10px}.editor-preview table td,.editor-preview table th,.editor-preview-side table td,.editor-preview-side table th{border:1px solid #ddd;padding:5px}.CodeMirror .CodeMirror-code .cm-tag{color:#63a35c}.CodeMirror .CodeMirror-code .cm-attribute{color:#795da3}.CodeMirror .CodeMirror-code .cm-string{color:#183691}.CodeMirror .CodeMirror-selected{background:#d9d9d9}.CodeMirror .CodeMirror-code .cm-header-1{font-size:200%;line-height:200%}.CodeMirror .CodeMirror-code .cm-header-2{font-size:160%;line-height:160%}.CodeMirror .CodeMirror-code .cm-header-3{font-size:125%;line-height:125%}.CodeMirror .CodeMirror-code .cm-header-4{font-size:110%;line-height:110%}.CodeMirror .CodeMirror-code .cm-comment{background:rgba(0,0,0,.05);border-radius:2px}.CodeMirror .CodeMirror-code .cm-link{color:#7f8c8d}.CodeMirror .CodeMirror-code .cm-url{color:#aab2b3}.CodeMirror .CodeMirror-code .cm-strikethrough{text-decoration:line-through}.CodeMirror .CodeMirror-placeholder{opacity:.5}.CodeMirror .cm-spell-error:not(.cm-url):not(.cm-comment):not(.cm-tag):not(.cm-word){background:rgba(255,0,0,.15)}



.CodeMirror-hints {
  position: absolute;
  z-index: 10;
  overflow: hidden;
  list-style: none;

  margin: 0;
  padding: 2px;

  -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  border-radius: 3px;
  border: 1px solid silver;

  background: white;
  font-size: 90%;
  font-family: monospace;

  max-height: 20em;
  overflow-y: auto;
}

.CodeMirror-hint {
  margin: 0;
  padding: 0 4px;
  border-radius: 2px;
  white-space: pre;
  color: black;
  cursor: pointer;
}

li.CodeMirror-hint-active {
  background: #08f;
  color: white;
}




.tribute-container {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  max-height: 300px;
  max-width: 500px;
  overflow: auto;
  display: block;
  z-index: 999999; }
  .tribute-container ul {
    margin: 0;
    margin-top: 2px;
    padding: 0;
    list-style: none;
    background: #efefef; }
  .tribute-container li {
    padding: 5px 5px;
    cursor: pointer; }
    .tribute-container li.highlight {
      background: #ddd; }
    .tribute-container li span {
      font-weight: bold; }
    .tribute-container li.no-match {
      cursor: default; }
  .tribute-container .menu-highlighted {
    font-weight: bold; }




/**
  * multiple-select - Multiple select is a jQuery plugin to select multiple elements with checkboxes :).
  *
  * @version v1.3.1
  * @homepage http://multiple-select.wenzhixin.net.cn
  * @author wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)
  * @license MIT
  */

.ms-parent{display:inline-block;position:relative;vertical-align:middle}.ms-choice{display:block;width:100%;height:26px;padding:0;overflow:hidden;cursor:pointer;border:1px solid #aaa;text-align:left;white-space:nowrap;line-height:26px;color:#444;text-decoration:none;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;background-color:#fff}.ms-choice.disabled{background-color:#f4f4f4;background-image:none;border:1px solid #ddd;cursor:default}.ms-choice>span{position:absolute;top:0;left:0;right:20px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;padding-left:8px}.ms-choice>span.placeholder{color:#999}.ms-choice>div{position:absolute;top:0;right:0;width:20px;height:25px;background:url("../Scripts/multiple-select/multiple-select.png") left top no-repeat}.ms-choice>div.open{background-position:right top}.ms-drop{width:100%;overflow:hidden;display:none;margin-top:-1px;padding:0;position:absolute;z-index:1000;background:#fff;color:#000;border:1px solid #aaa;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.ms-drop.bottom{top:100%;-webkit-box-shadow:0 4px 5px rgba(0,0,0,0.15);-moz-box-shadow:0 4px 5px rgba(0,0,0,0.15);box-shadow:0 4px 5px rgba(0,0,0,0.15)}.ms-drop.top{bottom:100%;-webkit-box-shadow:0 -4px 5px rgba(0,0,0,0.15);-moz-box-shadow:0 -4px 5px rgba(0,0,0,0.15);box-shadow:0 -4px 5px rgba(0,0,0,0.15)}.ms-search{display:inline-block;margin:0;min-height:26px;padding:4px;position:relative;white-space:nowrap;width:100%;z-index:10000;-webkit-box-sizing:border-box;-khtml-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.ms-search input{width:100%;height:auto!important;min-height:24px;padding:0 20px 0 5px;margin:0;outline:0;font-family:sans-serif;font-size:1em;border:1px solid #aaa;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background:#fff url("../Scripts/multiple-select/multiple-select.png") no-repeat 100% -22px;background:url("../Scripts/multiple-select/multiple-select.png") no-repeat 100% -22px,-webkit-gradient(linear,left bottom,left top,color-stop(0.85,white),color-stop(0.99,#eee));background:url("../Scripts/multiple-select/multiple-select.png") no-repeat 100% -22px,-webkit-linear-gradient(center bottom,white 85%,#eee 99%);background:url("../Scripts/multiple-select/multiple-select.png") no-repeat 100% -22px,-moz-linear-gradient(center bottom,white 85%,#eee 99%);background:url("../Scripts/multiple-select/multiple-select.png") no-repeat 100% -22px,-o-linear-gradient(bottom,white 85%,#eee 99%);background:url("../Scripts/multiple-select/multiple-select.png") no-repeat 100% -22px,-ms-linear-gradient(top,#fff 85%,#eee 99%);background:url("../Scripts/multiple-select/multiple-select.png") no-repeat 100% -22px,linear-gradient(to bottom,#fff 85%,#eee 99%);-webkit-box-sizing:border-box;-khtml-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.ms-drop ul{overflow:auto;margin:0;padding:5px 8px}.ms-drop ul>li{list-style:none;display:list-item;background-image:none;position:static}.ms-drop ul>li .disabled{opacity:.35;filter:Alpha(Opacity=35)}.ms-drop ul>li.multiple{display:block;float:left}.ms-drop ul>li.group{clear:both}.ms-drop ul>li.multiple label{width:100%;display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.ms-drop ul>li label{font-weight:normal;display:block;white-space:nowrap;cursor:pointer}.ms-drop ul>li label.optgroup{font-weight:bold}.ms-drop input[type=radio],.ms-drop input[type=checkbox]{vertical-align:middle;margin:5px}.ms-drop .ms-no-results{display:none}



/*!
 * Bootstrap Colorpicker
 * http://mjolnic.github.io/bootstrap-colorpicker/
 *
 * Originally written by (c) 2012 Stefan Petre
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0.txt
 *
 */.colorpicker-saturation{float:left;width:100px;height:100px;cursor:crosshair;background-image:url("../Scripts/colorpicker/img/saturation.png")}.colorpicker-saturation i{position:absolute;top:0;left:0;display:block;width:5px;height:5px;margin:-4px 0 0 -4px;border:1px solid #000;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.colorpicker-saturation i b{display:block;width:5px;height:5px;border:1px solid #fff;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.colorpicker-hue,.colorpicker-alpha{float:left;width:15px;height:100px;margin-bottom:4px;margin-left:4px;cursor:row-resize}.colorpicker-hue i,.colorpicker-alpha i{position:absolute;top:0;left:0;display:block;width:100%;height:1px;margin-top:-1px;background:#000;border-top:1px solid #fff}.colorpicker-hue{background-image:url("../Scripts/colorpicker/img/hue.png")}.colorpicker-alpha{display:none;background-image:url("../Scripts/colorpicker/img/alpha.png")}.colorpicker{top:0;left:0;z-index:2500;min-width:130px;padding:4px;margin-top:1px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*zoom:1}.colorpicker:before,.colorpicker:after{display:table;line-height:0;content:""}.colorpicker:after{clear:both}.colorpicker:before{position:absolute;top:-7px;left:6px;display:inline-block;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-left:7px solid transparent;border-bottom-color:rgba(0,0,0,0.2);content:''}.colorpicker:after{position:absolute;top:-6px;left:7px;display:inline-block;border-right:6px solid transparent;border-bottom:6px solid #fff;border-left:6px solid transparent;content:''}.colorpicker div{position:relative}.colorpicker.colorpicker-with-alpha{min-width:140px}.colorpicker.colorpicker-with-alpha .colorpicker-alpha{display:block}.colorpicker-color{height:10px;margin-top:5px;clear:both;background-image:url("../Scripts/colorpicker/img/alpha.png");background-position:0 100%}.colorpicker-color div{height:10px}.colorpicker-element .input-group-addon i{display:block;width:16px;height:16px;cursor:pointer}.colorpicker.colorpicker-inline{position:relative;display:inline-block;float:none}.colorpicker.colorpicker-horizontal{width:110px;height:auto;min-width:110px}.colorpicker.colorpicker-horizontal .colorpicker-saturation{margin-bottom:4px}.colorpicker.colorpicker-horizontal .colorpicker-color{width:100px}.colorpicker.colorpicker-horizontal .colorpicker-hue,.colorpicker.colorpicker-horizontal .colorpicker-alpha{float:left;width:100px;height:15px;margin-bottom:4px;margin-left:0;cursor:col-resize}.colorpicker.colorpicker-horizontal .colorpicker-hue i,.colorpicker.colorpicker-horizontal .colorpicker-alpha i{position:absolute;top:0;left:0;display:block;width:1px;height:15px;margin-top:0;background:#fff;border:0}.colorpicker.colorpicker-horizontal .colorpicker-hue{background-image:url("../Scripts/colorpicker/img/hue-horizontal.png")}.colorpicker.colorpicker-horizontal .colorpicker-alpha{background-image:url("../Scripts/colorpicker/img/alpha-horizontal.png")}.colorpicker.colorpicker-hidden{display:none}.colorpicker.colorpicker-visible{display:block}.colorpicker-inline.colorpicker-visible{display:inline-block}



/**
 * Swiper 5.3.8
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 24, 2020
 */

@font-face{font-family:swiper-icons;src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-container-multirow>.swiper-wrapper{flex-wrap:wrap}.swiper-container-multirow-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-container-3d{perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-container-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(-1 * var(--swiper-navigation-size)/ 2);z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{content:'next'}.swiper-button-next.swiper-button-white,.swiper-button-prev.swiper-button-white{--swiper-navigation-color:#ffffff}.swiper-button-next.swiper-button-black,.swiper-button-prev.swiper-button-black{--swiper-navigation-color:#000000}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white{--swiper-pagination-color:#ffffff}.swiper-pagination-black{--swiper-pagination-color:#000000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;background:#000;opacity:.6;-webkit-filter:blur(50px);filter:blur(50px);z-index:0}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}



:root {
  --s-sidebar-band-width: 90px;
  --s-sidebar-pane-width: 285px;
  --s-sidebar-width: calc(var(--s-sidebar-band-width) + var(--s-sidebar-pane-width));
  --s-readonly-bg: #ffffff;
  --s-readonly-border: #ffffff;
  --tl-comment-header-bg: #f6f8fa;
  --s-sidebar-band-hover-background-color: #0065bd;
  --s-tabs-border-hover: #007bff;
  --bs-link-color: #1781ed;
  --bs-link-color-rgb: 23, 129, 237;
  --s-tool-icon-size: 24px;
  --bs-btn-padding-x: 8px;
  --bs-btn-padding-y: 4px;
  --s-row-gap: 6px;
  --s-input-inner-height: 1.5rem;
  --bs-btn-disabled-border-color: #f7f7f7;
}

:root.theme-azure-light {
  --s-column-header: #050505;
  --s-navbar-top: #1e3751;
  --s-sidebar-band-bg: #174f89;
  --s-column-header-bg: #ffffff;
  --s-card-title: #174f89;
  --s-tabs-text: #6b6e7b;
  --s-tabs-text-active: #174f89;
  --s-sidebar-link-active: #1781ed;
  --s-sidebar-link-hover: #06b;
  --bs-link-color: #1781ed;
  --bs-link-color-rgb: 23, 129, 237;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.675rem;
}

body.modal-open {
  padding-right: 0 !important;
}

body[data-bs-overflow=hidden] {
  overflow-y: auto !important;
}

/* No search bar, TG 2025-04-06 */
.s-sidebar-groups {
  margin-top: 20px;
}

div#s-sidebar-search {
  display: none;
}

/* No search bar, TG 2025-04-06 */

@media (min-width: 1200px) {
  section.content {
    min-height: calc(100vh - 48px);
  }

  .full-height-page section.content {
    height: calc(100vh - 48px);
    min-height: calc(100vh - 48px);
  }
}

.category-title {
  color: var(--s-category-title);
  font-weight: 500;
}

#toast-container>div {
  opacity: 1;
}

.ui-tabs-panel[aria-hidden=false] {
  display: flex !important;
}

.ui-tabs-panel:not(.ui-tabs-panel-active):not([aria-hidden=false]) {
  display: none !important;
}

.ui-tabs .ui-tabs-hide {
  display: none !important;
}

/*
.ui-tabs-panel {
  border-top: 1px solid var(--bs-gray-300);
}
  */

/*
div.tab-pane.toolbar-closed .grid-toolbar.s-Serenity-Toolbar.s-Toolbar {
  height: 0px;
  overflow: hidden;
}

div.tab-pane.toolbar-closed .grid-title:after {
  content: "\f0c9";
  display: block;
  margin-left: 30px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 27px;
  padding: 0;
  line-height: 30px;
  height: 30px;
}
*/

.slick-resizable-handle {
  z-index: 0;
}

.dropdown.tool-button>a[data-bs-toggle=dropdown] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-input-padding-v) 0.75rem;
  background: white;
  border: 1px solid var(--bs-border-color);
      border-radius: 5px;
}

.slick-resizable-handle::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: #fff;
  z-index: 0;
  left: 1px;
  transition: background-color 0.1s;
}

.slick-resizable-handle:hover::after,
.slick-resizable-handle:active::after {
  background-color: #064e8c;
  width: 100%;
  left: 0;
}

.slick-header {
  background-color: var(--s-column-header-bg);
  border-bottom: 2px solid #b3b3b5;
}

#QReports-GridViewer {
  border: none;
}

.s-QReportsGrid .slick-group-totals,
.s-QReportsGrid .slick-group-totals.ui-widget-content,
.s-QReportsGrid .slick-group-totals .slick-cell,
.s-QReportsGrid .slick-group-totals.ui-widget-content .slick-cell {
  background-color: #fff !important;
  border-top: 1px solid #ddd !important;
  border-bottom: 1px solid #ddd !important;
}

.slick-group-indent {
  background-color: #fff !important;
}

.slick-group-totals .slick-cell {
  color: #236190 !important;
}

.s-mobile-header {
  background-color: var(--s-navbar-top);
  box-shadow: 0 2px 5px #0002;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.s-mobile-header-branding {
  margin-left: 0px;
}

.s-mobile-header-logo {
  width: auto;
  height: 35px;
  margin-left: 10px;
}

.s-mobile-header-actions {
  align-items: center;
}

.s-mobile-header-user-image,
.s-profile-menu-user-image {
  border-radius: 50% !important;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  background-color: var(--s-card-bg);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px var(--s-sidebar-band-link);
  border-style: none;
}

#layoutMeetingPartial a,
.s-NotificationWidget>a {
  color: var(--s-sidebar-band-link);
}

.started-meeting-infos {
  margin: 0 0.5rem;
}

@media (min-width: 1200px) {
  section.content {
    min-height: calc(100vh - 48px);
  }

  .full-height-page section.content {
    height: calc(100vh - 48px);
    min-height: calc(100vh - 48px);
  }

  .s-sidebar {
    top: 48px;
    transform: translateX(0);
  }

  .s-mobile-header {
    display: flex !important;
  }

  .s-sidebar-toggler {
    display: none;
  }
}

.category-links {
  display: none !important;
}

.property-panes>.tab-pane:not(.active) {
  position: absolute !important;
  left: -10000px;
  top: -10000px;
}

.property-panes>.tab-pane:not(.active) .drop-zone-area {
  display: none !important;
}

/* +++ OCT START ++++++++++++++++++++++++++++++++++++++++++++++++++ */
a {
  text-decoration: none;
  outline: none;
}

/* +++ OCT END ++++++++++++++++++++++++++++++++++++++++++++++++++ */

.fa.fa-square-o:before {
  content: "\f04d";
}

.s-YesNoCheckEditor label {
  margin-right: 8px;
}

.s-YesNoCheckEditor input[type=checkbox] {
  margin-right: 4px;
  height: 1.5em;
  width: 1.5em;
  margin-top: 0;
}

.field .s-YesNoCheckEditor {
  margin-top: 6px;
}

.quick-filter-item input[type=checkbox]~label {
  margin-left: 3px;
  margin-right: var(--s-col-gap);
  line-height: 34px;
  vertical-align: middle;
}

input[type=checkbox],
.check-box {
  width: 24px;
  height: 24px;
}

a.inline-action.paper-clip-count {
  font-size: 11px;
}

a.inline-action.paper-clip-count i {
  font-size: 1.2rem;
  margin-right: -3px;
}

div.s-TextAreaWithUrlDisplay {
  border: 1px solid var(--s-input-border);
  border-radius: 3px;
  padding: 0.375rem 0.75rem;
  min-height: 195px;
  overflow-y: auto;
}

div.editor.s-TextAreaWithUrlDisplay {
  display: none;
}

/* oct
.s-TimeTracking-TaskDialog .s-TextAreaWithUrlDisplay,
.s-TimeTracking-TaskDialog .s-TextAreaWithUrlEditor,
.s-TimeTracking-TaskDialog .s-TaskTodoListEditor {
  height: calc(100% - 33px);
}
*/
@media (min-width: 768px) {

  .s-TimeTracking-TaskDialog .s-TaskMailGrid,
  .s-TimeTracking-TaskDialog .s-TaskRemindersGrid,
  .s-TimeTracking-TaskDialog .s-TaskDocumentGrid {
    height: calc(100vh - 302px);
  }
}

.select2-results .select2-disabled {
  display: none;
}

.select2-container.select2-container-disabled {
  border: none;
}

.select2-container.select2-container-disabled span.select2-arrow:after {
  display: none;
}

.select2-container-disabled .select2-choices {
  background-color: rgba(var(--s-readonly-bg), .02);
  cursor: default;
}

.icon-tool-button.inplace-tool-button {
  margin-left: 1px;
  border-radius: 5px;
  padding: 4px;
  height: 34px;
}

.inplace-button {
  width: 33px;
  height: 33px;
}


.line-break.hidden-md {
  height: 1px;
  margin: 8px 0;
  border-bottom: 1px dashed rgba(var(--s-bright-rgb), 0.15);
}

.fa-rotate-45 {
  transform: rotate(45deg);
}

.inplace-tool-button {
  margin-left: 4px;
  border: 1px solid var(--s-readonly-border);
  border-radius: 4px;
  padding: 5px 7px;
  height: 33px;
}

.select2-container-disabled .select2-choice,
.editor.readonly:not([type=checkbox]),
input.readonly:not([type=checkbox]),
textarea.readonly {
  background-color: var(--s-readonly-bg);
  border-color: var(--s-readonly-border);
  border-left-color: transparent;
  border-top-color: transparent;
}


.select2-container-disabled .select2-choice {
  color: var(--s-input-text) !important;
}

.select2-container-disabled .select2-choice.select2-default .select2-chosen {
  visibility: hidden;
}

.s-LoginPanel .field.KeepLogin {
  flex-wrap: unset;
  display: block;
}

.s-LoginPanel .field.KeepLogin>.caption,
.s-LoginPanel .field.KeepLogin>input {
  float: right;
  padding-left: 10px;
}

.s-ProjectsDialog .ui-tabs .tab-pane {
  padding-top: 1rem;
}

.s-ProjectsDialog .s-TabDocuments {
  border: none;
}

.reset-box-sizing,
.reset-box-sizing *,
.reset-box-sizing *:before,
.reset-box-sizing *:after {
  box-sizing: content-box;
}

.s-Administration-LanguageDialog>.size {
  width: 450px;
}

.s-Administration-LanguageDialog .caption {
  width: 120px;
}

.s-Administration-RoleDialog>.size {
  width: 450px;
}

.s-Administration-RoleDialog .caption {
  width: 120px;
}

.s-Administration-UserDialog>.size {
  width: 920px;
  height: 750px;
}

.s-Administration-UserDialog .caption {
  width: 135px;
}

.s-Administration-UserDialog .s-PropertyGrid .categories {
  height: 450px;
}

.s-TranslationGrid input.custom-text {
  width: 100%;
  height: 23px;
  padding: 0 3px;
}

.s-UserPermissionDialog>.size,
.s-RolePermissionDialog>.size,
.s-UserRoleDialog>.size {
  min-width: 670px;
  width: 670px;
  min-height: 450px;
  height: 450px;
}

.s-UserPermissionDialog .s-DataGrid,
.s-RolePermissionDialog .s-DataGrid,
.s-UserRoleDialog .s-DataGrid {
  height: 100%;
}

.s-UserPermissionDialog .ui-dialog-content,
.s-RolePermissionDialog .ui-dialog-content,
.s-UserRoleDialog .ui-dialog-content {
  padding: 8px;
}

.s-EmailTemplatesGrid .check-box {
  width: 14px;
}

.s-PermissionCheckEditor .check-box {
  background-image: url(../Content/serenity/images/tick-empty.png);
  background-position: center center;
  width: 22px;
  height: 22px;
  margin: 0;
}

.s-PermissionCheckEditor .check-box.checked {
  background-image: url(../Content/serenity/images/tick-green.png);
  background-position: center center;
}

.s-PermissionCheckEditor .check-box.checked.revoke {
  background-image: url(../Content/serenity/images/tick-red.png);
  background-position: center center;
}

.s-PermissionCheckEditor .check-box.partial {
  opacity: 0.8;
}

.s-PermissionCheckEditor .check-box.checked.partial {
  background-image: url(../Content/site/images/tick-green-partial.png);
}

.s-PermissionCheckEditor .check-box.checked.revoke.partial {
  background-image: url(../Content/site/images/tick-red-partial.png);
}

.s-PermissionCheckEditor .effective-permission {
  cursor: default;
  padding-left: 22px;
  background-image: url(../Content/serenity/images/check2.png);
  background-repeat: no-repeat;
  background-position: left center;
}

.s-PermissionCheckEditor .effective-permission.partial {
  background-image: url(../Content/serenity/images/checkbox-null.png);
}

.s-PermissionCheckEditor .effective-permission.deny {
  background-image: url(../Content/serenity/images/slash.png);
}

.s-Administration-DataClassesDialog>.size {
  width: 650px;
}

.s-Administration-DataClassesDialog .caption {
  width: 150px;
}

.s-Administration-DataFieldsDialog>.size {
  width: 650px;
}

.s-Administration-DataFieldsDialog .caption {
  width: 150px;
}

.s-Administration-TypesDialog>.size {
  width: 650px;
}

.s-Administration-TypesDialog .caption {
  width: 150px;
}

.s-Administration-CostUnitsDialog>.size {
  width: 650px;
}

.s-Administration-CostUnitsDialog .caption {
  width: 150px;
}

.s-Administration-KeyWordsDialog>.size {
  width: 650px;
}

.s-Administration-KeyWordsDialog .caption {
  width: 150px;
}

.s-Administration-SettingsDialog>.size {
  width: 650px;
}

.s-Administration-SettingsDialog .caption {
  width: 150px;
}

.s-Administration-StatusDialog>.size {
  width: 650px;
}

.s-Administration-StatusDialog .caption {
  width: 150px;
}

.s-Administration-DeletionsDialog>.size {
  width: 650px;
}

.s-Administration-DeletionsDialog .caption {
  width: 150px;
}

.s-Administration-CountriesDialog>.size {
  width: 650px;
}

.s-Administration-CountriesDialog .caption {
  width: 150px;
}

.s-Administration-ProjectRolesDialog>.size {
  width: 650px;
}

.s-Administration-ProjectRolesDialog .caption {
  width: 150px;
}

.s-Administration-MonthDialog>.size {
  width: 650px;
}

.s-Administration-MonthDialog .caption {
  width: 150px;
}

.s-Administration-ReportingCostTypeDialog>.size {
  width: 650px;
}

.s-Administration-ReportingCostTypeDialog .caption {
  width: 150px;
}

.s-Administration-UserSessionLogDialog>.size {
  width: 650px;
}

.s-Administration-UserSessionLogDialog .caption {
  width: 150px;
}

.s-Administration-UserDeputyDialog>.size {
  width: 650px;
}

.s-Administration-UserDeputyDialog .caption {
  width: 150px;
}

.s-Administration-StatusLogDialog>.size {
  width: 650px;
}

.s-Administration-StatusLogDialog .caption {
  width: 150px;
}

.s-Administration-HelpEntriesDialog>.size {
  width: 650px;
}

.s-Administration-HelpEntriesDialog .caption {
  width: 150px;
}

.s-Administration-HelpEntriesDialog .CodeMirror {
  min-height: 300px;
}

.s-Administration-HelpEntriesLangDialog>.size {
  width: 650px;
}

.s-Administration-HelpEntriesLangDialog .caption {
  width: 150px;
}

.s-Administration-HelpEntriesLangDialog .CodeMirror {
  min-height: 300px;
}

.s-HelpAboutDialog>.size {
  width: 1200px;
  height: 650px;
}

.s-HelpAboutDialog .tabs-container {
  margin: 10px;
  overflow: hidden;
  border-bottom: 1px solid #ccc;
}

.s-HelpAboutDialog .tab-content {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  padding: 10px;
  height: 545px;
}

.s-HelpAboutDialog .tab-pane {
  height: 100%;
}

.s-HelpAboutDialog .nav-tabs {
  margin-bottom: -1px;
  border-bottom: 1px solid #ddd;
  flex-direction: row;
}

.s-HelpAboutDialog .help-chapter {
  display: none;
}

.s-HelpAboutDialog .help-directory-content {
  height: 100%;
  display: flex;
  flex-direction: row;
}

.s-HelpAboutDialog .topic-list {
  flex: 0 0 300px;
  overflow-y: scroll;
  overflow-x: hidden;
  white-space: nowrap;
}

.s-HelpAboutDialog .topic-list ul {
  padding-left: 30px;
  list-style: none;
}

.s-HelpAboutDialog .topic-list>ul {
  padding-left: 0;
}

.s-HelpAboutDialog .topic-list a {
  display: inline-block;
  padding: 2px 4px;
  font-size: 14px;
}

.s-HelpAboutDialog .topic-list .fa-angle-right {
  font-size: 16px;
  line-height: 18px;
  padding: 0 2px;
  font-weight: bold;
}

.s-HelpAboutDialog .topic-list .help-item-active>.fa-angle-right {
  transform: rotate(90deg);
}

.s-HelpAboutDialog .topic-list a.help-chapter-link {
  color: #000;
  font-size: 15px;
}

.s-HelpAboutDialog .topic-list a>i {
  color: black;
}

.s-HelpAboutDialog .topic-list .help-item-active>a.help-topic-link {
  font-weight: bold;
}

.s-HelpAboutDialog .topic-content {
  padding: 5px 10px 10px 15px;
  overflow-y: auto;
  overflow-x: hidden;
  font-size: 14px;
}

.s-HelpAboutDialog .topic-content h1 {
  margin-top: 0px;
  color: mediumpurple;
  font-size: 28px;
}

.s-HelpAboutDialog .topic-content h2 {
  color: cornflowerblue;
  margin-top: 20px;
  font-size: 21px;
}

.s-HelpAboutDialog .topic-content h4 {
  font-size: 18px;
}

.s-HelpAboutDialog .topic-content h1:first-child,
.s-HelpAboutDialog .topic-content h2:first-child {
  margin-top: 0;
}

.s-HelpAboutDialog .topic-content img {
  -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.75);
  max-width: 60%;
  margin-bottom: 10px;
  margin-top: 10px;
}

.s-HelpAboutDialog .lang-link,
.s-HelpAboutDialog .lang-link:hover {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 8px;
}

.s-HelpAboutDialog .lang-en {
  background-image: url(../Content/site/images/GB.png);
}

.s-HelpAboutDialog .lang-de {
  background-image: url(../Content/site/images/DE.png);
}

.s-Administration-FunctionalUnitsDialog>.size {
  width: 920px;
  height: 700px;
}

.s-Administration-FunctionalUnitsDialog .caption {
  width: 100px;
}

.s-Administration-FunctionalUnitsDialog .s-DataGrid .grid-container {
  min-height: 350px;
}

.s-Administration-FunctionalUnitsLangDialog>.size {
  width: 650px;
}

.s-Administration-FunctionalUnitsLangDialog .caption {
  width: 150px;
}

.s-Administration-FunctionalUnitUsersDialog>.size {
  width: 650px;
  height: 400px;
}

.s-Administration-FunctionalUnitUsersDialog .caption {
  width: 130px;
}

.s-Administration-UserFunctionalUnitsDialog>.size {
  width: 650px;
  height: 400px;
}

.s-Administration-UserFunctionalUnitsDialog .caption {
  width: 130px;
}

.s-Administration-EngagementsDialog>.size {
  width: 650px;
}

.s-Administration-EngagementsDialog .caption {
  width: 150px;
}

.s-Administration-OrganizationalUnitsDialog>.size {
  width: 950px;
}

.s-Administration-OrganizationalUnitsDialog .caption {
  width: 150px;
}

.s-Administration-OrganizationalUnitsDialog .s-BusinessUnits-EmploymentsGrid {
  min-height: 350px;
}

.s-Administration-EmailTemplatesDialog>.size {
  width: 650px;
}

.s-Administration-EmailTemplatesDialog .caption {
  width: 150px;
}

.s-Administration-FunctionalRolesDialog>.size {
  width: 650px;
}

.s-Administration-FunctionalRolesDialog .caption {
  width: 150px;
}

.s-Administration-AbsencesDialog>.size {
  width: 650px;
}

.s-Administration-AbsencesDialog .caption {
  width: 150px;
}

.s-Administration-BankHolidaysDialog>.size {
  width: 650px;
}

.s-Administration-BankHolidaysDialog .caption {
  width: 150px;
}

.s-Administration-ProjectAvailableFactorsDialog>.size {
  width: 650px;
}

.s-Administration-ProjectAvailableFactorsDialog .caption {
  width: 150px;
}

.view-switch {
  position: relative;
  top: 0px;
  margin: 0px 4px;
}

.s-DataGrid .s-QuickSearchBar {
  margin: 2px 9px 4px 0px;
}

.tool-group,
.tool-group-like {
  margin: 0px;
  margin-right: 5px;
}

.card-container {
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: #ecf0f5;
}

.card-container .card-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.card-container .card-item {
  flex: 0 1 calc(100% - 4px);
  padding: 8px;
  background-color: #fff;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
  height: 160px;
  overflow: hidden;
  margin: 6px;
}

.card-container .card-item table {
  width: 100%;
  table-layout: fixed;
}

.card-container .card-item td {
  padding: 4px;
}

.card-container .card-item td.img {
  width: 116px;
}

.card-container .card-item td.img img {
  width: 100px;
}

.card-container .card-item .name {
  font-weight: bold;
}

@media (min-width: 900px) {
  .card-container .card-item {
    flex-basis: calc(50% - 12px);
  }

  .s-TaskDialog .field.Description,
  .s-TaskDialog .field.CheckList {
    flex: 1 1 auto;
    flex-direction: column;
  }

  .s-TaskDialog .field.Description label,
  .s-TaskDialog .field.CheckList label {
    float: left;
    width: 100%;
    text-align: left;
  }

}

@media (min-width: 1600px) {
  .card-container .card-item {
    flex-basis: calc(33% - 12px);
  }
}

.s-BusinessUnits-BusinessUnitsDialog>.size {
  width: 650px;
}

.s-BusinessUnits-BusinessUnitsDialog .caption {
  width: 150px;
}

.s-BusinessUnits-ContactsDialog>.size {
  width: 1000px;
}

.s-BusinessUnits-ContactsDialog .caption {
  width: 150px;
}

.s-BusinessUnits-ContactsDialog .s-Comments-CommentsEditor {
  min-height: 400px;
}

.s-BusinessUnits-BusinessUnitDialog>.size {
  width: 650px;
}

.s-BusinessUnits-BusinessUnitDialog .caption {
  width: 150px;
}

.s-BusinessUnits-ContactsProjectGrid .grid-container {
  min-height: 400px;
}

.s-BusinessUnits-EmploymentsDialog>.size {
  width: 650px;
}

.s-BusinessUnits-EmploymentsDialog .caption {
  width: 150px;
}

.s-BusinessUnits-EmploymentDeltaHourDialog>.size {
  width: 650px;
}

.s-BusinessUnits-EmploymentDeltaHourDialog .caption {
  width: 150px;
}

.s-Panel.s-Cemdo-Administration-FunctionalUnitsDialog .panel-body .s-Toolbar {
  /* flex: 0 1 auto; */
  height: auto;
  width: 100%;
  background-color: #eff3f5 !important;
  padding: 4px 6px !important;
  border-radius: 6px 6px 6px 6px;
  margin-bottom: 0px;
}

.s-Projects-ProjectsDialog>.size {
  width: 1400px;
}

.s-Projects-ProjectsDialog .caption {
  width: 160px;
}

.s-Projects-ProjectsPhasesDialog>.size {
  width: auto;
}

.s-Projects-ProjectsPhasesDialog .caption {
  width: auto;
}

.s-Projects-PenaltiesDialog>.size {
  width: 650px;
}

.s-Projects-PenaltiesDialog .caption {
  width: 150px;
}

.s-Projects-PhasesDialog>.size {
  width: 1400px;
}

.s-Projects-PhasesDialog .caption {
  width: 150px;
}

.s-Projects-PhasesDialog .caption {
  width: auto;
}

.s-Projects-ProjectMembersDialog>.size {
  width: 650px;
}

.s-Projects-ProjectMembersDialog .caption {
  width: 150px;
}

.s-Default-ProjectMembersDialog>.size {
  width: 650px;
}

.s-Default-ProjectMembersDialog .caption {
  width: 150px;
}

.s-Default-CommentsDialog>.size {
  width: 650px;
}

.s-Default-CommentsDialog .caption {
  width: 150px;
}

.s-Default-DocumentsDialog>.size {
  width: 700px;
}

.s-Default-DocumentsDialog .caption {
  width: 110px;
}

.s-Projects-DocumentationDataDialog>.size {
  width: 650px;
}

.s-Projects-DocumentationDataDialog .caption {
  width: 150px;
}

.s-Projects-ProductionDataDialog>.size {
  width: 650px;
}

.s-Projects-ProductionDataDialog .caption {
  width: 150px;
}

.s-Projects-ShipmentDataDialog>.size {
  width: 650px;
}

.s-Projects-ShipmentDataDialog .caption {
  width: 150px;
}

.s-Projects-CommissioningDataDialog>.size {
  width: 650px;
}

.s-Projects-CommissioningDataDialog .caption {
  width: 150px;
}

.s-Projects-ChecklistDataDialog>.size {
  width: 650px;
}

.s-Projects-ChecklistDataDialog .caption {
  width: 150px;
}

.s-Projects-EquipmentsDialog>.size {
  width: 650px;
}

.s-Projects-EquipmentsDialog .caption {
  width: 150px;
}

.s-Projects-CostUnitsDialog>.size {
  width: 650px;
}

.s-Projects-CostUnitsDialog .caption {
  width: 150px;
}

.s-Projects-CostTypesDialog>.size {
  width: 650px;
}

.s-Projects-CostTypesDialog .caption {
  width: 150px;
}

.s-MonthlyReportWizard .grid-container {
  min-height: 100px;
}

.s-ProjectsDialog .s-DialogToolbar {
  min-height: unset;
}

.s-Projects-ProjectPreAssemblyDateDialog>.size {
  width: 650px;
}

.s-Projects-ProjectPreAssemblyDateDialog .caption {
  width: 150px;
}

.s-Projects-ProjectChecklistDialog>.size {
  width: 650px;
}

.s-Projects-ProjectChecklistDialog .caption {
  width: 150px;
}

.s-Projects-ProjectChecklistItemDialog>.size {
  width: 650px;
}

.s-Projects-ProjectChecklistItemDialog .caption {
  width: 150px;
}

.ProjectsChecklistItemSortNoGridCell {
  margin-left: 20px;
}

.projectCheckListBlocked .slick-cell {
  color: darkgray;
}

.s-Projects-ProjectDocumentTemplatesDialog>.size {
  width: 650px;
}

.s-Projects-ProjectDocumentTemplatesDialog .caption {
  width: 150px;
}

.s-Projects-ProjectFolderTemplatesDialog>.size {
  width: 650px;
}

.s-Projects-ProjectFolderTemplatesDialog .caption {
  width: 150px;
}

.s-Projects-ProjectTemplatesDialog>.size {
  width: 650px;
}

.s-Projects-ProjectTemplatesDialog .caption {
  width: 150px;
}

.s-Projects-SimulationProjectTemplatesDialog>.size {
  width: 650px;
}

.s-Projects-SimulationProjectTemplatesDialog .caption {
  width: 150px;
}

.s-Projects-SimulationProjectsCapacityNeedsTemplatesDialog>.size {
  width: 950px;
}

.s-Projects-SimulationProjectsCapacityNeedsTemplatesDialog .caption {
  width: 150px;
}

.s-Projects-SimulationProjectsDialog>.size {
  width: 650px;
}

.s-Projects-SimulationProjectsDialog .caption {
  width: 150px;
}

.s-Projects-SimulationProjectsCapacityNeedsDialog>.size {
  width: 880px;
}

.s-Projects-SimulationProjectsCapacityNeedsDialog .caption {
  width: 150px;
}

.simulationprojectGrid-grayout .slick-cell {
  color: darkgray;
}

.simulationProfileColumnWidth {
  max-width: 150px;
}

.s-Projects-ProjectPoCDialog>.size {
  width: 650px;
}

.s-Projects-ProjectPoCDialog .caption {
  width: 150px;
}

.s-Projects-ProjectPoCsDialog>.size {
  width: 650px;
}

.s-Projects-ProjectPoCsDialog .caption {
  width: 150px;
}

.s-Projects-ProjectChecklistItemGrid .grid-toolbar .tool-buttons .tool-filter {
  float: left;
  margin-top: -2px;
}

.s-Projects-ProjectChecklistItemGrid .grid-toolbar .tool-buttons .tool-button {
  margin-top: 18px;
}

.s-ImportFromProjectWizard .summary-row {
  display: flex;
  width: 100%;
}

.s-ImportFromProjectWizard .summary-cell {
  width: 200px;
  padding: 4px;
  border-bottom: 1px dotted #eee;
}

.s-Payments-PaymentsDialog>.size {
  width: 650px;
}

.s-Payments-PaymentsDialog .caption {
  width: 150px;
}

.s-MonthlyReportCommentsEditor {
  border: 1px solid #ccc;
  border-radius: 4px;
}

.s-MonthlyReportCommentsEditor ul {
  padding: 0;
  min-height: 110px;
  overflow-y: auto;
  list-style: none;
}

.s-MonthlyReportCommentsEditor li {
  margin: 10px;
  border-radius: 4px;
  border: 1px solid #C3C2C2;
  background-color: #F5E7DC;
  padding: 8px;
  position: relative;
}

.s-MonthlyReportCommentsEditor .note-text {
  padding-right: 24px;
  white-space: pre-wrap;
  display: block;
}

.s-MonthlyReportCommentsEditor .note-delete {
  background-image: url('../Content/serenity/images/delete2.png');
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  right: 6px;
  top: 6px;
  opacity: 0.4;
}

.s-MonthlyReportCommentsEditor .note-delete:hover {
  opacity: 1;
}

.s-MonthlyReportCommentsEditor .note-date {
  margin-top: 6px;
  display: block;
  text-align: right;
  color: #2a4084;
  font-style: italic;
}

.s-MonthlyReportCommentsEditor .s-Toolbar {
  background-color: #eee;
  padding: 4px;
}

.s-CommentsEditor {
  border: 1px solid var(--s-card-border);
  border-radius: 6px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.s-CommentsEditor .s-Toolbar>.s-LookupEditor {
  margin: 6px;
}
div.tl-comment-list {
    max-width: 800px;
}
.s-CommentsEditor .tl-comment-list-wrap {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}

.tl-comment-item,
.tl-comment-box {
  display: flex;
  position: relative;
  padding: 16px 0;
  margin-left: 16px;
  max-width: 800px;
}

.tl-comment-box {
  flex-direction: column;
}

.tl-comment-item:first-child {
  padding-top: 0;
}

.tl-comment-item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: var(--s-card-border);
  display: block;
  width: 2px;
  content: "";
}

.tl-comment-item-body {
  min-width: 0;
  max-width: 100%;
  flex: auto;
}

.tl-avatar-side {
  position: absolute;
  left: -71px;
  z-index: 1;
}

.tl-comment-box .tl-avatar-side {
  left: -42px;
}

.tl-avatar-image {
  border-radius: 50% !important;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  background-color: var(--s-card-bg);
  flex-shrink: 0;
  box-shadow: 0 0 0 1px var(--s-card-border);
  border-style: none;
}

.tl-comment {
  position: relative;
  background-color: var(--s-card-bg);
  border: 1px solid var(--s-card-border);
  border-radius: 6px;
  margin-left: -16px !important;
}

.tl-comment::before,
.tl-comment-box .simple-mde-container::before {
  position: absolute;
  top: 11px;
  right: 100%;
  left: -9px;
  display: block;
  width: 8px;
  height: 16px;
  pointer-events: none;
  content: " ";
  background-color: #ededee;
  display: block;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.tl-comment-box .simple-mde-container::before {
  left: -8px;
}

.tl-comment-box .simple-mde-container {
  position: relative;
}

.tl-comment.current-user {
  border-color: rgba(84, 174, 255, 0.4);
}

.tl-comment.current-user::before {
  background-color: rgba(84, 174, 255, 0.4);
}

.tl-comment-header {
  display: flex;
  align-items: center;
  padding-right: 16px;
  padding-left: 16px;
  color: var(--color-fg-muted);
  flex-direction: row-reverse;
  background-color: var(--tl-comment-header-bg);
  border-radius: 6px 6px 0 0;
  border-bottom: 1px solid var(--s-card-border);
}

.tl-comment.current-user .tl-comment-header {
  background-color: rgba(84, 174, 255, 0.15);
}

.tl-comment-header-text {
  min-width: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-bottom: 1px;
  flex: 1 1 auto;
  font-weight: normal;
}

.tl-comment-timestamp,
.tl-comment-edited {
  color: #2f88a3;
}

.tl-comment-body {
  width: 100%;
  overflow: visible;
  font-size: 14px;
  padding: 16px;
}

.tl-comment-edit .simple-mde-container {
  margin-left: -16px !important;
}

.s-Comments-CommentsEditor .editor-preview {
  padding: 14px;
}

.chat {
  padding: 5px 20px 5px 10px;
}

.markdown-body {
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}

.markdown-body>*:last-child {
  margin-bottom: 0 !important;
}

.markdown-body>*:first-child {
  margin-top: 0 !important;
}

.markdown-body img {
  max-width: 100%;
}

.s-CommentsEditor .s-Toolbar {
  padding: 6px 6px 0 6px;
}

.s-CommentsEditor textarea {
  padding: 6px;
  flex: 1 1 auto;
  border-radius: 10px;
  outline: none;
}

.s-CommentsEditor .attachment-section {
  margin-top: 5px !important;
}

.s-Comments-CommentsEditor .editor-toolbar {
  opacity: 1;
  background-color: var(--s-card-bg);
  border-color: #ddd;
}

.s-CommentsEditor .editor-toolbar a {
  font-size: 20px;
  font-weight: var(--s-icon-solid);
  color: #666 !important;
}

.s-CommentsEditor .editor-toolbar::before,
.s-CommentsEditor .editor-toolbar::after {
  margin-top: 0;
  margin-bottom: 0;
}

.s-CommentsEditor .CodeMirror {
  min-height: 9rem;
  height: 9rem;
}

.s-CommentsEditor .CodeMirror-scroll {
  min-height: unset;
}
/*
.CodeMirror.cm-s-paper.CodeMirror-wrap {
  min-height: 400px;
}
*/
.CodeMirror-sizer {
  padding-bottom: 20px !important;
}

.s-NoteDialog>.size {
  width: 465px;
}

.s-NoteDialog .ui-dialog-content {
  padding-bottom: 10px;
}

.direct-chat .box-body {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  position: relative;
  overflow-x: hidden;
  padding: 0;
}

.direct-chat.chat-pane-open .direct-chat-contacts {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.direct-chat-messages {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  padding: 10px;
  height: 250px;
  overflow: auto;
}

.direct-chat-msg,
.direct-chat-text {
  display: block;
}

.direct-chat-text pre {
  font-family: inherit;
  font-size: inherit;
  white-space: pre-wrap;
}

.direct-chat-msg {
  margin-bottom: 10px;
}

.direct-chat-msg:before,
.direct-chat-msg:after {
  content: " ";
  display: table;
}

.direct-chat-msg:after {
  clear: both;
}

.direct-chat-messages,
.direct-chat-contacts {
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  -moz-transition: -moz-transform 0.5s ease-in-out;
  -o-transition: -o-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
}

.direct-chat-text {
  border-radius: 5px;
  position: relative;
  padding: 5px 10px;
  background: #d2d6de;
  border: 1px solid #d2d6de;
  margin: 5px 0 0 50px;
  color: #444;
}

.direct-chat-text:after,
.direct-chat-text:before {
  position: absolute;
  right: 100%;
  top: 15px;
  border: solid transparent;
  border-right-color: #d2d6de;
  content: ' ';
  height: 0;
  width: 0;
  pointer-events: none;
}

.direct-chat-text:after {
  border-width: 5px;
  margin-top: -5px;
}

.direct-chat-text:before {
  border-width: 6px;
  margin-top: -6px;
}

.right .direct-chat-text {
  margin-right: 50px;
  margin-left: 0;
}

.right .direct-chat-text:after,
.right .direct-chat-text:before {
  right: auto;
  left: 100%;
  border-right-color: transparent;
  border-left-color: #d2d6de;
}

.direct-chat-img {
  border-radius: 50%;
  float: left;
  width: 40px;
  height: 40px;
}

.right .direct-chat-img {
  float: right;
}

.direct-chat-info {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
}

.direct-chat-name {
  font-weight: 600;
}

.direct-chat-timestamp {
  color: #999;
}

.direct-chat-contacts-open .direct-chat-contacts {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.direct-chat-contacts {
  -webkit-transform: translate(101%, 0);
  -ms-transform: translate(101%, 0);
  -o-transform: translate(101%, 0);
  transform: translate(101%, 0);
  position: absolute;
  top: 0;
  bottom: 0;
  height: 250px;
  width: 100%;
  background: #222d32;
  color: #fff;
  overflow: auto;
}

.contacts-list>li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px;
  margin: 0;
}

.contacts-list>li:before,
.contacts-list>li:after {
  content: " ";
  display: table;
}

.contacts-list>li:after {
  clear: both;
}

.contacts-list>li:last-of-type {
  border-bottom: none;
}

.contacts-list-img {
  border-radius: 50%;
  width: 40px;
  float: left;
}

.contacts-list-info {
  margin-left: 45px;
  color: #fff;
}

.contacts-list-name,
.contacts-list-status {
  display: block;
}

.contacts-list-name {
  font-weight: 600;
}

.contacts-list-status {
  font-size: 12px;
}

.contacts-list-date {
  color: #aaa;
  font-weight: normal;
}

.contacts-list-msg {
  color: #999;
}

.direct-chat-danger .right>.direct-chat-text {
  background: #dd4b39;
  border-color: #dd4b39;
  color: #fff;
}

.direct-chat-danger .right>.direct-chat-text:after,
.direct-chat-danger .right>.direct-chat-text:before {
  border-left-color: #dd4b39;
}

.direct-chat-primary .right>.direct-chat-text {
  background: #3c8dbc;
  border-color: #3c8dbc;
  color: #fff;
}

.direct-chat-primary .right>.direct-chat-text:after,
.direct-chat-primary .right>.direct-chat-text:before {
  border-left-color: #3c8dbc;
}

.direct-chat-warning .right>.direct-chat-text {
  background: #f39c12;
  border-color: #f39c12;
  color: #fff;
}

.direct-chat-warning .right>.direct-chat-text:after,
.direct-chat-warning .right>.direct-chat-text:before {
  border-left-color: #f39c12;
}

.direct-chat-info .right>.direct-chat-text {
  background: #00c0ef;
  border-color: #00c0ef;
  color: #fff;
}

.direct-chat-info .right>.direct-chat-text:after,
.direct-chat-info .right>.direct-chat-text:before {
  border-left-color: #00c0ef;
}

.direct-chat-success .right>.direct-chat-text {
  background: #00a65a;
  border-color: #00a65a;
  color: #fff;
}

.direct-chat-success .right>.direct-chat-text:after,
.direct-chat-success .right>.direct-chat-text:before {
  border-left-color: #00a65a;
}

/* oct
.s-Default-ProjectMembersDialog > .size {
  width: 650px;
}

.s-Default-ProjectMembersDialog .caption {
  width: 150px;
}

.s-Default-CommentsDialog > .size {
  width: 650px;
}

.s-Default-CommentsDialog .caption {
  width: 150px;
}

.s-Default-BusinessUnitDialog > .size {
  width: 650px;
}

.s-Default-BusinessUnitDialog .caption {
  width: 150px;
}

.s-Default-VPenalityStatusDialog > .size {
  width: 650px;
}

.s-Default-VPenalityStatusDialog .caption {
  width: 150px;
}

.s-Default-VPenalityTypeDialog > .size {
  width: 650px;
}

.s-Default-VPenalityTypeDialog .caption {
  width: 150px;
}

.s-Default-VPhaseTypeDialog > .size {
  width: 650px;
}

.s-Default-VPhaseTypeDialog .caption {
  width: 150px;
}

.s-Default-VActivityStreamDialog > .size {
  width: 650px;
}

.s-Default-VActivityStreamDialog .caption {
  width: 150px;
}

.s-Default-PurchaseOrderLinesDialog > .size {
  width: 650px;
}

.s-Default-PurchaseOrderLinesDialog .caption {
  width: 150px;
}

.s-Default-VLongLeadTypeDialog > .size {
  width: 650px;
}

.s-Default-VLongLeadTypeDialog .caption {
  width: 150px;
}

.s-Default-VWbsLongLeadStatusDialog > .size {
  width: 650px;
}

.s-Default-VWbsLongLeadStatusDialog .caption {
  width: 150px;
}

.s-Default-VWbsPlanStatusDialog > .size {
  width: 650px;
}

.s-Default-VWbsPlanStatusDialog .caption {
  width: 150px;
}

.s-Default-VTaskStatusDialog > .size {
  width: 650px;
}

.s-Default-VTaskStatusDialog .caption {
  width: 150px;
}

.s-Default-VTaskTypeDialog > .size {
  width: 650px;
}

.s-Default-VTaskTypeDialog .caption {
  width: 150px;
}

.s-Default-VProjectMemberTypeDialog > .size {
  width: 650px;
}

.s-Default-VProjectMemberTypeDialog .caption {
  width: 150px;
}

.s-Default-VMeetingMinuteTypeDialog > .size {
  width: 650px;
}

.s-Default-VMeetingMinuteTypeDialog .caption {
  width: 150px;
}

.s-Default-VWbsElementStatusDialog > .size {
  width: 650px;
}

.s-Default-VWbsElementStatusDialog .caption {
  width: 150px;
}

.s-Default-VWbsElementTypeDialog > .size {
  width: 650px;
}

.s-Default-VWbsElementTypeDialog .caption {
  width: 150px;
}

.s-Default-JobLogsDialog > .size {
  width: 650px;
}

.s-Default-JobLogsDialog .caption {
  width: 150px;
}

.s-Default-VMonthlyReportStatusDialog > .size {
  width: 650px;
}

.s-Default-VMonthlyReportStatusDialog .caption {
  width: 150px;
}

.s-Default-VMonthStatusDialog > .size {
  width: 650px;
}

.s-Default-VMonthStatusDialog .caption {
  width: 150px;
}

.s-Default-VReportingCostTypeTypeDialog > .size {
  width: 650px;
}

.s-Default-VReportingCostTypeTypeDialog .caption {
  width: 150px;
}

.s-Default-ReportDistributionTemplateCostUnitDialog > .size {
  width: 650px;
}

.s-Default-ReportDistributionTemplateCostUnitDialog .caption {
  width: 150px;
}

.s-Default-ReportDistributionTemplatesDialog > .size {
  width: 650px;
}

.s-Default-ReportDistributionTemplatesDialog .caption {
  width: 150px;
}

.s-Default-VAbsenceTypeDialog > .size {
  width: 650px;
}

.s-Default-VAbsenceTypeDialog .caption {
  width: 150px;
}

.s-ProjectMemberMailDialog > .size {
  width: 650px;
  min-width: 650px;
}

.s-Default-ValueCategoriesDialog > .size {
  width: 650px;
}

.s-Default-ValueCategoriesDialog .caption {
  width: 150px;
}

.s-Default-ProjectInternalCostDialog > .size {
  width: 650px;
}

.s-Default-ProjectInternalCostDialog .caption {
  width: 150px;
}

.s-Default-ValueCategoriesCostPerYearDialog > .size {
  width: 650px;
}

.s-Default-ValueCategoriesCostPerYearDialog .caption {
  width: 150px;
}

.s-Default-ValueCategoryCostTypeDialog > .size {
  width: 650px;
}

.s-Default-ValueCategoryCostTypeDialog .caption {
  width: 150px;
}

.s-DocumentOlderVersionsGrid .title-text {
  padding: 4px 8px 0 4px;
  font-size: 14px;
}

.s-DocumentOlderVersionsGrid .slick-pane-header {
  display: none;
}

.s-DocumentOlderVersionsGrid .grid-container {
  min-height: 450px;
}

.s-Default-WbsElementRequirementsDialog > .size {
  width: 650px;
}

.s-Default-WbsElementRequirementsDialog .caption {
  width: 150px;
}

.s-Default-NotificationRuleDialog > .size {
  width: 650px;
}

.s-Default-NotificationRuleDialog .caption {
  width: 150px;
}

.s-Default-MonthlyReportExternalDetailedCostsDialog > .size {
  width: 650px;
}

.s-Default-MonthlyReportExternalDetailedCostsDialog .caption {
  width: 150px;
}

.s-Default-MonthlyReportInternalDetailedCostsDialog > .size {
  width: 650px;
}

.s-Default-MonthlyReportInternalDetailedCostsDialog .caption {
  width: 150px;
}

.s-TimeTracking-MailDialog > .size {
  width: 650px;
}

.s-TimeTracking-MailDialog .caption {
  width: 150px;
}

.s-TimeTracking-MailAttachmentDialog > .size {
  width: 650px;
}

.s-TimeTracking-MailAttachmentDialog .caption {
  width: 150px;
}

.s-TimeTracking-TaskDialog > .size,
.s-TimeTracking-ProjectTaskDialog > .size,
.s-TimeTracking-WbsElementTaskDialog > .size {
  width: 1200px;
}

.s-TimeTracking-TaskDialog .caption {
  width: 145px;
}

.s-TimeTracking-ProjectTaskDialog .caption,
.s-TimeTracking-WbsElementTaskDialog .caption {
  width: 120px;
}

.s-TimeTracking-WbsElementDialog > .size {
  width: 1200px;
}

.s-TimeTracking-WbsElementDialog .caption {
  width: 150px;
}

.s-TimeTracking-WbsElementDialog .s-DropEmailPanel {
  height: 450px;
}

.s-TimeTracking-WbsElementDialog .s-TimeTracking-WbsElementPurchaseOrderGrid .grid-container,
.s-TimeTracking-WbsElementDialog .s-TimeTracking-WbsElementDocumentGrid .grid-container,
.s-TimeTracking-WbsElementDialog .s-TimeTracking-WbsElementTaskGrid .grid-container {
  min-height: 420px;
}

.s-TimeTracking-WbsElementDialog .s-CommentsEditor > div > ul {
  height: 460px;
  overflow-y: auto;
}

.s-TimeTracking-MailComposeDialog > .size {
  width: 950px;
}

.s-TimeTracking-ProjectMailGrid .grid-container,
.s-TimeTracking-WbsElementMailGrid .grid-container,
.s-TimeTracking-WorkingPackageTaskGrid .grid-container {
  min-height: 400px;
}

.s-TimeTracking-MailDialog > .size,
.s-TimeTracking-ProjectMailDialog > .size,
.s-TimeTracking-WbsElementMailDialog > .size,
.s-TimeTracking-TaskMailDialog > .size {
  width: 950px;
}

.s-TimeTracking-MailDialog .Attachments .s-Toolbar,
.s-TimeTracking-ProjectMailDialog .Attachments .s-Toolbar,
.s-TimeTracking-WbsElementMailDialog .Attachments .s-Toolbar,
.s-TimeTracking-TaskMailDialog .Attachments .s-Toolbar {
  display: none;
}

.s-TimeTracking-PurchaseOrderLineDialog > .size {
  width: 650px;
}

.s-TimeTracking-PurchaseOrderLineDialog .caption {
  width: 150px;
}

.s-TimeTracking-PurchaseOrderLinesDialog > .size {
  width: 650px;
}

.s-TimeTracking-PurchaseOrderLinesDialog .caption {
  width: 150px;
}

.s-TimeTracking-MeetingAgendaDialog > .size {
  width: 650px;
}

.s-TimeTracking-MeetingAgendaDialog .caption {
  width: 150px;
}

.s-TimeTracking-MeetingMemberDialog > .size {
  width: 650px;
}

.s-TimeTracking-MeetingMemberDialog .caption {
  width: 150px;
}

.s-TimeTracking-MeetingMinuteDialog > .size {
  width: 1200px;
  height: 700px;
}

.s-TimeTracking-MeetingMinuteDialog .caption {
  width: 105px;
}

.s-TimeTracking-MeetingDialog > .size {
  width: 650px;
}

.s-TimeTracking-MeetingDialog .caption {
  width: 150px;
}

.s-MeetingMemberEditor .inplace-button {
  margin-top: 3px;
  height: 27px;
  width: 26px;
}

.s-MeetingMemberEditor .s-Toolbar .s-LookupEditor {
  float: left;
  width: 300px;
}

.s-MeetingMemberEditor .s-Toolbar .has-inplace-button {
  margin-right: 1px;
}

.s-MeetingMemberEditor .slick-cell select {
  padding: 0;
}

.s-TimeTracking-LongLeadDialog > .size {
  width: 650px;
}

.s-TimeTracking-LongLeadDialog .caption {
  width: 150px;
}

.s-TimeTracking-WbsLongLeadDialog > .size {
  width: 650px;
}

.s-TimeTracking-WbsLongLeadDialog .caption {
  width: 150px;
}

.s-TimeTracking-WbsPlanDialog > .size {
  width: 650px;
}

.s-TimeTracking-WbsPlanDialog .caption {
  width: 150px;
}
*/
.editable-data-grid .slick-cell input[type=text] {
  border-radius: 0;
  width: 100%;
  padding: 0 2px;
  border: 1px solid #e7e7e7;
}

.editable-data-grid .slick-cell input[type=text].integer,
.editable-data-grid .slick-cell input[type=text].decimalQ {
  text-align: right;
}

.editable-data-grid .slick-cell input[type=text].s-DateEditor {
  width: calc(100% - 16px);
}

.editable-data-grid .slick-cell select {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.editable-data-grid .slick-cell .select2-container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.editable-data-grid .slick-cell .select2-container .select2-choice {
  line-height: 1.75rem;
  height: calc(1.75rem + 2px);
  padding-left: 4px;
}

.editable-data-grid .slick-cell .select2-allowclear .select2-chosen {
  margin-right: 2.5rem;
}

.editable-data-grid .slick-cell .dirty {
  background-color: #ffe0e0;
}

.editable-data-grid .slick-cell img.ui-datepicker-trigger {
  float: none;
  zoom: 0.8;
  display: inline-block;
  margin-top: -2px;
}

.longLeadNameGridCell {
  margin-left: 20px;
}

/* oct
.s-TimeTracking-MonthlyReportDialog > .size {
  width: 650px;
}

.s-TimeTracking-MonthlyReportDialog .caption {
  width: 150px;
}

.s-TimeTracking-MonthlyReportInternalCostDialog > .size {
  width: 650px;
}

.s-TimeTracking-MonthlyReportInternalCostDialog .caption {
  width: 150px;
}

.s-TimeTracking-MonthlyReportExternalCostDialog > .size {
  width: 650px;
}

.s-TimeTracking-MonthlyReportExternalCostDialog .caption {
  width: 150px;
}
*/
.s-TaskKanbanBoard .quick-filters-bar {
  border-radius: 6px;
  background-color: #f7f7f7;
}

.s-TaskKanbanBoard .quick-filter-label {
  margin-bottom: 4px;
}

/*Notification �nderungen Begin*/

.fa-bell::before {
  content: "\f0f3";
}

.s-mobile-header-actions .fa-bell::before {
  font-size: 1.905em;
}

.fa-lg {
  font-size: unset;
  line-height: .75em;
  vertical-align: -.2667em;
}

.fa,
.fab,
.fad,
.fal,
.far,
.fas {
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
}

.s-mobile-header-link {
  margin-right: 1.5rem;
  font-size: 2.085rem;
}

/*Notification �nderungen Ende*/

.kanban-board {
  display: flex;
  flex-direction: row;
  padding: 16px 0;
}

.kanban-column {
  flex: 1 1 16%;
  margin-right: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.kanban-column:last-child {
  margin-right: 0;
}

.kanban-header {
  padding: 8px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  color: white;
  line-height: 15px;
}

.kanban-header.sticky {
  position: fixed;
  top: 35px;
  z-index: 1000;
}

.kanban-header.sticky>div {
  border-radius: 0 !important;
}

.kanban-header i {
  font-size: 15px;
  margin-right: 4px;
}

.kanban-new .kanban-header {
  background-color: dodgerblue;
}

.kanban-assigned .kanban-header {
  background-color: mediumslateblue;
}

.kanban-started .kanban-header {
  background-color: mediumvioletred;
}

.kanban-onhold .kanban-header {
  background-color: darkslategray;
}

.kanban-done .kanban-header {
  background-color: limegreen;
}

.kanban-title {
  font-weight: bold;
}

.kanban-count {
  float: right;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 25px;
  margin-right: 4px;
  margin-top: -2px;
  /* padding: 5px 7px 4px 7px; */
  background-color: white;
  color: black;
  vertical-align: middle;
  /* display: inline-block; */
  width: 24px;
  height: 25px;
}

.kanban-column {
  display: flex;
  flex-direction: column;
}

.kanban-tasks {
  flex: 1 1 100%;
  overflow-y: auto;
  background-color: #f7f7f7;
  padding: 8px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.kanban-task {
  border: 1px solid #eee;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 8px;
  background-color: white;
  cursor: move;
  position: relative;
  padding-bottom: 25px;
}

.kanban-task.dont-move {
  cursor: not-allowed;
}

.kanban-task-priority>svg {
  width: 12px;
}

.kanban-task-priority.prio-1>svg>circle {
  fill: red;
}

.kanban-task-priority.prio-2>svg>circle {
  fill: yellow;
}

.kanban-task-priority.prio-3>svg>circle {
  fill: green;
}

.kanban-task-priority.prio-4>svg>circle {
  fill: gray;
}

.kanban-task-priority.prio-5>svg>circle {
  fill: lightgray;
}

.kanban-task-no {
  font-style: italic;
  font-size: 13px;
  text-align: right;
  margin-bottom: 6px;
  float: right;
  font-weight: bold;
}

.kanban-task-no a {
  color: royalblue;
  cursor: pointer;
}

.kanban-task-no i {
  color: lightskyblue;
}

.kanban-task-name {
  font-weight: 600;
  margin-top: 6px;
  clear: both;
}

.kanban-task-priority {
  float: left;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 13px;
  text-align: center;
  margin-bottom: 4px;
  line-height: 22px;
  font-weight: bold;
}

.fast-track-task {
  outline: 1.5px solid #0d6efda0;
}

.kanban-fast-track {
  float: left;
}

.kanban-fast-track i {
  font-size: 2em;
  line-height: 13px;
}

.kanban-task-name a {
  color: #000;
}

.kanban-task-detail {
  font-size: 12px;
  margin-top: 6px;
  max-height: 54px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.timeline-heading {
  display: grid;
  grid-template-columns: 30px auto;
  grid-column-gap: 10px;
}

a.timeline-open-task {
  cursor: pointer;
}

.s-Activities span.task-name {
  display: block;
  width: 100%;
  border-top: 1px solid #e0e0e0;
  margin-top: 8px;
  color: #7d7d7d;
  padding-top: 3px;
  font-size: 0.9rem;
}

.s-Activities i.fa.fa-tasks,
.s-Activities i.fa.createcomment,
.s-Activities i.fa.closedtask {
  background-color: #b3ace9;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 29px;
  line-height: 35px;
  padding-left: 4px;
}

.kanban-task-user {
  margin-top: 6px;
  text-align: right;
  color: #666;
}

.kanban-task-user i {
  color: mediumpurple;
}

.kanban-task-date {
  margin-top: 6px;
  color: #666;
}

.kanban-task-date i.fa-calendar-o {
  color: lightseagreen;
}

.kanban-task-date i.fa-calendar-times-o {
  color: red;
}

.kanban-task-date i.fa-calendar-check-o {
  color: green;
}

.kanban-task>.hour-recording,
.kanban-task>.add-hour-recording {
  float: right;
}

.kanban-task>.hour-recording>span,
.kanban-task>.add-hour-recording>span {
  font-size: 20px;
  padding: 0;
}

.kanban-task>.add-hour-recording>span.fa-plus-circle {
  color: #3498db;
}

.kanban-task>.hour-recording>span.fa-play {
  color: green;
}

.kanban-task>.hour-recording>span.fa-stop {
  color: red;
}

a.kanban-add-task {
  color: yellow;
  float: right;
  margin-right: 6px;
}

a.kanban-add-task i {
  font-size: 20px;
  line-height: 17px;
}

/*
.s-TimeTracking-TaskDialog div.s-Form,
.s-TimeTracking-ProjectTaskDialog div.s-Form,
.s-TimeTracking-WbsElementTaskDialog div.s-Form {
  padding-bottom: 15px;
}

.s-TimeTracking-TaskDialog div.s-Form .field.Description,
.s-TimeTracking-ProjectTaskDialog div.s-Form .field.Description,
.s-TimeTracking-WbsElementTaskDialog div.s-Form .field.Description {
  padding-left: 20px;
}

.s-TimeTracking-TaskDialog div.s-Form .field.Description textarea,
.s-TimeTracking-ProjectTaskDialog div.s-Form .field.Description textarea,
.s-TimeTracking-WbsElementTaskDialog div.s-Form .field.Description textarea {
  min-height: 195px;
}

.s-TimeTracking-TaskDialog div.s-Form .field.Description,
.s-TimeTracking-ProjectTaskDialog div.s-Form .field.Description,
.s-TimeTracking-WbsElementTaskDialog div.s-Form .field.Description,
.s-TimeTracking-TaskDialog div.s-Form .field.CheckList,
.s-TimeTracking-ProjectTaskDialog div.s-Form .field.CheckList,
.s-TimeTracking-WbsElementTaskDialog div.s-Form .field.CheckList {
  flex-wrap: wrap;
  align-content: flex-start;
  padding-bottom: 10px;
}

.s-TimeTracking-TaskDialog div.s-Form .field.Description label.caption,
.s-TimeTracking-ProjectTaskDialog div.s-Form .field.Description label.caption,
.s-TimeTracking-WbsElementTaskDialog div.s-Form .field.Description label.caption,
.s-TimeTracking-TaskDialog div.s-Form .field.CheckList label.caption,
.s-TimeTracking-ProjectTaskDialog div.s-Form .field.CheckList label.caption,
.s-TimeTracking-WbsElementTaskDialog div.s-Form .field.CheckList label.caption {
  margin-bottom: 4px;
  text-align: left;
  flex-basis: 100%;
}


.s-TimeTracking-TaskDialog div.s-Form .field .tool-button:hover,
.s-TimeTracking-ProjectTaskDialog div.s-Form .field .tool-button:hover,
.s-TimeTracking-WbsElementTaskDialog div.s-Form .field .tool-button:hover {
  background: #fcfcf0;
}
*/
.wbs-common-grid .slick-header-columns {
  white-space: normal;
  height: 44px;
}

.wbs-common-grid .slick-header-column {
  height: 100%;
  line-height: 18px;
  padding: 4px 2px 4px 2px;
}

.wbs-common-grid .slick-cell {
  padding-left: 3px;
  padding-right: 3px;
}

.s-TaskAndCommentItems {
  background-color: #fff;
  overflow-y: auto;
  margin: 0 8px 8px 8px;
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px;
  height: 334px;
}

.s-TaskAndCommentItems .list-item {
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 8px;
  background-color: beige;
}

.s-TaskAndCommentItems .comment-item {
  background-color: #F5E7DC;
}

.s-TaskAndCommentItems .task-no {
  font-style: italic;
  font-size: 12px;
  float: right;
  text-align: right;
  margin-bottom: 6px;
}

.s-TaskAndCommentItems .task-no a {
  color: royalblue;
  cursor: default;
}

.s-TaskAndCommentItems .task-no i {
  color: lightskyblue;
}

.s-TaskAndCommentItems .task-name {
  font-weight: 600;
  margin-bottom: 6px;
}

.s-TaskAndCommentItems .task-name a {
  color: #000;
  cursor: default;
}

.s-TaskAndCommentItems .task-detail {
  font-size: 12px;
  margin-top: 6px;
}

.s-TaskAndCommentItems .task-user,
.s-TaskAndCommentItems .comment-user {
  text-align: right;
  color: #666;
  float: right;
}

.s-TaskAndCommentItems .task-user i,
.s-TaskAndCommentItems .comment-user i {
  color: mediumpurple;
}

.s-TaskAndCommentItems .task-date,
.s-TaskAndCommentItems .comment-date {
  color: #666;
  float: left;
}

.s-TaskAndCommentItems .task-date i.fa-calendar-o,
.s-TaskAndCommentItems .comment-date i.fa-calendar-o {
  color: lightseagreen;
}

.s-TaskAndCommentItems .task-date i.fa-calendar-times-o,
.s-TaskAndCommentItems .comment-date i.fa-calendar-times-o {
  color: red;
}

.s-TaskAndCommentItems .task-date i.fa-calendar-check-o,
.s-TaskAndCommentItems .comment-date i.fa-calendar-check-o {
  color: green;
}

.wbs-blue-shade {
  background-color: rgba(116, 149, 222, 0.12);
}

.monthlyGrid-blue-color .slick-cell {
  color: blue;
}

.monthlyGrid-orange-color .slick-cell {
  color: orange;
}

.monthlyGrid-grey-color .slick-cell {
  color: grey;
}

.bluebg .slick-cell {
  background-color: aliceblue;
}

.yellowbg .slick-cell {
  background-color: lightgoldenrodyellow;
}

/*
.s-TimeTracking-MonthlyReportActivateMailsDialog > .size,
.s-TimeTracking-MonthlyReportReminderMailsDialog > .size,
.s-Default-MonthlyReportMailsDialog > .size {
  width: 950px;
}

.s-TimeTracking-MonthlyReportActivateMailsDialog .caption,
.s-TimeTracking-MonthlyReportReminderMailsDialog .caption,
.s-Default-MonthlyReportMailsDialog .caption {
  width: 70px;
}

.s-TimeTracking-MonthlyReportActivateMailsDialog .s-MailBodyViewer,
.s-TimeTracking-MonthlyReportReminderMailsDialog .s-MailBodyViewer,
.s-Default-MonthlyReportMailsDialog .s-MailBodyViewer {
  height: 320px !important;
  margin-bottom: 10px;
}

.s-TimeTracking-MonthlyReportWizard .s-Administration-MonthlyReportWizardStatusLogGrid .grid-container {
  min-height: 200px;
}

.s-TimeTracking-MonthlyReportWizard .s-DataGrid.editor.s-Administration-MonthlyReportWizardStatusLogGrid {
  margin-left: 6px;
  padding: 10px;
}
*/

/* oct
.s-TimeTracking-TaskCheckListDialog > .size {
  width: 650px;
}

.s-TimeTracking-TaskCheckListDialog .caption {
  width: 150px;
}

.s-TimeTracking-TaskTemplateDialog > .size {
  width: 850px;
}

.s-TimeTracking-TaskTemplateDialog .caption {
  width: 150px;
}

.s-TimeTracking-TaskTemplateCheckListDialog > .size {
  width: 650px;
}

.s-TimeTracking-TaskTemplateCheckListDialog .caption {
  width: 150px;
}

.s-TimeTracking-WbsElementValueCategoryDialog > .size {
  width: 650px;
}

.s-TimeTracking-WbsElementValueCategoryDialog .caption {
  width: 150px;
}

.s-TimeTracking-TextInputDialog {
  width: 520px;
}

.s-TimeTracking-WorkAreaDialog > .size {
  width: 1150px;
  height: 500px;
}

.s-TimeTracking-WorkAreaDialog .caption {
  width: 150px;
}

.s-TimeTracking-WorkAreaDialog .s-TimeTracking-StatusPickerEditor {
  min-height: 250px;
}

.s-TimeTracking-TaskPickerDialog > .size {
  height: 500px;
}

.s-TimeTracking-TaskPickerDialog .s-TimeTracking-TasksCheckGrid {
  height: 410px;
}

.s-TimeTracking-WorkAreaStatusDialog > .size {
  width: 650px;
}

.s-TimeTracking-WorkAreaStatusDialog .caption {
  width: 150px;
}
*/
.workarea-select {
  position: absolute;
  right: 30px;
  width: 100%;
  text-align: right;
}

.workarea-select .caption {
  margin-right: 5px;
}

.workarea-select .select2-container {
  text-align: left;
  min-width: 150px;
}

.s-Cemdo-TimeTracking-TaskDialog>size {
  min-height: 800px;
}

.s-Cemdo-TimeTracking-TaskDialog .s-TaskDocumentGrid .grid-container {
  min-height: 500px;
}

.s-Cemdo-TimeTracking-TaskDialog .s-TimeTracking-PredecessorsGrid {
  min-height: 300px;
}

.s-TimeTracking-StatusPickerEditor .slick-cell.disabled .check-box {
  background-position: -60px 0px;
}

.s-TimeTracking-StatusPickerEditor .slick-cell.disabled .check-box.checked {
  background-position: -75px 0px;
}

/* oct
.s-TimeTracking-TaskRelationDialog > .size {
  width: 650px;
}

.s-TimeTracking-TaskRelationDialog .caption {
  width: 150px;
}

.s-TimeTracking-WbsElementTemplateDialog > .size {
  width: 650px;
}

.s-TimeTracking-WbsElementTemplateDialog .caption {
  width: 150px;
}

.s-TimeTracking-WbsElementTemplateChecklistDialog > .size {
  width: 650px;
}

.s-TimeTracking-WbsElementTemplateChecklistDialog .caption {
  width: 150px;
}

.s-TimeTracking-WbsElementChecklistDialog > .size {
  width: 650px;
}

.s-TimeTracking-WbsElementChecklistDialog .caption {
  width: 150px;
}

.s-TimeTracking-WbsElementTaskPickerDialog > .size {
  height: 600px;
  width: 950px;
}

.s-TimeTracking-WbsElementTaskPickerDialog .s-TimeTracking-WbsElementTaskPickerGrid {
  height: 410px;
}

.s-ResourcePlanning-DeviceDialog > .size {
  width: 650px;
}

.s-ResourcePlanning-DeviceDialog .caption {
  width: 150px;
}

.s-ResourcePlanning-ExecutionTypeDialog > .size {
  width: 650px;
}

.s-ResourcePlanning-ExecutionTypeDialog .caption {
  width: 150px;
}

.s-ResourcePlanning-InternalOrderDialog > .size {
  width: 650px;
}

.s-ResourcePlanning-InternalOrderDialog .caption {
  width: 150px;
}

.s-ResourcePlanning-OperationDialog > .size {
  width: 700px;
}

.s-ResourcePlanning-OperationDialog .caption {
  width: 170px;
}

.s-ResourcePlanning-ResourceDialog > .size {
  width: 650px;
}

.s-ResourcePlanning-ResourceDialog .caption {
  width: 150px;
}

.s-ResourcePlanning-ResourceRequirementDialog > .size {
  width: 650px;
}

.s-ResourcePlanning-ResourceRequirementDialog .caption {
  width: 150px;
}

.s-ResourcePlanning-ResourceGroupDialog > .size {
  width: 650px;
}

.s-ResourcePlanning-ResourceGroupDialog .caption {
  width: 150px;
}

.s-ResourcePlanning-ResourceGroupPhaseTypeDialog > .size {
  width: 650px;
}

.s-ResourcePlanning-ResourceGroupPhaseTypeDialog .caption {
  width: 150px;
}

.s-ResourcePlanning-ProjectOperationDialog > .size {
  width: 650px;
}

.s-ResourcePlanning-ProjectOperationDialog .caption {
  width: 150px;
}
*/
.s-CheckList-ChecklistItemTemplateDialog>.size {
  width: 650px;
}

.s-CheckList-ChecklistItemTemplateDialog .caption {
  width: 150px;
}

.s-CheckList-ChecklistTemplateDialog>.size {
  width: 650px;
}

.s-CheckList-ChecklistTemplateDialog .caption {
  width: 150px;
}

.ChecklistItemTemplateSortNoGridCell {
  margin-left: 20px;
}

.s-TaskTodoListEditor {
  min-height: 195px;
  border-radius: 4px;
  border: 1px solid var(--s-input-border);
  padding: 4px;
}

.s-TaskTodoListEditor:not(.readonly) {
  background-color: var(--s-input-bg);
  border-color: var(--s-input-border);
  width: 100%
}

.s-TaskTodoListEditor.readonly>input {
  opacity: 0.2;
}

.s-TaskTodoListEditor>input:focus {
  box-shadow: none;
}

.s-TaskTodoListEditor .todo-list {
  margin: 0;
  padding: 0;
  list-style: none;
  user-select: none;
}

.s-TaskTodoListEditor .todo-list>li {
  border-radius: 2px;
  padding: 3px;
  background: #fff;
  margin-bottom: 2px;
  border-left: 2px solid #e6e7e8;
  display: flex;
  position: relative;
  align-items: center;
  border: none;
}

.s-TaskTodoListEditor .todo-list>li.todo-item>span>i {
  font-size: 14px;
  width: 0px;
}

.s-TaskTodoListEditor .todo-list>li:last-of-type {
  margin-bottom: 0;
}

.s-TaskTodoListEditor .todo-list>li>input[type=checkbox] {
  margin: 0 4px 0 6px;
  font-size: 1.2rem;
  flex: 0 0 auto;
}

.s-TaskTodoListEditor .todo-list>li .text {
  font-weight: 400;
  user-select: auto;
  border: 1px solid transparent;
  padding: 2px 4px;
}

.s-TaskTodoListEditor .todo-list>li .label {
  margin-left: 10px;
  font-size: 9px;
}

.s-TaskTodoListEditor .todo-list>li .tools {
  display: none;
  color: #dd4b39;
  flex: 0;
  white-space: nowrap;
  margin-left: auto;
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: #f4f4f4;
}

.s-TaskTodoListEditor .todo-list>li .tools>.fa,
.s-TaskTodoListEditor .todo-list>li .tools>.glyphicon,
.s-TaskTodoListEditor .todo-list>li .tools>.ion {
  margin-right: 3px;
  cursor: pointer;
  font-size: 18px;
}

.s-TaskTodoListEditor .todo-list>li:hover .tools {
  display: inline-block;
}

.s-TaskTodoListEditor .todo-list>li.done {
  color: #999;
}

.s-TaskTodoListEditor .todo-list>li.done .text {
  text-decoration: line-through;
  font-weight: 500;
}

.s-TaskTodoListEditor .todo-list>li.done .label {
  background: #d2d6de !important;
}

.s-TaskTodoListEditor .todo-list .danger {
  border-left-color: #dd4b39;
}

.s-TaskTodoListEditor .todo-list .warning {
  border-left-color: #f39c12;
}

.s-TaskTodoListEditor .todo-list .info {
  border-left-color: #00c0ef;
}

.s-TaskTodoListEditor .todo-list .success {
  border-left-color: #00a65a;
}

.s-TaskTodoListEditor .todo-list .primary {
  border-left-color: #3c8dbc;
}

.s-TaskTodoListEditor .todo-list .handle {
  display: block;
  cursor: move;
  margin: 0 10px 0 0;
  white-space: nowrap;
}

.s-TaskTodoListEditor .todo-list>.todo-item>input[type=text] {
  display: none;
}

.s-TaskTodoListEditor .todo-list>.todo-item.edit>input[type=text] {
  display: inline-block;
  padding: 2px 4px;
  flex: 1 1 auto;
}

.s-TaskTodoListEditor .todo-list>.todo-item>span.text {
  display: inline-block;
}

.s-TaskTodoListEditor .todo-list>.todo-item.edit>span.text {
  display: none;
}

.s-TaskTodoListEditor>input {
  width: 100%;
  margin-bottom: 5px;
  border-style: none none dashed none;
  border-radius: 0;
  border-color: var(--s-input-border);
}

.s-Shared-GeneralLinksDialog>.size {
  width: 650px;
}

.s-Shared-GeneralLinksDialog .caption {
  width: 150px;
}

.start-meeting-div {
  margin: 0 0.75rem;
}

.s-NotificationWidget {
  margin: 0 0.75rem;
}

section.content {
  min-height: calc(100vh - 50px);
  display: flex;
  flex-direction: column;
}

.list-view-container {
  overflow-y: auto;
}

.has-list-view:not(.list-mode)>.list-view-container {
  display: none !important;
}

.has-list-view.list-mode>.grid-container {
  display: none !important;
}

.tool-group.responsive-buttons .tool-button {
  display: flex;
  flex-direction: row;
  gap: 0px;
  flex: 1 1 auto;
  margin: 0;
}

.s-Panel .panel-titlebar-text {
  font-size: 1.2rem;
}

@media (max-width: 767px) {

  .list-view-container {
    height: auto !important;
  }

  .has-list-view:not(.list-mode)>.grid-container {
    display: block !important;
  }

  /*
  .has-list-view .view-switch {
    display: none !important;
  }
*/
  .has-list-view>.list-view-container,
  .has-list-view:not(.list-mode)>.list-view-container {
    display: block;
  }

  .full-height-page section.content {
    display: flex;
    padding: 10px;
    background: white;
  }

  .full-height-page section.content>#GridDiv {
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .full-height-page section.content>#GridDiv>.grid-container {
    min-height: 100px;
  }

  .full-height-page section.content>#GridDiv .s-SlickPager {
    border-top: 1px solid var(--s-card-border);
    padding-top: 0.5rem;
  }

  .tool-group.responsive-buttons {
    display: none !important;
    width: 100%;
    flex-direction: column;
    align-items: normal;
  }

  .tool-group.responsive-buttons .tool-button {
    padding-top: 9px;
    padding-bottom: 8px;
    height: 40px;
    margin-bottom: 2px;
  }
/*
  .tool-group.responsive-buttons .tool-button:first-child,
  .tool-group.responsive-buttons .tool-button:last-child {
    border-radius: 0 !important;
  }
*/
  .responsive-open .tool-group.responsive-buttons {
    display: flex !important;
  }

  .slick-pg-in {
    flex-wrap: nowrap;
  }

  .slick-pg-size,
  .slick-pg-last,
  .slick-pg-first,
  .slick-pg-control,
  .s-Serenity-FilterDisplayBar {
    display: none !important;
  }

  .s-QuickSearchInput {
    width: 9em;
  }

  .s-Panel .s-DocumentsGrid.responsive-height.explorer-view-mode,
  .s-Panel .s-DocumentsGrid.responsive-height.explorer-view-mode.has-tree-view {
    display: block;
    overflow-y: hidden !important;
    height: unset !important;
    flex: 0 0 auto !important;
  }

  .s-Panel .s-DocumentsGrid.responsive-height.explorer-view-mode .grid-container {
    height: auto !important;
    overflow-y: unset !important;
  }

  ul.dropdown-quick-date li:first-child .col-3 {
    width: 33%;
  }

  ul.dropdown-menu.dropdown-quick-date.show {
    min-width: unset !important;
  }

  .hourrecording-form-for-day-pagination div select,
  .hourrecording-form-for-day-pagination div input,
  .hourrecording-form-for-day-pagination div textarea {
    font-size: 12px !important;
  }
}


@media (min-width: 768px) {

  .start-meeting-div {
    margin: 0 1.5rem;
  }

  .s-NotificationWidget {
    margin: 0 1.5rem;
  }

  .tool-group.responsive-toggler {
    display: none !important;
  }
}

.s-Panel {
  border: 0px;
  box-shadow: none;
}

.s-NotificationWidget>ul>li>div.notification-item {
  margin: 6px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--s-card-border);
  border-radius: 6px;
}

.s-NotificationWidget .notification-item>div {
  overflow: hidden;
}

.s-NotificationWidget>ul>li>div.notification-item>.description {
  font-size: 0.9em;
  margin-top: 4px;
}

.s-NotificationWidget>ul>li>div.notification-item>.time {
  font-size: 0.7em;
  text-align: right;
  margin-top: 4px;
  color: darkslategray;
}

.s-NotificationWidget>ul>li>div.notification-item:hover {
  background-color: #eee;
}

.s-NotificationWidget>ul>li>div>.title {
  font-weight: 600;
  display: block;
  cursor: pointer;
  color: #1f7ece;
}

.s-NotificationWidget>ul>li>div.unread {
  border-left: 2px solid #4294d5;
  padding-left: 10px;
  padding-right: 10px;
}

.s-NotificationWidget>ul {
  max-height: 600px;
  overflow: auto;
  min-width: 300px;
}

.s-NotificationWidget .notification-more,
.s-NotificationWidget .notification-empty {
  text-align: center;
}

.s-NotificationWidget .notification-more {
  cursor: pointer;
  user-select: none;
  font-size: 12px;
}

.s-NotificationWidget .notification-empty {
  min-height: 50px;
  margin-top: 25px;
}

.s-NotificationWidget .notification-more:hover {
  color: green;
}

.s-NotificationWidget .notification-mark-as-read {
  text-align: right;
  width: 55px;
  float: right;
  cursor: pointer;
  color: green;
  user-select: none;
  font-size: 0.85em;
}

.s-NotificationWidget .badge {
  position: absolute;
  top: -9px;
  right: -20px;
  font-size: 12px;
  text-align: center;
  width: 18px;
  height: 18px;
  color: #fff;
  background: #ff1515;
  background-clip: padding-box;
  border-radius: 50%;
  padding: 4px 1px 0 0;
  display: none;
}

.s-NotificationWidget .badge.show {
  display: block;
}

.s-NotificationWidget .notification-mark-all-as-read {
  float: right;
  cursor: pointer;
}

.s-NotificationWidget .notification-show-all {
  float: left;
  cursor: pointer;
}

.s-NotificationWidget .notification-toolbox {
  height: 25px;
  padding-left: 10px;
  padding-right: 10px;
  color: #1a186a;
  cursor: pointer;
  font-size: 13px;
}

/* custom notification scrollbar */
.s-NotificationWidget ::-webkit-scrollbar {
  width: 7px;
}

.s-NotificationWidget ::-webkit-scrollbar-track {
  background-color: #f4f4f4;
}

.s-NotificationWidget ::-webkit-scrollbar-thumb {
  background-color: #d6dee1;
  border-radius: 20px;
  border: 6px solid #4294d5;
  background-clip: content-box;
}

.s-NotificationWidget ::-webkit-scrollbar-thumb:hover {
  background-color: #a8bbbf;
}

.s-Activity,
.s-StatusLogWidget {
  background-color: #fff;
  min-height: 100%;
  padding: 10px;
}

.s-Activity .refresh-button,
.s-StatusLogWidget .refresh-button {
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  border-radius: 3px;
  color: #1f7ece;
  font-size: 20px;
  text-align: center;
  align-self: end;
}

.s-Activity .empty,
.s-StatusLogWidget .empty {
  text-align: center;
  font-size: 16px;
}

.s-Activity .timeline,
.s-StatusLogWidget .timeline {
  position: relative;
  margin: 0 0 30px 0;
  padding: 0;
  list-style: none;
}

/*
.s-Activity .timeline:before,
.s-StatusLogWidget .timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #f4f8fb;
  left: 173px;
  margin: 0;
}
*/
.timeline-item a.btn.btn-primary.btn-xs {
  padding: 4px 4px;
  /* font-size: 26px !important; */
  --bs-btn-padding-x: 0px;
  --bs-btn-padding-y: 0px;
    background-color: var(--bs-gray-300);
    border-color: var(--bs-gray-400);
    color: black;
}
.timeline-heading {
    display: grid;
    grid-template-columns: 30px 40px auto;
    grid-column-gap: 10px;
}
span.timeline-header {
    display: inline-block;
    width: auto;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 35px;
}
a.btn.btn-primary.timeline-btn-edit i,
a.btn.btn-primary.hourrecording-btn-edit i {
  font-size: 30px;
  padding: 0px;
  margin: 0px;
  line-height: 30px;
  vertical-align: middle;
}

.s-Activity .timeline>li,
.s-StatusLogWidget .timeline>li {
  position: relative;
  margin-right: 0px;
  margin-bottom: 15px;
}

.s-Activity .timeline>li .time,
.s-StatusLogWidget .timeline>li .time {
  color: #444;
  display: block;
  margin-top: 5px;
  position: absolute;
  left: 17px;
  width: 134px;
}

.s-Activity .timeline>li>.timeline-item,
.s-StatusLogWidget .timeline>li>.timeline-item {
  margin-top: 0;
  background: #fff;
  color: #444;
  margin-left: 200px;
  margin-right: 15px;
  padding: 0;
  position: relative;
}

.s-Activity .timeline>li>.timeline-item>.user,
.s-StatusLogWidget .timeline>li>.timeline-item>.user {
  color: #999;
  float: right;
  padding: 10px;
  font-size: 12px;
}

.s-Activity .timeline>li>.timeline-item>.timeline-header,
.s-StatusLogWidget .timeline>li>.timeline-item>.timeline-header {
  margin: 0;
  color: #555;
  padding: 10px;
  font-size: 16px;
  line-height: 1.1;
}

.s-Activity .timeline>li>.timeline-item>.timeline-header>a,
.s-StatusLogWidget .timeline>li>.timeline-item>.timeline-header>a {
  font-weight: 600;
}

.s-Activity .timeline>li>.timeline-item>.timeline-body,
.s-StatusLogWidget .timeline>li>.timeline-item>.timeline-body,
.s-Activity .timeline>li>.timeline-item>.timeline-footer,
.s-StatusLogWidget .timeline>li>.timeline-item>.timeline-footer {
  padding: 10px;
}

.s-Activity .timeline>li>.fa,
.s-StatusLogWidget .timeline>li>.fa,
.s-Activity .timeline>li>.glyphicon,
.s-StatusLogWidget .timeline>li>.glyphicon,
.s-Activity .timeline>li>.ion,
.s-StatusLogWidget .timeline>li>.ion {
  width: 30px;
  height: 30px;
  font-size: 15px;
  line-height: 30px;
  position: absolute;
  color: #7e7e7e;
  background: #f4f8fb;
  border-radius: 50%;
  text-align: center;
  left: 160px;
  top: 0;
}

.s-Activity .timeline>.time-label>span,
.s-StatusLogWidget .timeline>.time-label>span {
  font-weight: 600;
  padding: 5px;
  display: inline-block;
  background-color: #fff;
}

.s-Activity .timeline-inverse>li>.timeline-item,
.s-StatusLogWidget .timeline-inverse>li>.timeline-item {
  background: #f0f0f0;
  border: 1px solid #ddd;
}

.s-Activity .timeline-inverse>li>.timeline-item>.timeline-header,
.s-StatusLogWidget .timeline-inverse>li>.timeline-item>.timeline-header {
  border-bottom-color: #ddd;
}

.timeline-body img {
  max-width: 100%;
}

/* For now hide column picker, to be reverted later. */
.CodeMirror {
  border: 1px solid #ddd;
}

.grid-toolbar .column-picker-button {
  display: none !important;
}

.text-dark-gray {
  color: #666;
}

.quick-filter-item .ms-drop input[type=radio],
.quick-filter-item .ms-drop input[type=checkbox] {
  position: initial;
  padding-top: 0;
  padding-bottom: 0;
  margin-right: 6px;
}

.quick-filter-item .s-DateEditor,
.quick-filter-item .s-DateTimeEditor.dateQ,
.quick-filter-item .range-separator,
.quick-filter-item img.ui-datepicker-trigger {
  display: inline-block;
  float: none;
}

.tooltip-inner {
  min-width: 300px;
  text-align: left;
  background-color: darkslategray;
}

.s-Comments-Chat {
  width: 100%;
  max-width: 768px;
  margin: auto;
}

.s-Comments-Chat .nav {
  padding-left: 10px;
}

.s-Comments-Chat .comments-list ul {
  padding: 0;
  min-height: 110px;
  overflow-y: auto;
  list-style: none;
}

.s-Comments-Chat .comments-list li {
  margin: 10px;
  border-radius: 4px;
  border: 1px solid #C3C2C2;
  background-color: #F5E7DC;
  padding: 8px;
  position: relative;
  list-style: none;
}

.s-Comments-Chat .comments-list li.active {
  box-shadow: 0 0 5px #276cfa;
}

.s-Comments-Chat .note-text {
  padding-right: 24px;
  display: block;
  white-space: pre-wrap;
}

.s-Comments-Chat .note-reply {
  display: block;
  position: absolute;
  right: 6px;
  padding: 0 4px;
  font-size: 16px;
  top: 6px;
  opacity: 0.9;
  cursor: pointer;
}

.s-Comments-Chat .custom-menu-icon {
  display: block;
  position: absolute;
  right: 54px;
  padding: 0 4px;
  font-size: 16px;
  top: 6px;
  opacity: 0.9;
  cursor: pointer;
}

.s-Comments-Chat .external-link {
  padding: 0 4px;
  font-size: 14px;
  opacity: 0.9;
  cursor: pointer;
}

.s-Comments-Chat .item-link {
  opacity: 0.9;
  cursor: pointer;
}

.s-Comments-Chat .note-reply:hover .external-link:hover .item-link:hover .custom-menu-icon:hover {
  opacity: 1;
}

.s-Comments-Chat .note-delete {
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  right: 6px;
  top: 6px;
  opacity: 0.4;
}

.s-CommentsEditor .note-delete:after {
  content: "\f00d";
  font-family: var(--s-icon-font);
  font-size: 1.3rem;
  line-height: 0.5rem;
  color: red;
}

.s-Comments-Chat .note-delete:hover {
  opacity: 1;
}

.s-Comments-Chat .note-date {
  margin-top: 6px;
  display: block;
  text-align: right;
  color: #2a4084;
  font-style: italic;
}

.s-Comments-Chat .note-participant {
  margin-top: 6px;
  display: block;
  text-align: right;
  color: lightcoral;
}

.s-Comments-Chat .tasks-list .task-link {
  opacity: 0.9;
  cursor: pointer;
  font-weight: bold;
  color: #30a6ea;
}

.s-Comments-Chat .tasks-list .task-date {
  color: #666;
  float: left;
  position: absolute;
  bottom: 9px;
  left: 10px;
}

.s-Comments-Chat .tasks-list .task-name {
  font-weight: 600;
  margin-bottom: 6px;
}

.s-Comments-Chat .tasks-list .task-name a {
  color: #000;
  cursor: pointer;
}

a:hover {
  text-decoration: none !important;
}

.s-Comments-Chat .tasks-list .task-name a:hover {
  color: #5eb9ee;
  cursor: pointer;
}

.s-Comments-Chat .tasks-list .task-no {
  font-style: italic;
  font-size: 12px;
  float: right;
  text-align: right;
  margin-bottom: 6px;
}

.s-Comments-Chat .tasks-list .task-no a {
  color: royalblue;
  cursor: pointer;
  font-weight: bold;
}

.s-Comments-Chat .tasks-list .task-no a:hover {
  color: lightskyblue;
  cursor: pointer;
  font-weight: bold;
}

.s-Comments-Chat .tasks-list .task-no i {
  color: lightskyblue;
}

.s-Comments-Chat .tasks-list .task-detail {
  padding-bottom: 24px;
}

.s-Comments-Chat .tasks-list .task-user {
  text-align: right;
  color: #666;
  float: right;
  position: absolute;
  bottom: 9px;
  right: 10px;
}

.s-Comments-Chat .tasks-list .task-user i {
  color: mediumpurple;
  margin-top: 10px;
}

.s-Comments-Chat .tasks-list ul {
  padding: 0;
  min-height: 110px;
  overflow-y: auto;
  list-style: none;
}

.s-Comments-Chat .tasks-list li {
  margin: 10px;
  min-height: 80px;
  border-radius: 4px;
  border: 1px solid #C3C2C2;
  background-color: #F5F3DC;
  padding: 8px;
  position: relative;
  list-style: none;
}

.s-Comments-Chat .tasks-list li.active {
  box-shadow: 0 0 5px #276cfa;
}

.s-Comments-Chat .s-Toolbar {
  background-color: #eee;
  padding: 4px;
}

.s-Form .quick-filter-item .ui-datepicker-trigger {
  display: inline-block;
  float: none;
  margin: 1px 6px 0 1px;
}

.editor-toolbar i.separator {
  float: none;
}

.editor-toolbar.fullscreen,
.CodeMirror-fullscreen,
.editor-preview-side {
  z-index: 10000 !important;
}

body>.ui-widget-overlay {
  top: 60px;
}

.popup-text-editor {
  z-index: 50;
  display: inline-block;
  border: 1px solid #999;
  padding: 10px;
  background: #efefef;
  box-shadow: 0px 0px 15px black;
  position: absolute;
}

@keyframes fa-blinking {
  50% {
    opacity: 0;
  }
}

.fa-blinking {
  -webkit-animation: fa-blinking 1s linear infinite;
  -moz-animation: fa-blinking 1s linear infinite;
  -o-animation: fa-blinking 1s linear infinite;
  animation: fa-blinking 1s linear infinite;
}

.ui-datepicker-week-col {
  text-align: center;
}

.ui-menu .ui-menu-item a.ui-state-active {
  margin: 0;
  background: #1b6eea;
}

.property-panes>.tab-pane:not(.active) .lazy-loading-element {
  display: none !important;
}

.select2-chosen .deleted-record,
.select2-disabled .deleted-record {
  display: none;
}

/* Slider */
.ui-slider {
  position: relative;
  text-align: left;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

.ui-slider-horizontal {
  height: 0.8em;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

.navbar-nav>.user-menu>.dropdown-menu>.user-footer .btn {
  font-size: 12px;
}

.navbar-nav>.user-menu>.dropdown-menu>.user-footer hr {
  margin-top: 40px;
  margin-bottom: 5px;
}

.category>.field>.caption>.caption-btn {
  margin-left: 8px;
  font-size: 1rem;
  padding: 0;
  line-height: 1.5;
}

.slick-row .deleted .slick-cell {
  text-decoration: line-through;
}

.show-add-icon:not(.icon-tool-button) .button-inner:before {
  content: "\f067";
  color: #3d9970;
}

.s-TaskActivityPanel .activities .timeline {
  margin-left: 28px;
}

.s-TaskActivityPanel .refresh-button {
  text-align: end;
}

.s-TaskActivityPanel .refresh-button>i {
  cursor: pointer;
}

.s-TaskActivityPanel .activities {
  max-height: 500px;
  overflow: scroll;
  overflow-x: hidden;
}

/*
.nav-tabs-custom.ui-tabs {
  display: flex;
  flex: 1 1 auto;
  width: 100%;
}
*/
.s-ProjectsPage .nav-tabs-custom.ui-tabs,
.s-ProjectsDossierPage .nav-tabs-custom.ui-tabs {
  height: 100%;
  display: flex;
  flex: 1 auto;
  /* float: left; */
  width: 100%;
}

.tab-content.ui-tabs,
.tab-content {
  float: left;
  width: 100%;
  flex: 1 1 auto;
  height: 100%;
}

.page-tabbed-content,
#subTabsGridView {
  background-color: var(--s-card-bg) !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 0 !important;
  /* min-height: 0 !important; */
  display: flex;
  flex: 1 1 auto;
  width: 100%;
  flex-direction: column;
  max-height: 100%;
  justify-content: flex-start;
  height: 100%;
}

.ui-tabs {
  position: relative;
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
}


.ui-tabs:not(.tab-content):not(.page-tabbed-content):not(.nav-tabs-custom):not(#subTabsGridView) {
  position: relative;
  /* flex: 1 1 auto; */
  display: block;
  /* flex-direction: column; */
}

.page-tabbed-content .tab-pane>div {
  min-height: 1px;
  min-width: 1px;
}

.s-DataGrid {
  border: none;
  box-shadow: none;
}

.s-main {
  overflow: auto;
  background-color: white;
}

.grid-context-menu-cemdo {
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #337ab7;
  padding: 5px;
  min-width: 100px;
  border-radius: 4px;
  box-shadow: 2px 2px 2px rgb(0, 0, 0, 0.2);
  z-index: 99999;
}

.grid-context-menu-cemdo li {
  padding: 8px 12px;
  list-style: none;
  cursor: pointer;
}

#closeReminder span {
  font-family: var(--bs-body-font-family);
  padding-left: 5px;
  font-weight: normal;
}

.grid-context-menu-cemdo li:hover {
  padding: 8px 12px;
  list-style: none;
  cursor: pointer;
  background-color: #337ab7;
  color: white;
}

.timeline {
  position: relative;
  margin: 0 0 30px 0;
  padding: 0;
  list-style: none;
}

.dropdown-menu.dropdown-menu-md.dropdown-menu-end.s-user-profile-menu.show {
  max-width: 100vw;
}

/*
.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ddd;
  left: 31px;
  margin: 0;
  border-radius: 2px;
}
*/
.timeline>li {
  position: relative;
  margin-right: 10px;
  margin-bottom: 15px;
}

.timeline>li:before,
.timeline>li:after {
  content: " ";
  display: table;
}

.timeline>li:after {
  clear: both;
}

.timeline>li>.timeline-item {
  /* -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); */
  /*-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);*/
  /* box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); */
  border-radius: 0;
  margin-top: 0;
  background: #fff;
  color: #444;
  margin-left: 10px;
  margin-right: 10px;
  padding: 5px 0px;
  position: relative;
  border-bottom: 4px solid #d1d1d1;
}

h3.timeline-header {
  font-size: 1.2rem;
  line-height: 34px;
  padding-left: 4px;
}

.timeline>li>.timeline-item>.time {
  color: #999;
  float: right;
  padding: 10px;
  font-size: 12px;
}

.time i.fa.fa-clock-o {
  line-height: 16px;
  margin-right: 3px;
}

.timeline-item span.time {
  color: #888;
  font-size: 12px;
  line-height: 17px;
  vertical-align: middle;
}

.timeline>li>.timeline-item>.timeline-header {
  margin: 0;
  color: #555;
  border-bottom: 1px solid #f4f4f4;
  padding: 10px;
  font-size: 16px;
  line-height: 1.1;
}

.s-Activities .timeline>li>.timeline-item>.timeline-header>a {
  font-weight: 600;
}

.s-Activities .timeline>li>.timeline-item>.timeline-body,
.s-Activities .timeline>li>.timeline-item>.timeline-footer {
  padding: 10px 0px;
}

.timeline-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.s-HourRecordings .weekend .slick-cell {
  color: grey;
  background-color: antiquewhite;
}

.s-HourRecordings .pagination {
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
}

.s-HourRecordings .pagination ul {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: 0 0;
}

.s-HourRecordings .pagination li {
  display: inline;
  margin: 0;
  padding: 0;
}

.s-HourRecordings .pagination li a {
  border: 1px solid #c9c9c9;
  color: #242424;
  text-decoration: none;
  display: inline-block;
  transition: all .8s ease 0s;
  height: 40px;
  line-height: 40px;
  padding: 0;
  text-align: center;
  width: 40px;
  margin: 10px 10px 0 0;
}

.s-HourRecordings .pagination li a:hover {
  background-color: #4CAF50;
  color: white;
}

.s-HourRecordings .pagination li a.active {
  background-color: #4CAF50;
  color: white;
}

.s-HourRecordings .swiper-container {
  width: 100%;
}

.s-HourRecordings .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.s-HourRecordings .swiper-pagination {
  position: static;
}

.s-HourRecordings .swiper-pagination-bullet {
  margin: 0 4px;
  display: inline-block;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

.s-HourRecordings .swiper-pagination-bullet-active {
  color: #fff;
  background: #007aff;
}

.s-Activities .timeline>li>.fa,
.s-Activities .timeline>li>.glyphicon,
.s-Activities .timeline>li>.ion {
  width: 44px;
  height: 44px;
  font-size: 27px;
  line-height: 42px;
  position: absolute;
  color: #666;
  background: #d2d6de;
  border-radius: 50%;
  text-align: center;
  left: 11px;
  top: 0;
}

.s-Activities .timeline>li>.fa:before {
  font-size: 33px;
}

.s-Activities i.fa.fa-check-square.bg-purple.closedtask {
  background-color: #b0dfa5;
}

.s-Activities i.fa.fa-tasks.bg-purple.createtask {
  background-color: #46b4ff;
}

.s-Activities i.fa.fa-arrow-circle-left,
.s-Activities i.fa.fa-arrow-circle-right {
  font-size: 32px;
}

.s-Activities .gantt-toolbar button.btn {
  padding: 0px;
  background: none;
  border: none !important;
}

.s-Activities .timeline>.time-label>span {
  font-weight: 600;
  padding: 5px;
  display: inline-block;
  background-color: #fff;
  border-radius: 0;
  font-size: 20px;
}

.s-Activities .timeline-inverse>li>.timeline-item {
  background: #f0f0f0;
  border: 1px solid #ddd;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.s-Activities .timeline-inverse>li>.timeline-item>.timeline-header {
  border-bottom-color: #ddd;
}

button.btn {
  border: 1px solid var(--bs-secondary-color);
  line-height: 1;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
}

button.btn.btn-medium {
  width: 34px;
  height: 34px;
  padding: 3px;
}

.btn:hover {
  border-color: var(--bs-secondary-color);
  /* color: var(--s-tabs-text-active); */
}

button.btn.btn-xs.btn-default.btn-file-name-change {
  padding: 2px 6px;
  text-align: center;
  vertical-align: top;
  line-height: 28px;
}

button.btn.btn-xs.btn-default.btn-file-name-change i {
  float: left;
  margin-right: 4px;
}

.btn-dropdown {
  display: inline-block;
  margin: 4px 4px 0 0;
}

.btn-dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 100px;
  z-index: 2;
  border: 1px solid #008d4c;
}

.btn-dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.btn-dropdown-content a:hover {
  background-color: #ddd;
}

.btn-dropdown:hover .btn-dropdown-content {
  display: block;
}

.btn-dropdown:hover {
  background-color: #0b7dda;
}


.background-lightgray .slick-cell {
  background-color: #ffffff;
  opacity: 0.5;
}

.s-WbsGantt .WbsElement {
  width: 170px;
}

.s-WbsGantt .Start {
  width: 60px;
}

.s-WbsGantt .End {
  width: 60px;
}

.s-ProjectPhasesGanttChart .Project {
  width: 160px;
}

.s-ProjectPhasesGanttChart .Phase {
  width: 160px;
}

.s-ProjectPhasesGanttChart .Start {
  width: 60px;
}

.s-ProjectPhasesGanttChart .End {
  width: 60px;
}

.s-ProjectPhasesGanttChart .Type {
  width: 80px;
}



.gantt-overlap {
  position: absolute;
  height: 18px;
  top: 0;
  background-color: rgba(255, 105, 180, 0.7) !important;
}

.project-gantt-chart .Project>div {
  width: 140px;
}

.project-gantt-chart .Phase>div {
  width: 140px;
}

.project-gantt-chart .WbsElement>div {
  width: 140px;
}

.project-gantt-chart .Partner>div {
  width: 140px;
}

.project-gantt-chart .Start>div {
  width: 60px;
}

.project-gantt-chart .Status>div {
  width: 140px;
}

.project-gantt-chart .Type>div {
  width: 140px;
}

.task-completion {
  float: right;
}

.task-completion>.task-completed-text {
  font-size: 0.8em !important;
  margin: 5px;
}

.s-HourRecordingsDialog>.size {
  width: 950px;
}

.grid-toolbar .grid-title {
  min-width: 100%;
}

@media (max-width: 567px) {
  .slick-grouping-panel {
    display: none;
  }

  div.DocumentOverviewTabs div.s-DocumentManagement-DocumentGrid {
    height: auto;
    overflow: hidden;
    flex: 0 0 auto;
  }

  .grid-toolbar .grid-title {
    min-width: unset;
  }

  #s-ActivitiesIndexPage .page-tabbed-content {
    padding-top: 0.25rem;
  }

  #s-ActivitiesIndexPage section.content {
    padding: 0 !important;
  }

  .compact-grid.s-DataGrid,
  .compact-grid.s-DataGrid {
    padding: 0 !important;
    border: 0 !important;
  }

  .compact-grid .s-Toolbar .select2-container {
    min-width: 8em;
  }
}

i.fas.fa-circle::before {
  border-radius: 50%;
  background: currentColor;
}

.label-tag {
  padding: 0 10px;
  border-radius: 24px;
}

.slick-cell .label-tag,
.list-view-item .label-tag {
  margin-left: 4px;
  font-size: 12px;
  top: -5px;
  position: relative;
}
.list-view-item .px-2.flex-grow-0 {
    width: 35px;
}
.list-view-item span, .list-view-item a {
    font-size: 115%;
}
.gantt-toolbar.collapsed .quick-filter-item {
  display: none;
}

.quick-filter-item {
  margin: 4px 4px 4px 0px;
}

.gantt-toolbar .collapser {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  padding: 2px 4px;
}


.grid-toolbar.collapsed .quick-filter-item {
  display: none !important;
}

.grid-toolbar .collapser {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  padding: 2px 4px;
  display: none;
}

.s-sidebar-xxx {
  box-shadow: 2px 0px 6px #25324052;
}

.s-sidebar {
  box-shadow: none;
  border-right: 5px solid #c0c0c0;
}

.s-sidebar-band-link {
  display: flex;
  flex-direction: column;
  position: relative;
}

.s-sidebar-band-link i.fa {
  font-size: 2rem;
}

.s-sidebar-band-link .s-sidebar-band-text {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
}

.s-sidebar-band-link:hover {
  background-color: var(--s-sidebar-band-hover-background-color);
}

.s-sidebar-band-groups .active .s-sidebar-band-link::after {
  content: '';
  width: 4px;
  margin-left: 0px;
  z-index: 0;
  background-color: #cce5ff;
  opacity: 0.8;
  position: absolute;
  left: 0;
  top: 5%;
  height: 90%;
  border-radius: 0;
}


.s-sidebar-band-link.hover {
  background-color: var(--s-sidebar-band-hover-background-color);
  color: var(--s-sidebar-band-link-active);
  font-weight: 500;
}

.s-sidebar-link:hover,
.s-sidebar-pane .active>.s-sidebar-link {
  background-color: #f5faff;
  color: var(--s-sidebar-link-hover);
}

.quick-filter-active>.quick-filter-label {
  color: initial;
}

.kanban-left-title {
  position: relative;
}

.kanban-left-title .kanban-title {
  position: sticky;
  top: 96px;
}

.kanban-left-title span {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #dae7f1;
  padding: 4px 6px;
  border-radius: 6px;
}

.kanban-left-title {
  border-top: 1px solid #dae7f1;
  border-bottom: 1px solid #dae7f1;
}

.kanban-left-title::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 12px;
  bottom: 12px;
  z-index: -1;
  width: 1px;
  border: 1px dashed #dae7f1;
  transform: translateX(-50%);
}

.ui-tabs-nav a {
  font-weight: normal;
  padding: 2px 10px;
}

.nav-tabs .nav-link,
.nav-underline .nav-link {
  box-sizing: border-box;
  padding: 2px 10px;
  border: none;
  font-weight: normal;
  border-radius: 0px;
  margin: 0px;
  font-size: var(--bs-body-font-size);
}

.ui-tabs-nav .ui-tabs-selected,
.ui-tabs-nav .ui-tabs-active.ui-state-active a,
.nav-underline .nav-link.active,
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  border-bottom: 4px solid var(--s-tabs-text-active);
  padding-bottom: 2px;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  color: var(--s-tabs-text-active);
}

/* Changes required by TG */
.ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  white-space: nowrap;
  padding-bottom: 0px;
  /* auf 5px f�r Microsoft */
  padding: 0px 0px 4px 0px;
  max-height: 25px;
  margin: 8px 0px 0px 0px;
}

.s-HourRecordings .ui-tabs-nav li {
  margin-bottom: 1px;
}

.ui-tabs-nav .ui-tabs-selected,
.ui-tabs-nav .ui-tabs-active {
  /*border: none !important; */
  /* f�r MC */
  color: var(--s-tabs-text-active);
  border-bottom: none;
  padding-bottom: 0px;
  /* text-decoration: underline;
  text-decoration-color: var(--s-tabs-text-active); */
  /* f�r Microsoft */
}

ul.nav.nav-underline {
  padding-top: 7px;
  border-bottom: 1px solid var(--s-tabs-border);
  gap: var(--s-row-gap);
}

.ui-tabs-nav {
  /* padding-bottom: 1px; */
  /* float: left; */
  /* width: 100%; */
  display: block;
}

.property-tabs {
  padding-left: 0px;
}

/*
li.nav-item {
  padding-bottom: 4px;
}*/
.nav.property-tabs li.nav-item {
  padding-bottom: 0px;
}

/*
.ui-tabs-nav .ui-tabs-active a {
  border: none;
  
}*/


.s-DataGrid {
  padding: unset;
}

div#ActivityStreamGrid {
  overflow: hidden !important;
  height: max-content !important;
  padding-bottom: 40px;
}

div#TimeSheetMonthGrid {
  flex: 1 1 auto;
  height: auto !important;
}

/*
div#TimeSheetMonth {
  padding-bottom: 30px;
}*/

/*
.ui-tabs-nav .ui-tabs-selected, .ui-tabs-nav .ui-tabs-active {
  --bs-nav-tabs-border-radius: 6px;
  border: 0px solid var(--s-tabs-border-active);
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
  color: var(--s-tabs-text-active);
}

.ui-tabs-nav .ui-tabs-selected, .ui-tabs-nav .ui-tabs-active {
  border-bottom: 3px solid white;
}
  .ui-tabs-nav .ui-tabs-active a {
    color: var(--s-tabs-text-active);
    border: 1px solid var(--s-tabs-text-active);
    border-bottom: 3px solid white;
  }
    */



/*
  .ui-tabs-nav .ui-tabs-selected, .ui-tabs-nav .ui-tabs-active .nav-link:hover {
    color: var(--s-card-title);
    border-bottom-color: white !important;
  }*/

.s-Cemdo-TimeTracking-TaskCloseDialog .ui-dialog-buttonpane button {
  background-color: white;
  color: black;
  border: 1px solid gainsboro;
}

.btn-success {
  --bs-btn-color: #000;
  --bs-btn-bg: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffca2c;
  --bs-btn-hover-border-color: #ffc720;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffcd39;
  --bs-btn-active-border-color: #ffc720;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ffc107;
  --bs-btn-disabled-border-color: #ffc107
}

.drop-zone-area {
  left: 0;
  top: 0;
}

.s-DocumentsDialog>.size {
  height: 800px;
}

.s-header-filter-menu {
  max-width: 80%;
  max-width: 600px;
}

.s-TranslationGrid .s-QuickSearchInput {
  padding-right: 4.5em;
}

.s-TranslationGrid .quick-search-field {
  width: 4.5em;
}

.slick-cell>.custom-text-filter {
  display: none;
}



.placeholder-dropdown {
  position: relative;
  display: inline-block;
}

.placeholder-dropbtn {
  background-color: #4288cb;
  color: white;
  padding: 5px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.placeholder-dropdown-content {
  display: none;
  position: absolute;
  font-size: 12px;
  left: -30px;
  background-color: #f1f1f1;
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 999999;
  border-radius: 4px;
  list-style-type: none;
  padding: 0;
}

.placeholder-dropdown-content li {
  padding: 6px;
  cursor: pointer;
}


.placeholder-dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}


.placeholder-dropdown-content li:hover {
  background-color: #ddd;
}

.placeholder-dropdown:hover .placeholder-dropdown-content {
  display: block;
}


/* +++ OCT START ++++++++++++++++++++++++++++++++++++++++++++++++++ */
.field.CostElements,
.field.DocumentTransactions {
  display: block;
  width: 100%;
}

.field.CostElements label,
.field.CostElements div.editor,
.field.DocumentTransactions label,
.field.DocumentTransactions div.editor {
  float: left;
  width: 100%;
  text-align: left;
}

div#inv_workflow_info {
  display: block;
  width: 100%;
  color: var(--s-tabs-text-active);
  font-weight: bold;
}

div.inv_wf_status:before {
  content: "\f05a";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 10px;
  font-size: 16px;
}

.mainDiv>div div {
  align-content: space-evenly;
  text-align: left;
}

.actions {
  /* text-align: right !important; */
  width: 100%;
  /* float: left; */
  display: block !important;
  text-align: center !important;
}

.actions:first-child {
  text-align: left !important;
}

.actions:nth-child(4) {
  text-align: right !important;
}

.mainDiv>div {
  display: grid;
  grid-template-columns: 15% 35% 40% 10%;
  grid-auto-columns: auto;
  align-content: center;
  /* text-align: center; */
}

.fa-angles-left:before {
  content: "\f100";
}

.fa-angles-right:before {
  content: "\f101";
}

.pg_num_display {
  text-align: left !important;
  padding-left: 3px;
}

.s-DocumentsInvoiceWorkflowPanel input.s-Serenity-QuickSearchInput.s-QuickSearchInput {
  width: 25em;
}

.s-DocumentsInvoiceWorkflowPanel a.quick-search-field {
  width: max-content;
}

/* +++ OCT END ++++++++++++++++++++++++++++++++++++++++++++++++++ */


/* PROCESS TRACKING */
.s-WbsDocumentProcessGantt .s-GanttChart .Project {
  width: 60px;
}

.s-WbsDocumentProcessGantt .s-GanttChart .WbsElement {
  width: 160px;
}

.s-WbsDocumentProcessGantt .s-GanttChart .Partner {
  width: 70px;
}

.s-WbsDocumentProcessGantt .s-GanttChart .Start {
  width: 80px;
}

.s-WbsDocumentProcessGantt .s-GanttChart .Status {
  width: 60px;
}

.s-DocumentsDialog .category .field.CreatedOn .caption,
.s-DocumentsDialog .category .field.ModifiedOn .caption {
  width: auto;
}

.s-sidebar-band {
  background-color: var(--s-sidebar-band-bg);
}

.modal-content,
.modal-dialog-centered {
  /*min-height: 750px;*/
  border-radius: var(--bs-modal-border-radius);
}

.dropdown .btn:not(.btn-month):not(.btn-quarter):not(.btn-year):not(.btn-rest) {
  padding: 4px 0.475rem 3px 0.475rem;
  border: 1px solid var(--bs-border-color);
  border-radius: 5px;
  height: auto;
  min-height: 33px;
  background-color: white;
}

.quick-search-icon {
  padding: 0px 7px 0px 3px;
}

.dropdown .btn i {
  color: var(--s-sidebar-link-active);
  font-size: 24px;
  line-height: 1;
  padding: 0;
}

ul.dropdown-menu:not(.dropdown-quick-date).show {
  background: var(--bs-dropdown-bg);
  padding: 0;
  width: max-content !important;
}

.s-NotificationWidget>ul>li>div.notification-item {
  background: white;
}

ul.dropdown-quick-date div button.btn {
  border: 1px solid;
  border-color: var(--bs-secondary-color);
  padding-top: 0.65rem;
  padding-bottom: 0.45rem;
}

.s-sidebar-toggler {
  margin: 0;
  padding: 0;
  width: 60px;
}


.navbar:has(~ .modal),
.s-sidebar:has(~ .modal) {
  z-index: 1000;
  pointer-events: none;
}

.navbar:has(~ .modal) a[href="javascript:showImpressum(1)"],
.s-sidebar:has(~ .modal) a[href="javascript:showImpressum()"] {
  pointer-events: all !important;
}

/*
div.modal:not(.s-DocumentPreviewDialog) div .modal-dialog {
  box-shadow: 0 0 0 2000px rgba(0, 0, 0, 0.4);
}
*/
/* remove if .modal-dialog box-shadow is deleted */

.modal:not(.s-DocumentPreviewDialog) {
  --bs-modal-margin: 58px 1.75rem
}

.modal.s-DocumentPreviewDialog {
  /* z-index: 100000; */
  --bs-modal-margin: 0;
  margin-top: 48px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  max-height: 100%;
}

.s-DocumentPreviewDialog .modal-dialog {
  height: 100%;
  width: 100%;
  overflow: hidden;
  max-height: 100%;
  --bs-modal-width: 100%;
}

.s-DocumentPreviewDialog .modal-content {
  /* min-height: 750px; */
  border-radius: var(--bs-modal-border-radius);
  max-height: 100%;
  height: 100%;
  overflow: hidden;
}

.s-DocumentPreviewDialog .modal-content .modal-body {
  overflow: hidden;
  height: 100%;
  max-height: 100%;
}

.s-DocumentPreviewWidget .mainDiv {
  overflow: hidden;
  width: 100%;
  height: calc(100% - 12px) !important;
  padding: 0;
  margin: 0;
}

.s-DocumentPreviewWidget .mainDiv span.outer {
  height: 100% !important;
  max-height: calc(100% - 35px);
  display: block !important;
}

.s-DocumentPreviewDialog .modal-content .modal-body .s-DocumentPreviewWidget {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

h5.modal-title {
  font-size: 1.1rem;
  white-space: break-spaces;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 15px;
}

.grid-title .title-text {
  font-size: 1.3rem;
}

.navbar:has(~ .modal)::before,
.s-sidebar:has(~ .modal)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-color: rgba(0, 0, 0, 0.4);*/
  z-index: 14;
}

.tool-button.actions-button {
  padding: 0;
}

@media (max-width: 576px) {

  .navbar:has(~ .modal > .modal-fullscreen-sm-down),
  .s-sidebar:has(~ .modal > .modal-fullscreen-sm-down) {
    z-index: inherit;
    pointer-events: all;
  }
}

@media (max-width: 768px) {

  .navbar:has(~ .modal > .modal-fullscreen-md-down),
  .s-sidebar:has(~ .modal > .modal-fullscreen-md-down) {
    z-index: inherit;
    pointer-events: all;
  }

  .s-Panel.flex-layout {
    padding: 0px;
  }
}

@media (max-width: 992px) {

  .navbar:has(~ .modal > .modal-fullscreen-lg-down),
  .s-sidebar:has(~ .modal > .modal-fullscreen-lg-down) {
    z-index: inherit;
    pointer-events: all;
  }
}

@media (max-width: 1200px) {

  .navbar:has(~ .modal > .modal-fullscreen-xl-down),
  .s-sidebar:has(~ .modal > .modal-fullscreen-xl-down) {
    z-index: inherit;
    pointer-events: all;
  }
}

.navbar:has(~ .modal > .modal-fullscreen),
.s-sidebar:has(~ .modal > .modal-fullscreen) {
  z-index: inherit;
  pointer-events: all;
}

/* remove until here */

.field.CommentsList {
  max-height: 100%;
  height: 100%;
}

#TabActivityStream ul.timeline {
  max-width: 800px;
  margin-top: 40px;
}

.s-TimeTracking-TaskCloseDialog .s-HourRecording-HourRecordingsDialog {
  border: none;
}

.s-TimeTracking-TaskCloseDialog .s-HourRecording-HourRecordingsDialog .panel-footer {
  display: none;

}

.s-NotificationWidget .badge {
  right: -15px;
  line-height: 10px;
}

li.notification ul.dropdown-menu:not(.dropdown-quick-date).show {
  background: var(--bs-dropdown-bg);
  padding: 0;
  width: calc(100vw - 20px) !important;
  max-width: 400px !important;
  margin-right: -50px !important;
  margin-top: 13px;
  box-shadow: 0 0 0 3000px rgba(0, 0, 0, 0.5);
  max-height: calc(100vh - 100px) !important;
  height: max-content !important;
  min-height: 40px;
}

.s-NotificationWidget .notification-toolbox {
  height: 30px;
  font-size: 16px;
  padding-top: 7px;
}

li.notification-item.read.show-all {
  display: unset;
}

li.notification-item.read {
  display: none;
}

li.notification-gotostream {
  padding: 10px 20px;
  width: 100%;
  text-align: center;
  color: var(--bs-link-color);
}

div.s-ProcessPage div#DocumentTaskProcess,
div.s-ProcessPage div#MilestoneCheck,
div.s-ProcessPage div#Inbox {
  height: calc(100vh - 230px) !important;
}

.DocumentOverviewTabs .s-DocumentsOverviewGrid.s-Cemdo-DocumentManagement-DocumentsOverviewGrid.s-DocumentManagement-DocumentsOverviewGrid {
  height: 100%;
}

.explorer-container {
  z-index: unset !important;
}

.s-DocumentsGrid.s-Cemdo-DocumentManagement-DocumentsGrid.s-DocumentManagement-DocumentsGrid.s-DataGrid.has-tree-view {
  height: 100%;
}

.btn-group.view-switch label.btn i {
  font-size: 35px;
  line-height: 30px;
  float: left;
}

.btn-group.view-switch label.btn {
  border: none;
}

.dropdown.tool-button.actions-button.icon-tool-button.no-text {
  width: 44px;
}

.btn-group.view-switch label {
  border: none;
  font-size: 22px;
}

.btn-group.view-switch label i {
  padding: 1px 5px;
}

.btn-group.view-switch label input[type="radio"] {
  width: 18px;
  height: 18px;
  padding: 0;
  /* line-height: 13px; */
  /* margin-top: -22px; */
  outline: 0 !important;
  border: none;
}

.btn-group.view-switch label input[type="radio"]:focus,
.btn-group.view-switch label input[type="radio"]:checked {
  outline: 0 !important;
  border: none !important;
  box-shadow: none !important;
}


.s-Toolbar div.dropdown {
  border-radius: 0px !important;
  max-height: 34px;
}
/*
.tool-button,
.tool-button:first-child,
.tool-button:last-child {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
*/
/*
.dropdown.tool-button.actions-button.icon-tool-button.no-text i {
  font-size: 24px;
}
    */
.dropdown .btn.btn-sm.dropdown-toggle {
  padding: 0px 7px 3px 7px !important;
  font-size: var(--bs-body-font-size);
  background-color: white !important;
  border-color: var(--bs-border-color) !important;
}

.btn i.fa {
  font-size: var(--s-tool-icon-size);
}

div.s-DocumentManagement-TaskDocumentGrid div.breadcrumb-container {
  display: none;
}

.btn-group i.fa.fa-th-list,
.btn-group i.fa.fa-list {
  font-size: 30px;
  padding: 1px;
  float: left;
}

a.inplace-button.inplace-create.edit[disabled="disabled"] {
  pointer-events: none;
}

.field.Description img {
  max-width: 100%;
}

div.collapser {
  display: none;
}

/*
.nav-tabs {
  border-bottom: none;
}
  */
.tool-button.no-text:not(:has(i)) {
  display: none;
}

.sortable-drag span.slick-column-name {
  color: black !important;
}

body#s-SignUpPage {
  background-image: url(/Content/site/slides/cemdo1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
}

div#SignUpPanel {
  max-width: 1200px;
  width: 60vw;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0px 0px 20px 20px rgba(0, 0, 0, 0.3);
  padding: 20px 20px 0px 20px;
  margin-bottom: 50px;
}

.SignUpPanel-header {
  max-width: 75%;
  margin: auto;
}

body#s-SignUpPage p.text-center.my-desc {
  display: block;
  text-align: left !important;
  margin: auto;
  font-size: 1.2rem;
}

body#s-SignUpPage .s-Panel.p-4 {
  max-width: 75%;
  margin: auto;
  background: rgba(255, 255, 255, 0.4);
  margin-top: 10px;
  margin-bottom: 20px;
}

body#s-SignUpPage p.text-center.my-desc.desc1 {
  font-size: 1.25rem;
  font-weight: bold;
  padding: 20px;
  text-align: center !important;
}

/*  ########################
    SignUpPanel 
    ########################### 
*/

#SignUpPanel .px-field {
  text-align: center;
  padding-top: 20px;
}

#SignUpPanel button#Cemdo_Membership_SignUpPanel0_SubmitButton {
  width: 50% !important;
}

#SignUpPanel .SignUpPanel-logo {
  background: url(/Content/site/images/site-logo-blk.png) no-repeat 50% 50%;
  display: block;
  width: 100%;
  height: 60px;
  background-size: contain;
}

#SignUpPanel .SignUpPanel-links {
  display: grid;
  grid-template-columns: 33% 33% 33%;
  width: 75%;
  margin: auto;
  padding: 10px;
}

#SignUpPanel .SignUpPanel-links p {
  text-align: center;
  font-size: 1.1rem;
}

#SignUpPanel .SignUpPanel-header,
#SignUpPanel .desc4 {
  max-width: 75%;
  margin: auto;
}

#SignUpPanel p.text-center.my-desc.desc4 {
  margin-bottom: 30px;
  display: block;
  padding-bottom: 30px;
}

/*  ########################
    END SignUpPanel 
    ########################### 
*/
@media (max-width: 480px) {

  /*  
  ########################
    SignUpPanel 
    ########################### 
  */
  div#SignUpPanel {
    width: 100vw;
    box-shadow: none;
    padding: 10px;
    background: none;
  }

  body#s-SignUpPage {
    background-image: none;
  }

  .SignUpPanel-header {
    max-width: 85%;
    margin: auto;
  }

  #SignUpPanel .SignUpPanel-header,
  #SignUpPanel .desc4 {
    max-width: 85%;
    margin: auto;
  }

  body#s-SignUpPage .s-Panel.p-4 {
    max-width: 95%;
    margin: auto;
    background: rgba(255, 255, 255, 0.4);
    margin-top: 10px;
    margin-bottom: 20px;
  }

  #SignUpPanel .SignUpPanel-links {
    width: 95%;
    padding: 20px 0px 0px 0px;
  }

  #SignUpPanel .SignUpPanel-logo {
    background: url(/Content/site/images/site-logo-blk.png) no-repeat 50% 50%;
    background-size: contain;
  }

  /*  ########################
    END SignUpPanel 
    ########################### 
*/
}

div.s-Cemdo-DocumentManagement-DocumentsGrid.s-DocumentManagement-DocumentsGrid div.s-QuickSearchBar {
  display: none;
}

.page-breadcrumbs {
  display: block;
  width: 100%;
  border-bottom: 1px solid #c0c0c0;
  padding: 5px 0px;
  margin-bottom: 8px;
}

/* test oct */

.panel-titlebar {
  display: flex;
  align-items: center;
  background-color: #eff3f5;
  padding: 2px 6px 2px 8px;
  border-radius: 6px 6px 0px 0px;
  margin-bottom: 0;
  border-bottom: 4px solid #ffffff;
}

.s-Toolbar:not(.grid-toolbar),
.s-Toolbar:not(.grid-toolbar) .tool-group,
.s-Toolbar:not(.grid-toolbar) .tool-group-like {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background-color: #eff3f5;
  padding: 6px;
  border-radius: 0px 0px 6px 6px;
  margin-bottom: 5px;
}

.grid-toolbar.s-Serenity-Toolbar.s-Toolbar,
.gantt-toolbar,
.modal-dialog .s-Toolbar {
  background-color: #eff3f5;
  padding: 4px 6px;
  border-radius: 6px 6px 6px 6px;
  margin-bottom: 0px;
}

.s-Toolbar>* {
  padding: 0;
  margin-bottom: 0px;
  row-gap: 0px;
}

.select2-choice,
.select2-chosen {
  line-height: 2.25rem;
  height: 2.25rem;
}

.clear:not(.quick-filters-bar) {
  padding: 0;
}

.s-PropertyGrid .categories {
  margin-top: 7px;
  /* flex: 1 0 100%; */
  display: flex;
  height: auto;
  /* float: left; */
  width: 100%;
  flex: 1 1 auto;
  flex-direction: column;
}

.s-CommentsEditor .s-QuickSearchBar {
  margin: 4px;
}

label.show-weekend-btn,
label.show-fromto-btn {
  margin-bottom: 0;
}

label.show-weekend-btn input,
label.show-fromto-btn input {
  margin-top: 7px !important;
}

label.show-weekend-btn span,
label.show-fromto-btn span {
  padding: 10px 0px 5px 4px !important;
  /* line-height: 1; */
  margin: 0 0 0 4px !important;
  /* height: 100%; */
}


input.s-DateEditor {
  min-width: 100px !important;
}

.tab-pane .s-Toolbar {
  /* background-color: white; */
  border-radius: 4px;
}

.property-panes .tab-pane {
  padding-top: 2px;
}

.s-Toolbar div.dropdown {
  border-radius: 0px !important;
  max-height: 34px;
  margin: 2px 2px;
  background: none;
  padding: 0;
  border: none !important;
}

.dropdown .btn.btn-sm.dropdown-toggle {
  padding: 0px 7px 3px 7px !important;
  font-size: var(--bs-body-font-size);
  background-color: white !important;
}

.dropdown.tool-button.actions-button.icon-tool-button.no-text {
  margin: 2px 3px 0px 3px;
}

.s-Toolbar:not(.grid-toolbar) .tool-group,
.s-Toolbar:not(.grid-toolbar) .tool-group-like {
  flex-wrap: wrap;
  border-radius: var(--bs-border-radius);
  color: var(--bs-body-color);
  margin-right: var(--s-col-gap);
  row-gap: 0px;
  margin: 0px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background-color: #eff3f5;
  padding: 0px;
  border-radius: 0px 0px 6px 6px;
}

.tool-button {
  border: 1px solid var(--bs-border-color);
  padding: var(--s-input-padding-v) 0.75rem;
  min-width: 2.4em;
  margin-left: -1px;
  user-select: none;
  cursor: pointer;
  text-align: center;
  background-color: white;
  margin: 2px 2px 2px 2px;
  border-radius: 5px;
}

.s-DataGrid input.edit-number,
.s-DataGrid input.edit-string,
.s-DataGrid select.edit,
.s-DataGrid div.edit-select {
  width: 100%;
  background-color: white !important;
  padding: 4px;
}

select.lookup.readonly {
  color: #666;
}

.s-DocumentPreviewWidget .preview-button {
  /* background-color: green; */
  background: none;
  color: #666;
  border: none;
  font-size: 30px;
  padding: 0px;
  width: 30px;
  height: 30px;
}


.field .caption {
  padding-top: 5px;
  font-weight: bold;
  color: #6e6e83;
}

.s-Cemdo-Default-TaskLinkGrid .grid-title {
  display: none;
}

/*
.quick-filter-item.filter-item-hidden {
  display: none;
}
*/

.s-TimeTracking-TaskDialog .s-HourRecording-HourRecordingsGridEditor {
  height: auto;
  min-height: 100%;
}

.s-TaskDocumentGrid .tool-button.add-button.icon-tool-button,
.s-DocumentsGrid .tool-button.add-button.icon-tool-button {
  display: none;
}

.s-DialogContent,
.panel-body,
.s-Form,
form,
.fieldset,
.ui-tabs-panel,
.s-DataGrid,
.property-panes,
.tab-content,
.tab-pane,
.tab-content>.tab-pane.active,
.s-PropertyGrid {
  height: 100%;
}

.s-TaskDialog .category {
  height: 100%;
  overflow: auto;
  /* display: block; */
  height: auto;
  flex-direction: row;
  flex: 1 1 auto;
}

.field.HourRecordings {
  height: auto;
  flex: 0 0 auto;
  width: 100%;
  min-height: 100%;
}

.slick-header-menu .filter a.s-EditLink,
.slick-header-menu .filter label {
  line-height: 26px;
}

.s-DocumentPreviewWidget .mainDiv span.outer div {
  overflow: auto;
}

.modal.s-DocumentPreviewDialog {
  /* z-index: 100000; */
  --bs-modal-margin: 0;
  margin-top: 48px;
  overflow: hidden;
  --bs-modal-width: 100%;
  box-shadow: 0px 0px 9px 0px #00000080;
}

.kanban-task-name a.kanban-task-link {
  white-space: break-spaces;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  display: inline-block;
}

.s-TaskCloseDialog .field.Comment label {
  display: none;
}

.tool-button.apply-changes-button.icon-tool-button.no-text i.fa-clipboard-check:before {
  content: "\f0c7" !important;
}

.field.Description .simple-mde-container {
  width: 100%;
}

button.boxy-share {
  display: none;
}

.cdx-attaches--with-file .cdx-attaches__title {
  line-height: 20px !important;
}

.s-DocumentPreviewDialog .modal-content .modal-body .s-DocumentPreviewWidget input.s-StringEditor {
  border-color: white;
}

iframe.s-Cemdo-MailBodyViewer {
  border-color: white !important;
}

p.MsoNormal {
  font-family: Calibri, Arial, helvetica;
}



.s-GanttChart {
  background: white;
}

.gantt-chart {
  position: relative;
  border: 1px solid #eee;
  overflow: hidden;
  height: 100%;
}

.gantt-header-panes,
.gantt-data-panes {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.gantt-left,
.gantt-right {
  flex: 0 0 auto;
}

.gantt-center {
  flex: 1 1 auto;
}

.gantt-chart table {
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.gantt-center th.scroll-pad {
  padding: 0;
  border: none;
}

.gantt-header.gantt-center table {
  table-layout: auto;
}

.gantt-header {
  border-bottom: 1px solid #999;
  overflow: hidden;
  height: 40px;
}

.gantt-header th {
  height: 40px;
}

.gantt-header.gantt-left {
  border-right: 2px solid #999;
}

.gantt-header.gantt-right {
  border-left: 2px solid #999;
}

.gantt-toolbar button {
  border-width: 1px;
}

.gantt-data.gantt-left {
  overflow: hidden;
  border-right: 2px solid #999;
}

.gantt-data.gantt-right {
  overflow: hidden;
  border-left: 2px solid #999;
}

.gantt-data.gantt-center {
  overflow: scroll;
}

.gantt-chart th > div {
  white-space: nowrap;
  overflow: hidden;
}

.gantt-chart td > div {
  height: 19px;
  white-space: nowrap;
  overflow: hidden;
}

.gantt-left th,
.gantt-right th {
  padding: 4px 3px 4px 4px;
  color: #000;
  border: 1px solid #eee;
  border-left: 0;
  border-top: 0;
}

.gantt-left td,
.gantt-left td {
  padding: 4px 3px 4px 4px;
  border: 1px solid #eee;
  border-left: 0;
  border-top: 0;
}

.gantt-pane td input:not([type=checkbox]) {
  padding-top: 0;
  padding-bottom: 0;
  border: none;
  border-radius: 0;
  width: 100%;
  box-shadow: inset 0 0 1px 1px rgb(0 0 0 / 7%);
}

.gantt-pane td input:not([type=checkbox]):focus,
.gantt-pane td input:not([type=checkbox]):focus-visible {
  box-shadow: inset 0 0 1px 1px rgb(0 0 0 / 25%);
  outline: none;
}

.gantt-data td {
  height: 28px;
}

.gantt-center tr.month-year th {
  width: auto;
  padding: 0 0;
  height: 19px;
  border-bottom: 1px solid #eee;
}

.gantt-center tr.month-year th > div {
  padding: 0 0;
  height: 18px;
  width: 100%;
  text-align: left;
}

.gantt-center tr.month-year span {
  display: inline-block;
  border-right: 1px solid #eee;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 18px;
  line-height: 18px;
  font-size: 11px;
  color: steelblue !important;
}

.gantt-center tr.weeks th {
  width: auto;
  padding: 0 0;
  height: 20px;
  color: #000;
}

.gantt-center tr.weeks th > div {
  padding: 0 0;
  height: 20px;
  width: 100%;
  text-align: left;
}

.gantt-center tr.weeks span {
  display: inline-block;
  width: 27px;
  text-align: center;
  font-size: 9px;
  line-height: 20px;
  height: 20px;
  overflow: hidden;
  border: 1px solid #eee;
  border-left: 0;
  border-top: 0;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
}

.gantt-center tr.days span {
  display: inline-block;
  width: 50px;
  text-align: center;
  font-size: 9px;
  line-height: 20px;
  height: 20px;
  overflow: hidden;
  border: 1px solid #eee;
  border-left: 0;
  border-top: 0;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
}

.gantt-center tr.month-year th.h-scroll-pad,
.gantt-center tr.weeks th.h-scroll-pad {
  width: 18px;
  padding: 0;
  border: none;
}

.gantt-center tr.month-year th.h-scroll-pad > div,
.gantt-center tr.weeks th.h-scroll-pad > div {
  width: 300px;
}

.gantt-center th sup {
  color: palevioletred;
  font-style: italic;
}

.gantt-center table {
  width: 100%;
}

.gantt-center td {
  padding: 0 0;
  border-bottom: 1px solid #eee;
  width: 27px;
}

.gantt-center td > div {
  height: 27px;
  width: 100%;
  position: relative;
}

.gantt-center td > div > span {
  display: inline-block;
  border-right: 1px solid #eee;
  overflow: hidden;
  height: 100%;
  width: 27px;
}

.gantt-chart .bar {
  border: 1px solid #000;
  height: 11px;
  position: absolute;
  background-repeat: repeat-x;
}

.gantt-chart tr.scroll-pad td {
  border: none;
  background-color: transparent;
}

.gantt-chart tr.scroll-pad div {
  height: 8px;
}

.gantt-header.gantt-center table {
  width: auto;
  table-layout: fixed;
}

.gantt-data.gantt-center {
  position: relative;
  user-select: none;
}

.gantt-bar {
  position: absolute;
  height: 20px;
  border-radius: 4px;
  background-color: dodgerblue !important;
  border: 1px solid #666;
  line-height: 17px;
  color: #fff;
  text-align: center;
  cursor: pointer;
}

.gantt-bar.beyond-left {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-left: none;
}

.gantt-bar.beyond-right {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-right: none;
}

.gantt-bar-text {
  position: absolute;
  color: #000;
  white-space: nowrap;
  width: auto;
}

.gantt-milestone {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: orangered !important;
  border: 1px solid #666;
  transform: rotate(45deg);
  transform-origin: center;
  cursor: pointer;
}

.gantt-chart td.bars {
  font-size: 12px;
  line-height: 18px;
  padding: 0;
}

.gantt-chart td.bars > div {
  position: relative;
  overflow: visible;
  height: 100%;
}

.s-Cemdo-ResourceOperationGantt .s-GanttChart .Operation {
    width: 180px;
    max-width: 180px;
}

.s-Cemdo-ResourceOperationGantt .s-GanttChart .StartFull {
    width: 125px;
    max-width: 125px;
}

.s-Cemdo-ResourceOperationGantt .s-GanttChart .EndFull {
    width: 125px;
    max-width: 125px;
}


.s-Cemdo-ResourceGantt .s-GanttChart .Resource {
  width: 180px;
}

.s-Cemdo-ResourceGantt .s-GanttChart .StartFull {
  width: 125px;
}

.s-Cemdo-ResourceGantt .s-GanttChart .EndFull {
  width: 125px;
}



@media (max-width: 768px) {
  .gantt-pane.gantt-data.gantt-left,
  .gantt-pane.gantt-data.gantt-right {
    overflow-y: auto;
  }
}




.s-KanbanWidget .kanban-board {
    flex: 1 1 100%;
    flex-direction: column;
    padding: 0;
}

.s-KanbanWidget .kanban-header, .s-KanbanWidget .kanban-row {
    display: flex;
}

.s-KanbanWidget .kanban-header {
    flex-grow: 1;
    padding: 0;
    margin-top:5px;
    position: sticky;
    top: 40px;
    z-index: 2;
}

.s-KanbanWidget .kanban-cell:first-child, .s-KanbanWidget .kanban-left-title {
    margin-left: 0 !important;
}

.s-KanbanWidget .kanban-cell:last-child {
    margin-right: 0 !important;
}

.s-KanbanWidget .kanban-header .kanban-cell {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    margin-bottom: 0;
}

.s-KanbanWidget .kanban-cell, .s-KanbanWidget .kanban-left-title {
    flex: 1 1 100%;
    padding: 8px;
    margin: 8px;
    min-width: 50px;
}

.s-KanbanWidget .kanban-row .kanban-cell {
    background-color: #f7f7f7;
    margin-top: 0;
    box-shadow: inset 0 0 1px #000;
}

.s-KanbanWidget .kanban-row {
    border-bottom: 1px solid #f7f7f7;
    margin-bottom: 10px;
}

.s-KanbanWidget .btn .btn-medium {
    height: 28px;
    padding-top: 3px;
    padding-bottom: 3px;
}

.s-KanbanWidget.s-ApprovalBoard .kanban-task {
    max-width: 315px;
    flex: 1 1 100%;
    margin-right: 5px;
    margin-left: 5px;
    cursor: default;
}

.s-KanbanWidget .kanban-row .btn.load-more {
    width: 100%;
    height: 20px;
    padding: 0;
    font-size: 12px;
}

.s-KanbanWidget.s-ApprovalBoard .kanban-cell {
    display: flex;
    flex: 1 1 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-left: 8px;
    padding-right: 8px;
}

.s-KanbanWidget.s-ApprovalBoard .kanban-header {
    display: none;
}

.s-KanbanWidget .kanban-row .kanban-row-description {
    font-weight: 400;
    font-size: 11px;
    font-style: italic;
}

.s-KanbanWidget .kanban-row .kanban-row-link {
    font-weight: 400;
    font-size: 11px;
    font-style: italic;
    text-decoration: underline;
    color: blue;
    display: block;
    cursor: pointer;
}

.s-DashboardFilter .refresh-button {
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    border-radius: 3px;
    color: #1f7ece;
    font-size: 20px;
    text-align: center;
}

.s-Dashboard .quick-filter-item {
    align-self: end;
}

.s-KanbanWidget .completed-progress,
.s-ProjectBoardWidget .completed-progress {
    position: inherit;
    width: 40px;
    height: 40px;
    float: right;
    margin: 0;
}

.s-KanbanWidget .completed-progress > .round,
.s-ProjectBoardWidget .completed-progress > .round {
    transform: rotate(-90deg);
    transition: all 1s ease-in-out;
    fill: none;
    stroke: green;
    stroke-width: 8;
    stroke-linecap: round;
}

.s-KanbanWidget .completed-progress > .text,
.s-ProjectBoardWidget .completed-progress > .text {
    position: absolute;
    font-size: 11px;
    width: 100%;
    height: 100%;
    margin: auto;
    text-align: center;
    top: 12px;
}

.s-KanbanWidget .kanban-task > .badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background: #00b8ff;
    background-clip: padding-box;
    border-radius: 50%;
    padding: 3px 0 0 0;
    display: none;
}

.s-KanbanWidget .kanban-task > .badge.show {
    display: block;
}
.kanban-task.reminder-overdue {
    border-left: 3px solid #f58514;
}




.ChatTab .nav-tabs li.active a {
    border-top: 3px solid #f3565d;
    padding: 4px 6px;
}
.ChatTab .nav-tabs li a {
    border: 1px solid #ddd;
    border-top: 3px solid #B1AFDB;
    padding: 4px 6px;
}
.direct-chat-reply-in-chat {
    border-color: lightcoral !important;
}
.s-Comments-Chat {
    width: 100%;
    max-width: 768px;
    margin: auto;
}
.s-Comments-Chat .nav {
    padding-left: 10px;
}
.s-Comments-Chat .comments-list ul {
    padding: 0;
    min-height: 110px;
    overflow-y: auto;
    list-style: none;
}
.s-Comments-Chat .comments-list li {
    margin: 10px;
    border-radius: 4px;
    border: 1px solid #C3C2C2;
    background-color: #bae6ff;
    padding: 8px;
    position: relative;
    list-style: none;
}
.s-Comments-Chat .comments-list li.active {
    box-shadow: 0 0 5px #276cfa;
}
.s-Comments-Chat .notes-list ul {
    padding: 0;
    min-height: 110px;
    overflow-y: auto;
    list-style: none;
}
.s-Comments-Chat .notes-list li {
    margin: 10px;
    border-radius: 4px;
    border: 1px solid #C3C2C2;
    background-color: #F5E7DC;
    padding: 8px;
    position: relative;
    list-style: none;
}
.s-Comments-Chat .notes-list li.active {
    box-shadow: 0 0 5px #276cfa;
}
.s-Comments-Chat .note-text {
    padding-right: 24px;
    display: block;
    white-space: pre-wrap;
}
.s-Comments-Chat .note-reply {
    display: block;
    position: absolute;
    right: 6px;
    padding: 0 4px;
    font-size: 16px;
    top: 6px;
    opacity: 0.9;
    cursor: pointer;
}
.s-Comments-Chat .custom-menu-icon {
    display: block;
    position: absolute;
    right: 54px;
    padding: 0 4px;
    font-size: 16px;
    top: 6px;
    opacity: 0.9;
    cursor: pointer;
}
.s-Comments-Chat .external-link {
    padding: 0 4px;
    font-size: 14px;
    opacity: 0.9;
    cursor: pointer;
}
.s-Comments-Chat .item-link {
    opacity: 0.9;
    cursor: pointer;
}
.s-Comments-Chat .note-reply:hover .external-link:hover .item-link:hover .custom-menu-icon:hover {
    opacity: 1;
}
.s-Comments-Chat .note-delete {
    background-image: url('../Content/serenity/images/delete2.png');
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
    right: 6px;
    top: 6px;
    opacity: 0.4;
}
.s-Comments-Chat .note-delete:hover {
    opacity: 1;
}
.s-Comments-Chat .note-date {
    margin-top: 6px;
    display: block;
    text-align: right;
    color: #2a4084;
    font-style: italic;
}
.s-Comments-Chat .note-participant {
    margin-top: 6px;
    display: block;
    text-align: right;
    color: lightcoral;
}
.s-Comments-Chat .tasks-list .task-link {
    opacity: 0.9;
    cursor: pointer;
    font-weight: bold;
    color: #30a6ea;
}
.s-Comments-Chat .tasks-list .task-date {
    color: #666;
    float: left;
    position: absolute;
    bottom: 5px;
    left: 10px;
}
.s-Comments-Chat .tasks-list .task-name {
    font-weight: 600;
    margin-bottom: 6px;
}
.s-Comments-Chat .tasks-list .task-name a {
    color: #000;
    cursor: pointer;
}
.s-Comments-Chat .tasks-list .task-name a:hover {
    color: #5eb9ee;
    cursor: pointer;
}
.s-Comments-Chat .tasks-list .task-no {
    font-style: italic;
    font-size: 12px;
    float: right;
    text-align: right;
    margin-bottom: 6px;
}
.s-Comments-Chat .tasks-list .task-no a {
    color: royalblue;
    cursor: pointer;
    font-weight: bold;
}
.s-Comments-Chat .tasks-list .task-no a:hover {
    color: lightskyblue;
    cursor: pointer;
    font-weight: bold;
}
.s-Comments-Chat .tasks-list .task-no i {
    color: lightskyblue;
}
.s-Comments-Chat .tasks-list .task-detail {
    margin-bottom: 24px;
    max-height: 146px;
    overflow-y: hidden;
    overflow-x: hidden;
}
.s-Comments-Chat .tasks-list .task-user {
    text-align: right;
    color: #666;
    float: right;
    position: absolute;
    bottom: 9px;
    right: 10px;
}
.s-Comments-Chat .tasks-list .task-user i {
    color: mediumpurple;
    margin-top: 10px;
}
.s-Comments-Chat .tasks-list ul {
    padding: 0;
    min-height: 110px;
    overflow-y: auto;
    list-style: none;
}
.s-Comments-Chat .tasks-list li {
    margin: 10px;
    min-height: 80px;
    border-radius: 4px;
    border: 1px solid #C3C2C2;
    background-color: #bae6ff;
    padding: 8px;
    position: relative;
    list-style: none;
}
.s-Comments-Chat .tasks-list li.active {
    box-shadow: 0 0 5px #276cfa;
}
.s-Comments-Chat .s-Toolbar {
    background-color: #eee;
    padding: 4px;
}



.s-PagesContentPanel .page-content-title {
  color: var(--s-card-title);
  margin-bottom: 50px;
}

.s-PagesContentPanel .page-content-inner {
  width: auto;
  word-wrap: break-word;
  font-size: 100%;
  /*max-width: 18cm;*/
}

.ce-block__content, .ce-toolbar__content {
  max-width: calc(100% - 0px) !important;
  margin: 0;
}

.cdx-block {
  max-width: 100% !important;
}

.codex-editor {
  background-color: white;
  border: 1px solid #d5dce0;
  border-radius: 6px;
  padding: 20px 10px 20px 80px;
}
.s-page-table {
  min-width: 100%;
  overflow-y: auto;
}
.s-page-table table{
  min-width: 700px;
}
.s-page-table td {
  background: #ffffff;
}

.s-page-table th {
  background: #444;
  color: #fff;
}

.s-PagesContentPanel .page-content-inner img {
  max-width: 18cm;
  width: 100%;
}

.s-ContentEditor .tc-wrap,
.s-ContentEditor .ce-toolbar--opened {
  z-index: 1;
}
.codex-editor a.toc-paragraph {
  pointer-events: none;
}
.s-page-table th {
  background: #818181;
  color: #fff;
}

.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  opacity:1;
}
span.page-breadcrumb-pagetitle {
  font-size: 1.3rem;
  color: var(--s-card-title);
}

@media (max-width: 760px) {
  body.full-width-form section.content {
    padding: 3px;
  }

  .s-Pages-PagesDialog .field {
    padding: 5px 0px;
  }
  .s-PagesContentPanel .page-content-inner {
    font-size: 120%;
  }

}

.s-PagesContentPanel .page-content-inner h1 {
  font-size: 150% !important;
}

.s-PagesContentPanel .page-content-inner h2 {
  font-size: 140% !important;
}

.s-PagesContentPanel .page-content-inner h3 {
  font-size: 130% !important;
}
.s-PagesContentPanel .page-content-inner h4 {
  font-size: 120% !important;
}
.s-PagesContentPanel .page-content-inner h5 {
  font-size: 110% !important;
}
ul.list-unstyled input, ul.list-unstyled input[type=checkbox]:disabled, ul.list-unstyled label {
  float: left;
  margin-right: 10px;
  /* width: auto; */
}
ul.list-unstyled li {
  float: none;
  break-after: left;
  display: inline-block;
  width: 100%;
}
.form-check-input:disabled~.form-check-label {
  width: calc(100% - 50px);
}
.cdx-attaches--with-file {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid var(--color-line);
    border-radius: 7px;
    background: var(--color-bg);
    margin: 15px 0px;
}
.cdx-attaches__title.valid {
    pointer-events: none;
}
@media (min-width: 651px) {
    .codex-editor--narrow .ce-toolbar__actions {
                 right: calc(100% - 60px);
    }
}
.page-content.print-pdf-page svg ,
div.s-Pages-PagesDialog .page-render-body.print-pdf-page svg {
    display: none;
}
.page-content.print-pdf-page ,
div.s-Pages-PagesDialog .page-render-body.print-pdf-page {
    width: 180mm;
    overflow: hidden;
    display: block;
}

div.s-Pages-PagesDialog .field.SelfPage {
    display: block;
    font-size: 90%;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--s-column-header-border);
    margin-bottom: 20px;
}

div.s-Pages-PagesDialog .page-render-body {
    width: 100%;
}
.tc-add-row {
    margin-top: 1px;
    margin-left: -30px;
}
.s-Cemdo-Pages-PagesDialog .panel-titlebar-close {
    display: none;
}
.s-Cemdo-Pages-PagesDialog .panel-titlebar {
    height: 48px;
}
.s-Pages-PagesDialog .field .caption {
    flex: 0 0 100%;
    width: auto;
    display: flex;
}
.s-Pages-PagesDialog .field {
    flex-wrap: wrap;
}





/* Boxy Lightbox Styles */
#boxy {
    position: relative;
    padding: 20px 40px;
    width: 100%;
    overflow: hidden;
}

#boxy .boxy-grid-container {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

#boxy .boxy-grid-container::-webkit-scrollbar {
    display: none;
}

#boxy .boxy-grid-container img {
    flex: 0 0 200px;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#boxy .boxy-grid-container img:hover {
    transform: scale(1.05);
}

#boxy .boxy-container-prev,
#boxy .boxy-container-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(114, 52, 173, 0.8);
    color: #FFFFFF;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 2;
    transition: all 0.3s ease;
}

#boxy .boxy-container-prev:hover,
#boxy .boxy-container-next:hover {
    background: #3F3F3F;
    transform: translateY(-50%) scale(1.1);
}

#boxy .boxy-container-prev:disabled,
#boxy .boxy-container-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#boxy .boxy-container-prev {
    left: 10px;
}

#boxy .boxy-container-next {
    right: 10px;
}

.boxy-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.boxy-overlay.active {
    display: flex;
    opacity: 1;
}

.boxy-lightbox {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    background-color: #3F3F3F;
    border-radius: 8px;
    overflow: hidden;
}

.boxy-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.boxy-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.boxy-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}

.boxy-close,
.boxy-share,
.boxy-prev,
.boxy-next {
    background: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.boxy-close:hover,
.boxy-share:hover,
.boxy-prev:hover,
.boxy-next:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #7234AD;
}

.boxy-prev,
.boxy-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.boxy-prev {
    left: 20px;
}

.boxy-next {
    right: 20px;
}

.boxy-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #3F3F3F;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 20001;
    animation: boxyFadeInUp 0.3s ease;
}

.boxy-toast-close {
    background: none;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    padding: 0 5px;
}

.boxy-toast-close:hover {
    color: #7234AD;
}

.boxy-container-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.boxy-container-nav button {
    background: #3F3F3F;
    color: #FFFFFF;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s;
}

.boxy-container-nav button:hover {
    background: #595959;
}

.boxy-container-nav button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.boxy-pagination {
    color: #FFFFFF;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    min-width: 60px;
    text-align: center;
}

.boxy-description {
    color: #FFFFFF;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    margin: 10px 0;
    border-radius: 4px;
}

@keyframes boxyFadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@media (max-width: 767px) {
    img.boxy-image {
        max-width: unset;
    }
    .boxy-lightbox {
        max-width: unset;
        overflow: scroll;
    }
    .boxy-image-container {
        align-items: center;
        justify-content: left;
    }
}



.explorer-container{position:absolute;overflow-y:auto;background:#fff;left:0;top:0;right:0;bottom:0;z-index:101}.explorer-container .explorer-view{height:100%;width:100%;display:flex;flex-direction:row}.explorer-container .explorer-tree{flex:0 0 250px;max-width:250px;overflow-y:hidden;height:100%}.explorer-container .explorer-tree ul{margin-left:0;padding-left:0}.explorer-container .explorer-tree li ul{padding-left:20px;display:none}.explorer-container .explorer-tree li.expanded>ul{display:block}.explorer-container .explorer-tree li>a{padding:4px;display:block;white-space:nowrap;cursor:pointer;color:#005fa2}.explorer-container .explorer-tree li>a.active{background:#9aebff}.explorer-container .explorer-tree i{margin-right:4px}.explorer-container .explorer-tree i.folder-toggle,.explorer-container .explorer-tree i.folder-toggle-placeholder{width:14px;display:inline-block;font-size:16px;font-weight:bold;line-height:14px;cursor:pointer;opacity:.6}.explorer-container .explorer-tree i.folder-toggle-placeholder{cursor:default}.explorer-container .explorer-tree .expanded>a>.folder-toggle{color:#000;opacity:1}.explorer-container .explorer-tree i.folder-toggle:hover{opacity:1;color:#167ae5}.explorer-container .explorer-tree li{list-style:none}.explorer-container .explorer-items{flex:1 1 auto;display:flex;flex-direction:row;flex-wrap:wrap;padding:10px;align-content:flex-start}.explorer-container .explorer-item{padding:8px;background-color:#fff;box-shadow:0 0 2px rgba(0,0,0,.2);height:195px;overflow:hidden;margin:6px;cursor:move;position:relative}.explorer-container .explorer-item>div>.s-PopupMenuButton{cursor:pointer;position:absolute;top:2px;right:4px;font-size:20px}.explorer-container .explorer-item>div>.s-PopupMenuButton i{color:#ccc}.explorer-container .explorer-file-icon{text-align:center;margin:12px 0;cursor:pointer}.explorer-container .explorer-file-icon i{font-size:52px;color:#333}.explorer-container .explorer-file-thumb{display:flex;width:72px;height:52px;margin-left:auto;margin-right:auto;align-items:center;justify-content:center}.explorer-container .explorer-file-thumb img{max-width:96px;max-height:52px}.explorer-container .explorer-item-check{position:absolute;cursor:pointer;top:3px;left:5px;font-size:20px}.explorer-container .explorer-item-preview{cursor:pointer;position:absolute;top:4px;right:26px;font-size:16px}.explorer-container .explorer-item-check i{color:#ccc}.explorer-container .explorer-item.is-checked{box-shadow:0 0 2px #007cff}.explorer-container .explorer-item.is-checked .explorer-item-check i{color:#396ac3}.explorer-container i{color:#333}.explorer-container i.fa-folder{color:#fbc709}.explorer-container i.fa-folder.is-template{color:#fd6a02}.explorer-container i.fa-file-excel-o{color:#35d080}.explorer-container i.fa-file-word-o{color:#3580d0}.explorer-container i.fa-file-pdf-o{color:#800000}.explorer-container i.fa-file-image-o{color:rebeccapurple}.explorer-container i.fa-file-text-o{color:#000080}.explorer-container .explorer-file-name{text-align:center;padding:4px 2px;white-space:normal;word-break:break-all;text-overflow:ellipsis;height:4.5em;overflow:hidden;-webkit-line-clamp:3}.explorer-container .explorer-file-type,.explorer-container .explorer-file-date{color:#777;text-align:center;padding:4px 2px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;font-size:11px;color:#666}.explorer-container .explorer-file-type{border-top:1px solid #eee}.explorer-container .explorer-item{width:calc(100% - 12px)}.explorer-item.current-dropzone,.explorer-tree-item>a.current-dropzone{background-color:rgba(255,216,128,.3)}@media(min-width:968px){.explorer-container .explorer-item{width:calc(50% - 12px)}}@media(min-width:1200px){.explorer-container .explorer-item{width:calc(25% - 12px)}}@media(min-width:1540px){.explorer-container .explorer-item{width:calc(16.66% - 12px)}}@media(min-width:1800px){.explorer-container .explorer-item{width:calc(12.5% - 12px)}}@media(max-width:767px){.explorer-view{flex-wrap:wrap}}.explorer-tree-container{right:unset;border-right:1px solid #eee;border-left:1px solid #eee;width:251px;display:none}.explorer-items-container{display:none}.explorer-view-mode .explorer-items-container{display:block}.explorer-view-mode .slick-pane,.explorer-view-mode .slick-footerrow,.explorer-view-mode .slick-header,.explorer-view-mode .slick-headerrow,.explorer-view-mode .slick-viewport{display:none}.has-tree-view .explorer-items-container,.has-tree-view .slick-pane,.has-tree-view .slick-header,.has-tree-view .slick-headerrow,.has-tree-view .slick-viewport{left:260px;width:calc(100% - 260px)!important}.has-tree-view.explorer-view-mode .slick-pane,.has-tree-view.explorer-view-mode .slick-footerrow,.has-tree-view.explorer-view-mode .slick-header,.has-tree-view.explorer-view-mode .slick-headerrow,.has-tree-view.explorer-view-mode .slick-viewport{display:none!important}.has-tree-view .explorer-tree-container{display:block}.s-DocumentsGrid .slick-row.even{background:#fff}.s-DocumentsGrid .slick-cell{border-bottom-color:transparent}@media(max-width:767px){.s-DocumentsGrid.has-tree-view{display:block!important;overflow-y:auto!important}.has-tree-view .grid-container{overflow:unset!important}.has-tree-view.explorer-view-mode .explorer-items-container{width:100%!important;display:block!important;position:initial}.has-tree-view.explorer-view-mode .slick-pane,.has-tree-view.explorer-view-mode .slick-footerrow,.has-tree-view.explorer-view-mode .slick-header,.has-tree-view.explorer-view-mode .slick-headerrow,.has-tree-view.explorer-view-mode .slick-viewport{display:none!important}.has-tree-view .slick-pane-header,.has-tree-view .slick-header,.has-tree-view .slick-footerrow,.has-tree-view .slick-headerrow{position:relative!important;width:100%!important;top:unset!important;left:0;right:0}.has-tree-view .slick-pane-top,.has-tree-view .slick-viewport{position:relative!important;height:auto!important;width:100%!important;top:auto;left:0;right:0}.has-tree-view .slick-viewport{height:auto!important}.has-tree-view .explorer-tree-container{width:100%!important;display:block!important;position:initial;height:auto!important}.has-tree-view .explorer-tree{max-width:100%!important}}a.dropdown-item.disabled{cursor:default;border-color:#ccc;opacity:.3}.drop-zone-area{width:100%;height:100%;display:block;background-color:transparent;z-index:99;position:absolute;pointer-events:none}.drop-zone-target,.explorer-container .explorer-item.drop-zone-target{background-color:rgb(246,177,176,.3)}.markSlickRow{border:#00008b solid 1px}input:focus,input:focus-visible,.no-focus-visible{box-shadow:none}



.s-QReports-GridDialog .CodeMirror-fullscreen,.s-QReports-GridDialog .editor-preview-side{top:125px;bottom:35px}.s-QReports-GridDialog .editor-toolbar.fullscreen{top:75px}.s-QReports-GridDialog .s-Form .separator{float:none}.s-QReports-ViewDialog .CodeMirror{height:150px;width:100%;padding:0}.s-QReports-DataTransferDialog .CodeMirror{height:150px;width:100%;padding:0}.s-QReports-ViewColumnsEditor .grid-container{min-height:400px}.s-QReports-GridColumnsEditor .grid-container{min-height:360px}.s-QReportsGridTestDialog>.size{width:1040px}.s-QReportsGridTestDialog .ui-dialog-content{padding:8px}.s-QReportsGridTestDialog .grid-container{height:550px}.qreports-custom-summaries{padding:4px;background:#ccc;font-size:13px;border:1px solid #999}.qreports-custom-summaries .row>div{text-align:right}.qreports-has-keydate,.qreports-has-daterange{min-height:4em}.qreports-keydate,.qreports-daterange{float:right;margin-left:auto}.qreports-keydate .quick-filter-label,.qreports-daterange .quick-filter-label{display:none}.qreports-daterange-prev{border-radius:4px 0 0 4px;margin-left:4px}.qreports-daterange-next{border-radius:0 4px 4px 0;margin-right:4px}.qreports-daterange-prev,.qreports-daterange-next{font-size:24px;display:inline-flex;vertical-align:-3px;border:1px solid var(--s-tool-border);padding:3px}.s-QReports-CategoryDialog .grid-container{height:400px}.s-ViewColumnPickerDialog .grid-container{height:400px}.s-ParsedColumnPickDialog>.size{width:600px}.s-ParsedColumnPickDialog .grid-container{height:400px}.slick-group-indent{background:#e7e7e7;border-top-color:transparent;border-bottom-color:transparent;border-right:1px solid #ccc}.slick-group-totals .slick-group-indent,.slick-group .slick-group-indent{border-right:0}.s-QReportsGrid .slick-group-totals .slick-cell,.s-QReportsGrid .slick-group-totals.ui-widget-content .slick-cell{background-color:#e7e7e7;border-bottom:1px solid #c7c7c7;border-top:1px solid #f7f7f7}.s-QReportsGrid .slick-group-totals,.s-QReportsGrid .slick-group-totals.ui-widget-content{background-color:#e7e7e7;border-bottom:1px solid #c7c7c7;border-top:1px solid #f7f7f7}.slick-loading-anim{display:inline-block;position:relative;width:80px;height:80px}.slick-loading-anim div{display:inline-block;position:absolute;left:8px;width:16px;background:#1e90ff;animation:slick-loading-anim 1.2s cubic-bezier(0,.5,.5,1) infinite}.slick-loading-anim div:nth-child(1){left:8px;animation-delay:-.24s}.slick-loading-anim div:nth-child(2){left:32px;animation-delay:-.12s}.slick-loading-anim div:nth-child(3){left:56px;animation-delay:0}.slick-loading-indicator{display:inline-block;position:absolute;opacity:.5;z-index:99999}@keyframes slick-loading-anim{0%{top:8px;height:64px}50%,100%{top:24px;height:32px}}.s-DataGrid input.edit-number,.s-DataGrid input.edit-string,.s-DataGrid select.edit,.s-DataGrid div.edit-select{width:100%}.s-DataGrid input.edit-number{text-align:right}.s-DataGrid input.edit-date{width:calc(74%)}.s-DataGrid .ui-datepicker-trigger{display:inline-block;float:none;zoom:.8;margin:-3px 0 0 1px}.s-DataGrid .progress-formatter,.s-DataGrid .progress-formatter>.progress-bar{border-radius:0;height:30px}.s-DataGrid .bg-success .progress-formatter{background-color:#bdffe8}.s-DataGrid .bg-info .progress-formatter{background-color:#c6f5ff}.s-DataGrid .bg-warning .progress-formatter{background-color:#ffeebc}.s-DataGrid .bg-danger .progress-formatter{background-color:#ffc1c8}.s-DataGrid .bg-primary .progress-formatter{background-color:#b1d1ff}.s-DataGrid .progress-success .progress-formatter .progress-bar{background-color:var(--bs-success)}.s-DataGrid .progress-info .progress-formatter .progress-bar{background-color:var(--bs-info)}.s-DataGrid .progress-warning .progress-formatter .progress-bar{background-color:var(--bs-warning)}.s-DataGrid .progress-danger .progress-formatter .progress-bar{background-color:var(--bs-danger)}.s-DataGrid .progress-primary .progress-formatter .progress-bar{background-color:var(--bs-primary)}.s-DataGrid .color-format.bg-danger{background-color:#ffc1c8!important}.s-DataGrid .color-format.bg-success{background-color:#bdffe8!important}.s-DataGrid .color-format.bg-warning{background-color:#ffeebc!important}.s-DataGrid .color-format.bg-primary{background-color:#b1d1ff!important}.s-DataGrid .color-format.bg-info{background-color:#c6f5ff!important}.s-DataGrid .color-format{overflow:hidden}.s-DataGrid .color-format>a{text-decoration:underline}.s-DataGrid .color-format.text-danger>a{color:var(--bs-danger)!important}.s-DataGrid .color-format.text-success>a{color:var(--bs-success)!important}.s-DataGrid .color-format.text-warning>a{color:var(--bs-warning)!important}.s-DataGrid .color-format.text-primary>a{color:var(--bs-primary)!important}.s-DataGrid .color-format.text-info>a{color:var(--bs-info)!important}.s-DataGrid .color-format.text-danger>a:hover{color:#b02a37!important}.s-DataGrid .color-format.text-success>a:hover{color:#146c43!important}.s-DataGrid .color-format.text-warning>a:hover{color:#ffcd39!important}.s-DataGrid .color-format.text-primary>a:hover{color:#0a58ca!important}.s-DataGrid .color-format.text-info>a:hover{color:#3dd5f3!important}#QReports-CategoryViewer .s-QReportsGrid{background:#fff;border:1px solid #ddd;border-top:0}#QReports-CategoryViewer .s-QReportsGrid .s-Toolbar{padding:4px 0 0 4px}#QReports-GridViewer{background:#fff;border:1px solid #ddd}#QReports-GridViewer .grid-title{padding:6px}#QReports-GridViewer .s-Toolbar{padding:0 0 0 6px}.s-QGanttChart{background:#fff;display:flex;flex-direction:column;flex-grow:1;min-height:0;min-width:0}.q-gantt-toolbar{flex:0 0 auto}.q-gantt-toolbar .quick-filter-item{margin:4px 8px 0 0}.q-gantt-chart{position:relative;border:1px solid #eee;overflow:hidden;height:100%;display:flex;flex-direction:column}.q-gantt-header-panes{flex:0 0 auto}.q-gantt-data-panes{flex-grow:1}.q-gantt-header-panes,.q-gantt-data-panes{display:flex;flex-direction:row;flex-wrap:nowrap;overflow:hidden}.q-gantt-left,.q-gantt-right{flex:0 0 auto}.q-gantt-center{flex:1 1 auto}.q-gantt-chart table{border-collapse:separate;table-layout:fixed}.q-gantt-center th.scroll-pad{padding:0;border:0}.q-gantt-header.q-gantt-center table{table-layout:auto}.q-gantt-header{border-bottom:1px solid #999;overflow:hidden;height:40px}.q-gantt-header th{height:40px}.q-gantt-header.q-gantt-left{border-right:2px solid #999}.q-gantt-header.q-gantt-right{border-left:2px solid #999}.q-gantt-data.q-gantt-left{overflow:hidden;border-right:2px solid #999}.q-gantt-data.q-gantt-right{overflow:hidden;border-left:2px solid #999}.q-gantt-data.q-gantt-center{overflow:scroll}.q-gantt-chart th>div{white-space:nowrap;overflow:hidden}.q-gantt-chart td>div{height:19px;white-space:nowrap;overflow:hidden}.q-gantt-left th,.q-gantt-right th{padding:4px 3px 4px 4px;color:#000;border:1px solid #eee;border-left:0;border-top:0;position:relative}.q-gantt-left th .s-header-filter-button{position:absolute;right:0}.q-gantt-left td,.q-gantt-right td{padding:4px 3px 4px 4px;border:1px solid #eee;border-left:0;border-top:0}.q-gantt-summary{padding:4px 3px 4px 4px}.q-gantt-data td{height:28px}.q-gantt-center tr.month-year th{width:auto;padding:0 0;height:19px;border-bottom:1px solid #eee}.q-gantt-center tr.month-year th>div{padding:0 0;height:18px;width:100%;text-align:left}.q-gantt-center tr.month-year span{display:inline-block;border-right:1px solid #eee;text-align:center;text-overflow:ellipsis;overflow:hidden;height:18px;line-height:18px;font-size:11px;color:#4682b4!important}.q-gantt-center tr.weeks th{width:auto;padding:0 0;height:20px;color:#000}.q-gantt-center tr.weeks th>div{padding:0 0;height:20px;width:100%;text-align:left}.q-gantt-center tr.weeks span{display:inline-block;width:27px;text-align:center;font-size:9px;line-height:20px;height:20px;overflow:hidden;border:1px solid #eee;border-left:0;border-top:0;font-weight:normal;-webkit-font-smoothing:antialiased}.q-gantt-center tr.days span{display:inline-block;width:50px;text-align:center;font-size:9px;line-height:20px;height:20px;overflow:hidden;border:1px solid #eee;border-left:0;border-top:0;font-weight:normal;-webkit-font-smoothing:antialiased}.q-gantt-center tr.month-year th.h-scroll-pad,.q-gantt-center tr.weeks th.h-scroll-pad{width:18px;padding:0;border:0}.q-gantt-center tr.month-year th.h-scroll-pad>div,.q-gantt-center tr.weeks th.h-scroll-pad>div{width:300px}.q-gantt-center th sup{color:#d87093;font-style:italic}.q-gantt-center table{width:100%}.q-gantt-center td{padding:0 0;border-bottom:1px solid #eee;width:27px}.q-gantt-center td>div{height:27px;width:100%;position:relative}.q-gantt-center td>div>span{display:inline-block;border-right:1px solid #eee;overflow:hidden;height:27px;width:27px}.q-gantt-chart .bar{border:1px solid #000;height:11px;position:absolute;background-repeat:repeat-x}.q-gantt-chart tr.scroll-pad td{border:0;background-color:transparent}.q-gantt-chart tr.scroll-pad div{height:8px}.q-gantt-header.q-gantt-center table{width:auto;table-layout:fixed}.q-gantt-data.q-gantt-center{position:relative;user-select:none}.q-gantt-bar{position:absolute;height:20px;border-radius:4px;background-color:#1e90ff;border:1px solid #666;color:#fff;text-align:center;cursor:pointer}.q-gantt-bar.beyond-left{border-bottom-left-radius:0;border-top-left-radius:0;border-left:0}.q-gantt-bar.beyond-right{border-bottom-right-radius:0;border-top-right-radius:0;border-right:0}.q-gantt-bar-text{position:absolute;color:#000;white-space:nowrap;width:auto}.q-gantt-milestone{position:absolute;width:16px;height:16px;background-color:#ff4500!important;border:1px solid #666;transform:rotate(45deg);transform-origin:center;cursor:pointer}.q-gantt-circle-milestone{position:absolute;width:16px;height:16px;background-color:#ff4500;border:1px solid #666;border-radius:50%;cursor:pointer}.q-gantt-milestone-text{position:absolute;left:18px}.q-gantt-chart td.bars{font-size:12px;line-height:18px;padding:0}.q-gantt-chart td.bars>div{position:relative;overflow:visible;height:100%}.q-gantt-data tr.ui-droppable-hover{background-color:rgba(232,234,27,.5)}.q-gantt-number-circle,.q-gantt-circle-planned,.q-gantt-circle-unplanned{display:inline-block;border-radius:50%;width:18px;height:18px;line-height:15px;position:relative;top:-2px;padding:0;margin-right:3px;background:#ff0;border:1px solid #000;color:#000;text-align:center;font-size:9px}.q-gantt-circle-planned{background:#fff}.q-gantt-circle-unplanned{background:#f00}.q-resource-bound{position:absolute;top:0;bottom:0;cursor:not-allowed;background-image:repeating-linear-gradient(-45deg,transparent,transparent 5px,rgba(255,255,255,.5) 5px,rgba(255,255,255,.5) 10px);background-color:#858585!important}.q-gantt-overlap{position:absolute;height:18px;top:0;background-color:rgba(255,105,180,.7)!important}.q-gantt-center tr.weeks.capacity-counts th{height:28px}.q-gantt-center tr.weeks.capacity-counts th>div{height:28px;overflow:visible}.q-gantt-center tr.weeks.capacity-counts span{height:28px;line-height:28px;font-size:12px}.q-gantt-absence-time{position:absolute;height:18px;top:0;background-color:#a9a9a9!important}.q-gantt-today-date-line{position:absolute;top:0;width:1px;border-left:3px dotted #000}.q-gantt-current-week{background-color:#ffa500}.q-daterange-switch,.q-daterange-prev,.q-daterange-next{vertical-align:-3px;margin-right:4px}.q-gantt-pane-inner{position:relative;height:auto;min-height:100%}.q-gantt-full-line,.q-gantt-today-line,.q-gantt-detached-line{position:absolute;width:0;top:0;bottom:0;border-left-width:2px;border-left-style:dashed}.q-gantt-detached-line{border-left-width:4px}.q-gantt-full-line{border-left-color:rgba(192,168,0,.5)}.q-gantt-today-line{border-left-color:rgb(48,112,255,.5)}.q-gantt-detached-line{border-left-color:rgb(158,16,215,.5);border-left-style:solid}.q-gantt-bar-section{position:absolute;border-left-color:rgb(247,238,26,.6);border-left-style:solid;border-left-width:1px;width:0;top:0;bottom:0}.q-gantt-bar-badge{position:absolute;left:1px;color:#00f;text-indent:0}.q-gantt-bar-badge>span{margin-left:2px}.CodeMirror{font-family:monospace!important}.s-GanttViewer{height:100%}.gantt-aggregator-center-data td span{text-align:center}.q-info-legend *{margin:0;padding:0}.q-helpdialog-legend{border:2px solid #2667b3;background:#3185e6;color:#fff;padding:4px;border-radius:4px;margin-bottom:8px}.q-helpdialog-legend *{margin:0;padding:0}div#QReports-GridViewer .s-QReports-QReportsGrid,div#QReports-CategoryViewer .s-QReports-QReportsGrid{width:100%}tr.days th{height:auto}

