.checkbox {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.checkbox__input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.checkbox__label {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.6;
  color: #636363;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
.checkbox__label::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: block;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.401 2.9996L12.9861 4.58475L5.57126 11.9996L1 7.42844L2.58509 5.8433L5.57126 8.82937L11.401 2.9996Z' fill='white'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  border: 1px solid #c6c6c6;
  content: "";
  transition: border-color 0.3s cubic-bezier(0.3, 0.1, 0.26, 1), background-color 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
.checkbox__label:hover {
  color: #3f4041 !important;
}
.checkbox__label:hover a {
  color: #ff7100 !important;
}
.checkbox__label:hover::before {
  border-color: #959595;
}
.checkbox__input:checked + .checkbox__label, .checkbox__input:checked + .checkbox__label:hover {
  color: #3f4041 !important;
}
.checkbox__input:checked + .checkbox__label::before, .checkbox__input:checked + .checkbox__label:hover::before {
  background-color: #ff7100;
  border-color: #ff7100;
  color: #303030;
}