<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * 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 &lt;elena.julianova@gmail.com&gt;
 * 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
}

@-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;
    -moz-animation: fadeIn .25s ease;
    -o-animation: fadeIn .25s ease;
    animation: fadeIn .25s ease
}

.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: 1rem
}

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

.guides-left svg {
    left: auto;
    right: 0
}</pre></body></html>