/*
 *   Copyright (c) 2022 Esri
 *   All rights reserved.

 *   Licensed under the Apache License, Version 2.0 (the "License");
 *   you may not use this file except in compliance with the License.
 *   You may obtain a copy of the License at

 *   http://www.apache.org/licenses/LICENSE-2.0

 *   Unless required by applicable law or agreed to in writing, software
 *   distributed under the License is distributed on an "AS IS" BASIS,
 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *   See the License for the specific language governing permissions and
 *   limitations under the License.
 */
/*$include_AreaMeasurement2D: false !default;
$include_AreaMeasurement3D: false !default;
$include_Attribution: true !default;
$include_BasemapGallery: false !default;
$include_BasemapLayerList: false !default;
$include_BasemapToggle: true !default;
$include_Bookmarks: false !default;
$include_BrowseItems: false !default;
$include_ClassedColorSlider: false !default;
$include_ClassedSizeSlider: false !default;
$include_ColorPicker: false !default;
$include_Compass: false !default;
$include_ColorSizeSlider: false !default;
$include_ColorSlider: false !default;
$include_CoordinateConversion: false !default;
$include_DatePicker: false !default;
$include_Daylight: false !default;
$include_Directions: false !default;
$include_DirectLineMeasurement3D: false !default;
$include_DistanceMeasurement2D: false !default;
$include_Editor: false !default;
$include_Expand: true !default;
$include_Feature: true !default;
$include_FeatureForm: false !default;
$include_FeatureTemplates: false !default;
$include_HeatmapSlider: false !default;
$include_Histogram: false !default;
$include_HistogramRangeSlider: false !default;
$include_HorizontalSlider: false !default;
$include_ItemList: false !default;
$include_LayerList: true !default;
$include_Legend: true !default;
$include_LineOfSight: false !default;
$include_Measurement: false !default;
$include_NavigationToggle: false !default;
$include_OpacitySlider: false !default;
$include_Print: false !default;
$include_Popup: true !default;
$include_RasterSymbologyEditor: false !default;
$include_RendererSlider: false !default;
$include_ScaleBar: true !default;
$include_ScaleRangeSlider: false !default;
$include_Search: true !default;
$include_SizeSlider: false !default;
$include_Sketch: false !default;
$include_Slice: false !default;
$include_Slider: false !default;
$include_Spinner: true !default;
$include_Swipe: false !default;
$include_TimePicker: false !default;
$include_TimeSlider: false !default;
$include_Zoom: true !default;*/
.esri-page {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  color: #fff;
  box-sizing: border-box;
  padding: 2.5%;
}
.esri-page .esri-page__text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 90%;
}
.esri-page .esri-page__title-text,
.esri-page .esri-page__subtitle-text {
  line-height: normal;
  word-break: break-word;
}
.esri-page .esri-page__title-text {
  margin: 0;
  font-weight: 400;
  margin-bottom: 0.25%;
}
.esri-page .esri-page__title-text,
.esri-page .esri-page__subtitle-text {
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);
}
.esri-page .esri-page__scroll-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 10%;
}
.esri-page .esri-page__scroll-container .esri-page__scroll-text {
  margin-bottom: 5px;
}
.esri-page .esri-page__scroll-container button {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: transparent;
  border: none;
  cursor: pointer;
  width: fit-content;
  color: #fff;
}
.esri-page .esri-page__scroll-container button calcite-icon {
  color: #fff;
}

.esri-page__back-to-cover-page {
  position: absolute;
  right: 2%;
  bottom: -98%;
  z-index: 999999999;
  cursor: pointer;
}

.esri-page__scroll-container button:hover calcite-icon {
  transition: ease-in-out 0.25s;
  transform: translateY(3px);
}
.esri-page__scroll-container button:not(:hover) calcite-icon {
  transition: ease-in-out 0.25s;
  transform: translateY(-3px);
}

@media screen and (max-width: 480px) {
  .esri-page__title-text {
    font-size: 45px;
  }
  .esri-page__subtitle-text {
    font-size: 25px;
  }
  .esri-page__scroll-text {
    font-size: 20px;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .esri-page__title-text {
    font-size: 65px;
  }
  .esri-page__subtitle-text {
    font-size: 30px;
  }
  .esri-page__scroll-text {
    font-size: 25px;
  }
}
@media screen and (min-width: 769px) {
  .esri-page__title-text {
    font-size: 75px;
  }
  .esri-page__subtitle-text {
    font-size: 45px;
  }
  .esri-page__scroll-text {
    font-size: 30px;
  }
}
@media (prefers-reduced-motion) {
  .esri-page__scroll-container button:hover calcite-icon {
    transition: none;
    transform: none;
  }
  .esri-page__scroll-container button:not(:hover) calcite-icon {
    transition: none;
    transform: none;
  }
}
/*
 *   Copyright (c) 2022 Esri
 *   All rights reserved.

 *   Licensed under the Apache License, Version 2.0 (the "License");
 *   you may not use this file except in compliance with the License.
 *   You may obtain a copy of the License at

 *   http://www.apache.org/licenses/LICENSE-2.0

 *   Unless required by applicable law or agreed to in writing, software
 *   distributed under the License is distributed on an "AS IS" BASIS,
 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *   See the License for the specific language governing permissions and
 *   limitations under the License.
 */
.calcite-theme-dark :any-link {
  color: #75fbfd;
}
.calcite-theme-dark calcite-block.active-popup {
  border-color: #75fbfd;
}
.calcite-theme-dark :root(:focus) {
  outline: 1px solid var(--calcite-ui-brand);
  outline-offset: -1px;
}
.calcite-theme-dark calcite-action:focus,
.calcite-theme-dark calcite-button:focus,
.calcite-theme-dark calcite-block button:focus,
.calcite-theme-dark input:focus,
.calcite-theme-dark .active-popup,
.calcite-theme-dark calcite-combobox:focus,
.calcite-theme-dark .esri-widget--button.esri-widget.esri-interactive:hover,
.calcite-theme-dark .esri-media-ga-alert-button:focus,
.calcite-theme-dark .close:focus,
.calcite-theme-dark button.close:focus,
.calcite-theme-dark .close,
.calcite-theme-dark .esri-view .esri-view-surface--inset-outline {
  border: none;
  --calcite-ui-brand: #75fbfd !important;
  outline: 1px solid #75fbfd !important;
  outline-color: #75fbfd !important;
}
.calcite-theme-dark instant-apps-header,
.calcite-theme-dark instant-apps-social-share {
  background: transparent;
  color: #fff;
}

.calcite-theme-light instant-apps-header,
.calcite-theme-light instant-apps-social-share {
  background: #fff;
  color: #2b2b2b;
}

.esri-page {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  color: #fff;
  box-sizing: border-box;
  padding: 2.5%;
}

.esri-page .esri-page__text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 90%;
}

