/* Customize the label (the custom--checkbox) */
.custom--checkbox {
  color: #f95e5a;
  display: inline-block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  margin-top: 15px;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.custom--checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.check--mark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  border: 1px solid #000000;
  border-radius: 4px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.check--mark:after {
  content: url("../../../../../../../../images/check-mark.svg");
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.custom--checkbox input:checked ~ .check--mark:after {
  display: block;
}

/* Style the checkmark/indicator */
.custom--checkbox .check--mark:after {
  top: -10px;
  left: 2px;
}

/* @media screen and (max-width: 1023px) {
  .custom--checkbox {
    padding-left: 6vw;
    font-size: 3.86vw;
  }

  .check--mark {
    height: 3.86vw;
    width: 3.86vw;
    border-radius: 1vw;
  }

  .check--mark:after {
    width: 4.58vw;
    resize: both;
    overflow: auto;
  }
} */
