input {
  padding: 6px;
}

button {
  padding: 6px;
}

.field__label {
  margin-bottom: 5px;
}

.field__body input {
  height: 40px;
  padding: 10px;
  width: 100%;
}

.rightDrawer {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 300px;
  background-color: var(--grey100);
  transform: translateX(100%);
  box-shadow: -8px 0 15px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.rightDrawer--slideIn {
  animation: slideIn 0.5s forwards;
}

.rightDrawer--slideOut {
  animation: slideOut 0.5s forwards;
}

@keyframes slideIn {
  100% {
    transform: translateX(0%);
  }
}
@keyframes slideOut {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
.rightDrawer__closeBtn {
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}

.editFieldDrawer__wrap {
  padding: 40px 20px 0 20px;
}

.viewFormStructure {
  padding: 10px;
}

.viewSection__title {
  padding-bottom: 10px;
  font-weight: bold;
}

.viewSection__add {
  text-align: center;
}

.viewSection__addIcon {
  font-size: 18px;
  cursor: pointer;
}

.viewSection__visualWrap {
  border-width: 1px;
  border-style: solid;
  border-color: #0d47a1;
  padding-top: 5px;
  padding-left: 5px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
  left: 1px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.viewSection__titleRow {
  display: flex;
  padding-bottom: 5px;
}

.viewSection__editSectionIcon {
  cursor: pointer;
  margin-right: 10px;
}

.fieldSelect__item {
  padding: 5px 10px;
  background-color: #e3f2fd;
  cursor: pointer;
  margin-bottom: 10px;
  border: 1px solid #1976d2;
  border-radius: 10px;
}

.addFieldDrawer__wrap {
  margin-bottom: 14px;
}

.addFieldDrawer__options {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.is-bordered-left {
  border-left: 4px solid;
}

.path-preview {
  font-size: 12px;
  color: black;
  padding-top: 4px;
  padding-bottom: 4px;
}

.hide {
  display: none;
}

.debug-info {
  display: none;
}

.show-debug .debug-info {
  display: block;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
.spinner {
  width: 20px;
  height: 20px;
  position: relative;
}

.spinner:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #000;
  animation: spinner 0.6s linear infinite;
}

/*
  elm-hot creates an additional div wrapper around the app to make HMR possible.
  This could break styling in development mode if you are using Elm UI.

  More context in the issue:
    https://github.com/halfzebra/create-elm-app/issues/320
*/
[data-elm-hot=true] {
  height: inherit;
}

body {
  font-family: "Source Sans Pro", "Trebuchet MS", "Lucida Grande", "Bitstream Vera Sans", "Helvetica Neue", sans-serif;
  margin: 0;
  background-color: #f4f1e8;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 0, 0, 0.02) 2px, rgba(0, 0, 0, 0.02) 3px), repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.02) 2px, rgba(0, 0, 0, 0.02) 3px);
}

* {
  box-sizing: border-box;
}

.pageWrapper {
  min-height: 100vh;
  min-width: 100vw;
}

.formStructure {
  min-height: 100%;
}

.fakeViewport {
  width: 375px;
  height: 667px;
  overflow-y: auto;
  overflow-x: hidden;
  border: 10px solid #424242;
  margin: 20px;
  position: relative;
}

.pageWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pageWrapper--has-errors {
  outline: 2px solid red;
}

.pageWrapper:not(.show-debug-panel) {
  grid-template-columns: 1fr;
}

.formStructure .field-item {
  padding: 5px;
  background-color: #e3f2fd;
  cursor: pointer;
  margin-bottom: 10px;
  border: 1px solid #1976d2;
  border-radius: 10px;
}

.formStructure .field-selected {
  border: 1px solid indigo;
}

.button {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* DEBUG  */
.viewDatoms__wrap {
  background-color: var(--color-immobile);
  font-family: monospace;
  height: 100vh;
  position: relative;
  display: none;
}

.show-debug-panel .viewDatoms__wrap {
  display: block;
}

.viewDatoms__head {
  height: 40px;
}

.viewDatoms__body {
  position: absolute;
  top: 40px;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: scroll;
  padding-top: 10px;
}

.viewDatoms__table {
  padding-bottom: 100px;
}

.viewDatoms__cell {
  font-size: 14px;
  padding: 2px;
}

.viewDatoms__cell--highlight {
  background-color: #4caf50;
}

.viewDatoms__cell--clickable {
  cursor: pointer;
}

.col-wrap {
  height: 100vh;
  position: relative;
}

.viewField {
  background-color: var(--color-leaf);
  height: 100vh;
  overflow-y: scroll;
  padding-bottom: 4rem;
}

.errorDisplay__wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  color: white;
  padding: 20px;
  overflow-y: scroll;
  background-color: red;
}

.errorDisplay__dismiss {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid white;
}

.errorDisplay--clickable {
  cursor: pointer;
}

.loadSave__wrap {
  display: flex;
}

.loadSave__input {
  width: 300px;
}

.loadSave__buttons {
  padding-left: 10px;
}

.loadSave__buttons button {
  margin-right: 10px;
}

.loadSave__fileList {
  margin-top: 10px;
}

.loadSave__file {
  margin: 5px;
  cursor: pointer;
  text-decoration: underline;
  font-family: monospace;
}


@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
.spinner {
  width: 20px;
  height: 20px;
  position: relative;
}

.spinner:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #000;
  animation: spinner 0.6s linear infinite;
}

.tabs li > .tab-link,
.tabs li > button {
  background: none;
  border: none;
  font: inherit;
  align-items: center;
  border-bottom-color: #dbdbdb;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  color: #4a4a4a;
  display: flex;
  justify-content: center;
  margin-bottom: -1px;
  padding: 0.5em 1em;
  vertical-align: top;
  cursor: pointer;
}

.tabs li.is-active > .tab-link,
.tabs li.is-active > button {
  border-bottom-color: #485fc7;
  color: #485fc7;
}

.tabs li > .tab-link:hover,
.tabs li > button:hover {
  border-bottom-color: #363636;
  color: #363636;
}

[dir=rtl] .has-text-left {
  text-align: right !important;
}
[dir=rtl] .has-text-right {
  text-align: left !important;
}
[dir=rtl] .is-justify-content-flex-start {
  justify-content: flex-end !important;
}
[dir=rtl] .is-justify-content-flex-end {
  justify-content: flex-start !important;
}
[dir=rtl] .ml-1 {
  margin-left: 0 !important;
  margin-right: 0.25rem !important;
}
[dir=rtl] .ml-2 {
  margin-left: 0 !important;
  margin-right: 0.5rem !important;
}
[dir=rtl] .ml-3 {
  margin-left: 0 !important;
  margin-right: 0.75rem !important;
}
[dir=rtl] .ml-4 {
  margin-left: 0 !important;
  margin-right: 1rem !important;
}
[dir=rtl] .ml-5 {
  margin-left: 0 !important;
  margin-right: 1.5rem !important;
}
[dir=rtl] .ml-6 {
  margin-left: 0 !important;
  margin-right: 3rem !important;
}
[dir=rtl] .mr-1 {
  margin-right: 0 !important;
  margin-left: 0.25rem !important;
}
[dir=rtl] .mr-2 {
  margin-right: 0 !important;
  margin-left: 0.5rem !important;
}
[dir=rtl] .mr-3 {
  margin-right: 0 !important;
  margin-left: 0.75rem !important;
}
[dir=rtl] .mr-4 {
  margin-right: 0 !important;
  margin-left: 1rem !important;
}
[dir=rtl] .mr-5 {
  margin-right: 0 !important;
  margin-left: 1.5rem !important;
}
[dir=rtl] .mr-6 {
  margin-right: 0 !important;
  margin-left: 3rem !important;
}
[dir=rtl] .pl-1 {
  padding-left: 0 !important;
  padding-right: 0.25rem !important;
}
[dir=rtl] .pl-2 {
  padding-left: 0 !important;
  padding-right: 0.5rem !important;
}
[dir=rtl] .pl-3 {
  padding-left: 0 !important;
  padding-right: 0.75rem !important;
}
[dir=rtl] .pl-4 {
  padding-left: 0 !important;
  padding-right: 1rem !important;
}
[dir=rtl] .pl-5 {
  padding-left: 0 !important;
  padding-right: 1.5rem !important;
}
[dir=rtl] .pl-6 {
  padding-left: 0 !important;
  padding-right: 3rem !important;
}
[dir=rtl] .pr-1 {
  padding-right: 0 !important;
  padding-left: 0.25rem !important;
}
[dir=rtl] .pr-2 {
  padding-right: 0 !important;
  padding-left: 0.5rem !important;
}
[dir=rtl] .pr-3 {
  padding-right: 0 !important;
  padding-left: 0.75rem !important;
}
[dir=rtl] .pr-4 {
  padding-right: 0 !important;
  padding-left: 1rem !important;
}
[dir=rtl] .pr-5 {
  padding-right: 0 !important;
  padding-left: 1.5rem !important;
}
[dir=rtl] .pr-6 {
  padding-right: 0 !important;
  padding-left: 3rem !important;
}
[dir=rtl] .tabs ul {
  border-bottom-color: transparent;
}
[dir=rtl] .tabs li {
  float: right;
}
[dir=rtl] .buttons .button:not(:last-child):not(.is-fullwidth) {
  margin-right: 0;
  margin-left: 0.5rem;
}
[dir=rtl] .field-label {
  text-align: right;
}
[dir=rtl] .dropdown-menu {
  left: auto;
  right: 0;
}
[dir=rtl] .modal-close,
[dir=rtl] .delete {
  left: 20px;
  right: auto;
}
[dir=rtl] .notification .delete {
  left: 0.5rem;
  right: auto;
}
[dir=rtl] .breadcrumb ul {
  justify-content: flex-start;
}
[dir=rtl] .breadcrumb li + li::before {
  content: "\\";
  transform: scaleX(-1);
}
[dir=rtl] .icon.is-left {
  left: auto;
  right: 0;
}
[dir=rtl] .icon.is-right {
  right: auto;
  left: 0;
}
[dir=rtl] .control.has-icons-left .input,
[dir=rtl] .control.has-icons-left .select select {
  padding-left: 2.5em;
  padding-right: calc(0.75em - 1px);
}
[dir=rtl] .control.has-icons-left .icon.is-left {
  left: auto;
  right: 0;
}
[dir=rtl] .control.has-icons-right .input,
[dir=rtl] .control.has-icons-right .select select {
  padding-right: 2.5em;
  padding-left: calc(0.75em - 1px);
}
[dir=rtl] .control.has-icons-right .icon.is-right {
  right: auto;
  left: 0;
}
[dir=rtl] .table th,
[dir=rtl] .table td {
  text-align: right;
}
[dir=rtl] .table th:not([align]),
[dir=rtl] .table td:not([align]) {
  text-align: inherit;
}
[dir=rtl] .level-left,
[dir=rtl] .level-right {
  flex-direction: row-reverse;
}
[dir=rtl] .viewDatoms__wrap {
  border-left: none;
  border-right: 1px solid #e0e0e0;
  padding-left: 0;
  padding-right: 1rem;
}
[dir=rtl] .viewDatoms__body {
  padding-left: 0;
  padding-right: 1rem;
}
[dir=rtl] .loadSave__buttons {
  padding-left: 0;
  padding-right: 10px;
}
[dir=rtl] .loadSave__buttons button {
  margin-right: 0;
  margin-left: 10px;
}
[dir=rtl] .errorDisplay__dismiss {
  right: auto;
  left: 5px;
}
[dir=rtl] .checkbox input[type=checkbox],
[dir=rtl] .checkbox input[type=radio],
[dir=rtl] .radio input[type=checkbox],
[dir=rtl] .radio input[type=radio] {
  margin-right: 0;
  margin-left: 0.5em;
}
[dir=rtl] .select:not(.is-multiple):not(.is-loading)::after {
  left: 1.125em;
  right: auto;
}
[dir=rtl] .pagination-previous,
[dir=rtl] .pagination-next,
[dir=rtl] .pagination-link,
[dir=rtl] .pagination-ellipsis {
  text-align: center;
}
[dir=rtl] .message-header {
  justify-content: flex-start;
}
[dir=rtl] .message-header .delete {
  margin-left: 0;
  margin-right: 0.75rem;
}
[dir=rtl] .tags.has-addons .tag:not(:first-child) {
  margin-left: 0;
  margin-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
[dir=rtl] .tags.has-addons .tag:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-navbar {
  background-color: #f5f5f5;
  min-height: 3.25rem;
  position: relative;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 0 0 #f5f5f5;
}
.custom-navbar__container {
  display: flex;
  align-items: stretch;
  min-height: 3.25rem;
}
.custom-navbar__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-height: 3.25rem;
  padding: 0 0.75rem;
}
.custom-navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  color: #4a4a4a;
  text-decoration: none;
}
.custom-navbar__logo:hover {
  background-color: #fafafa;
  color: #363636;
}
.custom-navbar__menu {
  display: flex;
  flex-grow: 1;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .custom-navbar__menu {
    display: none;
  }
}
.custom-navbar__start {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  margin-right: auto;
}
.custom-navbar__end {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  margin-left: auto;
}
.custom-navbar__item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  color: #4a4a4a;
  text-decoration: none;
  cursor: pointer;
  flex-grow: 0;
  flex-shrink: 0;
}
.custom-navbar__item:hover {
  background-color: #fafafa;
  color: #363636;
}
.custom-navbar__item--active {
  color: #3273dc;
  border-bottom: 2px solid #3273dc;
}

.slide-out-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 280px;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}
.slide-out-menu--left {
  left: 0;
  transform: translateX(-100%);
}
.slide-out-menu--left.slide-out-menu--open {
  transform: translateX(0);
}
.slide-out-menu--right {
  right: 0;
  transform: translateX(100%);
}
.slide-out-menu--right.slide-out-menu--open {
  transform: translateX(0);
}
.slide-out-menu__trigger:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.slide-out-menu__trigger:focus {
  outline: 2px solid #3273dc;
  outline-offset: 2px;
}
.slide-out-menu__trigger:focus:not(:focus-visible) {
  outline: none;
}
.slide-out-menu__trigger:focus-visible {
  outline: 2px solid #3273dc;
  outline-offset: 2px;
}
.slide-out-menu__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}
.slide-out-menu__backdrop--visible {
  opacity: 1;
  pointer-events: auto;
}
.slide-out-menu__header {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
  flex-shrink: 0;
}
.slide-out-menu__close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #363636;
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.slide-out-menu__close:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #000000;
}
.slide-out-menu__close:focus {
  outline: 2px solid #3273dc;
  outline-offset: 2px;
}
.slide-out-menu__close:focus:not(:focus-visible) {
  outline: none;
}
.slide-out-menu__close:focus-visible {
  outline: 2px solid #3273dc;
  outline-offset: 2px;
}
.slide-out-menu__content {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0;
}
.slide-out-menu__item {
  background: none;
  border: none;
  font: inherit;
  text-align: inherit;
  width: 100%;
  display: block;
  padding: 0.75rem 1.5rem;
  color: #363636;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  border-left: 3px solid transparent;
  font-size: 1rem;
  line-height: 1.5;
}
.slide-out-menu__item:hover {
  background-color: #f5f5f5;
  color: #000000;
}
.slide-out-menu__item:focus {
  outline: 2px solid #3273dc;
  outline-offset: -2px;
  background-color: #f0f7ff;
}
.slide-out-menu__item:focus:not(:focus-visible) {
  outline: none;
}
.slide-out-menu__item:focus-visible {
  outline: 2px solid #3273dc;
  outline-offset: -2px;
  background-color: #f0f7ff;
}
.slide-out-menu__item--active {
  color: #1d5fa6;
  font-weight: 600;
  border-left-color: #3273dc;
  background-color: #f0f7ff;
}

