.ReactTable {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.1); }

.ReactTable * {
  box-sizing: border-box; }

.ReactTable .rt-table {
  flex: auto 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  border-collapse: collapse;
  overflow: auto; }

.ReactTable .rt-thead {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.ReactTable .rt-thead.-headerGroups {
  background: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); }

.ReactTable .rt-thead.-filters {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); }

.ReactTable .rt-thead.-filters input, .ReactTable .rt-thead.-filters select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 5px 7px;
  font-size: inherit;
  border-radius: 3px;
  font-weight: normal;
  outline-width: 0; }

.ReactTable .rt-thead.-filters .rt-th {
  border-right: 1px solid rgba(0, 0, 0, 0.02); }

.ReactTable .rt-thead.-header {
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.15); }

.ReactTable .rt-thead .rt-tr {
  text-align: center; }

.ReactTable .rt-thead .rt-th, .ReactTable .rt-thead .rt-td {
  padding: 5px 5px;
  line-height: normal;
  position: relative;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: inset 0 0 0 0 transparent; }

.ReactTable .rt-thead .rt-th.-sort-asc, .ReactTable .rt-thead .rt-td.-sort-asc {
  box-shadow: inset 0 3px 0 0 rgba(0, 0, 0, 0.6); }

.ReactTable .rt-thead .rt-th.-sort-desc, .ReactTable .rt-thead .rt-td.-sort-desc {
  box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.6); }

.ReactTable .rt-thead .rt-th.-cursor-pointer, .ReactTable .rt-thead .rt-td.-cursor-pointer {
  cursor: pointer; }

.ReactTable .rt-thead .rt-th:last-child, .ReactTable .rt-thead .rt-td:last-child {
  border-right: 0; }

.ReactTable .rt-thead .rt-th:focus {
  outline-width: 0; }

.ReactTable .rt-thead .rt-resizable-header {
  overflow: visible; }

.ReactTable .rt-thead .rt-resizable-header:last-child {
  overflow: hidden; }

.ReactTable .rt-thead .rt-resizable-header-content {
  overflow: hidden;
  text-overflow: ellipsis; }

.ReactTable .rt-thead .rt-header-pivot {
  border-right-color: #f7f7f7; }

.ReactTable .rt-thead .rt-header-pivot:after, .ReactTable .rt-thead .rt-header-pivot:before {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none; }

.ReactTable .rt-thead .rt-header-pivot:after {
  border-color: rgba(255, 255, 255, 0);
  border-left-color: #fff;
  border-width: 8px;
  margin-top: -8px; }

.ReactTable .rt-thead .rt-header-pivot:before {
  border-color: rgba(102, 102, 102, 0);
  border-left-color: #f7f7f7;
  border-width: 10px;
  margin-top: -10px; }

.ReactTable .rt-tbody {
  flex: 99999 1 auto;
  display: flex;
  flex-direction: column;
  overflow: auto; }

.ReactTable .rt-tbody .rt-tr-group {
  border-bottom: solid 1px rgba(0, 0, 0, 0.05); }

.ReactTable .rt-tbody .rt-tr-group:last-child {
  border-bottom: 0; }

.ReactTable .rt-tbody .rt-td {
  border-right: 1px solid rgba(0, 0, 0, 0.02); }

.ReactTable .rt-tbody .rt-td:last-child {
  border-right: 0; }

.ReactTable .rt-tbody .rt-expandable {
  cursor: pointer;
  text-overflow: clip; }

.ReactTable .rt-tr-group {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch; }

.ReactTable .rt-tr {
  flex: 1 0 auto;
  display: inline-flex; }

.ReactTable .rt-th, .ReactTable .rt-td {
  flex: 1 0 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 7px 5px;
  overflow: hidden;
  transition: .3s ease;
  transition-property: width,min-width,padding,opacity; }

.ReactTable .rt-th.-hidden, .ReactTable .rt-td.-hidden {
  width: 0 !important;
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important; }

.ReactTable .rt-expander {
  display: inline-block;
  position: relative;
  margin: 0;
  color: transparent;
  margin: 0 10px; }

.ReactTable .rt-expander:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  border-left: 5.04px solid transparent;
  border-right: 5.04px solid transparent;
  border-top: 7px solid rgba(0, 0, 0, 0.8);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer; }

.ReactTable .rt-expander.-open:after {
  transform: translate(-50%, -50%) rotate(0); }

.ReactTable .rt-resizer {
  display: inline-block;
  position: absolute;
  width: 36px;
  top: 0;
  bottom: 0;
  right: -18px;
  cursor: col-resize;
  z-index: 10; }

.ReactTable .rt-tfoot {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15); }

.ReactTable .rt-tfoot .rt-td {
  border-right: 1px solid rgba(0, 0, 0, 0.05); }

.ReactTable .rt-tfoot .rt-td:last-child {
  border-right: 0; }

.ReactTable.-striped .rt-tr.-odd {
  background: rgba(0, 0, 0, 0.03); }

.ReactTable.-highlight .rt-tbody .rt-tr:not(.-padRow):hover {
  background: rgba(0, 0, 0, 0.05); }

.ReactTable .-pagination {
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 3px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  border-top: 2px solid rgba(0, 0, 0, 0.1); }

.ReactTable .-pagination input, .ReactTable .-pagination select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 5px 7px;
  font-size: inherit;
  border-radius: 3px;
  font-weight: normal;
  outline-width: 0; }

.ReactTable .-pagination .-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 3px;
  padding: 6px;
  font-size: 1em;
  color: rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.1);
  transition: all .1s ease;
  cursor: pointer;
  outline-width: 0; }

.ReactTable .-pagination .-btn[disabled] {
  opacity: .5;
  cursor: default; }

