@-webkit-keyframes in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes in-down {
  0% {
    opacity: 0;
    -webkit-transform: translate3D(0, -5px, 0);
    transform: translate3D(0, -5px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3D(0, 0, 0);
    transform: translate3D(0, 0, 0);
  }
}
@keyframes in-down {
  0% {
    opacity: 0;
    -webkit-transform: translate3D(0, -5px, 0);
    transform: translate3D(0, -5px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3D(0, 0, 0);
    transform: translate3D(0, 0, 0);
  }
}
@-webkit-keyframes in-up {
  0% {
    opacity: 0;
    -webkit-transform: translate3D(0, 5px, 0);
    transform: translate3D(0, 5px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3D(0, 0, 0);
    transform: translate3D(0, 0, 0);
  }
}
@keyframes in-up {
  0% {
    opacity: 0;
    -webkit-transform: translate3D(0, 5px, 0);
    transform: translate3D(0, 5px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3D(0, 0, 0);
    transform: translate3D(0, 0, 0);
  }
}
@-webkit-keyframes in-scale {
  0% {
    opacity: 0;
    -webkit-transform: scale3D(0.95, 0.95, 1);
    transform: scale3D(0.95, 0.95, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
}
@keyframes in-scale {
  0% {
    opacity: 0;
    -webkit-transform: scale3D(0.95, 0.95, 1);
    transform: scale3D(0.95, 0.95, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
}
:root {
  --calcite-animation-timing:calc(150ms * var(--calcite-internal-duration-factor));
  --calcite-internal-duration-factor:var(--calcite-duration-factor, 1);
  --calcite-internal-animation-timing-fast:calc(100ms * var(--calcite-internal-duration-factor));
  --calcite-internal-animation-timing-medium:calc(200ms * var(--calcite-internal-duration-factor));
  --calcite-internal-animation-timing-slow:calc(300ms * var(--calcite-internal-duration-factor));
}

.calcite-animate {
  opacity: 0;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: var(--calcite-animation-timing);
  animation-duration: var(--calcite-animation-timing);
}

.calcite-animate__in {
  -webkit-animation-name: in;
  animation-name: in;
}

.calcite-animate__in-down {
  -webkit-animation-name: in-down;
  animation-name: in-down;
}

.calcite-animate__in-up {
  -webkit-animation-name: in-up;
  animation-name: in-up;
}

.calcite-animate__in-scale {
  -webkit-animation-name: in-scale;
  animation-name: in-scale;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --calcite-internal-duration-factor:0.01;
  }
}
:root {
  --calcite-floating-ui-transition:var(--calcite-animation-timing);
}

:host([hidden]) {
  display: none;
}

:root {
  --calcite-code-family:"Consolas", "Andale Mono", "Lucida Console", "Monaco", monospace;
  --calcite-sans-family:"Avenir Next", "Avenir", "Helvetica Neue", sans-serif;
  --calcite-font-size--3:0.625rem;
  --calcite-font-size--2:0.75rem;
  --calcite-font-size--1:0.875rem;
  --calcite-font-size-0:1rem;
  --calcite-font-size-1:1.125rem;
  --calcite-font-size-2:1.25rem;
  --calcite-font-size-3:1.625rem;
  --calcite-font-size-4:2rem;
  --calcite-font-size-5:2.5rem;
  --calcite-font-size-6:3rem;
  --calcite-font-size-7:3.5rem;
  --calcite-font-size-8:4rem;
  --calcite-font-weight-light:300;
  --calcite-font-weight-normal:400;
  --calcite-font-weight-medium:500;
  --calcite-font-weight-bold:600;
  --calcite-ui-brand:#007ac2;
  --calcite-ui-brand-hover:#00619B;
  --calcite-ui-brand-press:#004874;
  --calcite-ui-background:#f8f8f8;
  --calcite-ui-foreground-1:#ffffff;
  --calcite-ui-foreground-2:#f3f3f3;
  --calcite-ui-foreground-3:#eaeaea;
  --calcite-ui-text-1:#151515;
  --calcite-ui-text-2:#4a4a4a;
  --calcite-ui-text-3:#6a6a6a;
  --calcite-ui-text-inverse:#FFFFFF;
  --calcite-ui-text-link:#00619b;
  --calcite-ui-border-1:#cacaca;
  --calcite-ui-border-2:#d4d4d4;
  --calcite-ui-border-3:#dfdfdf;
  --calcite-ui-border-input:#949494;
  --calcite-ui-info:#00619b;
  --calcite-ui-success:#35ac46;
  --calcite-ui-warning:#edd317;
  --calcite-ui-danger:#D83020;
  --calcite-ui-danger-hover:#A82B1E;
  --calcite-ui-danger-press:#7C1D13;
  --calcite-theme-name:"light";
  --calcite-ui-foreground-current:#c7eaff;
  --calcite-ui-inverse:#353535;
  --calcite-ui-inverse-hover:#2b2b2b;
  --calcite-ui-inverse-press:#202020;
  --calcite-alert-dismiss-progress-background:rgba(255, 255, 255, 0.8);
  --calcite-button-transparent-hover:rgba(0, 0, 0, 0.05);
  --calcite-button-transparent-press:rgba(0, 0, 0, 0.08);
  --calcite-link-blue-underline:rgba(0, 97, 155, 0.4);
  --calcite-scrim-background:rgba(255, 255, 255, 0.85);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --calcite-border-radius:4px;
  --calcite-border-radius-base:0;
  --calcite-ui-opacity-disabled:0.5;
  --calcite-panel-width-multiplier:1;
  --calcite-ui-icon-color:currentColor;
  font-family: var(--calcite-sans-family);
}

.calcite-theme-dark {
  --calcite-ui-brand:#009AF2;
  --calcite-ui-brand-hover:#007AC2;
  --calcite-ui-brand-press:#00619B;
  --calcite-ui-background:#353535;
  --calcite-ui-foreground-1:#2b2b2b;
  --calcite-ui-foreground-2:#202020;
  --calcite-ui-foreground-3:#151515;
  --calcite-ui-text-1:#ffffff;
  --calcite-ui-text-2:#bfbfbf;
  --calcite-ui-text-3:#9f9f9f;
  --calcite-ui-text-inverse:#151515;
  --calcite-ui-text-link:#00A0FF;
  --calcite-ui-border-1:#555555;
  --calcite-ui-border-2:#4a4a4a;
  --calcite-ui-border-3:#404040;
  --calcite-ui-border-input:#757575;
  --calcite-ui-info:#00A0FF;
  --calcite-ui-success:#36DA43;
  --calcite-ui-warning:#FFC900;
  --calcite-ui-danger:#FE583E;
  --calcite-ui-danger-hover:#FF0015;
  --calcite-ui-danger-press:#D90012;
  --calcite-theme-name:"dark";
  --calcite-ui-foreground-current:#214155;
  --calcite-ui-inverse:#f8f8f8;
  --calcite-ui-inverse-hover:#ffffff;
  --calcite-ui-inverse-press:#f3f3f3;
  --calcite-alert-dismiss-progress-background:rgba(43, 43, 43, 0.8);
  --calcite-button-transparent-hover:rgba(255, 255, 255, 0.05);
  --calcite-button-transparent-press:rgba(255, 255, 255, 0.08);
  --calcite-link-blue-underline:rgba(0, 160, 255, 0.4);
  --calcite-scrim-background:rgba(0, 0, 0, 0.85);
}

.calcite-theme-light {
  --calcite-ui-brand:#007ac2;
  --calcite-ui-brand-hover:#00619B;
  --calcite-ui-brand-press:#004874;
  --calcite-ui-background:#f8f8f8;
  --calcite-ui-foreground-1:#ffffff;
  --calcite-ui-foreground-2:#f3f3f3;
  --calcite-ui-foreground-3:#eaeaea;
  --calcite-ui-text-1:#151515;
  --calcite-ui-text-2:#4a4a4a;
  --calcite-ui-text-3:#6a6a6a;
  --calcite-ui-text-inverse:#FFFFFF;
  --calcite-ui-text-link:#00619b;
  --calcite-ui-border-1:#cacaca;
  --calcite-ui-border-2:#d4d4d4;
  --calcite-ui-border-3:#dfdfdf;
  --calcite-ui-border-input:#949494;
  --calcite-ui-info:#00619b;
  --calcite-ui-success:#35ac46;
  --calcite-ui-warning:#edd317;
  --calcite-ui-danger:#D83020;
  --calcite-ui-danger-hover:#A82B1E;
  --calcite-ui-danger-press:#7C1D13;
  --calcite-theme-name:"light";
  --calcite-ui-foreground-current:#c7eaff;
  --calcite-ui-inverse:#353535;
  --calcite-ui-inverse-hover:#2b2b2b;
  --calcite-ui-inverse-press:#202020;
  --calcite-alert-dismiss-progress-background:rgba(255, 255, 255, 0.8);
  --calcite-button-transparent-hover:rgba(0, 0, 0, 0.05);
  --calcite-button-transparent-press:rgba(0, 0, 0, 0.08);
  --calcite-link-blue-underline:rgba(0, 97, 155, 0.4);
  --calcite-scrim-background:rgba(255, 255, 255, 0.85);
}

@media (prefers-color-scheme: dark) {
  .calcite-theme-auto {
    --calcite-ui-brand:#009AF2;
    --calcite-ui-brand-hover:#007AC2;
    --calcite-ui-brand-press:#00619B;
    --calcite-ui-background:#353535;
    --calcite-ui-foreground-1:#2b2b2b;
    --calcite-ui-foreground-2:#202020;
    --calcite-ui-foreground-3:#151515;
    --calcite-ui-text-1:#ffffff;
    --calcite-ui-text-2:#bfbfbf;
    --calcite-ui-text-3:#9f9f9f;
    --calcite-ui-text-inverse:#151515;
    --calcite-ui-text-link:#00A0FF;
    --calcite-ui-border-1:#555555;
    --calcite-ui-border-2:#4a4a4a;
    --calcite-ui-border-3:#404040;
    --calcite-ui-border-input:#757575;
    --calcite-ui-info:#00A0FF;
    --calcite-ui-success:#36DA43;
    --calcite-ui-warning:#FFC900;
    --calcite-ui-danger:#FE583E;
    --calcite-ui-danger-hover:#FF0015;
    --calcite-ui-danger-press:#D90012;
    --calcite-theme-name:"dark";
    --calcite-ui-foreground-current:#214155;
    --calcite-ui-inverse:#f8f8f8;
    --calcite-ui-inverse-hover:#ffffff;
    --calcite-ui-inverse-press:#f3f3f3;
    --calcite-alert-dismiss-progress-background:rgba(43, 43, 43, 0.8);
    --calcite-button-transparent-hover:rgba(255, 255, 255, 0.05);
    --calcite-button-transparent-press:rgba(255, 255, 255, 0.08);
    --calcite-link-blue-underline:rgba(0, 160, 255, 0.4);
    --calcite-scrim-background:rgba(0, 0, 0, 0.85);
  }
}
@media (prefers-color-scheme: light) {
  .calcite-theme-auto {
    --calcite-ui-brand:#007ac2;
    --calcite-ui-brand-hover:#00619B;
    --calcite-ui-brand-press:#004874;
    --calcite-ui-background:#f8f8f8;
    --calcite-ui-foreground-1:#ffffff;
    --calcite-ui-foreground-2:#f3f3f3;
    --calcite-ui-foreground-3:#eaeaea;
    --calcite-ui-text-1:#151515;
    --calcite-ui-text-2:#4a4a4a;
    --calcite-ui-text-3:#6a6a6a;
    --calcite-ui-text-inverse:#FFFFFF;
    --calcite-ui-text-link:#00619b;
    --calcite-ui-border-1:#cacaca;
    --calcite-ui-border-2:#d4d4d4;
    --calcite-ui-border-3:#dfdfdf;
    --calcite-ui-border-input:#949494;
    --calcite-ui-info:#00619b;
    --calcite-ui-success:#35ac46;
    --calcite-ui-warning:#edd317;
    --calcite-ui-danger:#D83020;
    --calcite-ui-danger-hover:#A82B1E;
    --calcite-ui-danger-press:#7C1D13;
    --calcite-theme-name:"light";
    --calcite-ui-foreground-current:#c7eaff;
    --calcite-ui-inverse:#353535;
    --calcite-ui-inverse-hover:#2b2b2b;
    --calcite-ui-inverse-press:#202020;
    --calcite-alert-dismiss-progress-background:rgba(255, 255, 255, 0.8);
    --calcite-button-transparent-hover:rgba(0, 0, 0, 0.05);
    --calcite-button-transparent-press:rgba(0, 0, 0, 0.08);
    --calcite-link-blue-underline:rgba(0, 97, 155, 0.4);
    --calcite-scrim-background:rgba(255, 255, 255, 0.85);
  }
}
.overflow-hidden {
  overflow: hidden;
}

@keyframes viewFocus {
  from {
    border: 4px solid #0079c1;
    box-sizing: border-box;
  }
  to {
    border: 0px;
    box-sizing: border-box;
  }
}
.esri-view .esri-view-surface--inset-outline:focus::after {
  content: none;
}

html,
body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  margin: 0;
  padding: 0;
  font-family: "Avenir Next", "Avenir", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  touch-action: manipulation;
}

button {
  font-family: "Avenir Next", "Avenir", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

div {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

#webscene-map {
  height: 100%;
  position: relative;
  flex-grow: 1;
}

#webscene-page {
  height: 100%;
  width: 100%;
  position: relative;
  flex: 1 1 auto;
}

#webscene-header {
  height: 61px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 100;
}

.esriIsPhoneSize #header_map_try {
  display: none;
}

#webscene-main {
  top: 61px;
  bottom: 0px;
  width: 100%;
  position: absolute;
  display: flex;
}
#webscene-main .esriLogoContainer {
  position: absolute;
  bottom: -4px;
  transition: bottom 0.15s;
}
#webscene-main .attrContainer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: bottom 0.15s, opacity 0.5s ease-in;
  -webkit-transition: bottom 0.15s, opacity 0.5s ease-in;
}
#webscene-main .attrContainer.navFadeIn {
  transition: bottom 0.15s, opacity 0.2s;
  -webkit-transition: bottom 0.15s, opacity 0.2s;
}
#webscene-main .attrContainer .esri-attribution.esri-widget {
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.6);
  line-height: 12px;
}
#webscene-main .attrContainer .esri-attribution.esri-widget .esri-attribution__powered-by {
  font-size: 10px;
}
#webscene-main .attrContainer .esri-attribution.esri-widget div[role=button] {
  font-size: 9px;
  line-height: 12px;
  color: rgba(255, 255, 255, 0.6);
}
#webscene-main .attrContainer .esri-attribution.esri-widget a {
  color: rgba(255, 255, 255, 0.6);
}

