*,
*:after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.container-checkBox {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.container-checkBox > header {
  margin: 0 auto;
  padding: 4em 2em;
  text-align: center;
  background: rgba(0, 0, 0, 0.05);
}

.container-checkBox > header h1 {
  font-size: 2.625em;
  line-height: 1.3;
  margin: 0;
  font-weight: 300;
}

.container-checkBox > header span {
  display: block;
  font-size: 60%;
  color: rgba(0, 0, 0, 0.2);
  font-weight: 400;
  padding: 0 0 0.6em 0.1em;
}

.section-checkBox {
  padding: 0.5em 0;
  margin-right: auto;
  margin-left: 40px;
}

.section-checkBox:nth-child(even) {
  background: rgba(0, 0, 0, 0.05);
}

.section-checkBox.related {
  text-align: center;
  font-size: 1.6em;
}

.related p {
  margin: 0;
  padding: 1.1em;
}

.ac-custom {
  margin: 0 auto;
}

.ac-custom h2 {
  font-size: 3em;
  font-weight: 300;
  padding: 0 0 0.5em;
  margin: 0 0 30px;
}

.ac-custom ul,
.ac-custom ol {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.ac-custom li {
  margin: 0 auto;
  position: relative;
}

.ac-custom label {
  display: inline-block;
  position: relative;
  padding: 0 0 0 40px;
  vertical-align: top;
  color: #4c4c4c;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.ac-custom input[type="checkbox"],
.ac-custom input[type="radio"],
.ac-custom label::before {
  width: 25px;
  height: 25px;
  top: 19px;
  left: 0;
  margin-top: -20px;
  position: absolute;
  cursor: pointer;
}

.ac-custom input[type="checkbox"],
.ac-custom input[type="radio"] {
  opacity: 0;
  -webkit-appearance: none;
  display: inline-block;
  vertical-align: middle;
  z-index: 100;
}

.ac-custom label::before {
  content: "";
  border: 2px solid rgba(32, 33, 36, 1);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border-radius: 8px;
  border: 1px solid #c8c8c6;
}

.ac-radio label::before {
  border-radius: 50%;
}

.ac-custom input[type="checkbox"]:checked + label,
.ac-custom input[type="radio"]:checked + label {
  color: #8d71f5;
}

.ac-custom input[type="checkbox"]:checked + label::before,
.ac-custom input[type="radio"]:checked + label::before {
  opacity: 0.8;
  border: 2px solid #9b81f6;
  box-shadow: 0 0 0 0.2rem #d5c8fb;
}

/* General SVG and path styles */

.ac-custom svg {
  position: absolute;
  width: 16px;
  height: 28px;
  top: 50%;
  margin-top: -19px;
  left: 5px;
  pointer-events: none;
}

.ac-custom svg path {
  stroke: #9b81f6;
  stroke-width: 10px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Specific input, SVG and path styles */

/* Circle */
.ac-circle input[type="checkbox"],
.ac-circle input[type="radio"],
.ac-circle label::before {
  width: 30px;
  height: 30px;
  margin-top: -15px;
  left: 10px;
  position: absolute;
}

.ac-circle label::before {
  background-color: #fff;
  border: none;
}

.ac-circle svg {
  width: 70px;
  height: 70px;
  margin-top: -35px;
  left: -10px;
}

.ac-circle svg path {
  stroke-width: 5px;
}

/* Box Fill */
.ac-boxfill svg path {
  stroke-width: 8px;
}

/* Swirl */
.ac-swirl svg path {
  stroke-width: 8px;
}

/* List */
.ac-list ol {
  list-style: decimal;
  list-style-position: inside;
}

.ac-list ol li {
  font-size: 2em;
  padding: 1em 1em 0 2em;
  text-indent: -40px;
}

.ac-list ol li label {
  font-size: 1em;
  text-indent: 0;
  padding-left: 30px;
}

.ac-list label::before {
  display: none;
}

.ac-list svg {
  width: 100%;
  height: 80px;
  left: 0;
  top: 1.2em;
  margin-top: 0px;
}

.ac-list svg path {
  stroke-width: 4px;
}

/* Media Queries */
@media screen and (max-width: 50em) {
  .section-checkBox {
    font-size: 100%;
  }
}
