/*Juice Checkboxes*/

.juiceboxes input[type='radio'],
.juiceboxes input[type='checkbox'] {
  display: none;
  cursor: pointer;
}
.juiceboxes input[type='radio']:focus, input[type='radio']:active,
.juiceboxes input[type='checkbox']:focus,
.juiceboxes input[type='checkbox']:active {
  outline: none;
}
.juiceboxes input[type='radio'] + label,
.juiceboxes input[type='checkbox'] + label {
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-right: 35px;
  margin-right: 10px;
}
.juiceboxes input[type='radio'] + label:before, input[type='radio'] + label:after{
    content: "";
    font-family: helvetica;
    display: inline-block;
    width: 20px;
    height: 20px;
    right: 0;
    bottom: -3px;
    text-align: center;
    position: absolute;
    border-radius: 20px;
}
.juiceboxes input[type='checkbox'] + label:before,
.juiceboxes input[type='checkbox'] + label:after {
  content: "";
  font-family: helvetica;
  display: inline-block;
  width: 26px;
  height: 26px;
  right: 0;
  bottom: -3px;
  text-align: center;
  position: absolute;
  border-radius: 4px;
}
.juiceboxes input[type='radio'] + label:before,
.juiceboxes input[type='checkbox'] + label:before {
  background-color: #fff;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  0px 0px 3px rgba(0, 0, 0, 0.12) inset;

}
.juiceboxes input[type='radio'] + label:after,
.juiceboxes input[type='checkbox'] + label:after {
  border: 1px solid #e8e4ef;
  color: #e8e4ef;
}
.juiceboxes input[type='radio']:checked + label:before,
.juiceboxes input[type='checkbox']:checked + label:before {
  -moz-box-shadow: inset 0 0 0 15px #67B7DC;
  -webkit-box-shadow: inset 0 0 0 15px #67B7DC;
  box-shadow: inset 0 0 0 15px #67B7DC;

}
/*Checkbox Specific styles*/

.juiceboxes input[type='checkbox'] + label:hover:after,
.juiceboxes input[type='checkbox'] + label:after,
.juiceboxes input[type='checkbox']:checked + label:after {
  content: "\2713";
  line-height: 25px;
  padding-right: 1px;
  font-size: 17px;
}
.juiceboxes input[type='checkbox'] + label:hover:after {
  color: #c7c7c7;
  border: 1px solid #e8e4ef;
}
.juiceboxes input[type='checkbox']:checked + label:after,
.juiceboxes input[type='checkbox']:checked + label:hover:after {
  color: #fff;
  border: 1px solid #67aed3;
}