.esriRtl .MessageList {
  right: auto;
  left: 0px;
}
.esriRtl #webscene-main .attrContainer div[role=button] {
  font-size: 9px;
}

#slideDeckContainer {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  text-align: center;
  z-index: 1;
}

.esri .hide {
  display: none !important;
}

.simpleGeocoder {
  margin: 8px 20px 0 10px;
  padding: 5px;
}
.simpleGeocoder .esriGeocoderContainer {
  width: 100%;
}

/* esri overrides */
html {
  overflow-y: hidden;
}

body {
  min-width: initial;
  overflow-y: hidden;
}

/* esri overrides */
.dijitDialogTitle {
  margin-right: 15px !important;
}

.vi button.blueButton {
  font-family: "SST Vietnamese", "Lucida Grande", Arial, Verdana, Geneva, sans-serif;
}
.vi button.orangeButton {
  font-family: "SST Vietnamese", "Lucida Grande", Arial, Verdana, Geneva, sans-serif;
}
.vi button.greenButton {
  font-family: "SST Vietnamese", "Lucida Grande", Arial, Verdana, Geneva, sans-serif;
}
.vi button.greyButton {
  font-family: "SST Vietnamese", "Lucida Grande", Arial, Verdana, Geneva, sans-serif;
}

.loading {
  background-image: url("../images/loading-blue.gif");
  background-position: center center;
  background-repeat: no-repeat;
  clear: none;
  height: 32px;
  margin-left: auto;
  margin-right: auto;
  width: 32px;
}

