@charset "UTF-8";

@layer framework{

:root {
  --app-brand-primary-light: #dfeffa;
  --app-brand-primary-highlight: #77bde7;
  --app-brand-primary: #007ac2;
  --app-brand-primary-rgb: 0, 122, 194;
  --app-brand-primary-dark: #00619b;
  --app-brand-secondary-rgb: 175, 105, 21; /* orange */ }

.nav-header:hover:after,
.nav-control:hover:after,
.mobile-menu-btn:hover:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  outline: none;
  bottom: 0 }

.nav-header:hover:after, .mobile-menu-btn:hover:after { margin: 0 1.5rem }

@media screen and (min-width: 768px) {

  .nav-control:hover:after { margin: 0 0.75rem }

  .user-info-dropdown-btn:hover:after { margin: 0 1.5rem }

  [data-name='dropdown-menu-list'] .nav-control:hover:after { margin: 0 }

  .user-info-dropdown-short-name {
    max-width: 10rem } }

.user-info-section {
  min-width: 12rem }

.user-thumbnail-image {
  object-fit: cover }

@keyframes rotate-clockwise {
  0% { transform:rotate(0deg) }
  100% { transform:rotate(360deg) } }

@keyframes rotate-counter-clockwise {
  0% { transform:rotate(0deg) }
  100% { transform:rotate(-360deg) } }

@keyframes fade-out {
  0% { opacity: 1 }
  100% { opacity: 0 } }

@keyframes fade-in {
  0% { opacity: 0 }
  100% { opacity: 1 } }

@keyframes fade-out-and-scale {
  0% { opacity: 1; transform: scale(1) }
  100% { opacity: 0; transform: scale(0.8) } }

@keyframes fade-in-and-scale {
  0% { opacity: 0; transform: scale(0.8) }
  100% { opacity: 1; transform: scale(1) } }

.spinner .square {
  position: absolute;
  fill: none;
  stroke-dasharray: 50%, 350%;
  animation: 2s linear 0s infinite normal none running spinner-clockwise }

.spinner .square-2 {
  stroke-dasharray: 100%, 225%, 50%, 25%;
  animation: 1s linear 0s infinite normal none running spinner-clockwise }

.spinner .square-3 {
  stroke-dasharray: 50%, 50%, 75%, 225%;
  animation: 1.85s linear 0s infinite normal none running spinner-clockwise }

.spinner {
  stroke: var(--app-brand-primary);
  stroke-width: 8px;
  stroke-dashoffset: 0;
  fill: none;
  animation: 2s linear 0s infinite alternate-reverse none running spinner-color-shift }

[dir='rtl'] .spinner .square,
[dir='rtl'] .spinner .square-2,
[dir='rtl'] .spinner .square-3 {
  animation-name: spinner-counter-clockwise }

.spinner.sm {
  stroke-width: 16px }

@keyframes spinner-color-shift {
  0% {
    stroke: var(--app-brand-primary-light) }
  100% {
    stroke: var(--app-brand-primary) } }

@keyframes spinner-clockwise {
  0% {
    stroke-dashoffset: 0 }
  100% {
    stroke-dashoffset: -400% } }

@keyframes spinner-counter-clockwise {
  0% {
    stroke-dashoffset: 0 }
  100% {
    stroke-dashoffset: 400% } }

body.user-is-tabbing .focus-outline,
body.user-is-tabbing .inset-focus-outline {
  transition: box-shadow 0.15s ease, background-color 0.15s ease }

body.user-is-tabbing .focus-outline:focus {
  box-shadow: 0 0 0 3px rgba(var(--app-brand-primary-rgb), 0.5) }

body.user-is-tabbing .inset-focus-outline:focus {
  box-shadow: inset 0 0 0 3px rgba(var(--app-brand-primary-rgb), 0.5) }

body.user-is-tabbing .focus-outline:focus,
body.user-is-tabbing .inset-focus-outline:focus {
  outline: none }

body.user-is-tabbing .focus-outline:focus.bg-brand,
body.user-is-tabbing .focus-outline:focus.text-brand-dark {
  box-shadow: 0 0 0 3px rgba(var(--app-brand-secondary-rgb), 0.5) }

.focus-outline:focus,
.inset-focus-outline:focus {
  outline: none }

.switch.disabled > * {
  cursor: not-allowed }

.switch-actuator {
  left: 0.125rem }

.switch-actuator.on {
  left: 1.125rem }

.switch-actuator.on.w-4 {
  left: 1.375rem }

[dir='rtl'] .switch-actuator.on.w-4 {
  right: 1.375rem }

.switch-track:active .switch-actuator {
  animation: switch-down 0.2s ease-out forwards }

.switch-actuator.off {
  animation: switch-off 0.5s ease-out }

.switch-actuator.on {
  animation: switch-on 0.5s ease-out }

@keyframes switch-down {
  100% { transform: scale(0.875) } }

@keyframes switch-off {
  0% { transform: scale(0.875) }
  40% { transform: translateX(-1px) } }

@keyframes switch-on {
  0% { transform: scale(0.875) }
  40% { transform: translateX(1px) } }

[dir='rtl'] .switch-actuator.on {
  right: 1.125rem }

[dir='rtl'] .switch-actuator {
  right: 0.125rem }

body.user-is-tabbing .switch-track:focus {
  background-color: var(--app-brand-primary) }

body.user-is-tabbing .switch-track:focus.on {
  background-color: var(--app-brand-primary-dark) }

body.user-is-tabbing .switch-track:focus .switch-actuator {
  background-color: white }


.leader-xs-tl:after {
  background-color: #da4d1e;
  content: "";
  height: 0.25rem;
  left: 0.5rem;
  position: absolute;
  top: calc(-0.25rem / 2);
  transform: rotate(45deg);
  width: 0.25rem }

[dir=rtl] .leader-xs-tl:after {
  left: auto;
  right: 0.5rem }

.leader-xs-tr:after {
  background-color: #da4d1e;
  content: "";
  height: 0.25rem;
  position: absolute;
  right: 0.5rem;
  top: calc(-0.25rem / 2);
  transform: rotate(45deg);
  width: 0.25rem }

[dir=rtl] .leader-xs-tr:after {
  left: 0.5rem;
  right: auto }

.hero {
  height: calc(100vh - 64px);
  min-height: 800px }

.hero .overlay .separator {
  height: 0.125rem }

.hero .overlay .intro-trans {
  animation: fade-in-and-up 0.6s ease 0.6s forwards;
  opacity: 0 }

.hero .overlay .intro-trans-2 {
  animation: fade-in-and-up 0.6s ease 0.8s forwards;
  opacity: 0 }

.hero .overlay .intro-trans-3 {
  animation: fade-in-and-up 0.6s ease 1s forwards;
  opacity: 0 }

.hero .overlay .intro-trans-4 {
  animation: fade-in-and-up 0.6s ease 1.2s forwards;
  opacity: 0 }

@keyframes fade-in-and-up {
  0% {
    opacity: 0;
    transform: scale(0.9) translate(0, 40px) }

  100% {
    opacity: 1;
    transform: translate(0, 0) } }

.not-found {
  background-image: url('../ember-arcgis-apps-ui/not-found-bg-2977347c255a314f3a12b397296f502d.jpg') }

.not-found h1 {
  animation: fade-in-title 3s ease 0s both;
  font-size: 10rem }

@media only screen and (max-width: 576px) {
  .not-found h1 {
    font-size: 5rem } }

.not-found p {
  animation: fade-in-message 3s ease 0s both }

.not-found button {
  animation: fade-in-button 3s ease 0s both }

.not-found .pin {
  animation: fade-in-pin 3s linear 0s both;
  height: 20rem }

@media only screen and (max-width: 576px) {
  .not-found .pin {
    height: 12rem } }

@keyframes fade-in-title {
  0% {
    opacity: 0;
    transform: translateX(40px) }

  100% {
    opacity: 1;
    transform: translateX(0) } }

@keyframes fade-in-message {
  0% {
    opacity: 0;
    transform: translateX(-40px) }

  100% {
    opacity: 1;
    transform: translateX(0) } }

@keyframes fade-in-button {
  0% {
    opacity: 0;
    transform: translateY(40px) }

  100% {
    opacity: 1;
    transform: translateY(0) } }

@keyframes fade-in-pin {
  0% {
    opacity: 0;
    transform: rotate(48.95deg) }

  1% {
    transform: rotate(46.96deg) }

  2% {
    transform: rotate(44.14deg) }

  3% {
    transform: rotate(40.61deg) }

  4% {
    transform: rotate(36.52deg) }

  5% {
    transform: rotate(31.99deg) }

  6% {
    transform: rotate(27.15deg) }

  7% {
    transform: rotate(22.12deg) }

  8% {
    transform: rotate(17.04deg) }

  9% {
    transform: rotate(12deg) }

  10% {
    transform: rotate(7.11deg) }

  11% {
    transform: rotate(2.47deg) }

  12% {
    transform: rotate(-1.86deg) }

  13% {
    transform: rotate(-5.8deg) }

  14% {
    transform: rotate(-9.3deg) }

  15% {
    transform: rotate(-12.33deg) }

  16% {
    transform: rotate(-14.86deg) }

  17% {
    transform: rotate(-16.87deg) }

  18% {
    transform: rotate(-18.37deg) }

  19% {
    transform: rotate(-19.36deg) }

  20% {
    transform: rotate(-19.86deg) }

  21% {
    transform: rotate(-19.91deg) }

  22% {
    transform: rotate(-19.54deg) }

  23% {
    transform: rotate(-18.78deg) }

  24% {
    transform: rotate(-17.7deg) }

  25% {
    transform: rotate(-16.32deg) }

  26% {
    transform: rotate(-14.72deg) }

  27% {
    transform: rotate(-12.93deg) }

  28% {
    transform: rotate(-11.02deg) }

  29% {
    transform: rotate(-9.02deg) }

  30% {
    transform: rotate(-7deg) }

  31% {
    transform: rotate(-4.99deg) }

  32% {
    transform: rotate(-3.04deg) }

  33% {
    transform: rotate(-1.18deg) }

  34% {
    transform: rotate(0.56deg) }

  35% {
    transform: rotate(2.14deg) }

  36% {
    transform: rotate(3.56deg) }

  37% {
    transform: rotate(4.78deg) }

  38% {
    transform: rotate(5.81deg) }

  39% {
    transform: rotate(6.63deg) }

  40% {
    transform: rotate(7.25deg) }

  41% {
    transform: rotate(7.67deg) }

  42% {
    transform: rotate(7.89deg) }

  43% {
    transform: rotate(7.93deg) }

  44% {
    transform: rotate(7.8deg) }

  45% {
    transform: rotate(7.51deg) }

  46% {
    transform: rotate(7.09deg) }

  47% {
    transform: rotate(6.56deg) }

  48% {
    transform: rotate(5.93deg) }

  49% {
    transform: rotate(5.22deg) }

  50% {
    transform: rotate(4.47deg) }

  51% {
    transform: rotate(3.68deg) }

  52% {
    transform: rotate(2.87deg) }

  53% {
    transform: rotate(2.07deg) }

  54% {
    transform: rotate(1.29deg) }

  55% {
    transform: rotate(0.55deg) }

  56% {
    transform: rotate(-0.15deg) }

  57% {
    transform: rotate(-0.79deg) }

  58% {
    transform: rotate(-1.36deg) }

  59% {
    transform: rotate(-1.85deg) }

  60% {
    transform: rotate(-2.27deg) }

  61% {
    transform: rotate(-2.61deg) }

  62% {
    transform: rotate(-2.86deg) }

  63% {
    transform: rotate(-3.04deg) }

  64% {
    transform: rotate(-3.13deg) }

  65% {
    transform: rotate(-3.16deg) }

  66% {
    transform: rotate(-3.11deg) }

  67% {
    transform: rotate(-3deg) }

  68% {
    transform: rotate(-2.84deg) }

  69% {
    transform: rotate(-2.63deg) }

  70% {
    transform: rotate(-2.39deg) }

  71% {
    transform: rotate(-2.11deg) }

  72% {
    transform: rotate(-1.81deg) }

  73% {
    transform: rotate(-1.5deg) }

  74% {
    transform: rotate(-1.18deg) }

  75% {
    transform: rotate(-0.86deg) }

  76% {
    transform: rotate(-0.55deg) }

  77% {
    transform: rotate(-0.25deg) }

  78% {
    transform: rotate(0.03deg) }

  79% {
    transform: rotate(0.29deg) }

  80% {
    transform: rotate(0.52deg) }

  81% {
    transform: rotate(0.72deg) }

  82% {
    transform: rotate(0.89deg) }

  83% {
    transform: rotate(1.02deg) }

  84% {
    transform: rotate(1.13deg) }

  85% {
    transform: rotate(1.2deg) }

  86% {
    transform: rotate(1.24deg) }

  87% {
    transform: rotate(1.26deg) }

  88% {
    transform: rotate(1.24deg) }

  89% {
    transform: rotate(1.2deg) }

  90% {
    transform: rotate(1.14deg) }

  91% {
    transform: rotate(1.06deg) }

  92% {
    transform: rotate(0.96deg) }

  93% {
    transform: rotate(0.85deg) }

  94% {
    transform: rotate(0.73deg) }

  95% {
    transform: rotate(0.61deg) }

  96% {
    transform: rotate(0.48deg) }

  97% {
    transform: rotate(0.36deg) }

  98% {
    transform: rotate(0.23deg) }

  99% {
    transform: rotate(0.11deg) }

  100% {
    transform: rotate(0) } }
/** ember-power-calendar */

.ember-power-calendar {
  box-sizing: border-box;
  position: relative }

.ember-power-calendar-nav {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between }

.ember-power-calendar-nav * {
  box-sizing: border-box }

.ember-power-calendar-days, .ember-power-calendar-days * {
  box-sizing: border-box }

.ember-power-calendar-nav-title {
  flex: 1;
  text-align: center }

.ember-power-calendar-row {
  display: flex;
  justify-content: space-between }

.ember-power-calendar-weekday {
  -webkit-appearance: none;
  flex: 1 1 100%;
  background-color: transparent;
  background-color: initial;
  border: none;
  border: initial;
  outline: none;
  outline: initial;
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 0 }

