.checkbox__input {
  display: none
}
.checkbox__input:checked + .checkbox__text::before {
  background-color: #00aaa7;
  border-color: #00aaa7
}
.checkbox__input:checked + .checkbox__text::after {
  opacity: 1
}
.checkbox__input.is-error + .checkbox__text::before {
  border-color: #e4002b
}
.checkbox__text {
  position: relative;
  padding-top: 4px;
  padding-left: 40px;
  font-family: FuturaPT,Arial,sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 110%;
  color: #fff
}
.checkbox__text::before {
  position: absolute;
  top: 0;
  left: 0;
  flex-shrink: 0;
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #3e3f41;
  border-radius: 6px;
  transition: .35s
}
.checkbox__text::after {
  position: absolute;
  top: 2px;
  left: 2px;
  flex-shrink: 0;
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../img/content/check.svg);
  opacity: 0;
  transition: .35s
}
.checkbox__text a {
  color: #00aaa7;
  text-decoration: underline
}
.checkbox__text a:hover {
  text-decoration: none
}