.js-form-item.form-item.js-form-type-item.form-type-item.js-form-item-total-demand.form-item-total-demand p {
    border: 1px solid black;
    border-radius: 5px;
    padding: 10px 15px;
    color: #6B6B6B;
    border-color: #bbb;
    background: #ededed;
}

.webform-element--title-inline.js-form-item.form-item.js-form-type-checkbox.form-type-checkbox{
  display: flex;
  align-items: center;
}

input[type="checkbox"]{
	position: relative;
	width: 90px;
	height: 40px;
	-webkit-appearance: none;
	background: #787878;
	outline: none;
	border-radius: 20px;
	box-shadow: inset 0 0 5px rgba(0,0,0, .2);
	transition: .5s;
	transform: scale(.7);
	cursor: pointer;
}

input[type="checkbox"]:before{
	content: '';
	position: absolute;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	top: 0;
	left: 0;
	background: #fff;
	transform: scale(0.9);
	box-shadow: 0 2px 5px rgba(0,0,0, .2);
	transition: .5s;
}

input[type="checkbox"]:after {
  position: absolute;
  content: 'OFF';
  color: #ffffff;
  font-weight: 700;
  top: 7px;
  right: 7px;
}

input:checked[type="checkbox"]{
	background: #005a9c;
}

input:checked[type="checkbox"]:after {
  position: absolute;
  content: 'ON';
  color: #ffffff;
  font-weight: 700;
  top: 7px;
  left: 7px;
}

input:checked[type="checkbox"]:before{
	left: 50px;
}

fieldset legend {
	font-weight: 600;
  text-align: center;
}

label {
    font-weight: 600;
}

table tr th {
    font-weight: 600;
}