body.has-fixed-actionbar {
  padding-top: 41px;
}
body.has-pageheader.has-fixed-actionbar {
  padding-top: 89px;
}
.es-actionbar {
  height: 40px;
  background: #f1f1f1;
  border-bottom: 1px solid #d1d1d1;
}
.es-actionbar ul.es-actions {
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.es-actionbar ul.es-actions a,
.es-actionbar ul.es-actions button {
  display: block;
  box-sizing: border-box;
  min-width: 48px;
  height: 40px;
  padding: 10px 18px;
  line-height: 20px;
  font-size: 16px;
  white-space: nowrap;
  color: #393f3f;
  border-width: 0px;
  background-color: transparent;
  -webkit-appearance: none;
}
.es-actionbar ul.es-actions a:hover,
.es-actionbar ul.es-actions button:hover {
  cursor: pointer;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.08);
}
.es-actionbar ul.es-actions a.has-icon,
.es-actionbar ul.es-actions button.has-icon {
  padding-left: 44px;
  background-position: 16px center;
  background-repeat: no-repeat;
}
.es-actionbar ul.es-actions a.es-action-notext,
.es-actionbar ul.es-actions button.es-action-notext {
  padding: 0;
  background-position: center;
}
.es-actionbar ul.es-actions a.disabled,
.es-actionbar ul.es-actions button.disabled {
  background-color: rgba(255, 255, 255, 0.7);
  color: rgba(17, 145, 219, 0.4);
  cursor: default;
}
.es-actionbar ul.es-actions input,
.es-actionbar ul.es-actions select {
  margin: 6px 8px;
}
.es-actionbar ul.es-actions .es-searchbox-wrap {
  margin: 6px 8px;
}
.es-actionbar ul.es-actions .es-searchbox-wrap input {
  margin: 0;
}
.es-actionbar .es-searchbox {
  width: 16em;
}
.es-fixed-actionbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
}
.has-pageheader .es-fixed-actionbar {
  top: 48px;
}
@media (min-width: 1600px) {
  body.has-side-nav .es-fixed-actionbar {
    left: 220px;
  }
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  box-sizing: border-box;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #393f3f;
}
a {
  color: #f7a119;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
input,
select,
textarea,
button {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1em;
}
mark {
  background-color: #fffad9;
  border: 1px solid #ffea60;
}

/*
 * In Firefox haben Button Elemente eine weitere Padding Angabe, die dafür
 * sorgt, dass die Buttons dort größer sind als in anderen Browser. Mit
 * folgender Angabe wird dieses ungewollte Padding entfernt.
 */
button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * Der IE 10 zeigt normalerweise bei jedem fokusierten Input Element auf der rechten
 * Seite ein X an, mit dem der Text gelöscht werden kann. Dies ist problematisch, weil
 * z.B. die Suchbox bereits ein Clear Button hat und außerdem gibt es ein Problem wenn
 * "text-align: right" gesetzt ist, wodurch der Text abgeschnitten dargestellt wird.
 * Deswegen wird der IE Clear Button deaktiviert.
 * Siehe auch:
 * http://social.msdn.microsoft.com/Forums/nl-BE/iewebdevelopment/thread/f4d2a698-2ae0-4a13-8893-2e96a1e54c43
 * https://connect.microsoft.com/IE/feedback/details/776537/text-in-right-aligned-input-gets-cuts-off-when-using-ms-clear
 */
input::-ms-clear {
  display: none;
}
/*
 * Placeholder Texte sind im IE standardmäßig schwarz, wodurch sie schwer vom
 * normalen Textinhalt zu unterscheiden sind. Deswegen wird die Farbe auf Grau
 * geändert.
 */
:-ms-input-placeholder {
  color: #a9a9a9 !important;
}
/*
 * Internet Explorer Versionen kleiner 11 kennen das "hidden" Attribut noch
 * nicht.
 */
[hidden] {
  display: none !important;
}
/*
 * In Firefox werden in Number-Inputs die Spinner-Buttons auch im ReadOnly
 * Modus angezeigt, wo sie aber keine Funktion haben und unschön aussehen.
 * Deswegen werden sie ausgeblendet.
 */
input[type=number][readonly] {
  -moz-appearance: textfield;
}
/*
 * Der Spinner Button nimmt bei Date Inputs im Chrome zu viel Platz weg und ist generell
 * nicht sehr nützlich, weswegen er deaktiviert wird.
 */
input[type=date]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.es-btn {
  display: inline-block;
  height: 2em;
  margin: 0;
  padding: 0.35714286em 0.85714286em;
  vertical-align: bottom;
  box-sizing: border-box;
  color: #f7a119;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #c2c2c2;
  border-radius: 0;
  -webkit-appearance: none;
  transition: background-color 0.1s, border-color 0.1s, box-shadow 0.2s;
}
.es-btn:hover,
.es-btn:active,
.es-btn.active,
.es-btn.disabled,
.es-btn[disabled] {
  color: #f7a119;
  text-decoration: none;
}
.es-btn:hover {
  background-color: #fef1df;
  border-color: #fab961;
}
.es-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fcd6a2;
  border-color: #fab961;
}
.es-btn.active,
.es-btn:active {
  outline: 0;
  background-color: #fde6c6;
  border-color: #fab961;
}
.es-btn.disabled,
.es-btn[disabled] {
  pointer-events: none;
  cursor: default;
  opacity: 0.4;
  box-shadow: none;
}
.es-btn.has-icon .es-icon {
  margin: -3px -6px;
  padding: 3px;
}
span.es-icon {
  display: inline-block;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 1em;
  height: 0.9em;
  position: relative;
  top: 2px;
}
.es-btn.es-btn-primary {
  color: #fff;
  background-color: #fab961;
  border-color: #fab961;
}
.es-btn.es-btn-primary:hover {
  background-color: #f8a330;
  border-color: #f8a330;
}
.es-btn.es-btn-primary:focus {
  background-color: #f8a330;
  border-color: #f8a330;
}
.es-btn.es-btn-primary.active,
.es-btn.es-btn-primary:active {
  background-color: #ed8c08;
  border-color: #ed8c08;
}