.ember-power-calendar-day {
  -webkit-appearance: none;
  background-color: transparent;
  background-color: initial;
  border: none;
  border: initial;
  outline: none;
  outline: initial;
  flex: 1 1 100%;
  font-size: inherit;
  align-items: center;
  justify-content: center;
  padding: 0 }

.ember-power-calendar-nav-control {
  -webkit-appearance: none;
  background-color: transparent;
  background-color: initial;
  border: none;
  border: initial;
  outline: none;
  outline: initial;
  font-size: inherit }

.ember-power-calendar{
font-size: .75rem;
line-height: 1 }
.ember-power-calendar-nav {
  line-height: 2 }
.ember-power-calendar-nav-control {
  line-height: 1;
  font-size: 150% }
.ember-power-calendar-nav-control:focus {
  transform: scale(1.2) }
.ember-power-calendar-day--interactive[disabled] {
  cursor: default;
  opacity: 0.4 }
.calcite-calendar-sm {
  width: 14rem }
.calcite-calendar-sm .ember-power-calendar-week:first-child[data-missing-days="1"] {
  padding-left: 2rem }
.calcite-calendar-sm .ember-power-calendar-week:first-child[data-missing-days="2"] {
  padding-left: 4rem }
.calcite-calendar-sm .ember-power-calendar-week:first-child[data-missing-days="3"] {
  padding-left: 6rem }
.calcite-calendar-sm .ember-power-calendar-week:first-child[data-missing-days="4"] {
  padding-left: 8rem }
.calcite-calendar-sm .ember-power-calendar-week:first-child[data-missing-days="5"] {
  padding-left: 10rem }
.calcite-calendar-sm .ember-power-calendar-week:first-child[data-missing-days="6"] {
  padding-left: 12rem }
.calcite-calendar-sm .ember-power-calendar-week:last-child[data-missing-days="1"] {
  padding-right: 2rem }
.calcite-calendar-sm .ember-power-calendar-week:last-child[data-missing-days="2"] {
  padding-right: 4rem }
.calcite-calendar-sm .ember-power-calendar-week:last-child[data-missing-days="3"] {
  padding-right: 6rem }
.calcite-calendar-sm .ember-power-calendar-week:last-child[data-missing-days="4"] {
  padding-right: 8rem }
.calcite-calendar-sm .ember-power-calendar-week:last-child[data-missing-days="5"] {
  padding-right: 10rem }
.calcite-calendar-sm .ember-power-calendar-week:last-child[data-missing-days="6"] {
  padding-right: 12rem }
.calcite-calendar-sm .ember-power-calendar-day, .calcite-calendar-sm .ember-power-calendar-weekday {
  max-width: 2rem;
  max-height: 2rem;
  width: 2rem;
  height: 2rem }
.calcite-calendar-sm .ember-power-calendar-weekdays, .calcite-calendar-sm .ember-power-calendar-week {
  height: 2rem;
  padding-left: 0;
  padding-right: 0 }
.calcite-calendar-sm .ember-power-calendar-day {
  transition: background-color 100ms linear;
  color: #9f9f9f;
  border: 4px solid white;
  border-radius: 50% }
.calcite-calendar-sm .ember-power-calendar-day:focus {
  outline: none }
.calcite-calendar-sm .ember-power-calendar-weekdays {
  color: #606060;
  border-bottom: 1px solid #dfdfdf }
.calcite-calendar-sm .ember-power-calendar-day--current-month {
  color: #606060 }
.calcite-calendar-sm .ember-power-calendar-day--today {
  background-color: #dfdfdf }
.calcite-calendar-sm .ember-power-calendar-day:not([disabled]):not(.ember-power-calendar-day--selected):hover {
  background-color: #dfdfdf }

.calcite-calendar-sm .ember-power-calendar-day--focused {
  color: white;
  background-color: var(--app-brand-primary-highlight) }
.calcite-calendar-range.calcite-calendar-sm .ember-power-calendar-day--selected.ember-power-calendar-day--range-start,
.calcite-calendar-range.calcite-calendar-sm .ember-power-calendar-day--selected.ember-power-calendar-day--range-end {
  z-index: 0;
  color: white;
  position: relative;
  background-color: transparent !important }
.calcite-calendar-range.calcite-calendar-sm .ember-power-calendar-day--selected.ember-power-calendar-day--range-start:before,
.calcite-calendar-range.calcite-calendar-sm .ember-power-calendar-day--selected.ember-power-calendar-day--range-end:before {
  content: '';
  background-color: rgba(var(--app-brand-primary-rgb), 0.1);
  position: absolute;
  width: 50%;
  height: 1.5rem;
  top: 0;
  right:0;
  z-index: -1 }
.calcite-calendar-range.calcite-calendar-sm .ember-power-calendar-day--selected.ember-power-calendar-day--range-end:before {
  left:0 }
[dir='rtl'] .calcite-calendar-range.calcite-calendar-sm .ember-power-calendar-day--selected.ember-power-calendar-day--range-start:before {
  left: 0;
  right: initial }
.calcite-calendar-range.calcite-calendar-sm .ember-power-calendar-day--selected.ember-power-calendar-day--range-start:after,
.calcite-calendar-range.calcite-calendar-sm .ember-power-calendar-day--selected.ember-power-calendar-day--range-end:after {
  content: '';
  background-color: var(--app-brand-primary);
  width: 1.5rem;
  height: 1.5rem;
  box-sizing: content-box;
  position: absolute;
  top: 0;
  left: .25rem;
  z-index: -1;
  border-radius: 50%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */ }

.calcite-calendar-range.calcite-calendar-sm .ember-power-calendar-day--selected.ember-power-calendar-day--range-start:hover:after,
.calcite-calendar-range.calcite-calendar-sm .ember-power-calendar-day--selected.ember-power-calendar-day--range-start:focus:after,
.calcite-calendar-range.calcite-calendar-sm .ember-power-calendar-day--selected.ember-power-calendar-day--range-end:hover:after,
.calcite-calendar-range.calcite-calendar-sm .ember-power-calendar-day--selected.ember-power-calendar-day--range-end:focus:after {
  background-color: var(--app-brand-primary-dark) }

.calcite-calendar-range.calcite-calendar-range .ember-power-calendar-day--selected {
  position: relative;
  z-index: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background-color: rgba(var(--app-brand-primary-rgb), 0.10);
  color: var(--app-brand-primary-dark) }
.calcite-calendar-range.calcite-calendar-range .ember-power-calendar-day--selected:focus:after,
.calcite-calendar-range.calcite-calendar-range .ember-power-calendar-day--selected:hover:after {
  content: '';
  background-color: rgba(var(--app-brand-primary-rgb), 0.15);
  width: 1.5rem;
  height: 1.5rem;
  box-sizing: content-box;
  position: absolute;
  top: 0;
  left: .25rem;
  z-index: -1;
  border-radius: 50% }
.calcite-calendar-range.calcite-calendar-range .ember-power-calendar-week .ember-power-calendar-day--selected:last-of-type:not(.ember-power-calendar-day--range-start),
[dir='rtl'] .calcite-calendar-range.calcite-calendar-range .ember-power-calendar-week .ember-power-calendar-day--selected:first-of-type:not(.ember-power-calendar-day--range-start) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50% }

.calcite-calendar-range.calcite-calendar-range .ember-power-calendar-week .ember-power-calendar-day--selected:first-of-type:not(.ember-power-calendar-day--range-end),
[dir='rtl'] .calcite-calendar-range.calcite-calendar-range .ember-power-calendar-week .ember-power-calendar-day--selected:last-of-type:not(.ember-power-calendar-day--range-end) {
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0 }

.calcite-calendar-sm .ember-power-calendar-day--selected {
  background-color: var(--app-brand-primary);
  color: white }

.ember-power-calendar-day-grid {
  cursor: pointer }

button.is-loading .button-spinner {
  left: calc(50% - 8px);
  top: calc(50% - 8px) }

.button-spinner {
  animation: 2s linear infinite rotate-clockwise }

[dir='rtl'] .button-spinner {
  animation: 2s linear infinite rotate-counter-clockwise }
/* full-screen-modal */

.ember-modal-wrapper.emd-animatable.emd-wrapper-target-attachment-center .ember-modal-overlay {
  display: flex;
  align-items: center;
  justify-content: center }

.ember-modal-wrapper.emd-animatable .ember-modal-dialog {
  position: relative }

.ember-modal-overlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50 }

.ember-modal-dialog {
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 0 10px #222;
  padding: 10px }

.ember-modal-overlay.translucent {
  background-color: rgba(128, 128, 128, 0.77) }

.ember-modal-overlay {
  background: -owg-radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.3) 5%, rgba(0, 0, 0, 0.7) 100%);
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.3) 5%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60 }

.fade-in .ember-modal-overlay {
  animation: modal-background-enter 0.3s ease both }

.fade-out .ember-modal-overlay {
  animation: modal-background-enter 0.3s reverse ease both }

.ember-modal-dialog {
  border-radius: 0px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 10px 2px;
  visibility: hidden;
  padding: 0;
  position: static }

.ember-modal-dialog.lg {
  width: 95%;
  height: 95% }

.fade-in .ember-modal-dialog {
  visibility: visible;
  animation: modal-enter 0.3s 0.2s ease both }

.fade-out .ember-modal-dialog {
  visibility: visible;
  animation: modal-enter 0.3s reverse ease both }

@keyframes modal-enter {
  from {
    opacity: 0;
    transform: scale(0.8) }
  to {
    opacity: 1;
    transform: scale(1) } }

@keyframes modal-background-enter {
  from {
    opacity: 0 }
  to {
    opacity: 1 } }

#ember-testing .ember-modal-dialog,
#ember-testing .ember-modal-overlay {
  animation-duration: 0s;
  animation-delay: 0s }

.sm-titlebar-modal-dialog {
  width: 20rem }

@media only screen and (min-width: 48rem) {
  .sm-titlebar-modal-dialog {
    width: 38rem } }

.md-titlebar-modal-dialog {
  width: 20rem }

@media only screen and (min-width: 48rem) {
  .md-titlebar-modal-dialog {
    width: 43rem } }

.file-dropzone {
  background-color: rgba(64, 64, 64, 0.75) }
/** BEGIN flash */
.alerts {
  position: fixed;
  z-index: 666;
  bottom: 0;
  width: 100%;
  margin: 0 }
.alert {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translate(0, 100%);
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  margin: 0 auto 1rem auto;
  position: relative }
.alert:first-of-type {
  margin-bottom: 0 }
@media (min-width: 764px) {
  .alert {
    opacity: 0;
    border-radius: 2px;
    width: 74.61% } }
@media (min-width: 1024px) {
  .alert {
    width: 764px } }
.alert .flash-content {
  opacity: 0;
  animation: flash-content-show 0.3s ease-out 0.1s both }
@keyframes flash-content-show {
  from { opacity: 0 }
  to { opacity: 1 } }
@media (min-width: 764px) {
  .alert .flash-content {
    opacity: 1;
    animation: none } }
.alert.active {
  transform: translate(0, 0);
  opacity: 1 }
@media (min-width: 764px) {
  .alert.active {
    transform: translate(0, -22px) } }
.alert.exiting {
  transform: translate(0, 100%) }
.alert.exiting .flash-content {
  animation: flash-content-hide 0.3s ease-out 0s both }
@keyframes flash-content-hide {
  from { opacity: 1 }
  to { opacity: 0 } }
@media (min-width: 764px) {
  .alert.exiting {
    opacity: 0 } }
