/**! hopscotch - v0.3.1
*
* Copyright 2017 LinkedIn Corp. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* This fade animation is based on Dan Eden's animate.css (http://daneden.me/animate/), under the terms of the MIT license.
*
* Copyright 2013 Dan Eden.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
.animated {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
}
.fade-in-up {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.fade-in-down {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
.fade-in-right {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
.fade-in-left {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}
div.hopscotch-bubble .hopscotch-nav-button {
    display: inline-block;
}
div.hopscotch-bubble {
    color: #333;
    position: absolute;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    background-clip: padding-box;
    z-index: 999;
}
div.hopscotch-bubble.animate {
    -webkit-transition-property: top, left;
    -o-transition-property: top, left;
    transition-property: top, left;
    -webkit-transition-duration: 1s;
         -o-transition-duration: 1s;
            transition-duration: 1s;
    -webkit-transition-timing-function: ease-in-out;
         -o-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
}
div.hopscotch-bubble.invisible {
    opacity: 0;
}
div.hopscotch-bubble.hide,
div.hopscotch-bubble .hide,
div.hopscotch-bubble .hide-all {
    display: none;
}
div.hopscotch-bubble .hopscotch-title {
    font-size: 1.8rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0 20px 0 0;
    margin: 0;
}
div.hopscotch-bubble .hopscotch-bubble-container {
    padding: 0 !important;
    position: relative;
    z-index: 1;
    background-color: #FFF;
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
            box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}
div.hopscotch-bubble .hopscotch-content {
    margin: 0;
    padding-top: 8px;
    font-size: 1.6rem;
}
div.hopscotch-bubble .hopscotch-bubble-content {
    padding: 17px 13px 13px;
}
div.hopscotch-bubble.no-number .hopscotch-bubble-content {
    margin: 0;
}
div.hopscotch-bubble .hopscotch-bubble-close {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    color: #908b7e;
    background: none;
    display: block;
    padding: 0;
    position: absolute;
    text-decoration: none;
    text-indent: -9999px;
    width: 28px;
    height: 28px;
    top: 4px;
    right: 4px;
    outline: none;
    cursor: pointer;
}
div.hopscotch-bubble .hopscotch-bubble-close:before {
    content: "\e90a";
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    text-indent: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 2.2rem;
}
div.hopscotch-bubble .hopscotch-bubble-close:hover {
    color: #404041;
}
div.hopscotch-bubble .hopscotch-bubble-close.hide,
div.hopscotch-bubble .hopscotch-bubble-close.hide-all {
    display: none;
}
div.hopscotch-bubble .hopscotch-bubble-number {
    display: none;
}
div.hopscotch-bubble .hopscotch-bubble-arrow-container {
    position: absolute;
}
div.hopscotch-bubble .hopscotch-bubble-arrow-container .hopscotch-bubble-arrow,
div.hopscotch-bubble .hopscotch-bubble-arrow-container .hopscotch-bubble-arrow-border {
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
}
.hopscotch-bubble-arrow {
    z-index: 2;
}
.hopscotch-bubble-arrow-border {
     -webkit-filter: blur(3px);
             filter: blur(3px);
}
div.hopscotch-bubble .hopscotch-bubble-arrow-container.up {
    top: -11px;
    left: 10px;
}
div.hopscotch-bubble .hopscotch-bubble-arrow-container.up .hopscotch-bubble-arrow {
    border-bottom: 11px solid #fff;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
}
div.hopscotch-bubble .hopscotch-bubble-arrow-container.up .hopscotch-bubble-arrow-border {
    border-bottom: 11px solid rgba(0,0,0,0.5);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
}
div.hopscotch-bubble .hopscotch-bubble-arrow-container.down {
    bottom: 0;
    left: 10px;
}
div.hopscotch-bubble .hopscotch-bubble-arrow-container.down .hopscotch-bubble-arrow {
    border-top: 11px solid #fff;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    left: 0px;
}
div.hopscotch-bubble .hopscotch-bubble-arrow-container.down .hopscotch-bubble-arrow-border {
    border-top: 11px solid rgba(0,0,0,0.5);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    top: 0;
}
div.hopscotch-bubble .hopscotch-bubble-arrow-container.left {
    top: 10px;
    left: -11px;
}
div.hopscotch-bubble .hopscotch-bubble-arrow-container.left .hopscotch-bubble-arrow {
    border-bottom: 12px solid transparent;
    border-right: 11px solid #fff;
    border-top: 12px solid transparent;
}
div.hopscotch-bubble .hopscotch-bubble-arrow-container.left .hopscotch-bubble-arrow-border {
    border-right: 11px solid rgba(0,0,0,0.8);
    border-bottom: 12px solid transparent;
    border-top: 12px solid transparent;
}
div.hopscotch-bubble .hopscotch-bubble-arrow-container.right {
    top: 10px;
    right: 0;
}
div.hopscotch-bubble .hopscotch-bubble-arrow-container.right .hopscotch-bubble-arrow {
    border-bottom: 12px solid transparent;
    border-left: 11px solid #fff;
    border-top: 12px solid transparent;
}
div.hopscotch-bubble .hopscotch-bubble-arrow-container.right .hopscotch-bubble-arrow-border {
    border-left: 11px solid rgba(0,0,0,0.5);
    border-bottom: 12px solid transparent;
    border-top: 12px solid transparent;
}
div.hopscotch-bubble .hopscotch-actions {
    text-align: right;
    padding: 8px 13px;
    background-color: #efefea;
    border-radius: 0 0 3px 3px;
}
