.CheckButton {
  display: inline-block;
  position: relative;
  margin-right: 0.8rem;
}

.CheckButton-btn {
  background: transparent;
  border: 1px solid #B3B3CC;
  border-radius: 50%;
  display: inline-block;
  height: 1rem;
  overflow: hidden;
  transition: border 150ms ease-out;
  width: 1rem;
  vertical-align: middle;
}

.CheckButton-input {
  bottom: 0;
  cursor: pointer;
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}

/* hover */

.CheckButton-btn:hover {
  border: 1px solid #8071FE;
}

/* checked */

.CheckButton-input:checked + .CheckButton-btn {
  background:
    url(./images/check-white.svg)
    no-repeat
    center
    center
    #9B8FFF;
  background-size: 0.6rem;
  border: 1px solid #9B8FFF;
}
