@font-face {
  font-family: "roboto-bold";
  src: url(/public/fonts/Roboto/Roboto-medium.ttf) format("opentype"); }

@font-face {
  font-family: "roboto";
  src: url(/public/fonts/Roboto/Roboto-Regular.ttf) format("opentype"); }

@font-face {
  font-family: "roboto-bold";
  src: url(/public/fonts/Roboto/Roboto-medium.ttf) format("opentype"); }

@font-face {
  font-family: "roboto";
  src: url(/public/fonts/Roboto/Roboto-Regular.ttf) format("opentype"); }

.custom-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .custom-checkbox .custom-checkbox__check-mark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }
  .custom-checkbox_is-secondary .custom-checkbox__input:checked ~ .custom-checkbox__check-mark {
    background-color: #006B5C; }

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

/* Create a custom checkbox */
.custom-checkbox__check-mark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #dbdbdb; }

/* When the checkbox is checked, add a blue background */
.custom-checkbox__input:checked ~ .custom-checkbox__check-mark {
  background-color: #006BC2;
  border: 0px;
  box-shadow: none; }

/* Create the custom-checkbox__check-mark/indicator (hidden when not checked) */
.custom-checkbox__check-mark:after {
  content: '';
  position: absolute;
  display: none; }

/* Show the custom-checkbox__check-mark when checked */
.custom-checkbox__input:checked ~ .custom-checkbox__check-mark:after {
  display: block; }

.custom-checkbox__link {
  color: #006BC2;
  text-decoration: underline; }
