.element {
  display: flex;
  flex-direction: column;
  padding: 0.25rem 0.75rem;
  box-sizing: border-box;
  align-self: flex-end;
  font-weight: 300;
}
.element > label {
  box-sizing: border-box;
  color: #aaaaaa;
  font-size: 0.9em;
}
@media only screen and (hover: none) and (pointer: coarse) {
  .element > label {
    font-size: 0.75em;
  }
}
@media only screen and (hover: none) and (pointer: coarse) {
  .element {
    padding: 0.25rem 0.5rem;
  }
}
.element.style-compact {
  padding: 0.25rem 0.25rem;
}
@media only screen and (hover: none) and (pointer: coarse) {
  .element.style-compact {
    padding: 0.25rem 0.25rem;
  }
}
.element > .box {
  display: flex;
  justify-content: flex-end;
  padding: 0.25rem;
  overflow: hidden;
  transition: 0.25s;
}
@media only screen and (hover: none) and (pointer: coarse) {
  .element > .box {
    padding: 0 0.125rem 0.125rem 0.125rem;
  }
}
.element > .box > span {
  width: 100%;
}
.element > .box > input {
  flex: 1 0 auto;
  box-sizing: border-box;
  width: 100%;
  outline: none;
  border: none;
  background: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  font-variant-numeric: tabular-nums;
  padding: 0 0.25rem;
  color: white;
}
.element > .box > input[type='datetime-local'] {
  color-scheme: dark;
}
.element > .box > .after {
  flex: 0 1 auto;
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  padding: 0 0.25em 0 0;
  color: #aaaaaa;
}
.element > .box > select {
  float: left;
  box-sizing: border-box;
  width: 100%;
  outline: none;
  border: none;
  background-color: #291c41;
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  color: white;
}
.element > .box > textarea {
  float: left;
  box-sizing: border-box;
  width: 100%;
  height: 4.25em;
  resize: none;
  outline: none;
  border: none;
  padding: 0 0.25em;
  background-color: #291c41;
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  color: white;
}
.element.el-container {
  padding: 0;
}
.element.push-left {
  margin-right: auto;
}
.element.push-right {
  margin-left: auto;
}
.element.push-both {
  margin-left: auto;
  margin-right: auto;
}
.element.required > label::after {
  content: '*';
  margin-left: 0.25em;
  font-weight: bold;
  color: #f2015b;
}
.element.el-input > .box {
  background-color: #291c41;
}
.element.invalid > .box {
  box-shadow: 0 0 2px 1px #ff0000ff;
  transition: 0.25s;
}
.element.align-right > .box > input,
.element.align-right > .box > span {
  text-align: right;
}
.element.align-left > .box > input,
.element.align-left > .box > span {
  text-align: left;
}
.element.align-center > .box > input,
.element.align-center > .box > span {
  text-align: center;
}
.element.failed > .box > textarea {
  border: 1px solid #f2015b;
  box-sizing: border-box;
}
.element.el-break.style-line1 {
  border-bottom: 1px solid #f2015b;
  margin-bottom: 0.25em;
}
.element.el-break.style-line2 {
  border-bottom: 1px solid #4e255d;
  margin-bottom: 0.5em;
}
.element.el-text.style-h1 span {
  font-size: 1.125rem;
  font-weight: 600;
}
.el-button {
  float: left;
  padding: 0.25rem 0.75rem;
}
@media only screen and (hover: none) and (pointer: coarse) {
  .el-button {
    padding: 0.25rem 0.5rem;
  }
}
.el-button > .box {
  display: flex;
  justify-content: center;
  padding: 0.25rem;
  background-color: #39307f;
  color: white;
  border-radius: 0.25em;
  cursor: pointer;
  user-select: none !important;
}
.el-button.style-compact {
  padding: 0.25rem 0.25rem 0.25rem 0.25rem;
}
.el-button.selected > .box {
  background-color: #88255b;
}
.el-button.disabled > .box {
  color: gray;
  cursor: not-allowed;
}
.el-ico_button {
  flex-grow: 0 !important;
  flex-shrink: 0 !important;
  padding: 0;
}
.el-ico_button > .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  cursor: pointer;
  user-select: none !important;
  padding: 0;
  text-align: center;
}
.el-ico_button > .box > .icon {
  margin-bottom: 0.25rem;
}
.el-ico_button > .box > .icon > img {
  height: 1.75rem;
}
.el-ico_button > .box > span {
  font-size: 0.7rem;
}
.el-ico_button.style-compact {
  padding: 0.25em 0.75em 0.25em 0.25em;
}
.el-ico_button.selected > .box {
  background-color: #88255b;
}
.el-ico_button.disabled > .box {
  color: gray;
  cursor: not-allowed;
}
#element-exit {
  display: none;
}
.el-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding: 0.25em 0.25em 0.25em 0;
  padding-inline-start: 0;
  padding-inline-end: 0;
  overflow: auto;
}
.el-list_item {
  display: flex;
  flex: 1 1 auto;
  width: 100%;
  flex-direction: column;
  padding: 0;
  transition: 0.1s;
  cursor: pointer;
  /* The animation code */
}
.el-list_item.selected > .box {
  color: white;
}
.el-list_item > .box {
  height: 1.5em;
  display: flex;
  background: none;
  padding: 0;
}
.el-list_item > .box > span {
  display: flex;
  flex: 1 1 auto;
  margin: 0 0.5em 0 0.25em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.el-list_item > .box > .toggle,
.el-list_item > .box > .check,
.el-list_item > .box > .icon,
.el-list_item > .box > .context {
  overflow: hidden;
  content: '';
  display: flex;
  height: 1.5em;
}
.el-list_item > .box > .toggle {
  flex: 0 0 1.5em;
}
.el-list_item > .box > .check {
  flex: 0 0 1.6em;
  background: url(../img/ico_check.svg) no-repeat center center / 1em;
}
.el-list_item > .box.open > .header:after {
  transform: rotate(-180deg);
  transition: transform 0.25s;
}
.el-list_item > .box:hover {
  background: #291c41;
  transition: 0s;
}
.el-list_item > .el-children {
  display: flex;
  flex-direction: column;
  padding: 0 0 0 1.5em;
}
.el-list_item.can_open.open > .el-children {
  display: flex;
}
.el-list_item.can_open > .box > .toggle {
  background: url(../img/ico_arrow_down.svg) no-repeat center center / 1em;
  transform: rotate(-90deg);
  transition: transform 0.25s;
}
.el-list_item.can_open.open > .box > .toggle {
  transform: rotate(0deg);
  transition: transform 0.25s;
}
.el-list_item.checked > .box > .check {
  background: url(../img/ico_check_selected.svg) no-repeat center center / 1em;
}
.el-list_item.checked.checked-partial > .box > .check {
  background: url(../img/ico_check_partial.svg) no-repeat center center / 1em;
}
form.el-children,
.el-container > .el-children {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.col-1 {
  flex-basis: 8.3333%;
}
.col-2 {
  flex-basis: 16.6666%;
}
.col-3 {
  flex-basis: 25%;
}
.col-4 {
  flex-basis: 33.3333%;
}
.col-5 {
  flex-basis: 41.6666%;
}
.col-6 {
  flex-basis: 50%;
}
.col-7 {
  flex-basis: 58.3333%;
}
.col-8 {
  flex-basis: 66.6666%;
}
.col-9 {
  flex-basis: 75%;
}
.col-10 {
  flex-basis: 83.3333%;
}
.col-11 {
  flex-basis: 91.6666%;
}
.col-12 {
  flex-basis: 100%;
}
@media only screen and (hover: none) and (pointer: coarse) {
  .mcol-1 {
    flex-basis: 8.3333%;
  }
}
@media only screen and (hover: none) and (pointer: coarse) {
  .mcol-2 {
    flex-basis: 16.6666%;
  }
}
@media only screen and (hover: none) and (pointer: coarse) {
  .mcol-3 {
    flex-basis: 25%;
  }
}
@media only screen and (hover: none) and (pointer: coarse) {
  .mcol-4 {
    flex-basis: 33.3333%;
  }
}
@media only screen and (hover: none) and (pointer: coarse) {
  .mcol-5 {
    flex-basis: 41.6666%;
  }
}
@media only screen and (hover: none) and (pointer: coarse) {
  .mcol-6 {
    flex-basis: 50%;
  }
}
@media only screen and (hover: none) and (pointer: coarse) {
  .mcol-7 {
    flex-basis: 58.3333%;
  }
}
@media only screen and (hover: none) and (pointer: coarse) {
  .mcol-8 {
    flex-basis: 66.6666%;
  }
}
@media only screen and (hover: none) and (pointer: coarse) {
  .mcol-9 {
    flex-basis: 75%;
  }
}
@media only screen and (hover: none) and (pointer: coarse) {
  .mcol-10 {
    flex-basis: 83.3333%;
  }
}
@media only screen and (hover: none) and (pointer: coarse) {
  .mcol-11 {
    flex-basis: 91.6666%;
  }
}
@media only screen and (hover: none) and (pointer: coarse) {
  .mcol-12 {
    flex-basis: 100%;
  }
}
.element-chart {
  user-select: none;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #4e255d;
  margin-bottom: 0.5rem;
}
.element-chart .chart-header {
  display: flex;
  margin-top: 0;
  font-size: 0.75em;
}
.element-chart .chart-header span {
  flex: 0 0 auto;
  font-weight: bold;
}
.element-chart .chart-header .chart-models {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  flex: 1 1 auto;
}
.element-chart .chart-header .chart-models .fc-reset {
  color: white;
  background-color: #39307f;
  padding: 0 6px 2px 6px;
  margin-left: 1em;
  border-radius: 0.25em;
  flex: 0 0 auto;
  cursor: pointer;
}
.element-chart .chart-header .chart-models .fc-export {
  color: white;
  background-color: #39307f;
  padding: 0 6px 2px 6px;
  margin-left: 0.5em;
  border-radius: 0.25em;
  flex: 0 0 auto;
  cursor: pointer;
}
.element-chart .chart-header .chart-models .fc-windyday {
  color: white;
  background-color: #39307f;
  padding: 0 6px 2px 6px;
  margin-right: 0.5em;
  border-radius: 0.25em;
  flex: 0 0 auto;
  cursor: pointer;
}
.element-chart .chart-header .chart-models .fc-windyday.disabled {
  color: gray !important;
}
.element-chart .chart-header .chart-models .fc-model {
  flex: 0 0 auto;
  cursor: pointer;
}
.element-chart .chart-header .chart-models .fc-model.disabled {
  color: gray !important;
}
.element-chart .chart-header .chart-models .fc-separator {
  flex: 0 0 0.5em;
  margin: 0.35em 0.5em 0 1em;
  height: 0.7em;
  border-left: 2px solid #454545;
}
#element-entity_form {
  margin-bottom: 0.75em;
  padding: 0;
}