.esri-page .esri-page__title-text,
.esri-page .esri-page__subtitle-text {
  line-height: normal;
  word-break: break-word;
}

.esri-page .esri-page__title-text {
  margin: 0;
  font-weight: 400;
  margin-bottom: 0.25%;
}

.esri-page .esri-page__title-text,
.esri-page .esri-page__subtitle-text {
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);
}

.esri-page .esri-page__scroll-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 10%;
}

.esri-page .esri-page__scroll-container .esri-page__scroll-text {
  margin-bottom: 5px;
}

.esri-page .esri-page__scroll-container button {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: transparent;
  border: none;
  cursor: pointer;
  width: fit-content;
  color: #fff;
}

.esri-page .esri-page__scroll-container button calcite-icon {
  color: #fff;
}

.esri-page__back-to-cover-page {
  position: absolute;
  right: 2%;
  bottom: -98%;
  z-index: 999999999;
  cursor: pointer;
}

.esri-page__scroll-container button:hover calcite-icon {
  transition: ease-in-out 0.25s;
  transform: translateY(3px);
}

.esri-page__scroll-container button:not(:hover) calcite-icon {
  transition: ease-in-out 0.25s;
  transform: translateY(-3px);
}

@media only screen and (min-width: 992px) {
  .embed-app__view-container {
    z-index: 1;
  }
}
@media screen and (max-width: 480px) {
  .esri-page__title-text {
    font-size: 45px;
  }
  .esri-page__subtitle-text {
    font-size: 25px;
  }
  .esri-page__scroll-text {
    font-size: 20px;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .esri-page__title-text {
    font-size: 65px;
  }
  .esri-page__subtitle-text {
    font-size: 30px;
  }
  .esri-page__scroll-text {
    font-size: 25px;
  }
}
@media screen and (min-width: 769px) {
  .esri-page__title-text {
    font-size: 75px;
  }
  .esri-page__subtitle-text {
    font-size: 45px;
  }
  .esri-page__scroll-text {
    font-size: 30px;
  }
}
.panel-m .calcite-theme-dark,
.panel-m .calcite-theme-light,
.panel-s .calcite-theme-dark,
.panel-s .calcite-theme-light {
  --calcite-panel-width-multiplier: 1.4;
}

.panel-l .calcite-theme-dark,
.panel-l .calcite-theme-light {
  --calcite-panel-width-multiplier: 0.9;
}

#offscreenResults {
  position: absolute;
  left: -100000px;
  top: auto;
  overflow: hidden;
  width: 400px;
  height: 100%;
}

html,
body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  letter-spacing: 0em;
  line-height: 1.55rem;
}

#appContainer {
  position: relative;
  width: 100%;
  height: 100%;
}

.hide {
  display: none !important;
}

.print-only,
#printPage {
  display: none;
}

.print-frame {
  display: none;
}

#details {
  padding: 30px;
}

#popupPanel {
  padding-left: 0.25em;
  padding-right: 0.25em;
}

.popup-tools {
  display: flex;
  justify-content: flex-end;
  background-color: var(--calcite-ui-foreground-1);
}

.header-panel > h2 {
  font-size: 1.2em;
}

.header-panel {
  padding: 0;
  height: 20px;
}

:any-link {
  color: #53b5ee;
}

/* Calcite side panel content*/
/*makes popup content fit better in the side panel - maybe we want to make this
customizable?  */
calcite-shell-panel {
  --calcite-app-shell-panel-width: 50vw;
}

calcite-shell-panel article {
  display: flex;
  flex-direction: column;
}

.popup-block {
  flex-grow: 1;
  overflow: auto;
  min-height: 0;
  height: calc(100% - 49px);
}

calcite-shell-panel .popup-container {
  overflow-y: auto;
  overflow-x: hidden;
  flex-basis: auto;
}

calcite-shell-panel .popup-container .esri-feature {
  flex-basis: auto;
  box-shadow: none;
  height: -moz-fit-content;
  height: fit-content;
}

calcite-shell-panel .popup-container .esri-feature__content-element {
  flex-basis: auto;
  padding: 0;
}

.side-panel-content[theme=light] {
  --calcite-app-background-content: #fff;
}

.side-panel-content[theme=dark] {
  --calcite-app-background-content: #232323;
}

/*overwrite panel colors*/
calcite-shell[theme=light] > calcite-shell-panel {
  --calcite-app-background-content: #fff;
}

calcite-shell[theme=dark] calcite-block {
  background-color: inherit;
}

calcite-shell[theme=dark] calcite-block a {
  color: #59d6ff;
}

calcite-shell[theme=dark] > calcite-shell-panel {
  --calcite-app-background-content: #232323;
}

.embed-app__view-container {
  width: 100%;
  height: 100%;
}

.embed-app__view-container calcite-loader {
  width: 100%;
  position: absolute;
  top: 42%;
}

