/*** Example Styles ****/

.example-wrap {
  display: inline-block;
}


/***** 1. Rotor ********/
@-webkit-keyframes rotor {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes rotor {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-o-keyframes rotor {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(360deg);
  }
}
@keyframes rotor {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.button-wrap-1 {
  width: 120px;
  height: 120px;
  margin: 20px 0;
  display: inline-block;
  position: relative;
}
.button-wrap-1 .clicker {
  /* Inner circle */
  width: 100px;
  height: 100px;
  /* 20px smaller b/c of margin below */
  margin: 10px;
  background-color: #fff;
  border-radius: 60px;
  /* Overlays this circle on the .circle */
  z-index: 2;
  position: absolute;
  /* centers the text: adjust to desired size */
  padding: 22px 10px;
  text-align: center;
  /* shadow */
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5);
}
.button-wrap-1 .circle {
  /** outer circle **/
  width: 120px;
  height: 120px;
  border-radius: 60px;
  /** image = wedge **/
  background-image: linear-gradient(45deg, white 0%, white 30%, #14beeb 30%, #14beeb 70%, white 70%, white 100%);
  /*** outer circle position: under */
  z-index: 1;
  position: absolute;
}
.button-wrap-1 .clicker:hover + .circle, .button-wrap-1 .clicker:active + .circle {
  -webkit-animation: rotor 1.5s linear 0s infinite normal;
  -mox-animation: rotor 1.5s linear 0s infinite normal;
  -o-animation: rotor 1.5s linear 0s infinite normal;
  animation: rotor 1.5s linear 0s infinite normal;
}

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes zoom {
  0% {
    -moz-transform: scale(1);
  }
  50% {
    -moz-transform: scale(0.8);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@-o-keyframes zoom {
  0% {
    -o-transform: scale(1);
  }
  50% {
    -o-transform: scale(0.8);
  }
  100% {
    -o-transform: scale(1);
  }
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
.button-wrap-2 {
  width: 150px;
  height: 150px;
  margin: 20px 0;
  display: inline-block;
  position: relative;
}

.button-wrap-2 .circle {
  /* Inner circle */
  width: 100px;
  height: 100px;
  /* 20px smaller b/c of margin below */
  margin: 25px -50px;
  background-color: #fff;
  border-radius: 60px;
  /* Overlays this circle on the .circle */
  z-index: 2;
  position: absolute;
  /* centers the text: adjust to desired size */
  padding: 22px 10px;
  text-align: center;
  /* shadow */
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5);
}
    .button-wrap-2 .outer-circle {
        /** outer circle **/
        width: 150px;
        height: 150px;
        border-radius: 75px;
        background-color: #e1132b;
        /*** outer circle position: under */
        z-index: 1;
        position: absolute;
        text-align:center;
    }
.button-wrap-2 .circle:hover + .outer-circle, .button-wrap-2 .circle:active + .outer-circle {
  -webkit-animation: zoom 1s ease-in 0s 1 both;
  -mox-animation: zoom 1s ease-in 0s 1 both;
  -o-animation: zoom 1s ease-in 0s 1 both;
  animation: zoom 1s ease-in 0s 1 both;
}


        

.button-wrap-4 {
    width: 250px;
    height: 250px;
    margin: 20px 0;
    display: inline-block;
    position: relative;
}

    .button-wrap-4 .circle {
        /* Inner circle */
        width: 180px;
        height: 180px;
        /* 20px smaller b/c of margin below */
        margin: 35px -90px;
        background-color: #fff;
        border-radius: 90px;
        /* Overlays this circle on the .circle */
        z-index: 2;
        position: absolute;
        /* centers the text: adjust to desired size */
        padding: 40px 10px;
        text-align: center;
        /* shadow */
        -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5);
        -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5);
        -o-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5);
        box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5);
    }

    .button-wrap-4 .outer-circle {
        /** outer circle **/
        width: 250px;
        height: 250px;
        border-radius: 125px;
        background-color: #e1132b;
        /*** outer circle position: under */
        z-index: 1;
        position: absolute;
        text-align: center;
    }

    .button-wrap-4 .circle:hover + .outer-circle, .button-wrap-4 .circle:active + .outer-circle {
        -webkit-animation: zoom 1s ease-in 0s 1 both;
        -mox-animation: zoom 1s ease-in 0s 1 both;
        -o-animation: zoom 1s ease-in 0s 1 both;
        animation: zoom 1s ease-in 0s 1 both;
    }





