.introjs-overlay {
    position: absolute;
    box-sizing: content-box;
    z-index: 999999;
    background-color: #fff;
    opacity: 0 !important;
    transition: all 0.3s ease-out;
}
.introjs-fixParent {
    z-index: auto !important;
    opacity: 1.0 !important;
    transform: none !important;
}
.introjs-showElement,
tr.introjs-showElement > td,
tr.introjs-showElement > th { z-index: 9999999 !important }
.introjs-disableInteraction {
    z-index: 99999999 !important;
    position: absolute;
    background-color: white;
    opacity: 0;
}
.introjs-relativePosition,
tr.introjs-showElement > td,
tr.introjs-showElement > th { position: relative }
.introjs-helperLayer {
    box-sizing: content-box;
    position: absolute;
    z-index: 9999998;
    background: none !important;
    border-radius: .25rem;
    box-shadow: 0 0 0 99999px rgba(14,14,14,.5);
    transition: all 0.3s ease-out;
}
.introjs-tooltipReferenceLayer {
    box-sizing: content-box;
    position: absolute;
    visibility: hidden;
    z-index: 100000000;
    background-color: transparent;
    transition: all 0.3s ease-out;
}
.introjs-helperLayer *,
.introjs-helperLayer *:before,
.introjs-helperLayer *:after { box-sizing: content-box }
.introjs-helperNumberLayer {
    box-sizing: content-box;
    position: absolute;
    visibility: visible;
    top: -16px;
    left: calc(50% - 16px);
    z-index: 9999999999 !important;
    padding: 5px;
    font-size: 13px;
    font-weight: bold;
    color: white;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .3);
    background: #5dc8ca;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
}
.introjs-arrow {
    border: 5px solid white;
    content: '';
    position: absolute;
}
.introjs-arrow.top {
    top: -10px;
    border-color: transparent transparent white;
}
.introjs-arrow.top-right {
    top: -10px;
    right: 10px;
    border-color: transparent transparent white;
}
.introjs-arrow.top-middle {
    top: -10px;
    left: 50%;
    margin-left: -5px;
    border-color: transparent transparent white;
}
.introjs-arrow.right {
    right: -10px;
    top: 10px;
    border-color: transparent transparent transparent white;
}
.introjs-arrow.right-bottom {
    bottom: 10px;
    right: -10px;
    border-color: transparent transparent transparent white;
}
.introjs-arrow.bottom {
    bottom: -10px;
    border-color: white transparent transparent;
}
.introjs-arrow.left {
    left: -10px;
    top: 10px;
    border-color: transparent white transparent transparent;
}
.introjs-arrow.left-bottom {
    left: -10px;
    bottom: 10px;
    border-color: transparent #444 transparent transparent;
}
.introjs-tooltip {
    box-sizing: content-box;
    position: absolute;
    visibility: visible;
    padding: 2rem;
    background: #444;
    width: 30rem;
    border-radius: .25rem;
    transition: opacity 0.1s ease-out;
    color: rgba(255,255,255,.8);
    font-size: .875rem;
}
.introjs-tooltip h2 {
    font-family: 'biz', 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.2em;
    font-size: 2rem;
    color: #fff;
}
.introjs-tooltip .-key {
    background: rgba(0,0,0,.2);
    border-radius: .2rem;
    padding: .15rem .5rem;
    display: inline-block;
    vertical-align: middle;
    box-shadow: inset 0 -2px 0 rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.1);
    font-weight: 400;
    font-size: .6rem;
    text-transform: uppercase;
}
.introjs-tooltipbuttons {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding-top: 1rem;
}
/*
 Buttons style by http://nicolasgallagher.com/lab/css3-github-buttons/
 Changed by Afshin Mehrabani
*/
.introjs-button {
    box-sizing: border-box;
    position: relative;
    overflow: visible;
    display: block;
    padding: .5rem 1rem;
    margin: 0;
    text-decoration: none;
    font-size: .75rem;
    color: #fff;
    white-space: nowrap;
    cursor: pointer;
    outline: none;
    background: rgba(0,0,0,.4);
    border-radius: .25rem;
}
.introjs-button:hover {
    background: #7e61aa;
    color: #fff;
    text-decoration: none;
}
/* overrides extra padding on button elements in Firefox */
.introjs-button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
.introjs-skipbutton {
    box-sizing: content-box;
    margin-right: 5px;
    color: #fff;
    display: none;
}
.introjs-skipbutton.introjs-donebutton {
    display: block;
    background: #57b8bc;
    font-size: .875rem;
}
.introjs-skipbutton.introjs-donebutton + a,
.introjs-skipbutton.introjs-donebutton + a + a { display: none !important }
.introjs-prevbutton {
    border-radius: .25rem 0 0 .25rem;
    border-right: none;
    margin-left: auto;
}
.introjs-prevbutton.introjs-fullbutton { border-radius: .25rem }
.introjs-nextbutton {
    border-radius: 0 .25rem .25rem 0;
    background: #57b8bc;
}
.introjs-nextbutton:hover{ background: #64d5d9 }
.introjs-nextbutton.introjs-fullbutton { border-radius: .25em }
.introjs-disabled,
.introjs-disabled:hover,
.introjs-disabled:focus {
    cursor: default;
    text-decoration: none;
    opacity: .3;
}
.introjs-hidden { display: none }
.introjs-bullets { text-align: center }
.introjs-bullets ul {
    box-sizing: content-box;
    clear: both;
    margin: 15px auto 0;
    padding: 0;
    display: inline-block;
}
.introjs-bullets ul li {
    box-sizing: content-box;
    list-style: none;
    float: left;
    margin: 0 2px;
}
.introjs-bullets ul li a {
    box-sizing: content-box;
    display: block;
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
}
.introjs-bullets ul li a:hover { background: #999 }
.introjs-bullets ul li a.active { background: #999 }
.introjs-progress {
    box-sizing: content-box;
    overflow: hidden;
    height: .25rem;
    margin: 0;
    border-radius: .25rem;
    background-color: rgba(0,0,0,.5);
    position: absolute;
    bottom: .5rem;
    left: .5rem;
    right: .5rem;
}
.introjs-progressbar {
    box-sizing: content-box;
    float: left;
    width: 0;
    height: 100%;
    font-size: 10px;
    line-height: .25rem;
    text-align: center;
    background-color: #5dc8ca;
}
.introjsFloatingElement {
    position: absolute;
    height: 0;
    width: 0;
    left: 50%;
    top: 50%;
}
.introjs-fixedTooltip { position: fixed }
.introjs-hint {
    box-sizing: content-box;
    position: absolute;
    background: transparent;
    width: 20px;
    height: 15px;
    cursor: pointer;
}
.introjs-hint:focus {
    border: 0;
    outline: 0;
}
.introjs-hidehint { display: none }
.introjs-fixedhint { position: fixed }
.introjs-hint:hover > .introjs-hint-pulse { border: 5px solid rgba(60, 60, 60, 0.57) }
.introjs-hint-pulse {
    box-sizing: content-box;
    width: 10px;
    height: 10px;
    border: 5px solid rgba(60, 60, 60, 0.27);
    border-radius: 30px;
    background-color: rgba(136, 136, 136, 0.24);
    z-index: 10;
    position: absolute;
    transition: all 0.2s ease-out;
}
.introjs-hint-no-anim .introjs-hint-dot { animation: none }
.introjs-hint-dot {
    box-sizing: content-box;
    border: 10px solid rgba(146, 146, 146, 0.36);
    background: transparent;
    border-radius: 60px;
    height: 50px;
    width: 50px;
    animation: introjspulse 3s ease-out infinite;
    position: absolute;
    top: -25px;
    left: -25px;
    z-index: 1;
    opacity: 0;
}
@keyframes introjspulse {
    0% {
        transform: scale(0);
        opacity: 0.0;
    }
    25% {
        transform: scale(0);
        opacity: 0.1;
    }
    50% {
        transform: scale(0.1);
        opacity: 0.3;
    }
    75% {
        transform: scale(0.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0.0;
    }
}

/*highlights*/
.introjs-tooltip .ico{
    display: inline-block;
    vertical-align: bottom;
    margin-left: .5rem;
    width: 1.5rem;
    height: 1.5rem;
}
.introjs-tooltiptext.-done{
    text-align: center;
    font-size: 1rem;
}
.introjs-tooltiptext.-done .ico{
    margin: .5rem 0 1rem;
    width: 2rem;
    height: 2rem;
}
.introjs-tooltiptext.-done ~ .introjs-tooltipbuttons{ justify-content: center }





