/*
 Uniform design style for Intro.JS
*/


@-webkit-keyframes introjspulse {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
    25% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0.1;
    }
    50% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0.3;
    }
    75% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0.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: 0.1;
    }
    50% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0.3;
    }
    75% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.introjs-overlay {
    position: absolute;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    z-index: 999999;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.introjs-showElement {
    z-index: 9999999 !important;
}

tr.introjs-showElement > td {
    z-index: 9999999 !important;
    position: relative;
}

tr.introjs-showElement > th {
    z-index: 9999999 !important;
    position: relative;
}

.introjs-disableInteraction {
    z-index: 99999999 !important;
    position: absolute;
    background-color: #ffffff;
    opacity: 0;
    filter: alpha(opacity=0);
}

.introjs-relativePosition {
    position: relative;
}

.introjs-helperLayer {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    position: absolute;
    z-index: 9999998;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    box-shadow: rgba(0, 0, 0, 0.0) 0 0 1px 2px, rgba(0, 0, 0, 0.4) 0 0 0 5000px !important;
}

.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 {
    font-family: "Seravek Web UX", Arial, Helvetica, sans-serif;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    position: absolute;
    visibility: hidden;
    z-index: 100000000;
    background-color: transparent;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.introjs-helperNumberLayer {
    font-family: "Seravek Web UX", Arial, Helvetica, sans-serif;
    color: #9e9e9e;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.introjs-arrow {
    border: 5px solid transparent;
    content: "";
    position: absolute;
}

.introjs-arrow.top {
    top: -10px;
    left: 10px;
    border-bottom-color: #ffffff;
}

.introjs-arrow.top-right {
    top: -10px;
    right: 10px;
    border-bottom-color: #ffffff;
}

.introjs-arrow.top-middle {
    top: -10px;
    left: 50%;
    margin-left: -5px;
    border-bottom-color: #ffffff;
}

.introjs-arrow.right {
    right: -10px;
    top: 10px;
    border-left-color: #ffffff;
}

.introjs-arrow.right-bottom {
    bottom: 10px;
    right: -10px;
    border-left-color: #ffffff;
}

.introjs-arrow.bottom {
    bottom: -10px;
    left: 10px;
    border-top-color: #ffffff;
}

.introjs-arrow.bottom-right {
    bottom: -10px;
    right: 10px;
    border-top-color: #ffffff;
}

.introjs-arrow.bottom-middle {
    bottom: -10px;
    left: 50%;
    margin-left: -5px;
    border-top-color: #ffffff;
}

.introjs-arrow.left {
    left: -10px;
    top: 10px;
    border-right-color: #ffffff;
}

.introjs-arrow.left-bottom {
    left: -10px;
    bottom: 10px;
    border-right-color: #ffffff;
}

.introjs-tooltip {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    position: absolute;
    visibility: visible;
    background-color: #ffffff;
    min-width: 400px;
    -webkit-box-shadow: 0 1.5em 3em rgba(0, 0, 0, 0.16);
    box-shadow: 0 1.5em 3em rgba(0, 0, 0, 0.16);
    -webkit-transition: opacity 0.1s ease-out;
    -o-transition: opacity 0.1s ease-out;
    transition: opacity 0.1s ease-out;
    border-radius: 0.125em;
}

.introjs-tooltiptext {
    padding: 0 24px 16px;
    color: black;
    font-size: 14px;
    line-height: 18px;
}

.introjs-tooltip-title {
    font-size: 24px;
    margin: 0;
    padding: 0;
    font-weight: 400;
    float: left;
    line-height: 26px;
}

.introjs-tooltip-header {
    padding: 24px;
    border-bottom: 1px solid #DADADA;
    margin-bottom: 16px;
}

.introjs-tooltip-header:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

.introjs-tooltipbuttons {
    padding-left: 24px;
    padding-right: 24px;
    text-align: right;
    white-space: nowrap;
    height: 76px;
}

.introjs-button {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    position: relative;
    overflow: visible;
    display: inline-block;
    padding: 8px 8px 8px;
    border: 1px solid;
    border-radius: .25em;
    color: #424242;
    white-space: nowrap;
    cursor: pointer;
    outline: none;
    background-color: #f4f4f4;
    display: inline;
    margin-left: 1em;
    vertical-align: middle;
    height: 1em;
    min-width: 1em;
    line-height: 18px;
    font: 400 14px "Seravek web", Arial, Helvetica, sans-serif;
    top: 40%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-box-shadow: 0 0.125em 0.25em rgba(0, 0, 0, 0.16);
    box-shadow: 0 0.125em 0.25em rgba(0, 0, 0, 0.16);
}

.introjs-tooltipbuttons:after {
    content: "";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

.introjs-nextbutton {
    background-color: #284A98;
    color: #FFFFFF;
    border: 1px solid #284A98;
    float: right;
}

.introjs-nextbutton:focus {
    border: 1px solid #26AEE4;
}

.introjs-nextbutton:hover {
    opacity: 0.8;
}

.introjs-prevbutton {
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #B3B3B3;
    float: left;
}

.introjs-prevbutton:hover {
    background-color: #EAEAEA;
}

.introjs-prevbutton:focus {
    border: 1px solid #26AEE4;
}

.introjs-button:active {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
}

.introjs-button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.introjs-skipbutton {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    color: #284A98;
    float: right;
    cursor: pointer;
    line-height: 1;
    text-align: center;
    padding: 1px 0 1px;
    font-size: 26px;
}

.introjs-skipbutton:hover, .introjs-skipbutton:focus {
    opacity: 0.8;
    outline: none;
    text-decoration: none;
}

.introjs-disabled {
    color: #D1D3D4;
    border-color: #D1D3D4;
    cursor: default;
    background-color: #F7F7F7;
}

.introjs-disabled:hover, .introjs-disabled:focus {
    color: #D1D3D4;
    border-color: #D1D3D4;
    -webkit-box-shadow: none;
    cursor: default;
    background-color: #F7F7F7;
}

.introjs-hidden {
    display: none;
}

.introjs-bullets {
    text-align: center;
    font-size: 0px;
    line-height: 0.5rem;
    padding-top: 2px;
    padding-bottom: 2px;
}

.introjs-bullets ul {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    clear: both;
    padding: 0;
    display: inline-block;
}

.introjs-bullets ul li {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    list-style: none;
    float: left;
    margin: 0 2px;
}

.introjs-bullets ul li a {
    -webkit-transition: width 0.1s ease-in;
    -o-transition: width 0.1s ease-in;
    transition: width 0.1s ease-in;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: block;
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
}

.introjs-bullets ul li a:hover, .introjs-bullets ul li a:focus {
    width: 8px;
    background: #EAEAEA;
    text-decoration: none;
    outline: none;
}

.introjs-bullets ul li a.active {
    width: 8px;
    background: #284A98;
}

.introjs-progress {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    overflow: hidden;
    height: 10px;
    margin: 10px;
    border-radius: 4px;
    background-color: #e0e0e0;
}

.introjs-progressbar {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    float: left;
    width: 0%;
    height: 100%;
    font-size: 10px;
    line-height: 10px;
    text-align: center;
    background-color: #08c;
}

.introjsFloatingElement {
    position: absolute;
    height: 0;
    width: 0;
    left: 50%;
    top: 50%;
}

.introjs-fixedTooltip {
    position: fixed;
}

.introjs-hint {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    position: absolute;
    background: transparent;
    width: 20px;
    height: 15px;
    cursor: pointer;
}

.introjs-hint:focus {
    border: 0;
    outline: 0;
}

.introjs-hint:hover > .introjs-hint-pulse {
    border: 5px solid rgb(77, 78, 83, 0.5);
}

.introjs-hidehint {
    display: none;
}

.introjs-fixedhint {
    position: fixed;
}

.introjs-hint-pulse {
    width: 10px;
    height: 10px;
    border: 5px solid rgba(77, 78, 73, 0.17);
    border-radius: 30px;
    background-color: rgba(179,179,179, 0.25);
    z-index: 2;
    transition: .2s ease-out;
}

.introjs-hint-no-anim .introjs-hint-dot {
    -webkit-animation: none;
    animation: none;
}

.introjs-hint-dot {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    border: 10px solid hsla(230, 4%, 31%, .26);
    background: 0 0;
    border-radius: 60px;
    height: 50px;
    width: 50px;
    -webkit-animation: introjspulse 3s ease-out;
    animation: introjspulse 3s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    position: absolute;
    top: -25px;
    left: -25px;
    z-index: 1;
    opacity: 0;
}

.menuIntro .introjs-tooltiptext, .introjs-button {
    font-size: 14px;
    line-height: 12px;
}

.introjs-hintReference > .introjs-tooltip > .introjs-tooltiptext > .introjs-button {
    background-color: #284A98;
    color: #FFFFFF !important;
    border: 1px solid #284A98 !important;
    position: absolute;
    right: 3rem;
    bottom: 1rem;
    top: revert;
}

.introjs-hintReference > .introjs-tooltip > .introjs-tooltiptext {
    padding: 0;
    margin-bottom: 8rem;
}

.introjs-hintReference > .introjs-tooltip[role=dialog] {
    padding: 3rem;
    min-width: 352px;
}

.introjs-tooltiptext img {
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
}