#cfw {
  input[type="radio"] {
    border: 1px solid rgba(19, 33, 71, 0.2);
    box-shadow: none !important;

    &:checked:after {
      position: absolute;
      background-color: #135bff;
      height: 6px;
      width: 6px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      content: "";
      display: block;
      margin: 0;
      border-radius: 50%;
      transition: all .2s ease-in-out .1s;
    }
  }
}