/* Stylesheet: type of activity */



.activities {
  position: relative;
  height: 45px;
  margin: 10px;
}

.act_categories {
  text-align: center;
  color: white;
  font-size: small;
  width: 150px;
  position: absolute;
  top: 0px;
}

.tooltip {
  visibility: hidden;
  width: 250px;
  background-color: #FBA827;
  color: #fff;
  //text-align: center;
  border-radius: 6px;
  padding: 5px;
  font-weight:normal;
  font-size:small;
  /* Position the tooltip */
  position: absolute;
  top: 20px;
  z-index: 1;
}

.activities .touch {
  width: 145px;
  border: 1px solid #085358;
  box-shadow: -3px 0px 3px #085358;
  border-radius: 5px;
  height: 45px;
  color: #28E5D8;
  font-size: small;
  position: absolute;
}

.activities .touch2 {
  width: 145px;
  border: 1px solid #085358;
  box-shadow: -3px 0px 3px #085358;
  border-radius: 5px;
  height: 45px;
  color: #28E5D8;
  font-size: small;
  position: absolute;
  left: 152px;
}

.activities .touch3 {
  width: 145px;
  border: 1px solid #085358;
  box-shadow: -3px 0px 3px #085358;
  border-radius: 5px;
  height: 45px;
  color: #28E5D8;
  font-size: small;
  position: absolute;
  left: 304px;
}

.activities .touch4 {
  width: 145px;
  border: 1px solid #085358;
  box-shadow: -3px 0px 3px #085358;
  border-radius: 5px;
  height: 45px;
  color: #28E5D8;
  font-size: small;
  position: absolute;
  left: 456px;
}

.activities .touch5 {
  width: 145px;
  border: 1px solid #085358;
  box-shadow: -1px 0px 3px #085358;
  border-radius: 5px;
  height: 45px;
  color: #28E5D8;
  font-size: small;
  position: absolute;
  left: 608px;
}

.activities input[type=radio] {
  position: absolute;
  visibility: hidden;
}

.activities label {
  padding: 3px;
  height: 39px;
  width: 140px;
  position: absolute;
  top: 0px;
  font-weight:normal;
}

.activities .labeltxt {
  width: 100px;
  position: absolute;
  line-height: 95%;
  font-weight:normal;
}

.activities .check {
  display: block;
  position: absolute;
  border: 2px solid #085358;
  border-radius: 100%;
  height: 30px;
  width: 30px;
  top: 5px;
  right: 10px;
  box-shadow: -1px 0px 1px #085358;
}

.activities .check::before {
  display: block;
  position: absolute;
  content: '';
  border-radius: 100%;
  height: 10px;
  width: 10px;
  top: 8px;
  left: 8px;
  margin: auto;
  border: solid black 2px;
}

.activities input[type=radio]:checked ~.check::before {
  border: solid #28E5D8 2px;
  box-shadow: 0 0 2px #28E5D8;
}


