body {
  font-family: 'Poppins', sans-serif;
}

h1, h2 {
  font-weight: 600;
  color: #1F201F;
}

h1 {
  font-size: 46px;
  margin: 60px 0 60px 0;
}

p {
  color: #293845;
  margin-bottom: 17px;
}

.content {
  width: 650px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 200px;
  padding-bottom: 50px;
  border-bottom: 1px solid #ccc;
}

.wss-caclulator-tool {
  margin-bottom: 30px;
}

.wss-calculator-check {
  padding-left: 0;
  margin-bottom: 10px;
}

.wss-caclulator-savings {
  margin-top: 20px;
  padding: 30px;
  background-color: #F2F2F0;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
}

/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: 0;
  opacity: 0.01;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  padding-left: 2.3em;
  font-size: 1.05em;
  line-height: 2;
  cursor: pointer;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border: 2px solid #293845;
  background: #FFF;
  border-radius: .2em;
  -webkit-transition: all .275s;
  transition: all .275s;
}

/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 7px;
  left: 6px;
  width: 19px;
  height: 11px;
  webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border: solid;
  border-width: 0 0 4px 4px;
  border-top-color: rgba(0,0,0,0);
  opacity: 0;
  background: rgba(0,0,0,0);
}

/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0) rotate(45deg);
      transform: scale(0) rotate(45deg);
}

[type="checkbox"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1) rotate(-45deg);
      transform: scale(1) rotate(-45deg);
}

/* Disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #e9e9e9;
}

[type="checkbox"]:disabled:checked + label:after {
  color: #777;
}

[type="checkbox"]:disabled + label {
  color: #aaa;
}

/* Accessibility */
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
  box-shadow: inset 0 1px 3px rgba(0,0,0, .1), 0 0 0 6px rgba(180, 180, 180, 0.2);
}