.ReactTable .-pagination .-btn:not([disabled]):hover {
  background: rgba(0, 0, 0, 0.3);
  color: #fff; }

.ReactTable .-pagination .-previous, .ReactTable .-pagination .-next {
  flex: 1;
  text-align: center; }

.ReactTable .-pagination .-center {
  flex: 1.5;
  text-align: center;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around; }

.ReactTable .-pagination .-pageInfo {
  display: inline-block;
  margin: 3px 10px;
  white-space: nowrap; }

.ReactTable .-pagination .-pageJump {
  display: inline-block; }

.ReactTable .-pagination .-pageJump input {
  width: 70px;
  text-align: center; }

.ReactTable .-pagination .-pageSizeOptions {
  margin: 3px 10px; }

.ReactTable .rt-noData {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  transition: all .3s ease;
  z-index: 1;
  pointer-events: none;
  padding: 20px;
  color: rgba(0, 0, 0, 0.5); }

.ReactTable .-loading {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  transition: all .3s ease;
  z-index: -1;
  opacity: 0;
  pointer-events: none; }

.ReactTable .-loading > div {
  position: absolute;
  display: block;
  text-align: center;
  width: 100%;
  top: 50%;
  left: 0;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
  transform: translateY(-52%);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.ReactTable .-loading.-active {
  opacity: 1;
  z-index: 2;
  pointer-events: all; }

.ReactTable .-loading.-active > div {
  transform: translateY(50%); }

.ReactTable .rt-resizing .rt-th, .ReactTable .rt-resizing .rt-td {
  transition: none !important;
  cursor: col-resize;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.react-tabs {
  -webkit-tap-highlight-color: transparent; }
  .react-tabs__tab-list {
    border-bottom: 1px solid #aaa;
    margin: 0 0 10px;
    padding: 0; }
  .react-tabs__tab {
    display: inline-block;
    border: 1px solid transparent;
    border-bottom: none;
    bottom: -1px;
    position: relative;
    list-style: none;
    padding: 6px 12px;
    cursor: pointer; }
    .react-tabs__tab--selected {
      background: #fff;
      border-color: #aaa;
      color: black;
      border-radius: 5px 5px 0 0; }
    .react-tabs__tab--disabled {
      color: GrayText;
      cursor: default; }
    .react-tabs__tab:focus {
      box-shadow: 0 0 5px #0188fe;
      border-color: #0188fe;
      outline: none; }
      .react-tabs__tab:focus:after {
        content: "";
        position: absolute;
        height: 5px;
        left: -4px;
        right: -4px;
        bottom: -5px;
        background: #fff; }
  .react-tabs__tab-panel {
    display: none; }
    .react-tabs__tab-panel--selected {
      display: block; }

.react-hint {
  padding: 5px;
  position: absolute;
  z-index: 9999;
  cursor: default;
  animation: .5s fadeIn; }

.react-hint__content {
  padding: 10px;
  border-radius: 5px;
  background: #000;
  color: #fff; }

.react-hint:after {
  content: '';
  width: 0;
  height: 0;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 5px solid transparent; }

.react-hint--top:after {
  top: auto;
  border-bottom: none;
  border-top-color: #000; }

.react-hint--left:after {
  left: auto;
  border-right: none;
  border-left-color: #000; }

.react-hint--right:after {
  right: auto;
  border-left: none;
  border-right-color: #000; }

.react-hint--bottom:after {
  bottom: auto;
  border-top: none;
  border-bottom-color: #000; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

:root {
  --background-color: #000;
  --foreground-color: #fff;
  --callout-background-color: #000;
  --callout-foreground-color: #fff;
  --tip-on-bottom: '/images/tiponbottomwhite.png';
  --panel-opacity: 0.65;
  --logo-on-map-display: none;
  --tutorial-background: #000000 !important;
  --tutorial-foreground: #fff !important;
  --disabled-opacity: 0.3;
  --link-hover-color: #44e4ee; }

html {
  font-size: 1.75vh; }

body {
  font-family: Roboto, Arial, sans-serif;
  font-size: 0.875rem;
  background: var(--background-color);
  color: var(--foreground-color);
  height: 100vh;
  min-height: 18.75rem;
  width: 100vw;
  min-width: 15.625rem;
  scrollbar-color: var(--tip-on-bottom) silver; }

button {
  cursor: pointer;
  background: var(--background-color);
  color: var(--foreground-color);
  padding: 0.375rem;
  border: 0.0625rem solid;
  border-radius: 0.5em; }

button:disabled {
  cursor: default; }

button:hover {
  background: gray; }

input {
  border: 0.0625rem solid;
  background: var(--background-color);
  color: var(--foreground-color); }

.is-active {
  font-weight: bold; }

legend {
  font-size: 1rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem; }

ul,
ul li {
  margin-left: 0.375rem;
  padding-left: 0px;
  padding-top: 0px;
  margin-top: 0px; }

*:disabled {
  opacity: var(--disabled-opacity);
  cursor: default; }

.visually-hidden {
  border: 0;
  padding: 0;
  margin: 0;
  clip-path: inset(50%);
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  height: 1px;
  width: 1px; }

.switchAlign {
  margin: 0; }

.smallSwitchAlign {
  margin: 0.5rem; }

.smallSwitchLabel {
  font-size: 0.875rem;
  margin-left: 0.5rem; }

.hidden {
  display: none !important; }

.border {
  border: 0.0625rem solid black;
  border-radius: 0.5em;
  margin-bottom: 0.625rem;
  padding-left: 0.625rem; }

.panelTitle {
  font-size: 1.375rem;
  display: flex;
  justify-content: center;
  margin-top: -1.25rem; }

.developerNotes {
  background-color: yellow;
  margin: 0.875rem;
  padding: 0.625rem;
  border: 0.0625rem solid black; }

.modalClose {
  font-size: 1.25rem;
  float: right;
  margin: -1rem; }

.warning,
.errorMsg {
  border: 0.0625rem solid;
  color: red;
  padding: 0.4375rem;
  margin-bottom: 0.4375rem; }

a {
  color: var(--foreground-color);
  text-decoration: none; }

a:hover {
  color: var(--link-hover-color) !important;
  cursor: pointer; }

.noLines {
  border: none 0px;
  color: gray; }

.returnMsg {
  margin-top: 0.75rem;
  color: #ffffff;
  font-size: 1.5rem; }

.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%); }

.green {
  color: #ffffff; }

.smallPadding {
  padding: 0.25rem; }

.topMargin {
  margin-top: 0.375rem; }

.mediumIcon {
  font-size: 0.875rem;
  padding: 0.25rem;
  color: #2c5ea3; }

.mediumIcon:hover {
  color: var(--foreground-color); }

label {
  display: inline-block;
  color: var(--foreground-color);
  font-size: 0.8125rem;
  cursor: pointer;
  position: relative; }
  label span {
    display: inline-block;
    position: relative;
    background-color: transparent;
    width: 0.875rem;
    height: 0.875rem;
    transform-origin: center;
    border: 0.0625rem solid;
    border-radius: 25%;
    vertical-align: -0.375rem;
    margin-right: 0.1875rem;
    margin-bottom: 0.1875rem; }
    label span:before {
      content: '';
      width: 0px;
      height: 0px;
      border-radius: 0.125rem;
      background: transparent;
      position: absolute;
      transform: rotate(145deg);
      top: 1rem;
      left: 0.125rem; }
    label span:after {
      content: '';
      width: 0.625rem;
      height: 0.625rem;
      border-radius: 0.125rem;
      background: transparent;
      position: absolute;
      top: 0.125rem;
      left: 0.125rem; }
  label:hover span:before {
    width: 0.3125rem;
    transition: width 100ms ease; }
  label:hover span:after {
    width: 0.625rem;
    transition: width 125ms ease 100ms; }

input[type='text'],
input[type='password'] {
  padding: 0.25rem;
  border-radius: 0.5em;
  background: var(--background-color) !important;
  color: var(--foreground-color) !important; }

input {
  background: var(--background-color);
  color: var(--foreground-color); }

/* Hide the default checkbox */
input[type='checkbox'] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 0.875rem;
  height: 0.875rem;
  background: var(--background-color);
  border: 0.08rem solid var(--foreground-color);
  border-radius: 0.25rem;
  cursor: pointer;
  margin-right: 0.25rem; }

/* Custom checkmark */
input[type='checkbox']:checked {
  background: var(--foreground-color);
  border-color: var(--foreground-color);
  position: relative; }

input[type='checkbox']:checked::before {
  content: '\2714';
  /* Unicode checkmark */
  position: absolute;
  color: var(--background-color);
  font-size: 0.75rem;
  font-weight: normal; }

input[type='radio'] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 0.875rem;
  height: 0.875rem;
  background: var(--background-color);
  border: 0.08rem solid var(--foreground-color);
  border-radius: 50%;
  cursor: pointer;
  margin-right: 0.25rem; }

input[type='radio']:checked {
  background: var(--foreground-color);
  border-color: var(--foreground-color);
  position: relative; }

input[type='radio']:checked::before {
  position: absolute;
  color: var(--background-color);
  font-size: 0.75rem;
  font-weight: normal; }

input[type='radio']:disabled {
  cursor: default; }

.nopadding {
  padding-top: 0px;
  margin-top: 0px; }

.closeTopRight {
  float: right; }

.centerDiv {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  z-index: 999999999 !important; }

.center2 {
  display: contents;
  position: absolute;
  left: 1.875rem;
  z-index: 999999999 !important; }

.centerHor {
  position: relative;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  z-index: 999999999 !important; }

.centerHor2 {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -70%) !important;
  z-index: 999999999 !important; }

.centerHor3 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%); }

.centerHor4 {
  position: absolute;
  left: 40%;
  transform: translateX(-40%); }

.spaceIt {
  padding: 0.5rem; }

.centerHorTop {
  position: relative;
  left: 50%;
  top: 0.5rem;
  transform: translate(-50%, -50%) !important; }

.small {
  font-size: 1rem; }

.large {
  font-size: 1.25rem; }

.xlargeBold {
  font-size: x-large;
  font-weight: bold; }

.x-large {
  font-size: 1.5rem; }

.xlargeWidthVary {
  font-size: 1.6vw; }

.largeWidthVary {
  font-size: 1.3vw; }

.medium {
  font-size: 1rem; }

.gray {
  color: #d9d9dc; }

.capitalize {
  text-transform: capitalize; }

.justifyLeft {
  display: flex;
  align-items: left;
  justify-content: left;
  float: left;
  bottom: 0.625rem;
  text-decoration: none; }

.justifyRight {
  display: flex;
  align-items: right;
  justify-content: right;
  float: right;
  bottom: 0.625rem;
  text-decoration: none; }

input[type='search'].my-search {
  -webkit-appearance: searchfield; }

.grayBorder {
  border: 0.0625rem solid lightgray;
  margin-bottom: 0.625rem;
  padding: 0.375rem;
  font-size: 0.875rem; }

.grayIconBorder {
  color: gray;
  border: 0.0625rem solid lightgray;
  border-right: none;
  margin-bottom: 0.625rem;
  padding: 0.4375rem;
  padding-bottom: 0.5rem; }

.css-1aya2g8 {
  font-size: 0.875rem !important;
  background-color: #fff !important;
  border: 0.0625rem solid lightgray; }

.bold {
  font-weight: bold;
  font-size: 1.125rem; }

.floatRight {
  float: right;
  margin-right: 0.25rem; }

.legendSubhead {
  font-size: 0.875rem;
  font-weight: bold;
  text-align: left;
  padding: 0.375rem;
  z-index: 8; }

.smallClose {
  font-size: 1rem;
  padding: 0.625rem;
  float: right;
  margin: 0px; }

.smallMove {
  font-size: 1rem;
  padding-right: 0.5rem;
  margin: 0px; }

.left {
  left: 2%; }

.right {
  float: right;
  margin-right: 0.5rem; }

.snap {
  position: absolute;
  top: 6.25rem;
  left: 6.25rem; }

table,
tbody,
tr,
td {
  padding: 0.2rem;
  margin: 0;
  vertical-align: top; }

.label12 {
  font-size: 0.875rem; }

.center {
  margin: auto;
  width: 50%; }

div.react-confirm-alert-overlay {
  z-index: 9999; }

img {
  /* This should make the icons in the Alerts and Layers tabs align better to the text */
  vertical-align: middle; }

.centerUsingGrid {
  display: grid;
  place-items: center; }

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  opacity: 1; }

/* Firefox */
input[type='number'] {
  -moz-appearance: textfield; }

/* idea for callout from https://cssdeck.com/labs/bv45bh6p */
div.callout {
  height: 3.75rem;
  width: 12.5rem;
  float: left; }

div.callout {
  background-color: var(--background-color);
  background-image: -moz-linear-gradient(top, var(--background-color), var(--background-color));
  position: relative;
  color: var(--foreground-color);
  padding: 0.625rem;
  border-radius: 0.1875rem;
  margin: 1.5625rem;
  min-height: 3.125rem; }

.callout::before {
  content: '';
  width: 0px;
  height: 0px;
  border: 0.8em solid transparent;
  position: absolute; }

.callout.top::before {
  left: 45%;
  bottom: -1.25rem;
  border-top: 0.625rem solid var(--background-color); }

.callout.bottom::before {
  left: 45%;
  top: -1.25rem;
  border-bottom: 0.625rem solid var(--background-color); }

.callout.left::before {
  right: -1.25rem;
  top: 40%;
  border-left: 0.625rem solid var(--background-color); }

.callout.right::before {
  left: -1.25rem;
  top: 40%;
  border-right: 0.625rem solid var(--background-color); }

.callout.top-left::before {
  left: 0.4375rem;
  bottom: -1.25rem;
  border-top: 0.625rem solid var(--background-color); }

.callout.top-right::before {
  right: 0.4375rem;
  bottom: -1.25rem;
  border-top: 0.625rem solid var(--background-color); }

div.sidebarCallout {
  float: left; }

div.sidebarCallout {
  background-color: var(--background-color);
  background-image: -moz-linear-gradient(top, var(--background-color), bar(--background-color));
  position: relative;
  color: var(--foreground-color); }

.sidebarCallout::before {
  content: '';
  width: 0px;
  height: 0px;
  border: 0.8em solid transparent;
  position: absolute; }

.sidebarCallout.settings::before {
  left: -1.25rem;
  top: 0.625rem;
  border-right: 0.625rem solid var(--background-color); }

.sidebarCallout.alerts::before {
  left: -1.25rem;
  top: 2.5rem;
  border-right: 0.625rem solid var(--background-color); }

.sidebarCallout.layers::before {
  left: -1.25rem;
  top: 4.75rem;
  border-right: 0.625rem solid var(--background-color); }

.sidebarCallout.basemaps::before {
  left: -1.25rem;
  top: 7rem;
  border-right: 0.625rem solid var(--background-color); }

.sidebarCallout.aois::before {
  left: -1.25rem;
  top: 9.25rem;
  border-right: 0.625rem solid var(--background-color); }

.sidebarCallout.satellite::before {
  left: -1.25rem;
  top: 11.5rem;
  border-right: 0.625rem solid var(--background-color); }

.sidebarCallout.annotations::before {
  left: -1.25rem;
  top: 13.75rem;
  border-right: 0.625rem solid var(--background-color); }

#infoWindow {
  position: absolute;
  display: none;
  z-index: 999999999 !important;
  background-color: #bebebe;
  color: #000;
  padding: 0.5rem 0.25rem 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.5em; }

#infoWindowContent {
  display: block;
  margin-top: 1.375rem;
  min-height: 6.25rem;
  max-height: 18.75rem;
  min-width: 6.25rem;
  max-width: 18.75rem;
  overflow: auto; }

.infoWindowTop_light {
  position: absolute;
  left: calc(50% - 0.9375rem);
  bottom: -1.375rem;
  width: 1.875rem;
  height: 1.875rem;
  color: var(--foreground-color);
  background-image: url(/images/tip_bebebe.svg);
  background-size: 1.875rem 1.875rem;
  background-repeat: no-repeat; }

.infoWindowTop_dark {
  position: absolute;
  left: calc(50% - 0.9375rem);
  bottom: -1.125rem;
  width: 1.875rem;
  height: 1.875rem;
  color: var(--foreground-color);
  background-image: url(/images/tip_bebebe.svg);
  background-size: 1.875rem 1.875rem;
  background-repeat: no-repeat; }

.infoWindowBottom_light {
  position: absolute;
  left: calc(50% - 0.9375rem);
  top: -1.25rem;
  width: 1.875rem;
  height: 1.875rem;
  color: var(--foreground-color);
  background-image: url(/images/tip_bebebe.svg);
  background-size: 1.875rem 1.875rem;
  transform: rotate(180deg);
  background-repeat: no-repeat; }

.infoWindowBottom_dark {
  position: absolute;
  left: calc(50% - 0.9375rem);
  top: -1.25rem;
  width: 1.875rem;
  height: 1.875rem;
  color: var(--foreground-color);
  background-image: url(/images/tip_bebebe.svg);
  background-size: 1.875rem 1.875rem;
  transform: rotate(180deg);
  background-repeat: no-repeat; }

.infoWindowLeft_light {
  position: absolute;
  right: -1.25rem;
  top: calc(50% - 0.9375rem);
  width: 1.875rem;
  height: 1.875rem;
  color: var(--foreground-color);
  background-image: url(/images/tip_bebebe.svg);
  background-size: 1.875rem 1.875rem;
  transform: rotate(-90deg);
  background-repeat: no-repeat; }

.infoWindowLeft_dark {
  position: absolute;
  right: -1.25rem;
  top: calc(50% - 0.9375rem);
  width: 1.875rem;
  height: 1.875rem;
  color: var(--foreground-color);
  background-image: url(/images/tip_bebebe.svg);
  background-size: 1.875rem 1.875rem;
  transform: rotate(-90deg);
  background-repeat: no-repeat; }

.infoWindowBottomLeft_light {
  position: absolute;
  right: -1.25rem;
  top: 0.3125rem;
  width: 1.875rem;
  height: 1.875rem;
  color: var(--foreground-color);
  background-image: url(/images/tip_bebebe.svg);
  background-size: 1.875rem 1.875rem;
  transform: rotate(-90deg);
  background-repeat: no-repeat; }

.infoWindowBottomLeft_dark {
  position: absolute;
  right: -1.25rem;
  top: 0.3125rem;
  width: 1.875rem;
  height: 1.875rem;
  color: var(--foreground-color);
  background-image: url(/images/tip_bebebe.svg);
  background-size: 1.875rem 1.875rem;
  transform: rotate(-90deg);
  background-repeat: no-repeat; }

.infoWindowTopLeft_light {
  position: absolute;
  right: -1.25rem;
  top: calc(100% - 2.8125rem);
  width: 1.875rem;
  height: 1.875rem;
  color: var(--foreground-color);
  background-image: url(/images/tip_bebebe.svg);
  background-size: 1.875rem 1.875rem;
  transform: rotate(-90deg);
  background-repeat: no-repeat; }

.infoWindowTopLeft_dark {
  position: absolute;
  right: -1.25rem;
  top: calc(100% - 2.8125rem);
  width: 1.875rem;
  height: 1.875rem;
  color: var(--foreground-color);
  background-image: url(/images/tip_bebebe.svg);
  background-size: 1.875rem 1.875rem;
  transform: rotate(-90deg);
  background-repeat: no-repeat; }

.infoWindowRight_light {
  position: absolute;
  left: -1.25rem;
  top: calc(50% - 0.9375rem);
  width: 1.875rem;
  height: 1.875rem;
  color: var(--foreground-color);
  background-image: url(/images/tip_bebebe.svg);
  background-size: 1.875rem 1.875rem;
  transform: rotate(90deg);
  background-repeat: no-repeat; }

.infoWindowRight_dark {
  position: absolute;
  left: -1.25rem;
  top: calc(50% - 0.9375rem);
  width: 1.875rem;
  height: 1.875rem;
  color: var(--foreground-color);
  background-image: url(/images/tip_bebebe.svg);
  background-size: 1.875rem 1.875rem;
  transform: rotate(90deg);
  background-repeat: no-repeat; }

.infoWindowBottomRight_light {
  position: absolute;
  left: -1.25rem;
  top: 0.3125rem;
  width: 1.875rem;
  height: 1.875rem;
  color: var(--foreground-color);
  background-image: url(/images/tip_bebebe.svg);
  background-size: 1.875rem 1.875rem;
  transform: rotate(90deg);
  background-repeat: no-repeat; }

.infoWindowBottomRight_dark {
  position: absolute;
  left: -1.25rem;
  top: 0.3125rem;
  width: 1.875rem;
  height: 1.875rem;
  color: var(--foreground-color);
  background-image: url(/images/tip_bebebe.svg);
  background-size: 1.875rem 1.875rem;
  transform: rotate(90deg);
  background-repeat: no-repeat; }

.infoWindowTopRight_light {
  position: absolute;
  left: -1.25rem;
  top: calc(100% - 2.8125rem);
  width: 1.875rem;
  height: 1.875rem;
  color: var(--foreground-color);
  background-image: url(/images/tip_bebebe.svg);
  background-size: 1.875rem 1.875rem;
  transform: rotate(90deg);
  background-repeat: no-repeat; }

.infoWindowTopRight_dark {
  position: absolute;
  left: -1.25rem;
  top: calc(100% - 2.8125rem);
  width: 1.875rem;
  height: 1.875rem;
  color: var(--foreground-color);
  background-image: url(/images/tip_bebebe.svg);
  background-size: 1.875rem 1.875rem;
  transform: rotate(90deg);
  background-repeat: no-repeat; }

.tutorialBottom {
  position: absolute;
  left: calc(50% - 0.9375rem);
  top: -1.3125rem;
  width: 1.875rem;
  height: 1.875rem;
  color: #000000;
  background-image: url(/images/tip_bebebe.svg);
  filter: brightness(0%);
  transform: rotate(180deg);
  background-size: 1.875rem 1.875rem;
  background-repeat: no-repeat; }

.tutorialRight {
  position: absolute;
  top: calc(50% - 0.9375rem);
  left: -1.3125rem;
  width: 1.875rem;
  height: 1.875rem;
  color: #000000;
  background-image: url(/images/tip_bebebe.svg);
  filter: brightness(0%);
  transform: rotate(90deg);
  background-size: 1.875rem 1.875rem;
  background-repeat: no-repeat; }

#deleteAOI {
  background: var(--background-color) !important;
  color: var(--foreground-color) !important; }

.icon-button {
  border: none;
  padding: 0; }

.link-styled-button {
  display: inline;
  padding: 0;
  border: 0;
  font: inherit;
  cursor: pointer;
  background: transparent;
  color: currentColor;
  text-align: left; }

.link-styled-button:hover {
  color: var(--link-hover-color);
  background: none; }

#alerts {
  margin-left: 0.3125rem; }

.sidebar {
  border-left: solid 0.0625rem #dddddd;
  border-top: solid 0.0625rem #dddddd;
  border-bottom: solid 0.0625rem #dddddd; }

#alerts H2 {
  margin-top: 0.3125rem;
  font-size: 1rem;
  font-weight: bold;
  float: left;
  margin-bottom: 0.3125rem; }

#alerts H3 {
  margin-top: 0.3125rem;
  font-size: 0.875rem;
  font-weight: bold;
  float: left; }

