:root {
  crimson: #ff005d;
  compliment: #00ffb7;
}

body {
  background: #1d1d1d;
  font-family: "Montserrat", sans-serif;
  color: #eeeeee;
  margin: 0;
  text-align: center;
  line-height: 1.3em;
}

@media (max-width: 500px) {
  body {
    display: -ms-grid;
    display: grid;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
  }
}

body.lock {
  overflow: hidden;
}

body.lock header {
  z-index: 1;
  opacity: 0;
}

.notification {
  position: fixed;
  background: #00ea7c;
  border-radius: 4px;
  z-index: 4;
  left: 1rem;
  bottom: 1rem;
  width: calc(100vw - 2rem);
  margin: auto;
  color: #000;
  padding: 1rem;
}

.notification:not(.open) {
  pointer-events: none;
  opacity: 0;
}

.main {
  display: -ms-grid;
  display: grid;
  gap: 3rem;
  margin: auto;
  -ms-grid-rows: 1fr;
  -ms-grid-columns: auto 1fr;
      grid-template: 1fr / auto 1fr;
  max-width: 90vw;
  padding-bottom: 3rem;
}

@media (max-width: 1060px) {
  .main {
    gap: 0 !important;
    padding-bottom: 0;
  }
}

@media (max-width: 500px) {
  .main {
    max-width: 100vw;
    padding-bottom: 0;
  }
}

#mapEle {
  height: 300px;
  width: 100%;
  border-radius: 3px;
  margin-top: 0.5rem;
  z-index: 1;
}

#canvas_info {
  border: 0px solid #000000;
  outline: none;
}

