:root {
  --width: 1200px;
  --height: 814px;
  --center_x: calc(var(--width) / 2);
  --center_y: calc(var(--height) / 2);
  --range_width: 193px;
  --control_width: 250px;
  --control_height: 348px;
  --point_width: 22px;
  --point_height: 22px;
  --offset: 3px;

  --orange: #CE7E17;
  --blue: #009DCA;
  --green: #7DA136;
  --pink: #B21862;
}
body {
  font-family: brandon-grotesque, sans-serif;
  font-weight: 300;
  font-style: normal;
}
.container {
  position: absolute;
  left: 50%;
  width: var(--width);
  margin: 0 0 0 calc(var(--center_x) * -1);
}
#viridium_header {
  position: relative;
  /*border: 1px solid white;*/
  width: var(--width);
  height: 56px;
  background-image: url("../images/cube-header.png");
  margin-bottom: 3px;
}
#lmon_content {
  position: relative;
  /*border: 1px solid white;*/
  width: var(--width);
  margin-bottom: 3px;
}
#lmon_footer {
  position: relative;
  /*border: 1px solid white;*/
  width: var(--width);
  height: 56px;
  background-color: lightgray;
  margin-top: 3px;
  padding-right: 24px;
  padding-top: 6px;
  box-sizing: border-box;
  font-size: 20px;
}
#lmon_graph {
  position: relative;
  /*border: 1px solid lightgray;*/
  width: var(--width);
  height: var(--height);
  background-image: url("../images/bg.png");
  background-repeat: no-repeat;
  /*background-position: 0% 0%;
  background-origin: border-box;
  background-size: 1200px 814px;*/
}
.lmon_point {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
  /*left: calc(calc(var(--center_x) - var(--offset)) - var(--point_width));
  top: calc(var(--center_y) + var(--offset));
  z-index: 3;*/
}
#lmon_control_orange {
  position: absolute;
  padding: 0;
  margin: 0;
  width: var(--control_width);
  height: var(--control_height);
  /*border: 1px solid lightgray;*/
  left: -1px;
  top: 52px;
  background-color: #FFFFFF;
  overflow: hidden;
}
#lmon_control_blue {
  position: absolute;
  padding: 0;
  margin: 0;
  width: var(--control_width);
  height: var(--control_height);
  /*border: 1px solid lightgray;*/
  left: calc(calc(var(--width) - var(--control_width)) - 1px);
  top: 52px;
  background-color: #FFFFFF;
}
#lmon_control_green {
  position: absolute;
  padding: 0;
  margin: 0;
  width: var(--control_width);
  height: var(--control_height);
  /*border: 1px solid lightgray;*/
  left: -1px;
  top: calc(var(--center_y) + 5px);
  background-color: #FFFFFF;
}
#lmon_control_pink {
  position: absolute;
  padding: 0;
  margin: 0;
  width: var(--control_width);
  height: var(--control_height);
  /*border: 1px solid lightgray;*/
  left: calc(calc(var(--width) - var(--control_width)) - 1px);
  top: calc(var(--center_y) + 5px);
  background-color: #FFFFFF;
}
.lmon_control_caption {
  border-bottom: 1px solid lightgray;
  margin-top: 7px;
  padding-bottom: 7px;
  padding-left: 7px;
  cursor: pointer;
}
.lmon_control_caption.orange {
  color: var(--orange);
}
.lmon_control_caption.blue {
  color: var(--blue);
}
.lmon_control_caption.green {
  color: var(--green);
}
.lmon_control_caption.pink {
  color: var(--pink);
}
.lmon_control_content {
  border-bottom: 1px solid lightgray;
  margin-top: 7px;
  padding-bottom: 7px;
  padding-left: 7px;
}
input[type=range] {
  width: var(--range_width);
  margin-top: 5px;
}
.collapse {
  display: none;
}
.tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
}
.lmon_point:hover .tooltiptext {
  visibility: visible;
}
#lmon_tooltip {
  position: absolute;
  z-index: 1;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #f2f2f2;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#lmon_tooltip::after {
  position: absolute;
  content: " ";
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #f2f2f2 transparent transparent transparent;
}
i {
  margin-right: 4px;
  position: relative;
  top: -7px;
  cursor: pointer;
  color: #727271;
  font-size: 18px;
}
i.top {
  top: 2px;
}
.lmon_modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  /*background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);*/
}

#lmon_modal_content {
  background-color: #f2f2f2;
  margin: 100px auto;
  border: none;
  width: 500px;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 0px;
  padding-bottom: 20px;
  color: #black;
  border-radius: 5px;
}
#lmon_modal_close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  top: -5px;
  height: 41px;
  position: absolute;
  top: -2px;
  left: 510px;
}

#lmon_modal_close:hover,
#lmon_modal_close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
textarea {
  width: 100%;
}
h2, h4 {
  margin-bottom: 0px;
  margin-top: 0px;
  text-transform: uppercase;
  font-weight: 700;
}
input[type=submit] {
  width: var(--range_width);
  margin-top: 5px;
  background-color: #c2b393;
  color: white;
  height: 35px;
  border: 1px solid black;
  text-transform: uppercase;
}
.input-container {
  display: flex;
  width: 400px;
  margin-bottom: 15px;
  border: 1px solid black;
  padding-top: 3px;
  padding-bottom: 3px;
}

.iconZ {
  padding: 15px;
  color: #333333;
  min-width: 50px;
  text-align: center;
  border-left: 1px solid black;
}

.iconZ.prae {
  border-left: none;
  border-right: var(--border);
}

textarea, input, button, select { font-family: inherit; font-size: inherit; }

.input-field {
  border: none;
  padding: 10px;
  outline: none;
  width: 100%;
}
#lmon_error {
  color: red;
}
a:link {
  color: #000000;
}

/* visited link */
a:visited {
  color: #000000;
}

/* mouse over link */
a:hover {
  color: darkgray;
}

/* selected link */
a:active {
  color: #901C31;
}
.icon-user-minus, .icon-file-pdf {
  top: 2px;
}