#alerts #email {
  font-size: 0.75rem;
  float: left;
  margin-top: 0.5rem; }

.alertLine {
  font-size: 0.75rem;
  line-height: 1rem;
  background: var(--background-color);
  color: var(--foreground-color); }

.indentAlert {
  display: block;
  padding-left: 1.25rem;
  margin-top: -0.8125rem; }

.alertDate {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #afbe19;
  background: var(--background-color);
  font-weight: 600;
  display: flex;
  justify-content: center; }

.alertLine a {
  background-color: var(--background-color);
  color: var(--foreground-color) !important;
  text-decoration: none;
  margin-top: 0.1875rem;
  margin-right: 0.1875rem; }

.alertLine a:hover {
  color: gray !important; }

#alertsMsg {
  font-size: 1.125rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
  text-align: center; }

#preStates {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
  width: 98% !important; }

.css-1492t68 {
  padding: 0px !important;
  margin: 0px !important; }

.keywordContainer {
  width: 64%;
  color: var(--foreground-color);
  padding: 0.375rem;
  margin-bottom: 0.25rem;
  border-radius: 0.5em; }

#keyword {
  border: none;
  padding: 0.25rem;
  margin-bottom: 0.25rem;
  width: 90%; }

#alertsDateRange {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem; }

#alertsDateRange input {
  height: 1.5rem;
  width: 6.25rem;
  margin-bottom: 0.375rem;
  border: 0.0625rem solid white;
  font-size: 0.75rem;
  padding: 0.375rem;
  border-radius: 0.5em; }

.alertsDates {
  font-size: 0.75rem;
  background-color: var(--background-color);
  color: var(--foreground-color);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  border: 0 0.3125rem solid #d9d9dc;
  border-radius: 0.5em; }

.alertDetailsClose {
  font-size: 1.5rem;
  float: right;
  margin-right: 0.375rem; }

.aoiListItem {
  color: black;
  font-size: 0.875rem;
  padding: .1rem;
  text-decoration: none; }

.aoiTd a:hover {
  color: var(--foreground-color); }

.aoiTrSelected {
  padding: 0.5rem;
  border: 0.25rem solid #009da7;
  margin-bottom: 1rem; }

.aoiTr {
  padding: 0.5rem;
  margin-bottom: 1rem; }

.aoiTrBorder {
  border-bottom: 0.0625rem solid navy; }

table.aoiTable {
  padding: 0px; }

tr.aoiTrBorder {
  padding: 0.375rem;
  border-top: 0.0625rem solid navy; }

tr.aoiTrBorder td {
  padding: 0.25rem;
  margin: 0.25rem;
  border-top: 0.0625rem solid gray; }

/*
  compare map units need to be in vw. If %, the inner div's will take up all of their parent, whereas
  vw is like px but for the viewport. 
*/
#compareAoiDescr {
  position: absolute;
  top: 0.625rem;
  font-size: large;
  font-weight: bold; }

.container {
  margin: 0 0;
  padding: 0 0;
  display: flex;
  flex-flow: column;
  display: block; }

#dmPanel {
  position: absolute;
  right: 0;
  font-family: Arial, sans-serif;
  font-size: 0.8125rem;
  margin: 0px;
  padding: 0.875rem; }

#font-color-palette, #background-color-palette {
  clear: both;
  margin-top: 0.125rem; }

.color-button {
  width: 1rem;
  height: 0.875rem;
  font-size: 0;
  margin: 0px 0.25rem 0.5rem 0px;
  float: left;
  border: 0.0625rem solid gray !important;
  cursor: pointer; }

.ttHeadNum {
  width: 0.9375rem; }

.annotationIcon {
  height: 2.25rem;
  width: 2.25rem;
  margin: 0.125rem;
  padding: 0.125rem;
  color: var(--foreground-color);
  background-color: var(--background-color); }

.annotationIconSelected {
  height: 2.25rem;
  width: 2.25rem;
  margin: 0.125rem;
  padding: 0.125rem;
  color: #000;
  background-color: silver; }

input[type='number'] {
  width: 3.125rem; }

.modal {
  padding: 1.25rem;
  position: absolute;
  z-index: 1;
  border: 0.0625rem solid #ccc;
  background: var(--background-color); }

.mask {
  position: fixed;
  height: 100vh;
  background: rgba(55, 55, 55, 0.6);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.resizer {
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: se-resize;
  margin: 0.3125rem;
  border-bottom: solid 0.125rem #333;
  border-right: solid 0.125rem #333; }

.drag-area {
  background: rgba(22, 22, 255, 0.2);
  height: 3.125rem;
  position: absolute;
  right: 0;
  top: 0;
  cursor: move; }

.drawIcon {
  padding: 0px;
  border: 0px none;
  color: var(--foreground-color);
  background-color: transparent;
  border: 0.0625rem solid #009da7; }

#typeTextHere {
  font-size: large;
  font-weight: bold; }

.fieldsetStyle {
  padding: 0.4375rem;
  border: 0.0625rem solid;
  margin-top: 0.4375rem;
  margin-bottom: 0.625rem;
  margin-right: 0.625rem;
  font-size: 1.0rem;
  width: 94%; }

#close-dmPanel {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  font-size: 1.375rem;
  text-decoration: none; }

#close-dmPanel a, #specialChar a {
  text-decoration: none; }

.optionsMargin {
  margin-top: 0.5rem; }

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  opacity: 1; }

#markerOptions input[type=number] {
  width: 9.375rem; }

#markerOptions input, #markerOptions textarea {
  border: 0.0625rem solid gray;
  margin-top: 0.375rem; }

.footer {
  position: fixed;
  bottom: 0vh;
  left: 0vh;
  background: var(--background-color);
  color: var(--foreground-color);
  margin: 0;
  width: 100vw;
  height: 3.125rem;
  z-index: 999999999;
  font-size: 0.8125rem;
  vertical-align: middle; }

.footer a {
  color: var(--foreground-color); }

.footer a:hover {
  color: #44E4EE !important; }

@media (min-width: 45rem) {
  .header {
    margin-bottom: 2.1875rem; } }

#loggedInMsg {
  background-color: #d66853;
  padding: 0.625rem;
  font-size: 0.625rem;
  position: fixed;
  top: 1rem;
  right: 15rem; }

#screenShotDiv {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%; }

#screenShot {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  height: auto;
  width: auto;
  overflow: auto;
  background-color: var(--background-color);
  color: var(--foreground-color);
  padding: 0.875rem;
  border: 0.0625rem solid;
  margin: 0.875rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  z-index: 9999999;
  border-radius: 0.5em; }

.imghere {
  height: 6.25rem; }

#cropped-image-clip-rectangle {
  height: 100%;
  clip-path: inset(1.25rem 3.125rem 0.625rem 0 round 3.125rem); }

#googlemap,
.googletimeline,
#drop-silhouette {
  position: absolute;
  top: 4.5rem;
  left: 0;
  height: calc(100% - 7.625rem);
  width: 100vw; }

#compareMap1 {
  position: absolute !important;
  left: 0px;
  top: 0px;
  height: 100%;
  z-index: 2000; }

.compareMap1Div_slider {
  position: fixed !important;
  left: 0px;
  top: 4.5rem;
  width: 100vw;
  height: calc(100% - 7.625rem);
  overflow: hidden !important; }

.compareMap1Div_transparency {
  position: fixed !important;
  left: 0px;
  top: 4.5rem;
  width: 100vw;
  height: calc(100% - 7.625rem);
  z-index: 995;
  overflow: hidden !important; }

.compareMap1Div_vertical {
  position: fixed !important;
  left: 0px;
  top: 4.5rem;
  width: 100vw !important;
  height: calc((100% - 7.625rem) / 2);
  overflow: hidden !important;
  border-bottom: 0.375rem solid white; }

.compareMap1Div_horizontal {
  position: fixed !important;
  left: 0px;
  top: 4.5rem;
  height: calc(100% - 7.625rem);
  left: 0px;
  width: calc((100% / 2) - 0.125rem);
  overflow: hidden !important;
  border-right: 0.375rem solid white; }

#mapSlider {
  position: fixed;
  top: 4.5rem;
  height: calc(100% - 7.625rem);
  width: 0.125rem;
  left: calc(50vw - 0.1875rem);
  z-index: 3000;
  border-right: solid 0.125rem white;
  margin-left: -0.125rem; }

#sliderHandle {
  font-size: 1.375rem;
  padding: 0.5rem;
  background: aliceblue;
  position: absolute;
  top: 50%;
  left: -1.125rem;
  z-index: 3000;
  white-space: nowrap;
  border: solid 0.0625rem blue;
  border-radius: 1.5em; }

#map {
  z-index: 1; }

.popup {
  display: none;
  position: absolute;
  z-index: 7;
  background-color: var(--background-color);
  color: var(--foreground-color);
  border: 0.0625rem solid #ccc;
  padding: 0.625rem;
  text-align: left; }

.tooltip {
  font-size: 0.875rem; }

#progressImg {
  position: fixed;
  padding: 0.5rem;
  border-radius: 0.5em;
  top: calc(100vh / 2);
  left: calc(100vw / 2);
  z-index: 9999999999; }

.map_popup {
  z-index: 999999999; }

.landingPage {
  position: fixed;
  top: 8vh;
  left: 1vh; }

.toolTip {
  color: var(--background-color) !important;
  background-color: var(--foreground-color) !important;
  border: 0.0625rem solid;
  font-size: 0.875rem;
  opacity: 1 !important; }

.gm-style-mtc[data-html2canvas-ignore="true"] {
  display: block; }

/* Display the control once it is inside the map. */
.selector-control {
  font-size: 0.875rem;
  line-height: 1.875rem;
  padding-left: 0.3125rem;
  padding-right: 0.3125rem; }

#staticMap {
  position: fixed;
  width: 12.5rem;
  height: 9.375rem;
  background-color: yellow;
  bottom: 10vh;
  right: 1.25rem;
  z-index: 999999999; }

.gm-style .gm-style-iw {
  font-size: 0.75rem;
  color: black;
  scrollbar-color: gray white;
  max-width: 25rem !important;
  max-height: 18.75rem !important;
  overflow: visible;
  border: none !important; }

.gm-style-iw-a {
  border: none !important; }

.gm-style-iw-d {
  margin-right: 0.5rem;
  border: none; }

.gm-style-iw-chr {
  height: 1.125rem;
  display: flex;
  overflow: visible;
  border: none; }

.gm-style-iw-chr button {
  right: -0.8125rem !important;
  top: -0.8125rem !important;
  padding: -0.5rem !important;
  opacity: 1;
  border-radius: 1.5625rem; }

.gm-style-iw-chr button:hover {
  background: silver !important; }

.message {
  z-index: 3000;
  position: absolute;
  font-size: large;
  padding: 0.75rem;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  background-color: var(--background-color);
  color: var(--foreground-color);
  min-width: 12.5rem;
  border-radius: 0.5em;
  border: 0.0625rem solid gray; }

#drop-container {
  display: none;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 5000;
  top: 0px;
  left: 0px;
  background-color: rgba(100, 100, 100, 0.5); }

#drop-silhouette {
  color: var(--foreground-color);
  border: white dashed 0.5rem;
  background-image: url("/images/drag.png");
  background-repeat: no-repeat;
  background-position: center; }

.compareDatesOnMap {
  position: absolute;
  bottom: 9.375rem;
  z-index: 90;
  background-color: #bebebe;
  color: #000;
  font-size: 0.8125rem;
  padding: 0.25rem;
  margin: 0px;
  width: 13.75rem;
  max-width: 25rem;
  max-height: 15.625rem;
  overflow: auto;
  border: 0.0625rem solid black;
  border-radius: 0.5em; }

.compareLegend {
  font-size: 0.625rem;
  padding-left: 0.125rem;
  padding-right: 0.125rem;
  /* margin-top: 0.75rem !important; */
  background-color: #bebebe;
  color: #000; }

#compare2Date {
  right: 0.625rem;
  z-index: 0 !important; }

#compare1Date {
  left: 0.625rem;
  z-index: 2001; }

#compare1DateVertical {
  right: 0.625rem;
  z-index: 2001; }

#nextTimeline,
#myLayer {
  position: fixed;
  bottom: 0.625rem;
  left: 1.25rem;
  font-size: 1.25rem;
  z-index: 999999;
  color: blue;
  background-color: var(--background-color);
  color: var(--foreground-color); }

.mapLayer {
  display: table-row;
  margin-top: 0.5rem;
  padding: 0.25rem;
  padding-bottom: 0.625rem;
  overflow-x: visible;
  background: var(--background-color); }

#kmlInfo {
  height: 100%; }

.blink_me {
  animation: blinker 1s linear infinite; }

@keyframes blinker {
  50% {
    opacity: 0; } }

#formatDW {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse; }

#formatDW td,
#formatDW th {
  border: 0.0625rem solid #ddd;
  padding: 0.25rem; }

#formatDW tr:nth-child(even) {
  background-color: #f2f2f2; }

#formatDW tr:hover {
  background-color: #ddd; }

#formatDW th {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  text-align: left;
  background-color: #04aa6d;
  color: var(--foreground-color); }

.highlightTots {
  font-weight: bold; }

#dwFilters {
  border-spacing: 0px;
  border-collapse: collapse;
  min-width: 75%;
  border: 0.0625rem solid; }

#dwFilters tr {
  border-bottom: 0.0625rem solid navy; }

#dwFilters th {
  color: #2c5ea3;
  text-align: left;
  white-space: nowrap;
  border-top: 0px;
  border-bottom: 0.125rem solid navy;
  text-align: left; }

