@charset "UTF-8";
/* CSS Document */

.box.gyrobox {

}

.gyrocontain {
  display: inline-block;
  width: 10px;
  background: #fff;
}

.gyro {
  background: #7790ac; /* Old browsers */
  background: linear-gradient(to bottom,  #5b646a 0%,#4f575c 100%);
  background: linear-gradient(to bottom,  var(--nav-title-color) 0%,var(--bg-color) 100%);
  border-radius: 32px;
  box-shadow: inset 1px 1px 0 rgba(255,255,255,0.1),2px 2px 6px rgba(0,0,0,0.4);
  transition: all 160ms ease-out;
  opacity: 0.8;
  width: 130px;
  height: 60px;
  -webkit-transform: translateZ(0);
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 42%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-user-select: none;
}

.gyrocontain:hover .gyro {
  -webkit-transform: scaleX(1.05) scaleY(1.14);
  opacity: 9;
}

.gyrotext {
font-family: 'Roboto', sans-serif;
  position: absolute;
  padding: 19px 0 0 0;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.1);
  vertical-align: middle;
  color: #fff; color: var(--nav-title-color);
  margin: auto;
  left: 0;
  right: 0;
  top: 42%;
  opacity: 0.8;
  max-width: 100px;  
}