.cjoinOptionGroup {
    border-radius: 8px;
    margin-bottom: 2rem;
}
.containerCheckBox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #ccc;
}

/* On mouse-over, add a grey background color */
.containerCheckBox:hover input ~ .checkmark {
  background-color: #BDC3C7;
}

/* When the checkbox is checked, add a blue background */
.containerCheckBox input:checked ~ .checkmark {
  background-color: #2196F3;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.containerCheckBox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.containerCheckBox .checkmark:after {
  left: 8px;
  top: 0x;
  width: 7px;
  height: 16px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.membership-option {
    border-radius: 8px;
}

.membership-option ul {
  list-style: none;
  padding-left:0px;
  margin-bottom:0px;
}

.membership-option ul li:before {
  content: '✓';
}

.membership-option-input {
   vertical-align:top;
   display:inline-block;
   padding-top:16px;
   padding-right:5px;
}
.membership-option-text {
   display:inline-block;
}
.joinHeaders {
    color: #3e80b7;
    font-size: 20px;
    line-height: 25px;
    padding-top: 15px;
}