#canvas_chart {
  border: 0px solid #000000;
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 500px) {
  .input.open::after {
    opacity: 1 !important;
  }
  .input.open form {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@media (max-width: 1060px) {
  .input {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2;
  }
  .input form {
    max-width: 100vw !important;
    width: 500px !important;
    padding: 0.5rem 2rem 6rem 2rem !important;
  }
  .input .trigger {
    position: fixed;
    top: 0;
    right: 0;
    cursor: pointer;
    padding: 0rem 1rem 1rem 1rem;
  }
  .input .trigger::before, .input .trigger::after {
    content: "";
    height: 4px;
    width: 2.5rem;
    position: relative;
    display: block;
    background-color: #fff;
    left: 0;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  .input .trigger::before {
    margin-top: 2rem;
  }
  .input .trigger::after {
    margin-top: calc(1rem + 3px);
  }
  .input:not(.open) {
    width: 5rem;
    height: 5rem;
  }
  .input:not(.open) .input-container {
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
  }
  .input.open {
    height: 100vh;
    max-width: 100vw;
    background-color: #000;
  }
  .input.open::after {
    position: fixed;
    content: "";
    height: 100vh;
    width: 100vw;
    z-index: -1;
    background-color: #000;
    top: 0;
    left: 0;
    opacity: 0.8;
    pointer-events: none;
  }
  .input.open .trigger::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transform-origin: 0px 0px;
            transform-origin: 0px 0px;
  }
  .input.open .trigger::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: 8px 2px;
            transform-origin: 8px 2px;
  }
  .input.open .input-container {
    height: calc(100vh - 2rem);
    margin-top: 2rem;
    max-width: 100vw;
    overflow: auto;
  }
  .input.open .input-container > h1 {
    padding-left: 2rem;
  }
  .input .input-container {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
}

.input form {
  -webkit-box-shadow: inset 0 0 0 1px #555;
          box-shadow: inset 0 0 0 1px #555;
  width: 400px;
  max-width: 25vw;
  display: -ms-grid;
  display: grid;
  grid-auto-flow: row;
  gap: 1rem;
  padding: 1.5rem;
}

.input form input,
.input form select {
  border: none;
  font-size: 1rem;
  width: 100%;
  min-height: 22px;
  display: block;
  margin-top: 0.5rem;
  outline: none;
  border-radius: 2px;
  background: #2d2d2d;
  color: #eee;
  padding: 0.5rem;
}

.input form input[type="radio"] {
  border: 1px solid #ccc;
}

.input form label {
  text-align: left;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
}

.charts {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: row;
  gap: 2rem;
  padding: 1rem;
  margin-bottom: auto;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  overflow: auto;
  height: 100%;
}

@media (max-width: 500px) {
  .charts {
    height: calc(100vh - 6rem);
    padding-bottom: 6rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1.5em;
  /*    text-transform: uppercase;*/
  font-weight: normal;
  text-align: left;
}

a:link,
a:visited {
  font-weight: bold;
  color: #c17086;
  text-decoration: none;
  border-bottom: 1px solid #91476c;
}

a:hover {
  border-bottom: 2px dotted #91476c;
}

a img {
  border: none;
}

header {
  display: -ms-grid;
  display: grid;
  position: relative;
  z-index: 3;
  text-align: center;
  margin: 1rem auto 3rem auto;
  width: 90vw;
}

@media (max-width: 500px) {
  header {
    max-width: calc(90vw - 6rem);
    margin-left: 1rem;
    margin-bottom: 1rem;
  }
  header .logo {
    height: 50px !important;
  }
}

header .logo {
  height: 80px;
}

header h1 {
  font-size: 2em;
  text-transform: none;
  letter-spacing: 0em;
  text-align: left;
}

header h2 {
  font-size: 2.1em;
  text-transform: none;
  letter-spacing: 0em;
  text-align: center;
}

header h3 {
  margin: -10px 0px 20px;
  font-size: 1.3em;
  text-align: center;
}

nav {
  text-align: center;
  display: block;
}

nav ul {
  padding: 0px;
  list-style-type: none;
  display: inline;
}

nav li {
  margin: 0px 10px;
  padding: 0px;
  list-style-type: none;
  display: inline;
}

nav a:link, nav a:visited {
  font-size: 1.4em;
  font-weight: normal;
}

section {
  float: left;
  width: 178px;
  text-align: left;
}

section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
  background: no-repeat 0px -80px;
  padding: 9px 10px 10px 10px;
  margin: 12px -10px;
}

section ul {
  padding: 0px;
  list-style: none;
  border-top: 1px solid #e7e2d7;
  margin: 10px 0px;
}

section li {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

section li a:link,
section li a:visited {
  float: left;
  width: 96%;
  padding: 3px 1%;
  border-bottom: 1px solid #e7e2d7;
}

section li a:hover {
  background: #f2f1ec;
}

article h1 {
  background: no-repeat 0px 0px;
  padding: 7px 10px 12px 30px;
  margin: 14px -30px;
}

article h2,
article h3,
article h4,
article h5,
article h6 {
  background: no-repeat 0px -40px;
  padding: 7px 10px 12px 30px;
  margin-left: -30px;
}

article p:first-of-type {
  /*text-transform: uppercase;*/
  border-top: 1px dotted #968765;
  border-bottom: 1px dotted #968765;
  padding: 10px 0px;
  color: #c17086;
}

button {
  /* border-top: 1px solid #96d1f8;
  background: #96a6b0; */
  /* background: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#96a6b0));
  background: -webkit-linear-gradient(top, #fcfcfc, #96a6b0);
  background: -moz-linear-gradient(top, #fcfcfc, #96a6b0);
  background: -ms-linear-gradient(top, #fcfcfc, #96a6b0);
  background: -o-linear-gradient(top, #fcfcfc, #96a6b0); */
  padding: .75rem 1rem;
  border-radius: 3px;
  /* -webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
  -moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
  box-shadow: rgba(0,0,0,1) 0 1px 0;
  text-shadow: rgba(0,0,0,.4) 0 1px 0;
  color: white; */
  border: 0;
  font-size: 1rem;
  text-decoration: none;
  vertical-align: middle;
  font-weight: 900;
  background: #00ea7c;
}

button:hover {
  color: #000;
  background: #00d3ea;
}

.ribbon {
  background-color: #ff9933;
  overflow: hidden;
  position: fixed;
  left: -2em;
  bottom: 2em;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-box-shadow: 0 0 2em #fff;
  -webkit-box-shadow: 0 0 2em #fff;
}

.ribbon a {
  border: 1.5px solid #fff;
  display: block;
  font: 80% Arial, sans-serif;
  margin: 0.1em 0 0.1em 0;
  padding: 0.1em 2em;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 0 0.1em #fff;
}

footer {
  padding: 3px 20px 3px;
  display: block;
  clear: both !important;
  width: 895px;
}

footer a {
  margin: 0px 5px;
}
/*# sourceMappingURL=style.css.map */