body {
    font-family: BlinkMacSystemFont, -apple-system,"Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    overflow: hidden;
}

a, u {
    text-decoration: none;
    color: BLUEVIOLET;
}

a:hover {
    text-decoration: none;
    color: MAGENTA;
    cursor:pointer;
}


.fill {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.dialog {
    position: absolute;

    background: rgba(255,255,255);
    padding: 10px;
    border: 2px solid #000;
    border-radius: 5px;
    background-clip: padding-box;
}

.dialog-top {
    top: 11px;
    left: 70px;
    margin-right: 11px;
}

.dialog-center {
    width: 300px;
    height: 125px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.right {
    float: right;
}

.left {
    float: left;
}

.high-contrast-text-128 {
    font-size: 128px;
    font-weight: 1000;
    color: #000;
    text-shadow:
    -3px -3px 0 #fff,
    3px -3px 0 #fff,
    -3px 3px 0 #fff,
    3px 3px 0 #fff;
}

.high-contrast-text-64 {
    font-size: 64px;
    font-weight: 500;
    color: #000;
    text-shadow:
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff;
}

.high-contrast-text-32 {
  font-size: 32px;
  font-weight: 500;
  color: #000;
  text-shadow:
  -1px -1px 0 #fff,
  1px -1px 0 #fff,
  -1px 1px 0 #fff,
  1px 1px 0 #fff;
}

.nowrap {
  white-space: nowrap;
}

.map-button {
    background-color: #fff;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.map-button-bottom-left {
    margin-bottom: 10px;
    margin-left: 10px;
}

.space-between-children {
  display: flex;
  column-gap: 10px;
  justify-content: space-between;  
}

/* slider https://www.cssportal.com/style-input-range/ */

input[type=range] {
  height: 48px;
  -webkit-appearance: none;
  margin: 10px 0;
  width: 100%;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 11px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #000000;
  background: #74A9D8;
  border-radius: 1px;
  border: 0px solid #010101;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 1px 1px 1px #000031;
  border: 1px solid #00001E;
  height: 40px;
  width: 50px;
  border-radius: 25px;
  background: #FFFFFF;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -15px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #74A9D8;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 11px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #000000;
  background: #74A9D8;
  border-radius: 1px;
  border: 0px solid #010101;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 1px 1px 1px #000031;
  border: 1px solid #00001E;
  height: 40px;
  width: 50px;
  border-radius: 25px;
  background: #FFFFFF;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 11px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #74A9D8;
  border: 0px solid #010101;
  border-radius: 2px;
  box-shadow: 1px 1px 1px #000000;
}
input[type=range]::-ms-fill-upper {
  background: #74A9D8;
  border: 0px solid #010101;
  border-radius: 2px;
  box-shadow: 1px 1px 1px #000000;
}
input[type=range]::-ms-thumb {
  margin-top: 1px;
  box-shadow: 1px 1px 1px #000031;
  border: 1px solid #00001E;
  height: 40px;
  width: 50px;
  border-radius: 25px;
  background: #FFFFFF;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: #74A9D8;
}
input[type=range]:focus::-ms-fill-upper {
  background: #74A9D8;
}
