* {
    box-sizing: border-box;
}
body {
	margin: 0;
	text-align: center;
	font-family: sans-serif;
	font-size: 14px;
	overflow: hidden;
	height: 800px;
	position: unset;
	display: block;
	flex-direction: unset;
	width: 1240px;
}

body .ranges {
	position: relative;
	top: 3px;
	border-radius: 3px;
	cursor: grab;
	cursor: -webkit-grab;
	width: 100px;
	background-color: #157efc;
}

body .ranges:active {
	cursor: grabbing;
	cursor: -webkit-grabbing;
}

#vaccinated_percent-val:after {
	content: " %";
	width: min-content;
	position: absolute;
	padding-left: 17px;
}
/* #vaccinated_percent-val__bottom:after {
	content: " %";
	width: min-content;
	position: absolute;
	padding-left: 5px;
	color: #00f;
} */
.container__wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	/* height: 750px; */
	flex-wrap: wrap;
	height: -webkit-fill-available;
	height: -moz-available;
	text-align: left;
	min-height: 800px;
}
.content__row h2 {
	/* margin: 0; */
	max-width: 840px;
}
.content__row.content {
	width: 100%;
	text-align: center;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	height: auto;
}
.content__row:not(.content) {
	justify-content: center;
}
.content__left {
	display: flex;
	flex-direction: column;
	width: 250px;
	flex-basis: 250px;
	height: auto;
	background-color: #f9f9f9;
}
.content__right {
	display: flex;
	flex-direction: column;
	width: 970px;
	flex-basis: 970px;
	height: inherit;
	margin-left: 10px;
}
.option.first {
	border-bottom: 1px dotted #888;
	/* padding: 10px; */
	background-color: #f1f1f1;
	color: #157efc;
}
.option.first p {
	font-family: "DIN Pro";
	font-size: 16px;
}
.option {
	padding: 10px 0;
}
.content__col {
    padding: 10px 10px 0 10px;
    border-left: 5px solid #d6d6d6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: start;
    height: auto;
}
.content__col h3 {
	color: #212121;
	margin-bottom: 5px;
	margin-top: 0;
	width: 100%;
	text-align: left;
	font-family: "DIN Pro", sans-serif;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: -0.04em;
}
.content__col input {
	width: 100%;
	height: 2px;
	-webkit-appearance: none;
}
.content__col span {
	color: #888;
	margin: 0;
	width: 100%;
	text-align: left;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin-top: 10px;
	font-family: "DIN Pro";
	font-weight: 400;
	font-size: 16px;
	min-height: 45px;
}
.option.last {
	border-top: 1px dotted #888;
	/* border-bottom: 1px dotted #888; */
	padding: 0;
	background-color: #f1f1f1;
}
.option.last .content__col {
	border-left: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: row;
}
.option.last h3 {
	font-size: 16px;
	font-weight: 400;
	color: #157efc;
	width: 70%;
}
.option.last span {
	font-size: 16px;
	color: #157efc;
	font-weight: 900;
	width: 30%;
	margin-top: 0;
}
input[type=range]::-moz-range-thumb {
  background-color: #157efc;
  border-radius: 50%;
}
p.stat {
	display: none;
	justify-content: start;
	align-items: center;
	color: #888;
}
p.stat span {
	padding: 0 5px;
}

p.stat.normal,
p.stat.sick,
p.stat.recovered,
p.stat.dead {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-left: 25px;
}
p.stat.all span,
p.stat.normal span,
p.stat.sick span,
p.stat.recovered span,
p.stat.dead span {
	font-family: "DIN Pro";
	font-size: 16px;
	font-weight: 400;
}
p.stat.all span:first-of-type:before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #fff;
	border: 1px solid #000;
	position: absolute;
	left: 10px;
	top: 7px;
}
p.stat.normal span:first-of-type:before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: green;
	border: 1px solid green;
	position: absolute;
	left: 10px;
	top: 7px;
}
p.stat.normal span:last-of-type {
	color: green;
}
p.stat.sick span:first-of-type:before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: red;
	border: 1px solid red;
	position: absolute;
	left: 10px;
	top: 7px;
}
p.stat.sick span:last-of-type {
	color: red;
}
p.stat.recovered span:first-of-type:before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: orange;
	border: 1px solid orange;
	position: absolute;
	left: 10px;
	top: 7px;
}
p.stat.recovered span:last-of-type {
	color: orange;
}
p.stat.dead span:first-of-type:before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #fff;
	border: 1px solid #000;
	position: absolute;
	left: 10px;
	top: 5px;
}
p.stat.dead span:last-of-type {
	color: #888;
}
.speed {
	border-top: 1px dotted;
	color: #157efc;
	height: 40px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-left: 10px;
	font-family: "DIN Pro";
	font-weight: 400;
	font-size: 16px;
}
.speed span {
	font-size: 16px;
	font-weight: 900;
	padding-left: 50px;
}
.restart {
	width: 100%;
	padding: 15px;
	background-color: #157efc;
	border: 0;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
}
html {
	height: -webkit-fill-available;
	height: -moz-available;
}
body {
	display: initial;
	height: -webkit-fill-available;
	height: -moz-available;
}
body #graphs {
	display: flex;
	/* height: inherit; */
	opacity: 1;
	position: absolute;
	bottom: 0;
	height: auto;
	width: inherit;
	background-color: #fff;
}
body #controls {
	width: 250px;
}
p.stat.normal,
p.stat.sick,
p.stat.recovered,
p.stat.dead,
p.stat.immun {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-left: 25px;
    width: 44%;
    flex-basis: 44%;
}
p.stat.all span,
p.stat.normal span,
p.stat.sick span,
p.stat.recovered span,
p.stat.dead span,
p.stat.immun span {
	font-family: "DIN Pro";
	font-size: 16px;
	font-weight: 400;
}
p.stat.immun span:first-of-type:before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #00f;
	border: 1px solid rgb(8, 19, 8);
	position: absolute;
	left: 10px;
	top: 7px;
}
.last h3 {
	margin-bottom: 0;
}
.last .content__col {
	padding: 0 10px;
}
.last .content__col span {
	align-items: center;
}
/*Chrome*/
/* @media screen and (-webkit-min-device-pixel-ratio:0) {
    input[type='range'] {
      overflow: hidden;
      width: 100%;
      -webkit-appearance: none; */
      /* background-color: #157efc; */
    /* }

    input[type='range']::-webkit-slider-runnable-track {
      height: 10px;
      -webkit-appearance: none;
      color: #157efc;
      margin-top: -1px;
    }

    input[type='range']::-webkit-slider-thumb {
      width: 10px;
      -webkit-appearance: none;
      height: 10px;
      cursor: ew-resize;
      background: #157efc;
      box-shadow: -80px 0 0 80px #157efc;
    } */

/* } */
/** FF*/
input[type="range"]::-moz-range-progress {
  background-color: #157efc;
}
input[type="range"]::-moz-range-track {
  background-color: #157efc;
}
/* IE*/
input[type="range"]::-ms-fill-lower {
  background-color: #157efc;
}
input[type="range"]::-ms-fill-upper {
  background-color: #157efc;
}