#dwFilters th,
#dwFilters td {
  padding: 0.125rem 0.125rem; }

#dwFilters input {
  font-size: 0.75rem;
  margin-top: -0.25rem; }

#dwFilters [type="checkbox"] {
  margin-top: 0px; }

#dwFilters .css-tlfecz-indicatorContainer {
  padding: 0px !important; }

#dwFilters .css-6q0nyr-Svg {
  font-size: 0.625rem !important;
  color: #2c5ea3 !important; }

#overview {
  position: absolute;
  right: 0.625rem;
  height: 10.9375rem;
  width: 11.875rem;
  top: 5rem;
  z-index: 9;
  border: 0.0625rem solid black; }

.trHl {
  color: blue; }

#uploadToStorage {
  z-index: 3000;
  position: fixed;
  left: 40%;
  top: 20%;
  font-size: medium;
  padding: 0.5rem;
  background-color: var(--background-color);
  color: var(--foreground-color);
  width: auto;
  height: auto;
  border-radius: 0.5em;
  border: 0.0625rem solid gray; }

#bboxInit {
  padding: 0.5rem;
  margin-right: 0.375rem;
  background: var(--background-color);
  color: var(--foreground-color);
  border: 0.0625rem solid var(--foreground-color);
  border-radius: 0.5em; }

input[type="file"] {
  display: none; }

#localize-active-lang {
  font-size: 0.9rem !important; }

#localize-active-lang span {
  padding: 0.25rem !important;
  border: 0.15rem solid currentColor !important;
  border-radius: 1rem !important;
  margin-bottom: 0.2rem !important;
  margin-right: 0.25rem !important; }

#localize-powered-by {
  opacity: 0.55 !important; }

#localize-powered-by span {
  font-size: 0.7rem !important;
  line-height: 2.1rem !important; }

#localize-powered-by a {
  text-decoration: underline !important; }

#localized-widget-langs a {
  font-size: 0.85rem !important; }

#localize-widget {
  z-index: 999999999999 !important; }

#locationSearch {
  position: fixed;
  top: 9.125rem;
  left: 1.875rem;
  cursor: pointer;
  color: var(--foreground-color);
  background: var(--background-color);
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  padding-top: 0.625rem;
  width: 2.75rem;
  height: 1.875rem;
  border-radius: 0.5em; }

#locationSearch:hover {
  opacity: 1; }

#locationSearch a {
  color: inherit; }

#zoom {
  position: fixed;
  text-align: center;
  bottom: 10rem;
  right: 0.9375rem;
  font-size: 1rem;
  background-color: var(--background-color);
  color: var(--foreground-color);
  opacity: 0.65;
  padding: 0.3125rem 0px;
  width: 1.875rem;
  z-index: 99;
  border-radius: 0.5em; }

#zoomIn {
  position: fixed;
  text-align: center;
  right: 0.9375rem;
  bottom: 7.75rem;
  padding-top: 0.75rem;
  width: 1.875rem;
  height: 1.25rem;
  border-radius: 0.5rem 0.5rem 0px 0px !important;
  z-index: 9; }

#zoomOut {
  position: fixed;
  text-align: center;
  right: 0.9375rem;
  bottom: 5.75rem;
  padding-top: 0.5rem;
  height: 1.375rem;
  border-top: 0.0625rem solid gray;
  border-radius: 0px 0px 0.5rem 0.5rem !important;
  z-index: 9; }

.zoomControl {
  background-color: var(--background-color);
  opacity: 0.65;
  color: var(--foreground-color);
  font-size: 0.75rem;
  width: 1.875rem;
  cursor: pointer;
  font-size: 0.75rem; }

.zoomControl:hover {
  opacity: 1; }

#latLng {
  font-size: 0.6875rem;
  left: 5.3125rem;
  bottom: 3.4375rem;
  position: fixed;
  font-weight: bold;
  z-index: 3000;
  color: black;
  background: white;
  opacity: 0.65;
  font-weight: 600;
  padding: 0.125rem;
  padding-right: 0.5rem; }
  @media (max-width: 31.25rem) {
    #latLng {
      display: none; } }

#attributions {
  position: fixed;
  bottom: 3.1rem;
  right: 32rem;
  max-width: 25rem;
  font-size: 0.6rem;
  background-color: white;
  color: black;
  opacity: 0.7;
  font-weight: 500;
  line-height: 1.5; }

#attributions a {
  background-color: white;
  color: black;
  text-decoration: none; }

.whitebackground {
  background: var(--foreground-color) !important;
  color: var(--background-color) !important;
  border: none;
  font-size: 1rem; }

#logoForScreenshot {
  position: absolute;
  height: 4.5rem;
  z-index: 999999;
  display: var(--logo-on-map-display);
  top: 6.25rem;
  left: 1.25rem;
  height: 5rem;
  width: 6.875rem;
  background: #282828;
  border-radius: 0.5em; }

#mapTitle {
  position: fixed;
  top: 5.5rem;
  margin: 0.25rem;
  z-index: 9999;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  font-weight: 500;
  background: transparent;
  color: var(--background-color); }

#alertsBarchart {
  position: fixed;
  top: 12rem;
  left: 28rem;
  height: auto;
  max-width: calc(100vw - 32rem);
  overflow: auto;
  background-color: var(--background-color);
  color: var(--foreground-color);
  padding: 0.875rem;
  border: 0.0625rem solid;
  margin: 0.875rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  z-index: 9999999;
  border-radius: 0.5em; }

#header {
  position: fixed;
  top: 0px;
  margin: 0px;
  padding: 0px;
  left: 0px;
  padding-left: 1.875rem;
  width: 100%;
  color: #fff;
  background-color: var(--black);
  height: 4.5rem;
  vertical-align: middle;
  z-index: 99; }

#logo {
  position: absolute;
  top: 0.4vh;
  left: 6rem;
  z-index: 9999;
  margin: 0;
  padding: 0.5rem; }

#alertsLogo {
  height: 4.5rem;
  overflow: hidden; }

#alertsHeadingText {
  font-size: 1.5rem;
  font-weight: 500;
  margin-left: 0.5rem;
  margin-top: 1.5625rem !important;
  letter-spacing: 0.1em;
  position: fixed;
  font-family: "roboto", sans-serif;
  color: var(--foreground-color); }

@media (max-width: 68.75rem) {
  #alertsHeading {
    display: none; } }

#headerLinks {
  display: inline;
  position: absolute;
  padding-left: 1.25rem;
  right: 1.875rem;
  top: 1.625rem;
  font-size: 0.875rem; }

#headerLinks a {
  padding-right: 1.5625rem;
  text-decoration: none; }

.responsive {
  margin-left: 1rem;
  height: 3.125rem; }

.header__title {
  color: #364156;
  font-size: 4rem;
  font-weight: bold;
  margin-left: 0.8rem;
  vertical-align: top; }

.huge {
  font-size: 6rem;
  margin-left: 0.625rem; }

@media (min-width: 45rem) {
  .header {
    margin-bottom: 2.1875rem; } }

#loggedInMsg {
  background-color: #d66853;
  padding: 0.625rem;
  font-size: 0.625rem;
  position: fixed;
  top: 1rem;
  right: 15rem; }

.userName {
  color: var(--foreground-color);
  word-wrap: break-word;
  font-size: 0.8125rem; }

#loginHeader {
  background-color: black;
  padding: 0.2rem; }

#pac-container {
  z-index: 999999 !important;
  padding-bottom: 0.75rem;
  margin-right: 0.75rem; }

.pac-card {
  margin: 0.625rem 0.625rem 0 0;
  border-radius: 0.125rem 0 0 0.125rem;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: none;
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.3);
  background-color: #fff;
  font-family: Roboto;
  z-index: 999999 !important; }

#pac-input {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.375rem;
  width: 14.0625rem;
  height: 2.5rem;
  z-index: 99 !important;
  position: fixed !important;
  background-color: var(--background-color) !important;
  color: var(--foreground-color);
  top: 9.125rem;
  left: 4.1875rem;
  border-top: none 0px;
  border-right: none 0px;
  border-bottom: none 0px;
  border-left: 0.0625rem solid var(--foreground-color);
  display: none;
  border-radius: 0px 0.625rem 0.625rem 0px;
  box-sizing: border-box; }

#pac-input:focus {
  outline-width: 0; }

#headerBanner {
  font-size: 1.125rem;
  position: absolute;
  color: green;
  padding: 0.4375rem;
  vertical-align: middle;
  top: 2.5rem;
  right: 10rem; }

#userIcon {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.4375rem;
  padding-left: 0.6rem;
  position: fixed !important;
  color: #000000 !important;
  right: 1vw !important; }
  @media (max-width: 48.125rem) {
    #userIcon {
      display: none; } }

#bellText {
  margin-left: 0.4375rem;
  font-size: 0.8125rem;
  color: var(--foreground-color); }
  @media (max-width: 31.25rem) {
    #bellText {
      display: none; } }

#recordGif {
  position: fixed;
  right: 9.375rem;
  top: 0.625rem;
  background-color: var(--background-color);
  color: var(--foreground-color);
  z-index: 99999;
  white-space: nowrap; }

#headerLogin {
  position: fixed;
  right: 0px;
  top: 0px;
  background-color: var(--background-color);
  color: var(--foreground-color);
  padding: 0.5rem;
  padding-right: 2.5rem;
  z-index: 99999;
  display: block !important;
  border-radius: 0px 0px 0px 0.625rem;
  border-left: solid 0.0625rem #535359;
  border-bottom: solid 0.0625rem #535359;
  border-right: none;
  font-size: 0.875rem; }
  @media (max-width: 43.75rem) {
    #headerLogin {
      display: none; } }

#headerLogin a {
  color: var(--foreground-color);
  text-decoration: none; }

#headerLogin a:hover {
  color: #44E4EE;
  text-decoration: none; }

.menu-item {
  font-size: 0.8125rem; }

.menu-item [type="checkbox"] {
  color: var(--foreground-color);
  display: inline; }

#fb {
  margin-top: 1.25rem; }

#alertsHeading a {
  text-decoration: none; }

#aoiDescr {
  font-size: 1.125rem;
  position: absolute;
  top: 2.875rem;
  left: 12.5rem;
  width: 37.5rem;
  color: #afbe19;
  vertical-align: middle;
  white-space: nowrap; }
  @media (max-width: 62.5rem) {
    #aoiDescr {
      left: 12.5rem; } }
  @media (max-height: 46.875rem) {
    #aoiDescr {
      width: 9.375rem; } }
  @media (max-width: 43.75rem) {
    #aoiDescr {
      display: none; } }

#video {
  border-radius: 13pt;
  height: auto;
  width: calc(20rem + 25vw); }

#video:fullscreen {
  border-radius: 0 !important; }

#donateLink {
  position: absolute;
  right: 9.875rem;
  top: 0.25rem;
  background-color: #162548;
  color: #FFFFFF;
  padding: 0.1875rem 0.9375rem;
  z-index: 99999;
  display: block;
  border: solid 0.125rem #009DA7;
  border-radius: 0.1875rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase; }
  @media (max-width: 43.75rem) {
    #donateLink {
      display: none; } }

#donateLink a {
  text-decoration: none;
  color: #FFFFFF; }

#beta {
  width: 1.875rem;
  border-radius: 0.5em;
  background-color: purple;
  color: #fff;
  padding: 0.125rem; }

#feedbackModal {
  border: 0.0625rem solid;
  border-radius: 0.5em; }

textarea {
  color: var(--foreground-color);
  background: var(--background-color); }

.header-banner-wrapper {
  position: fixed;
  display: flex;
  margin: 0.25rem;
  flex-direction: column;
  top: 9rem;
  width: 45rem;
  background: var(--background-color);
  border-radius: 0.625rem;
  border: var(--foreground-color) solid 1px;
  box-shadow: 0.125rem 0.25rem #938e8e;
  color: var(--foreground-color);
  align-items: center;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%); }

.header-banner-header {
  margin-bottom: 0;
  margin-top: 0.5rem; }

.header-banner-body {
  padding: 0 0.5rem; }

.header-banner-icon {
  position: absolute;
  right: 0;
  background: inherit;
  color: inherit;
  padding-right: 0.5rem;
  padding-top: 0.5rem; }

#helpDiv {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  z-index: 999999999 !important;
  width: auto;
  background-color: var(--background-color);
  color: var(--foreground-color);
  padding: 0.875rem;
  border: 0.0625rem solid;
  margin: 0.875rem;
  height: auto;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-radius: 0.5em; }

#helpContent {
  overflow: auto;
  position: relative;
  min-width: 45vw;
  min-height: 6.25rem;
  max-height: 60vh;
  max-width: 45vw;
  margin-top: 0.625rem; }

#writeOver, #locationChangePrompt {
  font-size: 1rem;
  background: var(--foreground-color);
  color: var(--background-color);
  padding: 1rem;
  border: 0.0625rem solid black;
  border-radius: 0.5em; }

.saveFormLine {
  margin-top: 0.75rem; }

.saveLabel {
  font-size: 0.875rem;
  margin: 0.5rem; }

.saveField {
  font-size: 1.125rem;
  margin: 0.5rem; }

#issuesDiv {
  position: relative;
  display: contents;
  z-index: 99;
  background: var(--background-color);
  color: var(--foreground-color); }

#issueContent {
  position: relative;
  min-width: 18.75rem;
  font-size: 1rem; }

#issueContent a {
  cursor: pointer; }

#saveHeader {
  position: relative;
  width: 100%;
  height: 3.125rem;
  font-size: 1.875rem;
  text-align: left; }

#issueInfo {
  position: absolute;
  top: 1.5625rem;
  width: 96%; }

#issueExplain {
  position: relative;
  width: 100%;
  left: 0px;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  max-height: 5.625rem;
  overflow: auto;
  margin: 0px 0px 0.75rem 0px; }

#issueHowto {
  position: absolute;
  left: 50%;
  width: 45%; }

#issueShare {
  position: absolute;
  top: 5.625rem;
  font-size: 1rem;
  font-weight: bold; }

