body {
  font-family: "Varela Round", sans-serif;
  min-width: 920px;
  min-height: 100vh;
  text-align: center;
}
@media (max-width: 1280px) {
  body {
    font-size: 0.9em;
  }
}

.header {
  display: grid;
  grid-template-columns: min-content auto;
  padding: 1em 1em 4em;
  align-items: end;
  text-align: left;
}
.header div {
  width: 100%;
  white-space: nowrap;
  border-bottom: 1px #0765a2 solid;
}
.header_link, .header_this {
  display: inline-block;
  padding: 0.5em 2em;
  margin: 0.25em;
  transition: all 0.25s;
}
.header_link {
  color: #0765a2;
}
.header_link:hover {
  color: white;
  background-color: #0765a2;
}
.header_this {
  color: white;
  background-color: #6a9dbe;
}
.header_logout {
  display: inline-block;
  padding: 0.5em 1em;
  margin: 0.25em;
  transition: all 0.25s;
  color: #be6a9d;
}
.header_logout:hover {
  color: white;
  background-color: #be6a9d;
}

a {
  color: unset;
  cursor: pointer;
}
a:not(.white) {
  text-decoration: none;
}
a.file, a.blue {
  color: #0765a2;
  line-height: 2em;
}
a.file:hover, a.blue:hover {
  font-weight: bold;
}

.allBlue {
  color: #0765a2;
}

.content {
  width: 100%;
  max-width: 920px;
  text-align: right;
  padding: 1em;
}

.form_cont {
  background: #eee;
  border: 1px #ddd solid;
  padding: 2em 1em;
}
.form_cont .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2px;
}
.form_cont .split .checkCont {
  background-color: white;
  color: #333;
  display: block;
  text-align: right;
  padding: 0.5em;
  border: 1px inset #999;
}
.form_cont .split .checkCont label {
  margin-left: 2em;
}
.form_cont .split div {
  width: 100%;
  padding: 1em 0.5em;
  transition: all 0.5s;
}
.form_cont .split div.imperative {
  background-color: darkorange;
  color: white;
}
.form_cont .split h3, .form_cont .split .double {
  width: 100%;
  grid-column: 1/-1;
}

.formSection {
  border: #0765a2 1px solid;
  padding: 0 1em;
  margin: 0.5em auto;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s;
}
.formSection_header {
  margin-top: 2em;
}
.formSection_header a {
  font-size: 1.1em;
  font-weight: bold;
}
.formSection_header a i {
  transition: all 0.5s;
}
.formSection_imperativeCount {
  float: left;
  font-size: 1.25em;
  color: darkorange;
  font-weight: bold;
}
.formSection.unset-height {
  max-height: unset;
}

.form_input {
  display: block;
  font-family: "Varela Round", sans-serif;
  font-size: 100%;
  width: 100%;
  padding: 0.5em;
  background: white;
  border: #aaa 1px inset;
  resize: none;
}
.form_input:disabled:not(.donthide) {
  display: none;
}
.form_input:disabled.linkDisplay {
  display: block;
  background: none;
  border: none;
  color: #0765a2;
  padding: 0;
  margin-top: 1em;
  overflow-x: auto;
}

.inputSettings {
  float: left;
  color: #777;
  cursor: pointer;
}
.inputSettings.red {
  color: brown;
}
.inputSettings:hover {
  color: #0765a2;
}

.lineInput {
  position: relative;
  display: block;
  font-family: "Varela Round", sans-serif;
  font-size: 100%;
  width: 100%;
  padding: 0.5em;
  background: none;
  border: none;
  border-bottom: #aaa 1px solid;
  margin-bottom: 1em;
  resize: none;
  text-align: left;
}
.lineInput::after {
  content: "!!";
  position: absolute;
  top: 0;
  right: 0;
  width: 2em;
  height: 2em;
}

.form_button {
  font-family: "Varela Round", sans-serif;
  font-size: 100%;
  display: inline-block;
  padding: 0.5em 2em;
  margin-bottom: 1em;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
}
.form_button.main {
  background-color: #0765a2;
  border: none;
  color: white;
}
.form_button.main:hover {
  background-color: #6abe9d;
}
.form_button.white {
  background-color: #fff;
  border: 1px #aaa outset;
  color: #555;
}
.form_button.white:hover {
  background-color: #6abe9d;
  color: white;
}
.form_button.red {
  background-color: #0765a2;
  border: none;
  color: white;
}
.form_button.red:hover {
  background-color: #be6a9d;
}
.form_button.wide {
  width: 100%;
}
.form_button:disabled, .form_button.disabled {
  background-color: #ccc;
  color: white;
  pointer-events: none;
}

.form_radio {
  margin: 0.5em 0;
  cursor: pointer;
}
.form_radio + label {
  cursor: pointer;
}