.alert-success {
  border-color: #35ac46 }
.alert-success .alert-action {
  color: #35ac46 }
.alert-info {
  border-color: #007ac2 }
.alert-info .alert-action {
  color: #007ac2 }
.alert-warning {
  border-color: #edd317 }
.alert-warning .alert-action {
  color: #edd317 }
.alert-danger {
  border-color: #d83020 }
.alert-danger .alert-action {
  color: #d83020 }
/** END flash */

.filter-input ~ hr{
--tw-scale-x: 0;
--tw-scale-y: 0;
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) }
.filter-input:focus ~ hr{
--tw-scale-x: 1;
--tw-scale-y: 1;
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
border-color: var(--app-brand-primary, #007ac2) }
.filter-input:focus ~ .filter-search-button{
display: none }
.filter-input:focus ~ .filter-clear-button{
--tw-text-opacity: 1;
color: rgb(159 159 159 / var(--tw-text-opacity, 1)) }

*, ::before, ::after{
--tw-border-spacing-x: 0;
--tw-border-spacing-y: 0;
--tw-translate-x: 0;
--tw-translate-y: 0;
--tw-rotate: 0;
--tw-skew-x: 0;
--tw-skew-y: 0;
--tw-scale-x: 1;
--tw-scale-y: 1;
--tw-pan-x:  ;
--tw-pan-y:  ;
--tw-pinch-zoom:  ;
--tw-scroll-snap-strictness: proximity;
--tw-gradient-from-position:  ;
--tw-gradient-via-position:  ;
--tw-gradient-to-position:  ;
--tw-ordinal:  ;
--tw-slashed-zero:  ;
--tw-numeric-figure:  ;
--tw-numeric-spacing:  ;
--tw-numeric-fraction:  ;
--tw-ring-inset:  ;
--tw-ring-offset-width: 0px;
--tw-ring-offset-color: #fff;
--tw-ring-color: rgb(59 130 246 / 0.5);
--tw-ring-offset-shadow: 0 0 #0000;
--tw-ring-shadow: 0 0 #0000;
--tw-shadow: 0 0 #0000;
--tw-shadow-colored: 0 0 #0000;
--tw-blur:  ;
--tw-brightness:  ;
--tw-contrast:  ;
--tw-grayscale:  ;
--tw-hue-rotate:  ;
--tw-invert:  ;
--tw-saturate:  ;
--tw-sepia:  ;
--tw-drop-shadow:  ;
--tw-backdrop-blur:  ;
--tw-backdrop-brightness:  ;
--tw-backdrop-contrast:  ;
--tw-backdrop-grayscale:  ;
--tw-backdrop-hue-rotate:  ;
--tw-backdrop-invert:  ;
--tw-backdrop-opacity:  ;
--tw-backdrop-saturate:  ;
--tw-backdrop-sepia:  ;
--tw-contain-size:  ;
--tw-contain-layout:  ;
--tw-contain-paint:  ;
--tw-contain-style:   }

::backdrop{
--tw-border-spacing-x: 0;
--tw-border-spacing-y: 0;
--tw-translate-x: 0;
--tw-translate-y: 0;
--tw-rotate: 0;
--tw-skew-x: 0;
--tw-skew-y: 0;
--tw-scale-x: 1;
--tw-scale-y: 1;
--tw-pan-x:  ;
--tw-pan-y:  ;
--tw-pinch-zoom:  ;
--tw-scroll-snap-strictness: proximity;
--tw-gradient-from-position:  ;
--tw-gradient-via-position:  ;
--tw-gradient-to-position:  ;
--tw-ordinal:  ;
--tw-slashed-zero:  ;
--tw-numeric-figure:  ;
--tw-numeric-spacing:  ;
--tw-numeric-fraction:  ;
--tw-ring-inset:  ;
--tw-ring-offset-width: 0px;
--tw-ring-offset-color: #fff;
--tw-ring-color: rgb(59 130 246 / 0.5);
--tw-ring-offset-shadow: 0 0 #0000;
--tw-ring-shadow: 0 0 #0000;
--tw-shadow: 0 0 #0000;
--tw-shadow-colored: 0 0 #0000;
--tw-blur:  ;
--tw-brightness:  ;
--tw-contrast:  ;
--tw-grayscale:  ;
--tw-hue-rotate:  ;
--tw-invert:  ;
--tw-saturate:  ;
--tw-sepia:  ;
--tw-drop-shadow:  ;
--tw-backdrop-blur:  ;
--tw-backdrop-brightness:  ;
--tw-backdrop-contrast:  ;
--tw-backdrop-grayscale:  ;
--tw-backdrop-hue-rotate:  ;
--tw-backdrop-invert:  ;
--tw-backdrop-opacity:  ;
--tw-backdrop-saturate:  ;
--tw-backdrop-sepia:  ;
--tw-contain-size:  ;
--tw-contain-layout:  ;
--tw-contain-paint:  ;
--tw-contain-style:   }

/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com *//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #9f9f9f; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  font-family: "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

button,
input,
optgroup,
select,
textarea {
  line-height: 1.15 }

.container{
width: 100% }

@media (min-width: 576px){

.container{
max-width: 576px } }

@media (min-width: 768px){

.container{
max-width: 768px } }

@media (min-width: 992px){

.container{
max-width: 992px } }

@media (min-width: 1200px){

.container{
max-width: 1200px } }

@media (min-width: 1536px){

.container{
max-width: 1536px } }
/* BEGIN: font.css */
/*!
 * Use of any font is restricted as follows:
 * - Font files may be used for Esri-business purposes only.
 * - Fonts files may also be used by Esri Authorized Distributors for Esri business purposes only as they pertain to Esri, Inc. and its products or marketing materials.
 * - Font files may be used in Esri software only.
 * - Font files may not be distributed or used by third parties.
 * - Font files may be embedded in documents as long as the font files are not provided in a separate file that allows them to be exported.
*/
@font-face {
  font-family: "Avenir Next";
  font-weight: 300;
  font-style: normal;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/b8b15cdf-85d1-4120-8daa-48863d803939.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/0f184ee7-040f-46d6-a9a7-7c87cef4e809.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/09ab0626-bb45-4650-acc8-0182d693df02.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/1397e812-9307-4267-8a99-8a22ea7c69c7.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 400;
  font-style: italic;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/b9c5b839-db56-4419-8fcb-6ab661babb1d.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/950b5788-cfdd-48d9-9d8a-523560042c5b.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 500;
  font-style: normal;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/12f4c786-0bef-4a48-b7c0-eebaa7591688.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/6699e53c-8e20-4933-a7e3-71f95586446c.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/0c8a5d21-8a14-4451-8145-695071809cb7.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/a9c2f4a1-e39a-4cf6-89f2-a7b56fd6ad18.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 300;
  font-style: normal;
  font-display: auto;
  unicode-range: U+2070-209F, U+20A0-20CF, U+2100-214F, U+2200-22FF;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/b8b15cdf-85d1-4120-8daa-48863d803939-math.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/0f184ee7-040f-46d6-a9a7-7c87cef4e809-math.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  unicode-range: U+2070-209F, U+20A0-20CF, U+2100-214F, U+2200-22FF;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/09ab0626-bb45-4650-acc8-0182d693df02-math.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/1397e812-9307-4267-8a99-8a22ea7c69c7-math.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 400;
  font-style: italic;
  font-display: auto;
  unicode-range: U+2070-209F, U+20A0-20CF, U+2100-214F, U+2200-22FF;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/b9c5b839-db56-4419-8fcb-6ab661babb1d-math.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/950b5788-cfdd-48d9-9d8a-523560042c5b-math.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 500;
  font-style: normal;
  font-display: auto;
  unicode-range: U+2070-209F, U+20A0-20CF, U+2100-214F, U+2200-22FF;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/12f4c786-0bef-4a48-b7c0-eebaa7591688-math.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/6699e53c-8e20-4933-a7e3-71f95586446c-math.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  unicode-range: U+2070-209F, U+20A0-20CF, U+2100-214F, U+2200-22FF;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/0c8a5d21-8a14-4451-8145-695071809cb7-math.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/a9c2f4a1-e39a-4cf6-89f2-a7b56fd6ad18-math.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 300;
  font-style: normal;
  unicode-range: U+0100-017F, U+0180-024F, U+0250-02AF, U+02B0-02FF;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/b8b15cdf-85d1-4120-8daa-48863d803939-ext.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/0f184ee7-040f-46d6-a9a7-7c87cef4e809-ext.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 400;
  font-style: normal;
  unicode-range: U+0100-017F, U+0180-024F, U+0250-02AF, U+02B0-02FF, U+0300-036F;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/09ab0626-bb45-4650-acc8-0182d693df02-ext.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/1397e812-9307-4267-8a99-8a22ea7c69c7-ext.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 400;
  font-style: italic;
  unicode-range: U+0100-017F, U+0180-024F, U+0250-02AF, U+02B0-02FF, U+0300-036F;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/b9c5b839-db56-4419-8fcb-6ab661babb1d-ext.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/950b5788-cfdd-48d9-9d8a-523560042c5b-ext.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 500;
  font-style: normal;
  unicode-range: U+0100-017F, U+0180-024F, U+0250-02AF, U+02B0-02FF, U+0300-036F;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/12f4c786-0bef-4a48-b7c0-eebaa7591688-ext.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/6699e53c-8e20-4933-a7e3-71f95586446c-ext.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 700;
  font-style: normal;
  unicode-range: U+0100-017F, U+0180-024F, U+0250-02AF, U+02B0-02FF, U+0300-036F;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/0c8a5d21-8a14-4451-8145-695071809cb7-ext.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/a9c2f4a1-e39a-4cf6-89f2-a7b56fd6ad18-ext.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 300;
  font-style: normal;
  unicode-range: U+0370-03FF;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/b8b15cdf-85d1-4120-8daa-48863d803939-greek.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/0f184ee7-040f-46d6-a9a7-7c87cef4e809-greek.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 400;
  font-style: normal;
  unicode-range: U+0370-03FF;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/09ab0626-bb45-4650-acc8-0182d693df02-greek.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/1397e812-9307-4267-8a99-8a22ea7c69c7-greek.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 400;
  font-style: italic;
  unicode-range: U+0370-03FF;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/b9c5b839-db56-4419-8fcb-6ab661babb1d-greek.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/950b5788-cfdd-48d9-9d8a-523560042c5b-greek.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 500;
  font-style: normal;
  unicode-range: U+0370-03FF;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/12f4c786-0bef-4a48-b7c0-eebaa7591688-greek.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/6699e53c-8e20-4933-a7e3-71f95586446c-greek.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 700;
  font-style: normal;
  unicode-range: U+0370-03FF;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/0c8a5d21-8a14-4451-8145-695071809cb7-greek.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/a9c2f4a1-e39a-4cf6-89f2-a7b56fd6ad18-greek.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 300;
  font-style: normal;
  unicode-range: U+0400-04FF;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/b8b15cdf-85d1-4120-8daa-48863d803939-cyrillic.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/0f184ee7-040f-46d6-a9a7-7c87cef4e809-cyrillic.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 400;
  font-style: normal;
  unicode-range: U+0400-04FF;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/09ab0626-bb45-4650-acc8-0182d693df02-cyrillic.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/1397e812-9307-4267-8a99-8a22ea7c69c7-cyrillic.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 400;
  font-style: italic;
  unicode-range: U+0400-04FF;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/b9c5b839-db56-4419-8fcb-6ab661babb1d-cyrillic.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/950b5788-cfdd-48d9-9d8a-523560042c5b-cyrillic.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 500;
  font-style: normal;
  unicode-range: U+0400-04FF;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/12f4c786-0bef-4a48-b7c0-eebaa7591688-cyrillic.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/6699e53c-8e20-4933-a7e3-71f95586446c-cyrillic.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 700;
  font-style: normal;
  unicode-range: U+0400-04FF;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/0c8a5d21-8a14-4451-8145-695071809cb7-cyrillic.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/a9c2f4a1-e39a-4cf6-89f2-a7b56fd6ad18-cyrillic.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 300;
  font-style: normal;
  unicode-range: U+10A0-10FF;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/b8b15cdf-85d1-4120-8daa-48863d803939-georgian.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/0f184ee7-040f-46d6-a9a7-7c87cef4e809-georgian.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 400;
  font-style: normal;
  unicode-range: U+10A0-10FF;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/09ab0626-bb45-4650-acc8-0182d693df02-georgian.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/1397e812-9307-4267-8a99-8a22ea7c69c7-georgian.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 500;
  font-style: normal;
  unicode-range: U+10A0-10FF;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/12f4c786-0bef-4a48-b7c0-eebaa7591688-georgian.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/6699e53c-8e20-4933-a7e3-71f95586446c-georgian.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 700;
  font-style: normal;
  unicode-range: U+10A0-10FF;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/0c8a5d21-8a14-4451-8145-695071809cb7-georgian.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/a9c2f4a1-e39a-4cf6-89f2-a7b56fd6ad18-georgian.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 300;
  font-style: normal;
  unicode-range: U+0600-06FF, U+FB50-FDFF, U+FE70-FEFF;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next//b8b15cdf-85d1-4120-8daa-48863d803939-arabic.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next//0f184ee7-040f-46d6-a9a7-7c87cef4e809-arabic.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 400;
  font-style: normal;
  unicode-range: U+0600-06FF, U+FB50-FDFF, U+FE70-FEFF;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next//09ab0626-bb45-4650-acc8-0182d693df02-arabic.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next//1397e812-9307-4267-8a99-8a22ea7c69c7-arabic.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 500;
  font-style: normal;
  unicode-range: U+0600-06FF, U+FB50-FDFF, U+FE70-FEFF;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next//12f4c786-0bef-4a48-b7c0-eebaa7591688-arabic.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next//6699e53c-8e20-4933-a7e3-71f95586446c-arabic.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 700;
  font-style: normal;
  unicode-range: U+0600-06FF, U+FB50-FDFF, U+FE70-FEFF;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next//0c8a5d21-8a14-4451-8145-695071809cb7-arabic.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next//a9c2f4a1-e39a-4cf6-89f2-a7b56fd6ad18-arabic.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 300;
  font-style: normal;
  unicode-range: U+0590-05FF, U+FB00-FB4F;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/b8b15cdf-85d1-4120-8daa-48863d803939-hebrew.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next//0f184ee7-040f-46d6-a9a7-7c87cef4e809-hebrew.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 400;
  font-style: normal;
  unicode-range: U+0590-05FF, U+FB00-FB4F;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/09ab0626-bb45-4650-acc8-0182d693df02-hebrew.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next//1397e812-9307-4267-8a99-8a22ea7c69c7-hebrew.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 400;
  font-style: italic;
  unicode-range: U+0590-05FF, U+FB00-FB4F;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/b9c5b839-db56-4419-8fcb-6ab661babb1d-hebrew.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next//950b5788-cfdd-48d9-9d8a-523560042c5b-hebrew.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 500;
  font-style: normal;
  unicode-range: U+0590-05FF, U+FB00-FB4F;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/12f4c786-0bef-4a48-b7c0-eebaa7591688-hebrew.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next//6699e53c-8e20-4933-a7e3-71f95586446c-hebrew.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 700;
  font-style: normal;
  unicode-range: U+0590-05FF, U+FB00-FB4F;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/0c8a5d21-8a14-4451-8145-695071809cb7-hebrew.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next//a9c2f4a1-e39a-4cf6-89f2-a7b56fd6ad18-hebrew.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 300;
  font-style: normal;
  unicode-range: U+0900-097F;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/94aa531e-7746-4df0-bb6e-349891f2eda5.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/121524c1-8d82-4155-bfb3-fd2f15f09e93.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 400;
  font-style: normal;
  unicode-range: U+0900-097F;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/3ae1e25e-3aa6-4061-a016-a079159f9d65.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/f1799750-0952-403f-8108-b2402eed0f62.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 500;
  font-style: normal;
  unicode-range: U+0900-097F;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/41331c3c-3759-4462-8695-33c9a21b6a5b.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/31e0c094-e345-4a54-a797-d5f1a5885572.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 700;
  font-style: normal;
  unicode-range: U+0900-097F;
  font-display: auto;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/41331c3c-3759-4462-8695-33c9a21b6a5b.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/31e0c094-e345-4a54-a797-d5f1a5885572.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 300;
  font-style: normal;
  unicode-range: U+0E00-0E7F;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/b8b15cdf-85d1-4120-8daa-48863d803939-thai.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/0f184ee7-040f-46d6-a9a7-7c87cef4e809-thai.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 400;
  font-style: normal;
  unicode-range: U+0E00-0E7F;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/09ab0626-bb45-4650-acc8-0182d693df02-thai.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/1397e812-9307-4267-8a99-8a22ea7c69c7-thai.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 500;
  font-style: normal;
  unicode-range: U+0E00-0E7F;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/12f4c786-0bef-4a48-b7c0-eebaa7591688-thai.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/6699e53c-8e20-4933-a7e3-71f95586446c-thai.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 700;
  font-style: normal;
  unicode-range: U+0E00-0E7F;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/0c8a5d21-8a14-4451-8145-695071809cb7-thai.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/a9c2f4a1-e39a-4cf6-89f2-a7b56fd6ad18-thai.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 300;
  font-style: normal;
  font-display: auto;
  unicode-range: U+1E00-1EFF;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/b8b15cdf-85d1-4120-8daa-48863d803939-vietnamese.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/0f184ee7-040f-46d6-a9a7-7c87cef4e809-vietnamese.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  unicode-range: U+1E00-1EFF;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/09ab0626-bb45-4650-acc8-0182d693df02-vietnamese.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/1397e812-9307-4267-8a99-8a22ea7c69c7-vietnamese.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 400;
  font-style: italic;
  font-display: auto;
  unicode-range: U+1E00-1EFF;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/b9c5b839-db56-4419-8fcb-6ab661babb1d-vietnamese.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/950b5788-cfdd-48d9-9d8a-523560042c5b-vietnamese.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 500;
  font-style: normal;
  font-display: auto;
  unicode-range: U+1E00-1EFF;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/12f4c786-0bef-4a48-b7c0-eebaa7591688-vietnamese.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/6699e53c-8e20-4933-a7e3-71f95586446c-vietnamese.woff") format("woff") }
@font-face {
  font-family: "Avenir Next";
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  unicode-range: U+1E00-1EFF;
  src: url("../ember-arcgis-apps-ui/fonts/avenir-next/0c8a5d21-8a14-4451-8145-695071809cb7-vietnamese.woff2") format("woff2"), url("../ember-arcgis-apps-ui/fonts/avenir-next/a9c2f4a1-e39a-4cf6-89f2-a7b56fd6ad18-vietnamese.woff") format("woff") }

.sr-only{
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0 }

.pointer-events-none{
pointer-events: none }

.pointer-events-auto{
pointer-events: auto }

.visible{
visibility: visible }

.invisible{
visibility: hidden }

.collapse{
visibility: collapse }

.static{
position: static }

.fixed{
position: fixed }

.absolute{
position: absolute }

.relative{
position: relative }

.sticky{
position: sticky }

.inset-0{
inset: 0px }

.inset-y-0{
top: 0px;
bottom: 0px }

.bottom-0{
bottom: 0px }

.end-2{
inset-inline-end: 0.5rem }

.left-0{
left: 0px }

.right-0{
right: 0px }

.top-0{
top: 0px }

.z-0{
z-index: 0 }

.z-10{
z-index: 10 }

.z-20{
z-index: 20 }

.z-40{
z-index: 40 }

.z-50{
z-index: 50 }

.z-auto{
z-index: auto }

.order-1{
order: 1 }

.order-2{
order: 2 }

.order-3{
order: 3 }

.order-4{
order: 4 }

.order-first{
order: -9999 }

.float-right{
float: right }

.-m-2\.5{
margin: -0.625rem }

.m-0{
margin: 0px }

.m-1{
margin: 0.25rem }

.m-2{
margin: 0.5rem }

.m-3{
margin: 0.75rem }

.m-4{
margin: 1rem }

.m-8{
margin: 2rem }

.-mx-1{
margin-left: -0.25rem;
margin-right: -0.25rem }

.-mx-2\.5{
margin-left: -0.625rem;
margin-right: -0.625rem }

.-mx-6{
margin-left: -1.5rem;
margin-right: -1.5rem }

.mx-1{
margin-left: 0.25rem;
margin-right: 0.25rem }

.mx-10{
margin-left: 2.5rem;
margin-right: 2.5rem }

.mx-16{
margin-left: 4rem;
margin-right: 4rem }

.mx-2{
margin-left: 0.5rem;
margin-right: 0.5rem }

.mx-3{
margin-left: 0.75rem;
margin-right: 0.75rem }

.mx-4{
margin-left: 1rem;
margin-right: 1rem }

.mx-6{
margin-left: 1.5rem;
margin-right: 1.5rem }

.mx-auto{
margin-left: auto;
margin-right: auto }

.my-0{
margin-top: 0px;
margin-bottom: 0px }

.my-1{
margin-top: 0.25rem;
margin-bottom: 0.25rem }

.my-1\.5{
margin-top: 0.375rem;
margin-bottom: 0.375rem }

.my-2{
margin-top: 0.5rem;
margin-bottom: 0.5rem }

.my-2\.5{
margin-top: 0.625rem;
margin-bottom: 0.625rem }

.my-3{
margin-top: 0.75rem;
margin-bottom: 0.75rem }

.my-4{
margin-top: 1rem;
margin-bottom: 1rem }

.my-5{
margin-top: 1.25rem;
margin-bottom: 1.25rem }

.my-8{
margin-top: 2rem;
margin-bottom: 2rem }

.my-9{
margin-top: 2.25rem;
margin-bottom: 2.25rem }

.my-auto{
margin-top: auto;
margin-bottom: auto }

.-mb-6{
margin-bottom: -1.5rem }

.-mb-px{
margin-bottom: -1px }

.-ml-1{
margin-left: -0.25rem }

.-ml-3{
margin-left: -0.75rem }

.-ml-px{
margin-left: -1px }

.-mr-px{
margin-right: -1px }

.-ms-2{
margin-inline-start: -0.5rem }

.-mt-0{
margin-top: -0px }

.-mt-16{
margin-top: -4rem }

.-mt-2{
margin-top: -0.5rem }

.-mt-6{
margin-top: -1.5rem }

.-mt-px{
margin-top: -1px }

.mb-0{
margin-bottom: 0px }

.mb-0\.5{
margin-bottom: 0.125rem }

.mb-1{
margin-bottom: 0.25rem }

.mb-1\.5{
margin-bottom: 0.375rem }

.mb-10{
margin-bottom: 2.5rem }

.mb-12{
margin-bottom: 3rem }

.mb-2{
margin-bottom: 0.5rem }

.mb-2\.5{
margin-bottom: 0.625rem }

.mb-3{
margin-bottom: 0.75rem }

.mb-4{
margin-bottom: 1rem }

.mb-5{
margin-bottom: 1.25rem }

.mb-6{
margin-bottom: 1.5rem }

.mb-7{
margin-bottom: 1.75rem }

.mb-8{
margin-bottom: 2rem }

.me-1{
margin-inline-end: 0.25rem }

.me-2{
margin-inline-end: 0.5rem }

.me-32{
margin-inline-end: 8rem }

.ml-2{
margin-left: 0.5rem }

.ml-3{
margin-left: 0.75rem }

.ml-4{
margin-left: 1rem }

.ml-auto{
margin-left: auto }

.mr-1{
margin-right: 0.25rem }

.mr-10{
margin-right: 2.5rem }

.mr-2{
margin-right: 0.5rem }

.mr-3{
margin-right: 0.75rem }

.mr-4{
margin-right: 1rem }

.mr-6{
margin-right: 1.5rem }

.ms-9{
margin-inline-start: 2.25rem }

.mt-1{
margin-top: 0.25rem }

.mt-10{
margin-top: 2.5rem }

.mt-14{
margin-top: 3.5rem }

.mt-2{
margin-top: 0.5rem }

.mt-3{
margin-top: 0.75rem }

.mt-4{
margin-top: 1rem }

.mt-5{
margin-top: 1.25rem }

.mt-6{
margin-top: 1.5rem }

.mt-8{
margin-top: 2rem }

.mt-px{
margin-top: 1px }

.box-content{
box-sizing: content-box }

.block{
display: block }

.inline-block{
display: inline-block }

.\!inline{
display: inline !important }

.inline{
display: inline }

.flex{
display: flex }

.inline-flex{
display: inline-flex }

.\!table{
display: table !important }

.table{
display: table }

.table-cell{
display: table-cell }

.table-row-group{
display: table-row-group }

.table-row{
display: table-row }

.grid{
display: grid }

.contents{
display: contents }

.list-item{
display: list-item }

.hidden{
display: none }

.\!h-full{
height: 100% !important }

.h-1{
height: 0.25rem }

.h-10{
height: 2.5rem }

.h-128{
height: 32rem }

.h-16{
height: 4rem }

.h-2{
height: 0.5rem }

.h-24{
height: 6rem }

.h-3{
height: 0.75rem }

.h-32{
height: 8rem }

.h-4{
height: 1rem }

.h-40{
height: 10rem }

.h-5{
height: 1.25rem }

.h-6{
height: 1.5rem }

.h-72{
height: 18rem }

.h-8{
height: 2rem }

.h-full{
height: 100% }

.h-screen{
height: 100vh }

.max-h-64{
max-height: 16rem }

.min-h-0{
min-height: 0px }

.min-h-20{
min-height: 5rem }

.min-h-\[15rem\]{
min-height: 15rem }

.min-h-full{
min-height: 100% }

.w-0{
width: 0px }

.w-1{
width: 0.25rem }

.w-1\/2{
width: 50% }

.w-1\/3{
width: 33.333333% }

.w-1\/6{
width: 16.666667% }

.w-10{
width: 2.5rem }

.w-12{
width: 3rem }

.w-128{
width: 32rem }

.w-16{
width: 4rem }

.w-2{
width: 0.5rem }

.w-2\/3{
width: 66.666667% }

.w-2\/5{
width: 40% }

.w-20{
width: 5rem }

.w-3{
width: 0.75rem }

.w-3\/5{
width: 60% }

.w-32{
width: 8rem }

.w-4{
width: 1rem }

.w-44{
width: 11rem }

.w-48{
width: 12rem }

.w-5\/12{
width: 41.666667% }

.w-56{
width: 14rem }

.w-6{
width: 1.5rem }

.w-64{
width: 16rem }

.w-72{
width: 18rem }

.w-8{
width: 2rem }

.w-auto{
width: auto }

.w-full{
width: 100% }

.w-px{
width: 1px }

.w-screen{
width: 100vw }

.min-w-0{
min-width: 0px }

.min-w-\[70px\]{
min-width: 70px }

.min-w-full{
min-width: 100% }

.max-w-2xl{
max-width: 42rem }

.max-w-lg{
max-width: 32rem }

.max-w-sm{
max-width: 24rem }

.max-w-xs{
max-width: 20rem }

.flex-1{
flex: 1 1 0% }

.flex-none{
flex: none }

.shrink{
flex-shrink: 1 }

.shrink-0{
flex-shrink: 0 }

.flex-grow{
flex-grow: 1 }

.\!grow-0{
flex-grow: 0 !important }

.grow{
flex-grow: 1 }

.grow-0{
flex-grow: 0 }

.basis-1\/2{
flex-basis: 50% }

.basis-3\/4{
flex-basis: 75% }

.table-fixed{
table-layout: fixed }

.border-collapse{
border-collapse: collapse }

.rotate-180{
--tw-rotate: 180deg;
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) }

.scale-0{
--tw-scale-x: 0;
--tw-scale-y: 0;
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) }

.scale-100{
--tw-scale-x: 1;
--tw-scale-y: 1;
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) }

.scale-95{
--tw-scale-x: .95;
--tw-scale-y: .95;
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) }

.transform{
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) }

.cursor-default{
cursor: default }

.cursor-grab{
cursor: grab }

.cursor-grabbing{
cursor: grabbing }

.cursor-not-allowed{
cursor: not-allowed }

.cursor-pointer{
cursor: pointer }

.cursor-wait{
cursor: wait }

.select-none{
user-select: none }

.resize-none{
resize: none }

.resize{
resize: both }

.flex-row{
flex-direction: row }

.flex-col{
flex-direction: column }

.flex-col-reverse{
flex-direction: column-reverse }

.flex-wrap{
flex-wrap: wrap }

.flex-nowrap{
flex-wrap: nowrap }

.content-start{
align-content: flex-start }

.content-end{
align-content: flex-end }

.items-start{
align-items: flex-start }

.items-end{
align-items: flex-end }

.items-center{
align-items: center }

.items-baseline{
align-items: baseline }

.justify-end{
justify-content: flex-end }

.justify-center{
justify-content: center }

.justify-between{
justify-content: space-between }

.gap-1{
gap: 0.25rem }

.gap-2{
gap: 0.5rem }

.gap-2\.5{
gap: 0.625rem }

.gap-3{
gap: 0.75rem }

.gap-4{
gap: 1rem }

.gap-5{
gap: 1.25rem }

.gap-x-4{
column-gap: 1rem }

.space-x-1 > :not([hidden]) ~ :not([hidden]){
--tw-space-x-reverse: 0;
margin-right: calc(0.25rem * var(--tw-space-x-reverse));
margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))) }

.space-x-12 > :not([hidden]) ~ :not([hidden]){
--tw-space-x-reverse: 0;
margin-right: calc(3rem * var(--tw-space-x-reverse));
margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))) }