.MessageList {
  position: absolute;
  bottom: 65px;
  right: 0px;
}

.esriHasSlides .MessageList {
  bottom: 85px;
}

@media (orientation: landscape) {
  .esriIsPhoneSize.esriHasSlides .MessageList {
    bottom: 0px;
    z-index: 952;
  }
  .esriIsPhoneSize.esriHasSlides #webscene-main #webscene-map .esri-attribution.esri-widget {
    background: transparent;
  }
}
.esriIsPhoneSize #webscene-map .esri-attribution.esri-widget {
  background: transparent;
}
.esriIsPhoneSize #webscene-header {
  pointer-events: none;
}
.esriIsPhoneSize #webscene-map #shadowContainer {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}
.esriIsPhoneSize .esri-ui.portrait {
  bottom: 0 !important;
}
.esriIsPhoneSize .esri-ui.landscape {
  right: 0 !important;
}
.esriIsPhoneSize .esri-ui {
  z-index: unset;
}

.esriRtl .esriIsPhoneSize .esri-ui.landscape {
  left: 0 !important;
}

.esriIsPhoneSize.esriHasSlides #webscene-map .esri-attribution.esri-widget {
  background: rgba(0, 0, 0, 0.2);
}

#webscene-map #shadowContainer {
  box-shadow: inset 8px 6px 16px -10px rgba(100, 100, 100, 0.5);
  z-index: 9;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  pointer-events: none;
}
#webscene-map #shadowContainer.viewFocused {
  animation-duration: 5s;
  animation-name: viewFocus;
  border: 4px solid #0079c1;
  box-sizing: border-box;
}
#webscene-map #shadowContainer.noShadow {
  box-shadow: none;
}

.mapControlsContainer div:focus,
.compass div:focus,
.wsv-viewertool-pane-container div[role=button]:focus,
.wsv-viewertool-pane-container .tridon .dijitFocused input,
.v div.dijitTab.dijitFocused,
.esri-view .esri-popup .esri-popup__button:focus {
  box-shadow: inset 0px 0px 1px 2px #0079c1 !important;
}

.wsv-viewertool-pane-container .tridon table.dijitSelect.dijitFocused,
.wsv-viewertool-pane-container .shareLinkIcons div:focus,
.wsv-viewertool-pane-container div.dijitCheckBox.dijitFocused,
.wsv-viewertool-pane-container .daylight .esri-slider__anchor:focus > span,
.wsv-viewertool-pane-container .settings .esri-slider__anchor:focus span,
.wsv-viewertool-pane-container .settings .dijitRadio.dijitFocused,
.wsv-viewertool-pane-container .basemap-gallery-pane .sceneviewer-basemap-item:focus {
  box-shadow: 0px 0px 1px 2px #0079c1 !important;
}

.mapControlsContainer .esri-navigation-toggle:focus {
  box-shadow: 0px 0px 1px 2px #0079c1 !important;
  z-index: 10000;
}

