* {
  padding: 0;
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

body {
  background: white;
  color: white;
}

body.dragging {
  cursor: -webkit-grabbing !important;
}

.container {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin: 0 auto;
  padding: 20px;
}

.container p,
.container ul li {
  margin: 0 0 1em 0;
  color: #bbb;
  font-size: 12px;
}

.container ul {
  list-style: square;
}

.nav {
  margin: 0 0 2em 0;
  font-size: 16px;
}

.container a,
.container a:link,
.container a:visited,
.container a:active,
.container a:hover {
  text-decoration: none;
  border-bottom: 1px solid #555;
  padding: 0 0 2px 0;
}

.nav-sep {
  padding: 0 5px;
}

.ie .gears-d3-canvas {
  /* ie fix :( */
  height: 100%;
}

.gears-d3-canvas svg {
  background: white;
  margin: 30px 0 0 0;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

.gear.dragging path,
.gear path:active {
  opacity: 0.5;
  cursor: -webkit-grabbing !important;
}

.gear path {
  cursor: move;
}

.gear:hover path {
  opacity: 0.9;
  stroke: #f6b25d;
  stroke-width: 2px;
}

.gear .bulb-path .bulb-light {
  opacity: 0;

  transition: all 800ms ease-in-out;
  -webkit-transition: all 800ms ease-in-out;
  -moz-transition: all 800ms ease-in-out;
  -o-transition: all 800ms ease-in-out;
}

.gear.powered path {
  fill: rgba(0, 185, 249,1) !important;
}

.style-0 path {
    fill: rgba(0, 185, 249,0.9) !important;
}

.style-1 path {
    fill: rgba(0, 185, 249,0.7) !important;
}

.style-2 path {
    fill: rgba(0, 185, 249,0.5) !important;
}

.style-3 path {
    fill: rgba(0, 185, 249,0.3) !important;
}

.style-4 path {
    fill: rgba(0, 185, 249,0.1) !important;
}

.logo-birdcom,
.text {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  top: 160px;
}

.logo-birdcom {
    top: 160px;
  }

.text {
    top: 220px;
    color: black !important;
    font-size: 18px !important;
    text-shadow: white 0 0 4px;
  }
  .text a {
    text-decoration: none !important;
    color: black;
    font-size: 18px;
  }

button {
    background-color: rgba(0, 185, 249,1);
    color: white;
    border-radius: 5px;
    padding: 10px 40px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    border: 1px solid  rgba(0, 185, 249,1);
    color: rgba(0, 185, 249,1);
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.close-button {
    display: none;
}