/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/
@import url("https://fonts.googleapis.com/css2?family=Commissioner:wght@400;500;600&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #f5f5f6;
  font-weight: 500;
  font-family: "Commissioner", sans-serif;
}
body h1,
body h2 {
  margin: 0;
}
body button:focus {
  outline: none;
}
body input:focus {
  outline: none;
}

.check-wrap {
  display: block;
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.check-wrap input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

.checkmark {
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 0;
  height: 15px;
  width: 15px;
  background-color: white;
  -webkit-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  border: 1px solid #a7a8a9;
  border-radius: 3px;
}

.checkmark:hover {
  background-color: #ccc;
}

.check-wrap input:checked ~ .checkmark {
  background-color: #add6f3;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.check-wrap input:checked ~ .checkmark:after {
  display: block;
}

.check-wrap .checkmark:after {
  left: 8px;
  top: -6px;
  width: 5px;
  height: 16px;
  border: solid black;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*# sourceMappingURL=styles.css.map */