.es-content-box {
  color: #393f3f;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 0;
}
.es-content-box-info {
  color: #0d5a80;
  background-color: #c2e5ed;
  border-color: #b5d6de;
}
.es-content-box-info .es-btn {
  color: #0d5a80;
}
.es-content-box-success {
  color: #376b38;
  background-color: #cbebbf;
  border-color: #bedbb2;
}
.es-content-box-success .es-btn {
  color: #376b38;
}
.es-content-box-warning {
  color: #8c6827;
  background-color: #faf6b7;
  border-color: #e0dda4;
}
.es-content-box-warning .es-btn {
  color: #8c6827;
}
.es-content-box-error {
  color: #992f2e;
  background-color: #f0ccd3;
  border-color: #e0bfc6;
}
.es-content-box-error .es-btn {
  color: #992f2e;
}
.es-content-box-info .es-btn,
.es-content-box-success .es-btn,
.es-content-box-warning .es-btn,
.es-content-box-error .es-btn {
  background-color: #fff;
  border-color: #c2c2c2;
}
.es-content-box-info .es-btn:hover,
.es-content-box-success .es-btn:hover,
.es-content-box-warning .es-btn:hover,
.es-content-box-error .es-btn:hover,
.es-content-box-info .es-btn:focus,
.es-content-box-success .es-btn:focus,
.es-content-box-warning .es-btn:focus,
.es-content-box-error .es-btn:focus {
  background-color: #e7e7e7;
  border-color: #a7a7a7;
  box-shadow: none;
}
.es-content-box-info .es-btn.active,
.es-content-box-success .es-btn.active,
.es-content-box-warning .es-btn.active,
.es-content-box-error .es-btn.active,
.es-content-box-info .es-btn:active,
.es-content-box-success .es-btn:active,
.es-content-box-warning .es-btn:active,
.es-content-box-error .es-btn:active {
  background-color: #dadada;
  border-color: #a7a7a7;
}

.es-dataview-loading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 128px;
}
.es-dataview-loading .es-loading {
  height: 64px;
  width: 64px;
}
.es-dataview-error {
  padding: 1em 0.5em;
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  color: #992f2e;
}

