.menuRueda {
  position: fixed;
  border-radius: 50%;
  opacity: 0.9;
  -webkit-transition: background-color 1s;
  transition: background-color 1s;
}

.menuRueda .agujero {
  position: absolute;
  border-radius: 50%;
  background-color: white;
}

.menuRueda .botonGiro {
  position: absolute;
  height: 22px;
  width: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  text-align: center;
  line-height: 14px;
  font-size: 30px;
  border-radius: 8px 8px 0px 0px;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: background-color 1s;
  transition: background-color 1s;
}

.menuRueda a {
  position: absolute;
  display: block;
  border-radius: 50%;
  padding: 0px;
  margin: 0px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  -webkit-box-shadow: 3px 3px 10px black;
          box-shadow: 3px 3px 10px black;
  opacity: 0.5;
  -webkit-transition: background-size 0.5s;
  transition: background-size 0.5s;
}

.menuRueda a:hover {
  opacity: 1;
  background-size: 140%;
}
/*# sourceMappingURL=menuRueda.css.map */