/* Custom Stylesheet */





/* Required Stylesheets */
.wheel-button {
  position: relative;
}

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

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

.wheel li a {
  display: block;
}
  
/* ALL DEMO */

.pointer {
  color: #34495e;
  font-family: 'Pacifico', cursive;
  font-size: 22px;
  margin-top: -15px;
}

.wheel-button, .wheel-button:visited {
  background: #af363b; 
  padding: 10px 11px;
  text-align: center;
  border-radius:80px;
  width: 100px;
  height: 100px;
  color: white;
  display: block;
  margin: 90% 0% 80% 25%;
  border: 3px solid #92311e;
  box-shadow: 0 1px 2px rgba(0,0,0,0.25);
  -moz-box-shadow: 0 1px 2px rgba(0,0,0,0.25);
  -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.25);
  bottom:0px;
}

.wheel-button:hover{ 
  color: white;
}

.wheel-button i, .wheel li i {
  position: relative;
  width: 20px;
  height: 20px;
  -moz-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  display: block;
  line-height: 140%;
}

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

.wheel li a, .wheel li a:visited{

  padding: 10px;
  text-align: center;
  width: 100px;
  height: 100px;
 
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.wheel li a:hover{
  background:none;
  
}

/* DEMO #4 */

#demo4 .main {
  background: rgba(0,0,0,0.03);
  border-radius: 5px;
  max-width: 500px;
  width: 100%;
  margin: 50px auto;
  padding: 10px 25px;
  position: relative;
  height: 350px;
}

#demo4 .wheel-button {
  position: absolute;
  margin: 0;
}

#demo4 .wheel-button.sw {
  top: 5px;
  right: 5px;
}

#demo4 .wheel-button.ne {
  bottom: 5px;
  left: 5px;
}

#demo4 .wheel-button.se {
  top: 5px;
  left: 5px;
}

#demo4 .wheel-button.nw {
  bottom: 5px;
  right: 5px;
}

#demo4 .wheel-button.n {
  bottom: 5px;
  left: 50%;
  margin-left: -20px;
}

#demo4 .wheel-button.s {
  top: 5px;
  left: 50%;
  margin-left: -20px;
}

#demo4 .wheel-button.e {
  left: 5px;
  top: 50%;
  margin-top: -20px;
}

#demo4 .wheel-button.w {
  right: 5px;
  top: 50%;
  margin-top: -20px;
}