#issueTabs {
  position: absolute;
  top: 8.75rem;
  width: 100%;
  min-width: 37.5rem;
  border: 0.0625rem solid navy;
  margin-bottom: 0.5rem; }

#saveIssueTab, #openIssues {
  position: relative;
  margin-top: 0.5rem;
  vertical-align: top;
  padding: 0.125rem;
  border: 0.0625rem solid navy; }

#saveIssueTab td {
  vertical-align: middle; }

#issues {
  position: absolute;
  top: -1rem;
  left: 20rem;
  background: white;
  padding: 0.375rem;
  width: calc(100% - 20rem);
  max-height: 25rem;
  overflow: auto;
  font-size: 0.875rem !important;
  margin: 0.5rem;
  z-index: 99999999 !important;
  border: 0.0625rem solid navy; }

#saveForm {
  font-size: 0.9375rem;
  margin: 0px;
  align-items: center;
  align-content: center;
  background: var(--background-color);
  color: var(--foreground-color);
  border-radius: 0.5em; }

#saveForm .errorMsg {
  border: 0px none;
  text-align: left; }

.closeBigModal {
  font-size: 2.625rem;
  margin: 0px;
  float: right; }

.closeMediumModal {
  font-size: 1.375rem;
  margin: 0px;
  float: right;
  vertical-align: middle !important; }

#issueInfo h3 {
  margin-bottom: 0px; }

#openIssues {
  width: 100%;
  min-width: 18.75rem;
  height: calc(100vh - 36rem);
  overflow: auto;
  font-size: 1.125rem !important;
  padding: 0.25rem; }

.ReactTable .-btn {
  background: var(--background-color);
  color: var(--foreground-color) !important;
  font-weight: bold !important; }

.ReactTable .-previous, .ReactTable .-next {
  background: var(--background-color);
  color: var(--foreground-color) !important;
  border-radius: 0.5em; }

.mce-notification {
  display: none !important; }

.formButtonSmall {
  padding: 0.4375rem;
  font-size: 0.75rem;
  line-height: 1;
  border-radius: .3rem;
  color: #007bff;
  background-color: transparent;
  background-image: none;
  border: 0.0625rem solid #007bff;
  display: inline-block;
  font-weight: 300;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle; }

.formButtonSmall:hover, .formButtonSmall:hover {
  background-color: #007bff !important;
  color: var(--foreground-color); }

.rt-th {
  font-size: 1rem;
  float: left; }

.rt-resizable-header-content {
  float: left;
  font-weight: 600;
  font-size: 0.9375rem; }

.rt-th input {
  float: left; }

#subscribe {
  font-size: 0.875rem;
  position: absolute;
  top: 0.5rem;
  left: 29.375rem; }
  @media (max-width: 68.75rem) {
    #subscribe {
      left: 19.375rem; } }
  @media (max-height: 46.875rem) {
    #subscribe {
      width: 32.5rem; } }
  @media (max-width: 31.25rem) {
    #subscribe {
      width: 26.25rem; } }

#issueBar {
  display: block;
  font-size: 1.5rem;
  position: absolute;
  top: 1.5625rem;
  left: 21.875rem;
  width: 50vw;
  white-space: nowrap; }
  @media (max-width: 37.5rem) {
    #issueBar {
      display: none; } }

#issueBar a {
  color: var(--foreground-color);
  cursor: pointer; }

#subscribe a {
  cursor: pointer; }

#issueModalDiv {
  height: 95%;
  overflow: auto; }

#issueBarContent {
  position: relative;
  height: auto;
  width: 94%;
  overflow: auto;
  margin-bottom: 0.5rem; }

#issueBarContent a {
  font-weight: bold; }

#issueBarContent ul {
  margin-left: 0.75rem; }

#draggableIssueMap {
  position: fixed;
  left: 10.9375rem !important;
  top: 0.9375rem;
  padding: 0.5rem;
  display: inline-block;
  background: white;
  color: black;
  z-index: 99999 !important;
  width: 30%;
  max-width: 25rem;
  height: auto;
  border: 0.0625rem solid;
  border-radius: 0.5em; }

/* Popup container */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer; }

/* The actual popup (appears on top) */
.popup .popuptext {
  visibility: hidden;
  width: 10rem;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 0.375rem;
  padding: 0.5rem 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -5rem; }

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -0.3125rem;
  border-width: 0.3125rem;
  border-style: solid;
  border-color: #555 transparent transparent transparent; }

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  visibility: visible;
  animation: fadeIn 1s; }

/* Add animation (fade in the popup) */

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.issueTd {
  border: 0.0625rem solid gray;
  margin: 0.625rem;
  padding: 0.375rem;
  height: 11.75rem;
  width: 80%;
  overflow: auto; }

#fullFileName {
  background-color: #FFF;
  color: #888;
  height: 2.25rem;
  line-height: 1.5;
  border: 0px !important;
  font-size: 1.125rem; }

#fullFileName input {
  border: 0.0625rem solid black;
  line-height: 1.4;
  font-size: 1.125rem;
  background-color: #FFF;
  padding: 0.125rem;
  margin: 0px; }

table.issueFormTable {
  border-collapse: collapse;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  font-size: 1rem;
  width: 100%; }

table.issueFormTable input {
  font-size: 1.125rem;
  margin-left: 0.25rem; }

table.issueFormTable tbody {
  vertical-align: middle;
  align-items: center;
  align-content: center; }

table.issueFormTable td {
  text-align: middle;
  padding: 0.25rem; }

table.issueFormTable td.rightJust {
  text-align: right;
  padding-right: 0.125rem !important; }

table.issueFormTable td.topJust {
  vertical-align: top !important; }

.regLabel {
  font-size: medium; }

#whatsNewBar {
  position: absolute;
  top: 0.25rem;
  background-color: #162548;
  color: var(--foreground-color);
  padding: 0.3125rem 0.625rem;
  z-index: 99999;
  display: block;
  border-radius: 0.75rem;
  border: 0.125rem solid #009da7;
  font-size: 0.875rem;
  left: 12.5rem;
  max-width: 37.5rem;
  color: var(--foreground-color);
  white-space: nowrap; }
  @media (max-width: 62.5rem) {
    #whatsNewBar {
      left: 12.5rem; } }
  @media (max-width: 56.25rem) {
    #whatsNewBar {
      display: none; } }

#whatsNewBar a {
  color: var(--foreground-color);
  cursor: pointer;
  text-decoration: none;
  animation: blinker 1.5s steps(1, end) 3; }

@keyframes blinker {
  50% {
    color: #afbe19; } }

#newHere {
  background-color: black;
  padding: 0.625rem;
  border: 0.0625rem solid;
  margin: 0.875rem 0px; }

.displayMsg {
  font-size: 0.875rem;
  margin-top: 0.875rem;
  color: red;
  border: 0.0625rem solid;
  padding: 0.875rem; }

.loginLabel {
  font-size: 1rem; }

.spaceFormElement {
  margin-top: 0.125rem;
  margin-bottom: 0.875rem;
  line-height: 1.12rem; }

#loginPopup {
  position: absolute;
  height: 5.625rem;
  font-size: 0.875rem;
  width: 9.375rem;
  z-index: 99;
  border: 0.0625rem solid var(--foreground-color);
  background: var(--callout-background-color);
  color: var(--foreground-color);
  opacity: 1.0 !important;
  padding: 0.5rem;
  border-radius: 0.5em;
  top: 0.625rem;
  left: 0.625rem; }

.otherButton {
  border: none;
  text-decoration: underline;
  margin: 0.1rem 0.25rem 1rem 0.25rem;
  padding: 0rem;
  background-color: transparent;
  opacity: 0.65; }

.otherButton:hover {
  opacity: 1.0; }

#mapOptionsChild {
  position: fixed;
  top: 14.25rem; }

#closeSidebar {
  position: absolute;
  top: 15.625rem;
  left: 28.1875rem;
  font-size: 1.125rem;
  min-height: 1.375rem;
  width: 1rem;
  align-items: center;
  justify-content: center;
  height: 1.6875rem;
  padding: 0.25rem;
  padding-top: 0.75rem;
  background: var(--background-color);
  z-index: 98;
  color: var(--foreground-color);
  border-radius: 0px 0.5em 0.5em 0px; }

#sizeOptions {
  position: relative;
  right: -1.25rem;
  float: right;
  font-size: x-large;
  font-weight: 800;
  height: 1.375rem;
  min-height: 1.375rem;
  background-color: var(--background-color);
  color: var(--foreground-color);
  width: 1.4375rem;
  border: 0.0625rem solid;
  border-right: 0px none;
  align-items: center;
  justify-content: center;
  padding: 0.375rem;
  z-index: 9999; }

#sizeOptions a:hover,
.fileIcons:hover {
  text-decoration: none;
  color: #44e4ee; }

.fileIcons {
  position: absolute;
  text-decoration: none;
  padding-top: 0.75rem;
  cursor: pointer;
  color: var(--foreground-color);
  background: #000000;
  opacity: 0.65;
  left: 1.875rem;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  width: 2.5rem;
  height: 1.875rem;
  top: 5.125rem;
  border-radius: 0.5em; }

#openIcon {
  position: absolute; }

#shareIcon {
  position: absolute; }

#annotateIcon {
  position: absolute; }

#mapIcon {
  position: absolute;
  left: 29rem; }

#labsIcon {
  position: absolute;
  left: 29rem; }

#satelliteIcon {
  position: absolute;
  left: 412.25rem; }

.minimizedModalHeight {
  height: 1.25rem;
  overflow: hidden !important; }

.maximizedModal {
  overflow: visible; }

#ugaIcon {
  position: absolute;
  left: 33rem; }

#compareIcon {
  position: absolute; }

#mainOptions {
  position: relative;
  top: 1.5rem; }

.sidebarPopup {
  border: 0 none;
  display: table;
  margin-bottom: 0;
  margin-left: 0.75rem;
  padding: 0.5rem;
  background: var(--background-color);
  color: var(--foreground-color);
  font-size: 0.875rem;
  margin-right: 0.5rem;
  border-radius: 0.5em; }

#reportDetail,
.dndFiles {
  position: relative;
  display: block;
  overflow: visible;
  padding: 0.375rem; }

#reportDetail {
  overflow-y: auto; }

.dndFiles {
  font-size: 0.875rem; }

.dndFilesUploading {
  z-index: 3000;
  position: fixed;
  right: 0.3125rem;
  top: 5rem;
  font-size: small;
  padding: 0.25rem;
  padding-right: 1rem;
  background-color: var(--background-color);
  color: var(--background-color);
  width: auto;
  height: auto;
  border-radius: 0.5em;
  border: 0.0625rem solid gray; }

.dndDiv {
  font-size: 0.875rem;
  margin-top: 0.5rem;
  border: 0.0625rem solid;
  padding: 0.5rem;
  position: relative;
  width: 95%;
  overflow-x: visible; }

.dndLabel {
  font-weight: bold;
  overflow: auto; }

.dndData {
  position: absolute;
  left: 3.125rem;
  font-weight: normal !important; }

#alertsSideBar {
  width: 96%;
  overflow: hidden; }

#alertsInfobox {
  display: none;
  position: fixed;
  top: 6.75rem;
  left: 7.5rem;
  width: 19.375rem;
  margin-left: -2rem;
  padding: 0.4375rem;
  border: 0.125rem solid #162548;
  font-size: 0.75rem;
  background: var(--background-color);
  z-index: 999999 !important;
  opacity: 1;
  border-radius: 0.5em; }

.closeAlertsInfobox {
  float: right;
  font-size: 0.875rem;
  margin: 0.25rem; }

#alertsSideBar a {
  color: black; }

#aoiSideBar {
  font-size: 1rem;
  background: var(--background-color);
  color: var(--foreground-color);
  min-height: 11.25rem; }

#aoiSideBar a {
  font-size: 1rem !important; }

#aoiSideBar a:hover {
  color: #44e4ee !important; }

#aoiResults {
  max-height: calc(100vh - 28.125rem);
  overflow: auto; }

#aoiSideBar a {
  font-size: 0.75rem;
  text-decoration: none; }

.optionButton {
  border: none;
  background-color: inherit;
  font-size: 1.8rem;
  color: #000000;
  font-weight: bold;
  margin-top: 0.625rem;
  margin-bottom: 0.625rem; }

.optionButton:hover {
  color: red; }

.mapOptionButton {
  padding: 0.4375rem;
  font-size: 0.8125rem !important;
  line-height: 1.5;
  border-radius: 0.3rem;
  border: 0.0625rem solid var(--foreground-color);
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  margin-bottom: 0.4375rem !important; }

.mapOptionButton img {
  vertical-align: middle; }

.mapOptionButton:disabled {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.3rem;
  color: grey;
  background-color: transparent;
  background-image: none;
  border: 0.0625rem solid #007bff;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  margin-bottom: 0.4375rem !important; }

.mapOptionButtonBig {
  border: none;
  background-color: inherit;
  font-size: 2rem;
  padding: 0.4375rem;
  margin-bottom: 0.625rem; }

.mapOptionButtonSmall {
  padding: 0.4375rem;
  font-size: 0.75rem;
  line-height: 1;
  border-radius: 0.3125rem;
  color: var(--foreground-color);
  background-color: transparent;
  background-image: none;
  border: 0.0625rem solid var(--foreground-color);
  display: inline-block;
  font-weight: 300;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  margin-bottom: 0.4375rem !important; }

.mapOptionButtonSmall:hover,
.mapOptionButton:hover {
  background: gray; }

.exportButton {
  padding: 0.4375rem;
  font-size: 0.75rem;
  line-height: 1;
  border-radius: 0.3rem;
  background-image: none;
  display: block;
  font-weight: 300;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 0.4375rem !important;
  margin-right: 0.875rem;
  float: right; }

#aoiNew {
  padding: 0.625rem 0; }

.drawicon {
  padding: 0.4375rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  border-radius: 0.3rem;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  margin-bottom: 0.4375rem !important;
  color: var(--foreground-color);
  text-decoration: underline;
  background-color: transparent;
  border: 0.0625rem solid #009da7; }

.DateRangePickerInput {
  margin-bottom: 0.375rem; }

#divAlerts {
  min-height: 3.75rem; }