.embed-app__view-container .embed-app__layout-error {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.scroll-overlay {
  position: absolute;
  left: 50%;
  margin-left: -74.9px;
  bottom: 16px;
  padding-top: 0.5em;
  margin-bottom: 1em;
  background: rgba(255, 255, 255, 0);
}

/* Calcite components overwrite */
calcite-block.active-popup.count-1 {
  border: none;
  margin-top: 1px;
}

calcite-block .zoom-button {
  display: flex;
  align-items: flex-end;
  flex-grow: var(--calcite-app-shell-panel-width);
  height: 42px;
  position: absolute;
  bottom: 0;
  float: right;
  margin-top: 1em;
}

calcite-block .zoom-button calcite-action {
  flex: 0 1 auto;
}

calcite-block .esri-feature-content,
calcite-block .esri-feature__content-element,
calcite-block .esri-feature__main-container {
  margin-bottom: 3.5em;
}

calcite-block main[dir=rtl] .zoom-button {
  align-items: flex-start;
}

calcite-block calcite-button.zoom-button[color=light] {
  --calcite-button-light: transparent;
  --calcite-button-light-hover: #f3f3f3;
}

calcite-block calcite-button.zoom-button[color=dark] {
  --calcite-button-dark: transparent;
  --calcite-button-dark-hover: #353535;
}

/*Esri widget overwrites */
.esri-legend--card__service,
.esri-legend--card__section {
  border: none;
}

.esri-legend--card__section {
  border: none;
  border-right: 1px solid rgba(110, 110, 110, 0.3);
  border-left: 1px solid rgba(110, 110, 110, 0.3);
}

.esri-legend--card__section:first-child {
  border-right: 1px solid rgba(110, 110, 110, 0.3);
  border-left: none;
}

.esri-legend--card__section:last-child {
  border-left: 1px solid rgba(110, 110, 110, 0.3);
  border-right: none;
}

.esri-view {
  width: 100%;
  height: 100%;
}

/* Mobile Styles */
.desktop-shell-panel {
  display: flex;
}

.mobile-shell-panel {
  display: none;
}

@media only screen and (max-width: 700px) {
  .panel-open .media-splash-panel {
    max-height: 42%;
  }
  .desktop-shell-panel {
    display: none;
  }
  .mobile-shell-panel {
    display: block;
  }
  .embed-app__view-container {
    height: calc(100% - 60px);
  }
  .embed-app__view-container.no-mobile {
    height: 100%;
  }
  .no-tools .embed-app__view-container {
    height: 100%;
  }
}
.esri-view-width-less-than-xsmall .esri-attribution,
.esri-view-height-less-than-xsmall .esri-attribution {
  display: none;
}

.mobile-panel-header {
  height: 32px;
  width: 97vw;
  display: flex;
  justify-content: space-between;
}

.mobile-header-label {
  line-height: 32px;
}

.mobile-panel-header h2 {
  font-size: 1.2em;
}

.header-buttons {
  display: inherit;
}

.mobile-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #404040;
  background: #fff;
  border-top: solid 1px #eaeaea;
  overflow: hidden;
}

.mobile-panel.dark {
  border-top: solid 1px #000;
  background-color: #404040;
  color: #dfdfdf;
}

.mobile-panel .mobile-block-container {
  overflow-y: auto;
  margin-top: 0;
  max-height: 40vh;
}

.mobile-panel header {
  margin-bottom: 4px;
}

.mobile-panel calcite-block.esri-feature {
  overflow-y: auto;
  height: auto;
}

.mobile-panel .mobile-block-container.full {
  height: calc(100% - 109px);
  max-height: calc(100% - 109px);
  position: fixed;
  top: 47px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  background-color: inherit;
  border-top: solid 1px var(--calcite-ui-border-1);
  border-bottom: solid 1px var(--calcite-ui-border-1);
}

.mobile-panel .mobile-block-container.full .header-container {
  margin-bottom: 0.5em;
}

.mobile-panel calcite-radio-group {
  width: 100%;
  height: 60px;
}

.mobile-panel calcite-radio-group calcite-radio-group-item {
  border: solid 1px var(--calcite-ui-border-1);
  border-right: none;
}

.mobile-panel calcite-radio-group calcite-radio-group-item:first-child {
  border-left: solid 1px var(--calcite-ui-border-1);
}

.mobile-panel calcite-radio-group calcite-radio-group-item:last-child {
  border-right: solid 1px var(--calcite-ui-border-1);
}

.mobile-panel calcite-radio-group calcite-radio-group-item:first-child {
  border-left: none;
}

.mobile-panel calcite-radio-group calcite-radio-group-item:last-child {
  border-right: none;
}

.mobile-panel calcite-radio-group[theme=light] .mobile[checked] {
  border: solid;
  color: #007ac2;
  --calcite-ui-brand: #fff;
  --calcite-ui-background: #007ac2;
}

.mobile-panel calcite-radio-group[theme=dark] .mobile[checked] {
  border: solid;
  color: #75fbfd;
  --calcite-ui-brand: #252525;
  --calcite-ui-background: #75fbfd;
}

.mobile-panel calcite-radio-group calcite-radio-group-item {
  flex: 1;
  justify-content: center;
  margin-top: 0;
}

.mobile-panel calcite-radio-group label {
  vertical-align: super;
  padding-left: 5px;
  padding-right: 5px;
}

.mobile-panel calcite-action-bar {
  border-right-width: 0;
  border-left-width: 0;
}

.mobile-panel calcite-action-pad,
.mobile-panel calcite-action-group {
  display: flex;
  flex-direction: row;
  max-width: 100%;
  width: 100%;
}

.mobile-panel calcite-action-pad calcite-action,
.mobile-panel calcite-action-group calcite-action {
  flex: 1;
  justify-content: center;
}

/*Horizontal Layout styles */
.horizontal .esri-ui-bottom-left {
  left: 35px;
}

.horizontal .feature-table-layer-panel {
  bottom: 40%;
  max-height: calc(100vh - 38%);
}

calcite-shell[theme=dark] calcite-shell-panel.horizontal {
  background: #242424;
}

calcite-shell[theme=light] calcite-shell-panel.horizontal {
  background: #fff;
}

calcite-shell-panel.horizontal {
  background: transparent;
  position: absolute;
  bottom: 14px;
  padding-right: 0.25em;
  padding-bottom: 0.25em;
  overflow-y: auto;
  overflow-x: hidden;
  height: 38%;
  min-height: 120px;
  width: 100vw;
}

.panel-l calcite-shell-panel.horizontal {
  height: 58%;
}

.panel-s calcite-shell-panel.horizontal {
  height: 28%;
}

calcite-shell-panel.horizontal calcite-action-bar {
  overflow-x: hidden;
}

calcite-shell-panel.horizontal calcite-panel {
  width: calc(100vw - 48px);
  padding: 0;
}

.action-bar-expanded calcite-shell-panel.horizontal calcite-panel {
  width: calc(100vw - 117px);
}

calcite-shell-panel.horizontal[collapsed] {
  width: auto;
  overflow-x: hidden;
}

calcite-shell-panel.horizontal[collapsed] calcite-panel {
  width: 0;
}

calcite-shell-panel.horizontal[collapsed] {
  overflow: hidden;
}

calcite-shell-panel.horizontal .popup-container {
  width: calc(100% - 0.5em);
  overflow-y: auto;
}

calcite-shell-panel.horizontal[slot=contextual-panel] {
  right: 0;
}

calcite-shell-panel.horizontal .content {
  height: 100%;
}

calcite-shell-panel.horizontal .esri-feature.esri-widget {
  width: intrinsic;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  height: 100%;
  overflow-y: auto;
}

calcite-shell-panel.horizontal .esri-legend--card {
  flex-flow: row wrap;
}

calcite-shell-panel.horizontal .esri-legend--card__section:only-child {
  border: none;
}

calcite-shell-panel.horizontal .esri-legend--card__service,
calcite-shell-panel.horizontal .esri-legend--card__section {
  width: intrinsic;
  width: -moz-fit-content;
  width: -webkit-fit-content;
}

