/*
 * 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.75);
    z-index: 99996;
}
.guides-mask {
    z-index: 99998;
}
.guides-current-element {
    z-index: 99997;
    position: relative;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.5;
    }
}
@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.5;
    }
}
@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.5;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.5;
    }
}
.guides-fade-in {
    -webkit-animation: fadeIn 0.25s ease;
    -moz-animation: fadeIn 0.25s ease;
    -o-animation: fadeIn 0.25s ease;
    animation: fadeIn 0.25s ease;
}
.guides-guide {
    color: #fff;
    font-size: 1.5rem;
    text-shadow: 0 0 10px #000;
    position: absolute;
    margin: 5px;
    z-index: 99999;
    left: 50% !important;
    transform: translateX(-50%);
}
.guides-guide svg {
    position: absolute;
    top: 0;
    left: 0;
}
.guides-guide span {
    display: inline-block;
    padding: 10px;
    line-height: 1.5;
    font-size: 1.3rem;
    max-width: 480px;
}
.guides-top svg {
    top: auto;
    bottom: 0;
}
.guides-left svg {
    left: auto;
    right: 0;
}
@media screen and (max-width: 992px){
    .guides-guide span {
        max-width: unset;
    }
}
@media screen and (max-width: 575px){
    .guides-guide span {
        line-height: 1.25;
        font-size: 1.1rem;
    }
    .guides-guide {
        font-size: 1.15rem;
        left: 50% !important;
        transform: translateX(-50%);
        width: 95%;
    }
}