.f-datepicker {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
}
.f-datepicker__fields {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.f-datepicker__day {
  width: 3.5rem;
  text-align: center;
}
.f-datepicker__month {
  width: 5rem;
}
.f-datepicker__year {
  width: 5rem;
  text-align: center;
}
.f-datepicker__input {
  width: 10rem;
}
.f-datepicker__error {
  color: hsl(348, 100%, 61%);
  font-size: 0.75rem;
}

.f-timepicker {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
}
.f-timepicker__input {
  width: 8rem;
}
.f-timepicker__error {
  color: hsl(348, 100%, 61%);
  font-size: 0.75rem;
}

.f-datetimepicker {
  display: inline-flex;
  gap: 1rem;
  align-items: flex-start;
}

/*
  elm-hot creates an additional div wrapper around the app to make HMR possible.
  This could break styling in development mode if you are using Elm UI.

  More context in the issue:
    https://github.com/halfzebra/create-elm-app/issues/320
*/
[data-elm-hot=true] {
  height: inherit;
}

body {
  font-family: "Source Sans Pro", "Trebuchet MS", "Lucida Grande", "Bitstream Vera Sans", "Helvetica Neue", sans-serif;
  margin: 0;
  background-color: #f4f1e8;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 0, 0, 0.02) 2px, rgba(0, 0, 0, 0.02) 3px), repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.02) 2px, rgba(0, 0, 0, 0.02) 3px);
  min-height: 100vh;
}

* {
  box-sizing: border-box;
}

.pageWrapper {
  min-height: 100vh;
  min-width: 100vw;
}

.formStructure {
  min-height: 100%;
}

.fakeViewport {
  width: 375px;
  height: 667px;
  overflow-y: auto;
  overflow-x: hidden;
  border: 10px solid #424242;
  margin: 20px;
  position: relative;
}

.pageWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.pageWrapper--has-errors {
  outline: 2px solid red;
}
.pageWrapper:not(.show-debug-panel) {
  grid-template-columns: 1fr;
}

.formStructure .field-item {
  padding: 5px;
  background-color: #e3f2fd;
  cursor: pointer;
  margin-bottom: 10px;
  border: 1px solid #1976d2;
  border-radius: 10px;
}

.formStructure .field-selected {
  border: 1px solid indigo;
}

/* DEBUG  */
.viewDatoms__wrap {
  font-family: monospace;
  display: none;
  flex-direction: column;
}
.show-debug-panel .viewDatoms__wrap {
  display: flex;
}
.viewDatoms__body {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem;
}
.viewDatoms__table {
  padding-bottom: 100px;
}
.viewDatoms__cell {
  font-size: 11px;
  padding: 1px 4px;
}
.viewDatoms__cell--highlight {
  background-color: #4caf50;
}
.viewDatoms__cell--clickable {
  cursor: pointer;
}

.col-wrap {
  height: 100vh;
  position: relative;
}

.viewField {
  background-color: var(--color-leaf);
  height: 100vh;
  overflow-y: scroll;
  padding-bottom: 4rem;
}

.errorDisplay__wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  color: white;
  padding: 20px;
  overflow-y: scroll;
  background-color: red;
}
.errorDisplay__dismiss {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid white;
}
.errorDisplay--clickable {
  cursor: pointer;
}

.loadSave__wrap {
  display: flex;
}
.loadSave__input {
  width: 300px;
}
.loadSave__buttons {
  padding-left: 10px;
}
.loadSave__buttons button {
  margin-right: 10px;
}
.loadSave__fileList {
  margin-top: 10px;
}
.loadSave__file {
  margin: 5px;
  cursor: pointer;
  text-decoration: underline;
  font-family: monospace;
}

.dropdown-content button.dropdown-item {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
  width: 100%;
}

.card-footer button.card-footer-item {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/*# sourceMappingURL=main.css.map */
