.tagselection {
  text-align: center;
  justify-content: center;
  background-color: var(--customblack);
  margin-top: 20px;
  height: auto;
  /* Customize the label (the container) */
  /* Hide the browser's default checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add background color */
  /* Create the checkmark (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Create Checkbox */
  /* Style checkmark */
}
.tagselection .tagselectioncheckboxes {
  padding: 3% 10%;
  display: flex;
  justify-content: space-evenly;
  min-height: 1em;
}
.tagselection .tagselection_box {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.tagselection .tagselection_box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.tagselection .tagselection_box:hover input ~ .checkmark {
  background-color: #ccc;
  size: 200%;
}
.tagselection #checkboxmusic:checked ~ .checkmark {
  background-color: var(--music);
}
.tagselection #checkboxtravel:checked ~ .checkmark {
  background-color: var(--travel);
}
.tagselection #checkboxvisual:checked ~ .checkmark {
  background-color: var(--visual);
}
.tagselection #checkboxsound:checked ~ .checkmark {
  background-color: var(--sound);
}
.tagselection .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.tagselection .tagselection_box input:checked ~ .checkmark:after {
  display: block;
}
.tagselection .checkmark {
  position: absolute;
  top: 9px;
  left: 0px;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.tagselection .tagselection_box .checkmark:after {
  left: 9px;
  top: 4px;
  width: 5px;
  height: 11px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}/*# sourceMappingURL=tagselection.css.map */