calcite-shell-panel.horizontal .esri-legend--card__service-caption-container {
  border-bottom: none;
}

calcite-shell-panel.horizontal .content {
  overflow-y: auto;
}

.horizontal .esri-scale-bar {
  margin-left: 20px;
}

/*Esri widget customizations*/
/*rtl updates */
html[dir=rtl] {
  overflow-x: hidden;
}

html[dir=rtl] main h1 {
  margin-right: 15px;
}

html[dir=rtl] .esri-editor__title {
  text-align: left;
}

.esri-feature {
  box-shadow: none;
}

.panel-action {
  cursor: pointer;
  background: transparent;
  border: none;
  vertical-align: middle;
}

.panel-action.dark:hover {
  background-color: #353535;
}

.panel-action.dark {
  color: #9f9f9f;
}

.panel-action {
  margin-right: 5px;
}

.esri-screenshot__screenshot-button-container {
  background-color: #007ac2;
  color: #fff;
}

calcite-button.zoom-button[color=dark]:focus {
  outline: 1px solid #75fbfd;
}

calcite-button.zoom-button[color=light]:focus {
  outline: 1px solid -webkit-focus-ring-color;
  outline-offset: 2px;
}

.app-error {
  position: absolute;
  top: 30%;
  width: 100%;
  text-align: center;
}

.app-error details,
.app-error summary {
  display: revert;
}

.esri-sidebar-ga-alert-button {
  float: right;
}

main[dir=rtl] .esri-sidebar-ga-alert-button {
  float: left;
}

.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.esri-filter-list__reset-btn {
  width: 80% !important;
  padding: 0 !important;
}

.esri-filter-list__filter-container > div:nth-child(2) {
  min-height: 25vh;
}

.esri-filter-list__filter-item-container {
  border: none !important;
}

.esri-filter-list__reset-btn calcite-button {
  width: 100% !important;
}

.esri-filter-list__reset-container {
  justify-content: center !important;
  margin-top: 1em;
}

.esri-filter-list__header-container {
  display: none !important;
}

.esri-filter-list__filter-item-container--user-input {
  height: fit-content;
}

.esri-filter-list__filter-container,
.filter-panel {
  height: 100vh;
  min-height: 80vh;
  background: #fff !important;
}

.calcite-theme-dark .filter-panel,
.calcite-theme-dark .esri-filter-list__filter-container {
  background: #353535 !important;
}

.esri-screenshot {
  padding-top: 1%;
}

.esri-screenshot .esri-screenshot__main-container {
  padding: 1% 5% 6%;
  width: 100%;
}

.esri-screenshot .esri-screenshot__main-container .esri-screenshot__panel-title {
  font-size: 1.2rem;
  padding-top: 3%;
}

.esri-screenshot .esri-screenshot__main-container .esri-screenshot__panel-subtitle {
  font-size: 1.1em;
  color: #999;
  margin-top: 5%;
  margin-bottom: 5%;
}

.esri-screenshot .esri-screenshot__main-container .esri-screenshot__screenshot-option {
  font-size: 1.2rem;
  margin-bottom: 4%;
}

.esri-screenshot .esri-screenshot__main-container .esri-screenshot__screenshot-option:last-child {
  margin-bottom: 0;
}

