
:root {
  --text-color: rgba(0,0,0,0.86);
  --boxShadow-color: rgba(0,0,0,0.25);
  --overlay-bgcolor: darkgreen;
  --overlay-textColor: rgba(255,255,255,0.96);
}


*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.unselectable {
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

::-webkit-scrollbar {
  width: 0.75rem;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.35);
  border: none;
}
::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: transparent;
}

/* selection */
::-moz-selection { /* Code for Firefox */
  color: white;
  background: #111;
}
::selection {
  color: white;
  background: #111;
}


#errorMessageWrapper {
  display: block;
}
.errorMessage {
  text-align: left;
  background: orange;
  border: 1px solid tomato;
  padding: 1.2em 1.35em;
  margin-bottom: 1.35em;
}



/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* SITE SPECIFIC styling ++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  height: 100%;
  width: 100%;
}

body {
  padding: 0px;
  margin: 0px;
  color: var(--text-color);
  font-family: 'Inter', sans-serif;
  font-size: 21px;
  line-height: 1.375em;
  background-color: var(--overlay-bgcolor);
  height: 100%; /* vh; */
  overflow: hidden;
}

.pageWrapper {
  display: grid;
  grid-template-rows: 1fr 4rem;
  height: 100%;
  overflow: hidden;
}
.pageWrapper > * {
  /* border: 5px solid red; */
}

.pageWrapper header {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* TYPOGRAPHY */

h1, h2, h3, h4, h5, h6 {
  margin: 0px 0px 1em 0px;
  line-height: 1.35em;
  font-weight: 600;
}
h1 {
  font-size: 2.25em;
  line-height: 1.1em;
}
h2 {
  font-size: 1.75em;
  line-height: 1.1em;
}

p {
  margin: 0px 0px 1.325em 0px;
}



/* Start button */
.startBtnWrapper {
  position: absolute;
  inset: 0;
  z-index: 9000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.startBtnWrapper button {
  font-size: 1.5rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border-width: 0px;
  outline: none;
}
.startBtnWrapper button:hover {
  cursor: pointer;
}

/* Reload */
.reloadWrapper {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 8000;
}

.reloadWrapper button {
  font-size: 1.5rem;
  padding: 1rem 1.5rem;
}

/* SliderWrapper */
.sliderWrapper {
  position: absolute;
  top: 5rem;
  left: 0px;
  padding: 1.5rem;
  font-size: 16px;
  background-color: lightgrey;
  z-index: 9999;
  display: grid;
  grid-template-rows: 1fr;
  grid-gap: 1rem;
  border-radius: 0.5rem;
  max-width: 100vw;
  overflow: hidden;  
}
.sliderWrapper .row {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-gap: 1rem;
}
.sliderWrapper datalist {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  writing-mode: vertical-lr;
  width: 234px; /* 250px; */
  margin: 0px 0px 0px -6px; /* -8px; */
  font-size: 12px;
}

.sliderWrapper option {
  padding: 0;
}

.sliderWrapper input[type="range"] {
  width: 220px;
  margin: 0;
}