div.wsv-viewertool-tabs__content:focus {
  box-shadow: inset 0px 0px 1px 1px #0079c1 !important;
  border: 1px solid #0079c1 !important;
}

.esriIsEmbedOrFullscreen #webscene-map #shadowContainer {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}

.esriHasSlides #webscene-main .esriLogoContainer {
  bottom: 52px;
  transition: bottom 0.15s;
}

.esriIsPhoneSize #webscene-main,
.esriIsEmbedOrFullscreen #webscene-main {
  top: 0px !important;
}
.esriIsPhoneSize #webscene-main #editorContainer,
.esriIsEmbedOrFullscreen #webscene-main #editorContainer {
  display: none;
}

.PopupLayerImage {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  width: 83px;
  height: 56px;
  margin-right: 5px;
}

.navFadeIn {
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.navFadeOut {
  opacity: 0 !important;
  -webkit-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
  pointer-events: none;
}

.esri-view .esri-view-root .esri-view-surface canvas {
  outline-width: 0px;
}

input::-ms-clear {
  display: none;
}

.dijitNumberTextBox.dijitRtl {
  text-align: right;
}

.dijitNumberTextBox input {
  border: 0;
}

.esriRtl .soria .dijitInputContainer input {
  margin: 0;
  line-height: 12px;
}
.esriRtl .esri-legend.esri-widget .esri-legend__message {
  line-height: 1.8em;
}

.esri .dijitDialogUnderlayWrapper .dijitDialogUnderlay {
  transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  opacity: 0;
  background-color: rgb(0, 0, 0);
}
.esri .dijitDialogUnderlayWrapper .dijitDialogUnderlay.on {
  opacity: 0.6;
  transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
}

.dijitPlaceHolder {
  pointer-events: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
}

.esri-navigation-toggle {
  opacity: 1 !important;
  -webkit-transition: opacity 0.2s ease-in 0.1s;
  transition: opacity 0.2s ease-in 0.1s;
}
.esri-navigation-toggle.touch-disabled {
  opacity: 0 !important;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  pointer-events: none;
}

.soria .dijitTooltipContainer {
  border: 1px solid #828282;
  background: #323232;
  opacity: 0.9;
  color: white;
  font-size: small;
  pointer-events: none;
}

.soria .interactiveToolTip .dijitTooltipContainer {
  border: 1px solid #cbcbcb;
  background: #fff;
  color: black;
  pointer-events: auto;
  opacity: 1;
}

body.soria > .dijitTooltipLeft .dijitTooltipConnector {
  z-index: 10;
  background: url("../images/tooltipConnectorRight.png") no-repeat top left;
  opacity: 0.9;
}

body.soria > .dijitTooltipRight .dijitTooltipConnector {
  z-index: 10;
  opacity: 0.9;
  background: url("../images/tooltipConnectorRight.png") no-repeat top left;
  transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.soria .dijitTooltipAbove .dijitTooltipConnector {
  z-index: 10;
  opacity: 0.9;
  background: url("../images/tooltipConnectorRight.png") no-repeat top left;
  transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  width: 11px;
  height: 17px;
  bottom: -2px;
}

.esri-widget {
  -webkit-box-shadow: none;
  box-shadow: none;
  font-family: "Avenir Next", "Avenir", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 12px;
}

.esriIsMobile .dijitTooltip {
  visibility: hidden;
}
.esriIsMobile .dijitTooltip.mobileTooltipVisible {
  visibility: visible;
}

.esriIsMobile {
  height: 100%;
  overflow: hidden;
}

input[type=button],
input[type=submit],
input[type=reset],
input[type=file]::-webkit-file-upload-button,
button {
  border-radius: 0;
}

.ar #editorContainer .propertiesTable .dijitTextBox {
  padding: 0 9px;
}
.ar #editorContainer .propertiesTable .dijitTextBox .dijitInputContainer input {
  padding: 9px 0;
}
.ar #editorContainer .propertiesTable .dijitTextBox .dijitInputField.dijitPlaceHolder {
  padding: 9px 0;
}

#tags-container .inp-tags__tag {
  padding: 4px;
}

.tags-container .inp-tags__required-tip {
  line-height: inherit;
  position: absolute;
}

.classification-banner {
  width: inherit;
  max-width: 100%;
  display: flex;
  font-size: 18px;
  z-index: 1000;
  flex: 0 1 auto;
  background-color: red;
  color: #ffffff;
}
.classification-banner.footer {
  flex: 0 1 40px;
}

.classification-banner-text {
  margin: auto;
}

.classification-banner-text-padding {
  padding: 10px 32px;
}

.mobile-loading-bar {
  position: absolute;
  width: 100%;
  bottom: 0px;
}

.webscene-map > .layer-loading-progress-bar {
  background-color: transparent;
}

/*
  This mixin takes you rules and
  wrap it with rules that only IE11 and
  above will read. Taken from
  http://browserhacks.com/#hack-d19e53a0fdfba5ec0f283ae86175a3af
 */
.icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  vertical-align: top;
}

.orangeButton,
.outlineOrangeButton {
  --calcite-ui-brand-hover: #d27316;
  --calcite-ui-brand: #e98d32;
}

.outlineGreenButton,
.greenButton {
  --calcite-ui-brand-hover: #527d31;
  --calcite-ui-brand: #6aa23f;
}

.outlineRedButton,
.redButton {
  --calcite-ui-brand-hover: #5b1b04;
  --calcite-ui-brand: #8c2906;
}

