﻿/************************************/
/* Dimensions                       */
/************************************/
/************************************/
/* Colors                           */
/************************************/
/************************************/
/* Transactions                     */
/************************************/
/************************************/
/* Specific                         */
/************************************/
/************************************/
/* Elements                         */
/************************************/
h6 {
  font-family: "Roboto";
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 2rem;
  letter-spacing: 0.0075em;
  margin: 0px;
}

h5 {
  font-family: "Roboto";
  font-weight: normal;
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: 0em;
  margin: 0px;
}

h4 {
  font-family: "Roboto";
  font-weight: normal;
  font-size: 2.125rem;
  line-height: 2.5rem;
  letter-spacing: 0.0073529412em;
  margin: 0px;
}

/************************************/
/* Components                       */
/************************************/
.bottom-nav .nav > * .icon-text-view .text, .action-bar .nav li.title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

/************************************/
.bottom-nav .nav, .action-bar .nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.bottom-nav .nav li, .action-bar .nav li {
  margin: 0;
  padding: 0;
}
.bottom-nav .nav li, .action-bar .nav li {
  line-height: 1;
}

/************************************/
/* Global                           */
/************************************/
html, body {
  margin: 0;
  padding: 0;
  font-family: "Roboto";
}

html.no-scroll {
  height: 100vh;
  overflow: hidden;
}
html.no-scroll body {
  height: 100%;
  overflow: hidden;
}

/************************************/
/* Layout                           */
/************************************/
.margin-left-normal {
  margin-left: 16px !important;
}

.margin-left-medium {
  margin-left: 24px !important;
}

/************************************/
/* Theme                            */
/************************************/
.primary-text {
  color: #e53935;
}

.secondary-text {
  color: #1e88e5 !important;
}

.surface {
  background-color: #ffffff !important;
  color: #000 !important;
}

.on-surface-light {
  color: #757575 !important;
}

.on-surface-smaller {
  color: #757575 !important;
  font-family: "Roboto";
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.0178571429em;
}

/************************************/
/* Visible / Hidden                 */
/************************************/
.hidden {
  display: none !important;
}

/************************************/
/* Helpers                          */
/************************************/
.error {
  color: #e53935;
}

.center-text {
  text-align: center !important;
  justify-content: center;
}

.right-text {
  text-align: right;
  justify-content: flex-end;
}

.line-medium {
  line-height: 1.5eM;
}

.uppercase {
  text-transform: uppercase;
}

.fill {
  width: 100%;
  height: 100%;
}

.fill-h {
  width: 100%;
}

.fill-v {
  height: 100%;
}

.padding {
  padding: 16px !important;
}

.margin {
  margin: 16px;
}

.padding-v {
  padding-top: 16px;
  padding-bottom: 16px;
}

.margin-v {
  margin-top: 16px;
  margin-bottom: 16px;
}

.margin-v-medium {
  margin-top: 24px;
  margin-bottom: 24px;
}

.margin-h {
  margin-top: 16px;
  margin-bottom: 16px;
}

.body-2 {
  font-family: "Roboto";
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.0178571429em;
}

.bold {
  font-weight: bold !important;
}

.pre {
  white-space: pre-wrap;
  display: block;
}

