#foundation label {
  display: block;
  background: none!important;
  border: none;
  outline: none;
  box-shadow: none;
  position: relative;
  transition: all 0.5s ease;
	text-align: left;
}

.checkitem {
   display: inline-block;
   cursor: pointer;
   position: relative;
   white-space: nowrap;
   padding-bottom: 10px;
	color: #5dabc4;
}
.checkitem span {
  display: inline-block;
  position: relative;
  background-color: #F4F4F4;
  width: 25px;
  height: 25px;
  transform-origin: center;
  border: 2px solid #5dabc4;
  border-radius: 50%;
  vertical-align: -6px;
  margin-right: 10px;
  transition: background-color 150ms 200ms, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89);
}
.checkitem:active span {
  display: inline-block;
  position: relative;
  background-color: transparent;
  width: 25px;
  height: 25px;
  transform-origin: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  vertical-align: -6px;
  margin-right: 10px;
  transition: background-color 150ms 200ms, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89);
}
.checkitem span:before {
  content: "";
  width: 0px;
  height: 2px;
  border-radius: 2px;
  background: #5dabc4;
  position: absolute;
  transform: rotate(45deg);
  top: 11px;
  left: 7px;
  transition: width 50ms ease 50ms;
  transform-origin: 0% 0%;
}
.checkitem span:after {
  content: "";
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: #5dabc4;
  position: absolute;
  transform: rotate(305deg);
  top: 14px;
  left: 8px;
  transition: width 50ms ease;
  transform-origin: 0% 0%;
}
.checkitem:hover span:before {
  width: 5px;
  transition: width 100ms ease;
}
.checkitem:hover span:after {
  width: 10px;
  transition: width 150ms ease 100ms;
}

#budget label {
  text-transform: uppercase;
  font-weight: 400;
}

input[type="checkbox"] {
  display: none;
}
input[type="checkbox"]:checked + .checkitem span {
  background-color: #e06721;
    border: 2px solid #f2873c;
  transform: scale(1.25);
}
input[type="checkbox"]:checked + .checkitem span:after {
  width: 10px;
  background: #ffffff;
  transition: width 150ms ease 100ms;
}
input[type="checkbox"]:checked + .checkitem span:before {
  width: 5px;
  background: #ffffff;
  transition: width 150ms ease 100ms;
}
input[type="checkbox"]:checked + .checkitem:hover span {
  background-color: #e06721;
    border: 2px solid #f2873c;
  transform: scale(1.25);
}
input[type="checkbox"]:checked + .checkitem:hover span:after {
  width: 10px;
  background: #ffffff;
  transition: width 150ms ease 100ms;
}
input[type="checkbox"]:checked + .checkitem:hover span:before {
  width: 5px;
  background: #ffffff;
  transition: width 150ms ease 100ms;
}