.es-dialog {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  position: fixed;
  z-index: 2000;
  max-height: 90%;
  max-height: calc(100% - 32px);
  /* Die width Angabe wird für den IE benötigt, damit dieser "margin: 0 auto" versteht */
  width: 90%;
  width: calc(100% - 32px);
  top: 16px;
  left: 16px;
  right: 16px;
  margin: 0 auto;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.2);
  outline: 0;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  transition: visibility 0.2s ease, 
        opacity 0.2s ease, 
        transform 0.2s ease;
}
.es-dialog--open {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.es-dialog--modal {
  z-index: 4001;
}
.es-dialog__header {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  padding: 16px 60px 12px 24px;
  line-height: 24px;
}
.es-dialog__title {
  margin: 0;
  font-size: 20px;
  font-weight: normal;
}
.es-dialog__close-x {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 52px;
  padding: 0;
  opacity: 0.6;
  background: none;
  border: 0;
  outline: 0;
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.es-dialog__close-x:hover {
  opacity: 1;
}
.es-dialog__content {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 15px 24px;
  overflow: auto;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
.es-dialog__header + .es-dialog__content {
  padding-top: 0;
}
.hiddenscroll .es-dialog__content {
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}
.es-dialog__content--scroll-top {
  border-top-color: #d9d9d9;
}
.es-dialog__content--scroll-bottom {
  border-bottom-color: #d9d9d9;
}
.es-dialog__content--full {
  padding: 0;
}
.es-dialog__form-pre-text {
  margin: 0 0 24px 0;
}
.es-dialog__actions {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row-reverse wrap;
  flex-flow: row-reverse wrap;
  margin: 12px 24px 16px 24px;
}
.es-dialog__actions .es-btn {
  min-width: 6em;
  margin-left: 4px;
}
.es-dialog-backdrop {
  position: fixed;
  top: -100px;
  bottom: -100px;
  left: 0;
  right: 0;
  z-index: 4000;
  background-color: #000;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.es-dialog-backdrop--show {
  opacity: 0.4;
}
@media (min-height: 600px) and (min-width: 600px) {
  .es-dialog {
    max-height: calc(100% - 64px);
    width: calc(100% - 64px);
    top: 32px;
    left: 32px;
    right: 32px;
  }
}

.es-dlgpage {
  background-color: #e7e7e7;
}
.es-dlgpage-content {
  padding: 16px;
}
.es-dlgpage-box {
  box-sizing: border-box;
  max-width: 480px;
  margin: 0 auto;
  padding: 16px;
}
.es-dlgpage-box > *:first-child {
  margin-top: 0;
}
.es-dlgpage-box > *:last-child {
  margin-bottom: 0;
}
.es-dlgpage-box h1 {
  margin: 0.5em 0;
  padding: 0;
  font-size: 1.2em;
  font-weight: bold;
}
.es-dlgpage-box p {
  margin: 0.6em 0;
}
.es-dlgpage-box .es-dlgpage-buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row-reverse wrap;
  flex-flow: row-reverse wrap;
  margin: 24px 0 0 0;
}
.es-dlgpage-box .es-dlgpage-buttons .es-btn {
  margin-left: 4px;
}
@media (max-width: 400px) {
  .es-dlgpage-box .es-dlgpage-buttons {
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
  }
  .es-dlgpage-box .es-dlgpage-buttons .es-btn {
    display: block;
    width: 100%;
    height: 2.71428571em;
    margin: 8px 0 0 0;
    padding-top: 0.71428571em;
    padding-bottom: 0.71428571em;
  }
}
@media (min-height: 200px) and (min-width: 400px) {
  .es-dlgpage-content-small {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -100px;
  }
}

.es-formpage-content {
  padding: 8px;
}
.es-form-header {
  margin-bottom: 16px;
}
.es-form-header h1 {
  margin: 0;
  padding: 0;
  font-size: 1.8em;
}
ul.es-form-subheader {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin: 4px 0 0 0;
  padding: 0;
  font-size: 16px;
  list-style: none;
}
ul.es-form-subheader li {
  margin-right: 24px;
}
ul.es-form-subheader li:last-child {
  margin-right: 0;
}
ul.es-form-subheader li a {
  display: block;
  padding: 4px 0;
  line-height: 20px;
}
.es-form-card-container {
  margin-top: -17px;
  /* Dieses Padding verhindert Collapsing Margins */
  padding-top: 1px;
}
.es-form-card-container .es-form-card {
  margin-top: 16px;
}
.es-form-card {
  box-sizing: content-box;
  margin: 0;
  padding: 16px;
  color: #393f3f;
  background-color: #fff;
}
.es-form-card--xs {
  max-width: 420px;
}
.es-form-card--sm {
  max-width: 480px;
}
.es-form-card--md {
  max-width: 560px;
}
.es-form-card--lg {
  max-width: 640px;
}
.es-form-card--xl {
  max-width: 720px;
}
.es-form-card--double-xs {
  max-width: 872px;
}
.es-form-card--double-sm {
  max-width: 992px;
}
.es-form-card--double-md {
  max-width: 1152px;
}
.es-form-card--double-lg {
  max-width: 1312px;
}
.es-form-card--double-xl {
  max-width: 1472px;
}
.es-max-form-width--xs {
  max-width: 420px;
}
.es-max-form-width--sm {
  max-width: 480px;
}
.es-max-form-width--md {
  max-width: 560px;
}
.es-max-form-width--lg {
  max-width: 640px;
}
.es-max-form-width--xl {
  max-width: 720px;
}
.es-form-grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin-left: -16px;
  margin-right: -16px;
}
.es-form-grid .es-grid-col {
  padding-left: 16px;
  padding-right: 16px;
}
.es-form-group-container {
  margin-top: -33px;
  /* Dieses Padding verhindert Collapsing Margins */
  padding-top: 1px;
}
.es-form-group-container .es-form-group {
  margin-top: 32px;
}
.es-form-group {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}
.es-form-group__header {
  display: block;
  margin: 0 0 8px 0;
  padding: 1px 0;
  font-size: 20px;
  font-weight: normal;
  border: 0;
  border-bottom: 1px solid #d9d9d9;
}
.es-form-group-append {
  display: flex;
  flex-direction: row;
}
.es-form-group-append > * {
  margin-right: 4px;
}
.es-form-group-append > *:last-child {
  margin-right: 0;
}
@media (min-width: 540px) {
  .es-formpage-content {
    padding: 16px;
  }
  .es-form-card {
    padding: 24px;
  }
}

.es-form-row {
  display: block;
}
.es-form-label {
  display: inline-block;
  box-sizing: border-box;
  width: auto;
  padding: 0 0 0.21428571em 0;
  color: #777;
}
.es-form-label.hidden {
  display: none;
}
.es-form-label.collapse {
  display: none;
}
.es-form-label--strong {
  font-size: 18px;
  color: #393f3f;
}
.es-form-controls {
  min-width: 0;
  display: block;
}
.es-form-controls--grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  margin-left: -2px;
  margin-right: -2px;
}
.es-form-controls--grid .es-grid-col {
  padding-left: 2px;
  padding-right: 2px;
}
.es-form-controls--size-xs {
  width: 6em;
}
.es-form-controls--size-sm {
  width: 10em;
}
.es-form-controls--size-md {
  width: 14em;
}
.es-form-controls--size-lg {
  width: 18em;
}
.es-form-controls--size-xl {
  width: 22em;
}
.es-form-controls-description {
  margin-top: 0.5em;
  font-size: 0.9em;
  color: #999;
}
.es-form-row--horizontal {
  display: -ms-flexbox;
  display: flex;
}
.es-form-row--horizontal .es-form-label {
  display: block;
  width: 12em;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  line-height: 1.28571429em;
  padding-top: calc(0.285714286em + 1px);
  padding-bottom: calc(0.285714286em + 1px);
  padding-left: 0;
  padding-right: 0.57142857em;
}
.es-form-row--horizontal .es-form-label.hidden {
  display: block;
  visibility: hidden;
}
.es-form-row--horizontal .es-form-label.collapse {
  display: none;
}
.es-form-row--horizontal .es-form-label--size-auto {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: auto;
}
.es-form-row--horizontal .es-form-label--size-xs {
  width: 6em;
}
.es-form-row--horizontal .es-form-label--size-sm {
  width: 9em;
}
.es-form-row--horizontal .es-form-label--size-md {
  width: 12em;
}
.es-form-row--horizontal .es-form-label--size-lg {
  width: 15em;
}
.es-form-row--horizontal .es-form-label--size-xl {
  width: 18em;
}
.es-form-row--horizontal .es-form-controls {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.es-form-row--horizontal .es-form-controls--size-xs,
.es-form-row--horizontal .es-form-controls--size-sm,
.es-form-row--horizontal .es-form-controls--size-md,
.es-form-row--horizontal .es-form-controls--size-lg,
.es-form-row--horizontal .es-form-controls--size-xl {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.es-form-row--horizontal .es-form-text {
  display: block;
  line-height: 1.28571429em;
  padding-top: calc(0.285714286em + 1px);
  padding-bottom: calc(0.285714286em + 1px);
}
.es-form-row--horizontal .es-checkbox,
.es-form-row--horizontal .es-radiobutton {
  padding-top: 0.28571429em;
  padding-bottom: 0.28571429em;
}
.es-form-row--horizontal .es-progress {
  margin-top: 0.28571429em;
  margin-bottom: 0.28571429em;
}
.es-form-row-container {
  margin-top: -21px;
  /* Dieses Padding verhindert Collapsing Margins */
  padding-top: 1px;
}
.es-form-row-container .es-form-row {
  margin-top: 20px;
}
.es-form-row-container .es-form-row--horizontal {
  margin-top: 4px;
}
.es-form-row-container .es-form-row--belongs-to-prev {
  margin-top: 4px;
}
.es-form-row-container--horizontal {
  margin-top: -5px;
  /* Dieses Padding verhindert Collapsing Margins */
  padding-top: 1px;
}
@media (min-width: 480px) {
  .es-form-row:not(.es-form-row--vertical) {
    display: -ms-flexbox;
    display: flex;
  }
  .es-form-row:not(.es-form-row--vertical) .es-form-label {
    display: block;
    width: 12em;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    line-height: 1.28571429em;
    padding-top: calc(0.285714286em + 1px);
    padding-bottom: calc(0.285714286em + 1px);
    padding-left: 0;
    padding-right: 0.57142857em;
  }
  .es-form-row:not(.es-form-row--vertical) .es-form-label.hidden {
    display: block;
    visibility: hidden;
  }
  .es-form-row:not(.es-form-row--vertical) .es-form-label.collapse {
    display: none;
  }
  .es-form-row:not(.es-form-row--vertical) .es-form-label--size-auto {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: auto;
  }
  .es-form-row:not(.es-form-row--vertical) .es-form-label--size-xs {
    width: 6em;
  }
  .es-form-row:not(.es-form-row--vertical) .es-form-label--size-sm {
    width: 9em;
  }
  .es-form-row:not(.es-form-row--vertical) .es-form-label--size-md {
    width: 12em;
  }
  .es-form-row:not(.es-form-row--vertical) .es-form-label--size-lg {
    width: 15em;
  }
  .es-form-row:not(.es-form-row--vertical) .es-form-label--size-xl {
    width: 18em;
  }
  .es-form-row:not(.es-form-row--vertical) .es-form-controls {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .es-form-row:not(.es-form-row--vertical) .es-form-controls--size-xs,
  .es-form-row:not(.es-form-row--vertical) .es-form-controls--size-sm,
  .es-form-row:not(.es-form-row--vertical) .es-form-controls--size-md,
  .es-form-row:not(.es-form-row--vertical) .es-form-controls--size-lg,
  .es-form-row:not(.es-form-row--vertical) .es-form-controls--size-xl {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .es-form-row:not(.es-form-row--vertical) .es-form-text {
    display: block;
    line-height: 1.28571429em;
    padding-top: calc(0.285714286em + 1px);
    padding-bottom: calc(0.285714286em + 1px);
  }
  .es-form-row:not(.es-form-row--vertical) .es-checkbox,
  .es-form-row:not(.es-form-row--vertical) .es-radiobutton {
    padding-top: 0.28571429em;
    padding-bottom: 0.28571429em;
  }
  .es-form-row:not(.es-form-row--vertical) .es-progress {
    margin-top: 0.28571429em;
    margin-bottom: 0.28571429em;
  }
  .es-form-row-container {
    margin-top: -5px;
    /* Dieses Padding verhindert Collapsing Margins */
    padding-top: 1px;
  }
  .es-form-row-container .es-form-row {
    margin-top: 4px;
  }
  .es-form-row-container .es-form-row--vertical {
    margin-top: 20px;
  }
  .es-form-row-container .es-form-row--belongs-to-prev {
    margin-top: 4px;
  }
  .es-form-row-container--vertical {
    margin-top: -21px;
    /* Dieses Padding verhindert Collapsing Margins */
    padding-top: 1px;
  }
}
.es-form-row input[type=text],
.es-form-row input[type=password],
.es-form-row input[type=number],
.es-form-row input[type=date],
.es-form-row input[type=time],
.es-form-row input[type=url],
.es-form-row input[type=email],
.es-form-row input[type=tel],
.es-form-row input[type=file],
.es-form-row select,
.es-form-row textarea {
  width: 100%;
}
.es-form-row .es-form-control--size-number {
  max-width: 9em;
}
.es-form-row .es-form-control--size-date {
  max-width: 9em;
}
/*
* Bei der Textarea Höhe werden die Höhe der Input Felder und die Margin Werte
* der Form Row berücksichtigt, damit die horizontalen Fluchtlinien passen
*/
.es-form-row textarea {
  display: block;
  height: 188px;
  resize: vertical;
}
.es-form-row .textarea--height-2 {
  height: 60px;
}
.es-form-row .textarea--height-3 {
  height: 92px;
}
.es-form-row .textarea--height-4 {
  height: 124px;
}
.es-form-row .textarea--height-5 {
  height: 156px;
}
.es-form-row .textarea--height-6 {
  height: 188px;
}
.es-form-row .textarea--height-7 {
  height: 220px;
}
.es-form-row .textarea--height-8 {
  height: 252px;
}
.es-form-row .textarea--height-9 {
  height: 284px;
}
.es-form-row .textarea--height-10 {
  height: 316px;
}
.es-form-row .textarea--height-11 {
  height: 348px;
}
.es-form-row .textarea--height-12 {
  height: 380px;
}
.es-form-row .textarea--height-13 {
  height: 412px;
}
.es-form-row .textarea--height-14 {
  height: 444px;
}

.es-flex-grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.es-grid-col {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.es-grid-col--auto {
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
}
.es-grid-col--1 {
  width: 8.33333333%;
}
.es-grid-col--2 {
  width: 16.66666667%;
}
.es-grid-col--3 {
  width: 25%;
}
.es-grid-col--4 {
  width: 33.33333333%;
}
.es-grid-col--5 {
  width: 41.66666667%;
}
.es-grid-col--6 {
  width: 50%;
}
.es-grid-col--7 {
  width: 58.33333333%;
}
.es-grid-col--8 {
  width: 66.66666667%;
}
.es-grid-col--9 {
  width: 75%;
}
.es-grid-col--10 {
  width: 83.33333333%;
}
.es-grid-col--11 {
  width: 91.66666667%;
}
.es-grid-col--12 {
  width: 100%;
}
@media (min-width: 540px) {
  .es-grid-col--sm-auto {
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
  }
  .es-grid-col--sm-1 {
    width: 8.33333333%;
  }
  .es-grid-col--sm-2 {
    width: 16.66666667%;
  }
  .es-grid-col--sm-3 {
    width: 25%;
  }
  .es-grid-col--sm-4 {
    width: 33.33333333%;
  }
  .es-grid-col--sm-5 {
    width: 41.66666667%;
  }
  .es-grid-col--sm-6 {
    width: 50%;
  }
  .es-grid-col--sm-7 {
    width: 58.33333333%;
  }
  .es-grid-col--sm-8 {
    width: 66.66666667%;
  }
  .es-grid-col--sm-9 {
    width: 75%;
  }
  .es-grid-col--sm-10 {
    width: 83.33333333%;
  }
  .es-grid-col--sm-11 {
    width: 91.66666667%;
  }
  .es-grid-col--sm-12 {
    width: 100%;
  }
}
@media (min-width: 720px) {
  .es-grid-col--md-auto {
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
  }
  .es-grid-col--md-1 {
    width: 8.33333333%;
  }
  .es-grid-col--md-2 {
    width: 16.66666667%;
  }
  .es-grid-col--md-3 {
    width: 25%;
  }
  .es-grid-col--md-4 {
    width: 33.33333333%;
  }
  .es-grid-col--md-5 {
    width: 41.66666667%;
  }
  .es-grid-col--md-6 {
    width: 50%;
  }
  .es-grid-col--md-7 {
    width: 58.33333333%;
  }
  .es-grid-col--md-8 {
    width: 66.66666667%;
  }
  .es-grid-col--md-9 {
    width: 75%;
  }
  .es-grid-col--md-10 {
    width: 83.33333333%;
  }
  .es-grid-col--md-11 {
    width: 91.66666667%;
  }
  .es-grid-col--md-12 {
    width: 100%;
  }
}
@media (min-width: 960px) {
  .es-grid-col--lg-auto {
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
  }
  .es-grid-col--lg-1 {
    width: 8.33333333%;
  }
  .es-grid-col--lg-2 {
    width: 16.66666667%;
  }
  .es-grid-col--lg-3 {
    width: 25%;
  }
  .es-grid-col--lg-4 {
    width: 33.33333333%;
  }
  .es-grid-col--lg-5 {
    width: 41.66666667%;
  }
  .es-grid-col--lg-6 {
    width: 50%;
  }
  .es-grid-col--lg-7 {
    width: 58.33333333%;
  }
  .es-grid-col--lg-8 {
    width: 66.66666667%;
  }
  .es-grid-col--lg-9 {
    width: 75%;
  }
  .es-grid-col--lg-10 {
    width: 83.33333333%;
  }
  .es-grid-col--lg-11 {
    width: 91.66666667%;
  }
  .es-grid-col--lg-12 {
    width: 100%;
  }
}
@media (min-width: 1140px) {
  .es-grid-col--xl-auto {
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
  }
  .es-grid-col--xl-1 {
    width: 8.33333333%;
  }
  .es-grid-col--xl-2 {
    width: 16.66666667%;
  }
  .es-grid-col--xl-3 {
    width: 25%;
  }
  .es-grid-col--xl-4 {
    width: 33.33333333%;
  }
  .es-grid-col--xl-5 {
    width: 41.66666667%;
  }
  .es-grid-col--xl-6 {
    width: 50%;
  }
  .es-grid-col--xl-7 {
    width: 58.33333333%;
  }
  .es-grid-col--xl-8 {
    width: 66.66666667%;
  }
  .es-grid-col--xl-9 {
    width: 75%;
  }
  .es-grid-col--xl-10 {
    width: 83.33333333%;
  }
  .es-grid-col--xl-11 {
    width: 91.66666667%;
  }
  .es-grid-col--xl-12 {
    width: 100%;
  }
}

input[type=text],
input[type=password],
input[type=number],
input[type=datetime-local],
input[type=datetime],
input[type=date],
input[type=time],
input[type=url],
input[type=email],
input[type=tel] {
  height: 2em;
  padding: 0.28571429em;
  box-sizing: border-box;
  color: #393f3f;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
textarea {
  margin: 0;
  padding: 0.28571429em;
  box-sizing: border-box;
  color: #393f3f;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
select {
  height: 2em;
  box-sizing: border-box;
  color: #393f3f;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
select[multiple] {
  height: auto;
}
input[type=file] {
  height: 2em;
  margin: 0;
}
.es-richedit-display {
  color: #393f3f;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=datetime-local]:focus,
input[type=datetime]:focus,
input[type=date]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus,
select:focus {
  border-color: #fab961;
  outline: none;
  box-shadow: 0 0 3px #f59109;
}
input[type=text].error,
input[type=password].error,
input[type=number].error,
input[type=datetime-local].error,
input[type=datetime].error,
input[type=date].error,
input[type=time].error,
input[type=url].error,
input[type=email].error,
input[type=tel].error,
textarea.error,
select.error {
  background-color: #f3dddd;
  border-color: #cd0a0a;
}
input[type=text].error:focus,
input[type=password].error:focus,
input[type=number].error:focus,
input[type=datetime-local].error:focus,
input[type=datetime].error:focus,
input[type=date].error:focus,
input[type=time].error:focus,
input[type=url].error:focus,
input[type=email].error:focus,
input[type=tel].error:focus,
textarea.error:focus,
select.error:focus {
  box-shadow: 0 0 3px #cd0a0a;
}
input[readonly],
textarea[readonly],
.es-richedit-display {
  background: #f1f1f1;
}
label.es-checkbox,
label.es-radiobutton {
  display: inline-block;
  line-height: 1.42857143em;
  cursor: pointer;
}
label.es-checkbox.disabled,
label.es-radiobutton.disabled {
  cursor: default;
}
label.es-checkbox input {
  margin-top: 0.25em;
  margin-left: 0;
  margin-right: 0.28571429em;
  vertical-align: top;
  cursor: pointer;
}
label.es-checkbox input:disabled {
  cursor: default;
}
.es-inputbox-container {
  display: inline-block;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.es-inputbox-container.focus {
  border-color: #fab961;
  outline: none;
  box-shadow: 0 0 3px #f59109;
}
.es-inputbox-container.error {
  background-color: #f3dddd;
  border-color: #cd0a0a;
}
.es-inputbox-container.error.focus {
  box-shadow: 0 0 3px #cd0a0a;
}
.es-error-inline {
  display: block;
  padding: 0.2em 0;
  color: #cd0a0a;
  font-weight: bold;
}
.es-error-inline.field-validation-valid {
  display: none;
}
.es-notice-inline {
  margin-top: 4px;
  font-size: 0.9em;
  color: #777;
  display: block;
}

input[type=range] {
  height: 2em;
  padding: 0;
  background: none;
  border: 0;
  outline: none;
  -webkit-appearance: none;
}
input[type=range]::-webkit-slider-runnable-track {
  height: 0.35714286em;
  background: #ddd;
  border: none;
  border-radius: 3px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #ccc;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  margin-top: -6px;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #fab961;
}
input[type=range][disabled]::-webkit-slider-thumb {
  background-color: #777;
}
input[type=range]::-moz-range-track {
  height: 0.35714286em;
  background: #ddd;
  border: none;
  border-radius: 3px;
}
input[type=range]:focus::-moz-range-track {
  background: #ccc;
}
input[type=range]::-moz-range-progress {
  height: 0.35714286em;
  background-color: #fab961;
  border: none;
  border-radius: 3px;
}
input[type=range]:focus::-moz-range-progress {
  background-color: #fab961;
}
input[type=range]::-moz-range-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #fab961;
}
input[type=range][disabled]::-moz-range-thumb {
  background-color: #777;
}
input[type=range]::-ms-track {
  height: 0.35714286em;
  background: #ddd;
  border: none;
  border-radius: 3px;
  /*remove default tick marks*/
  color: transparent;
}
input[type=range]:focus::-ms-track {
  background: #ccc;
}
input[type=range]::-ms-fill-lower {
  height: 0.35714286em;
  background-color: #fab961;
  border: none;
  border-radius: 3px;
}
input[type=range]:focus::-ms-fill-lower {
  background-color: #fab961;
}
input[type=range]::-ms-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #fab961;
}
input[type=range][disabled]::-ms-thumb {
  background-color: #777;
}

.es-input-slider-wrap {
  display: -ms-flexbox;
  display: flex;
}
.es-input-slider-wrap input[type=number].es-input-slider {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 4em;
  margin: 0 4px 0 0;
  transition: background-color 0.5s;
}
.es-input-slider-wrap input[type=range] {
  -ms-flex: 1 0 100px;
  flex: 1 0 100px;
  margin: 0;
}

@-webkit-keyframes LoadingRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes LoadingRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.es-loading {
  display: inline-block;
  height: 2em;
  width: 2em;
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028%2028%22%20height%3D%2228%22%20width%3D%2228%22%3E%3Cellipse%20ry%3D%2211.5%22%20rx%3D%2211.5%22%20cx%3D%2214%22%20cy%3D%2214%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%225%22%20stroke-opacity%3D%22.1%22%2F%3E%3Cpath%20d%3D%22M4.05%208.25a11.5%2011.5%200%200%201%209.96-5.75%22%20fill%3D%22none%22%20stroke%3D%22rgba(247%2C161%2C25%2C1)%22%20stroke-width%3D%225%22%2F%3E%3C%2Fsvg%3E');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-animation-name: LoadingRotate;
  animation-name: LoadingRotate;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
.es-page-loading {
  position: fixed;
  z-index: 7000;
  top: 50%;
  left: 0;
  right: 0;
  height: 54px;
  width: 54px;
  margin: -37px auto 0;
  padding: 10px;
  opacity: 0;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 54px;
}
.es-page-loading .es-loading {
  height: 54px;
  width: 54px;
}
.es-page-loading--show {
  opacity: 1;
  transition: opacity 0.4s ease 0.4s;
}

body.has-pageheader {
  padding-top: 48px;
}
#pageheader {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  padding: 0;
  overflow: hidden;
  z-index: 900;
  color: #fff;
  background: #393f3f;
}
#pageheader a {
  text-decoration: none;
  color: #fff;
}
#mainmenu {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: block;
  width: 48px;
  background-repeat: no-repeat;
  background-position: center;
}
#mainmenu:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
#pageheader ul.es-breadcrumbs-nav {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  margin: 0;
  padding: 0;
  line-height: 48px;
  font-size: 20px;
  list-style: none;
}
#pageheader ul.es-breadcrumbs-nav li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  white-space: nowrap;
  color: #fff;
}
#pageheader ul.es-breadcrumbs-nav li:not(:last-child):after {
  content: "\00276F";
  /* ❯*/
}
#pageheader ul.es-breadcrumbs-nav li a {
  display: block;
  height: 100%;
  padding: 0 8px;
  color: #fff;
}
#pageheader ul.es-breadcrumbs-nav li a:hover {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.2);
}
#pageheader ul.es-breadcrumbs-nav li.logo img {
  height: 48px;
  margin: 0 8px;
  vertical-align: bottom;
  border-width: 0;
}
#pageheader ul.es-breadcrumbs-nav li.active {
  padding: 0 8px;
}
#userinfo {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -ms-flex-item-align: end;
  align-self: flex-end;
  padding: 8px;
  white-space: nowrap;
  font-weight: bold;
  font-size: 13px;
}
#userinfo a {
  text-decoration: underline;
}
.es-page-background {
  background-color: #e7e7e7;
}
.es-page-background--white {
  background-color: #fff;
}
.es-page-absolute-pos #pagecontent {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.es-progress {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 20px;
  overflow: hidden;
  background-color: #ddd;
  border-radius: 0;
}
.es-progress .es-progress-bar {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: #fab961;
}
.es-progress .es-progress-text {
  position: relative;
  z-index: 2;
  padding: 0 2px;
  line-height: 12px;
  font-size: 10px;
  background-color: #fff;
  border-radius: 3px;
}

