/* Helper */
/* ==== */
/* ==== */
/* ==== */
/* ==== */
/* ==== */
/* ==== */
:root {
  --color-grey-darkest: #060606;
  --color-grey-dark: #111111;
  --color-grey-medium: #222222;
  --color-grey-light: #222222;
  --color-error: #d61d2c;
  --color-valid: #53c41c;
  --color-prompt: #d6631d;
  --color-red: #ce2a0d;
  --color-blue: #257ee2;
  --color-green: #25bd77;
  --color-brand-pri: #f45b00;
  --color-brand-sec: #f49500;
  --color-fb: #3b5998;
  --color-linkedin: #007bb5;
  --color-insta: #e95950;
  --color-behance: #1769ff;
  --title-font:	"Montserrat", sans-serif;
  --body-font:	"Roboto", sans-serif;
}
/* 	BORDER RADIUS 	*/
/* OPACITY */
/* CENTER BLOCK ELEMENTS */
/* ANIMATION */
/* Blur Mixin */
/* CSS Document */
.gradient-opacity-bg {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0.5+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#80ffffff",GradientType=1 ); /* IE6-9 */
}
.reverse-gradient-opacity-bg { /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0.5+0,1+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgb(255, 255, 255) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#80ffffff", endColorstr="#ffffff",GradientType=1 ); /* IE6-9 */
}
.black-opacity-gradient {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.6+47,1+99 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 47%, rgb(0, 0, 0) 99%, rgb(0, 0, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#000000",GradientType=0 ); /* IE6-9 */
}
/* Base */
html, body {
  min-height: 100%;
}
html {
  overflow: hidden;
}
#app {
  overflow: auto;
}
* {
  box-sizing: border-box;
}
.pure-g [class*=pure-u] {
  font-family: "Roboto", sans-serif;
}
.small-size {
  font-size: 0.8em;
}
.normal-size {
  font-size: 1em;
}
.large-size {
  font-size: 1.2em;
}
.xlarge-size {
  font-size: 1.4em;
}
.padded-10 {
  padding: 10px;
}
.padded-15 {
  padding: 15px;
}
.padded-20 {
  padding: 20px;
}
.padded-25 {
  padding: 25px;
}
.padded-30 {
  padding: 25px;
}
.padded-vert-20 {
  padding-top: 10px;
  padding-bottom: 10px;
}
.margin-bottom-20 {
  margin-bottom: 20px;
}
.margin-top-20 {
  margin-top: 20px;
}
.padded-inner-10 div {
  padding: 10px;
}
.padded-inner-15 div {
  padding: 15px;
}
.padded-inner-20 div {
  padding: 20px;
}
.padded-inner-25 div {
  padding: 25px;
}
.bottom-5 {
  margin-bottom: 5px !important;
}
.top-5 {
  margin-top: 5px !important;
}
.bottom-10 {
  margin-bottom: 10px !important;
}
.top-10 {
  margin-top: 10px !important;
}
.bottom-20 {
  margin-bottom: 20px !important;
}
.top-20 {
  margin-top: 20px !important;
}
.bottom-30 {
  margin-bottom: 30px !important;
}
.top-30 {
  margin-top: 30px !important;
}
.padding-reset {
  padding: 0;
}
.margin-reset {
  margin: 0;
}
.grid-space-right {
  padding-right: 10px;
}
.grid-space-left {
  padding-left: 10px;
}
.margin-right {
  margin-right: 10px;
}
.margin-left {
  margin-left: 10px;
}
.grid-space-right-larger {
  padding-right: 20px;
}
.grid-space-left-larger {
  padding-left: 20px;
}
.grid-border-top {
  border-top: 1px solid #ddd;
  padding-top: 20px;
}
.c-align {
  text-align: center;
}
.l-align {
  text-align: left;
}
.r-align {
  text-align: right;
}
.clear {
  clear: both !important;
}
.r-float {
  float: right !important;
}
.l-float {
  float: left !important;
}
.hidden {
  display: none;
}
.shown {
  display: block;
}
.shown-inline {
  display: inline-block;
}
.invisible {
  visibility: hidden;
}
.full-width {
  width: 100%;
}
.half-width {
  width: 50%;
}
.full-height {
  height: 100%;
}
.hidden-item {
  opacity: 0.3;
}
.disabled-item {
  background-color: #d61d2c !important;
  opacity: 0.6;
}
.non-display-item {
  display: none;
}
.block-ele {
  display: block;
}
.icon-right {
  margin-left: 10px;
  display: inline-block;
}
.icon-left {
  margin-right: 10px;
  display: inline-block;
}
html, body {
  font-family: "Roboto", sans-serif;
  background-color: #f5f5f5;
  padding: 0;
  margin: 0;
  font-size: 100%;
  height: 100%;
  font-weight: 400;
}
html.overflow, body.overflow {
  overflow: hidden;
}
.wrapper {
  width: 1000px;
  margin: auto;
}
.long-wrapper {
  width: 90%;
  margin: auto;
}
.full-page-container {
  width: 100%;
  height: 100%;
  text-align: center;
}
.full-width-container {
  width: 100%;
  text-align: center;
}
.pure-g.padded-grid > div {
  padding: 10px;
}
.white-box-shadow {
  background-color: white;
  border-radius: 4px;
  background-clip: padding-box;
  box-shadow: 0 0 10px 5px rgba(224, 221, 221, 0.2);
  border: 1px solid #f7f7f7;
}
.white-box-shadow.no-round {
  border-radius: 0;
  background-clip: padding-box;
}
.white-box-shadow hr {
  border: 0;
  background-color: #eee;
  height: 1px;
  margin-top: 30px;
}
.red-text {
  color: red;
}
.orange-text {
  color: orange;
}
.green-text {
  color: green;
}
.brand-gradient-hor {
  background-image: linear-gradient(to right, #f45b00 0%, #f49500 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFF45B00", endColorstr="#FFF49500", GradientType=1);
}
.brand-gradient-vert {
  background-image: linear-gradient(to bottom, #f45b00 0%, #f49500 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFF45B00", endColorstr="#FFF49500", GradientType=0);
}
.no-select, table td.sort-column,
table th.sort-column {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */ /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
   supported by Chrome and Opera */
}
.clip-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.submit-grid-row {
  border-top: 1px solid #eee;
  padding: 20px;
}
input[type=checkbox] {
  display: inline-grid;
  place-content: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: currentColor;
  width: 22px;
  height: 22px;
  border: 1px #d3cfc8 solid;
  transform: translateY(1px);
  cursor: pointer;
}
input[type=checkbox]:hover {
  border: 2px #de8650 solid;
}
input[type=checkbox]:checked, input[type=checkbox]:indeterminate {
  background-color: #de8650;
  border: 2px #de8650 solid;
}
input[type=checkbox]::after {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  transform: scale(1);
  transition: 120ms transform ease-in-out;
  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  background-color: white;
  opacity: 0;
}
input[type=checkbox]:indeterminate::after {
  transform: scale(1, 0.5);
  transform-origin: 50% 50%;
  opacity: 1;
  clip-path: unset;
}
input[type=checkbox]:checked::after {
  transform: scale(1);
  opacity: 1;
}
.prop-select-box {
  position: relative;
  padding: 20px 130px 10px 15px;
  background-color: white;
  margin-top: 20px;
  max-height: 150px;
  overflow: auto;
}
.prop-select-box .clear-all {
  position: absolute;
  top: 18px;
  right: 15px;
  color: #ce2a0d;
  font-weight: bold;
  background-color: #fff1ef;
  border: 1px dashed #ce2a0d;
  padding: 10px 20px;
  border-radius: 3px;
  font-size: 12px;
  cursor: pointer;
}
.selectedItem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8em;
  padding: 5px 5px 3px 10px;
  font-weight: bold;
  background-color: #ffffff;
  border-radius: 3px;
  border: 1px dashed black;
  margin: 0 10px 10px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.selectedItem i {
  margin: 2px 0 0 4px;
  color: #d90000;
  font-weight: 600;
}
a.site-button.disabled {
  border: none !important;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.hor-list, .map-container .map-options ul, .header-bar .top-options-bar, .tab-menu, .admin-pagination .pagination-list {
  padding: 0;
  margin: 0;
}
.hor-list li, .map-container .map-options ul li, .header-bar .top-options-bar li, .tab-menu li, .admin-pagination .pagination-list li {
  display: inline-block;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.basic-list, .zone-report-checklist, .user-list, #sidemenu ul, .advance-search-listing {
  padding: 0;
  margin: 0;
}
.basic-list li, .zone-report-checklist li, .user-list li, #sidemenu ul li, .advance-search-listing li {
  list-style-type: none;
  display: block;
  padding: 0;
  margin: 0;
}
.vertical-align, .generating-report-overlay .gro-container, .dropzone .dz-message, .cropUpload .cropUploadClickable .cropUploadText, .user-list li .disable-user, .alert .close-alert, .alert i.alert-icn {
  position: relative;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
}
.horizontal-align, .map-alerts-container, .custom-file-preview .dz-details .file-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.grayscale {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
  filter: gray; /* IE6-9 */
  -webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
}
.grayscale:hover, .grayscale.active {
  filter: none;
  -webkit-filter: grayscale(0%);
}
/* For Tablet Only */
/* For Desktop Only */
/*					  */
/* Responsive Classes */
/* 					  */
@media (min-width: 320px) {
  .res-padding {
    padding-left: 2%;
    padding-right: 2%;
  }
  .res-margin {
    margin-left: 2%;
    margin-right: 2%;
  }
  #bgvid {
    display: none;
  }
  #bgimg {
    display: block;
  }
}
@media screen and (max-width: 786px) {
  .content-container h1 {
    font-size: 20px;
  }
  .padded-10 {
    padding: 5px;
  }
  .padded-15 {
    padding: 8px;
  }
  .padded-20 {
    padding: 10px;
  }
  .padded-25 {
    padding: 20px;
  }
  .padded-30 {
    padding: 20px;
  }
  .bottom-5 {
    margin-bottom: 5px !important;
  }
  .top-5 {
    margin-top: 5px !important;
  }
  .bottom-10 {
    margin-bottom: 10px !important;
  }
  .top-10 {
    margin-top: 10px !important;
  }
  .bottom-20 {
    margin-bottom: 10px !important;
  }
  .top-20 {
    margin-top: 10px !important;
  }
  .bottom-30 {
    margin-bottom: 20px !important;
  }
  .top-30 {
    margin-top: 20px !important;
  }
}
/*
	======
	Font Styles
	======
*/
.strikeout {
  text-decoration: line-through;
}
.underline {
  text-decoration: underline;
}
.no-underline {
  text-decoration: none;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.caps {
  text-transform: capitalize;
  color: red;
}
.bold {
  font-weight: bold;
}
.regular {
  font-weight: normal;
}
.thin {
  font-weight: thin;
}
.white-text {
  color: white;
}
.grey-text {
  color: #999;
}
/*
	======
	Font Sizes
	======
*/
.text-small-3 {
  font-size: 0.7em;
}
.text-small-2 {
  font-size: 0.8em;
}
.text-small-1 {
  font-size: 0.9em;
}
.text-big-1 {
  font-size: 1.2em;
}
.text-big-2 {
  font-size: 1.5em;
}
.text-big-3 {
  font-size: 2em;
}
/*
	======
	Headers
	======
*/
h1, h2, h3, h4, h5 {
  font-weight: 300;
  color: #444;
  font-family: "Montserrat", sans-serif;
}
h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 0;
}
h3 {
  font-weight: 600;
  color: #333;
  font-size: 16px;
  background-color: white;
  margin: 0;
  padding: 20px 20px;
  border-bottom: 1px solid #ddd;
}
h5 {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.7em;
  margin-bottom: 10px;
}
.header-description {
  color: #aaa;
  margin-bottom: 15px;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 786px) {
  h1 {
    margin-top: 8px;
  }
  .header-description {
    margin-bottom: 8px;
  }
}
/* Components */
label {
  font-size: 0.7em;
  font-weight: 600;
  display: block;
  margin: 13px 0 5px 0;
  color: #000;
}
label.top-label {
  margin-top: 0;
}
label span {
  float: right;
  opacity: 0.5;
}
label span.interactLabel:hover {
  cursor: pointer;
  opacity: 1;
}
label span.interactLabel {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
label:has(+ :is(input, select, textarea)) {
  white-space: nowrap;
}
input[type=text], input[type=number], input[type=password], input[type=email], input[type=date], textarea, select {
  font-size: 14px;
  padding: 15px 12px;
  box-shadow: none;
  font-size: 0.8em;
  border-radius: 2px;
  background-clip: padding-box;
  border: 0;
  width: 100%;
  font-weight: 500;
  color: black;
  border: 1px solid #ddd;
}
input[type=text]:focus, input[type=number]:focus, input[type=password]:focus, input[type=email]:focus, input[type=date]:focus, textarea:focus, select:focus {
  outline: none !important;
  border: 1px solid #f49500;
}
input[type=text].locked, input[type=number].locked, input[type=password].locked, input[type=email].locked, input[type=date].locked, textarea.locked, select.locked {
  background-image: url("../images/icons/lock.svg");
  background-repeat: no-repeat;
  background-size: 10px;
}
input[type=text].pound-input, input[type=number].pound-input, input[type=password].pound-input, input[type=email].pound-input, input[type=date].pound-input, textarea.pound-input, select.pound-input {
  background-image: url("../images/icons/pound.svg");
  background-repeat: no-repeat;
  background-position: 5px 50%;
  text-indent: 10px;
  background-size: 10px;
}
input[type=text].table-search, input[type=number].table-search, input[type=password].table-search, input[type=email].table-search, input[type=date].table-search, textarea.table-search, select.table-search {
  width: auto;
  padding: 12px 15px;
}
input[type=text].short-select, input[type=text].short-input, input[type=number].short-select, input[type=number].short-input, input[type=password].short-select, input[type=password].short-input, input[type=email].short-select, input[type=email].short-input, input[type=date].short-select, input[type=date].short-input, textarea.short-select, textarea.short-input, select.short-select, select.short-input {
  background-position: 90% 50%;
}
input[type=text].medium-select, input[type=text].medium-input, input[type=number].medium-select, input[type=number].medium-input, input[type=password].medium-select, input[type=password].medium-input, input[type=email].medium-select, input[type=email].medium-input, input[type=date].medium-select, input[type=date].medium-input, textarea.medium-select, textarea.medium-input, select.medium-select, select.medium-input {
  background-position: 94% 50%;
}
input[type=text].long-select, input[type=text].long-select, input[type=number].long-select, input[type=number].long-select, input[type=password].long-select, input[type=password].long-select, input[type=email].long-select, input[type=email].long-select, input[type=date].long-select, input[type=date].long-select, textarea.long-select, textarea.long-select, select.long-select, select.long-select {
  background-position: 98% 50%;
}
input[type=checkbox] + label {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
textarea {
  padding: 15px;
  font-size: 12px;
  width: 100%;
  min-height: 150px;
  line-height: 150%;
}
select {
  background-image: url("/images/icons/down-arrow.svg");
  background-repeat: no-repeat;
  padding-right: 40px !important;
  background-position: 90% 50%;
  -webkit-appearance: none;
  background-size: 10px;
}
input[readonly] {
  background-color: #eee;
}
input[readonly]:focus {
  border: 1px solid #bbb;
}
.small-inputs input[type=text], .small-inputs input[type=number], .small-inputs input[type=password], .small-inputs input[type=email], .small-inputs input[type=date], .small-inputs textarea, .small-inputs select {
  padding: 10px 8px 8px 8px;
  font-size: 0.8em;
}
.reason-input {
  width: 300px !important;
  display: inline-block;
  margin-right: 10px;
  text-align: right;
  border-right: 3px solid #eee;
}
.inline-checkbox {
  padding: 15px 0 0 15px;
}
.inline-checkbox label {
  display: inline-block;
  margin-left: 10px;
}
.admin-table {
  width: 100%;
  text-align: left;
  font-weight: 400;
  font-size: 0.9em;
}
.admin-table tr {
  background-color: white;
  border-bottom: 1px solid #ddd;
}
.admin-table td, .admin-table th {
  padding: 15px 20px;
}
.admin-table th {
  border-bottom: 2px solid #999;
  background-color: #eee;
  color: #222;
}
.admin-pagination .pagination-list {
  background-color: #eee;
  display: inline-block;
  font-size: 0.8em;
  margin-top: 20px;
}
.admin-pagination .pagination-list li {
  padding: 12px 10px;
  font-weight: bold;
  min-width: 36px;
  text-align: center;
  float: left;
  border-right: 1px solid #ddd;
}
.admin-pagination .pagination-list li:last-child {
  border-right: none;
}
.admin-pagination .pagination-list li:hover {
  background-color: #ddd;
  cursor: pointer;
}
.admin-search-table {
  margin-bottom: 10px;
}
.admin-search-table input, .admin-search-table select {
  border: 1px solid #eee;
}
.alert {
  font-size: 0.9em;
  border: 1px solid white;
  border-radius: 4px;
  background-clip: padding-box;
  position: relative;
  padding: 17px 20px 17px 60px;
  margin-bottom: 20px;
}
.alert i.alert-icn {
  font-size: 25px;
  left: 20px;
  position: absolute;
}
.alert .close-alert {
  position: absolute;
  right: 10px;
  font-size: 14px;
  padding: 10px;
  cursor: pointer;
  opacity: 0.5;
}
.alert .close-alert:hover {
  opacity: 1;
}
.alert.alert-confirmation {
  background-color: #cbf5b7;
  color: #53c41c;
}
.alert.alert-confirmation i {
  color: #53c41c;
}
.alert.alert-error {
  background-color: #f7c8cb;
  color: #d61d2c;
}
.alert.alert-error i {
  color: #d61d2c;
}
.alert.alert-prompt {
  background-color: #f7dac8;
  color: #d6631d;
}
.alert.alert-prompt i {
  color: #d6631d;
}
.alert.alert-info {
  background-color: #f0f6fd;
  color: #257ee2;
}
.alert.alert-info i {
  color: #257ee2;
}
.postcode-lookup {
  position: relative;
}
.postcode-lookup input[type=text] {
  text-transform: uppercase;
}
.postcode-lookup button {
  background-color: #f45b00;
  border: 0;
  color: white;
  font-size: 0.7em;
  font-weight: bold;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 20px;
}
.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: white;
  text-decoration: none;
  padding: 15px;
  text-align: center;
  font-size: 0.75em;
  gap: 5px;
  cursor: pointer;
  border-radius: 3px;
  background-clip: padding-box;
  transition: all 150ms ease-in-out;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  /* Bordered */
  /* Solid Colours -- probably not needed */
  /* Admin Button */
}
.site-button:hover, .site-button:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}
.site-button:not(.page-button) .site-button:disabled[disabled], .site-button:disabled[disabled]:hover, .site-button.disabled {
  background-color: #dfdfdf !important;
  color: #bbb !important;
  border: 1px solid transparent;
  border-color: transparent !important;
  cursor: auto;
}
.site-button.green-bordered {
  border: 2px solid #25bd77;
  color: #25bd77;
}
.site-button.green-bordered a {
  color: #25bd77;
}
.site-button.green-bordered:hover, .site-button.green-bordered.active {
  background-color: #25bd77;
  color: white;
}
.site-button.green-bordered:hover:hover a, .site-button.green-bordered.active:hover a {
  color: white;
}
.site-button.red-bordered {
  border: 2px solid #ce2a0d;
  color: #ce2a0d;
}
.site-button.red-bordered a {
  color: #ce2a0d;
}
.site-button.red-bordered:hover, .site-button.red-bordered.active {
  background-color: #ce2a0d;
  color: white;
}
.site-button.red-bordered:hover:hover a, .site-button.red-bordered.active:hover a {
  color: white;
}
.site-button.blue-bordered {
  border: 2px solid #257ee2;
  color: #257ee2;
}
.site-button.blue-bordered a {
  color: #257ee2;
}
.site-button.blue-bordered:hover, .site-button.blue-bordered.active {
  background-color: #257ee2;
  color: white;
}
.site-button.blue-bordered:hover:hover a, .site-button.blue-bordered.active:hover a {
  color: white;
}
.site-button.orange-bordered {
  border: 2px solid #f49500;
  color: #f49500;
}
.site-button.orange-bordered a {
  color: #f49500;
}
.site-button.orange-bordered:hover, .site-button.orange-bordered.active {
  background-color: #f49500;
  color: white;
}
.site-button.orange-bordered:hover:hover a, .site-button.orange-bordered.active:hover a {
  color: white;
}
.site-button.blue-solid-shadow {
  background-color: #257ee2;
  border: 1px solid #257ee2;
  box-shadow: 0 0 10px 3px #d9e9fa;
  color: #ffffff;
}
.site-button.blue-solid-shadow a {
  color: white;
}
.site-button.blue-solid-shadow:hover, .site-button.blue-solid-shadow.active {
  background-color: #1965bb;
  border: 1px solid #1965bb;
  color: white;
}
.site-button.blue-solid-shadow:hover a, .site-button.blue-solid-shadow.active a {
  color: white;
}
.site-button.blue-solid-no-shadow {
  background-color: #257ee2;
  border: 1px solid #257ee2;
  color: #ffffff;
}
.site-button.blue-solid-no-shadow a {
  color: white;
}
.site-button.blue-solid-no-shadow:hover, .site-button.blue-solid-no-shadow.active {
  background-color: #1965bb;
  border: 1px solid #1965bb;
  color: white;
}
.site-button.blue-solid-no-shadow:hover a, .site-button.blue-solid-no-shadow.active a {
  color: white;
}
.site-button.green-solid-shadow {
  background-color: #25bd77;
  border: 1px solid #25bd77;
  box-shadow: 0 0 10px 3px #bcf2d9;
  color: #ffffff;
}
.site-button.green-solid-shadow a {
  color: white;
}
.site-button.green-solid-shadow:hover, .site-button.green-solid-shadow.active {
  background-color: #1d925c;
  border: 1px solid #1d925c;
  color: white;
}
.site-button.green-solid-shadow:hover a, .site-button.green-solid-shadow.active a {
  color: white;
}
.site-button.green-solid-no-shadow {
  background-color: #25bd77;
  border: 1px solid #25bd77;
  color: #ffffff;
}
.site-button.green-solid-no-shadow a {
  color: white;
}
.site-button.green-solid-no-shadow:hover, .site-button.green-solid-no-shadow.active {
  background-color: #1d925c;
  border: 1px solid #1d925c;
  color: white;
}
.site-button.green-solid-no-shadow:hover a, .site-button.green-solid-no-shadow.active a {
  color: white;
}
.site-button.red-solid-shadow {
  background-color: #ce2a0d;
  border: 1px solid #ce2a0d;
  box-shadow: 0 0 10px 3px #fab9ad;
  color: #ffffff;
}
.site-button.red-solid-shadow a {
  color: white;
}
.site-button.red-solid-shadow:hover, .site-button.red-solid-shadow.active {
  background-color: #9e200a;
  border: 1px solid #9e200a;
  color: white;
}
.site-button.red-solid-shadow:hover a, .site-button.red-solid-shadow.active a {
  color: white;
}
.site-button.red-solid-no-shadow {
  background-color: #ce2a0d;
  border: 1px solid #ce2a0d;
  color: #ffffff;
}
.site-button.red-solid-no-shadow a {
  color: white;
}
.site-button.red-solid-no-shadow:hover, .site-button.red-solid-no-shadow.active {
  background-color: #9e200a;
  border: 1px solid #9e200a;
  color: white;
}
.site-button.red-solid-no-shadow:hover a, .site-button.red-solid-no-shadow.active a {
  color: white;
}
.site-button.light-grey-solid-shadow {
  background-color: #e0e0e0;
  border: 1px solid #e0e0e0;
  box-shadow: 0 0 10px 3px white;
  color: #ffffff;
}
.site-button.light-grey-solid-shadow a {
  color: white;
}
.site-button.light-grey-solid-shadow:hover, .site-button.light-grey-solid-shadow.active {
  background-color: #c7c7c7;
  border: 1px solid #c7c7c7;
  color: white;
}
.site-button.light-grey-solid-shadow:hover a, .site-button.light-grey-solid-shadow.active a {
  color: white;
}
.site-button.light-grey-solid-no-shadow {
  background-color: #e0e0e0;
  border: 1px solid #e0e0e0;
  color: #bbb;
}
.site-button.light-grey-solid-no-shadow a {
  color: white;
}
.site-button.light-grey-solid-no-shadow:hover, .site-button.light-grey-solid-no-shadow.active {
  background-color: #c7c7c7;
  border: 1px solid #c7c7c7;
  color: white;
}
.site-button.light-grey-solid-no-shadow:hover a, .site-button.light-grey-solid-no-shadow.active a {
  color: white;
}
.site-button.orange-solid-shadow {
  background-color: #f49500;
  border: 1px solid #f49500;
  box-shadow: 0 0 10px 3px #ffe7c1;
  color: #ffffff;
}
.site-button.orange-solid-shadow a {
  color: white;
}
.site-button.orange-solid-shadow:hover, .site-button.orange-solid-shadow.active {
  background-color: #c17600;
  border: 1px solid #c17600;
  color: white;
}
.site-button.orange-solid-shadow:hover a, .site-button.orange-solid-shadow.active a {
  color: white;
}
.site-button.orange-solid-no-shadow {
  background-color: #f49500;
  border: 1px solid #f49500;
  color: #ffffff;
}
.site-button.orange-solid-no-shadow a {
  color: white;
}
.site-button.orange-solid-no-shadow:hover, .site-button.orange-solid-no-shadow.active {
  background-color: #c17600;
  border: 1px solid #c17600;
  color: white;
}
.site-button.orange-solid-no-shadow:hover a, .site-button.orange-solid-no-shadow.active a {
  color: white;
}
.site-button.small-btn {
  font-size: 0.65em;
  padding: 9px 12px;
  border-radius: 2px;
  background-clip: padding-box;
}
.site-button.medium-btn {
  font-size: 0.8em;
  padding: 9px 15px;
}
.site-button.xtr-large-btn {
  padding: 15px 20px;
}
.site-button.admin-btn {
  color: white;
  text-transform: uppercase;
  font-weight: 600;
}
.site-button.admin-btn.default-solid-admin {
  background-color: #f45b00;
  border: 1px solid #f45b00;
  box-shadow: 0 0 10px 3px #ffd8c1;
  color: #ffffff;
}
.site-button.admin-btn.default-solid-admin a {
  color: white;
}
.site-button.admin-btn.default-solid-admin:hover, .site-button.admin-btn.default-solid-admin.active {
  background-color: #c14800;
  border: 1px solid #c14800;
  color: white;
}
.site-button.admin-btn.default-solid-admin:hover a, .site-button.admin-btn.default-solid-admin.active a {
  color: white;
}
.site-button.bold-btn {
  font-weight: bold;
}
.site-button:disabled[disabled], .site-button:disabled[disabled]:hover {
  background-color: #888;
  border-color: #888;
}
.site-button:has(.button-icon) {
  height: 33px;
}
.site-button .button-icon {
  font-size: 20px;
  line-height: 20px;
}
@media screen and (max-width: 786px) {
  .site-button.responsive .button-label {
    display: none;
  }
  .site-button.responsive.large {
    height: 50px;
    width: 50px;
    border-radius: 25px;
    padding: 10px;
  }
  .site-button.responsive.large i {
    font-size: 30px;
  }
}
.full-width-buttons .new-style-btn {
  width: 100%;
}
.site-button.m-r + .site-button.m-r {
  margin-right: 10px;
}
.site-button.m-l + .site-button.m-l {
  margin-left: 10px;
}
table {
  width: 100%;
  font-size: 0.8em;
  background-color: white;
}
table thead tr:first-child th {
  background-color: #fafafa;
}
table td,
table th {
  padding: 7px 5px;
}
table td.checkbox-cell,
table th.checkbox-cell {
  padding: 7px 0;
  width: 40px;
}
table td.icon-cell,
table th.icon-cell {
  background-color: #f8f8f8;
  text-align: center;
}
table td.icon-cell a,
table th.icon-cell a {
  color: black;
  text-decoration: none;
  opacity: 0.5;
  font-size: 24px;
}
table td.icon-cell a:hover,
table th.icon-cell a:hover {
  opacity: 1;
}
table td.sort-column,
table th.sort-column {
  cursor: pointer;
  position: relative;
  background-color: #f0f0f0;
}
table td.sort-column::after,
table th.sort-column::after {
  position: absolute;
  right: 10px;
  font-family: FontAwesome;
  content: "\f110";
  opacity: 0.1;
  transition: transform 0.3s ease;
}
table td.sort-column:hover::after,
table th.sort-column:hover::after {
  opacity: 1;
}
table td.sort-column.active,
table th.sort-column.active {
  background-color: #fff;
}
table td.sort-column.active::after,
table th.sort-column.active::after {
  opacity: 1;
}
table td.sort-column.active.ASC::after,
table th.sort-column.active.ASC::after {
  transform: rotate(180deg) translateY(-2px);
}
table thead tr,
table thead td,
table thead th {
  border: 1px solid #eee;
}
table tbody tr {
  border: 1px solid #eee;
}
table tbody tr:first-child {
  border-top: 0;
}
table tbody tr td.no-entries {
  padding: 20px 0;
  text-align: center;
  color: #999;
  font-weight: bold;
}
table .divider-row {
  border: 0;
}
table .divider-row th {
  padding: 0;
  height: 2px;
  border: 0;
}
.input-table {
  background-color: #f8f8f8;
}
.input-table th {
  padding: 10px;
}
.input-table input {
  font-size: 11px !important;
}
.tab-menu {
  border-bottom: 1px solid #eee;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 10px 20px;
  padding-bottom: 0px;
}
.tab-menu li {
  padding: 0px 0 4px 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  margin-right: 30px;
  margin-bottom: 5px;
  color: #222;
  opacity: 0.5;
  cursor: pointer;
  border-bottom: 3px solid transparent;
}
.tab-menu li.no-margin {
  margin-right: 0;
}
.tab-menu li.active, .tab-menu li:hover {
  opacity: 1;
  border-color: #f45b00;
}
.tab-menu li.right-aligned {
  margin-left: auto;
}
.tab-menu.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
/* Layouts */
.body-content {
  min-height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.body-content .content-container {
  padding: 0px 30px 30px 30px;
}
.body-content .content-container.content-no-padding {
  padding: 39px 0 0 0;
}
.body-content:has(.overlay-actions) .content-container {
  padding-bottom: 20px;
}
@media screen and (max-width: 786px) {
  .body-content .content-container {
    padding-inline: 15px;
  }
}
.login-background {
  padding: 0;
  margin: 0;
  height: 100%;
}
.login-background .login-logo {
  position: absolute;
  top: 30px;
  left: 30px;
}
.login-background .login-logo svg {
  width: 300px;
}
.login-background .login-logo svg path {
  fill: #f49500;
}
.login-background .login-form {
  background-image: linear-gradient(to bottom, #f49500 0%, #f45b00 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFF49500", endColorstr="#FFF45B00", GradientType=0);
  width: 400px;
  margin: 150px auto;
  position: relative;
  z-index: 2;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
}
.login-background .login-form h1 {
  font-size: 28px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.login-background .login-form label {
  color: white;
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  display: block;
  margin-top: 20px;
  text-transform: uppercase;
}
.login-background .login-form input[type=email], .login-background .login-form input[type=password] {
  border: 0;
  background-color: white;
  color: black;
  padding: 15px;
  border-radius: 2px;
  background-clip: padding-box;
}
.login-background .login-form input[type=submit] {
  border: 2px solid white;
  color: white;
  border-radius: 4px;
  background-clip: padding-box;
  display: block;
  padding: 15px;
  width: 100%;
  background-color: transparent;
  transition: all 100ms ease-in-out;
}
.login-background .login-form input[type=submit]:hover {
  background-color: white;
  color: #f45b00;
}
.login-background-image {
  background-image: url("/images/background.jpg");
  background-size: 100%;
  opacity: 0.05;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.advance-search-listing {
  overflow: hidden;
  float: left;
  width: 100%;
  border-radius: 3px;
  background-clip: padding-box;
  margin-bottom: 15px;
}
.advance-search-listing li {
  padding: 15px;
  font-size: 0.8em;
  width: 25%;
  font-weight: bold;
  background-color: #e5e5e5;
  float: left;
  text-align: center;
  cursor: pointer;
}
.advance-search-listing li.active, .advance-search-listing li:hover {
  background-color: #f45b00;
  color: white;
}
.filter-box {
  border: 1px solid #eee;
  border-radius: 3px;
  background-clip: padding-box;
  padding: 10px;
}
.filter-box.filter-list {
  max-height: 230px;
  overflow: auto;
  padding: 0 10px 7px 10px;
}
.filter-box.filter-list label {
  margin: 13px 20px 5px 10px;
}
.filter-box li {
  margin: 6px 0;
}
.filter-box label {
  margin-left: 10px;
  margin-top: 5px;
  display: inline-block;
  cursor: pointer;
  margin-right: 20px;
  width: auto;
}
.filter-box .filter-option-list-item {
  display: inline-block;
}
@media screen and (max-width: 786px) {
  .filter-box {
    padding: 0 0 7px 0;
  }
  .filter-box.filter-list label {
    margin: 5px 8px 3px 5px;
    white-space: wrap;
    max-width: 100%;
    display: inline-block;
  }
  .filter-box .filter-option-list-item {
    margin-block: 6px;
    display: block;
  }
  .filter-box li {
    white-space: nowrap;
  }
}
.prop-search-filter-list {
  padding: 7px 7px 3px 7px;
  margin-bottom: 10px;
}
.prop-search-filter-list strong {
  float: left;
  padding: 6px 8px;
  display: inline-block;
  font-size: 0.8em;
  margin: 6px;
}
.prop-search-filter-list span {
  border-radius: 3px;
  background-clip: padding-box;
  font-size: 0.8em;
  margin: 5px 1px;
  padding: 5px 36px 5px 8px;
  display: inline-block;
  border: 1px dotted #f49500;
  color: #333;
  overflow: hidden;
  position: relative;
}
.prop-search-filter-list span i {
  background-color: #eee;
  padding: 8px 6px;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.7;
  cursor: pointer;
}
.prop-search-filter-list span i:hover {
  opacity: 1;
}
.header-bar {
  background-color: white;
  height: 61px;
  color: white;
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: sticky;
  width: 100%;
  left: 0;
  z-index: 2;
  box-shadow: 0 0 10px 5px rgba(224, 221, 221, 0.5);
  border: 1px solid #f7f7f7;
  border-left: 0;
  border-top: 0;
  border-bottom: 1px solid #e3e3e3;
  max-width: 100%;
}
.header-bar .header-bar-left, .header-bar .header-bar-right {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header-bar .header-bar-right {
  margin-left: auto;
}
.header-bar .top-search-bar {
  padding: 0px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 100%;
}
.header-bar .top-search-bar .search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
}
.header-bar .top-search-bar .search-icn {
  font-size: 24px;
  color: black;
  opacity: 0.2;
  right: 6px;
  position: absolute;
  z-index: 2;
}
.header-bar .top-search-bar input[type=text] {
  background-color: rgba(0, 0, 0, 0.0666666667);
  padding: 2px;
  padding-right: 30px;
  border: 0;
  flex: 1;
  min-width: 50px;
  height: 33px;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
  color: black;
  font-size: 16px;
  transition: all 150ms ease-in-out;
  outline: 0;
  opacity: 1;
}
.header-bar .top-search-bar #advanced-search-button {
  margin-left: 5px;
}
.header-bar .top-search-select {
  padding-top: 9px;
  margin-right: 15px;
}
.header-bar .top-search-select select {
  width: 200px;
  font-weight: bold;
  padding: 12px 12px 11px 12px;
  border: 0;
  background-color: #f8f8f8;
}
.header-bar .top-options-bar > button {
  margin: 12px 0;
}
.header-bar .top-options-bar > li {
  padding: 0 12px;
  margin: 0;
  float: left;
}
.header-bar .top-options-bar > li.divider {
  border-right: 1px solid #eee;
}
.header-bar .top-options-bar > li:first-child {
  padding-left: 0;
}
.header-bar .top-options-bar:last-child {
  margin-left: auto;
}
.header-bar .logo-container {
  background-image: linear-gradient(to right, #f45b00 0%, #f49500 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFF45B00", endColorstr="#FFF49500", GradientType=1);
  height: 60px;
  text-align: center;
  margin-bottom: 10px;
  width: 200px;
}
.header-bar .logo-container img {
  width: 80px;
  margin-top: 20px;
}
.header-bar #toggle-sidemenu {
  display: none;
  cursor: pointer;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.1333333333);
  border: 1px solid rgba(255, 255, 255, 0.2);
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}
.header-bar #toggle-sidemenu i {
  font-size: 24px;
}
.header-bar #toggle-sidemenu.pinned {
  border-color: rgba(255, 255, 255, 0.5333333333);
}
.header-bar #toggle-sidemenu:hover {
  border-color: rgba(255, 255, 255, 0.6666666667);
  color: #fff;
}
#header-bar-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 1;
  max-width: 100vw;
  height: 60px;
  padding-inline: 10px;
  padding-block: 5px;
  gap: 5px;
}
#header-bar-content:empty {
  padding: 0;
}
.button-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 786px) {
  .header-bar {
    padding: 0;
    margin: 0;
  }
  .header-bar .logo-container {
    width: 100%;
    margin: 0;
  }
  .header-bar #toggle-sidemenu {
    display: flex;
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 4;
    color: white;
    font-size: 16px;
  }
  .header-bar, #header-bar-content {
    height: -moz-min-content;
    height: min-content;
  }
  #header-bar-content {
    padding: 2px 5px;
  }
  #header-bar-content .button-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 0;
  }
}
#sidemenu {
  background-color: #333;
  color: white;
  height: 100%;
  z-index: 3;
  width: 200px;
}
#sidemenu ul {
  margin-top: 10px;
}
#sidemenu ul li a {
  padding: 12px 15px;
  display: block;
  font-size: 0.8em;
  color: white;
  text-decoration: none;
  font-weight: 300;
}
#sidemenu ul li a span {
  margin-left: 10px;
  display: inline-block;
  margin-top: 3px;
}
#sidemenu ul li a i {
  font-size: 22px;
  float: left;
  opacity: 0.4;
}
#sidemenu ul li:hover a, #sidemenu ul li.active a {
  background-color: #222;
}
#sidemenu ul li:hover a i, #sidemenu ul li.active a i {
  opacity: 0.8;
}
@media screen and (max-width: 786px) {
  #sidemenu {
    position: fixed;
    top: 60px;
    left: -200px;
    transition: left 0.25s ease;
    height: calc(100% - 60px);
    z-index: 3000;
  }
  #sidemenu.pinned {
    left: 0px;
  }
}
.user-list {
  margin: 0 20px;
}
.user-list li {
  display: block;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}
