* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  width: 100%;
  height: 100vh;
  padding: 1%;
}


.box {
  float: left;
}

.left {
  width: 25%;
  padding: 10px 0px 0px 10px;
}

.right {
  width: 75%;
  padding: 20px 10px 0px 0px;
}

.container {
  padding: 5px;
}

.container:after {
  content: "";
  display: table;
  clear: both;
}

.description h5{
  font-size:12px;
}

.description p{
  margin-top: 5px;
  font-size:11px;
}

span {
  font-weight: bold;
}

text {
  font-size: .7em;
}

svg {
  height: 80%;
  width: 80%;
  margin: auto;
  display: flex;
  padding-right: 5%;
}

label{
  margin-bottom: 5px;
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 15px;
  background: #DDDDDD;
  outline: none;
  -webkit-transition: .2s;
  transition: opacity .2s;
  margin: 5px 0px 25px 0px;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: #aa0000;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  background: #aa0000;
  cursor: pointer;
}

.radioButton {
  display: block;
  position: relative;
  padding-left: 25px;
  margin: 5px 0px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.radioButton input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #DDDDDD;
}

.radioButton .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.radioButton:hover input ~ .checkmark {
  background-color: #ccc;
}

.radioButton input:checked ~ .checkmark {
  background-color: #aa0000;
}

.checkBox {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkBox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #eee;
}

.checkBox:hover input ~ .checkmark {
  background-color: #ccc;
}

.checkBox input:checked ~ .checkmark {
  background-color: #aa0000;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkBox input:checked ~ .checkmark:after {
  display: block;
}

.checkBox .checkmark:after {
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
