body {
  padding-top: 57px;
}
input {
  width: 100%;
}
input[type='checkbox'],
input[type='submit'],
input[type='button'] {
  width: initial;
  margin-right: 8px;
}
input[type='date'] {
  width: initial;
}
input.button {
  width: initial;
}
.phone input {
  width: 85%;
}
a {
  color: black;
}
.row {
  margin-top: 8px;
}
.right_align {
  text-align: right;
}
.red {
  color: red;
}
.red a {
  color: red;
}
.green {
  color: green;
}
.green a {
  color: green;
}
.blue {
  color: blue;
}
.blue a {
  color: blue;
}
#send_report {
  margin-bottom: 10px;
  display: block;
}
.tree {
  --spacing: 1.5rem;
  --radius: 10px;
  overflow-x: scroll;
  /*	.pre_node {
		display: inline-block;
		height: 24px;
		position: relative;
		background-image: url("/img/l3.gif");
		background-repeat: repeat-x;
		left: 7px;
	}*/
}
.tree li {
  display: block;
  position: relative;
  padding-left: calc(2 * var(--spacing) - var(--radius) - 2px);
}
.tree ul {
  margin-left: calc(var(--radius) - var(--spacing));
  padding-left: 0;
}
.tree ul li {
  border-left: 2px solid #ddd;
}
.tree ul li:last-child {
  border-color: transparent;
}
.tree ul li::before {
  content: '';
  display: block;
  position: absolute;
  top: calc(var(--spacing) / -2);
  left: -2px;
  width: calc(var(--spacing) + 2px);
  height: calc(var(--spacing) + 1px);
  border: solid #ddd;
  border-width: 0 0 2px 2px;
}
.tree summary {
  display: block;
  cursor: pointer;
}
.tree summary::marker,
.tree summary::-webkit-details-marker {
  display: none;
}
.tree summary:focus {
  outline: none;
}
.tree summary:focus-visible {
  outline: 1px dotted #000;
}
.tree li::after,
.tree summary::before {
  content: '';
  display: block;
  position: absolute;
  top: calc(var(--spacing) / 2 - var(--radius));
  left: calc(var(--spacing) - var(--radius) - 1px);
  width: calc(2 * var(--radius));
  height: calc(2 * var(--radius));
  border-radius: 50%;
  background: #ddd;
}
.tree summary::before {
  z-index: 1;
  background: #696 url('/img/expand-collapse.svg') 0 0;
}
.tree details[open] > summary::before {
  background-position: calc(-2 * var(--radius)) 0;
}
.tree .node {
  border: 1px solid #ccc;
  padding: 4px 4px;
  display: inline-block;
  background: #f9f9f9;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  cursor: pointer;
}
.tree .node span {
  min-width: 16px;
  display: inline-block;
}
.tree .node span.node_content a {
  color: inherit;
}
.tree .tree_node {
  white-space: nowrap;
}
ul.reverse {
  transform: rotateX(180deg);
}
ul.reverse .tree_node {
  display: inline-block;
  transform: rotateX(180deg);
}
.flash {
  color: red;
  font-weight: bold;
}
.history_header {
  cursor: pointer;
  font-size: 16pt;
}
.history_header span.arrow i {
  transform: rotateX(180deg);
}
.history_container {
  display: none;
}
#modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1100;
}
#modal-window {
  position: fixed;
  top: 50%;
  left: 50%;
  overflow-y: scroll;
  padding: 20px;
  background: #fff;
  transform: translate(-50%, -50%);
  z-index: 1101;
  height: 100%;
}
#modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  cursor: pointer;
  border: 0px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: table-cell;
  vertical-align: middle;
}
#modal-close span {
  zoom: 200%;
  top: -5px;
  position: relative;
}
/* Overlay covering the whole screen */
.loader-overlay {
  position: fixed;
  /* stays in viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  /* horizontal center */
  align-items: center;
  /* vertical center */
  background: rgba(255, 255, 255, 0.7);
  /* optional dim */
  z-index: 9999;
  display: none;
  /* hidden by default */
}
/* Spinner itself */
.spinner {
  width: 50px;
  height: 50px;
  border: 6px solid #ccc;
  border-top: 6px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
/* Animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/*# sourceMappingURL=default.css.map */