/*
 * 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,.8);
    /* z-index: 99996; */  /* tive que tirar para poder funcionar com o admin lte*/
}

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

.guides-current-element {
    z-index: 99997;
    position: relative;
}

@-webkit-keyframes fadeIn {
    0%   { opacity: 0; }
    100% { opacity: .5; }
}
@-moz-keyframes fadeIn {
    0%   { opacity: 0; }
    100% { opacity: .5; }
}
@-o-keyframes fadeIn {
    0%   { opacity: 0; }
    100% { opacity: .5; }
}
@keyframes fadeIn {
    0%   { opacity: 0; }
    100% { opacity: .5; }
}

.guides-fade-in {
    -webkit-animation: fadeIn .25s ease; /* Safari 4+ */
    -moz-animation:    fadeIn .25s ease; /* Fx 5+ */
    -o-animation:      fadeIn .25s ease; /* Opera 12+ */
    animation:         fadeIn .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;
    svg {
        position: absolute;
        top: 0;
        left: 0;
    } 
    span {
        display: inline-block;
        padding: 10px;
        font-size: 2rem;
    }
}

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

.guides-left svg {
    left: auto;
    right: 0;
}