button.closeButton {
  padding: 10px;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
button.closeButton:after {
  content: "";
  display: block;
  position: relative;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background: url(../images/cross.svg) 0px 0px;
}
button.closeButton:hover:after {
  background-position: 0px -16px;
}

calcite-button[appearance=transparent][color=neutral],
calcite-button[appearance=transparent][color=neutral] {
  --calcite-ui-text-1: #6e6e6e;
}

.esriRtl button.closeButton {
  right: auto;
  left: 0;
}

.compass {
  position: absolute;
  top: 215px;
  left: 6px;
  padding: 4px;
  z-index: 10;
  -webkit-transition: opacity 0.2s, top 0.2s ease-in;
  transition: opacity 0.2s, top 0.2s ease-in;
}
.compass .esri-widget--button {
  width: 38px;
  height: 38px;
}
.compass.touch {
  top: 132px;
}
.compass.navFadeIn {
  -webkit-transition: opacity 0.2s, top 0.2s ease-in;
  transition: opacity 0.2s, top 0.2s ease-in;
}
.compass.navFadeOut {
  opacity: 0 !important;
  -webkit-transition: opacity 0.5s ease-in, top 0.2s ease-in;
  transition: opacity 0.5s ease-in, top 0.2s ease-in;
}
.compass .esri-compass.esri-widget--button {
  color: #4c4c4c;
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
}
.compass .esri-compass.esri-widget--button:hover {
  color: #0079c1;
  background-color: #e1f1fb;
}

.esriRtl .compass {
  left: auto;
  right: 6px;
}

/*
Compass position in different UI modes
*/
.esriIsMobile .compass {
  top: 133px;
}

.esriIsEmbedOrFullscreen .compass {
  top: 252px;
}

.esriIsMobile.esriIsPhoneSize .compass {
  top: 7px;
  right: 8px;
  left: auto;
  z-index: 952;
}
.esriIsMobile.esriIsPhoneSize .compass--with-fullscreen {
  right: 45px;
}
.esriIsMobile.esriIsPhoneSize .compass .esri-compass.esri-widget--button {
  color: white;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  border: 1px solid white;
  width: 20px;
  height: 20px;
}
.esriIsMobile.esriIsPhoneSize .compass .esri-compass.esri-widget--button .esri-compass__icon {
  font-size: 15px;
}
.esriIsMobile.esriIsPhoneSize .compass .esri-compass.esri-widget--button .esri-compass__icon.esri-icon-dial {
  font-size: 13px;
  width: 20px;
  height: 20px;
  padding: 4px;
  line-height: 1;
}

@media (orientation: landscape) {
  .esriIsMobile.esriIsPhoneSize.esriHasSlides .compass {
    right: 134px;
  }
  .esriIsMobile.esriIsPhoneSize.esriHasSlides .compass--with-fullscreen {
    right: 173px;
  }
  .esriRtl .esriIsMobile.esriIsPhoneSize.esriHasSlides .compass {
    left: 134px;
    right: auto;
  }
  .esriRtl .esriIsMobile.esriIsPhoneSize.esriHasSlides .compass--with-fullscreen {
    left: 173px;
    right: auto;
  }
}
.esriRtl .esriIsMobile.esriIsPhoneSize .compass {
  left: 6px;
  right: auto;
}
.esriRtl .esriIsMobile.esriIsPhoneSize .fullScreenContainer ~ .compass {
  left: 45px;
  right: auto;
}

.esriIsEmbedOrFullscreen.esriIsMobile .compass,
.esriIsEmbedOrFullscreen .compass.touch {
  top: 168px;
}

.esriIsPhoneSize.esriIsEmbedOrFullscreen .compass.touch {
  top: 7px;
}

@media (max-height: 400px) {
  .esriIsEmbedOrFullscreen .compass {
    display: none;
  }
  .esriIsMobile .compass {
    display: block;
  }
}
#webscene-main .fullScreenContainer {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 3px 5px;
  margin-bottom: 16px;
}
#webscene-main .fullScreenContainer.exit .fullscreen {
  background-position: 0 -30px;
}
#webscene-main .fullScreenContainer .fullscreen {
  width: 26px;
  height: 30px;
  background: transparent url("../images/fullscreen.svg");
  background-size: 26px 60px;
  cursor: pointer;
  opacity: 0.9;
  display: block;
  border: 0px;
}
#webscene-main .fullScreenContainer .fullscreen:hover, #webscene-main .fullScreenContainer .fullscreen:focus {
  opacity: 1;
}

.esriHasSlides #webscene-main .fullScreenContainer {
  background-color: transparent;
  bottom: 16px;
}

.esriRtl .esriIsPhoneSize.esriIsMobile #webscene-main .fullScreenContainer {
  left: 6px;
  right: auto;
}
.esriRtl #webscene-main .fullScreenContainer {
  right: auto;
  left: 10px;
}

.esriIsPhoneSize #webscene-main .fullScreenContainer {
  background-color: transparent;
  right: 8px;
  top: 5px;
  bottom: auto !important;
  left: auto;
  z-index: 955;
}
.esriIsPhoneSize #webscene-main .fullScreenContainer.exit .fullscreen {
  background-position: 0 -26px;
}
.esriIsPhoneSize #webscene-main .fullScreenContainer .fullscreen {
  opacity: 1;
  width: 23px;
  height: 26px;
  background-size: 23px 53px;
}

@media (orientation: landscape) {
  .esriRtl .esriIsPhoneSize.esriIsMobile.esriHasSlides #webscene-main .fullScreenContainer,
.esriRtl .esriIsPhoneSize.esriIsMobile.esriHasSlides .fullScreenContainer {
    left: 136px;
    right: auto;
    bottom: auto;
  }
  .esriIsPhoneSize.esriIsMobile.esriHasSlides #webscene-main .fullScreenContainer,
.esriIsPhoneSize.esriIsMobile.esriHasSlides .fullScreenContainer {
    right: 136px;
    bottom: auto;
  }
}
.inp-tags__container {
  background-color: #fff;
  box-sizing: border-box;
  display: inline-block;
  font-family: "Avenir Next W01", "Avenir Next W00", "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  margin: 0px;
  position: relative;
}

.inp-tags__container--required-legacy {
  position: relative;
  overflow: visible;
}

.inp-tags__container--required-legacy:after {
  content: attr(aria-label);
  position: absolute;
  z-index: 1000000;
  display: inline-block;
  padding: 0.3875rem 0.775rem;
  font-size: 0.875rem;
  line-height: 1.55rem;
  color: #fff;
  text-align: center;
  word-wrap: break-word;
  white-space: pre;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 3px;
  top: auto;
  right: auto;
  bottom: 50%;
  left: 100%;
  margin-left: 5px;
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
}

.inp-tags__container--required-legacy:before {
  content: "";
  position: absolute;
  z-index: 1000001;
  display: inline-block;
  width: 0;
  height: 0;
  color: rgba(0, 0, 0, 0.75);
  pointer-events: none;
  border: 5px solid rgba(0, 0, 0, 0);
  top: 50%;
  right: -5px;
  bottom: 50%;
  margin-top: -5px;
  margin-right: 0;
  border-right-color: rgba(0, 0, 0, 0.75);
  border-bottom: 5px solid rgba(0, 0, 0, 0);
}

.inp-tags__container--required-legacy:hover, .inp-tags__container--required-legacy:active, .inp-tags__container--required-legacy:focus {
  text-decoration: none;
}

html[dir=rtl] .inp-tags__container--required:after {
  left: auto;
  right: 100%;
  margin-left: 0;
  margin-right: 5px;
}