.form_lineRadio {
  position: fixed;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.form_lineRadio + label {
  cursor: pointer;
  display: inline-block;
  padding: 0.5em 1.75em;
  background-color: white;
  border: solid 1px #aaa;
  transition: all 0.25s;
}
.form_lineRadio:checked + label {
  background-color: #6a9dbe;
  color: white;
}
.form_lineRadio:not(:checked) + label:hover {
  background-color: #0765a2;
  color: white;
}

.blankInput {
  display: inline-block;
  background: none;
  border: none;
  font-family: "Varela Round", sans-serif;
  font-size: 1em;
}

.loader {
  width: 5em;
  height: 5em;
  position: relative;
}
.loader::before, .loader::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5em;
  height: 5em;
  opacity: 0.5;
  background-image: url("../images/loader.png");
  background-size: cover;
  background-position: center;
}
.loader::before {
  animation: loader 2s infinite ease-in-out;
}
.loader::after {
  animation: loader 2.5s infinite reverse ease-in-out;
}
@keyframes loader {
  from {
    transform: rotate(-45deg);
  }
  to {
    transform: rotate(315deg);
  }
}

.cogSpinner {
  display: block;
  width: 1em;
  font-size: 2em;
  color: #0765a2;
}

.form_error {
  background: #be6a9d;
  color: white;
  padding: 1em;
  margin: 1em auto;
  width: 100%;
  text-align: center;
}

.form_success {
  background: #6abe9d;
  color: white;
  padding: 1em;
  margin: 1em auto;
  width: 100%;
  text-align: center;
}

.allTables {
  width: 100%;
  border-collapse: collapse;
  text-align: right;
}
.allTables tr th {
  padding: 1em 0.5em 0.5em;
}
.allTables tr td {
  padding: 0.5em;
  border: solid #aaa;
  border-width: 1px 0;
  transition: all 0.25s;
}
.allTables tr td.min {
  width: 1em;
  white-space: nowrap;
}
.allTables tr td.clickable {
  color: #0765a2;
}
.allTables tr td.clickable:hover {
  cursor: pointer;
  background-color: #6abe9d;
  color: white;
}
.allTables tr.selected {
  background-color: #6abe9d;
  color: white;
}
.allTables tr.selected .selected_off {
  display: none;
}
.allTables tr:not(.selected) .selected_on {
  display: none;
}

.fileTable {
  width: 100%;
  border-collapse: collapse;
  text-align: right;
}
.fileTable .min {
  width: 1em;
  white-space: nowrap;
  color: #0765a2;
}
.fileTable .min:hover {
  color: #6abe9d;
}
.fileTable tr td {
  padding: 0.5em;
  line-height: 2em;
  border-bottom: solid #aaa 1px;
}
.fileTable tr.headline td {
  border: none;
  line-height: 1.5em;
  padding-top: 1em;
  color: #888;
}
.fileTable tr.headline td h2 {
  color: #000;
}
.fileTable tr.bigFloor td {
  border-bottom: none;
  padding-top: 2em;
}
.fileTable tr.small td {
  line-height: 1em;
  font-size: 0.9em;
  color: #be6a9d;
}

.parkingLotsTable {
  width: 100%;
  text-align: right;
  margin-top: 1em;
}
.parkingLotsTable .min {
  width: 1em;
  white-space: nowrap;
  color: #be6a9d;
  font-size: 0.9em;
}
.parkingLotsTable .min:hover {
  color: #0765a2;
}
.parkingLotsTable tr td {
  padding: 0 0.5em;
  line-height: 2em;
  border-bottom: solid #aaa 1px;
}
.parkingLotsTable tr td:empty {
  background-color: white;
}
.parkingLotsTable_add {
  font-size: 0.9em;
  color: #0765a2;
}

.card {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: grid;
  align-items: center;
  padding: 1em;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s;
}
.card.on {
  opacity: 1;
  pointer-events: all;
}
.card_white {
  position: relative;
  width: 100%;
  max-width: 720px;
  padding: 2em;
  max-height: 90%;
  background-color: white;
  overflow-y: auto;
}
.card_white.w420 {
  max-width: 420px;
}
.card_white .checkCont {
  background-color: white;
  color: #333;
  display: block;
  text-align: right;
  padding: 0.5em;
  border: 1px inset #999;
}
.card_white .checkCont label {
  margin-left: 2em;
}
.card_white .checkCont.disabled {
  display: none;
}
.card_close {
  color: #be6a9d;
  font-size: 1.5em;
  position: absolute;
  top: 0.25em;
  right: 0.25em;
}

.mapFrame {
  width: 100%;
  height: 420px;
  border: 1px solid #aaa;
}