#satellite {
  z-index: 9999999 !important;
  min-height: 19.375rem;
  max-height: calc(100vh - 18.75rem);
  overflow: auto; }

#satelliteTypesDiv {
  height: 6.25rem;
  overflow-y: scroll; }

.DateRangePicker_picker,
.DateRangePicker_picker_1,
.DateRangePicker_picker__directionLeft,
.DateRangePicker_picker__directionLeft_2 {
  z-index: 99999999 !important; }

.DateInput {
  background-color: inherit;
  color: black; }

.spanRight {
  float: right;
  margin-right: 1.25rem; }

.closeModalButton {
  position: absolute;
  font-size: large;
  top: 1.125rem;
  right: 1.125rem; }

.closeModalButton2 {
  position: absolute;
  font-size: large;
  top: 0.375rem;
  right: 0.375rem;
  color: black; }

.ReactModal__Content {
  height: 62vh; }

[data-icon]:before {
  font-family: icons;
  /* BYO icon font, mapped smartly */
  content: attr(data-icon);
  speak: none;
  /* Not to be trusted, but hey. */ }

.aoiShapeEdit {
  margin-right: 0.625rem; }

.alertHead {
  font-size: 0.875rem;
  font-weight: bold; }

.react-switch-bg {
  height: 0.625rem; }

.modalScroll {
  overflow: auto; }

#mapOptionInfo,
#mapOptionLayers,
#mapOptionAOIs,
#annotations,
#settingsMenu {
  font-size: 0.875rem;
  margin-right: 0.5rem; }

#annotations {
  min-height: 15rem;
  width: 20rem; }

#mapOptionLayers {
  overflow-y: auto;
  overflow-x: hidden; }

.shareLink {
  padding: 0.25rem;
  background-color: silver;
  width: 31.25rem; }

#exportId {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 95%;
  min-height: 31.25rem;
  width: calc(100% - 4rem);
  border: 0.0625rem solid black;
  border-radius: 0.5em;
  padding: 0.875rem;
  margin-right: 0px;
  background-color: var(--background-color);
  color: var(--foreground-color);
  overflow: auto;
  z-index: 999999; }

.ReactTable {
  height: 90%;
  font-size: 0.75rem;
  display: block; }

.-pageJump input {
  background-color: var(--background-color) !important;
  color: var(--foreground-color) !important; }

#openIssuesReactTable {
  height: 75%;
  width: 37.5rem; }

#openIssuesReactTable input {
  background: var(--background-color);
  color: var(--foreground-color); }

#noAlertsSelectedDiv {
  border: 0.0625rem solid var(--foreground-color);
  background-color: var(--background-color);
  color: var(--foreground-color);
  /* height: 3.125rem; */
  width: 90%;
  height: 3.125rem;
  margin: 0.75rem 0px;
  padding: 0.875rem;
  border-radius: 0.5em; }

table.feedsTable {
  border: 0.0625rem solid #d9d9dc;
  /* height: 3.125rem; */
  width: 98%;
  height: 3.125rem;
  max-height: 9.375rem !important;
  overflow-y: auto !important;
  margin-bottom: 0.5rem;
  padding: 0.25rem;
  border-radius: 0.5em; }

table.feedsTable tr {
  border-bottom: 0.03125rem solid darkgray;
  margin-bottom: 0px; }

table.feedsTable td {
  vertical-align: middle;
  padding: 0.03125rem; }

.css-6q0nyr-Svg {
  color: black !important; }

#legend {
  position: fixed;
  bottom: 5.625rem;
  left: 1.875rem;
  padding: 0.5rem;
  display: inline-block;
  background: var(--background-color);
  color: var(--foreground-color);
  font-size: 0.625rem;
  z-index: 9;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 0.5em; }

.legendWithSidebar {
  left: 29.6875rem !important; }

.legendWithoutSidebar {
  left: 1rem !important; }

.legendWithLayerTimeline {
  left: 1rem !important;
  bottom: 9.375rem !important; }

#rygPalette {
  background-image: linear-gradient(to right, #d7191c, #fdae61, #ffffc0, #a6d96a, #1a9641, #0a3c1a);
  height: 2.5rem;
  width: 100%; }

.handle {
  font-size: large;
  color: #009da7; }

.form-check label {
  font-size: large; }

.react-hint {
  z-index: 999999; }

#satellite fieldset {
  margin-top: 0.75rem; }

#satellite label {
  font-size: 0.875rem; }

div.tableSelect.css-2b097c-container {
  width: 9.375rem; }

div.relativeSelect.css-2b097c-container {
  width: 17.1875rem; }

table.issueTr td {
  border: 0px none; }

#accountDiv {
  padding: 0.625rem;
  display: inline-table; }

#loginDiv {
  background-color: black;
  color: var(--foreground-color); }

.keyImageDiv {
  margin-top: 0.5rem;
  max-width: 25rem;
  word-wrap: break-word; }

.gradientStyle {
  font-size: 0.875rem;
  margin-top: 0.25rem;
  margin-bottom: 0.125rem;
  height: 0.75rem;
  width: 1.25rem;
  background-image: linear-gradient(180deg, red, yellow); }

.red {
  color: red; }

.white {
  color: white; }

.redYellowGradient {
  margin-top: 0.25rem;
  margin-bottom: 0.125rem;
  height: 0.75rem;
  width: 1.25rem;
  background-image: linear-gradient(180deg, red, yellow); }

.greenBlueGradient {
  margin-top: 0.25rem;
  margin-bottom: 0.125rem;
  height: 0.75rem;
  width: 1.25rem;
  background-image: linear-gradient(180deg, green, blue); }

.greenBlueRedGradient {
  margin-top: 0.25rem;
  margin-bottom: 0.125rem;
  height: 0.75rem;
  width: 1.25rem;
  background-image: linear-gradient(180deg, green, blue, red); }

.layerContainer {
  padding-bottom: 0px;
  width: 98%;
  overflow-x: visible; }

.layerControl {
  padding: 0.375rem 0.375rem 0.375rem 0px;
  padding-bottom: 0px;
  margin-top: 0.25rem;
  width: 90%;
  height: -moz-max-content;
  height: max-content;
  max-height: 50rem; }

.opened {
  margin-bottom: 0.25rem;
  background-color: var(--background-color);
  color: var(--foreground-color);
  border: 0.0625rem solid navy; }

.layer1stLine {
  display: inline-table;
  background-color: white;
  color: black;
  margin-top: 0.625rem;
  margin-bottom: 0.125rem;
  font-size: 0.875rem;
  height: 1.25rem;
  width: 21.875rem;
  padding: 0.25rem 0rem 0rem 0rem;
  border-radius: 0.5em; }

.layer1stLine a {
  color: black;
  text-decoration: none; }

.showCheckbox {
  display: inline-block !important; }

.datePickerPopup {
  position: fixed;
  float: left;
  z-index: 999999999 !important; }

.layerKey {
  display: inline-flex;
  margin-top: -0.5rem; }

.darkGrey {
  color: #3c3c46; }

.layerName {
  display: inline;
  position: relative;
  left: 0.75rem;
  max-width: 17.1875rem;
  height: 1.125rem;
  overflow: hidden; }

.divLayerName {
  height: 1.25rem;
  max-height: 6.25rem; }

.showDescription {
  position: relative;
  left: 0px;
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  padding: 0.25rem;
  border: 0.0625rem solid #162548;
  background-color: var(--background-color);
  color: var(--foreground-color);
  z-index: 999999 !important;
  max-height: 18.75rem;
  overflow: auto;
  word-break: break-word;
  border-radius: 0.5em; }

.rcSlider300 {
  width: 18.75rem !important; }

#layersDateRange input {
  height: 1.5rem;
  width: 7.8125rem;
  margin-bottom: 0.375rem; }

.react-tabs {
  display: flex;
  margin-left: 1.875rem;
  height: auto; }

.react-tabs__tab-list {
  display: flex;
  flex-direction: column;
  padding-top: 0.25rem 0px;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  width: 2.75rem; }

.react-tabs__tab-list a {
  color: var(--foreground-color); }

.react-tabs__tab {
  cursor: pointer;
  color: var(--foreground-color);
  background: var(--background-color);
  opacity: var(--panel-opacity);
  align-items: center;
  margin: 0px;
  padding: 0.375rem !important; }

.react-tabs__tab:hover {
  opacity: 1; }

.topOfIconsCurve {
  position: absolute;
  margin-top: -1.875rem;
  margin-left: -1.375rem;
  padding-top: 0.625rem;
  background-color: var(--background-color);
  /* opacity: $opacity; */
  height: 1.625rem;
  width: 2.75rem;
  margin-top: px;
  border-radius: 0.5rem 0.5rem 0px 0px !important; }

.bottomOfIconsCurve {
  position: absolute;
  margin-left: -1.375rem;
  background-color: var(--background-color);
  /* opacity: $opacity; */
  height: 1.875rem;
  width: 2.75rem;
  border-radius: 0px 0px 0.5rem 0.5rem !important; }

.react-tabs__tab--selected {
  border-radius: 0% !important;
  opacity: 1;
  border: 1px solid transparent;
  border-bottom: none; }

.react-tabs__tab-panel {
  display: none;
  margin-top: -1.3125rem;
  width: 22.5rem; }

.react-tabs__tab-panel--selected {
  display: block; }

.react-tabs__tab--disabled {
  color: silver;
  cursor: default; }

.dwDiv {
  font-size: 0.875rem;
  padding-top: 0.5rem;
  width: 95%;
  padding-bottom: 0.75rem; }

#dwTab label {
  font-size: 0.875rem; }

.flex-container {
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap; }

.flex-item-left {
  flex: 40%; }

.flex-item-right {
  flex: 60%; }

.label1 {
  font-size: 0.875rem;
  margin-top: 0.375rem; }

.nospace {
  padding-top: 0px;
  padding-bottom: 0px; }

.firebrick {
  color: firebrick;
  font-weight: bold; }

#sidebarInfo {
  position: relative;
  margin: 0.25rem;
  padding: 0.4375rem;
  border: 0.03125rem solid gray;
  font-size: 0.75rem;
  overflow: auto;
  border-radius: 0.5em; }

.working {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  align-items: center; }

.tabHelp {
  background-color: var(--background-color);
  color: var(--foreground-color);
  font-size: 1.0625rem;
  font-weight: bold;
  margin-bottom: 0.5rem; }

.sb {
  transition-timing-function: ease-in-out; }

#selectLayer {
  position: fixed;
  width: 22rem;
  padding: 0px 0.375rem;
  display: block;
  z-index: 99;
  border-radius: 0.5em; }

#divAlerts,
#satellite {
  position: relative;
  font-size: 0.875rem;
  width: 21.875rem;
  max-height: calc(100vh - 19.375rem);
  overflow: auto; }

#basemaps {
  position: relative;
  display: inline-table;
  padding: 0.625rem;
  font-size: 0.875rem;
  padding: 0rem 0.625rem 0.625rem 0.625rem; }

#divLayers {
  position: fixed;
  left: 5.35rem;
  top: 19rem;
  width: 23.85rem;
  margin-top: 0.625rem;
  padding-left: 0.625rem;
  background: var(--background-color);
  color: var(--foreground-color);
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 10rem;
  max-height: 32rem;
  border-radius: 0.5em; }

#mapLayers {
  position: relative;
  min-height: 19.375rem;
  font-size: 0.875rem;
  width: 23.4375rem;
  overflow: auto;
  max-height: 37rem; }

.mapLayerDetail {
  position: relative;
  display: block;
  margin-top: 0.5rem;
  left: 1.5rem;
  font-size: 0.875rem;
  width: 21.875rem;
  overflow: visible;
  border-radius: 0.5em; }

.ReactModal__Content {
  background: black !important; }

.settingsList {
  padding-top: 0.5rem; }

/* dropdown chevron */
.css-6q0nyr-Svg {
  fill: var(--foreground-color) !important; }

.panelHeading {
  text-align: center;
  margin-bottom: 0.75rem;
  font-size: 1rem; }

#mapFunctions {
  position: fixed;
  top: 5.5rem;
  width: 37.5rem;
  margin: 0.25rem;
  z-index: 9999; }

.exploreFunction {
  margin-left: -0.625rem;
  padding-bottom: 0.625rem;
  padding-right: 0.5rem;
  border-radius: 0.625rem 0px 0px 0.625rem !important; }

.exploreFunction.inactiveFunction {
  border-bottom-left-radius: 0px !important; }

.compareFunction {
  margin-left: -0.625rem;
  padding-bottom: 0.625rem;
  border-left: 0.125rem solid black;
  border-right: 0.125rem solid black; }

.analyzeFunction {
  margin-right: -0.625rem;
  padding-bottom: 0.625rem;
  padding-right: 1.125rem;
  border-radius: 0px 0.625rem 0.625rem 0px !important; }

.activeFunction {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 50%;
  font-size: 1.125rem;
  font-weight: 500;
  background: var(--background-color);
  color: var(--foreground-color);
  text-decoration: none;
  padding-top: 0.625rem;
  padding-bottom: 0.75rem;
  letter-spacing: 0.06em;
  border: none;
  z-index: 999;
  padding: 0.625rem; }

.activeFunction:hover {
  color: var(--link-hover-color);
  background: var(--background-color); }

.inactiveFunction {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 50%;
  font-size: 1.125rem;
  padding-top: 0.5rem;
  background: var(--foreground-color);
  margin-top: -0.0625rem;
  border: 0.125rem solid black;
  color: var(--background-color);
  text-decoration: none;
  letter-spacing: 0.06em;
  border: none;
  z-index: 999;
  padding: 0.625rem; }

.inactiveFunction:hover {
  color: var(--link-hover-color);
  background: var(--foreground-color); }

#compareMaps {
  position: relative;
  width: 100%;
  background: var(--background-color);
  color: var(--foreground-color);
  border-radius: 0px 0px 0.625rem 0.625rem;
  margin-bottom: -0.5rem;
  padding-bottom: 0.375rem;
  padding-top: 0.75rem;
  margin-top: -0.5rem;
  margin-left: -0.1rem;
  left: 48.6%; }

#compareMaps a {
  text-decoration: none; }

.compare50 {
  width: 50%;
  display: inline-block;
  text-align: center;
  vertical-align: text-top; }

