/* Required Stylesheets */

    .wheel-button, .wheel-button:visited {
      display: block;
    }

    .wheel-button:hover{ 
      color: white;
    }
    
    .wheel-button.ne {
      border-color: white;
      background: #1ABC9C;
      color: #34FFFF;
      position: fixed;
      bottom: 10px;
      left: 10px;
    }
    
    .wheel-button.nw {
      border-color: white;
      background-color: #E67E22;
      color: #FFFC44;
      position: absolute;
      bottom: 10px;
      right: 10px;
    }

    .wheel-button span, .wheel span{
      position: relative;
      -moz-transition: all 1s ease;
      -webkit-transition: all 1s ease;
      -o-transition: all 1s ease;
      transition: all 1s ease;
      display: block;
    }

    .wheel-button.active span{
      transform: rotate(135deg);
      -ms-transform: rotate(135deg); /* IE 9 */
      -webkit-transform: rotate(135deg); /* Safari and Chrome */
    }

    .wheel li a, .wheel li a:visited{
      border-radius: 500px;
      font-weight: bold;
      padding: 0px;
      text-align: center;
      width: 80px;
      height: 80px;
      -moz-transition: all 0.25s ease;
      -webkit-transition: all 0.25s ease;
      -o-transition: all 0.25s ease;
      transition: all 0.25s ease;
      opacity:0.8;
      filter:alpha(opacity=80); /* For IE8 and earlier */ 
      -webkit-filter: drop-shadow(0px 0px 1px #000);

    }

    .wheel li a:hover{
      background-color:;
      opacity:1;
      filter:alpha(opacity=100); /* For IE8 and earlier */  
    }
  
/* Required Stylesheets */
.wheel-button {
  position: relative;
}

.wheel {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 500px; /* this will determine the diameter of the circle  */
  height: 500px; /* this will determine the diameter of the circle  */
  visibility: hidden;
  position: fixed;
  display: none;
}

.wheel li {
  overflow: hidden;
  float:left;
}

.wheel li a {
  display: block;
}

.galleta {
  height:80px;
}

.galletaoculta {
  display: none;
  opacity:1;
  filter:alpha(opacity=100); /* For IE8 and earlier */  
}

.galletacs {
  height:80px;
}

.galletacs {
  display:;
  opacity:0.2;
  filter:alpha(opacity=20); /* For IE8 and earlier */ 
}

@media (max-width: 480px) {
.wheel {
  width: 200px; /* this will determine the diameter of the circle  */
  height: 200px; /* this will determine the diameter of the circle  */
}
.wheel li a, .wheel li a:visited{
  width: 45px;
  height: 45px; 
  opacity:1;
  filter:alpha(opacity=100); /* For IE8 and earlier */
}
.galleta {
  height:45px;
}
}