.user-list li strong {
  margin-bottom: 3px;
  display: inline-block;
  font-size: 0.9em;
}
.user-list li em {
  font-size: 0.8em;
  display: inline-block;
  color: #999;
}
.user-list li .disable-user {
  float: right;
  color: red;
  font-size: 0.85em;
  display: inline-block;
  opacity: 0.6;
  text-decoration: none;
}
.user-list li .disable-user:hover {
  opacity: 1;
}
/* Plugins */
#croppic {
  width: 400px; /* MANDATORY */
  height: 208px; /* MANDATORY */
  position: relative; /* MANDATORY */
  margin: 50px 70px 20px;
  border: 3px solid #FFF;
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  border-radius: 2px;
  background-image: url("../../lib/croppic/placeholder.png");
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.1);
}
/* DO NOT CHANGE FROM HERE ( unless u know what u are doing) */
.cropImgWrapper {
  cursor: grab;
}
.cropImgWrapper:active {
  cursor: grabbing;
}
.cropImgUpload {
  z-index: 2;
  position: absolute;
  display: block;
  top: -30px;
  right: -2px;
  font-family: sans-serif;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  color: #FFF;
}
.cropControls {
  z-index: 2;
  position: absolute;
  height: 30px;
  display: block;
  /* top: -31px; */
  top: 5px;
  right: 5px;
  font-family: sans-serif;
  background-color: rgb(0, 0, 0);
}
.cropControls i {
  display: block;
  float: left;
  margin: 0;
  cursor: pointer;
  background-image: url("../../lib/croppic/cropperIcons.png");
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 20px;
  color: #FFF;
  font-size: 13px;
  font-weight: bold;
  font-style: normal;
}
.cropControls i:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
.cropControls i.cropControlZoomMuchIn {
  background-position: 0px 0px;
}
.cropControls i.cropControlZoomIn {
  background-position: -30px 0px;
}
.cropControls i.cropControlZoomOut {
  background-position: -60px 0px;
}
.cropControls i.cropControlZoomMuchOut {
  background-position: -90px 0px;
}
.cropControls i.cropControlRotateLeft {
  background-position: -210px 0px;
}
.cropControls i.cropControlRotateRight {
  background-position: -240px 0px;
}
.cropControls i.cropControlCrop {
  background-position: -120px 0px;
}
.cropControls i.cropControlUpload {
  background-position: -150px 0px;
}
.cropControls i.cropControlReset {
  background-position: -180px 0px;
}
.cropControls i.cropControlRemoveCroppedImage {
  background-position: -180px 0px;
}
.cropControls i:last-child {
  margin-right: none;
}
#croppicModal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
}
/*
*		PRELOADER 
*		With courtesy of : http://cssload.net/
*/
.bubblingG {
  text-align: center;
  width: 80px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -18px auto auto -40px;
  z-index: 2;
}
.bubblingG span {
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  margin: 25px auto;
  background: #FFF;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-border-radius: 50px;
  -moz-animation: bubblingG 1s infinite alternate;
  -webkit-animation: bubblingG 1s infinite alternate;
  -ms-border-radius: 50px;
  -ms-animation: bubblingG 1s infinite alternate;
  -o-border-radius: 50px;
  animation: bubblingG 1s infinite alternate;
  border-radius: 50px;
  background-clip: padding-box;
}
#bubblingG_1 {
  animation-delay: 0s;
}
#bubblingG_2 {
  animation-delay: 0.3s;
}
#bubblingG_3 {
  animation-delay: 0.6s;
}
@keyframes bubblingG {
  0% {
    width: 10px;
    height: 10px;
    background-color: #FFF;
    transform: translateY(0);
  }
  100% {
    width: 24px;
    height: 24px;
    background-color: #FFF;
    transform: translateY(-21px);
  }
}
/* some reset stlyes */
/* ======================
	Cropper Plugin
====================== */
.cropUpload {
  position: relative; /* or fixed or absolute */
  background-color: #f7f7f7;
  border: 1px dashed #bbb;
  cursor: pointer;
  display: inline-block;
  color: black;
}
.cropUpload .croppedImg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cropUpload .cropUploadClickable {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  text-align: center;
  background-image: url("../../lib/croppic/placeholder-image.png");
  background-repeat: no-repeat;
  background-position: 50% 30%;
  background-size: 100px;
}
.cropUpload .cropUploadClickable .cropUploadText {
  display: inline-block;
  position: absolute;
  text-align: center;
  background-color: white;
  left: 0;
  font-size: 0.9em;
  width: 60%;
  margin: 0 20%;
  font-weight: bold;
  padding: 10px;
  top: 80%;
  transition: all 100ms ease-in-out;
}
.cropUpload .cropUploadClickable .cropUploadText i {
  margin-right: 7px;
}
.cropUpload .cropUploadClickable:hover .cropUploadText {
  background-color: #ccc;
  color: white;
}
.cropUpload .crop-image-display img {
  width: 100%;
}
.crop-image-display {
  background-color: #eee;
  position: relative;
  display: inline-block;
}
.crop-image-display img {
  width: 100%;
}
.crop-image-display .remove-crop-image {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 31px;
  height: 31px;
  cursor: pointer;
  background-position: -180px 0px;
  background-image: url("../../lib/croppic/cropperIcons.png");
  background-color: rgba(0, 0, 0, 0.7);
}
.crop-image-display .remove-crop-image:hover {
  background-color: rgb(0, 0, 0);
}
/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
@keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(1);
  }
}
.dropzone, .dropzone * {
  box-sizing: border-box;
}
.dropzone {
  min-height: 250px;
  width: 100%;
  border: 1px dashed #aaa;
  border-radius: 5px;
  background-clip: padding-box;
  background: white;
  padding: 20px 20px;
}
.dropzone:hover {
  border: 1px dashed #ccc;
}
.dropzone.dz-clickable {
  cursor: pointer;
}
.dropzone.dz-clickable * {
  cursor: default;
}
.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}
.dropzone.dz-started .dz-message {
  display: none;
}
.dropzone.dz-drag-hover {
  border-style: solid;
}
.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}
.dropzone .dz-message {
  text-align: center;
  font-weight: bold;
  position: absolute;
  font-size: 0.9em;
  width: 100%;
}
.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}
.dropzone .dz-preview:hover {
  z-index: 1000;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 4px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #f5f5f5);
}
.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-image-preview {
  background: white;
}
.dropzone .dz-preview.dz-image-preview .dz-details {
  transition: opacity 0.2s linear;
}
.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}
.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}
.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}
.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}
.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}
.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}
.dropzone .dz-preview:hover .dz-image img {
  transform: scale(1.05, 1.05);
  filter: blur(8px);
}
.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}
.dropzone .dz-preview .dz-image img {
  display: block;
}
.dropzone .dz-preview.dz-success .dz-success-mark {
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -8px;
}
.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}
.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  transition: all 0.2s linear;
}
.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}
.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  animation: pulse 6s ease infinite;
}
.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}
.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  transition: width 300ms ease-in-out;
}
.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}
.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}
.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white;
}
.dropzone .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}
/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
.dropzone, .dropzone * {
  box-sizing: border-box;
}
.dropzone {
  position: relative;
}
.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  width: 120px;
  margin: 0.5em;
}
.dropzone .dz-preview .dz-progress {
  display: block;
  height: 15px;
  border: 1px solid #aaa;
}
.dropzone .dz-preview .dz-progress .dz-upload {
  display: block;
  height: 100%;
  width: 0;
  background: green;
}
.dropzone .dz-preview .dz-error-message {
  color: white;
  display: none;
}
.dropzone .dz-preview.dz-error .dz-error-message, .dropzone .dz-preview.dz-error .dz-error-mark {
  display: block;
}
.dropzone .dz-preview.dz-success .dz-success-mark {
  display: block;
}
.dropzone .dz-preview .dz-error-mark, .dropzone .dz-preview .dz-success-mark {
  position: absolute;
  display: none;
  left: 30px;
  top: 30px;
  width: 54px;
  height: 58px;
  left: 50%;
  margin-left: -27px;
}
#dz-file-tmp, #dz-image-tmp {
  display: none;
}
.custom-file-preview {
  border: 1px solid #ddd;
  border-radius: 5px;
  background-clip: padding-box;
  position: relative;
}
.custom-file-preview.dz-error .file-icon {
  display: none;
  opacity: 0;
}
.custom-file-preview .dz-details {
  height: 100%;
  padding: 0 !important;
}
.custom-file-preview .dz-details .dz-filename {
  position: absolute;
  bottom: -25px;
  width: 100%;
  text-align: center;
  left: 0;
  font-weight: bold;
  font-size: 0.9em;
}
.custom-file-preview .dz-details .dz-size {
  display: none;
}
.custom-file-preview .dz-details img[data-dz-thumbnail] {
  width: 100%;
  display: none;
}
.custom-file-preview .dz-details .file-icon {
  height: 50px;
  width: auto;
  margin-top: 25px;
  position: absolute;
}
.custom-image-preview {
  border: 1px solid #ddd;
  border-radius: 3px;
  background-clip: padding-box;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  width: 114px !important;
}
.custom-image-preview.active {
  outline: 2px solid #25bd77;
  border: 1px solid white;
}
.custom-image-preview.active .dz-make-main {
  display: none;
}
.custom-image-preview .dz-details {
  display: none;
  opacity: 0;
}
.dz-delete {
  position: absolute;
  z-index: 1000;
  top: 2px;
  right: 2px;
  background-color: #ce2a0d;
  color: white;
  padding: 1px 2px;
  font-size: 0.8em;
  border-radius: 4px;
  background-clip: padding-box;
  opacity: 0.7;
  cursor: pointer !important;
}
.dz-delete:hover {
  opacity: 1;
}
.dz-make-main {
  position: absolute;
  display: inline-block;
  z-index: 1000;
  top: 2px;
  left: 2px;
  background-color: #25bd77;
  color: white;
  padding: 1px 2px;
  font-size: 0.8em;
  border-radius: 4px;
  background-clip: padding-box;
  opacity: 0.7;
  cursor: pointer !important;
}
.dz-make-main:hover {
  opacity: 1;
}
.dz-make-main i {
  cursor: pointer !important;
}
.dz-download {
  position: absolute;
  display: inline-block;
  z-index: 1000;
  top: 2px;
  left: 2px;
  background-color: #25bd77;
  color: white;
  padding: 1px 2px;
  font-size: 1em;
  border-radius: 4px;
  background-clip: padding-box;
  opacity: 0.7;
  cursor: pointer !important;
  text-decoration: none;
}
.dz-download:hover {
  opacity: 1;
}
.dz-download i {
  cursor: pointer !important;
}
.dropzone.dz-clickable .dz-delete * {
  cursor: pointer;
}
.imageDropzone {
  border: 1px solid #ddd;
  color: #f45b00;
  margin-top: 15px;
  padding: 0;
  min-height: 100px;
  background-color: #f8f8f8;
}
.priority-colour {
  display: inline-block;
  width: 22px;
  height: 33px;
  position: absolute;
  right: 1px;
  top: 33px;
}
.agent-report-generator .icheckbox_square-orange,
.agent-report-generator .iradio_square-orange {
  background-image: url(../../lib/icheck/skins/square/blue.png) !important;
}
.property-select-dropdown {
  float: right;
  padding: 20px;
  width: 350px;
  font-weight: bold;
  margin-top: -30px;
}
#preview-map {
  border: 1px dashed #bbb;
  height: 350px;
  margin-top: 20px;
  text-align: center;
}
#preview-map .site-button {
  margin-top: 90px;
}
.main-preview-img {
  border: 1px dashed #ddd;
  min-height: 140px;
  padding: 4px;
  display: inline-block;
}
.main-preview-img img {
  display: block;
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#radius-size-tooltip {
  width: 300px;
}
#radius-size-tooltip input[type=number] {
  width: 50%;
  float: left;
}
#radius-size-tooltip input[type=button] {
  width: 45%;
  float: right;
  padding: 15px 0;
  font-size: 0.7em !important;
  font-weight: bold !important;
}
.map-container {
  position: relative;
}
.map-container .map-options {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #060606;
  pointer-events: none;
  z-index: 100;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  background-clip: padding-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.map-container .map-options.polygon-options {
  position: absolute;
  top: 0px;
  width: 100%;
  right: 0px;
  bottom: unset;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: transparent;
  translate: unset;
  padding-left: 180px;
  padding-right: 50px;
  z-index: 100;
  border-radius: 4px;
  background-clip: padding-box;
}
.map-container .map-options.polygon-options ul {
  background-color: #060606;
  width: -moz-fit-content;
  width: fit-content;
}
.map-container .map-options.polygon-options li {
  width: 65px;
  height: 70px;
}
.map-container .map-options.polygon-options li i {
  font-size: 1.3em;
}
.map-container .map-options > * {
  pointer-events: auto;
}
.map-container .map-options ul li {
  border-right: 1px solid #444;
  border-radius: 3px;
  color: #ccc;
  height: 80px;
  float: left;
  width: 70px;
  text-align: center;
  cursor: pointer;
  position: relative;
}
.map-container .map-options ul li i {
  margin-top: 15px;
  font-size: 1.8em;
}
.map-container .map-options ul li span {
  font-size: 0.7em;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px 0;
  background-color: #111;
  width: 100%;
}
.map-container .map-options ul li.disabled {
  cursor: auto;
  color: #444;
  pointer-events: none;
}
.map-container .map-options ul li:hover:not(.disabled) {
  color: white;
}
.map-container .map-options ul li.active {
  background-color: #25bd77;
  color: white;
}
.map-container .map-options ul li.active span {
  background-color: #20bc74;
}
.map-container .map-options ul li[data-map-action=save] {
  color: #83ffc6;
}
.map-container .map-options ul.r-float {
  border-left: 1px solid #444;
}
.map-container .map-options small strong {
  margin-right: 8px;
}
#map-search-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 0 10px;
}
#map-search-box .map-search-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  flex: 1;
  height: 56px;
}
#map-search-box .map-search-input {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
#map-search-box input[type=text] {
  background-color: transparent;
  color: white;
  border: 1px solid #333;
  text-transform: uppercase;
  height: 56px;
  border-radius: 0px;
  padding-right: 25px;
}
#map-search-box button.map-search-btn {
  color: orange;
  background-color: transparent;
  border: 0;
  font-size: 20px;
  position: absolute;
  right: 5px;
  top: 100%;
  height: 100%;
  transform: translateY(-100%);
}
#map-search-box button.map-add-point {
  background-color: #111;
  border: 1px solid #333;
  border-left-width: 0px;
  color: #999;
  font-size: 22px;
  width: 56px;
  height: 56px;
  outline: 0;
}
#map-search-box button.map-add-point:hover {
  color: #fff;
  background-color: #333;
}
#map-search-box button.map-add-point.active {
  background-color: #f45b00;
  color: #fff;
  border-color: white;
}
#map-search-box small {
  font-size: 0.6em;
  color: #444;
}
.zone-report-checklist li {
  margin-bottom: 10px;
}
.zone-report-checklist label {
  display: inline-block;
  color: white;
  margin-left: 5px;
  margin-top: 0;
}
.map-info-window {
  overflow: hidden;
  font-size: 1em;
  min-width: 350px;
}
.map-info-window ul li {
  line-height: 150%;
  font-weight: 400;
}
.map-info-window ul li.map-info-window-divider {
  border-top: 1px solid #eee;
  padding: 3px 0;
}
.map-info-window a {
  color: black;
}
.map-info-window img {
  margin: 10px 0;
}
.map-info-window h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 5px 0 10px 0;
  padding: 0;
}
.map-info-window h3 {
  border: 0;
  padding: 15px 0;
  background-color: #f5f5f5;
  text-align: center;
}
.map-info-window table {
  font-size: 0.9em;
}
.map-info-window table td,
.map-info-window table th {
  padding: 10px;
}
.map-info-window table th,
.map-info-window table .table-left-cell {
  background-color: #f5f5f5;
}
.la-green-bg {
  background-color: #ce2a0d;
  color: white;
}
.la-orange-bg {
  background-color: #fff45b;
  color: #c1b400;
}
.la-red-bg {
  background-color: #25bd77;
  color: white;
}
.la-green-c {
  color: #ce2a0d;
}
.la-orange-c {
  color: #fff45b;
}
.la-red-c {
  color: #25bd77;
}
.la-map-color-list {
  float: right;
  margin-top: 10px;
}
.la-map-color-list li {
  padding: 10px 20px;
  font-size: 0.8em;
  font-weight: bold;
}
.loading-icon {
  font-size: 35px;
  color: #444;
  margin: 15px 15px 15px 35px;
}
.map-display-modes {
  width: 400px;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}