.es-searchbox-wrap {
  display: inline-block;
  position: relative;
  width: 16em;
}
.es-searchbox-wrap input.es-searchbox {
  width: 100%;
  padding-left: 2em;
  padding-right: 2em;
}
.es-searchbox-wrap .es-searchbox-icon,
.es-searchbox-wrap .es-input-clear {
  position: absolute;
  top: 0;
  width: 1.14285714em;
  height: 1.14285714em;
  padding: 0.42857143em;
  opacity: 0.4;
  background-size: 1.14285714em;
  background-position: center;
  background-repeat: no-repeat;
}
.es-searchbox-wrap .es-searchbox-icon {
  left: 0;
}
.es-searchbox-wrap .es-input-clear {
  right: 0;
  cursor: pointer;
}
.es-searchbox-wrap .es-input-clear:hover {
  opacity: 1;
}

.es-side-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 220px;
  box-sizing: border-box;
  z-index: 3001;
  overflow-x: visible;
  overflow-y: auto;
  visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateX(-230px);
  -ms-transform: translateX(-230px);
  transform: translateX(-230px);
  background-color: #f1f1f1;
  outline: 0;
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.6);
  -webkit-transition-property: visibility, -webkit-transform;
  transition-property: visibility, transform;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
.es-side-nav.is-visible {
  visibility: visible;
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
}
.es-side-nav h1 {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  background-color: #393f3f;
}
.es-side-nav h1 img {
  display: block;
  padding: 0 24px;
  height: 72px;
}
.es-side-nav nav {
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  margin-top: 0.8em;
}
.es-side-nav nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.es-side-nav nav li {
  margin: 0;
  padding: 0;
}
.es-side-nav nav li a {
  display: block;
  padding: 14px 24px 14px 24px;
  font-size: 16px;
  line-height: 16px;
  color: #666;
  text-decoration: none;
  transition: background-color 0.2s;
}
.es-side-nav nav li a:hover {
  background-color: #ddd;
  text-decoration: none;
}
.es-side-nav nav li a.active {
  color: #f7a119;
}
.hiddenscroll .es-side-nav {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.es-side-nav-backdrop {
  position: fixed;
  top: -100px;
  bottom: -100px;
  left: 0;
  right: 0;
  z-index: 3000;
  visibility: hidden;
  background-color: #000;
  opacity: 0;
  transition: visibility 0.2s ease, opacity 0.2s ease;
}
.es-side-nav-backdrop.is-visible {
  visibility: visible;
  opacity: 0.4;
}
@media (min-width: 1600px) {
  .es-side-nav {
    top: 48px;
    z-index: 801;
    visibility: visible;
    border-right: 1px solid #d1d1d1;
    box-shadow: none;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition-property: none;
    transition-property: none;
  }
  .es-side-nav h1 {
    display: none;
  }
  .es-side-nav-backdrop {
    display: none;
  }
  body.has-side-nav {
    padding-left: 220px;
  }
  body.has-side-nav #mainmenu {
    display: none;
  }
  body.has-side-nav #pageheader ul.es-breadcrumbs-nav {
    margin-left: 16px;
  }
}