.compare66 {
  width: 66%;
  display: inline-block;
  text-align: center;
  vertical-align: text-top; }

.compare33 {
  width: 32%;
  display: inline-block;
  text-align: left;
  vertical-align: text-top; }

.marginTop8 {
  margin-top: 0.5rem; }

.marginTop8 input {
  margin-right: 0.2rem;
  border: 0.065rem solid; }

#layerAppearance {
  position: absolute;
  display: block;
  margin-left: 1.95rem;
  margin-top: -1.6rem;
  padding: 0.875rem;
  left: 0rem;
  font-size: 0.875rem;
  width: 13.0rem;
  z-index: 99;
  background: var(--callout-background-color) !important;
  color: var(--foreground-color);
  border: 0.09rem solid var(--foreground-color);
  opacity: 1 !important;
  border-radius: 0.5em; }

.layerAppearanceCallout_light {
  position: absolute;
  margin-right: -1.05rem;
  margin-top: 1.1rem;
  right: 0rem;
  top: -0.41875rem;
  width: 1.3125rem;
  height: 0.8125rem;
  background-image: url(/images/tipboxwhite.svg);
  color: var(--foreground-color);
  transform: rotate(-90deg);
  background-repeat: no-repeat; }

.layerAppearanceCallout_dark {
  position: absolute;
  left: calc(50% - 0.4375rem);
  top: -0.79375rem;
  width: 1.3125rem;
  height: 0.8125rem;
  background-image: url(/images/tipboxblack.svg);
  color: var(--foreground-color);
  transform: rotate(180deg);
  background-repeat: no-repeat; }

#layerOptions {
  position: absolute;
  left: 21.625rem;
  margin-top: -4.1875rem;
  height: 5.625rem;
  font-size: 0.875rem;
  width: 9.375rem;
  z-index: 99;
  border: 0.09rem solid var(--foreground-color);
  background: var(--callout-background-color);
  color: var(--foreground-color);
  opacity: 1 !important;
  padding: 0.5rem;
  border-radius: 0.5em; }

.layerOptionsCallout_light {
  position: absolute;
  left: -1.25rem;
  top: calc(50% - 0.625rem);
  width: 1.3125rem;
  height: 1.25rem;
  background-image: url(/images/tipboxwhite.svg);
  opacity: 1 !important;
  transform: rotate(90deg);
  background-repeat: no-repeat; }

.layerOptionsCallout_dark {
  position: absolute;
  left: -1.25rem;
  top: calc(50% - 0.625rem);
  width: 1.3125rem;
  height: 1.25rem;
  background-image: url(/images/tipboxblack.svg);
  transform: rotate(90deg);
  background-repeat: no-repeat; }

#insideLayerOptions {
  position: absolute;
  margin-left: -3.375rem;
  height: 5.625rem;
  width: 13.125rem;
  border: 0.0625rem solid blue;
  z-index: 0; }

#layerOptions a {
  color: var(--foreground-color); }

.hue-picker {
  width: 12.5rem !important;
  height: 0.75rem !important; }

#sc {
  position: fixed;
  top: 6.25rem;
  left: 6.25rem;
  display: block;
  background-color: black;
  color: white;
  z-index: 999999 !important; }

.selectAnchor {
  text-decoration: none;
  line-height: 1.25rem;
  text-align: left;
  padding-right: 0.3rem; }

.selectAnchor:hover {
  color: gray; }

.loginButton {
  text-decoration: none;
  padding: 0.25rem 0.625rem; }

.satellite {
  min-height: 13.125rem; }

#initTutorial {
  position: fixed;
  top: 22.625rem;
  left: 30.625rem;
  text-align: center;
  width: 17.1875rem;
  background-color: var(--tutorial-background);
  color: var(--tutorial-foreground);
  padding: 0.75rem;
  margin: 0.5rem;
  font-size: 0.875rem;
  border-radius: 1em 1em 1em 1em;
  vertical-align: middle;
  overflow: visible;
  z-index: 9999; }

.panelHeading {
  margin: 0.75rem 0rem 1rem 0rem; }

.far {
  font-weight: 300 !important; }

.aoiSearchContainer {
  width: 90%;
  margin: 0rem 5% 0.25rem 0rem;
  padding: 0.375rem 0.7rem;
  width: 64%;
  color: var(--foreground-color);
  border-radius: 0.5em; }

.rc-slider-mark-text {
  color: white !important; }

.singleSelect {
  background-color: var(--background-color);
  color: var(--foreground-color); }

.ReactModalPortal > div {
  opacity: 0; }

.ReactModalPortal .ReactModal__Overlay {
  align-items: center;
  display: flex;
  justify-content: center;
  transition: opacity 200ms ease-in-out; }

.ReactModalPortal .ReactModal__Overlay--after-open {
  opacity: 1; }

.ReactModalPortal .ReactModal__Overlay--before-close {
  opacity: 0; }

.ReactModal__Overlay.ReactModal__Overlay--after-open {
  font-size: 0.875rem; }

.ReactModal__Overlay ReactModal__Overlay--after-open {
  z-index: 99999; }

.ReactModal__Overlay.ReactModal__Overlay--after-open {
  z-index: 99999; }

.modal {
  background: #8899aa;
  color: var(--foreground-color);
  max-width: 30rem;
  outline: none;
  padding: 1.5rem;
  text-align: center; }

.modal__title {
  margin: 0 0 0.875rem 0; }

.modal__body {
  font-size: 2rem;
  font-weight: 300;
  margin: 0 0 1.5rem 0;
  word-break: break-all; }

#sidebarHelp {
  margin-left: 1.5rem; }

#planetMonthly {
  position: fixed;
  bottom: 8vh;
  left: 32vw;
  width: calc(100% - 40vw);
  background-color: var(--background-color);
  color: var(--foreground-color); }

#planetMonthlyHeader {
  color: black;
  padding: 0.4375rem;
  margin: 0px; }

#planetMonthlyTable {
  position: relative;
  width: 58vw;
  height: 7vh;
  overflow-x: scroll;
  margin: 0px;
  padding: 0px; }

.planetMonthlyDiv {
  min-width: 4.625rem;
  overflow: visible;
  padding: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 0.625rem;
  text-align: center;
  border-radius: .3rem;
  color: #007bff;
  background-color: var(--background-color);
  color: var(--foreground-color);
  background-image: none; }

.planetMonthlyDiv a {
  color: #007bff !important;
  text-decoration: none; }

.planetMonthlyDiv:hover {
  background-color: #007bff;
  color: var(--foreground-color) !important; }

.planetMonthlyDiv a:hover {
  background-color: #44E4EE;
  color: var(--foreground-color) !important; }

#monthlyFieldset {
  padding: 0px; }

#monthlyFieldset legend {
  text-align: center; }

#monthlyFieldset legend img {
  vertical-align: middle; }

.planetLink {
  text-decoration: none;
  background: var(--background-color) !important;
  color: var(--foreground-color) !important;
  font-size: 0.875rem;
  width: 17.0rem;
  display: inline-block;
  padding-bottom: 0.1875rem;
  padding-left: 0.125rem; }

.planetLink a {
  text-decoration: none;
  background: var(--background-color);
  color: var(--foreground-color); }

.planetLinkPosition::-webkit-scrollbar {
  width: 0.3125rem;
  /* Set the width of the scrollbar */
  background-color: #F5F5F5;
  /* Set the background color of the scrollbar */
  position: absolute;
  right: 0;
  /* Position the scrollbar on the right of the element*/ }

.planetLinkPosition::-webkit-scrollbar-thumb {
  background-color: #000000;
  /* Set the color of the thumb */ }

::-webkit-scrollbar-track {
  background: red;
  border-radius: 0.3125rem; }

.preSelect {
  background-color: var(--background-color);
  color: var(--foreground-color);
  width: 18.75rem;
  float: left; }

.preDiv {
  position: relative;
  width: 24.375rem;
  margin-top: 0.75rem;
  min-height: 3.125rem; }

.exploreButton {
  background-color: var(--background-color);
  color: var(--foreground-color);
  padding: 0.4375rem;
  border: 0.0625rem solid #000000;
  border-radius: 0.5em;
  float: right;
  margin-top: -2.5rem;
  margin-left: 0.5rem; }

#register {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  padding: 0.75rem;
  background-color: var(--background-color);
  color: var(--foreground-color);
  z-index: 99999;
  width: 31.25rem;
  font-size: 1rem;
  border-radius: 0.5em; }

#regMsg {
  background-color: black;
  padding: 0.25rem;
  border: 0.0625rem solid;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem; }

.title {
  font-size: 1.2rem;
  margin: -0.5rem 0rem 0.75rem 0.625rem; }

#modalheading {
  padding-top: 0.75rem; }

.modalClose {
  padding: 0.75rem;
  font-weight: 300; }

.imgLabelOption, .imgLabelOptionDisabled {
  font-size: 0.875rem !important;
  margin-top: 0.25rem;
  margin-right: 0.5rem;
  left: 0px;
  color: var(--foreground-color); }

.imgLabelOptionDisabled {
  opacity: var(--disabled-opacity);
  cursor: default; }

.smLabel {
  font-size: 0.6875rem !important; }

.satelliteSearchDate {
  font-size: 0.875rem;
  background-color: var(--background-color);
  color: var(--foreground-color);
  border: 0 0.3125rem solid #d9d9dc;
  border-radius: 0.5em; }

#satelliteDateRange input {
  height: 1.5rem;
  width: 7.8125rem;
  margin-bottom: 0.375rem; }

#thumbnailVideo {
  z-index: 3000;
  position: fixed;
  left: 40%;
  top: 2.3125rem;
  font-size: large;
  padding: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  height: 31.25rem;
  background-color: var(--background-color);
  color: var(--foreground-color);
  color: var(--background-color);
  width: 31.25rem;
  border-radius: 0.5em; }

.imgLabelOption [type="checkbox"], .imgLabelOptionDisabled [type="checkbox"] {
  display: inline; }

#planetSelection {
  height: 9.375rem;
  background: var(--background-color);
  color: var(--foreground-color);
  overflow: auto; }

.select150 {
  margin-left: 0.5rem;
  width: 9.375rem;
  position: absolute;
  display: inline; }

.tiff-menu-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center; }

#regMsg {
  background-color: black;
  padding: 0.25rem;
  border: 0.0625rem solid;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem; }

.settingsTable {
  border-collapse: collapse; }

.settingsTable td {
  vertical-align: top;
  font-size: 0.75rem;
  border: 0.0625rem solid;
  padding: 0.4375rem;
  text-align: left; }

.settingsTable th {
  vertical-align: bottom;
  font-size: 0.75rem;
  padding: 0.4375rem;
  text-align: left; }

#selectAlertsTableContainer {
  border: 0.0625rem solid white;
  padding: 0.25rem; }

.selectAlertsTable {
  display: block;
  overflow: auto;
  height: calc(100vh - 39rem);
  width: 100%; }

.selectAlertsTable tbody {
  width: 100%;
  overflow: scroll; }

.selectAlertsTable td {
  vertical-align: middle;
  font-size: 0.75rem;
  padding: 0.0625rem;
  text-align: left; }

.selectAlertsTable th {
  font-size: 0.75rem; }

.horCenter {
  text-align: center !important; }

#modalheading {
  padding-top: 0.75rem; }

.css-yk16xz-control {
  border-color: #d9d9dc; }

.navy {
  color: navy; }

#timelineSidebar {
  position: absolute;
  left: 0px;
  top: 5.625rem;
  padding-top: 2.25rem;
  width: 42.625rem;
  height: calc(100% - 9.0625rem);
  border-right: 0.0625rem solid #d9d9dc;
  padding-bottom: 0.5rem;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0.25rem;
  background-color: #ffffff; }

#dwTimeline {
  position: fixed;
  left: 0px;
  top: 4.6875rem;
  padding-top: 2.25rem;
  width: 100%;
  height: calc(100% - 7.5rem);
  border-right: 0.0625rem solid #d9d9dc;
  padding-bottom: 0.5rem;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0.25rem;
  background-color: #ffffff;
  z-index: 100; }

.timeline {
  position: relative;
  margin: 0.75rem;
  border: none;
  background: white;
  font-size: 0.8125rem;
  width: 20rem;
  transition: transform 1s;
  transition-property: top;
  transition-duration: 0.5s;
  transition-delay: 0s; }

#dwChart {
  position: absolute;
  top: 9.375rem;
  right: 0.625rem;
  width: calc(100% - 26.5625rem);
  height: 35.9375rem;
  z-index: 999;
  background-color: var(--background-color);
  color: var(--foreground-color);
  border: 0.0625rem solid; }

#captureControls {
  position: absolute;
  bottom: 0.75rem; }

#timebar {
  position: fixed;
  top: 24.375rem;
  max-height: calc(100% - 31.25rem);
  width: 21.875rem;
  display: flex;
  flex-wrap: nowrap;
  overflow-y: auto; }

#timebarTable {
  position: relative; }

#timebarTable td {
  border: 0px none;
  padding: 0.125rem;
  font-size: 0.875rem;
  vertical-align: top;
  text-align: left;
  border-bottom: 0.0625rem solid silver; }

.selectInput {
  margin-top: 0px !important;
  margin-bottom: 0.125rem !important;
  width: 15.625rem !important;
  padding: 0px !important;
  font-size: 0.8125rem; }

.inputDiv {
  margin-bottom: 0.25rem; }

.inputDiv input {
  font-size: 0.8125rem;
  padding: 0.375rem; }

#clearMarkers-switch {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem; }

.bluet {
  background: yellow;
  text-align: center; }

.countet {
  text-align: center; }

.thiset {
  background: yellow;
  text-align: center; }

.timelineChart {
  text-align: center;
  vertical-align: top !important; }

.timelineBar {
  color: navy;
  height: 0.75rem;
  vertical-align: top !important;
  text-align: right;
  background: lightblue;
  border: 0.0625rem solid gray;
  font-size: 0.8125rem; }

.timebarDatepicker {
  width: 15%;
  margin-left: 0.1875rem;
  border-left: 0.0625rem solid lightblue; }

