* {box-sizing: border-box;}

body {
  background: #eee;
}

/* The grid: Four equal columns that floats next to each other */
.column {
  float: left;
  width: 12.5%;
  padding: 2px;
  position: relative;
}

/* Style the images inside the grid */
.column img {
  opacity: 0.95;
  cursor: pointer;
  width: 100%;
  border-radius: 5px;
}

.imtext {
  position: absolute;
  top: 5px;
  left: 5px;
  padding-left: 5px;
  padding-right: 5px;
  background: rgba(100, 100, 100, 0.6);
  color: #fff;
  font-size: 11pt;
  font-family: Arial, Helvetica, sans-serif;
  border-radius: 3px;
}

.column img:hover {
  opacity: 1;
}

#expandedImg {
  border-radius: 5px;
  width: 100%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* The expanding image container (positioning is needed to position the close button and the text) */
.container {
  position: relative;
  display: none;
}

/* Expanding image text */
#info {
  position: absolute;
  width: 400px;
  top: 15px;
  left: 15px;
  color: #222;
  padding: 10px 10px 0px 10px;
  /*background: rgba(100, 100, 100, 0.8);*/
  background: rgba(240, 240, 240, 1);
  font-size: 11pt;
  font-family: Arial, Helvetica, sans-serif;
  border-radius: 7px;
}

.inftext {
  color: #c33;
  font-style: italic;
}

#histImg {
  padding-top: 10px;
  width: 100%;
  padding-bottom: 5px;
}

#info_scatter {
  position: absolute;
  width: 400px;
  margin-top: 20px;
  left: 15px;
  color: #fff;
  padding: 10px 10px 0px 10px;
  background: rgba(240, 240, 240, 1);
  font-size: 11pt;
  font-family: Arial, Helvetica, sans-serif;
  border-radius: 7px;
}

#scatterImg {
  width: 100%;
  padding-bottom: 5px;
}

/* Closable button inside the image */
.closebtn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 35px;
  cursor: pointer;
}


.img-magnifier-glass {
  position: absolute;
  /*border: 2px solid #000;*/
  border-radius: 40%;
  cursor: none;
  width: 200px;
  height: 200px;
}

.slider {
  float: right;
  -webkit-appearance: none;
  width: 50%;
  height: 5px;
  border-radius: 5px;  
  background: #eee;
  outline: none;
  opacity: 0.8;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%; 
  background: #4CAF50;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
}

.cboxout {
  float: right;
  width: 50%;
}

/* Customize the label (the container) */
.cboxcontainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0.8;
}

/* Hide the browser's default checkbox */
.cboxcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 16px;
  background-color: #eee;
}

.cboxcontainer:hover {
  opacity: 1;
}

/* On mouse-over, add a grey background color */
.cboxcontainer:hover input ~ .checkmark {
  background-color: #eee;
}

/* When the checkbox is checked, add a blue background */
.cboxcontainer input:checked ~ .checkmark {
  background-color: #4CAF50;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.cboxcontainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.cboxcontainer .checkmark:after {
  left: 5px;
  top: 2px;
  width: 3px;
  height: 6px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.rboxout {
  margin-left: 3%;
}

.rboxcontainer {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 2px;
  font-size: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.rboxcontainer input {
  position: absolute;
  opacity: 0;
}

/* Create a custom radio button */
.rcheckmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  background-color: #eee;
  border-radius: 50%;
  opacity: 0.8;
  cursor: pointer;
}

.rcheckmark:hover {
  opacity: 1;
}

/* On mouse-over, add a grey background color */
.rcheckmark:hover input ~ .rcheckmark {
  background-color: #eee;
}

/* When the radio button is checked, add a blue background */
.rboxcontainer input:checked ~ .rcheckmark {
  background-color: #4CAF50;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.rcheckmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.rboxcontainer input:checked ~ .rcheckmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.rboxcontainer .rcheckmark:after {
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}


.slidecontainer{
  width: 100%;
}

h5 {
  float: left;
  display: inline-block;
  position: relative;
  padding: 0px;
  margin: 0px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 11pt;
  color: #fff;
}

.rboxcontainer label {
  padding: 0px;
  margin: 0px 0px 5px 0px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-style: italic;
  font-size: 10pt;
  color: #fff;
}

.slidecontainer p {
  text-align: right;
  padding: 0px;
  margin: 0px 0px 5px 0px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-style: italic;
  font-size: 10pt;
  color: #fff;
}

.input-controls {
  border: 0px solid #aaa;
  border-radius: 8px;
  display: inline-block;
  width: 32.9%;
  padding: 12px;
  margin: 20px 0px 0.5% 2px;
  position: relative;
  vertical-align: top;
  background: #666; /*#ffe6cc;*/
}

.cheader {
  font-size: 14pt;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
  position: absolute;
  top: -20px;
  left: -5px;
  padding-left: 10px;
  padding-right: 10px;
}