html[dir=rtl] .inp-tags__container--required:before {
  left: -5px;
  right: auto;
  border-left-color: rgba(0, 0, 0, 0.75);
  border-right-color: rgba(0, 0, 0, 0);
}

.inp-tags__active-tags {
  border-color: #aaa;
  border-image: initial;
  border-style: solid;
  border-width: 1px;
  cursor: text;
  display: flex;
  flex-wrap: wrap;
  height: auto !important;
  list-style-type: none;
  margin: 0px;
  overflow: hidden;
  padding: 0px;
  position: relative;
}

html[dir=rtl] .inp-tags__active-tags {
  margin: 0px;
}

.inp-tags__active-tags--focused {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 3px inset, rgba(82, 168, 236, 0.6) 0px 0px 8px;
}

.inp-tags__active-tags--focused.inp-tags__active-tags--required {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 3px inset, rgba(200, 106, 74, 0.6) 0px 0px 8px;
}

.inp-tags__active-tags--required {
  border-color: #c86a4a;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE2cHgiIHZpZXdCb3g9IjAgMCAxNiAxNiIgeD0iMiIgeT0iMCI+PHBhdGggZmlsbD0iI2M4NmE0YSIgZD0iTTExLjIyNSwwSDQuNjQ4TDAsNC42NXY2LjU3Nmw0LjY0OCw0LjY0OWg2LjU3Nmw0LjY1LTQuNjQ5VjQuNjVMMTEuMjI1LDB6IE05LjA3MSwxMy42MDdINi44MDR2LTIuMjY5aDIuMjY4VjEzLjYwN3ogTTkuMDcxLDkuMDcxSDYuODA0VjMuNDAyaDIuMjY4VjkuMDcxeiIvPjwvc3ZnPg==");
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 24px;
}

html[dir=rtl] .inp-tags__active-tags--required {
  padding-right: inherit;
  padding-left: 24px;
  background-position: left center;
}

.inp-tags__input {
  border-color: initial;
  border-image: initial;
  border-style: none;
  border-width: initial;
  box-shadow: none;
  box-sizing: border-box;
  flex-basis: 1px;
  flex-grow: 1;
  font-size: 13px;
  height: 1.75rem;
  line-height: 23px;
  margin: 0px;
  max-width: 100%;
  min-width: 150px;
  outline: none !important;
  padding: 0px 0.31rem;
  text-overflow: ellipsis;
}

.inp-tags__input:focus {
  border: none;
  box-shadow: none;
}

.inp-tags__input::placeholder {
  color: #aaa;
  font-style: italic;
  width: 100%;
}

.inp-tags__tag {
  background-clip: padding-box;
  background-color: #d1e9f9;
  background-image: none;
  border-radius: 3px;
  border: 1px solid #7fbbdf;
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  cursor: default;
  display: inline-block;
  filter: none;
  line-height: 13px;
  margin: 3px 0px 3px 5px;
  max-width: calc(100% - 2rem);
  padding: 3px;
  position: relative;
  user-select: none;
  word-wrap: break-word;
  -moz-background-clip: padding;
  -webkit-touch-callout: none;
}

html[dir=rtl] .inp-tags__tag {
  margin: 3px 5px 3px 0px;
}

.inp-tags__tag:focus-within {
  outline: 0;
  border-color: #0079c1;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(81, 167, 232, 0.5);
}

.inp-tags__tag-innards:focus {
  outline: 0;
}

.inp-tags__tag-remove-btn {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  color: #757575;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  outline: none;
  padding-left: 2px;
}

.inp-tags__tag-remove-btn > svg {
  fill: currentColor;
  pointer-events: none;
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  padding-right: 0.15em;
}

html[dir=rtl] .inp-tags__tag-remove-btn > svg {
  padding-right: 0;
  padding-left: 0.15em;
}

.inp-tags__tag-remove-btn:hover {
  color: #d83020;
}

html[dir=rtl] .inp-tags__tag-remove-btn {
  padding-left: 0px;
  padding-right: 2px;
}

.inp-tags__suggestions {
  background: #fff;
  box-shadow: 2px 2px 20px #888;
  left: 0px;
  list-style-type: none;
  margin: 0px;
  max-height: 100px;
  overflow: auto;
  padding: 0px;
  position: absolute;
  width: calc(100% - 2px);
  z-index: 4;
}

.inp-tags__suggestion {
  cursor: pointer;
  font-size: 13px;
  margin: 0px;
  padding: 0.25rem 0.5rem;
}

.inp-tags__suggestion:focus, .inp-tags__suggestion:hover {
  background: #e1f0fb;
}

.inp-tags__suggestion--grey {
  background: #eee;
}

.inp-tags__suggestion--white {
  background: #fff;
}

.inp-tags__no-suggestions {
  text-align: center;
  width: 100%;
}

.inp-tags__no-suggestions-text {
  color: #969696;
  font-size: 1.3em;
  display: block;
  line-height: 1.55rem;
  margin: 1.67em 0;
}

.inp-tags__required-tip {
  font-size: 0.8125rem;
  line-height: 1.5;
  padding: 0.375rem 0.375rem;
  color: rgba(0, 0, 0, 0.75);
  background-color: #e65240;
  border: 1px solid #e65240;
  position: relative;
  display: inline-block;
  margin-top: 0.5rem;
  z-index: 10;
}

.inp-tags__required-tip:after {
  content: "";
  position: absolute;
  left: 11px;
  top: -15px;
  width: 0;
  height: 0;
  pointer-events: none;
  border: 8px solid rgba(0, 0, 0, 0);
  border-bottom-color: #e65240;
}

.inp-tags__required-tip:before {
  content: "";
  position: absolute;
  left: 11px;
  top: -16px;
  width: 0;
  height: 0;
  pointer-events: none;
  border: 8px solid rgba(0, 0, 0, 0);
  border-bottom-color: #e65240;
} /*# sourceMappingURL=index.css.map */
.inp-tags__container .inp-tags__required-tip {
  line-height: inherit;
  position: absolute;
  border: 1px solid #828282;
  background-color: #323232;
  opacity: 0.9;
  color: white;
}
.inp-tags__container .inp-tags__required-tip:before, .inp-tags__container .inp-tags__required-tip:after {
  border-bottom-color: #323232;
  opacity: 0.9;
}
.inp-tags__container .inp-tags__required-tip .inp-tags__active-tags {
  border-color: #8ba0bd;
  padding: 4px;
}
.inp-tags__container .inp-tags__active-tags--focused {
  box-shadow: none;
  border-color: #406b9b;
}
.inp-tags__container .inp-tags__input {
  height: 2.2em;
}

