/* The container */
.mycheckbox {
  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 */
.mycheckbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 25px;
  height: 25px;
  /* width: 180px; */
  width: 155px;
  background-color: #66ff66;
  border: 2px solid #eee;
  border-radius: 10px;
}

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

/* When the checkbox is checked, add a blue background */
.mycheckbox input:checked ~ .checkmark {
  /* background-color: #2196F3; */
  background-color: #00cc00;
}

.mycheckbox input:disabled ~ .checkmark {
  background-color: #a6a6a6;
  font-style: italic;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

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

/* Style the checkmark/indicator */
.mycheckbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  /* border: solid white; */
  border: solid blue;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.test{
  display: block;
  position: relative;
  background-color: #ffff10;
  height: 35px;
  width: 180px;
  margin-top: 8px;
  margin-bottom: 8px;
  border-color: #ffff00;
  border-width: 4px;
  border-style: solid;
}

.minuti{
  /* text-decoration: underline; */
  vertical-align: super;
  font-size: smaller;
}
.bersaglio{
  font-size: 22px;
  font-weight: bold;
  padding: 5px;
  background-color: #f2f2f2;
  border-radius: 5px;
}
.bers{
  width: 180px;
  display: inline;
  background-color: #f2f2f2;
  /* padding: 10px; */
  margin: 10px;
  margin-left: 0px;
  border-radius: 10px;
}
.error {
  color: #FF0000;
  border-color:red;
}

/* @media screen and (max-width: 501px) {
  .bers{
    width: 167px;
    position: relative;
    float: none;
  }
} */
