.fontRaleway {
    font-family: 'Raleway', sans-serif;
}
.tab button {
    background-color: #555;
}
.tab button.active {
    background-color: #CB0000;
}
.tabcontent {
    display: none;
}
.containerRadio {
    display: block;
    position: relative;
    padding-left: 34px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.containerRadio .checkmark {
    position: absolute;
    top: 6px;
    left: 0;
    height: 23px;
    width: 23px;
    background-color: #eee;
    border: 1px solid #CB0000;
}
.containerRadio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.containerRadio input:checked ~ .checkmark {
    background-color: #2196F3;
}
.containerRadio input:checked ~ .checkmark:after {
    display: block;
}
.containerRadio .checkmark:after {
    top: 5px;
    left: 6px;
    width: 10px;
    height: 10px;
    border-radius: 49px;
    background: white;
}
.containerRadio .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.containerCheckbox {
  display: block;
  position: relative;
  padding-left: 34px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.containerCheckbox .checkmark2 {
  position: absolute;
  top: 6px;
  left: 0;
  height: 23px;
  width: 23px;
  background-color: #eee;
  border: 1px solid #CB0000;
}
.containerCheckbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.containerCheckbox input:checked ~ .checkmark2 {
  background-color: #2196F3;
}
.containerCheckbox input:checked ~ .checkmark2:after {
  display: block;
}
.containerCheckbox .checkmark2:after {
  left: 7px;
  top: 0px;
  width: 8px;
  height: 18px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkmark2:after {
  content: "";
  position: absolute;
  display: none;
}