.esri-slider {
  background: transparent;
}
.esri-slider .esri-slider__anchor--moving:focus .esri-slider__thumb {
  border: solid 2px #adadad;
}
.esri-slider .esri-slider__thumb {
  width: 19px;
  height: 19px;
  left: -9px;
  top: -9px;
  border: solid 1px #7a7a7a;
  background-color: white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.esri-slider .esri-slider__thumb:hover {
  transform: none;
  border: solid 2px #474747;
}
.esri-slider.esri-slider--horizontal .esri-slider__track {
  height: 1px;
}
.esri-slider .esri-slider__segment {
  -moz-background-clip: content;
  -webkit-background-clip: content;
  background-clip: content-box;
  margin-top: -4px;
  border: 4px solid transparent;
  height: 9px;
}
.esri-slider .esri-slider__segment.esri-slider__segment-1 {
  background-color: #bdbdbd;
}
.esri-slider .esri-slider__segment.esri-slider__segment-0 {
  background-color: #2bc4ef;
}
.esri-slider .esri-slider__ticks {
  font-size: 10px;
}
.esri-slider .esri-slider__ticks .majorLabels {
  color: #8e8e8e;
  font-size: 9px;
  margin-top: 14px;
}
.esri-slider .esri-slider__ticks .esri-slider__tick {
  background: transparent;
  width: 5px;
}
.esri-slider .esri-slider__ticks .esri-slider__tick::after {
  width: 1px;
  height: 5px;
  background: #acacac;
  content: "";
  display: block;
}
.esri-slider .esri-slider__ticks .esri-slider__tick.minorTicks::after {
  height: 2px;
}
.esri-slider .esri-slider__ticks > div:hover {
  cursor: pointer;
}
.esri-slider .esri-slider__ticks > div:hover .esri-slider__ticks {
  background: #000000;
}
.esri-slider .esri-slider__ticks > div:hover .esri-slider__tick-label {
  color: #000000;
}

.containerTransparencySlider .esri-slider .esri-slider__content,
.transparency-container.esri-slider .esri-slider__content {
  margin-inline-end: 10px;
}

.transparency-container.esri-slider .esri-slider__label {
  padding: 5px;
  background-color: #111111;
  color: #ededed;
  transform: translate(-50%, 0);
  margin: 0;
  left: -50%;
  margin-top: -18px;
  border-radius: 2px;
  min-width: 0px;
  padding: 5px 8px;
}
.transparency-container.esri-slider .esri-slider__label::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #111111;
  position: absolute;
  margin-top: 27px;
  left: 50%;
  transform: translate(-50%, 0);
}
.transparency-container.esri-slider .esri-slider__label input {
  outline: none;
  background-color: #111111;
  color: #ededed;
  border: none;
  width: 50px;
}
.transparency-container.esri-slider .esri-slider__label input:hover, .transparency-container.esri-slider .esri-slider__label input:focus {
  border-bottom: solid 1px #ededed;
}

.basemap-gallery-pane__underground-container .esri-slider .esri-slider__anchor:focus .esri-slider__thumb {
  box-shadow: 0px 0px 1px 2px #0079c1 !important;
}

.esriRtl .esri-slider .esri-slider__ticks .esri-slider__tick::after {
  float: left;
}
.esriRtl .esri-slider .esri-slider__ticks .esri-slider__tick::after {
  float: left;
}
.esriRtl .esri-slider.esri-slider--reversed.esri-slider--horizontal {
  flex-direction: row;
}

