.radio {
  margin: 5rem;
}

.radio__input {
  display: none;
}

.radio__input:checked + .radio__label:before {
  background-color: #fc556f;
  -webkit-box-shadow: 0 0 0 4px #fff, 0 0 0 6px #fc556f;
          box-shadow: 0 0 0 4px #fff, 0 0 0 6px #fc556f;
}

.radio__input:checked + .radio__label:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 4px;
  -webkit-transform: rotate(-45deg) translate(-70%);
          transform: rotate(-45deg) translate(-70%);
  border-left: 3px solid white;
  border-bottom: 3px solid white;
}

.radio__label {
  margin: 2rem;
  position: relative;
  padding-left: 1.5rem;
  cursor: pointer;
}

.radio__label:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 3rem;
  background-color: #eee;
  -webkit-box-shadow: 0 0 0 4px #eee, 0 0 0 6px #b7c1cb;
          box-shadow: 0 0 0 4px #eee, 0 0 0 6px #b7c1cb;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}
/*# sourceMappingURL=style.css.map */