.es-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: #fff;
}
.es-table th,
.es-table td {
  padding: 8px;
  overflow: hidden;
  line-height: 20px;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.es-table th {
  font-weight: bold;
  border-bottom: 2px solid #e0e0e0;
}
.es-table th.es-th-sortable {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.es-table th.es-th-sortable:hover {
  color: #f7a119;
}
.es-table th .es-arrow-up,
.es-table th .es-arrow-down {
  display: inline-block;
  width: 0;
  height: 0;
  margin-bottom: 2px;
}
.es-table th .es-arrow-up {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 6px solid #393f3f;
}
.es-table th.es-th-sortable:hover .es-arrow-up {
  border-bottom-color: #f7a119;
}
.es-table th .es-arrow-down {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #393f3f;
}
.es-table th.es-th-sortable:hover .es-arrow-down {
  border-top-color: #f7a119;
}
.es-table td {
  font-size: 0.9em;
  border-top: 1px solid #e0e0e0;
  vertical-align: top;
}
.es-table td a {
  display: block;
}
.es-table tr:first-child td {
  border-top-width: 0;
}
.es-table td.es-wrap-lines {
  white-space: normal;
}
.es-table tr.has-default-link {
  cursor: pointer;
}
.es-table tr.has-default-link:hover {
  background-color: #fef1df;
}
.es-table-striped tbody > tr:nth-child(2n+1) {
  background-color: #f9f9f9;
}
.es-table--matrix tbody th,
.es-table--matrix thead th:first-child {
  border-right: 2px solid #e0e0e0;
  text-align: right;
}
.es-table--matrix tbody th {
  border-bottom: 0;
}
.es-table--matrix td {
  border-left: 1px solid #e0e0e0;
}
.es-table--matrix tr td:first-child {
  border-left: 0;
}
.es-table-pager {
  background-color: #fff;
  border-top: 2px solid #e0e0e0;
}
.es-table-pager ul {
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.es-table-pager ul li {
  position: relative;
}
.es-table-pager ul li:not(:last-child):after {
  position: absolute;
  top: 10px;
  right: 0;
  content: " ";
  display: block;
  height: 16px;
  border-right: 1px solid #e0e0e0;
}
.es-table-pager ul li > a {
  display: block;
  min-width: 2em;
  padding: 8px 4px;
  line-height: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
.es-table-pager ul li > a:hover,
.es-table-pager ul li > a:focus {
  text-decoration: none;
  background-color: #fef1df;
}
.es-table-pager ul li.active > a {
  cursor: default;
  color: #676767;
}
.es-table-pager ul li.active > a:hover,
.es-table-pager ul li.active > a:focus {
  background-color: transparent;
}
.es-col-color {
  width: 8px;
}
.es-col-date {
  width: 8em;
}
.es-col-time {
  width: 8em;
}
.es-col-datetime {
  width: 12em;
}
.es-col-4 {
  width: 4em;
}
.es-col-5 {
  width: 5em;
}
.es-col-6 {
  width: 6em;
}
.es-col-8 {
  width: 8em;
}
.es-col-10 {
  width: 10em;
}
.es-col-12 {
  width: 12em;
}
.es-col-16 {
  width: 16em;
}
.es-col-20 {
  width: 20em;
}
.es-col-24 {
  width: 24em;
}
.es-col-32 {
  width: 32em;
}

.es-toast-msg {
  display: none;
}
#ToastMessage {
  position: fixed;
  z-index: 6000;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 16px 24px;
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.2);
  font-size: 1.2em;
  font-weight: bold;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}
#ToastMessage.show {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
@media (min-width: 480px) {
  #ToastMessage {
    width: 340px;
    margin: 0 auto;
  }
  #ToastMessage.show {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

.es-validation-summary {
  display: none;
}
.es-validation-summary-dialog p {
  margin: 0;
}
.es-validation-summary-dialog ul {
  margin: 1em 0 0 0;
  padding: 0 0 0 2em;
}