.searchtBar {
  margin: 1em auto;
  text-align: right;
  background-color: #eee;
  border: 1px solid #ddd;
  padding: 1em 1em 0;
}
.searchtBar .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1em;
}
.searchtBar .split.wideGap {
  grid-gap: 3em;
}
.searchtBar .split div {
  width: 100%;
}
.searchtBar .split h3 {
  width: 100%;
  grid-column: 1/-1;
}

.searchtBar label {
  margin-bottom: 1em;
}

.searchtBar select, .inlineSelect {
  display: inline-block;
  width: auto;
}

.slider_cont {
  position: relative;
  height: 2px;
  background-color: #aaa;
  margin: 1em auto;
  opacity: 0.75;
  transition: all 0.25s;
}
.slider_cont:hover {
  opacity: 1;
}
.slider_data {
  color: #0765a2;
}
.slider_slider {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  appearance: none;
  height: 2px;
  background: none;
  outline: none;
}
.slider_slider::-webkit-slider-thumb {
  pointer-events: all;
  -webkit-appearance: none;
  appearance: none;
  width: 1em;
  height: 1em;
  background: #0765a2;
  cursor: pointer;
}
.slider_slider::-moz-range-thumb {
  pointer-events: all;
  width: 1em;
  height: 1em;
  background: #0765a2;
  cursor: pointer;
}

.indent {
  padding: 1em;
  border-right: 1px solid #aaa;
}

.redX {
  color: #be6a9d;
  cursor: pointer;
}
.redX:hover {
  color: maroon;
}

.blueX {
  color: #0765a2;
  cursor: pointer;
}
.blueX:hover {
  color: #6abe9d;
}

.logoCont {
  display: block;
  max-width: 100%;
  max-height: 240px;
  margin-bottom: 1em;
}

.vBar {
  height: 2em;
  background-color: #be6a9d;
  margin-bottom: 0.5em;
  text-align: left;
}
.vBar_inner {
  display: inline-block;
  width: 0%;
  height: 100%;
  background-color: #6abe9d;
}

.customerLogo {
  text-align: center;
}
.customerLogo_canvas {
  width: 0;
  height: 0;
}
.customerLogo_cont {
  position: relative;
}
.customerLogo_view {
  height: 5em;
  max-width: 600px;
}

.report {
  width: 100%;
  max-width: 1280px;
  text-align: right;
  padding: 2em;
}
.report_header {
  text-align: center;
}
.report_header .redStatus {
  font-size: 1.1em;
  font-weight: bold;
  color: #be6a9d;
  display: inline-block;
  margin-top: 0.5em;
}
.report .whiteSqr {
  background-color: white;
  color: black;
  box-shadow: rgba(0, 0, 0, 0.15) 1px 2px 8px;
  padding: 1em;
  margin-bottom: 2em;
}
.report_file {
  display: inline-block;
  color: #0765a2;
  padding: 0.25em;
}
.report_file:hover {
  font-weight: bold;
}
.report_images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1em;
}
.report_images div {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 10em;
  transition: all 0.25s;
}
.report_images div:hover {
  transform: scale(0.95);
}
.report_table {
  width: 100%;
  border-collapse: collapse;
  text-align: right;
  margin: 1em auto;
}
.report_table tr th {
  color: #be6a9d;
  text-align: center;
  padding: 0.5em;
}
.report_table tr td {
  padding: 0.5em;
  border-left: solid #ddd 1px;
  border-right: solid #ddd 1px;
}
.report_table tr td.min {
  width: 1em;
  white-space: nowrap;
}
.report_table tr td:first-child {
  color: #0765a2;
}
.report .spaceTable {
  width: 100%;
  border-collapse: collapse;
  text-align: right;
  margin: 1em auto;
}
.report .spaceTable .min {
  width: 1em;
  white-space: nowrap;
}
.report .spaceTable tr th {
  color: #be6a9d;
  padding: 0.5em;
}
.report .spaceTable tr td {
  padding: 0.5em;
  border-left: solid #ddd 1px;
}
.report .spaceTable tr td:first-child {
  color: #0765a2;
}
.report_opentext {
  display: block;
  font-family: "Varela Round", sans-serif;
  font-size: 100%;
  width: 100%;
  padding: 0.5em;
  background: white;
  resize: none;
}

.Contact {
  position: relative;
}
.Contact_btns {
  position: absolute;
  bottom: 0;
  left: 0;
}
.Contact_btns div {
  display: inline-block;
  padding: 0.5em;
}

.footer {
  position: sticky;
  top: 100%;
  background-color: #6a9dbe;
  color: white;
  padding: 2em;
  margin-top: 2em;
}
.footer_ver {
  font-size: 0.75em;
  opacity: 0.5;
}

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