/************************************/
/* Effects                         */
/************************************/
@keyframes blink {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
.animate {
  transition-duration: 0.4s;
}

/************************************/
/* Button                           */
/************************************/
@keyframes show-hide {
  0% {
    visibility: visible;
  }
  100% {
    visibility: collapse;
    transform: scaleX(2);
  }
}
/************************************/
.button-text {
  cursor: pointer;
  border: none;
  margin: 0;
  padding: 0;
  outline: none;
  background: inherit;
  font: inherit;
  color: inherit;
  display: inline;
  text-align: unset;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.button-text.horizontal .icon {
  margin-right: 8px;
}

/************************************/
.button {
  font-family: "Roboto";
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 2.25rem;
  letter-spacing: 0.0892857143em;
  text-transform: uppercase;
  border: none;
  font: inherit;
  text-align: center;
  cursor: pointer;
  user-select: none;
  padding: 16px;
  border-radius: 4px;
  padding-top: 8px;
  padding-bottom: 8px;
  min-width: 64px;
}
.button:focus {
  outline: none;
}

/************************************/
.ripple {
  position: relative;
  overflow: hidden;
  clip-path: border-box;
}
.ripple:after {
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  transform: scaleX(0);
  visibility: visible;
}
.ripple.activated:after {
  animation: show-hide;
  animation-duration: 0.3s;
}

/************************************/
/* Icon                             */
/************************************/
.icon {
  font-size: 22px;
  line-height: 24px;
  min-height: 24px;
  min-width: 24px;
  text-align: center;
}

/************************************/
/* ConsoleView                      */
/************************************/
.console-view {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: white;
  flex-direction: column;
  font-size: 12px;
  font-family: monospace;
  user-select: none;
}
.console-view .toolbar {
  border-bottom: solid 1px #e0e0e0;
  padding: 16px;
}
.console-view .body {
  padding: 16px;
  flex-grow: 1;
  overflow-x: scroll;
  overflow-y: scroll;
}
.console-view .body > .console-group > section {
  padding-left: 0;
  border-left: none;
}
.console-view .console-message {
  border-top: solid 1px #eee;
  border-bottom: solid 1px #eee;
  padding-top: 8px;
  padding-bottom: 8px;
  white-space: pre;
}
.console-view .console-message.error {
  color: red;
}
.console-view .console-message.warn {
  color: orange;
}
.console-view .console-message.trace, .console-view .console-message.debug {
  color: #bbb;
}
.console-view .console-group > header {
  font-weight: bold;
}
.console-view .console-group > section {
  border-left: solid #444 1px;
  padding-left: 32px;
}

/************************************/
/* SnackBar                         */
/************************************/
.snack-bar-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  z-index: 50;
  display: flex;
  justify-content: center;
}
.snack-bar-container .snack-bar {
  background: #000;
  color: #fff;
  opacity: 0.8;
  display: flex;
  align-items: center;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  max-width: 100%;
  box-sizing: border-box;
}
.snack-bar-container .snack-bar .content {
  flex-grow: 1;
  flex-shrink: 1;
  white-space: pre-wrap;
  display: block;
  padding: 16px;
}
.snack-bar-container .snack-bar .action {
  font-family: "Roboto";
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 2.25rem;
  letter-spacing: 0.0892857143em;
  text-transform: uppercase;
  line-height: normal;
  padding: 8px;
  padding-left: 0;
  color: #e53935;
  margin-left: -8px;
  flex-shrink: 0;
  height: 32px;
}
.snack-bar-container.close .snack-bar {
  margin-bottom: -100%;
}
.snack-bar-container.open .snack-bar {
  margin-bottom: 0;
}

/************************************/
/* Toast                             */
/************************************/
.toast-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  z-index: 50;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.toast {
  max-width: calc(100vw - 32px * 2);
  margin-top: 24px;
  padding: 16px;
  border-radius: 5px;
  text-align: center;
  background: #333;
  color: #EEE;
  position: relative;
  top: -30vh;
  opacity: 0;
  transition: all 0.7s ease-in-out;
}
.toast.visible {
  opacity: 0.85;
  top: 0;
}
.toast .icon {
  margin-right: 8px;
}
.toast.error .icon {
  color: #e53935;
}

/************************************/
/* Section Editor                   */
/************************************/
.section-editor {
  background-color: none;
}
.section-editor .nav-bar {
  box-shadow: none;
}
.section-editor .nav-bar .button {
  border-color: transparent;
}
.section-editor .nav-bar .button.active {
  border-color: #e53935;
  color: inherit;
}

/************************************/
/* RemovableItemView                */
/************************************/
.removable-item-view {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  transition: all 0.1s 0.1s ease-in-out;
}
.removable-item-view .content {
  background-color: #e0e0e0;
  border-radius: 5px;
  padding: 8px;
  padding-right: 40px;
}
.removable-item-view .remove {
  border-radius: 50%;
  margin-left: -16px;
  background-color: #999;
  color: #ffffff !important;
  width: 40px;
  height: 40px;
  text-align: center;
  flex-shrink: 0;
}
.removable-item-view .remove i {
  line-height: 40px;
  font-size: 16px;
}
.removable-item-view.removed {
  transform: scale(0, 0);
  opacity: 0;
}

/************************************/
/* SelectItemsActivity        */
/************************************/
.select-multiple-items-activity .list-view .add-item, .select-single-item-activity .list-view .add-item {
  margin-bottom: 16px;
  padding: 16px;
  text-align: center;
}
.select-multiple-items-activity .list-view .add-item .icon, .select-single-item-activity .list-view .add-item .icon {
  margin-right: 16px;
}
.select-multiple-items-activity .list-view .details h6, .select-single-item-activity .list-view .details h6 {
  font-family: "Roboto";
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.03125em;
}
.select-multiple-items-activity .list-view .details .sub-text, .select-single-item-activity .list-view .details .sub-text {
  font-family: "Roboto";
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.0178571429em;
  color: #757575;
}

/************************************/
/* PermissionRequestItemView        */
/************************************/
.permission-request-item-view {
  margin-bottom: 16px;
}
.permission-request-item-view .item-content {
  padding: 0;
}
.permission-request-item-view:first-of-type {
  margin-top: 16px;
}

/************************************/
/* MultiItemPicker                  */
/************************************/
.multi-item-picker {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.multi-item-picker .loading-item {
  display: none;
  color: #e53935;
  height: 14px;
}
.multi-item-picker .items-container {
  min-height: 1em;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  border: 1px solid #e0e0e0;
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.multi-item-picker .items-container > * {
  margin-right: 16px;
}
.multi-item-picker .action {
  padding: 8px;
}
.multi-item-picker.loading .loading-item {
  display: block;
}

/************************************/
/* Single Item Picker               */
/************************************/
.single-item-picker {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.single-item-picker .loading-item {
  display: none;
  color: #e53935;
  height: 14px;
}
.single-item-picker .items-container {
  min-height: 1em;
  padding: 8px;
  border: 1px solid #e0e0e0;
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.single-item-picker .action {
  padding: 8px;
}
.single-item-picker .action.clear {
  color: #e57373;
}
.single-item-picker.loading .loading-item {
  display: block;
}

/************************************/
/* MessageView                      */
/************************************/
.message-view {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  box-sizing: border-box;
  justify-content: center;
  background-color: #ffffff;
}
.message-view.full {
  height: 100%;
}
.message-view .text {
  color: #757575;
  line-height: 1.5em;
}
.message-view i.icon {
  font-size: 30vh !important;
  line-height: normal;
  color: #64b5f6;
  opacity: 0.3;
  margin-bottom: 16px;
}
.message-view.error i.icon {
  color: #e53935;
}

/************************************/
/* Content Icon                     */
/************************************/
.content-icon {
  font-size: 256px !important;
  color: #64b5f6;
  opacity: 0.3;
  margin-bottom: 32px;
  text-align: center;
}

/************************************/
/* Content-View                     */
/************************************/
.content-view.card {
  box-sizing: border-box;
  background: #ffffff;
  margin-bottom: 16px;
  padding: 16px;
}
.content-view.card > header {
  font-family: "Roboto";
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.375rem;
  letter-spacing: 0.0071428571em;
}
.content-view.card.no-padding > section {
  padding: 0;
}

/************************************/
/* EmptyView                        */
/************************************/
.empty-view {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 16px;
  text-align: center;
  height: 100%;
  box-sizing: border-box;
  justify-content: center;
  background-color: #ffffff;
}
.empty-view > .text {
  color: #757575;
  line-height: 1.5em;
}
.empty-view > i.icon {
  font-size: 30vh !important;
  line-height: normal;
  color: #64b5f6;
  opacity: 0.3;
  margin-bottom: 16px;
}

/************************************/
/* CheckBox                         */
/************************************/
.checkbox .checkbox-container {
  border: solid 1px #e0e0e0;
  color: #1e88e5;
  width: 24px;
  height: 24px;
  text-align: center;
  margin-right: 16px;
}
.checkbox .checkbox-container i {
  transition: all 0.1s ease-in-out;
  transform: scale(0, 0);
  opacity: 0;
  margin-top: -4px;
  font-size: 32px;
}
.checkbox.selected .checkbox-container i {
  transform: scale(1, 1);
  opacity: 1;
}

.boolean-editor {
  display: inline-flex;
  align-items: center;
}

/************************************/
/* Switch               */
/************************************/
.switch {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}
.switch .checkbox-container {
  display: inline-block;
  position: relative;
  padding-left: 2px;
}
.switch .checkbox-container .unselected-half {
  background-color: #e0e0e0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  width: 24px;
  height: 24px;
  display: inline-block;
  transition-duration: 0.1s;
}
.switch .checkbox-container .selected-half {
  width: 24px;
  height: 24px;
  background-color: #e0e0e0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  display: inline-block;
  transition-duration: 0.1s;
}
.switch .checkbox-container .switch-button {
  border-radius: 50%;
  display: inline-block;
  width: 26px;
  height: 26px;
  position: absolute;
  background-color: #ffffff;
  left: 2px;
  top: -2px;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.switch.selected .checkbox-container .switch-button {
  left: 25px;
}
.switch.primary.selected .checkbox-container .unselected-half, .switch.primary.selected .checkbox-container .selected-half {
  background-color: #ef9a9a;
}
.switch.primary.selected .checkbox-container .switch-button {
  background-color: #e53935;
}
.switch label {
  margin-left: 16px;
}

/************************************/
/* SelectableItemView               */
/************************************/
.selectable-item-view {
  padding: 16px;
  padding-bottom: 8px;
  padding-top: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}
.selectable-item-view.single .checkbox-container {
  border: none;
}

/************************************/
/* PopUp                            */
/************************************/
.popup-container {
  position: absolute;
  z-index: 50;
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  background-color: #ffffff;
  transform: scale(0);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.popup-container.visible {
  opacity: 1;
  transform: scale(1);
}

/************************************/
/* SimpleItemView                   */
/************************************/
.simple-item-view {
  display: flex;
  flex-direction: row;
}
.simple-item-view .details {
  flex-grow: 1;
}
.simple-item-view img.icon {
  height: 64px;
  margin-right: 16px;
}
.simple-item-view i.icon {
  align-self: center;
  font-size: 48px !important;
  margin-right: 16px;
  color: #757575;
  line-height: normal;
}
.simple-item-view .sub-text {
  white-space: pre-wrap;
}

/************************************/
/* ImageEditor                      */
/************************************/
.media-editor .media-container {
  border: solid 1px #e0e0e0;
  padding: 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.media-editor .media-container img {
  object-fit: contain;
  max-height: 25vh;
}
.media-editor .media-container video {
  object-fit: contain;
  max-height: 25vh;
}
.media-editor .file-upload-view {
  margin-top: 16px;
}

/************************************/
/* FileUploadView                   */
/************************************/
.file-upload-view .content {
  display: flex;
  flex-direction: column;
}
.file-upload-view .header {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.file-upload-view .header > * {
  margin-right: 10px;
}
.file-upload-view .select {
  background: #ffffff;
  border-bottom: solid 1px #ff1744;
  width: 100%;
  padding: 16px;
  color: #1e88e5;
  text-decoration: none;
}
.file-upload-view .progress {
  height: 4px;
  position: relative;
  margin-top: 6px;
}
.file-upload-view .progress .bar {
  position: absolute;
  background-color: #1e88e5;
  height: 100%;
}
.file-upload-view .progress .text {
  position: absolute;
  text-align: center;
  height: 100%;
}
.file-upload-view.empty .progress, .file-upload-view.empty .remove {
  display: none;
}
.file-upload-view.selected .progress {
  display: none;
}
.file-upload-view.uploaded .select {
  background-color: #e53935;
  color: #ffffff;
}
.file-upload-view.uploaded .progress .bar {
  background-color: #e53935;
}

/************************************/
/* ItemView                         */
/************************************/
.item-view.compact, .item-view .body-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.item-view.compact > .open-icon, .item-view .body-container > .open-icon {
  margin-right: 16px;
}
.item-view.compact > .body, .item-view .body-container > .body {
  flex-grow: 1;
  padding: 16px;
}
.item-view.compact > .menu, .item-view .body-container > .menu {
  padding: 16px;
  color: #757575;
}
.item-view.compact.activable, .item-view .body-container.activable {
  transition: background-color 0.1s;
}
.item-view.compact.with-menu, .item-view .body-container.with-menu {
  /*padding-right: $size-small !important;*/
}
.item-view.compact.with-menu > .open-icon, .item-view .body-container.with-menu > .open-icon {
  margin-right: 0;
}
.item-view .body-container {
  flex-grow: 1;
}
.item-view.no-padding-h .body-container {
  padding-left: 0;
  padding-right: 0;
}
.item-view.no-padding-v .body-container {
  padding-top: 0;
  padding-bottom: 0;
}
.item-view.no-padding .body-container {
  padding: 0;
}
.item-view.activable > .body-container {
  transition: background-color 0.1s;
}
.item-view .main-actions {
  display: flex;
  flex-direction: row;
  border-top: solid 1px #e0e0e0;
}
.item-view .main-actions > * {
  flex-grow: 1;
  border-right: solid 1px #e0e0e0;
  text-align: center;
  align-items: center;
  color: #757575;
  display: flex;
  flex-direction: column;
  padding: 8px;
}
.item-view .main-actions > * .text {
  font-size: 0.75rem;
  margin-top: 4px;
}
.item-view .main-actions > *:last-of-type {
  border-right: none;
}

/************************************/
/* ContextMenu                      */
/************************************/
.context-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.context-menu li {
  margin: 0;
}
.context-menu li .action {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  transition: background-color 0.1s;
  box-sizing: border-box;
  width: 100%;
}
.context-menu li .action:hover {
  background-color: #e0e0e0;
}
.context-menu li .action .icon {
  color: #757575;
  width: 32px;
}
.context-menu li .action .text {
  font-family: "Roboto";
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.0178571429em;
  line-height: normal;
  margin-left: 16px;
  flex-grow: 1;
}

/************************************/
/* MessageBox                       */
/************************************/
.message-box-container, .pop-up-content-container {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0);
  visibility: hidden;
  z-index: 50;
  transition-duration: 0.4s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  justify-items: center;
}
.message-box-container.visible, .pop-up-content-container.visible {
  transition: background-color 0.4s 0.1s;
  background-color: rgba(0, 0, 0, 0.4);
  visibility: visible;
}
.message-box-container.visible .message-box, .message-box-container.visible .pop-up-content, .pop-up-content-container.visible .message-box, .pop-up-content-container.visible .pop-up-content {
  opacity: 1;
  transform: scale(1);
}
.message-box-container .message-box .body, .pop-up-content-container .message-box .body {
  margin-top: 16px;
}
.message-box-container .message-box, .message-box-container .pop-up-content, .pop-up-content-container .message-box, .pop-up-content-container .pop-up-content {
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  background-color: #ffffff;
  transform: scale(0);
  opacity: 0;
  transition: all 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  width: 600px;
  max-width: calc(100vw - 96px);
  max-height: calc(100vh - 96px);
}
.message-box-container .message-box > .title, .message-box-container .pop-up-content > .title, .pop-up-content-container .message-box > .title, .pop-up-content-container .pop-up-content > .title {
  padding: 24px;
  padding-bottom: 0;
}
.message-box-container .message-box > .body, .message-box-container .pop-up-content > .body, .pop-up-content-container .message-box > .body, .pop-up-content-container .pop-up-content > .body {
  display: flex;
  flex-direction: row;
  padding-left: 24px;
  padding-right: 24px;
  overflow-y: auto;
}
.message-box-container .message-box > .body > .icon, .message-box-container .pop-up-content > .body > .icon, .pop-up-content-container .message-box > .body > .icon, .pop-up-content-container .pop-up-content > .body > .icon {
  margin-right: 16px;
  font-size: 48px;
}
.message-box-container .message-box > .body .list-item, .message-box-container .pop-up-content > .body .list-item, .pop-up-content-container .message-box > .body .list-item, .pop-up-content-container .pop-up-content > .body .list-item {
  padding-left: 0;
  padding-right: 0;
}
.message-box-container .message-box .actions, .message-box-container .pop-up-content .actions, .pop-up-content-container .message-box .actions, .pop-up-content-container .pop-up-content .actions {
  align-self: stretch;
  padding: 8px;
  margin-top: 8px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.message-box-container .message-box .actions .action-view, .message-box-container .pop-up-content .actions .action-view, .pop-up-content-container .message-box .actions .action-view, .pop-up-content-container .pop-up-content .actions .action-view {
  margin-right: 8px;
  background-color: transparent;
  text-transform: uppercase;
  padding: 8px;
}
.message-box-container .message-box .actions .action-view.left, .message-box-container .pop-up-content .actions .action-view.left, .pop-up-content-container .message-box .actions .action-view.left, .pop-up-content-container .pop-up-content .actions .action-view.left {
  margin-right: auto;
}
.message-box-container .message-box .actions .action-view.primary, .message-box-container .pop-up-content .actions .action-view.primary, .pop-up-content-container .message-box .actions .action-view.primary, .pop-up-content-container .pop-up-content .actions .action-view.primary {
  padding: 16px;
}
.message-box-container .message-box .actions .action-view .icon, .message-box-container .pop-up-content .actions .action-view .icon, .pop-up-content-container .message-box .actions .action-view .icon, .pop-up-content-container .pop-up-content .actions .action-view .icon {
  display: none;
}
.message-box-container .message-box .actions .action-view:last-of-type, .message-box-container .pop-up-content .actions .action-view:last-of-type, .pop-up-content-container .message-box .actions .action-view:last-of-type, .pop-up-content-container .pop-up-content .actions .action-view:last-of-type {
  margin-right: 0;
}

/************************************/
/* IconTextView                     */
/************************************/
.icon-text-view {
  display: flex;
  align-items: center;
  transition-duration: 0.4s;
}
.icon-text-view.vertical {
  flex-direction: column;
}
.icon-text-view.vertical .text {
  text-align: center;
}
.icon-text-view.blink .icon {
  animation: blink;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
.icon-text-view.icon-center-h {
  justify-content: center;
}
.icon-text-view.icon-center-h .icon {
  text-align: center;
}
.icon-text-view.icon-big .icon {
  font-size: 32px;
  line-height: 32px;
}
.icon-text-view.no-text .text {
  display: none;
}
.icon-text-view.horizontal {
  flex-direction: row;
  align-items: center;
}
.icon-text-view.horizontal .icon {
  margin-right: 8px;
}

/************************************/
/* Expandible                       */
/************************************/
.expandible > .content-wrapper {
  max-height: 6em;
  transition-duration: 0.4s;
  position: relative;
  overflow: hidden;
  padding-bottom: 1em;
}
.expandible > .content-wrapper:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2em;
  background-image: linear-gradient(rgba(255, 255, 255, 0), #ffffff);
  transition-duration: 0.4s;
}
.expandible > .expand-collapse {
  display: block;
  padding-top: 8px;
  text-align: center;
  cursor: default;
  font-size: 24px;
  color: #757575;
}
.expandible > .expand-collapse i {
  transition-duration: 0.4s;
}
.expandible.expanded > .content-wrapper {
  max-height: 2000px;
}
.expandible.expanded > .content-wrapper:after {
  opacity: 0;
  visibility: collapse;
}
.expandible.expanded > .expand-collapse i {
  transform: rotate(180deg);
}

/************************************/
/* WebView                          */
/************************************/
.web-view {
  width: 100%;
  height: 100%;
  border: none;
}

/************************************/
/* CounterVIew                      */
/************************************/
.counter-view {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.counter-view .value {
  font-family: "Roboto";
  font-weight: normal;
  font-size: 2.125rem;
  line-height: 2.5rem;
  letter-spacing: 0.0073529412em;
  margin: 0px;
  display: block;
  order: 0;
}
.counter-view .title {
  font-family: "Roboto";
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.0178571429em;
  color: #757575;
  display: block;
  order: 1;
}

/************************************/
/* Input Element                    */
/************************************/
.input-element {
  font-family: "Roboto";
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.03125em;
  outline: none;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ef9a9a;
  padding-bottom: 4px;
  color: #000;
}

/************************************/
/* TextEditor                       */
/************************************/
.text-editor, .number-editor {
  width: 100%;
  box-sizing: border-box;
}
.text-editor::placeholder, .number-editor::placeholder {
  color: #ef9a9a;
  font-style: italic;
}
.text-editor::-ms-input-placeholder, .number-editor::-ms-input-placeholder {
  color: #ef9a9a;
  font-style: italic;
}

.rich-text-editor.ql-container {
  height: 20vh;
}

/************************************/
/* SingleItemSelector               */
/************************************/
select.single-item-selector {
  margin-top: 8px;
  width: 100%;
}

button.single-item-selector {
  display: flex;
  flex-direction: row;
  align-items: center;
}
button.single-item-selector span {
  flex-grow: 1;
  margin-right: 16px;
}

/************************************/
/* MultiItemSelector               */
/************************************/
.multi-item-selector.chips {
  background-color: transparent;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -8px;
}
.multi-item-selector.chips > * {
  background-color: #ffffff;
  color: #000;
  border-radius: 16px;
  margin-right: 8px;
  margin-bottom: 8px !important;
  border: solid 1px #e0e0e0;
}
.multi-item-selector.chips > *.selected {
  background-color: #1e88e5;
  color: #ffffff;
}
.multi-item-selector.chips > *:last-of-type {
  margin-right: 0;
  margin-bottom: 8px;
}

/************************************/
/* Date Editor                       */
/************************************/
.date-editor-combo {
  margin-top: 8px;
}
.date-editor-combo select {
  margin-right: 16px;
}
.date-editor-combo select:last-of-type {
  margin-right: 0;
}

/************************************/
/* WizardView                       */
/************************************/
.wizard-view .title {
  margin-bottom: 16px;
}
.wizard-view .cover-image {
  text-align: center;
  margin-bottom: 16px;
}
.wizard-view .cover-image i.icon {
  font-size: 25vh;
  color: #e53935;
  opacity: 0.5;
  line-height: normal;
}
.wizard-view .cover-image img {
  object-fit: cover;
  height: 25vh;
  width: 100%;
}
.wizard-view .wizard-steps {
  position: relative;
  margin-top: 16px;
  margin-bottom: 24px;
}
.wizard-view .wizard-steps:before {
  position: absolute;
  width: 100%;
  height: 2px;
  top: 50%;
  background-color: #ef9a9a;
  content: " ";
}
.wizard-view .wizard-steps ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}
.wizard-view .wizard-steps ul li {
  border-radius: 50%;
  border: solid 1px #e0e0e0;
  padding: 8px;
  text-align: center;
  width: 1em;
  height: 1em;
  margin: 0;
  background: #ffffff;
  z-index: 1;
}
.wizard-view .wizard-steps ul li.done {
  background-color: #ef9a9a;
  color: #ffffff;
}
.wizard-view .wizard-steps ul li.active {
  background-color: #c62828;
  color: #ffffff;
}
.wizard-view .actions {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.wizard-view .actions > *.hidden {
  display: none;
}
.wizard-view .actions > *:last-of-type {
  margin-right: 0;
}

/************************************/
/* PropertyView                     */
/************************************/
.property-view label {
  display: block;
  color: #757575;
  font-family: "Roboto";
  font-weight: normal;
  font-size: 0.75rem;
  line-height: 1.25rem;
  letter-spacing: 0.0333333333em;
}
.property-view .error {
  color: #e53935;
  font-size: 0.8125rem;
}

/************************************/
/* ObjectEditor                     */
/************************************/
.object-editor {
  display: flex;
  flex-direction: column;
}
.object-editor > .property-view {
  margin-bottom: 16px;
}
.object-editor > .property-view:last-of-type {
  margin-bottom: 0;
}
.object-editor.horizontal {
  flex-direction: row;
}
.object-editor.horizontal > .property-view {
  margin-bottom: 0;
  margin-right: 16px;
}
.object-editor.horizontal > .property-view:last-of-type {
  margin-right: 0;
}
.object-editor.horizontal > .property-view.no-label {
  margin-top: 20px;
}

/************************************/
/* LocationView                     */
/************************************/
.location-view img {
  width: 100%;
  image-rendering: optimizeQuality;
  cursor: pointer;
}
.location-view address {
  margin-bottom: 8px;
}
.location-view address label {
  font-family: "Roboto";
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.009375em;
  display: block;
}
.location-view address span {
  white-space: pre-wrap;
  font-family: "Roboto";
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.0178571429em;
  font-style: italic;
  color: #757575;
}

/************************************/
/* TabView                          */
/************************************/
.tab-view {
  background-color: #e53935;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tab-view .nav {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
}
.tab-view .nav::-webkit-scrollbar {
  display: none;
}
.tab-view .nav > * {
  font-family: "Roboto";
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 2.25rem;
  letter-spacing: 0.0892857143em;
  text-transform: uppercase;
  color: #ef9a9a;
  cursor: default;
  padding: 0;
  padding-left: 16px;
  padding-right: 16px;
  border-bottom: 2px solid #e53935;
  flex-shrink: 0;
  transition-duration: 0.4s;
  transition-delay: 0.05s;
}
.tab-view .nav > *.active {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

/************************************/
/* MapView                           */
/************************************/
/************************************/
/* SearchView                       */
/************************************/
.search-view {
  position: relative;
}
.search-view input {
  box-sizing: border-box;
}
.search-view .loading-item {
  position: absolute;
  color: #ffffff;
  right: 4px;
  opacity: 0;
  bottom: 16px;
  height: 14px;
  transition-duration: 0.4s;
}
.search-view.searching input {
  padding-right: 32px;
}
.search-view.searching .loading-item {
  opacity: 1;
}

/************************************/
/* ProgressView                     */
/************************************/
.progress-view {
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: center;
  display: none;
  opacity: 0;
  transition-duration: 0.4s;
  transition-delay: 0.1s;
  transition: display 0s;
}
.progress-view .spinner {
  color: #ff1744;
  height: 44px;
}
.progress-view.visible {
  display: flex;
  opacity: 1;
}
.progress-view.full {
  position: absolute;
  align-items: center;
  justify-content: center;
  max-width: none !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  background-color: transparent;
}

/************************************/
/* ActionBar                        */
/************************************/
.action-bar {
  padding-left: 16px;
  padding-right: 16px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  background-color: #e53935;
  z-index: 5;
  height: 52px;
  transition-duration: 0.4s;
  position: relative;
}
.action-bar .nav {
  justify-content: space-between;
  width: 100%;
  position: relative;
  top: 8px;
  margin: auto;
  min-height: 36px;
}
.action-bar .nav li.main-action {
  margin-right: 24px;
  cursor: default;
  padding: 8px;
  margin-left: -8px;
  transition-duration: 0.4s;
}
.action-bar .nav li.title {
  font-family: "Roboto";
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 2rem;
  letter-spacing: 0.0075em;
  margin: 0px;
  line-height: normal;
  margin-right: 32px;
}
.action-bar .nav li.main-content {
  flex-grow: 1;
}
.action-bar .nav li.action-item {
  margin-right: 16px;
}
.action-bar .nav li.action-item .action-view {
  padding: 8px;
}
.action-bar .nav li.action-item .action-view .text {
  display: none;
}
.action-bar .nav li.action-item:last-of-type {
  margin-right: -8px;
}
.action-bar .nav li.action-item a {
  color: #ffffff;
}
.action-bar .nav li.action-item.search-expanded {
  flex-grow: 1;
  width: 100%;
}
.action-bar .nav li.action-item.search-expanded .search-view input {
  font-family: "Roboto";
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.03125em;
  outline: none;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ef9a9a;
  padding-bottom: 4px;
  color: #ffffff;
  width: 100%;
}
.action-bar .nav li.action-item.search-expanded .search-view input::placeholder {
  color: #ef9a9a;
  font-style: italic;
}
.action-bar .nav li.action-item.search-expanded .search-view input::-ms-input-placeholder {
  color: #ef9a9a;
  font-style: italic;
}
.action-bar .nav li.action-item.search-expanded .search-view input:focus {
  outline: none;
}
.action-bar .nav.main {
  color: #ffffff;
}
.action-bar .nav.context {
  opacity: 0;
  color: #fff;
  visibility: hidden;
  top: -32px;
}
.action-bar .nav.context li.main-action {
  opacity: 0;
  transform: rotate(180deg);
}
.action-bar.context-mode {
  background-color: #555;
  color: #fff;
}
.action-bar.context-mode .nav.main {
  opacity: 0;
  visibility: hidden;
}
.action-bar.context-mode .nav.main li.main-action {
  opacity: 0;
  transform: rotate(-180deg);
}
.action-bar.context-mode .nav.context {
  opacity: 1;
  visibility: visible;
}
.action-bar.context-mode .nav.context li.main-action {
  opacity: 1;
  transform: rotate(0deg);
}

/************************************/
/* BottomNavigation                 */
/************************************/
.action.transparent, .action-view.transparent, button.transparent {
  background-color: transparent !important;
}
.action.smaller, .action-view.smaller, button.smaller {
  font-size: smaller !important;
}
.action.lower, .action-view.lower, button.lower {
  background-color: transparent !important;
  font-size: smaller !important;
}
.action.primary, .action-view.primary, button.primary {
  background-color: #e53935 !important;
  color: #ffffff !important;
}
.action.secondary, .action-view.secondary, button.secondary {
  background-color: #1e88e5 !important;
  color: #ffffff !important;
}

/************************************/
/* BottomNavigation                 */
/************************************/
.bottom-nav {
  padding-left: 16px;
  padding-right: 16px;
  flex-shrink: 0;
  box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 56px;
}
.bottom-nav .nav {
  justify-content: space-around;
  width: 100%;
}
.bottom-nav .nav > * {
  padding-top: 8px;
  padding-bottom: 8px;
  flex-grow: 1;
  color: #757575;
  cursor: default;
}
.bottom-nav .nav > *.active {
  color: #e53935;
}
.bottom-nav .nav > * .icon-text-view {
  flex-direction: column;
}
.bottom-nav .nav > * .icon-text-view .text {
  -webkit-user-select: none;
  font-size: 0.75rem;
}

/************************************/
/* FloatingContainer                */
/************************************/
.floating {
  background-color: #1e88e5;
  color: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.4);
  margin: 16px;
  pointer-events: visible;
}
.floating .text {
  display: none;
}
.floating .icon {
  font-size: 24px;
  line-height: 56px;
}

.floating-container {
  z-index: 1;
  overflow: visible;
  justify-content: flex-end;
  pointer-events: none;
  background-color: transparent;
}
.floating-container .wrapper {
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  justify-content: flex-end;
  overflow: visible;
  pointer-events: none;
  background-color: transparent;
}
.floating-container.full .wrapper {
  align-items: center;
}
.floating-container.full .floating {
  width: auto;
  height: auto;
  border-radius: 10px;
  text-align: match-parent;
  padding-left: 16px;
  padding-right: 16px;
}
.floating-container.full .floating .text {
  display: inline-block;
  margin-left: 1em;
  vertical-align: middle;
  text-transform: uppercase;
}
.floating-container.full .floating .icon {
  vertical-align: middle;
}

/************************************/
/* Item                             */
/************************************/
.item-relative {
  position: relative;
}

.item-absolute {
  position: absolute;
}
.item-absolute.fill-h {
  left: 0px;
  right: 0px;
}
.item-absolute.fill-v {
  top: 0px;
  bottom: 0px;
}
.item-absolute.fill {
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}
.item-absolute.right {
  right: 0px;
}
.item-absolute.top {
  top: 0px;
}
.item-absolute.bottom {
  bottom: 0px;
}
.item-absolute.left {
  left: 0px;
}
.item-absolute.center-h {
  left: 50%;
  transform: translate(-50%, 0);
}
.item-absolute.center-v {
  top: 50%;
  margin-top: -50%;
  transform: translate(0, -50%);
}

/************************************/
/* ItemsView                        */
/************************************/
.items-editor.separator > .list-item {
  border-bottom: dashed 1px #e0e0e0;
}
.items-editor.separator > .list-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.items-editor.no-padding-h > .list-item > .item-view > .body-container {
  padding-left: 0;
  padding-right: 0;
}
.items-editor > * {
  background: #ffffff;
}
.items-editor > .add-item {
  text-align: center;
  margin-top: 8px;
}
.items-editor > .add-item .action {
  padding: 8px;
  display: block;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.items-editor > .add-item .action .icon {
  margin-right: 8px;
}

/************************************/
/* GraphEditor                      */
/************************************/
.graph-editor {
  background-color: #fff;
  max-height: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: row;
}
.graph-editor .toolbar {
  display: flex;
  flex-direction: column;
  background-color: #eee;
}
.graph-editor .toolbar .tool {
  padding: 8px;
}
.graph-editor .toolbar .tool.active {
  background: #1e88e5;
  color: #ffffff;
}
.graph-editor .debug {
  position: absolute;
  background: #fff;
  left: 50px;
}
.graph-editor .view-list {
  position: relative;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  position: relative;
  flex-grow: 1;
}
.graph-editor .view-list > * {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.graph-editor .graph-editor-panel {
  position: absolute;
  background-color: #666;
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.graph-editor .graph-editor-panel .content {
  padding: 16px;
}
.graph-editor .graph-editor-panel .content .input-element, .graph-editor .graph-editor-panel .content .list-view {
  background-color: #333;
  color: #ddd;
  border: solid 1px #888;
  border-radius: 4px;
  padding: 4px;
}
.graph-editor .graph-editor-panel .content .single-item-picker .items-container {
  background-color: #333;
  color: #ddd;
  border: solid 1px #888;
  border-radius: 4px;
  padding: 8px;
}
.graph-editor .graph-editor-panel .content .single-item-picker button i {
  color: #ddd;
}
.graph-editor .graph-editor-panel label {
  color: #aaa;
}
.graph-editor header {
  user-select: none;
  background-color: #333;
  color: #ddd;
  padding: 8px;
}
.graph-editor .empty-view {
  background-color: transparent;
}
.graph-editor .empty-view > .icon {
  font-size: 192px !important;
  color: #aaa;
}
.graph-editor .empty-view > .text {
  color: #aaa;
}
.graph-editor .icon-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.graph-editor .icon-list > * {
  flex-basis: 0;
  flex-grow: 1;
  background-color: transparent;
  justify-content: center;
  border: solid 1px transparent;
}
.graph-editor .icon-list > *.selected {
  border: solid 1px #aaa;
}
.graph-editor .icon-list > * i.icon {
  line-height: normal;
  font-size: 32px;
}
.graph-editor .graph-editor-text {
  user-select: none;
  background-color: #333;
  color: #ddd;
  padding: 4px;
  border-radius: 4px;
}

/************************************/
/* ItemsView                        */
/************************************/
.items-view.padding-items > *, .items-editor.padding-items > * {
  padding: 16px;
}
.items-view.margin-items > *, .items-editor.margin-items > * {
  margin: 16px;
}
.items-view.paddng-items-v > *, .items-editor.paddng-items-v > * {
  padding-top: 16px;
  padding-bottom: 16px;
}
.items-view.paddng-items-h > *, .items-editor.paddng-items-h > * {
  padding-left: 16px;
  padding-right: 16px;
}
.items-view.margin-items-v > *, .items-editor.margin-items-v > * {
  margin-top: 8px;
  margin-bottom: 8px;
}
.items-view.margin-items-v > *:first-of-type, .items-editor.margin-items-v > *:first-of-type {
  margin-top: 0;
}
.items-view.margin-items-h > *, .items-editor.margin-items-h > * {
  margin-left: 16px;
  margin-right: 16px;
}
.items-view.absolute, .items-editor.absolute {
  position: relative;
}
.items-view.absolute > *, .items-editor.absolute > * {
  position: absolute;
}
.items-view.absolute > *.fill-h, .items-editor.absolute > *.fill-h {
  left: 0px;
  right: 0px;
}
.items-view.absolute > *.fill-v, .items-editor.absolute > *.fill-v {
  top: 0px;
  bottom: 0px;
}
.items-view.absolute > *.fill, .items-editor.absolute > *.fill {
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}
.items-view.absolute > *.right, .items-editor.absolute > *.right {
  right: 0px;
}
.items-view.absolute > *.top, .items-editor.absolute > *.top {
  top: 0px;
}
.items-view.absolute > *.bottom, .items-editor.absolute > *.bottom {
  bottom: 0px;
}
.items-view.absolute > *.left, .items-editor.absolute > *.left {
  left: 0px;
}
.items-view.absolute > *.center-h, .items-editor.absolute > *.center-h {
  left: 50%;
  transform: translate(-50%, 0);
}
.items-view.absolute > *.center-v, .items-editor.absolute > *.center-v {
  top: 50%;
  margin-top: -50%;
  transform: translate(0, -50%);
}
.items-view.absolute.fill-items > *, .items-editor.absolute.fill-items > * {
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}
.items-view.scroll-v, .items-editor.scroll-v {
  overflow-y: scroll;
}
.items-view.scroll > *, .items-editor.scroll > * {
  flex-shrink: 0;
}
.items-view.fill-items, .items-editor.fill-items {
  align-items: stretch;
}
.items-view.fill-items > *, .items-editor.fill-items > * {
  flex-grow: 1;
}
.items-view.center-items, .items-editor.center-items {
  align-items: center;
  justify-content: center;
}
.items-view.vertical, .items-editor.vertical {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}
.items-view.vertical > *, .items-editor.vertical > * {
  max-width: 100%;
}
.items-view.vertical > *.left, .items-editor.vertical > *.left {
  align-self: flex-start;
}
.items-view.vertical > *.right, .items-editor.vertical > *.right {
  align-self: flex-end;
}
.items-view.vertical > *.center-h, .items-editor.vertical > *.center-h {
  align-self: center;
  width: auto !important;
}
.items-view.vertical > *.fill-v, .items-editor.vertical > *.fill-v {
  flex-grow: 1;
}
.items-view.vertical > *.fill-h, .items-editor.vertical > *.fill-h {
  align-self: stretch;
}
.items-view.vertical.small > *, .items-editor.vertical.small > * {
  max-width: 400px !important;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.items-view.vertical.scroll, .items-editor.vertical.scroll {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  height: 100%;
}
.items-view.vertical.scroll-h, .items-editor.vertical.scroll-h {
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
.items-view.vertical.center-items-h, .items-editor.vertical.center-items-h {
  align-items: center;
}
.items-view.vertical.center-items-v, .items-editor.vertical.center-items-v {
  justify-content: center;
}
.items-view.vertical.fill-items-h, .items-editor.vertical.fill-items-h {
  align-items: stretch;
}
.items-view.vertical.fill-items-v > *, .items-editor.vertical.fill-items-v > * {
  flex-grow: 1;
}
.items-view.horizontal-wrap, .items-editor.horizontal-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.items-view.horizontal-wrap > *, .items-editor.horizontal-wrap > * {
  margin-right: 16px;
}
.items-view.horizontal-wrap > *:last-of-type, .items-editor.horizontal-wrap > *:last-of-type {
  margin-right: 0;
}
.items-view.horizontal, .items-editor.horizontal {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
}
.items-view.horizontal > *, .items-editor.horizontal > * {
  max-height: 100%;
}
.items-view.horizontal > *.top, .items-editor.horizontal > *.top {
  align-self: flex-start;
}
.items-view.horizontal > *.bottom, .items-editor.horizontal > *.bottom {
  align-self: flex-end;
}
.items-view.horizontal > *.center-v, .items-editor.horizontal > *.center-v {
  align-self: center;
}
.items-view.horizontal > *.fill-h, .items-view.horizontal > *.grow-h, .items-editor.horizontal > *.fill-h, .items-editor.horizontal > *.grow-h {
  flex-grow: 1;
}
.items-view.horizontal > *.fill-v, .items-editor.horizontal > *.fill-v {
  align-self: stretch;
}
.items-view.horizontal.fill-items-h > *, .items-editor.horizontal.fill-items-h > * {
  flex-grow: 1;
}
.items-view.horizontal.fill-items-v, .items-editor.horizontal.fill-items-v {
  align-items: stretch;
}
.items-view.horizontal.center-items-v, .items-editor.horizontal.center-items-v {
  align-items: center;
}
.items-view.horizontal.center-items-h, .items-editor.horizontal.center-items-h {
  justify-content: center;
}
.items-view.horizontal.scroll, .items-editor.horizontal.scroll {
  overflow-x: auto;
  max-height: 100%;
}

/************************************/
/* BottomSheet                      */
/************************************/
@keyframes bottom-sheet-open {
  0% {
    overflow-y: hidden;
  }
  100% {
    overflow-y: auto;
    height: auto !important;
  }
}
.bottom-sheet {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 10;
  background-color: #ffffff;
  box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  max-height: 100%;
  box-sizing: border-box;
  padding: 16px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bottom-sheet li {
  margin: 0;
  padding: 0;
}
.bottom-sheet.animate {
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}
.bottom-sheet .opener {
  width: 100%;
  text-align: center;
}
.bottom-sheet .opener i {
  transition-duration: 0.4s;
}
.bottom-sheet.open .opener i {
  transform: rotate(180deg);
}
.bottom-sheet.moving {
  transition-duration: 0s;
}
.bottom-sheet.head:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2em;
  background-image: linear-gradient(rgba(255, 255, 255, 0), #ffffff);
  transition-duration: 0.4s;
}
.bottom-sheet.close {
  padding: 0;
}
.bottom-sheet.open {
  /*
  overflow-y: auto;
  animation: bottom-sheet-open;
  animation-duration: $trans-duration-normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
  */
}

/************************************/
/* GridView                         */
/************************************/
.grid-view {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

/************************************/
/* ListView                    */
/************************************/
@keyframes fade-in-block {
  0% {
    display: block;
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
@keyframes fade-in-flex {
  0% {
    display: flex;
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
@keyframes fade-out {
  99% {
    opacity: 0;
    transform: scale(0, 0);
  }
  100% {
    display: none;
    opacity: 0;
    height: 0;
    transform: scale(0, 0);
    padding: 0;
    margin: 0;
  }
}
.list-view {
  background-color: #e0e0e0;
}
.list-view > header > * {
  margin-bottom: 16px;
  background-color: #ffffff;
  padding-bottom: 16px;
  padding-top: 16px;
}
.list-view > * {
  margin-bottom: 16px;
  background-color: #ffffff;
  box-sizing: border-box;
}
.list-view > *.loading-item {
  padding-bottom: 16px;
  padding-top: 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  color: #ff1744;
  background-color: transparent;
  overflow: hidden;
  box-sizing: border-box;
}
.list-view > *:last-of-type {
  margin-bottom: 0;
}
.list-view.loaded .loading-item {
  animation: fade-out;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}
.list-view.loading .loading-item {
  animation: fade-in-flex;
  animation-duration: 0.4s;
  animation-delay: 0.1s;
  animation-fill-mode: forwards;
}
.list-view.compact > * {
  margin-bottom: 0;
}
.list-view.compact.separator {
  border-bottom: dotted 1px #e0e0e0;
}
.list-view.compact.separator:last-of-type {
  border-bottom: none;
}
.list-view.compact.loading .loading-item {
  transition-delay: 1s;
}

/************************************/
/* Master-details                   */
/************************************/
.master-details.split-h {
  display: flex;
  flex-direction: row;
}
.master-details.split-h > .master {
  flex-grow: 1;
}
.master-details.split-h > .details {
  border-left: solid 2px #e0e0e0;
  width: 50%;
  flex-shrink: 1;
}

/************************************/
/* Message                          */
/************************************/
.message:not(.property-view) {
  border-style: solid;
  border-width: 1px;
  padding: 16px;
  white-space: pre-wrap;
  display: block;
}
.message:not(.property-view) .icon {
  margin-right: 8px;
}
.message:not(.property-view).warning {
  border-color: #fbc02d;
  background-color: #fff59d;
}
.message:not(.property-view).warning .icon {
  color: #fbc02d;
}
.message:not(.property-view).info {
  border-color: #039be5;
  background-color: #e1f5fe;
}
.message:not(.property-view).info .icon {
  color: #039be5;
}

/************************************/
/* Card                            */
/************************************/
.card-view {
  padding: 16px;
  background-color: #ffffff;
}
.card-view.bordered {
  border: 1px solid #e0e0e0;
}
.card-view.shadow {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.card-view.rounded {
  border-radius: 5px;
}
/************************************/
/* Activity                        */
/************************************/
.activity {
  background-color: #e0e0e0;
  justify-content: space-between;
}
.activity > .activity-content {
  overflow: hidden;
  position: relative;
}
.activity .nav-bar + .floating-container {
  bottom: 50px;
}
.activity a {
  color: #1e88e5;
  cursor: pointer;
}

/************************************/
/* SearchActivity                   */
/************************************/
/************************************/
/* Sections-View                    */
/************************************/
.sections-view section {
  margin-top: 24px;
}
.sections-view section .header {
  padding-top: 16px;
  padding-bottom: 16px;
}

/************************************/
/* Container                        */
/************************************/
/************************************/
/* Image                            */
/************************************/
.image-container img {
  width: 100%;
}

/************************************/
/* Drawer                           */
/************************************/
.drawer-container {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 20;
  transition-duration: 0.4s;
}
.drawer-container.visible {
  background-color: rgba(0, 0, 0, 0.3);
}
.drawer-container.hiding, .drawer-container.showing {
  background-color: rgba(0, 0, 0, 0);
  visibility: hidden;
}
.drawer-container.hiding .drawer, .drawer-container.showing .drawer {
  left: -230pt;
  opacity: 0;
}
.drawer-container .drawer {
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
  transition-duration: 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  width: 230pt;
  height: 100%;
  overflow-y: auto;
  background-color: #ffffff;
  touch-action: pan-y;
}
.drawer-container .drawer > header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  background-color: #1e88e5;
  margin-bottom: 16px;
  color: #ffffff;
}
.drawer-container .drawer section {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: solid 1px #e0e0e0;
}
.drawer-container .drawer section label {
  padding-left: 16px;
  padding-right: 16px;
  display: block;
  margin-bottom: 16px;
  color: #757575;
}
.drawer-container .drawer section .menu .action-view {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  height: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  text-align: left;
}
.drawer-container .drawer section .menu .action-view.active {
  background-color: #e0e0e0;
}
.drawer-container .drawer section .menu .action-view.active .icon {
  color: #000;
}
.drawer-container .drawer section .menu .action-view .icon {
  color: #757575;
  width: 24px;
}
.drawer-container .drawer section .menu .action-view .icon.hidden {
  display: none;
}
.drawer-container .drawer section .menu .action-view .text {
  font-family: "Roboto";
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.0178571429em;
  margin-left: 24px;
  text-overflow: ellipsis;
  overflow: hidden;
  flex-grow: 1;
}
.drawer-container .drawer section .menu .action-view .badge {
  font-family: "Roboto";
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.0178571429em;
  text-align: right;
  color: #757575;
}
.drawer-container .drawer section:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
}

/************************************/
/* Blocker                          */
/************************************/
.blocker {
  transition-duration: 0.4s;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.blocker .operation-view {
  transition-duration: 0.4s;
  opacity: 0;
}
.blocker .spinner-container {
  transition-duration: 0.4s;
  opacity: 0;
  color: #ff1744;
}
.blocker.show {
  transition-delay: 0.1s;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: auto;
  opacity: 1;
}
.blocker.show .spinner-container, .blocker.show .operation-view {
  transition-delay: 2s;
  opacity: 1;
}

/************************************/
/* OperationView                    */
/************************************/
.operation-view {
  background-color: #ffffff;
  padding: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.operation-view > .spinner-container {
  transition-delay: 0;
  opacity: 1;
}
.operation-view > .text {
  margin-left: 8px;
}

/************************************/
/* SlidePageHost                   */
/************************************/
@keyframes hide-on-end {
  100% {
    display: none;
  }
}
/************************************/
.single-page-host {
  position: relative;
  height: 100%;
  background-color: transparent;
}
.single-page-host .page {
  width: 100%;
  height: 100%;
}

/************************************/
.slide-page-host {
  position: relative;
  height: 100%;
  background-color: #c62828;
  /************************************/
  /************************************/
  /************************************/
  /************************************/
}
.slide-page-host .page-container {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #e0e0e0;
}
.slide-page-host .page-container .page {
  width: 100%;
  height: 100%;
}
.slide-page-host .page-container.animate {
  transition-duration: 0.5s;
}
.slide-page-host .page-container.immediate {
  transition-duration: 0s;
}
.slide-page-host .page-container.hide {
  display: none;
}
.slide-page-host.h-slide .page-container {
  top: 0;
  left: 0;
}
.slide-page-host.h-slide .page-container.prev {
  transform: translateX(-100%);
}
.slide-page-host.h-slide .page-container.next {
  transform: translateX(100%);
}
.slide-page-host.h-slide .page-container.active {
  transform: none;
}
.slide-page-host.up-down .page-container {
  top: 0;
  left: 0;
  z-index: 0;
}
.slide-page-host.up-down .page-container.animate {
  transition-duration: 0.4s;
}
.slide-page-host.up-down .page-container.next {
  transform: translateY(100%);
  z-index: 1;
}
.slide-page-host.up-down .page-container.prev {
  z-index: 0;
}
.slide-page-host.up-down .page-container.active {
  transform: none;
  z-index: 1;
}
.slide-page-host.dissolve .page-container {
  left: 0;
  opacity: 0;
  top: 0;
}
.slide-page-host.dissolve .page-container.active {
  opacity: 1;
}
.slide-page-host.pop-up-down .page-container {
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
}
.slide-page-host.pop-up-down .page-container.prev {
  transform: scale(0.8, 0.8);
}
.slide-page-host.pop-up-down .page-container.next {
  transform: translate(0, 90%);
}
.slide-page-host.pop-up-down .page-container.active {
  visibility: visible;
  opacity: 1;
  transform: none;
}

/************************************/
/* BodyScroll                       */
/************************************/
html.body-scroll {
  overflow: visible !important;
  height: auto !important;
  background-color: #e0e0e0;
}
html.body-scroll body {
  overflow: visible !important;
  height: auto !important;
}
html.body-scroll .scroll-content {
  margin-top: 50px;
  margin-bottom: 50px;
}
html.body-scroll .scroll-content .scroll {
  overflow: visible !important;
  height: auto !important;
}
html.body-scroll .action-bar, html.body-scroll .drawer-container, html.body-scroll .nav-bar, html.body-scroll button {
  pointer-events: auto;
}
html.body-scroll .content-activity {
  background-color: transparent;
}
html.body-scroll .content-activity > .activity-content {
  pointer-events: none;
}
html.body-scroll .page-container {
  background-color: transparent;
}
html.body-scroll .page-container.next {
  height: 0;
}
html.body-scroll .slide-page-host {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  z-index: 10;
  pointer-events: none;
}

@media screen and (-webkit-device-pixel-ratio: 1.25) {
  body {
    zoom: 1;
  }
}
*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-track {
  background-color: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(60, 60, 60, 0.7);
  border-radius: 5px;
}

.items-view.scroll-v {
  overflow-y: overlay;
}

.chart-view {
  display: flex;
  flex-direction: column;
}
.chart-view .chart {
  padding: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  height: 400px;
}
.chart-view .chart > .main-view {
  flex-grow: 1;
  width: 100%;
}
.chart-view .chart-value-info-view {
  position: absolute;
  border-left: solid 1px #000;
  pointer-events: none;
  font-size: 13px;
}
.chart-view .chart-value-info-view .values {
  background-color: rgba(255, 255, 255, 0.8);
  left: 8px;
  position: absolute;
}
.chart-view .chart-value-info-view .values .x-value {
  font-weight: bold;
}
.chart-view .chart-value-info-view .values .serie-value {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.chart-view .chart-value-info-view .values .serie-value .icon {
  font-size: 13px;
}
.chart-view .chart-value-info-view .values .serie-value .name {
  margin-right: 1em;
  flex-grow: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.chart-view .chart-value-info-view .values .serie-value .value {
  text-align: right;
}
.chart-view .chart-value-info-view.left .values {
  right: 8px;
  left: unset;
}
.chart-view .chart-zoom {
  height: 50px;
  width: 100%;
  margin-top: 10px;
  background-color: #eee;
  position: relative;
}
.chart-view .chart-zoom .zoom-view {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.chart-view .chart-zoom .slice {
  position: absolute;
  top: 0;
  bottom: 0;
  cursor: move;
  background-color: rgba(76, 175, 80, 0.25);
  touch-action: none;
}
.chart-view .chart-zoom .slice .left {
  top: 0;
  bottom: 0;
  left: -1.5px;
  width: 3px;
  cursor: w-resize;
  position: absolute;
  background-color: rgba(76, 175, 80, 0.8);
  touch-action: none;
}
.chart-view .chart-zoom .slice .right {
  top: 0;
  bottom: 0;
  right: -1.5px;
  width: 3px;
  cursor: w-resize;
  position: absolute;
  background-color: rgba(76, 175, 80, 0.8);
  touch-action: none;
}

.main-activity {
  justify-content: start;
}

.serie-view {
  display: grid;
  grid-template-areas: "a  b  b" "a  c  d";
  grid-template-columns: auto 1fr 1fr;
  grid-template-rows: auto 1fr;
  height: 100%;
}
.serie-view .basic-serie-editor {
  grid-area: a;
  max-width: 30vw;
}
.serie-view .chart-view {
  grid-area: b;
}
.serie-view .chart-stats-view {
  grid-area: d;
  padding-right: 16px;
  padding-left: 16px;
}
.serie-view .serie-transform-view {
  grid-area: c;
  height: 100%;
  overflow-y: scroll;
}

.chart-stats-view {
  overflow-y: overlay;
}
.chart-stats-view .title {
  padding: 4px;
  text-align: center;
  margin-bottom: 8px;
}
.chart-stats-view table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Roboto";
}
.chart-stats-view table td, .chart-stats-view table th {
  padding: 8px;
  border: solid 1px #e0e0e0;
}
.chart-stats-view table thead tr {
  background-color: #e53935;
  color: #ffffff;
}
.chart-stats-view table tr td:first-child {
  font-weight: bold;
}
.chart-stats-view table tr td:first-child .icon {
  font-size: 14px;
  vertical-align: central;
  margin-right: 4px;
}
.chart-stats-view table tr .number {
  text-align: right;
}
.chart-stats-view table tr .y {
  display: block;
  text-align: right;
}
.chart-stats-view table tr .x {
  display: block;
  text-align: right;
  font-size: 14px;
  color: #757575;
}

.basic-serie-editor {
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.basic-serie-editor > select {
  margin-bottom: 16px;
}
.basic-serie-editor .list-view {
  background-color: transparent;
  flex-grow: 1;
}

.dimension-filter-editor header {
  background-color: #666;
  color: #fff;
  padding: 8px;
}
.dimension-filter-editor .multi-item-selector .removable-item-view {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 0;
}
.dimension-filter-editor .multi-item-selector .removable-item-view.removed {
  transform: unset;
  opacity: unset;
}
.dimension-filter-editor .multi-item-selector .removable-item-view.removed .content {
  text-decoration: line-through;
}
.dimension-filter-editor .multi-item-selector .removable-item-view.removed button {
  background-color: #1e88e5;
}
.dimension-filter-editor .multi-item-selector .removable-item-view.removed button i {
  color: #ffffff;
}
.dimension-filter-editor .multi-item-selector .removable-item-view .content {
  background-color: transparent;
  flex-grow: 1;
  padding: 0;
}
.dimension-filter-editor .multi-item-selector .removable-item-view button {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-color: #ffffff;
}
.dimension-filter-editor .multi-item-selector .removable-item-view button i {
  line-height: 32px;
  color: #000;
}
.dimension-filter-editor .expandible > .content-wrapper {
  max-height: 50px;
  padding-bottom: 0;
}
.dimension-filter-editor .expandible .expand-collapse {
  padding-top: 0;
}
.dimension-filter-editor .expandible.expanded > .content-wrapper {
  max-height: 1000px;
}

.input-element {
  border: solid 1px #e0e0e0;
}

.editor-container {
  height: 100%;
  background: #fff;
}

@media screen and (max-width: 980px) {
  .serie-view {
    display: block;
    overflow-y: scroll !important;
  }
  .serie-view .chart-view {
    height: unset;
    height: calc(100% - 30px);
  }
  .serie-view .chart-view .chart-zoom {
    height: 20px;
  }
  .serie-view .chart-view .chart-zoom .slice {
    border-left: solid 2px #4caf50;
    border-right: solid 2px #4caf50;
  }
  .serie-view .chart-view .chart-zoom .right {
    width: 24px;
    height: 24px;
    top: 2px;
    border-radius: 50%;
    right: -13px;
  }
  .serie-view .chart-view .chart-zoom .left {
    width: 24px;
    height: 24px;
    top: 2px;
    border-radius: 50%;
    left: -13px;
  }
  .serie-view .serie-transform-view {
    overflow: unset;
    height: unset;
    border-top: solid 1px #e0e0e0;
    margin-top: 16px;
    padding-top: 16px;
  }
  .serie-view .chart-stats-view {
    overflow-y: unset;
    border-top: solid 1px #e0e0e0;
    margin-top: 16px;
    padding: 16px;
  }
  .serie-view .basic-serie-editor {
    display: none;
  }

  .drawer-container .drawer > header {
    background-color: unset;
    display: block;
    padding: 0;
    color: unset;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 979px) {
  .editor-container {
    width: 100%;
    max-width: 980px !important;
    align-self: center;
  }
}
.transform-editor > .single-item-selector {
  border-bottom: solid 1px #e0e0e0;
}
.transform-editor > *:nth-child(2) {
  padding: 16px;
}

.log-view {
  overflow: overlay;
  padding: 8px;
  white-space: pre;
  background-color: #333;
  font-family: monospace;
  font-size: 13px;
  height: 300px;
  max-width: 30vw;
}
.log-view p {
  color: #ddd;
  margin: 0;
  margin-bottom: 8px;
}
.log-view p.error {
  color: #EF5350;
}
.log-view p.warn {
  color: #FFCA28;
}
.log-view p.info {
  color: #a5d6a7;
}