.space-x-2 > :not([hidden]) ~ :not([hidden]){
--tw-space-x-reverse: 0;
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) }

.space-x-3 > :not([hidden]) ~ :not([hidden]){
--tw-space-x-reverse: 0;
margin-right: calc(0.75rem * var(--tw-space-x-reverse));
margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) }

.space-x-4 > :not([hidden]) ~ :not([hidden]){
--tw-space-x-reverse: 0;
margin-right: calc(1rem * var(--tw-space-x-reverse));
margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))) }

.space-y-1 > :not([hidden]) ~ :not([hidden]){
--tw-space-y-reverse: 0;
margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) }

.space-y-2 > :not([hidden]) ~ :not([hidden]){
--tw-space-y-reverse: 0;
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) }

.space-y-3 > :not([hidden]) ~ :not([hidden]){
--tw-space-y-reverse: 0;
margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) }

.space-y-6 > :not([hidden]) ~ :not([hidden]){
--tw-space-y-reverse: 0;
margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) }

.divide-y > :not([hidden]) ~ :not([hidden]){
--tw-divide-y-reverse: 0;
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) }

.divide-gray-lighter > :not([hidden]) ~ :not([hidden]){
--tw-divide-opacity: 1;
border-color: rgb(223 223 223 / var(--tw-divide-opacity, 1)) }

.self-start{
align-self: flex-start }

.self-end{
align-self: flex-end }

.self-center{
align-self: center }

.self-baseline{
align-self: baseline }

.overflow-auto{
overflow: auto }

.overflow-hidden{
overflow: hidden }

.overflow-y-auto{
overflow-y: auto }

.overflow-x-hidden{
overflow-x: hidden }

.truncate{
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap }

.whitespace-normal{
white-space: normal }

.whitespace-nowrap{
white-space: nowrap }

.whitespace-pre-wrap{
white-space: pre-wrap }

.break-words{
overflow-wrap: break-word }

