body {
  -webkit-animation: bugfix infinite 1s;
}
@-webkit-keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
.checkbox-btn,
.radio-btn {
  position: relative;
  padding-left: 18px;
}
.checkbox-btn,
.radio-btn.redesign {
  position: relative;
  padding-left: 10px;
}

.checkbox-btn input[type="checkbox"],
.checkbox-btn input[type="radio"],
.radio-btn input[type="checkbox"],
.radio-btn input[type="radio"] {
  position: absolute;
  opacity: 0;
  z-index: 1;
}
.checkbox-btn label,
.radio-btn label {
  display: inline-block;
  line-height: 24px;
  vertical-align: middle;
  position: relative;
  padding-left: 10px;
  cursor: pointer;
  user-select: none;
  color: #00a350;
  padding-top: 5px;
}
.checkbox-btn label{
    display: inline-block;
    line-height: 25px;
    vertical-align: middle;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    user-select: none;
    color: black;
}

.radio-btn.redesign label {
  display: inline-block;
  line-height: 13px;
  vertical-align: middle;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
  color: black;
}

.checkbox-btn label::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  left: 0;
  top: 0;
  margin-left: -14px;
  background-color: white;
  border: 2px solid #00a350;
  -webkit-border-radius: 2px;
  border-radius: 3px;
  background-clip: padding-box;
  cursor: pointer;
}
.radio-btn label::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  left: 0;
  top: 0;
  margin-left: -14px;
  background-color: white;
  border: 2px solid #00a350;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-clip: padding-box;
  cursor: pointer;
}

.checkbox-btn label::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  left: 0;
  top: 0;
  margin-left: -14px;
  background-color: white;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 1px;
  border-radius: 3px;
  background-clip: padding-box;
  cursor: pointer;
}

.radio-btn.redesign label::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  left: 0;
  top: 0;
  margin-left: -14px;
  background-color: white;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 1px;
  border-radius: 1px;
  background-clip: padding-box;
  cursor: pointer;
}

.checkbox-btn label::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 8px;
  left: 5px;
  margin-left: -18px;
  border: 2px solid white;
  border-top: none;
  border-right: none;
  background: transparent;
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 0;
  -webkit-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  z-index: 1;
  top: 11px !important;
  left: 8px !important;
}
.radio-btn label::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 5px;
  top: 6px;
  left: 5px;
  margin-left: -18px;
  border: 2px solid #00a350;
  border-top: none;
  border-right: none;
  background: transparent;
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 0;
  -webkit-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  z-index: 1;
}

.checkbox-btn label:active::before,
.radio-btn label:active::before {
  opacity: 0.3;
}

.checkbox-btn input[type="checkbox"]:checked + label,
.checkbox-btn input[type="radio"]:checked + label,
.radio-btn input[type="checkbox"]:checked + label,
.radio-btn input[type="radio"]:checked + label {
  color: black;
}

.checkbox-btn input[type="checkbox"]:checked + label::after,
.radio-btn input[type="checkbox"]:checked + label::after {
  border: 12px solid #00a350;
}

.checkbox-btn
  input[type="radio"]:checked
  + label::after
  .radio-btn
  input[type="radio"]:checked
  + label::after {
  border: 6px solid #00a350;
}

.checkbox-btn input[type="radio"]:checked + label::after,
.radio-btn input[type="radio"]:checked + label::after {
  border: 6px solid #00a350;
}
.checkbox-btn input[type="checkbox"]:checked + label::before,
.checkbox-btn input[type="radio"]:checked + label::before,
.radio-btn input[type="checkbox"]:checked + label::before,
.radio-btn input[type="radio"]:checked + label::before {
  opacity: 1;
}
.checkbox-btn input[type="checkbox"]:disabled + label,
.checkbox-btn input[type="radio"]:disabled + label,
.radio-btn input[type="checkbox"]:disabled + label,
.radio-btn input[type="radio"]:disabled + label {
  color: #787878;
  cursor: default;
}
.checkbox-btn input[type="checkbox"]:disabled + label::after,
.checkbox-btn input[type="radio"]:disabled + label::after,
.radio-btn input[type="checkbox"]:disabled + label::after,
.radio-btn input[type="radio"]:disabled + label::after {
  border: 2px solid #00a350;
  background-color: #ffffff;
}
.checkbox-btn input[type="checkbox"]:disabled + label::before,
.checkbox-btn input[type="radio"]:disabled + label::before,
.radio-btn input[type="checkbox"]:disabled + label::before,
.radio-btn input[type="radio"]:disabled + label::before {
  display: none;
}

.radio-btn label::after {
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-clip: padding-box;
}
.radio-btn.redesign label::after {
  top: -1px !important;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-clip: padding-box;
}

.radio-btn label::before {
  display: none;
}
/*# sourceMappingURL=checkbox.css.map */
