/*
 * guides 1.2.9
 * Simple way to highlighting DOM elements and guide your users with step-by-step welcome tours in your web app.
 * https://github.com/ejulianova/guides
 *
 * Copyright 2015, Elena Petrova <elena.julianova@gmail.com>
 * Released under the MIT license.
*/
.guides-canvas, .guides-mask, .guides-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.guides-overlay {
  background: rgba(0, 0, 0, 0.6);
  z-index: 99996;
}

.guides-mask {
  z-index: 99998;
}

.guides-current-element {
  z-index: 99997;
  position: relative;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
}
.guides-fade-in { /* Safari 4+ */ /* Fx 5+ */ /* Opera 12+ */
  animation: fadeIn 0.25s ease; /* IE 10+ */
}

.guides-guide {
  color: #fff;
  font-size: 1.5rem;
  text-shadow: 0 0 10px #000;
  position: absolute;
  margin: 5px;
  z-index: 99999;
}
.guides-guide svg {
  position: absolute;
  top: 0;
  left: 0;
}
.guides-guide span {
  display: inline-block;
  padding: 10px;
  font-size: 2rem;
}

.guides-top svg {
  top: auto;
  bottom: 0;
}

.guides-left svg {
  left: auto;
  right: 0;
}/*# sourceMappingURL=guides.css.map */