body:not(.esriIsPhoneSize) {
  /* 
    Theses rules fix the size of the medias in popup (Issue #5002.)
  */
  /*
    Theses rules modified the size of the docked popup in SV
    on desktop.
  */
}
body:not(.esriIsPhoneSize) #webscene-map .esri-popup .esri-feature__media-item-container {
  max-width: 100%;
}
body:not(.esriIsPhoneSize) #webscene-map .esri-popup .esri-feature__media-item img {
  max-width: 100%;
}
body:not(.esriIsPhoneSize) #webscene-map .esri-popup.esri-popup--is-docked {
  margin-right: 61px;
  margin-top: 10px;
}
body:not(.esriIsPhoneSize) #webscene-map .esri-popup.esri-popup--is-docked .esri-feature .esri-feature__media {
  padding: 0;
  padding-bottom: 24px;
}
body:not(.esriIsPhoneSize) #webscene-map .esri-popup.esri-popup--is-docked .esri-feature .esri-feature__media .esri-feature__media-item img {
  max-width: 100%;
}
body:not(.esriIsPhoneSize) #webscene-map .esri-popup.esri-popup--is-docked .esri-feature .esri-feature__media .esri-feature__media-item-title {
  white-space: pre-wrap;
  word-break: break-all;
  word-wrap: break-word;
}
body:not(.esriIsPhoneSize) #webscene-map .esri-popup.esri-popup--is-docked .esri-popup__content {
  margin-right: 15px;
  padding-right: 0;
}
body:not(.esriIsPhoneSize) #webscene-map .esri-popup.esri-popup--is-docked .esri-popup__main-container {
  width: 296px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
  padding-bottom: 55px;
}
body:not(.esriIsPhoneSize) #webscene-map .esri-popup.esri-popup--is-docked .esri-popup__main-container .esri-feature__fields.esri-feature__content-element {
  padding-left: 0;
  padding-right: 0;
}
body:not(.esriIsPhoneSize) #webscene-map .esri-popup.esri-popup--is-docked .esri-popup__main-container .esri-popup__footer--has-pagination .esri-popup__inline-actions-container > .esri-popup__action {
  max-width: 75%;
}
body:not(.esriIsPhoneSize) #webscene-map .esri-popup.esri-popup--is-docked .esri-popup__main-container .esri-popup__navigation {
  height: 35px;
  margin-top: 0;
}
body:not(.esriIsPhoneSize) #webscene-map .esri-popup.esri-popup--is-docked .esri-popup__main-container .esri-popup__button:hover {
  background-color: transparent;
}
body:not(.esriIsPhoneSize) #webscene-map .esri-popup.esri-popup--is-docked .esri-popup__main-container .esri-popup__button.esri-popup__pagination-previous .esri-popup__icon,
body:not(.esriIsPhoneSize) #webscene-map .esri-popup.esri-popup--is-docked .esri-popup__main-container .esri-popup__button.esri-popup__pagination-next .esri-popup__icon {
  margin-top: 0;
}
body:not(.esriIsPhoneSize) #webscene-map .esri-popup.esri-popup--is-docked .esri-popup__main-container .esri-popup__header-title {
  font-size: var(--calcite-font-size-2);
  margin-left: 7px;
  font-weight: normal;
  padding-top: 0;
}
body:not(.esriIsPhoneSize) #webscene-map .esri-popup.esri-popup--is-docked .esri-popup__main-container .esri-popup__header-title:hover {
  background-color: transparent;
}
body:not(.esriIsPhoneSize) #webscene-map .esri-popup.esri-popup--is-docked .esri-popup__main-container .esri-popup__footer.esri-popup__footer--has-actions {
  bottom: 0;
  top: auto;
  position: absolute;
  width: 100%;
  margin-top: 0;
  padding-top: 0;
}
body:not(.esriIsPhoneSize) #webscene-map .esri-popup.esri-popup--is-docked .esri-popup__main-container .esri-popup__footer.esri-popup__footer--has-actions .esri-popup__inline-actions-container {
  margin: 15px;
  margin-top: 0;
  width: inherit;
  margin-bottom: 8px;
}
body:not(.esriIsPhoneSize) #webscene-map .esri-popup.esri-popup--is-docked .esri-popup__main-container .esri-popup__footer.esri-popup__footer--has-actions .esri-popup__button.esri-popup__action {
  height: 35px;
  font-size: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  -moz-user-select: none;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 1px;
  line-height: 1.71429em;
  text-transform: uppercase;
  color: #6aa23f;
  background: none;
  border: solid 1px #6aa23f;
  width: 100%;
  margin: 0;
  text-align: center;
  padding: 0;
  line-height: 35px;
  margin-top: 10px;
}
body:not(.esriIsPhoneSize) #webscene-map .esri-popup.esri-popup--is-docked .esri-popup__main-container .esri-popup__footer.esri-popup__footer--has-actions .esri-popup__button.esri-popup__action .esri-popup__icon {
  margin-top: -5px;
  vertical-align: -4px;
  margin-right: 10px;
}
body:not(.esriIsPhoneSize) #webscene-map .esri-popup.esri-popup--is-docked .esri-popup__main-container .esri-popup__footer.esri-popup__footer--has-actions .esri-popup__button.esri-popup__action .esri-popup__icon.esri-icon-loading-indicator {
  margin-top: 4px;
}
body:not(.esriIsPhoneSize) #webscene-map .esri-popup.esri-popup--is-docked.esri-popup--feature-menu-open .esri-popup__header {
  flex: 0 0 auto;
  overflow: visible;
  opacity: 1;
  max-height: none;
}
body:not(.esriIsPhoneSize) #webscene-map .esri-popup.esri-popup--is-docked.esri-popup--feature-menu-open .esri-popup__feature-menu-viewport {
  max-height: none;
}
body:not(.esriIsPhoneSize) #webscene-map.esri-view-width-less-than-medium .esri-popup__action-text {
  display: inline;
}
body:not(.esriIsPhoneSize).esriIsEmbedOrFullscreen #webscene-map .esri-popup.esri-popup--is-docked.esri-popup--is-docked-top-left {
  margin-left: 10px;
  margin-top: 50px;
}
body:not(.esriIsPhoneSize).esriIsEmbedOrFullscreen #webscene-map .esri-popup.esri-popup--is-docked.esri-popup--is-docked-top-right {
  margin-right: 10px;
  margin-top: 50px;
}

/*
  Theses rules modified the size of the docked popup in SV
  on desktop in Rtl.
*/
.esriRtl body:not(.esriIsPhoneSize) #webscene-map .esri-popup.esri-popup--is-docked {
  margin-left: 61px;
  margin-right: 15px;
  margin-top: 10px;
}
.esriRtl body:not(.esriIsPhoneSize) #webscene-map .esri-popup.esri-popup--is-docked .esri-popup__footer.esri-popup__footer--has-actions .esri-popup__button.esri-popup__action .esri-popup__icon {
  margin-left: 10px;
  margin-right: 0;
}

/*
  This following rules are imported from general.scss and modify
  popup when not docked (or do nothing and need to be deleted) 
*/
#webscene-map .esri-widget__table tr td,
#webscene-map .esri-widget__table tr th {
  word-wrap: break-word;
}

[class*=esri-popup--is-docked-top-] .esri-popup__footer,
[class*=esri-popup--aligned-bottom-] .esri-popup__footer {
  border-bottom: none;
}

.esriIsPhoneSize .esri-popup {
  z-index: 952;
}
.esriIsPhoneSize #webscene-map .esri-popup__main-container {
  width: 100%;
  max-height: 35%;
}
.esriIsPhoneSize #webscene-map .esri-popup--is-docked-top-left {
  left: 0 !important;
}
.esriIsPhoneSize #webscene-map .esri-popup--is-docked-top-right {
  right: 0 !important;
}
.esriIsPhoneSize #webscene-map .esri-popup--is-docked-top-left .esri-popup__main-container,
.esriIsPhoneSize #webscene-map .esri-popup--is-docked-top-right .esri-popup__main-container {
  max-width: 50%;
  max-height: 100%;
}
.esriIsPhoneSize #webscene-map .esri-popup.esri-popup--is-docked {
  margin: 0;
  z-index: 960;
}
.esriIsPhoneSize #webscene-map.esriIsEmbedOrFullscreen #webscene-map .esri-popup.esri-popup--is-docked {
  margin: 0;
  z-index: 960;
}
.esriIsPhoneSize #webscene-map .esri-popup .esri-popup__main-container .esri-popup__header-buttons {
  margin-top: 0;
}

#webscene-map .esri-view-width-xlarge .esri-popup__main-container,
#webscene-map .esri-popup__main-container {
  width: 380px;
}
#webscene-map .esri-view-width-xsmall .esri-popup--is-docked-top-right .esri-popup__main-container {
  margin-left: 20px;
}
#webscene-map .esri-popup__inline-actions-container:only-child > .esri-popup__action {
  max-width: none;
}
#webscene-map .esri-popup__content {
  margin-right: 0;
  padding-right: 12px;
  margin-bottom: 0;
  padding-bottom: 15px;
}

.esri-popup__size-container {
  z-index: 200;
}

.esriIsEmbedOrFullscreen #webscene-map .esri-popup.esri-popup--is-docked {
  margin-right: 11px;
  margin-top: 48px;
}
