/*
Buttons style by http://nicolasgallagher.com/lab/css3-github-buttons/
Changed by Afshin Mehrabani
*/
/* overrides extra padding on button elements in Firefox */
@-webkit-keyframes introjspulse {
    0% {
        -webkit-transform: scale(0);
                transform: scale(0);

        opacity: 0;
    }
    25% {
        -webkit-transform: scale(0);
                transform: scale(0);

        opacity: .1;
    }
    50% {
        -webkit-transform: scale(.1);
                transform: scale(.1);

        opacity: .3;
    }
    75% {
        -webkit-transform: scale(.5);
                transform: scale(.5);

        opacity: .5;
    }
    100% {
        -webkit-transform: scale(1);
                transform: scale(1);

        opacity: 0;
    }
}
@keyframes introjspulse {
    0% {
        -webkit-transform: scale(0);
                transform: scale(0);

        opacity: 0;
    }
    25% {
        -webkit-transform: scale(0);
                transform: scale(0);

        opacity: .1;
    }
    50% {
        -webkit-transform: scale(.1);
                transform: scale(.1);

        opacity: .3;
    }
    75% {
        -webkit-transform: scale(.5);
                transform: scale(.5);

        opacity: .5;
    }
    100% {
        -webkit-transform: scale(1);
                transform: scale(1);

        opacity: 0;
    }
}
.introjs-overlay {
    position: absolute;
    z-index: 999999;

    -webkit-box-sizing: content-box;
            box-sizing: content-box;

    -webkit-transition: all .3s ease-out;
         -o-transition: all .3s ease-out;
            transition: all .3s ease-out;

    opacity: 0;
}
.introjs-showElement {
    z-index: 9999999 !important;
}
tr.introjs-showElement > td {
    position: relative;
    z-index: 9999999 !important;
}
tr.introjs-showElement > th {
    position: relative;
    z-index: 9999999 !important;
}
.introjs-disableInteraction {
    position: absolute;
    z-index: 99999999 !important;

    opacity: 0;
    background-color: #fff;

    filter: alpha(opacity=0);
}
.introjs-relativePosition {
    position: relative;
}
.introjs-helperLayer {
    position: absolute;
    z-index: 9999998;

    -webkit-box-sizing: content-box;
            box-sizing: content-box;

    -webkit-transition: all .3s ease-out;
         -o-transition: all .3s ease-out;
            transition: all .3s ease-out;

    border-radius: 4px;
}
.introjs-helperLayer * {
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
}
.introjs-helperLayer *:before {
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
}
.introjs-helperLayer *:after {
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
}
.introjs-tooltipReferenceLayer {
    position: absolute;
    z-index: 100000000;

    visibility: hidden;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;

    font-family: "Helvetica Neue", Inter, ui-sans-serif, "Apple Color Emoji", Helvetica, Arial, sans-serif;

    -webkit-transition: all .3s ease-out;
         -o-transition: all .3s ease-out;
            transition: all .3s ease-out;

    background-color: transparent;
}
.introjs-tooltipReferenceLayer * {
    font-family: "Helvetica Neue", Inter, ui-sans-serif, "Apple Color Emoji", Helvetica, Arial, sans-serif;
}
.introjs-helperNumberLayer {
    padding-top: 10px;
    padding-bottom: 10px;

    font-family: "Helvetica Neue", Inter, ui-sans-serif, "Apple Color Emoji", Helvetica, Arial, sans-serif;

    text-align: center;

    color: #9e9e9e;
}
.introjs-arrow {
    position: absolute;

    content: "";

    border: 5px solid transparent;
}
.introjs-arrow.top {
    top: -10px;
    left: 10px;

    border-bottom-color: #fff;
}
.introjs-arrow.top-right {
    top: -10px;
    right: 10px;

    border-bottom-color: #fff;
}
.introjs-arrow.top-middle {
    top: -10px;
    left: 50%;

    margin-left: -5px;

    border-bottom-color: #fff;
}
.introjs-arrow.right {
    top: 10px;
    right: -10px;

    border-left-color: #fff;
}
.introjs-arrow.right-bottom {
    right: -10px;
    bottom: 10px;

    border-left-color: #fff;
}
.introjs-arrow.bottom {
    bottom: -10px;
    left: 10px;

    border-top-color: #fff;
}
.introjs-arrow.bottom-right {
    right: 10px;
    bottom: -10px;

    border-top-color: #fff;
}
.introjs-arrow.bottom-middle {
    bottom: -10px;
    left: 50%;

    margin-left: -5px;

    border-top-color: #fff;
}
.introjs-arrow.left {
    top: 10px;
    left: -10px;

    border-right-color: #fff;
}
.introjs-arrow.left-bottom {
    bottom: 10px;
    left: -10px;

    border-right-color: #fff;
}
.introjs-tooltip {
    position: absolute;

    visibility: visible;
    max-width: 300px;
    min-width: 250px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;

    -webkit-transition: opacity .1s ease-out;
         -o-transition: opacity .1s ease-out;
            transition: opacity .1s ease-out;

    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 30px rgba(33, 33, 33, .3);
            box-shadow: 0 3px 30px rgba(33, 33, 33, .3);
}
.introjs-tooltiptext {
    padding: 10px 10px 0;
}
.introjs-tooltip-title {
    float: left;
    padding: 0;
    margin: 0;

    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
}
.introjs-tooltip-header {
    padding-top: 10px;
    padding-right: 20px;
    padding-left: 20px;
}
.introjs-tooltip-header:after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;

    content: ".";
}
.introjs-tooltipbuttons {
    padding: 10px;

    text-align: right;
    white-space: nowrap;

    border-top: 1px solid #e0e0e0;
}
.introjs-tooltipbuttons:after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;

    content: "";
}
.introjs-button {
    position: relative;
    display: inline-block;
    padding: 0 14px;
    zoom: 1;
    font-size: 12px;
    font-weight: 600;
    line-height: 32px;
    cursor: pointer;
    white-space: nowrap;
/*     color: #fff !important; */
    border-radius: 6px;
    outline: none;
    background: #f9ea65;
    box-shadow: 0 5px 6px 0 rgb(249 234 101 / 30%);
}
.introjs-helperLayer {
    box-shadow: rgb(249 234 101) 2px 2px 1px 1px, rgb(33 33 33 / 50%) 0 0 0 5000px !important;
}
.introjs-button:hover {
    text-decoration: none;

    color: #212121 !important;
    outline: none;
    background-color: #e0e0e0;
}
.introjs-button:focus {
    text-decoration: none;

    color: #212121;
    outline: none;
}
.introjs-button:active {
    text-decoration: none;

    color: #000;
    border-color: #9e9e9e;
    outline: none;
    background-color: #e0e0e0;
}
.introjs-button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
.introjs-tooltip.introjs-right .introjs-helperLayer {
    top: 13px !important;
    height: 44.5px !important;
}
.introjs-skipbutton {
    display: none;
    float: right;
    padding: 7px 10px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;

    font-size: 20px;
    font-weight: bold;
    line-height: 1;

    cursor: pointer;
    text-align: center;

    color: #616161;
}
.introjs-skipbutton:hover,
.introjs-skipbutton:focus {
    text-decoration: none;

    color: #212121;
    outline: none;
}
.introjs-prevbutton {
    float: left;
}
.introjs-nextbutton {
    float: right;
}
.introjs-disabled {
    cursor: default;
    text-decoration: none;

    color: #9e9e9e;
    border-color: #bdbdbd;
    background-color: #f4f4f4;
    background-image: none;
    -webkit-box-shadow: none;
            box-shadow: none;
}
.introjs-disabled:hover,
.introjs-disabled:focus {
    cursor: default;
    text-decoration: none;

    color: #9e9e9e;
    border-color: #bdbdbd;
    background-color: #f4f4f4;
    background-image: none;
    -webkit-box-shadow: none;
            box-shadow: none;
}
.introjs-hidden {
    display: none;
}
.introjs-bullets {
    padding-top: 10px;
    padding-bottom: 10px;

    text-align: center;
}
.introjs-bullets ul {
    display: inline-block;
    padding: 0;
    margin: 0 auto 0;
    clear: both;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
}
.introjs-bullets ul li {
    float: left;
    margin: 0 2px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;

    list-style: none;
}
.introjs-bullets ul li a {
    display: block;
    width: 6px;
    height: 6px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;

    cursor: pointer;
    -webkit-transition: width .1s ease-in;
         -o-transition: width .1s ease-in;
            transition: width .1s ease-in;
    text-decoration: none;

    border-radius: 10px;
    background: #ccc;
}
.introjs-bullets ul li a:hover,
.introjs-bullets ul li a:focus {
    width: 15px;

    text-decoration: none;

    outline: none;
    background: #999;
}
.introjs-bullets ul li a.active {
    width: 15px;

    background: #999;
}
.introjs-progress {
    height: 10px;
    margin: 10px;
    overflow: hidden;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;

    border-radius: 4px;
    background-color: #e0e0e0;
}
.introjs-progressbar {
    float: left;
    width: 0;
    height: 100%;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;

    font-size: 10px;
    line-height: 10px;

    text-align: center;

    background-color: #08c;
}
.introjsFloatingElement {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 0;
    height: 0;
}
.introjs-fixedTooltip {
    position: fixed;
}
.introjs-hint {
    position: absolute;

    width: 20px;
    height: 15px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;

    cursor: pointer;

    background: transparent;
}
.introjs-hint:focus {
    border: 0;
    outline: 0;
}
.introjs-hint:hover > .introjs-hint-pulse {
    border: 5px solid rgba(60, 60, 60, .57);
}
.introjs-hidehint {
    display: none;
}
.introjs-fixedhint {
    position: fixed;
}
.introjs-hint-pulse {
    position: absolute;
    z-index: 10;

    width: 10px;
    height: 10px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;

    -webkit-transition: all .2s ease-out;
         -o-transition: all .2s ease-out;
            transition: all .2s ease-out;

    border: 5px solid rgba(60, 60, 60, .27);
    border-radius: 30px;
    background-color: rgba(136, 136, 136, .24);
}
.introjs-hint-no-anim .introjs-hint-dot {
    -webkit-animation: none;
            animation: none;
}
.introjs-hint-dot {
    position: absolute;
    top: -25px;
    left: -25px;
    z-index: 1;

    width: 50px;
    height: 50px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;

    -webkit-animation: introjspulse 3s ease-out;
            animation: introjspulse 3s ease-out;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;

    opacity: 0;
    border: 10px solid rgba(146, 146, 146, .36);
    border-radius: 60px;
    background: transparent;
}
.intro-hidden {
    display: none !important;
}
.logobrand {
    color: #182230 !important;
    border: none !important;
}
a.introjs-button.introjs-nextbutton,
a.introjs-button {
    margin-top: 4px;

    text-decoration: none;

    color: #182230;
    background-color: #f9ea65;
}