.timebarPlayback {
  text-align: center;
  margin-top: 0.75rem;
  margin-left: 0.1875rem;
  margin-right: 0.1875rem; }
  .timebarPlayback button {
    background: none;
    color: #000000;
    cursor: pointer;
    border: 0.0625rem solid navy;
    border-radius: 50%;
    font-size: 0.4375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.125rem;
    height: 2.5rem;
    width: 2.5rem; }
    .timebarPlayback button:focus {
      outline: none; }

#regMsg {
  background-color: black;
  padding: 0.25rem;
  border: 0.0625rem solid;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem; }

.settingsTable {
  border-collapse: collapse; }

.settingsTable td {
  vertical-align: top;
  font-size: 0.75rem;
  border: 0.0625rem solid;
  padding: 0.4375rem;
  text-align: left; }

.settingsTable th {
  vertical-align: bottom;
  font-size: 0.75rem;
  padding: 0.4375rem;
  text-align: left; }

#selectAlertsTableContainer {
  border: 0.0625rem solid white;
  padding: 0.25rem; }

.selectAlertsTable {
  display: block;
  overflow: auto;
  height: calc(100vh - 39rem);
  width: 100%; }

.selectAlertsTable tbody {
  width: 100%;
  overflow: scroll; }

.selectAlertsTable td {
  vertical-align: middle;
  font-size: 0.75rem;
  padding: 0.0625rem;
  text-align: left; }

.selectAlertsTable th {
  font-size: 0.75rem; }

.horCenter {
  text-align: center !important; }

#modalheading {
  padding-top: 0.75rem; }

.css-yk16xz-control {
  border-color: #d9d9dc; }

.navy {
  color: navy; }

.icon {
  display: inline-block;
  fill: currentColor;
  height: 1em;
  stroke: currentColor;
  stroke-width: 0;
  width: 1em;
  display: block;
  border-radius: 0.5em; }

.iconSearch {
  width: 0.9375em; }

.iconFilter {
  width: 1.154296875em; }

.iconLayersIcon {
  width: 0.89453125em; }

.deleteIcon {
  cursor: pointer;
  fill: #000000;
  height: 1rem;
  width: 0.75rem; }

.aoiIcon {
  width: 0.9375rem;
  height: 0.9375rem; }

.playIcon {
  height: 0.9375rem;
  width: 0.8125rem;
  position: relative;
  left: 0.125rem; }

.pauseIcon {
  height: 0.9375rem;
  width: 0.8125rem; }

.iconShare {
  fill: white;
  height: 0.75rem;
  width: 0.875rem; }

.iconZoomIn {
  fill: white;
  height: 0.875rem;
  width: 0.875rem; }

.iconZoomOut {
  fill: white;
  height: 0.25rem;
  width: 0.875rem; }

.iconClose {
  cursor: pointer;
  height: 0.625rem;
  width: 0.625rem; }

.iconArrowLink {
  cursor: pointer;
  fill: #000000;
  height: 0.9375rem;
  width: 0.9375rem; }

.infoIcon {
  cursor: pointer;
  fill: #000000;
  height: 1.0625rem;
  width: 0.625rem;
  margin-top: -0.125rem; }
  .infoIcon.small {
    height: 0.8125rem;
    width: 0.3125rem; }

.selectIcon {
  cursor: pointer;
  fill: white;
  width: 1.375rem;
  height: 1.875rem; }

.paintIcon {
  cursor: pointer;
  fill: #000000;
  height: 0.875rem;
  width: 0.875rem;
  position: relative;
  top: 0.0625rem; }
  .paintIcon._white {
    fill: white; }

.deleteCrossIcon {
  cursor: pointer;
  fill: black;
  height: 0.9375rem;
  width: 0.9375rem; }

.speedIcon {
  cursor: pointer;
  fill: #87a2ca;
  outline: none;
  height: 0.625rem;
  width: 0.625rem; }

.pencilIcon {
  cursor: pointer;
  fill: #000000;
  height: 0.9375rem;
  width: 0.9375rem; }

.deleteBucketIcon {
  cursor: pointer;
  fill: #000000;
  height: 0.9375rem;
  width: 0.9375rem; }

.pinIcon {
  cursor: pointer;
  height: 1rem;
  width: 0.6875rem; }

.searchIcon {
  fill: #000000;
  height: 0.9375rem;
  width: 0.9375rem; }

.vcrButtons {
  margin-top: 0.5rem;
  margin-bottom: 0.375rem;
  position: relative;
  padding: 0.125rem;
  width: 4.6875rem;
  left: 4.875rem;
  border: 0.0625rem solid gray;
  border-radius: 0.5em;
  font-size: 1.875rem; }

video {
  width: 30%;
  border-radius: 0.3125rem;
  border: 0.0625rem solid black; }

#timelineOverMap {
  position: fixed;
  display: inline-block;
  border-right: 0.0625rem solid gray;
  padding: 0.375rem;
  padding-top: 0.5rem;
  bottom: 3.5rem;
  left: 17.875rem;
  width: calc(100% - 19.375rem);
  height: 5rem;
  background: white;
  z-index: 999 !important;
  border: 0.0625rem solid;
  border-radius: 1.5em; }

#timelineBottom {
  position: fixed;
  display: inline-block;
  padding: 0.375rem;
  padding-top: 0.5rem;
  bottom: 5rem;
  left: 0.25rem;
  width: 15.875rem;
  height: 20.875rem;
  background: white;
  z-index: 999 !important;
  border: 0.0625rem solid;
  border-radius: 0.5em; }

#layerTimelineGlad {
  left: 0.75rem;
  width: 14.6875rem;
  background: white;
  padding: 0.375rem;
  margin-bottom: 0.25rem;
  border-bottom: 0.0625rem solid #cccccc; }

#layerTimelineDateRange {
  left: 0.75rem;
  width: 14.6875rem;
  background: white;
  padding: 0.375rem;
  margin-bottom: 0.25rem;
  border-bottom: 0.0625rem solid #cccccc; }

#layerTimelineDateRange .react-datepicker__close-icon {
  top: 0.125rem !important; }

#layerTimelineSentinel {
  left: 0.75rem;
  width: 14.6875rem;
  background: white;
  padding: 0.375rem;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  margin-top: 0px !important; }

#layerOpacitySlider {
  left: 0.75rem;
  width: 14.6875rem;
  background: white;
  padding: 0.375rem;
  margin-bottom: 0.25rem; }

#layerOpacitySlider .rc-slider {
  width: 12.5rem !important; }

#timelineBottomControls {
  position: absolute;
  top: 1.25rem;
  left: 1.875rem; }

#captureControls {
  position: absolute;
  bottom: 0.75rem; }

.vcrButtonsBottom {
  margin-top: 0.5rem;
  margin-bottom: 0.375rem;
  position: relative;
  padding: 0.125rem;
  width: 4.6875rem;
  border: 0.0625rem solid gray;
  border-radius: 0.5em;
  font-size: 1.875rem; }

#timebarBottom {
  position: absolute;
  left: 7.5rem;
  top: 0.625rem;
  width: calc(100% - 7.5rem);
  overflow-x: auto;
  overflow-y: hidden; }

#timebarTableBottom {
  position: relative;
  left: 0.625rem;
  width: 95%; }

#timebarTableBottom td {
  border: 0px none;
  padding: 0.125rem;
  width: 1.875rem;
  vertical-align: top;
  text-align: left; }

.timebarSlider {
  width: 100%; }

.openUp .Select-menu-outer {
  top: auto !important;
  bottom: 100% !important;
  font-size: 0.625rem !important; }

#loadingMsg {
  position: absolute;
  bottom: 10rem;
  left: 18.75rem;
  color: var(--foreground-color);
  font-size: medium;
  z-index: 99999999; }

#sentinelAttributionMb {
  position: absolute;
  bottom: 15.75rem;
  right: 0.625rem;
  margin-left: 21.875rem;
  font-size: 0.8125rem;
  padding: 0.125rem;
  background-color: var(--background-color);
  color: var(--foreground-color);
  opacity: 0.7;
  z-index: 99999999;
  border-radius: 0.5em; }

#gladAttributionMb {
  position: absolute;
  bottom: 9.75rem;
  right: 0.625rem;
  margin-left: 21.875rem;
  font-size: 0.75rem;
  padding: 0.125rem;
  background-color: var(--background-color);
  color: var(--foreground-color);
  opacity: 0.7;
  z-index: 99999999;
  border-radius: 0.5em; }

#timelineBottomGoogle {
  position: fixed;
  display: inline-block;
  padding: 0.375rem;
  padding-top: 0.5rem;
  bottom: 2.875rem;
  left: 0.25rem;
  width: 15.875rem;
  height: 9.375rem;
  background: white;
  z-index: 999 !important;
  border-top: 0.0625rem solid;
  border-radius: 0.5em; }

.marker {
  background-image: url("/images/mapLayerIcons/icons8-dark-gray-circle-16.png");
  background-color: blue;
  width: 0.375rem;
  height: 0.375rem;
  border: 0.025rem solid black;
  border-radius: 50%;
  cursor: pointer; }

#timelineBottomMarker {
  position: fixed;
  display: inline-block;
  padding: 0.375rem;
  padding-top: 0.5rem;
  bottom: 1.3125rem;
  left: 0px;
  width: 100vw;
  height: 11.8125rem;
  background: white;
  z-index: 999 !important;
  border-top: 0.0625rem solid; }

#timelineOverMarker {
  border-right: 0.0625rem solid gray;
  padding: 0.375rem;
  padding-top: 0.5rem;
  left: 17.875rem;
  width: calc(100% - 19.375rem);
  background: white; }

#timelineBottomControlsMarker {
  position: absolute;
  top: 1.25rem;
  left: 1.875rem; }

#timebarBottomMarker {
  position: absolute;
  left: 7.5rem;
  top: 0.625rem;
  width: calc(100% - 7.5rem);
  overflow-x: auto;
  overflow-y: hidden; }

#timebarTableBottomMarker {
  position: relative;
  left: 0.625rem;
  width: 95%; }

#timebarTableBottomMarker td {
  border: 0px none;
  padding: 0.125rem;
  width: 1.875rem;
  vertical-align: top;
  text-align: left; }

#timelineOverMapMarker {
  position: absolute;
  display: inline-block;
  padding: 0.375rem;
  padding-top: 0.5rem;
  bottom: 0.375rem;
  left: 17.875rem;
  width: calc(100% - 20rem);
  height: 7.5rem; }

.blink {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite; }

@keyframes blink-animation {
  to {
    visibility: hidden; } }

.ui-button {
  background-color: #fff;
  border: 0;
  border-radius: 0.125rem;
  box-shadow: 0 0.0625rem 0.25rem -0.0625rem rgba(0, 0, 0, 0.3);
  margin: 0.625rem;
  padding: 0 0.5em;
  font: 400 1.125rem Roboto, Arial, sans-serif;
  overflow: hidden;
  height: 2.5rem;
  cursor: pointer; }

.ui-button:hover {
  background: #ebebeb; }

#stuffForMe {
  left: 1.25rem; }

#ugaPanel {
  position: absolute;
  font-family: Arial, sans-serif;
  font-size: 1.125rem;
  margin: 0px;
  padding: 0.5rem;
  border: 0.125rem solid #626264;
  background-color: var(--background-color);
  color: var(--foreground-color);
  z-index: 99;
  min-width: 17.5rem;
  border-radius: 0.5em; }

#close-ugaPanel {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  font-size: 1rem;
  text-decoration: none; }

#close-ugaPanel a, #specialChar a {
  text-decoration: none; }

.ugaMarker {
  background-image: url("/images/mapLayerIcons/icons8-dark-gray-circle-16.png");
  display: block;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0; }

input.radio {
  vertical-align: middle; }

#markerOptions label {
  font-size: 0.875rem;
  vertical-align: middle !important; }

.mce-container.mce-panel.mce-floatpanel.mce-window.mce-in {
  z-index: 150000 !important; }

.tox-menu {
  z-index: 150000 !important; }

#tableForm {
  border-spacing: 0px;
  border-collapse: collapse; }

#tableForm tr {
  outline: thin solid navy; }

#tableForm th {
  color: #2C5EA3;
  text-align: left;
  white-space: nowrap; }

#tableForm th, #tableForm td {
  padding: 0.75rem; }

#tableForm input {
  font-size: 1.125rem;
  margin-top: -0.25rem; }

#tableForm [type="checkbox"] {
  margin-top: 0px; }

#unsubscribe {
  position: absolute;
  top: 6.25rem;
  padding: 0.75rem;
  height: calc(100vh - 12.5rem); }

.returnMsg {
  font-size: 1.125rem;
  color: black; }

#planetOrdersDiv {
  position: absolute;
  top: 6.875rem;
  left: 28.75rem;
  width: auto;
  background-color: var(--background-color);
  color: var(--foreground-color);
  padding: 0.875rem;
  border: 0.0625rem solid;
  margin: 0.875rem;
  height: auto;
  color: #009da7;
  font-size: 0.875rem;
  line-height: 1.25rem; }

#planetOrdersContent {
  overflow: auto;
  position: relative;
  min-width: 45vw;
  min-height: 6.25rem;
  max-height: 60vh;
  max-width: 45vw;
  margin-top: 0.625rem; }

.react-hint {
  padding: 0.475rem;
  position: absolute;
  z-index: 9999;
  cursor: default;
  animation: .6s fadeIn; }

.react-hint__content {
  padding: 0.625rem;
  border-radius: 0.5rem;
  background: #484848;
  color: #fff; }

.react-hint:after {
  content: '';
  width: 0;
  height: 0;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: .5rem solid transparent; }

.react-hint--top:after {
  top: auto;
  border-bottom: none;
  border-top-color: #484848; }

.react-hint--left:after {
  left: auto;
  border-right: none;
  border-left-color: #484848; }

.react-hint--right:after {
  right: auto;
  border-left: none;
  border-right-color: #484848; }

.react-hint--bottom:after {
  bottom: auto;
  border-top: none;
  border-bottom-color: #484848; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.satellite-select-wrapper {
  margin-top: 0.5rem;
  font-size: 1rem; }

.satellite-panel-toggle {
  margin-left: 0.3rem; }

.satellite-options-wrapper {
  margin: 0.5rem 0.75rem 0 0.25rem; }