.map-display-modes .site-button {
  border-radius: 0;
  width: 50%;
  padding: 10px;
}
.map-display-modes .site-button.active {
  background-color: #25bd77 !important;
  border-color: #25bd77;
}
/* The location pointed to by the popup tip. */
.popup-tip-anchor {
  height: 0;
  position: absolute;
  /* The max width of the info window. */
  width: 200px;
}
/* The bubble is anchored above the tip. */
.popup-bubble-anchor {
  position: absolute;
  width: 100%;
  bottom: 8px;
  left: 0;
}
/* Draw the tip. */
.popup-bubble-anchor::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  /* Center the tip horizontally. */
  transform: translate(-50%, -550%);
  /* The tip is a https://css-tricks.com/snippets/css/css-triangle/ */
  width: 0;
  height: 0;
  /* The tip is 8px high, and 12px wide. */
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid white;
}
/* The popup bubble itself. */
.popup-bubble-content {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -220%);
  /* Style the info window. */
  background-color: white;
  padding: 5px;
  border-radius: 5px;
  font-family: sans-serif;
  overflow-y: auto;
  max-height: 60px;
  box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.5);
}
.map-alerts-container {
  display: inline-block;
  width: 350px;
  color: white;
  margin-top: 15px;
}
.processing-map-info {
  position: absolute;
  top: 20px;
  right: 20px;
}
.processing-map-info #processing-icon {
  float: left;
  margin-right: 10px;
  margin-top: 2px;
}
.processing-map-info #processing-message {
  color: #999;
}
.processing-map-info #processing-message.processing {
  color: #25bd77;
}
.generating-report-overlay {
  background-color: rgba(0, 0, 0, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}
.generating-report-overlay .gro-container {
  width: 100%;
  text-align: center;
}
.generating-report-overlay .gro-container h1 {
  color: white;
}
.zr-loader {
  color: #ffffff;
  font-size: 20px;
  margin: 100px auto;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  animation: load4 1.3s infinite linear;
  transform: translateZ(0);
}
@keyframes load4 {
  0%, 100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}
html,
body,
#app,
main {
  height: 100%;
}
#app,
body:not(:has(#app)):not(.login-background) {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-rows: 60px 1fr;
  grid-template-areas: "header header" "nav main";
  overflow: hidden;
  max-width: 100%;
  height: 100vh;
}
#app nav,
body:not(:has(#app)):not(.login-background) nav {
  grid-area: nav;
}
#app main,
body:not(:has(#app)):not(.login-background) main {
  grid-area: main;
  overflow: auto;
  height: 100%;
}
#app header#main-header-bar,
body:not(:has(#app)):not(.login-background) header#main-header-bar {
  grid-area: header;
}
#site-export-preview {
  margin-top: 20px;
}
@media screen and (max-width: 786px) {
  #app,
  body:not(:has(#app)):not(.login-background) {
    grid-template-columns: 1fr;
    grid-template-areas: "header" "main";
    grid-template-rows: auto 1fr;
  }
  html, body, #app, main {
    height: 100svh;
  }
  #processing-message {
    display: none;
  }
  .map-display-modes {
    margin: 0;
    margin-inline: auto;
    border: 0;
  }
  .map-display-modes button {
    margin: 0;
    height: 100%;
  }
}