.esri-screenshot .esri-screenshot__main-container .esri-screenshot__screenshot-button-container {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.esri-screenshot .esri-screenshot__main-container .esri-screenshot__screenshot-button-container button {
  width: 100%;
}

.esri-screenshot .esri-screenshot__btn {
  transition: background-color 200ms linear;
  transition-property: background-color;
  transition-duration: 200ms;
  transition-timing-function: linear;
  transition-delay: initial;
  border: 0;
  display: inline-block;
  width: 32px;
  height: 32px;
}

.esri-screenshot .esri-screenshot__btn span {
  position: relative;
  right: 8px;
}

.esri-screenshot--pointer {
  opacity: 1;
}

.esri-screenshot--pointer:hover {
  cursor: pointer;
}

.esri-screenshot--disabled {
  opacity: 0.55;
}

.esri-screenshot--disabled:hover {
  cursor: not-allowed;
}

.esri-screenshot__feature-warning {
  height: 15px;
  margin-top: 2%;
  margin-bottom: 2%;
}

.esri-screenshot__feature-warning .esri-screenshot__feature-warning-text-container {
  display: flex;
}

.esri-screenshot__feature-warning .esri-screenshot__feature-warning-text-container .esri-screenshot__warning-svg {
  fill: #d9bf2b;
}

.esri-screenshot__feature-warning .esri-screenshot__feature-warning-text-container .esri-screenshot__select-feature-text {
  padding-left: 5px;
  font-weight: 501;
}

.esri-screenshot__select-layout {
  display: block;
}

.esri-screenshot__select-layout span {
  font-size: 0.9rem;
}

.esri-screenshot__select-layout select {
  position: relative;
  display: block;
  height: 2.25rem;
  width: 100%;
  max-width: 100%;
  margin: 0.25rem 0 0 0;
  padding: 0 0.3rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  color: #4c4c4c;
  background-color: #fff;
  border: 1px solid #a9a9a9;
  border-radius: 0;
  -webkit-transition: border-color 150ms linear;
  transition: border-color 150ms linear;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  letter-spacing: 0em;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  appearance: none;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjQsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMTAwcHgiIGhlaWdodD0iMTAwcHgiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAgMTAwIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnPg0KCTxwYXRoIGZpbGw9IiM1OTU5NTkiIGQ9Ik03NS43NDksMzcuNDY2YzAuNDI1LDAuNDI1LDAuNTUyLDEuMDYzLDAuMzIyLDEuNjE4Qzc1Ljg0MSwzOS42MzksNzUuMzAxLDQwLDc0LjY5OSw0MGgtNDkuNA0KCQljLTAuNiwwLTEuMTQzLTAuMzYyLTEuMzcyLTAuOTE3Yy0wLjIzLTAuNTU1LTAuMTAzLTEuMTkzLDAuMzIyLTEuNjE4bDIzLjQ0LTIzLjQ0YzEuMjc2LTEuMjc2LDMuMzQzLTEuMjc2LDQuNjIsMEw3NS43NDksMzcuNDY2DQoJCUw3NS43NDksMzcuNDY2eiBNMjQuMjUsNjIuNTM0Yy0wLjQyNi0wLjQyNS0wLjU1My0xLjA2My0wLjMyMy0xLjYxOGMwLjIzLTAuNTU1LDAuNzctMC45MTYsMS4zNy0wLjkxNkg3NC43DQoJCWMwLjYwMiwwLDEuMTQzLDAuMzU5LDEuMzczLDAuOTE2YzAuMjMsMC41NTUsMC4xMDMsMS4xOTMtMC4zMjIsMS42MThMNTIuMzEsODUuOTc3Yy0xLjI3NSwxLjI3NS0zLjM0NCwxLjI3NC00LjYyLDBMMjQuMjUsNjIuNTM0eg0KCQkiLz4NCjwvZz4NCjwvc3ZnPg0K);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 0.9rem;
  padding-right: 1.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.esri-screenshot__field-set-checkbox {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.esri-screenshot__action-btn {
  padding: 0.6em;
  border: 1px solid #0079c1;
  text-align: center;
  background-color: white;
  cursor: pointer;
  margin: 5px;
}

.esri-screenshot__action-btn:hover,
.esri-screenshot__action-btn:focus {
  background: #0079c1;
  color: white;
}

.esri-screenshot__js-screenshot-image {
  width: 100%;
  background-color: #fff;
}

.esri-screenshot__screenshot-div {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  overflow-y: hidden;
  text-align: center;
  background: rgba(0, 0, 0, 0.75);
  transition: visibility 0ms linear 300ms, opacity 300ms cubic-bezier(0.215, 0.44, 0.42, 0.88);
  z-index: 101;
}

.esri-screenshot__btn:disabled {
  opacity: 0.8;
}

.esri-screenshot__mask-div {
  position: fixed;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  overflow-y: hidden;
  text-align: center;
  background: rgba(0, 0, 0, 0.55);
  transition: visibility 0ms linear 300ms, opacity 300ms cubic-bezier(0.215, 0.44, 0.42, 0.88);
  z-index: 101;
}

.esri-screenshot--hide.esri-screenshot__mask-div {
  display: none;
}

.esri-screenshot--hide-overlay {
  opacity: 0;
  visibility: hidden;
}

.esri-screenshot--show-overlay {
  visibility: visible;
  opacity: 1;
}

.esri-screenshot__screenshot-img-container {
  max-height: 75vh;
  max-width: 80vw;
  overflow-y: auto;
  margin-bottom: 8px;
}

.esri-screenshot__js-screenshot-image {
  border: 10px solid white;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.5);
}

.esri-screenshot__screenshot-div > * {
  margin: 0.5em;
}

.esri-screenshot__cursor {
  cursor: crosshair;
}

.esri-screenshot__action-btn:hover,
.esri-screenshot__action-btn:focus {
  background: #0079c1;
  color: white;
}

.icon-ui-media {
  position: relative;
  left: 4px;
  top: 1px;
}

main[dir=rtl] .icon-ui-media {
  left: -6px;
}

.esri-screenshot__offscreen-pop-up-container {
  position: absolute;
  top: -99999px;
  left: -99999px;
  width: 400px;
}

.esri-screenshot__offscreen-pop-up-container .esri-feature__media-container {
  height: auto;
  width: auto;
}

.esri-screenshot__offscreen-pop-up-container .esri-feature__media-container .esri-feature__media-chart {
  height: 100%;
  width: 65%;
}

.esri-screenshot__close-button-container {
  width: 32px;
  height: 32px;
  border: none;
  background-color: #fff;
}

.esri-screenshot__close-button-container .esri-screenshot__close-button {
  font-size: 14px;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  transition: background-color 125ms ease-in-out;
}

.esri-screenshot__close-button-container .esri-screenshot__close-button:hover {
  cursor: pointer;
}

.esri-screenshot__offscreen-legend-container {
  position: absolute;
  top: -99999px;
  left: -99999px;
  width: 400px;
}

.esri-widget.esri-legend.esri-screenshot__offscreen-legend-container {
  max-height: none;
}

.media-splash-panel calcite-modal {
  margin: 1em;
}

.splash-agree-label {
  float: right;
}

html[dir=rtl] .splash-agree-label {
  float: left;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .esri-screenshot__screenshot-img-container {
    max-width: 85vw;
  }
  .esri-screenshot__screenshot-img-container .esri-screenshot__js-screenshot-image {
    width: 50%;
  }
}
.esri-filter-list calcite-accordion {
  border: 1px solid #d9dada;
}

.esri-filter-list__reset-btn {
  width: 162px;
  padding: 20px;
}

.esri-filter-list__optional-btn {
  width: 100%;
  padding: 20px;
  display: flex;
}

.esri-filter-list__optional-btn calcite-button {
  width: 100%;
}

.esri-filter-list__optional-btn > calcite-button:first-of-type {
  margin-right: 6px;
}

.calcite-theme-dark .esri-filter-list__filter-container {
  background: #363636;
  min-height: 44%;
}

.esri-filter-list__filter-container {
  border: none !important;
}

.esri-filter-list__header-container,
.esri-filter-list__reset-container {
  border: none;
}

.esri-filter-list__header-container > * {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.esri-filter-list__reset-container {
  display: flex;
  justify-content: flex-end;
}

.esri-filter-list__filter-item-container {
  border-bottom: 1px solid #d9dada;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.esri-filter-list__filter-item-container--accordion {
  padding: 20px;
}

.esri-filter-list__filter-item-container--single {
  padding: 20px;
}

.esri-filter-list__filter-item-container--user-input {
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.esri-filter-list__filter-item-container--user-input > span {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: normal;
}

.esri-filter-list__filter-item-container--user-input calcite-combobox {
  width: 100%;
  font-size: 16px;
}

.esri-filter-list__number-input-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.esri-filter-list__number-input-container calcite-slider {
  width: 90%;
}

.esri-filter-list__date-picker-input-container {
  display: flex;
  align-items: center;
  justify-content: unset;
  width: 100%;
}

.esri-filter-list__date-picker-input-container calcite-action {
  height: 64px;
  border: 1px solid var(--calcite-ui-border-1);
}

.esri-filter-list__filter-title {
  margin-right: 20px;
}

.esri-filter-list__filter-title > p {
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

.esri-filter-list__checkbox-container {
  display: flex;
}

.esri-filter-list__checkbox-container calcite-checkbox {
  height: 18px;
}

.esri-filter-list__operator-description {
  background: white;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  padding: 12px 20px 0 20px;
}

.esri-filter-list.esri-filter-list--light .esri-filter-list__header-container {
  background: #fff;
}

.esri-filter-list.esri-filter-list--light .esri-filter-list__reset-container {
  background: #fff !important;
}

.esri-filter-list.esri-filter-list--light .esri-filter-list__filter-item-container {
  background: #fff;
}

.esri-filter-list.esri-filter-list--light .esri-filter-list__select {
  background: #fff !important;
  border: 1px solid #a9a9a9 !important;
  color: #4c4c4c !important;
}

.esri-filter-list.esri-filter-list--dark .esri-filter-list__header-container {
  background: #2b2b2b;
  color: #fff;
}

.esri-filter-list.esri-filter-list--dark .esri-filter-list__reset-container {
  background: #353535;
}

.esri-filter-list.esri-filter-list--dark .esri-filter-list__filter-item-container {
  background: #353535;
}

.esri-filter-list.esri-filter-list--dark .esri-filter-list__select {
  background: #2b2b2b;
  border: 1px solid #4a4a4a;
  color: #fff;
}

.esri-filter-list.esri-filter-list--dark .esri-filter-list__operator-description {
  background: #353535;
}

.image {
  margin: 0;
}
.image img {
  width: inherit;
}

.desktop-shell-panel {
  z-index: 0;
}

.calcite-theme-dark .esri-scale-bar.esri-widget {
  opacity: 0.8;
  background: #242424;
}

.calcite-theme-light .esri-scale-bar.esri-widget {
  opacity: 0.8;
  background: #fff;
}

calcite-tab calcite-modal {
  position: absolute;
}

:any-link {
  color: var(--calcite-ui-text-link);
}

.calcite-theme-dark .esri-attribution__link {
  color: #d1d1d1;
}

.calcite-theme-light .esri-attribution__link {
  color: #323232;
}

.network-icon svg {
  width: 16px;
  height: 16px;
}
.network-icon svg path {
  color: var(--calcite-ui-icon-color);
}

.mobile-panel .mobile[checked] .network-icon svg {
  fill: #007ac2;
}

.mobile-panel.dark .network-icon svg {
  fill: #dfdfdf;
}
.mobile-panel.dark .mobile-panel .mobile[checked] .network-icon svg {
  fill: #75fbfd;
}

.feature-table-layer-panel,
.manual-feature-table {
  display: block;
  max-height: fit-content;
  position: fixed;
  left: 0px;
  right: 0px;
  bottom: 20px;
  z-index: 2;
  margin-left: 0;
}

.esri-feature-table {
  height: 300px;
}

.radio-group-item-icon {
  margin-inline-end: 0;
  margin-inline-start: 0;
}

/*Horizontal Layout styles */
.horizontal .esri-ui-bottom-left {
  left: 35px;
}

calcite-shell[theme=dark] calcite-shell-panel.horizontal {
  background: #242424;
}

calcite-shell[theme=light] calcite-shell-panel.horizontal {
  background: #fff;
}

calcite-shell-panel.horizontal {
  background: transparent;
  position: absolute;
  bottom: 14px;
  padding-right: 0.25em;
  padding-bottom: 0.25em;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 38%;
  width: 100vw;
  z-index: 100;
}
calcite-shell-panel.horizontal calcite-action-bar {
  overflow-x: hidden;
  width: auto;
}
calcite-shell-panel.horizontal[collapsed] {
  width: auto;
  min-width: 48px;
  overflow-x: hidden;
}
calcite-shell-panel.horizontal[collapsed] calcite-panel {
  width: 0;
}
calcite-shell-panel.horizontal .popup-container {
  width: calc(100% - 0.5em);
  overflow-y: auto;
}
calcite-shell-panel.horizontal .content {
  height: 100%;
}
calcite-shell-panel.horizontal .esri-feature.esri-widget {
  width: intrinsic;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  height: 100%;
  overflow-y: auto;
}
calcite-shell-panel.horizontal .esri-legend--card {
  flex-flow: row wrap;
}
calcite-shell-panel.horizontal .esri-legend--card__section:only-child {
  border: none;
}
calcite-shell-panel.horizontal .esri-legend--card__service,
calcite-shell-panel.horizontal .esri-legend--card__section {
  width: intrinsic;
  width: -moz-fit-content;
  width: -webkit-fit-content;
}
calcite-shell-panel.horizontal .esri-legend--card__service-caption-container {
  border-bottom: none;
}
calcite-shell-panel.horizontal .content {
  overflow-y: auto;
}

.esri-splash-button {
  border: none;
}

calcite-modal.media-splash-panel calcite-button {
  margin: 1em;
}

.esri-widget__heading {
  font-weight: 400;
  font-size: var(--calcite-font-size--1);
}

.export-pdf-popover {
  padding: 1em;
  margin: 0 1em;
  min-width: 200px;
}

.popover-component > calcite-popover {
  margin-right: 40px !important;
}

.pdf-icon {
  color: #6e6e6e;
}

.calcite-theme-dark .pdf-icon {
  color: #adadad;
}

.disable-snap .esri-editor__panel-toolbar__snapping-button {
  display: none;
}

.esri-page {
  position: relative;
  z-index: 501;
}

.panel-start .esri-page__back-to-cover-page {
  left: unset;
  right: 2%;
}

.panel-end .esri-page__back-to-cover-page {
  left: 2%;
  right: unset;
}

[dir=rtl] .panel-end .esri-page__back-to-cover-page {
  left: unset;
  right: 2%;
}

[dir=rtl] .panel-start .esri-page__back-to-cover-page {
  left: 2%;
  right: unset;
}

#measureExpand_controls_content > calcite-panel > div.esri-measurement > div {
  width: 320px !important;
}

.measurement-panel calcite-action-bar {
  width: 320px !important;
  justify-content: space-evenly;
}

.calcite-theme-dark .measurement-panel calcite-action-bar {
  background-color: #242424 !important;
}

.calcite-theme-light .measurement-panel calcite-action-bar {
  background-color: #fff !important;
}

.calcite-theme-dark calcite-panel .esri-widget,
.calcite-theme-dark calcite-panel .esri-widget .esri-layer-list__item {
  background-color: var(--calcite-ui-background);
}

.custom-header-actions {
  position: absolute;
  right: 0;
  top: 0;
  line-height: 68px;
}

[dir=rtl] .custom-header-actions {
  position: absolute;
  right: unset;
  left: 0;
  top: 0;
  line-height: 68px;
}

.shortcuts-base {
  overflow: auto;
}

calcite-block.keyboard-shortcuts {
  width: max-content;
  max-height: 400px;
  overflow: auto;
  padding: 1.5em;
  margin-bottom: 0;
}

.shortcuts-space {
  margin-bottom: 1em;
}

table.shortcuts {
  border-collapse: collapse;
  width: 100%;
}

table.shortcuts tr {
  background-color: #ffffff;
}

table.shortcuts td:nth-child(1) {
  color: #4a4a4a;
}

table.shortcuts td:nth-child(2) {
  color: #151515;
}

table.shortcuts td,
table.shortcuts th {
  border: 1px solid #eaeaea;
  border-radius: 3px;
  padding: 0.5rem 0.75rem 0.5rem 0.75rem;
}

table.shortcuts tr:nth-child(even) {
  background-color: #f8f8f8;
}

table.shortcuts tr {
  background-color: #ffffff;
}

.calcite-theme-dark table.shortcuts tr {
  background-color: #4a4a4a;
}
.calcite-theme-dark table.shortcuts td:nth-child(1),
.calcite-theme-dark table.shortcuts td:nth-child(2),
.calcite-theme-dark table.shortcuts td:nth-child(1),
.calcite-theme-dark table.shortcuts td:nth-child(2) {
  color: #fff;
}
.calcite-theme-dark table.shortcuts td,
.calcite-theme-dark table.shortcuts th {
  border: 1px solid #4a4a4a;
}
.calcite-theme-dark table.shortcuts tr:nth-child(even) {
  background-color: #4a4a4a;
}
.calcite-theme-dark table.shortcuts tr {
  background-color: #1c1c1c;
}

.custom-keyboard-icon {
  position: absolute;
  width: 16px;
  height: 16px;
}

.custom-keyboard-icon:before {
  width: 16px;
  height: 16px;
  content: url(../assets/keyboard-16.svg);
}

.calcite-theme-dark .custom-keyboard-icon:before {
  filter: invert(0.7);
}

.dark .keyboard-base {
  background-color: rgb(36, 36, 36);
  color: rgb(237, 237, 237);
}

.esri-screenshot {
  padding-top: 1%;
}
.esri-screenshot .esri-screenshot__main-container {
  padding: 1% 5% 6%;
  width: 100%;
}
.esri-screenshot .esri-screenshot__main-container .esri-screenshot__panel-title {
  font-size: 1.2rem;
  padding-top: 3%;
}
.esri-screenshot .esri-screenshot__main-container .esri-screenshot__panel-subtitle {
  font-size: 1.1em;
  color: #999;
  margin-top: 5%;
  margin-bottom: 5%;
}
.esri-screenshot .esri-screenshot__main-container .esri-screenshot__screenshot-option {
  font-size: 1.2rem;
  margin-bottom: 4%;
}
.esri-screenshot .esri-screenshot__main-container .esri-screenshot__screenshot-option:last-child {
  margin-bottom: 0;
}
.esri-screenshot .esri-screenshot__main-container .esri-screenshot__screenshot-button-container {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.esri-screenshot .esri-screenshot__main-container .esri-screenshot__screenshot-button-container button {
  width: 100%;
}
.esri-screenshot .esri-screenshot__btn {
  transition: background-color 200ms linear;
  transition-property: background-color;
  transition-duration: 200ms;
  transition-timing-function: linear;
  transition-delay: initial;
  border: 0;
  display: inline-block;
  width: 32px;
  height: 32px;
}
.esri-screenshot .esri-screenshot__btn span {
  position: relative;
  right: 8px;
}

.esri-screenshot--pointer {
  opacity: 1;
}

.esri-screenshot--pointer:hover {
  cursor: pointer;
}

.esri-screenshot--disabled {
  opacity: 0.55;
}

.esri-screenshot--disabled:hover {
  cursor: not-allowed;
}

.esri-screenshot__feature-warning {
  margin-top: 2%;
  margin-bottom: 2%;
}
.esri-screenshot__feature-warning .esri-screenshot__feature-warning-text-container {
  display: flex;
  align-items: center;
}
.esri-screenshot__feature-warning .esri-screenshot__feature-warning-text-container .esri-screenshot__warning-svg {
  fill: #d9bf2b;
}
.esri-screenshot__feature-warning .esri-screenshot__feature-warning-text-container .esri-screenshot__select-feature-text {
  padding-left: 5px;
  font-weight: 501;
}

.esri-screenshot__select-layout {
  display: block;
}
.esri-screenshot__select-layout span {
  font-size: 0.9rem;
}
.esri-screenshot__select-layout select {
  position: relative;
  display: block;
  height: 2.25rem;
  width: 100%;
  max-width: 100%;
  margin: 0.25rem 0 0 0;
  padding: 0 0.3rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  color: #4c4c4c;
  background-color: #fff;
  border: 1px solid #a9a9a9;
  border-radius: 0;
  -webkit-transition: border-color 150ms linear;
  transition: border-color 150ms linear;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  letter-spacing: 0em;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjQsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMTAwcHgiIGhlaWdodD0iMTAwcHgiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAgMTAwIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnPg0KCTxwYXRoIGZpbGw9IiM1OTU5NTkiIGQ9Ik03NS43NDksMzcuNDY2YzAuNDI1LDAuNDI1LDAuNTUyLDEuMDYzLDAuMzIyLDEuNjE4Qzc1Ljg0MSwzOS42MzksNzUuMzAxLDQwLDc0LjY5OSw0MGgtNDkuNA0KCQljLTAuNiwwLTEuMTQzLTAuMzYyLTEuMzcyLTAuOTE3Yy0wLjIzLTAuNTU1LTAuMTAzLTEuMTkzLDAuMzIyLTEuNjE4bDIzLjQ0LTIzLjQ0YzEuMjc2LTEuMjc2LDMuMzQzLTEuMjc2LDQuNjIsMEw3NS43NDksMzcuNDY2DQoJCUw3NS43NDksMzcuNDY2eiBNMjQuMjUsNjIuNTM0Yy0wLjQyNi0wLjQyNS0wLjU1My0xLjA2My0wLjMyMy0xLjYxOGMwLjIzLTAuNTU1LDAuNzctMC45MTYsMS4zNy0wLjkxNkg3NC43DQoJCWMwLjYwMiwwLDEuMTQzLDAuMzU5LDEuMzczLDAuOTE2YzAuMjMsMC41NTUsMC4xMDMsMS4xOTMtMC4zMjIsMS42MThMNTIuMzEsODUuOTc3Yy0xLjI3NSwxLjI3NS0zLjM0NCwxLjI3NC00LjYyLDBMMjQuMjUsNjIuNTM0eg0KCQkiLz4NCjwvZz4NCjwvc3ZnPg0K);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 0.9rem;
  padding-right: 1.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.esri-screenshot__field-set-checkbox {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.esri-screenshot__action-btn {
  padding: 0.6em;
  border: 1px solid #0079c1;
  text-align: center;
  background-color: white;
  cursor: pointer;
  margin: 5px;
}

.esri-screenshot__action-btn:hover,
.esri-screenshot__action-btn:focus {
  background: #0079c1;
  color: white;
}

.esri-screenshot__js-screenshot-image {
  max-width: 100%;
  width: auto;
  background-color: #fff;
}

.esri-screenshot__screenshot-div {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  overflow-y: hidden;
  text-align: center;
  background: rgba(0, 0, 0, 0.75);
  transition: visibility 0ms linear 300ms, opacity 300ms cubic-bezier(0.215, 0.44, 0.42, 0.88);
  z-index: 101;
}

.esri-screenshot__btn:disabled {
  opacity: 0.8;
}

.esri-screenshot__mask-div {
  position: fixed;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  overflow-y: hidden;
  text-align: center;
  background: rgba(0, 0, 0, 0.55);
  transition: visibility 0ms linear 300ms, opacity 300ms cubic-bezier(0.215, 0.44, 0.42, 0.88);
  z-index: 101;
}

.esri-screenshot--hide.esri-screenshot__mask-div {
  display: none;
}

.esri-screenshot--hide-overlay {
  opacity: 0;
  visibility: hidden;
}

.esri-screenshot--show-overlay {
  visibility: visible;
  opacity: 1;
}

.esri-screenshot__screenshot-img-container {
  max-height: 75vh;
  max-width: 80vw;
  overflow-y: auto;
  margin-bottom: 8px;
}

.esri-screenshot__js-screenshot-image {
  border: 10px solid white;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.5);
}

.esri-screenshot__screenshot-div > * {
  margin: 0.5em;
}

.esri-screenshot__cursor {
  cursor: crosshair;
}

.esri-screenshot__action-btn:hover,
.esri-screenshot__action-btn:focus {
  background: #0079c1;
  color: white;
}

.icon-ui-media {
  position: relative;
  left: 4px;
  top: 1px;
}

html[dir=rtl] .icon-ui-media {
  left: -6px;
}

.esri-screenshot__offscreen-pop-up-container {
  position: absolute;
  top: -99999px;
  left: -99999px;
  width: 400px;
}
.esri-screenshot__offscreen-pop-up-container .esri-feature__media-container {
  height: auto;
  width: auto;
}
.esri-screenshot__offscreen-pop-up-container .esri-feature__media-container .esri-feature__media-chart {
  height: 100%;
  width: 65%;
}

.esri-screenshot__close-button-container {
  width: 32px;
  height: 32px;
  border: none;
  background-color: #fff;
}
.esri-screenshot__close-button-container .esri-screenshot__close-button {
  font-size: 14px;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  transition: background-color 125ms ease-in-out;
}
.esri-screenshot__close-button-container .esri-screenshot__close-button:hover {
  cursor: pointer;
}

.esri-screenshot__offscreen-legend-container {
  position: absolute;
  top: -99999px;
  left: -99999px;
  width: 400px;
}

.esri-widget.esri-legend.esri-screenshot__offscreen-legend-container {
  max-height: none;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .esri-screenshot__screenshot-img-container {
    max-width: 85vw;
  }
  .esri-screenshot__screenshot-img-container .esri-screenshot__js-screenshot-image {
    width: 50%;
  }
}
.esri-filter-list calcite-accordion {
  border: 1px solid rgb(217, 218, 218);
}
.esri-filter-list__reset-btn {
  width: 162px;
  padding: 20px;
}
.esri-filter-list__optional-btn {
  width: 100%;
  padding: 20px;
  display: flex;
}
.esri-filter-list__optional-btn calcite-button {
  width: 100%;
}
.esri-filter-list__optional-btn > calcite-button:first-of-type {
  margin-right: 6px;
}
.esri-filter-list__filter-container {
  height: 100%;
  border: 1px solid rgb(217, 218, 218);
  box-sizing: border-box;
  background: #f4f3f4;
}
.esri-filter-list__header-container {
  padding: 20px;
  border-bottom: 1px solid rgb(217, 218, 218);
  display: flex;
  justify-content: space-between;
}
.esri-filter-list__header-container > * {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
.esri-filter-list__reset-container {
  display: flex;
  justify-content: flex-end;
}
.esri-filter-list__filter-item-container {
  border-bottom: 1px solid rgb(217, 218, 218);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.esri-filter-list__filter-item-container--accordion {
  padding: 20px;
}
.esri-filter-list__filter-item-container--single {
  padding: 20px;
}
.esri-filter-list__filter-item-container--user-input {
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.esri-filter-list__filter-item-container--user-input > span {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: normal;
}
.esri-filter-list__filter-item-container--user-input calcite-combobox {
  width: 100%;
  font-size: 16px;
}
.esri-filter-list__number-input-container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.esri-filter-list__number-input-container calcite-slider {
  width: 90%;
}
.esri-filter-list__date-picker-input-container {
  display: flex;
  align-items: center;
  justify-content: unset;
  width: 100%;
}
.esri-filter-list__date-picker-input-container calcite-action {
  height: 48px;
  border: 1px solid var(--calcite-ui-border-1);
}
.esri-filter-list__filter-title {
  margin-right: 20px;
}
.esri-filter-list__filter-title > p {
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}
.esri-filter-list__checkbox-container {
  display: flex;
}
.esri-filter-list__checkbox-container calcite-checkbox {
  height: 18px;
}
.esri-filter-list__operator-description {
  background: white;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  padding: 12px 20px 0 20px;
}
.esri-filter-list.esri-filter-list--light .esri-filter-list__header-container {
  background: #fff;
}
.esri-filter-list.esri-filter-list--light .esri-filter-list__reset-container {
  background: rgb(244, 243, 244);
}
.esri-filter-list.esri-filter-list--light .esri-filter-list__filter-item-container {
  background: #fff;
}
.esri-filter-list.esri-filter-list--light .esri-filter-list__select {
  background: #fff !important;
  border: 1px solid #a9a9a9 !important;
  color: #4c4c4c !important;
}
.esri-filter-list.esri-filter-list--dark .esri-filter-list__header-container {
  background: #2b2b2b;
  color: #fff;
}
.esri-filter-list.esri-filter-list--dark .esri-filter-list__reset-container {
  background: #353535;
}
.esri-filter-list.esri-filter-list--dark .esri-filter-list__filter-item-container {
  background: #353535;
}
.esri-filter-list.esri-filter-list--dark .esri-filter-list__select {
  background: #2b2b2b;
  border: 1px solid #4a4a4a;
  color: #fff;
}
.esri-filter-list.esri-filter-list--dark .esri-filter-list__operator-description {
  background: #353535;
}