.break-all{
word-break: break-all }

.\!rounded-none{
border-radius: 0px !important }

.rounded{
border-radius: 0.25rem }

.rounded-full{
border-radius: 9999px }

.rounded-lg{
border-radius: 0.5rem }

.rounded-none{
border-radius: 0px }

.rounded-sm{
border-radius: 0.125rem }

.border{
border-width: 1px }

.border-0{
border-width: 0px }

.border-2{
border-width: 2px }

.border-y{
border-top-width: 1px;
border-bottom-width: 1px }

.border-b{
border-bottom-width: 1px }

.border-b-0{
border-bottom-width: 0px }

.border-b-2{
border-bottom-width: 2px }

.border-l{
border-left-width: 1px }

.border-l-0{
border-left-width: 0px }

.border-l-8{
border-left-width: 8px }

.border-r{
border-right-width: 1px }

.border-r-0{
border-right-width: 0px }

.border-t{
border-top-width: 1px }

.border-solid{
border-style: solid }

.border-dashed{
border-style: dashed }

.\!border-none{
border-style: none !important }

.border-none{
border-style: none }

.border-blue{
--tw-border-opacity: 1;
border-color: rgb(0 122 194 / var(--tw-border-opacity, 1)) }

.border-brand{
border-color: var(--app-brand-primary, #007ac2) }

.border-brand-dark{
border-color: var(--app-brand-primary-dark, #00304d) }

.border-gray-dark{
--tw-border-opacity: 1;
border-color: rgb(96 96 96 / var(--tw-border-opacity, 1)) }

.border-gray-darkest{
--tw-border-opacity: 1;
border-color: rgb(43 43 43 / var(--tw-border-opacity, 1)) }

.border-gray-light{
--tw-border-opacity: 1;
border-color: rgb(191 191 191 / var(--tw-border-opacity, 1)) }

.border-gray-lighter{
--tw-border-opacity: 1;
border-color: rgb(223 223 223 / var(--tw-border-opacity, 1)) }

.border-gray-lightest{
--tw-border-opacity: 1;
border-color: rgb(248 248 248 / var(--tw-border-opacity, 1)) }

.border-red-orange{
--tw-border-opacity: 1;
border-color: rgb(218 77 30 / var(--tw-border-opacity, 1)) }

.border-transparent{
border-color: transparent }

.bg-blue{
--tw-bg-opacity: 1;
background-color: rgb(0 122 194 / var(--tw-bg-opacity, 1)) }

.bg-blue-lightest{
--tw-bg-opacity: 1;
background-color: rgb(223 239 250 / var(--tw-bg-opacity, 1)) }

.bg-brand{
background-color: var(--app-brand-primary, #007ac2) }

.bg-brand-dark{
background-color: var(--app-brand-primary-dark, #00304d) }

.bg-gray{
--tw-bg-opacity: 1;
background-color: rgb(159 159 159 / var(--tw-bg-opacity, 1)) }

.bg-gray-dark{
--tw-bg-opacity: 1;
background-color: rgb(96 96 96 / var(--tw-bg-opacity, 1)) }

.bg-gray-darker{
--tw-bg-opacity: 1;
background-color: rgb(64 64 64 / var(--tw-bg-opacity, 1)) }

.bg-gray-light{
--tw-bg-opacity: 1;
background-color: rgb(191 191 191 / var(--tw-bg-opacity, 1)) }

.bg-gray-lighter{
--tw-bg-opacity: 1;
background-color: rgb(223 223 223 / var(--tw-bg-opacity, 1)) }

.bg-gray-lightest{
--tw-bg-opacity: 1;
background-color: rgb(248 248 248 / var(--tw-bg-opacity, 1)) }

.bg-green{
--tw-bg-opacity: 1;
background-color: rgb(53 172 70 / var(--tw-bg-opacity, 1)) }

.bg-red{
--tw-bg-opacity: 1;
background-color: rgb(216 48 32 / var(--tw-bg-opacity, 1)) }

.bg-red-orange{
--tw-bg-opacity: 1;
background-color: rgb(218 77 30 / var(--tw-bg-opacity, 1)) }

.bg-transparent{
background-color: transparent }

.bg-white{
--tw-bg-opacity: 1;
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) }

.bg-cover{
background-size: cover }

.bg-clip-content{
background-clip: content-box }

.bg-center{
background-position: center }

.bg-no-repeat{
background-repeat: no-repeat }

.fill-current{
fill: currentColor }

.object-cover{
object-fit: cover }

.p-0{
padding: 0px }

.p-1{
padding: 0.25rem }

.p-12{
padding: 3rem }

.p-2{
padding: 0.5rem }

.p-2\.5{
padding: 0.625rem }

.p-3{
padding: 0.75rem }

.p-4{
padding: 1rem }

.p-6{
padding: 1.5rem }

.p-8{
padding: 2rem }

.p-px{
padding: 1px }

.\!px-2{
padding-left: 0.5rem !important;
padding-right: 0.5rem !important }

.px-1{
padding-left: 0.25rem;
padding-right: 0.25rem }

.px-10{
padding-left: 2.5rem;
padding-right: 2.5rem }

.px-16{
padding-left: 4rem;
padding-right: 4rem }

.px-2{
padding-left: 0.5rem;
padding-right: 0.5rem }

.px-2\.5{
padding-left: 0.625rem;
padding-right: 0.625rem }

.px-24{
padding-left: 6rem;
padding-right: 6rem }

.px-3{
padding-left: 0.75rem;
padding-right: 0.75rem }

.px-4{
padding-left: 1rem;
padding-right: 1rem }

.px-6{
padding-left: 1.5rem;
padding-right: 1.5rem }

.py-1{
padding-top: 0.25rem;
padding-bottom: 0.25rem }

.py-16{
padding-top: 4rem;
padding-bottom: 4rem }

.py-2{
padding-top: 0.5rem;
padding-bottom: 0.5rem }

.py-3{
padding-top: 0.75rem;
padding-bottom: 0.75rem }

.py-4{
padding-top: 1rem;
padding-bottom: 1rem }

.py-5{
padding-top: 1.25rem;
padding-bottom: 1.25rem }

.py-6{
padding-top: 1.5rem;
padding-bottom: 1.5rem }

.py-8{
padding-top: 2rem;
padding-bottom: 2rem }

.pb-0{
padding-bottom: 0px }

.pb-0\.5{
padding-bottom: 0.125rem }

.pb-1{
padding-bottom: 0.25rem }

.pb-12{
padding-bottom: 3rem }

.pb-2{
padding-bottom: 0.5rem }

.pb-3{
padding-bottom: 0.75rem }

.pb-4{
padding-bottom: 1rem }

.pb-6{
padding-bottom: 1.5rem }

.pb-8{
padding-bottom: 2rem }

.pe-1\.5{
padding-inline-end: 0.375rem }

.pe-4{
padding-inline-end: 1rem }

.pl-0{
padding-left: 0px }

.pl-1{
padding-left: 0.25rem }

.pl-2{
padding-left: 0.5rem }

.pl-3{
padding-left: 0.75rem }

.pl-4{
padding-left: 1rem }

.pr-10{
padding-right: 2.5rem }

.pr-2{
padding-right: 0.5rem }

.pr-3{
padding-right: 0.75rem }

.pr-8{
padding-right: 2rem }

.ps-1{
padding-inline-start: 0.25rem }

.ps-1\.5{
padding-inline-start: 0.375rem }

.pt-0{
padding-top: 0px }

.pt-1{
padding-top: 0.25rem }

.pt-1\.5{
padding-top: 0.375rem }

.pt-12{
padding-top: 3rem }

.pt-16{
padding-top: 4rem }

.pt-2{
padding-top: 0.5rem }

.pt-20{
padding-top: 5rem }

.pt-3{
padding-top: 0.75rem }

.pt-4{
padding-top: 1rem }

.pt-5{
padding-top: 1.25rem }

.pt-6{
padding-top: 1.5rem }

.text-left{
text-align: left }

.text-center{
text-align: center }

.text-right{
text-align: right }

.text-end{
text-align: end }

.align-top{
vertical-align: top }

.align-middle{
vertical-align: middle }

.align-text-bottom{
vertical-align: text-bottom }

.align-sub{
vertical-align: sub }

.font-mono{
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace }

.font-sans{
font-family: "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" }

.text-2xl{
font-size: 1.625rem }

.text-2xs{
font-size: .625rem }

.text-3xl{
font-size: 2rem }

.text-base{
font-size: 1rem }

.text-display-sm{
font-size: 3rem }

.text-lg{
font-size: 1.125rem }

.text-sm{
font-size: .875rem }

.text-xl{
font-size: 1.25rem }

.text-xs{
font-size: .75rem }

.font-\[var\(--calcite-font-weight-bold\)\]{
font-weight: var(--calcite-font-weight-bold) }

.font-bold{
font-weight: 700 }

.font-light{
font-weight: 300 }

.font-medium{
font-weight: 500 }

.font-normal{
font-weight: 400 }

.font-semibold{
font-weight: 600 }

.uppercase{
text-transform: uppercase }

.lowercase{
text-transform: lowercase }

.italic{
font-style: italic }

.leading-4{
line-height: 1rem }

.leading-5{
line-height: 1.25rem }

.leading-none{
line-height: 1 }

.leading-normal{
line-height: 1.5 }

.leading-relaxed{
line-height: 1.625 }

.leading-snug{
line-height: 1.375 }

.leading-tight{
line-height: 1.25 }

.tracking-tighter{
letter-spacing: -0.05em }

.text-\[--calcite-color-status-warning\]{
color: var(--calcite-color-status-warning) }

.text-\[var\(--calcite-ui-text-1\)\]{
color: var(--calcite-ui-text-1) }

.text-\[var\(--calcite-ui-text-2\)\]{
color: var(--calcite-ui-text-2) }

.text-\[var\(--calcite-ui-text-3\)\]{
color: var(--calcite-ui-text-3) }

.text-alert-red{
--tw-text-opacity: 1;
color: rgb(216 48 32 / var(--tw-text-opacity, 1)) }

.text-alert-yellow{
--tw-text-opacity: 1;
color: rgb(237 211 23 / var(--tw-text-opacity, 1)) }

.text-black{
--tw-text-opacity: 1;
color: rgb(0 0 0 / var(--tw-text-opacity, 1)) }

.text-blue{
--tw-text-opacity: 1;
color: rgb(0 122 194 / var(--tw-text-opacity, 1)) }

.text-brand{
color: var(--app-brand-primary, #007ac2) }

.text-brand-dark{
color: var(--app-brand-primary-dark, #00304d) }

.text-gray{
--tw-text-opacity: 1;
color: rgb(159 159 159 / var(--tw-text-opacity, 1)) }

.text-gray-500{
--tw-text-opacity: 1;
color: rgb(107 114 128 / var(--tw-text-opacity, 1)) }

.text-gray-dark{
--tw-text-opacity: 1;
color: rgb(96 96 96 / var(--tw-text-opacity, 1)) }

.text-gray-darker{
--tw-text-opacity: 1;
color: rgb(64 64 64 / var(--tw-text-opacity, 1)) }

.text-gray-light{
--tw-text-opacity: 1;
color: rgb(191 191 191 / var(--tw-text-opacity, 1)) }

.text-gray-lighter{
--tw-text-opacity: 1;
color: rgb(223 223 223 / var(--tw-text-opacity, 1)) }

.text-red{
--tw-text-opacity: 1;
color: rgb(216 48 32 / var(--tw-text-opacity, 1)) }

.text-red-light{
--tw-text-opacity: 1;
color: rgb(242 135 123 / var(--tw-text-opacity, 1)) }

.text-white{
--tw-text-opacity: 1;
color: rgb(255 255 255 / var(--tw-text-opacity, 1)) }

.text-yellow-dark{
--tw-text-opacity: 1;
color: rgb(217 188 0 / var(--tw-text-opacity, 1)) }

.text-opacity-50{
--tw-text-opacity: 0.5 }

.underline{
text-decoration-line: underline }

.no-underline{
text-decoration-line: none }

.opacity-0{
opacity: 0 }

.opacity-100{
opacity: 1 }

.opacity-25{
opacity: 0.25 }

.opacity-30{
opacity: 0.3 }

.opacity-50{
opacity: 0.5 }

.shadow{
--tw-shadow: 0 2px 4px 0 rgba(0,0,0,0.10);
--tw-shadow-colored: 0 2px 4px 0 var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) }

.shadow-lg{
--tw-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
--tw-shadow-colored: 0 15px 30px 0 var(--tw-shadow-color), 0 5px 15px 0 var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) }

.shadow-md{
--tw-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
--tw-shadow-colored: 0 4px 8px 0 var(--tw-shadow-color), 0 2px 4px 0 var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) }

.shadow-none{
--tw-shadow: 0 0 #0000;
--tw-shadow-colored: 0 0 #0000;
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) }

.outline-none{
outline: 2px solid transparent;
outline-offset: 2px }

.outline{
outline-style: solid }

.ring{
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) }

.blur{
--tw-blur: blur(8px);
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) }

.grayscale{
--tw-grayscale: grayscale(100%);
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) }

.filter{
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) }

.\!transition{
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
transition-duration: 150ms !important }

.transition{
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms }

.transition-none{
transition-property: none }

.transition-opacity{
transition-property: opacity;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms }

.transition-transform{
transition-property: transform;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms }

.duration-75{
transition-duration: 75ms }

.ease-in{
transition-timing-function: cubic-bezier(0.4, 0, 1, 1) }

.ease-in-out{
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) }

.ease-out{
transition-timing-function: cubic-bezier(0, 0, 0.2, 1) }

.backdrop-blur-xs{
backdrop-filter: blur(2px);
-webkit-backdrop-filter: blur(2px) }
  .\!transition {
    transition: all .25s ease !important }
  .transition {
    transition: all .25s ease }

  .transition-none {
    transition: none }

  .transition-color {
    transition-property: color }

  .transition-opacity {
    transition-property: opacity }

  .transition-transform {
    transition-property: transform }

  .transition-width {
    transition-property: width }

  .transition-slow {
    transition-duration: .5s }

  .transition-med {
    transition-duration: .2s }

  .transition-fast {
    transition-duration: .15s }

  .transition-ease-in {
    transition-timing-function: ease-in }

  .transition-ease-out {
    transition-timing-function: ease-out }

  .transition-ease-in-out {
    transition-timing-function: ease-in-out }
/* BEGIN: box-sizing.css */
.border-box {
  box-sizing: border-box }

.content-box {
  box-sizing: content-box }
/* BEGIN: text-overflow.css */
.text-overflow-ellipsis {
  text-overflow: ellipsis }
/* BEGIN: rotate.css */
.rotate-180 {
  transform: rotate(180deg) }
/* BEGIN: transitions.css */ } /* Pull in the `@tailwind` directives.*/

:root {
  \--app-brand-primary: #007ac2;
  \--app-brand-primary-dark: #00304d;
  \--app-brand-primary-highlight: #77bde7;
  \--app-brand-primary-light: #c8e3f5;
  \--app-brand-primary-rgb: 0, 97, 155;
  \--app-brand-secondary: #f89927;
  \--app-brand-secondary-rgb: 248, 153, 39;
}

.cursor-grabbing {
  cursor: grabbing;
  user-select: none;
}

.cursor-grab {
  cursor: grab;
}

@keyframes rotate-clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate-counter-clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-out-and-scale {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}

@keyframes fade-in-and-scale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes drop {
  50%{
--tw-bg-opacity: 1;
background-color: rgb(223 239 250 / var(--tw-bg-opacity, 1));
    transform: scale(1.01) }
}

body {
  \--calcite-ui-blue: var(--app-brand-primary);
  \--calcite-ui-blue-hover: var(--app-brand-primary-dark);
  \--calcite-ui-border-1: #dfdfdf;
  \--calcite-ui-foreground-hover: #dfdfdf;
  \--calcite-ui-foreground-press: #bfbfbf;
  \--calcite-ui-text-1: #404040;
  \--calcite-ui-text-3: #606060;
  \--calcite-ui-border-input: #dfdfdf;
  --calcite-dialog-chrome-height: 12rem;
  --calcite-focus-outline-width: 2px;
}

calcite-chip.with-danger-color[appearance=solid] {
  --calcite-color-foreground-2: var(--calcite-color-status-danger);
  --calcite-color-text-1: var(--calcite-color-foreground-1);
}

calcite-dialog.with-fullscreen-inset {
  --calcite-dialog-min-size-y: calc(100vh - 1.5rem * 2);
  --calcite-dialog-min-size-x: calc(100vw - 1.5rem * 2);
}

calcite-dialog.with-grey-content-bg {
  --calcite-dialog-background-color: var(--calcite-color-background);
}

calcite-dialog.with-no-content-padding {
  --calcite-dialog-content-space: 0;
}

calcite-panel.with-tab-header-height {
  --calcite-internal-panel-header-vertical-padding: calc(0.75rem + 1px);
}

calcite-radio-button-group{
display: inline-flex }

.formatting-editor calcite-select:not([disabled]) {
  --calcite-color-border-input: #dfdfdf;
}

calcite-text-area {
  --calcite-color-border-input: #dfdfdf;
} /* TODO: Deprecate `no-bottom-margin` in favor of `calcite-label-mb-0`
 * - [ ] Import '@field-apps/tailwindcss/plugins/calcite/spacing-vars.cjs' into Tailwind config */

calcite-label.no-bottom-margin {
  --calcite-label-margin-bottom: 0;
}

calcite-tooltip:not([calcite-hydrated]){
display: none }

calcite-tab.with-no-content-padding {
  --calcite-tab-content-block-padding: 0;
}

calcite-tabs.with-border-color-3 {
  --calcite-tab-border-color: var(--calcite-color-border-3);
}

arcgis-ckeditor5 .arcgis-app-ckeditor {
  --arcgis-app-font-family: var(--calcite-sans-family);
}

arcgis-ckeditor5 .arcgis-app-ckeditor .ck-content{
font-size: .875rem }

arcgis-ckeditor5 .arcgis-app-ckeditor .ck .ck-link_selected{
background-color: transparent }

arcgis-ckeditor5 .arcgis-app-ckeditor a{
cursor: pointer;
color: var(--app-brand-primary, #007ac2);
text-decoration-line: underline }

arcgis-ckeditor5 .arcgis-app-ckeditor .ck.ck-button.ck-heading_heading4 .ck-button__label, arcgis-ckeditor5 .arcgis-app-ckeditor .ck.ck-button.ck-heading_heading5 .ck-button__label, arcgis-ckeditor5 .arcgis-app-ckeditor .ck.ck-button.ck-heading_heading6 .ck-button__label, arcgis-ckeditor5 .arcgis-app-ckeditor .ck.ck-button.ck-heading_paragraph .ck-button__label {
  font-family: var(--calcite-sans-family);
}

arcgis-ckeditor5 .arcgis-app-ckeditor .ck-content h4, arcgis-ckeditor5 .arcgis-app-ckeditor .ck-content h5, arcgis-ckeditor5 .arcgis-app-ckeditor .ck-content h6{
margin-top: 0.75rem;
margin-bottom: 0.5rem;
line-height: 1 }

arcgis-ckeditor5 .arcgis-app-ckeditor .ck-content h4, arcgis-ckeditor5 .arcgis-app-ckeditor .ck.ck-heading_heading4{
font-size: 1rem;
font-weight: 700 }

arcgis-ckeditor5 .arcgis-app-ckeditor .ck-content h5, arcgis-ckeditor5 .arcgis-app-ckeditor .ck.ck-heading_heading5{
font-size: 1rem;
font-weight: 500 }

arcgis-ckeditor5 .arcgis-app-ckeditor .ck-content h6, arcgis-ckeditor5 .arcgis-app-ckeditor .ck.ck-heading_heading6{
font-size: 1rem;
font-weight: 400 }

arcgis-ckeditor5 .arcgis-app-ckeditor .ck-content p, arcgis-ckeditor5 .arcgis-app-ckeditor .ck.ck-heading_paragraph{
font-size: .875rem;
line-height: 1.5 }

.ck-body .ck.ck-balloon-panel {
  --arcgis-app-font-family: var(--calcite-sans-family);
  --arcgis-app-foreground: #606060;
  --arcgis-app-background-hover: #dfdfdf;
  --arcgis-app-border-active: #dfdfdf;
  --arcgis-app-border: #f8f8f8;
  --arcgis-app-shadow-2: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
  --calcite-color-text-3: #606060;
  --arcgis-app-cap-spacing-half: 0.5rem;
  --arcgis-app-side-spacing-three-quarters: 0.75rem;
  --arcgis-app-animation-time-fast: 75ms;
}

.ck.ck-list__item .arcgis-app-ckeditor-mention-item-container.ck-button .summary{
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
font-size: .75rem;
--tw-text-opacity: 1;
color: rgb(159 159 159 / var(--tw-text-opacity, 1)) }

.ck.ck-balloon-panel.ck-balloon-panel_visible:has(.ck-balloon-rotator .ck-link-actions .ck-disabled + .ck-disabled){
display: none }

.map-create-content calcite-input-message {
  --calcite-animation-timing: 0;
}

.maps-create-layers .map-create-content calcite-input-message:empty{
display: none }

.card-list {
  --calcite-card-group-space: 2rem;
}

.card-tab-wrap {
  max-height: calc(100vh - 18rem - 2px);
}

.card-tab-wrap.paginated {
  max-height: calc(100vh - 23rem - 5px);
}

.card-tab-wrap section{
border-width: 0px }

.map-card-title{
overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  display: -webkit-box }

.new-map-tile-group calcite-tile {
  max-inline-size: 100%;
}

.new-map-tile-group calcite-tile:last-of-type{
margin-bottom: 0px }

.domain-list-body {
  --background: var(--calcite-color-foreground-1);
}

calcite-dialog .domain-list-body {
  --background: var(--calcite-dialog-background-color);
}

.domain-list-scroll-container {
  min-height: 4rem;
}

.domain-list-table {
  --move-distance: 44px;
}

.domain-list-header-row {
  --header-layer: 1;
}

.domain-list-header-cell{
position: sticky;
top: 0px;
z-index: 20;
transition-duration: 100ms;
  background: var(--background);
  transition-property: filter, opacity }

.domain-list-header-cell:first-child::before, .domain-list-header-cell:last-child::after{
position: absolute;
top: 0px;
bottom: 0px;
width: 0.25rem;
  background: var(--background);
  content: "" }

.domain-list-header-cell:first-child {
  width: calc(2rem + 1.5rem);
}

.domain-list-header-cell:first-child::before {
  left: calc(0.25rem * -1);
}

.domain-list-header-cell:last-child {
  width: calc(2rem + 5rem + 2px);
}

.domain-list-header-cell:last-child::after {
  right: calc(0.25rem * -1);
}

.is-dragging-within .domain-list-header-cell{
opacity: 0.75;
  filter: blur(1px);
  z-index: var(--header-layer) }

.domain-list-body-row {
  --row-layer: 0;
}

.domain-list-body-row.is-focused, .domain-list-body-row.is-move-source {
  outline: 2px solid #007ac2;
  outline-offset: -2px;
}

.domain-list-body-row.is-focused {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}

.is-swapping-within .domain-list-body-row.is-focused{
position: relative;
z-index: 10;
  background: var(--background) }

.is-dragging-within .domain-list-body-row.is-move-source{
outline: 2px solid transparent;
outline-offset: 2px;
  --move-distance: 0 }

.is-dragging-within .domain-list-body-row.is-move-source .domain-list-body-cell{
opacity: 0 }

.is-swapping-within .domain-list-body-row, .is-dragging-within .domain-list-body-row .domain-list-body-cell > *{
transition-duration: 100ms;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-property: transform }

.is-swapping-within .domain-list-body-row.is-moving-up, .is-dragging-within .domain-list-body-row.is-moving-up .domain-list-body-cell > * {
  --inverted-move-distance: calc(-1 * var(--move-distance));
  --tw-translate-y: var(--inverted-move-distance);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.is-swapping-within .domain-list-body-row.is-moving-down, .is-dragging-within .domain-list-body-row.is-moving-down .domain-list-body-cell > *{
--tw-translate-y: var(--move-distance);
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) }

.is-dragging-within .domain-list-body-cell{
position: relative;
  z-index: var(--row-layer) }

.domain-list-body-cell > calcite-input-message {
  --calcite-animation-timing: 0;
}

.domain-list-body-cell > calcite-input-message:empty{
display: none }

.is-dragging-within .domain-list-move-handle{
cursor: default }

.domain-list-template-dragimage {
  --width: 0;
  background: var(--background);
  border: 2px solid #007ac2;
  display: flex;
  gap: 12px;
  left: 0;
  padding: 4px 8px 4px 6px;
  position: absolute;
  top: 0;
  transform: translate(-100%, -100%);
  width: var(--width);
}

.domain-list-template-handle, .domain-list-template-checkbox, .domain-list-template-action {
  height: 16px;
  margin-top: 8px;
  width: 16px;
}

.domain-list-template-handle{
background-color: var(--app-brand-primary, #007ac2) }

@layer framework{

body.user-is-tabbing .focus-outline:focus.domain-list-template-handle {
  box-shadow: 0 0 0 3px rgba(var(--app-brand-secondary-rgb), 0.5) } }

.domain-list-template-handle {
  background-clip: content-box;
  opacity: 0.33;
  padding: 0 3px;
}

.domain-list-template-checkbox {
  background: var(--calcite-color-foreground-1);
  border: 1px solid var(--calcite-color-border-input);
  visibility: hidden;
}

.domain-list-template-checkbox.is-selected {
  background: var(--calcite-color-brand);
  border: none;
  opacity: 0.33;
}

.domain-list-template-name, .domain-list-template-code {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.domain-list-template-name {
  --width: 0;
  width: var(--width);
}

.domain-list-template-code {
  --width: 0;
  width: var(--width);
}

.domain-list-template-name-value, .domain-list-template-code-value {
  align-items: center;
  background-color: var(--calcite-color-foreground-1);
  border: 1px solid var(--calcite-color-border-input);
  color: var(--calcite-color-text-1);
  display: flex;
  height: 32px;
  padding: 0 12px;
}

.is-invalid .domain-list-template-name-value, .is-invalid .domain-list-template-code-value {
  border-color: var(--calcite-color-status-danger);
}

.domain-list-template-name-message, .domain-list-template-code-message {
  align-self: start;
  background-clip: content-box;
  background-color: var(--calcite-color-text-3);
  color: transparent;
  display: none;
  font-weight: 500;
  opacity: 0.33;
  padding-left: 24px;
  visibility: hidden;
}

.is-invalid .domain-list-template-name-message, .is-invalid .domain-list-template-code-message {
  display: flex;
  gap: 8px;
}

.is-invalid .domain-list-template-name-message::before, .is-invalid .domain-list-template-code-message::before {
  background: var(--calcite-color-status-danger);
  content: "";
  height: 16px;
  margin-left: -24px;
  opacity: 0.33;
  width: 16px;
}

.domain-list-template-action {
  background: var(--calcite-color-text-3);
  opacity: 0.33;
  visibility: hidden;
}

.expression-description-max-width {
  max-width: calc(100% - 24px);
}

.form-empty-state svg {
  transform: scaleX(-1);
}

.attachment-formatting {
  --calcite-color-border-input: #dfdfdf;
}

.switch-value-input[disabled] {
  -webkit-text-fill-color: #000;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.domain-editor-content {
  padding-inline-start: calc(6rem - 2.25rem);
  padding-inline-end: 0px;
  min-height: calc(66vh - var(--calcite-dialog-chrome-height));
}

.domain-editor-content .domain-list-import{
padding-bottom: 0.75rem }

.info-element-ckeditor {
  \--arcgis-app-border: #9f9f9f;
  \--arcgis-app-background-content: #f8f8f8;
}

.info-element-ckeditor .ck-toolbar__items{
justify-content: flex-end }

.info-element-ckeditor .arcgis-app-ckeditor .ck-editor .ck.ck-editor__main > .ck-editor__editable:not(.ck-focused){
border-top-color: transparent }

.info-element-ckeditor .arcgis-app-ckeditor .ck-source-editing-area, .info-element-ckeditor .ck-editor__editable_inline{
height: 12rem }

.info-element-ckeditor .ck-rounded-corners .ck.ck-editor__main > .ck-editor__editable, .info-element-ckeditor .ck.ck-editor__main > .ck-editor__editable.ck-rounded-corners, .info-element-ckeditor .ck-rounded-corners .ck.ck-editor__editable:not(.ck-editor__nested-editable), .info-element-ckeditor .ck.ck-editor__editable.ck-rounded-corners:not(.ck-editor__nested-editable){
border-radius: 0px }

.invalid .info-element-ckeditor .arcgis-app-ckeditor .ck-editor .ck.ck-editor__main > .ck-editor__editable:not(.ck-focused) {
  border-color: var(--calcite-color-status-danger);
}

.disabled-attachment-card{
--tw-text-opacity: 1;
color: rgb(159 159 159 / var(--tw-text-opacity, 1));
  background-color: var(--calcite-color-foreground-3) }

.disabled-attachment-card input {
  background-color: var(--calcite-color-foreground-2);
}

.expression-card .referenced-by-popover .popover-content {
  max-height: 12rem;
}

.expression-card .referenced-by-popover .reference-list-item:last-child{
border-bottom-width: 0px }

.field-card input[disabled] {
  cursor: inherit;
}

.field-card .selectable-input .selectable-icon[disabled] {
  cursor: inherit;
}

.switch-label-container {
  margin-top: 0.375rem;
}

.form-element-info-icon {
  --calcite-color-icon-color: var(--calcite-color-brand);
}

.save-form-to-map-dialog b{
font-weight: 500 }

.info-element-readonly-ckeditor {
  \--ck-color-base-background: transparent;
  \--arcgis-ckeditor5-max-width: 100%;
  \--arcgis-ckeditor5-initial-height: auto;
  \--calcite-color-foreground-1: transparent;
}

.info-element-readonly-ckeditor .ck-sticky-panel{
display: none }

.info-element-readonly-ckeditor .arcgis-app-ckeditor .ck.ck-editor__editable_inline, .info-element-readonly-ckeditor .arcgis-app-ckeditor .ck.ck-editor__editable_inline.ck-focused{
overflow: hidden;
border-width: 0px;
padding: 0px;
--tw-shadow: 0 0 #0000;
--tw-shadow-colored: 0 0 #0000;
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) }

.info-element-readonly-ckeditor .arcgis-app-ckeditor .ck.ck-editor__editable_inline > :last-child, .info-element-readonly-ckeditor .arcgis-app-ckeditor .ck.ck-editor__editable_inline > :first-child, .info-element-readonly-ckeditor .arcgis-app-ckeditor .ck.ck-editor__editable_inline.ck-focused > :last-child, .info-element-readonly-ckeditor .arcgis-app-ckeditor .ck.ck-editor__editable_inline.ck-focused > :first-child{
margin-top: 0.25rem;
margin-bottom: 0.25rem;
margin-left: 0px;
margin-right: 0px }

.title-side-panel .side-panel-content:has(.title-editor-field-list :focus) {
  scroll-padding: 124px 0 45px;
}

@supports not selector(:has(*)) {
  .title-side-panel .side-panel-content {
    scroll-padding: 124px 0 45px;
  }
}

.title-field:last-of-type{
border-bottom-width: 0px }

.title-field:hover .active-dot, .title-field:focus .active-dot{
opacity: 1 }

.template-list-type{
border-bottom-width: 8px;
  border-color: var(--calcite-color-background) }

.template-list-type:last-of-type{
margin-bottom: 0px }

.geofence-list-panel-title {
  min-height: 3rem;
}

.geofence-row .visibility-button{
opacity: 0 }

.geofence-row .visibility-button:focus-within{
opacity: 1 }

.geofence-row:hover .visibility-button{
opacity: 1 }

.map-widget-container {
  padding: 0.9375rem 0.9375rem 1.875rem 0.9375rem;
}

.map-widget-container .home-button-container{
margin-bottom: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) }

.map-widget-container .zoom-button-container {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.item-browser-title-container {
  min-height: 3rem;
}

.item-browser-wrapper {
  height: calc(100% - 8rem);
}

.item-browser-wrapper .ib-side__content--flyout{
margin-top: -3rem }

.item-browser-wrapper .ib-side-body__header{
margin-top: -1px }

.dijitCalendarPopup .dijitCalendarDecrementArrow{
left: 0px }

.dijitCalendarPopup .dijitCalendarDecrementArrow::before{
position: absolute;
  content: "←";
  left: 0.7rem;
  top: 0.5rem }

.dijitCalendarPopup .dijitCalendarIncrementArrow{
right: 0px }

.dijitCalendarPopup .dijitCalendarIncrementArrow::before{
position: absolute;
  content: "→";
  right: 0.7rem;
  top: 0.5rem }

.arcgis-navbar {
  border-top: 2px solid var(--app-brand-primary);
  position: absolute;
}

.navbar-shadow {
  margin-top: 2px;
}

.map-editor {
  height: calc(100vh - 4rem - 2px);
}

.section-title {
  min-height: 3rem;
}

.field-filter-checkbox-list-item {
  --calcite-label-margin-bottom: 1rem;
}

.version-missing {
  --calcite-color-text-1: var(--calcite-color-text-3);
}

.version-missing calcite-combobox-item {
  --calcite-color-text-1: #151515;
}

@media only screen and (min-width: 992px) {
  .layer-editor {
    max-width: 641px;
  }
}

#layer-editor-scroll-container {
  --calcite-block-header-height: 41.5px;
}

.layer-editor-title {
  min-height: 3rem;
}

.layer-editor-block {
  --calcite-block-padding: 0rem;
}

.layer-editor-layer.is-group .is-leaf:last-child, .layer-editor-layer.is-group .is-leaf:last-child::before {
  padding-block-end: var(--calcite-focus-outline-width);
}

.layer-editor-layer.is-leaf{
background-clip: content-box;
  padding-inline-end: var(--calcite-focus-outline-width) }

.layer-editor-layer.is-leaf:hover, .layer-editor-layer.is-leaf:focus-within{
--tw-bg-opacity: 1;
background-color: rgb(248 248 248 / var(--tw-bg-opacity, 1));
--tw-text-opacity: 1;
color: rgb(0 0 0 / var(--tw-text-opacity, 1)) }

.layer-editor-layer-icon[scale=s]{
margin-top: 0.5rem;
margin-bottom: 0.5rem }

.resizable-handle {
  cursor: col-resize;
}

.layer-editor-tab-nav {
  min-height: calc(3rem - 1px);
}

.layer-item-browser-content {
  --arcgis-item-browser-content-spacing: .75rem;
}

.side-panel-title-container {
  min-height: 3rem;
}

.side-panel-overlay {
  min-width: 100%;
  transform: translateX(100%);
}

.side-panel-overlay.is-open {
  transform: none;
}

[dir=rtl] .side-panel-overlay:not(.is-open) {
  transform: translateX(-100%);
}

.static-title-label, .editable-title-label, .editable-summary-label{
margin-top: 0px }

.editable-title-label{
margin-bottom: 0.75rem }

.editable-summary-label{
margin-bottom: 0px }

.thumbnail-editor {
  min-width: 12rem;
}

.thumbnail-editor .spinner-container {
  background-color: rgba(64, 64, 64, 0.75);
}

.thumbnail-editor .change-thumb {
  opacity: 0;
}

.thumbnail-editor .change-thumb:hover, .thumbnail-editor .change-thumb:focus {
  background-color: rgba(64, 64, 64, 0.75);
  opacity: 1;
}

.ember-feature-controls-table{
margin-top: 2.5rem;
margin-bottom: 2.5rem;
margin-left: 0px;
margin-right: 0px;
width: 100%;
text-align: left }

.ember-feature-controls-table td{
white-space: pre;
padding: 0px }

.ember-feature-controls-button{
--tw-bg-opacity: 1;
background-color: rgb(0 122 194 / var(--tw-bg-opacity, 1));
--tw-text-opacity: 1;
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  padding: 10px }

.arcade-expression-manager {
  max-height: 30vh;
}

.canvas > .sortable-list > .sortable-list-item:last-child > .drop-target-container{
flex-grow: 1;
padding-bottom: 6rem }

.canvas > .sortable-list > .sortable-list-item:last-child > .drop-target-container > .drop-target::after {
  bottom: 0;
}

.drag-in-progress .card.hover .card-actions {
  display: none;
}

.drag-in-progress .card-actions {
  display: none;
}

:not(.drag-in-progress) .card.hover{
--tw-bg-opacity: 1;
background-color: rgb(223 239 250 / var(--tw-bg-opacity, 1)) }

.card {
  transition: background-color 600ms ease;
}

.card label {
  cursor: grab;
}

.card .card{
--tw-bg-opacity: 1;
background-color: rgb(248 248 248 / var(--tw-bg-opacity, 1)) }

.card .card-actions {
  display: none;
}

.card .card-actions:focus-within {
  display: flex;
  top: -0.5rem;
}

.card.selected {
  box-shadow: inset 0 0 0 2px #007ac2;
}

.user-is-tabbing .card.selected:focus {
  box-shadow: inset 0 0 0 2px #007ac2, 0 0 0 3px rgba(var(--app-brand-primary-rgb), 0.5);
}

.card:active.hover{
--tw-bg-opacity: 1;
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) }

.card.hover .card-actions, .card.selected .card-actions {
  display: flex;
  top: -0.5rem;
}

.card.hover .card .card-actions, .card.selected .card .card-actions {
  display: none;
}

.card.hover .card.hover .card-actions, .card.hover .card.selected .card-actions, .card.selected .card.hover .card-actions, .card.selected .card.selected .card-actions {
  display: flex;
  top: -0.5rem;
}

.card.hover, .card.selected, .card:focus, .card:focus-within {
  z-index: 1;
}

.card.panel-card.hover, .card.panel-card:focus, .card.panel-card:focus-within{
--tw-bg-opacity: 1;
background-color: rgb(248 248 248 / var(--tw-bg-opacity, 1));
--tw-text-opacity: 1;
color: rgb(96 96 96 / var(--tw-text-opacity, 1)) }

.card.panel-card.hover .attribute-field-alias,
.card.panel-card.hover .element-name, .card.panel-card:focus .attribute-field-alias,
.card.panel-card:focus .element-name, .card.panel-card:focus-within .attribute-field-alias,
.card.panel-card:focus-within .element-name{
--tw-text-opacity: 1;
color: rgb(0 0 0 / var(--tw-text-opacity, 1)) }

.card.panel-card.selected{
--tw-bg-opacity: 1;
background-color: rgb(223 239 250 / var(--tw-bg-opacity, 1));
--tw-text-opacity: 1;
color: rgb(96 96 96 / var(--tw-text-opacity, 1));
  box-shadow: none }

.card.panel-card .panel-card{
--tw-bg-opacity: 1;
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) }

.card.panel-card .panel-card.hover, .card.panel-card .panel-card:focus, .card.panel-card .panel-card:focus-within{
--tw-bg-opacity: 1;
background-color: rgb(248 248 248 / var(--tw-bg-opacity, 1));
--tw-text-opacity: 1;
color: rgb(96 96 96 / var(--tw-text-opacity, 1)) }

.card.panel-card .panel-card.selected{
--tw-bg-opacity: 1;
background-color: rgb(223 239 250 / var(--tw-bg-opacity, 1));
--tw-text-opacity: 1;
color: rgb(96 96 96 / var(--tw-text-opacity, 1));
  box-shadow: none }

[data-sortable-item]:last-of-type .panel-card-content {
  border-bottom-width: 0;
}

.animate-drop .card {
  animation: drop 500ms normal;
}

.card-action:not(.is-disabled):focus, .card-action:not(.is-disabled):hover {
  background: var(--app-brand-primary-dark);
}

.draggable-item.can-drag:active *{
  cursor: grabbing;
  user-select: none }

.draggable-item:focus {
  outline: 0;
}

.is-dragging-object:not(.after-drag-image) .card-actions{
visibility: hidden }

.is-dragging-object:not(.after-drag-image) .card {
  box-shadow: none;
}

.is-dragging-object.multi-selection:not(.after-drag-image) .multi-selection-content{
display: flex }

.draggable-item calcite-icon[scale=s]{
height: 1rem;
width: 1rem }

@layer framework{

.switch-actuator.on.draggable-item calcite-icon[scale=s] {
  left: 1.375rem }

[dir='rtl'] .switch-actuator.on.draggable-item calcite-icon[scale=s] {
  right: 1.375rem } }

.draggable-item calcite-icon[scale=m]{
height: 1.5rem;
width: 1.5rem }

.draggable-item calcite-icon[scale=l]{
height: 2rem;
width: 2rem }

.drop-target.can-drop::after{
position: absolute;
left: 0px;
top: 0px;
width: 100%;
  content: "";
  z-index: 10;
  top: -2rem;
  bottom: -2rem }

.help-label-label {
  color: var(--calcite-color-text-2);
  font-weight: 400;
}

.help-label-error-icon {
  color: var(--calcite-color-status-danger);
}

.help-label-warning-icon {
  color: var(--calcite-color-status-warning);
}

.help-label-info-icon {
  color: var(--calcite-color-status-info);
}

.sortable-list.drag-in-progress * {
  cursor: grabbing;
  user-select: none;
}

.sortable-list.drag-in-progress .sortable-list-item {
  z-index: var(--z-index);
}

.selectable-input .selectable-icon[disabled]{
cursor: not-allowed }

.selectable-input:focus-within .selectable-icon{
--tw-text-opacity: 1;
color: rgb(96 96 96 / var(--tw-text-opacity, 1)) }

.whats-new-dialog {
  --calcite-dialog-background-color: white;
}

.whats-new-dialog calcite-carousel-item[selected] {
  flex: 1;
}

.nav-header:hover::after {
  border-bottom: 2px solid var(--app-brand-primary);
}

.nav-control:hover::after {
  border-bottom: 2px solid var(--app-brand-primary);
}

.mobile-menu-btn:hover::after {
  border-bottom: 2px solid var(--app-brand-primary);
}

main {
  height: calc(100vh - 4rem - 2px);
}

main.embedded {
  height: 100vh;
}

.max-w-mast{
margin-left: auto;
margin-right: auto;
  max-width: 23.25rem }

@media only screen and (min-width: 576px) {
  .max-w-mast {
    max-width: 34.5rem;
  }
}

@media only screen and (min-width: 992px) {
  .max-w-mast {
    max-width: 52rem;
  }
}

@media only screen and (min-width: 1200px) {
  .max-w-mast {
    max-width: 70rem;
  }
}

.create-empty-map-label{
margin-left: 0px;
margin-right: 0px }

.hero {
  background-image: url("../field-maps-cover-2fb769e4ba6d5c91b60b7f5134b79329.jpg");
  max-height: calc(100vh - 4rem - 2px);
}

@media (min-width: 992px) {
  .leading-resizable-panel{
min-width: 14rem }
}

.leading-resizable-panel.collapsed {
  min-width: 0;
  width: 0 !important;
}

.unsaved-form-changes-dialog b{
font-weight: 500 }

.content-title {
  min-height: 3rem;
}

.expression-warning {
  --calcite-color-status-danger: var(--calcite-color-status-warning);
}

.app-integration-expression-manager .arcade-expression-manager {
  max-height: 25vh;
}

body {
  line-height: 1.15;
}

.sr-only{
position: absolute;
margin: -1px;
height: 1px;
width: 1px;
overflow: hidden;
border-width: 0px;
padding: 0px;
  clip: rect(0, 0, 0, 0) }

input[disabled],
textarea[disabled] {
  /* Safari fix*/
  -webkit-text-fill-color: #9f9f9f;
} /* The tailwind preflight styles are bundled into field-maps.css, which is loaded _after_ we load*/ /* the arcgis-js-api's main.css stylesheet, and they are clobbering some of the arcgis-js-api*/ /* styles with the same specificity.  Here, we revert back to what is specified in main.css.*/ /**/ /* TODO: find a way to separate tailwind preflight styles from our app styles, and load the*/ /* preflight before any other styles.*/

[type=submit].esri-button {
  background-color: #0079c1;
}

[type=submit].esri-button:hover {
  background-color: #00598e;
}

.placeholder\:text-gray::placeholder{
--tw-text-opacity: 1;
color: rgb(159 159 159 / var(--tw-text-opacity, 1)) }

.placeholder\:text-gray-dark::placeholder{
--tw-text-opacity: 1;
color: rgb(96 96 96 / var(--tw-text-opacity, 1)) }

.last\:grow:last-child{
flex-grow: 1 }

.empty\:hidden:empty{
display: none }

.hover\:border-brand:hover{
border-color: var(--app-brand-primary, #007ac2) }

.hover\:border-brand-dark:hover{
border-color: var(--app-brand-primary-dark, #00304d) }

.hover\:border-gray-lighter:hover{
--tw-border-opacity: 1;
border-color: rgb(223 223 223 / var(--tw-border-opacity, 1)) }

.hover\:bg-brand:hover{
background-color: var(--app-brand-primary, #007ac2) }

.hover\:bg-brand-dark:hover{
background-color: var(--app-brand-primary-dark, #00304d) }

.hover\:bg-gray-lighter:hover{
--tw-bg-opacity: 1;
background-color: rgb(223 223 223 / var(--tw-bg-opacity, 1)) }

.hover\:bg-gray-lightest:hover{
--tw-bg-opacity: 1;
background-color: rgb(248 248 248 / var(--tw-bg-opacity, 1)) }

.hover\:text-brand:hover{
color: var(--app-brand-primary, #007ac2) }

.hover\:text-brand-dark:hover{
color: var(--app-brand-primary-dark, #00304d) }

.hover\:text-white:hover{
--tw-text-opacity: 1;
color: rgb(255 255 255 / var(--tw-text-opacity, 1)) }

.hover\:underline:hover{
text-decoration-line: underline }

.hover\:shadow-md:hover{
--tw-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
--tw-shadow-colored: 0 4px 8px 0 var(--tw-shadow-color), 0 2px 4px 0 var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) }

.focus\:border-brand:focus{
border-color: var(--app-brand-primary, #007ac2) }

.focus\:bg-brand:focus{
background-color: var(--app-brand-primary, #007ac2) }

.focus\:bg-gray-lightest:focus{
--tw-bg-opacity: 1;
background-color: rgb(248 248 248 / var(--tw-bg-opacity, 1)) }

.focus\:text-brand:focus{
color: var(--app-brand-primary, #007ac2) }

.focus\:text-brand-highlight:focus{
color: var(--app-brand-primary-highlight, #77bde7) }

.focus\:text-white:focus{
--tw-text-opacity: 1;
color: rgb(255 255 255 / var(--tw-text-opacity, 1)) }

.focus\:shadow-md:focus{
--tw-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
--tw-shadow-colored: 0 4px 8px 0 var(--tw-shadow-color), 0 2px 4px 0 var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) }

.focus\:outline-none:focus{
outline: 2px solid transparent;
outline-offset: 2px }

@media (min-width: 576px){

.sm\:mt-0{
margin-top: 0px }

.sm\:block{
display: block }

.sm\:w-2\/3{
width: 66.666667% }

.sm\:flex-row{
flex-direction: row }

.sm\:space-x-3 > :not([hidden]) ~ :not([hidden]){
--tw-space-x-reverse: 0;
margin-right: calc(0.75rem * var(--tw-space-x-reverse));
margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) }

.sm\:space-y-0 > :not([hidden]) ~ :not([hidden]){
--tw-space-y-reverse: 0;
margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
margin-bottom: calc(0px * var(--tw-space-y-reverse)) }

.sm\:text-left{
text-align: left }

.sm\:text-2xl{
font-size: 1.625rem } }

@media (min-width: 768px){

.md\:absolute{
position: absolute }

.md\:mr-3{
margin-right: 0.75rem }

.md\:block{
display: block }

.md\:inline-block{
display: inline-block }

.md\:flex{
display: flex }

.md\:hidden{
display: none }

.md\:w-auto{
width: auto }

.md\:shrink{
flex-shrink: 1 }

.md\:grow{
flex-grow: 1 }

.md\:justify-end{
justify-content: flex-end }

.md\:justify-between{
justify-content: space-between }

.md\:border-none{
border-style: none }

.md\:p-32{
padding: 8rem }

.md\:py-6{
padding-top: 1.5rem;
padding-bottom: 1.5rem }

.md\:text-3xl{
font-size: 2rem }

.md\:text-display-md{
font-size: 3.5rem }

.md\:shadow{
--tw-shadow: 0 2px 4px 0 rgba(0,0,0,0.10);
--tw-shadow-colored: 0 2px 4px 0 var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) }

.md\:shadow-none{
--tw-shadow: 0 0 #0000;
--tw-shadow-colored: 0 0 #0000;
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) } }

@media (min-width: 992px){

.lg\:block{
display: block }

.lg\:w-1\/3{
width: 33.333333% }

.lg\:w-1\/6{
width: 16.666667% }

.lg\:max-w-3xl{
max-width: 48rem }

.lg\:shrink{
flex-shrink: 1 }

.lg\:shrink-0{
flex-shrink: 0 }

.lg\:border-b-0{
border-bottom-width: 0px }

.lg\:border-l-0{
border-left-width: 0px }

.lg\:border-r{
border-right-width: 1px }

.lg\:text-4xl{
font-size: 2.5rem }

.lg\:text-display-lg{
font-size: 4rem } }

@media (min-width: 1200px){

.xl\:w-1\/2{
width: 50% } }

.ltr\:ml-2:where([dir="ltr"], [dir="ltr"] *){
margin-left: 0.5rem }

.ltr\:ml-4:where([dir="ltr"], [dir="ltr"] *){
margin-left: 1rem }

.ltr\:ml-9:where([dir="ltr"], [dir="ltr"] *){
margin-left: 2.25rem }

.ltr\:ml-auto:where([dir="ltr"], [dir="ltr"] *){
margin-left: auto }

.ltr\:mr-1:where([dir="ltr"], [dir="ltr"] *){
margin-right: 0.25rem }

.ltr\:mr-16:where([dir="ltr"], [dir="ltr"] *){
margin-right: 4rem }

.ltr\:mr-2:where([dir="ltr"], [dir="ltr"] *){
margin-right: 0.5rem }

.ltr\:mr-8:where([dir="ltr"], [dir="ltr"] *){
margin-right: 2rem }

.ltr\:border-r-0:where([dir="ltr"], [dir="ltr"] *){
border-right-width: 0px }

.ltr\:pl-2:where([dir="ltr"], [dir="ltr"] *){
padding-left: 0.5rem }

.ltr\:pl-24:where([dir="ltr"], [dir="ltr"] *){
padding-left: 6rem }

.ltr\:pl-3:where([dir="ltr"], [dir="ltr"] *){
padding-left: 0.75rem }

.ltr\:pr-1:where([dir="ltr"], [dir="ltr"] *){
padding-right: 0.25rem }

.ltr\:pr-2:where([dir="ltr"], [dir="ltr"] *){
padding-right: 0.5rem }

.ltr\:pr-3:where([dir="ltr"], [dir="ltr"] *){
padding-right: 0.75rem }

.ltr\:pr-32:where([dir="ltr"], [dir="ltr"] *){
padding-right: 8rem }

@media (min-width: 768px){

.md\:ltr\:pl-3:where([dir="ltr"], [dir="ltr"] *){
padding-left: 0.75rem }

.md\:ltr\:pr-4:where([dir="ltr"], [dir="ltr"] *){
padding-right: 1rem } }

.rtl\:inset-auto:where([dir="rtl"], [dir="rtl"] *){
inset: auto }

.rtl\:inset-y-0:where([dir="rtl"], [dir="rtl"] *){
top: 0px;
bottom: 0px }

.rtl\:left-0:where([dir="rtl"], [dir="rtl"] *){
left: 0px }

.rtl\:left-auto:where([dir="rtl"], [dir="rtl"] *){
left: auto }

.rtl\:right-0:where([dir="rtl"], [dir="rtl"] *){
right: 0px }

.rtl\:right-auto:where([dir="rtl"], [dir="rtl"] *){
right: auto }

.rtl\:top-0:where([dir="rtl"], [dir="rtl"] *){
top: 0px }

.rtl\:float-left:where([dir="rtl"], [dir="rtl"] *){
float: left }

.rtl\:m-0:where([dir="rtl"], [dir="rtl"] *){
margin: 0px }

.rtl\:-mr-3:where([dir="rtl"], [dir="rtl"] *){
margin-right: -0.75rem }

.rtl\:ml-0:where([dir="rtl"], [dir="rtl"] *){
margin-left: 0px }

.rtl\:ml-1:where([dir="rtl"], [dir="rtl"] *){
margin-left: 0.25rem }

.rtl\:ml-10:where([dir="rtl"], [dir="rtl"] *){
margin-left: 2.5rem }

.rtl\:ml-16:where([dir="rtl"], [dir="rtl"] *){
margin-left: 4rem }

.rtl\:ml-2:where([dir="rtl"], [dir="rtl"] *){
margin-left: 0.5rem }

.rtl\:ml-3:where([dir="rtl"], [dir="rtl"] *){
margin-left: 0.75rem }

.rtl\:ml-4:where([dir="rtl"], [dir="rtl"] *){
margin-left: 1rem }

.rtl\:ml-6:where([dir="rtl"], [dir="rtl"] *){
margin-left: 1.5rem }

.rtl\:ml-8:where([dir="rtl"], [dir="rtl"] *){
margin-left: 2rem }

.rtl\:mr-0:where([dir="rtl"], [dir="rtl"] *){
margin-right: 0px }

.rtl\:mr-2:where([dir="rtl"], [dir="rtl"] *){
margin-right: 0.5rem }

.rtl\:mr-3:where([dir="rtl"], [dir="rtl"] *){
margin-right: 0.75rem }

.rtl\:mr-4:where([dir="rtl"], [dir="rtl"] *){
margin-right: 1rem }

.rtl\:mr-9:where([dir="rtl"], [dir="rtl"] *){
margin-right: 2.25rem }

.rtl\:mr-auto:where([dir="rtl"], [dir="rtl"] *){
margin-right: auto }

.rtl\:space-x-reverse:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
--tw-space-x-reverse: 1 }

.rtl\:border-l:where([dir="rtl"], [dir="rtl"] *){
border-left-width: 1px }

.rtl\:border-l-0:where([dir="rtl"], [dir="rtl"] *){
border-left-width: 0px }

.rtl\:border-r:where([dir="rtl"], [dir="rtl"] *){
border-right-width: 1px }

.rtl\:border-r-0:where([dir="rtl"], [dir="rtl"] *){
border-right-width: 0px }

.rtl\:border-r-8:where([dir="rtl"], [dir="rtl"] *){
border-right-width: 8px }

.rtl\:pl-1:where([dir="rtl"], [dir="rtl"] *){
padding-left: 0.25rem }

.rtl\:pl-10:where([dir="rtl"], [dir="rtl"] *){
padding-left: 2.5rem }

.rtl\:pl-2:where([dir="rtl"], [dir="rtl"] *){
padding-left: 0.5rem }

.rtl\:pl-3:where([dir="rtl"], [dir="rtl"] *){
padding-left: 0.75rem }

.rtl\:pl-32:where([dir="rtl"], [dir="rtl"] *){
padding-left: 8rem }

.rtl\:pl-8:where([dir="rtl"], [dir="rtl"] *){
padding-left: 2rem }

.rtl\:pr-0:where([dir="rtl"], [dir="rtl"] *){
padding-right: 0px }

.rtl\:pr-2:where([dir="rtl"], [dir="rtl"] *){
padding-right: 0.5rem }

.rtl\:pr-24:where([dir="rtl"], [dir="rtl"] *){
padding-right: 6rem }

.rtl\:pr-3:where([dir="rtl"], [dir="rtl"] *){
padding-right: 0.75rem }

.rtl\:pr-4:where([dir="rtl"], [dir="rtl"] *){
padding-right: 1rem }

.rtl\:text-left:where([dir="rtl"], [dir="rtl"] *){
text-align: left }

.rtl\:text-right:where([dir="rtl"], [dir="rtl"] *){
text-align: right }

@media (min-width: 768px){

.md\:rtl\:pl-4:where([dir="rtl"], [dir="rtl"] *){
padding-left: 1rem }

.md\:rtl\:pr-3:where([dir="rtl"], [dir="rtl"] *){
padding-right: 0.75rem } }

@media (min-width: 992px){

.lg\:rtl\:border-l:where([dir="rtl"], [dir="rtl"] *){
border-left-width: 1px }

.lg\:rtl\:border-r-0:where([dir="rtl"], [dir="rtl"] *){
border-right-width: 0px } }