.introjs-overlay {
    position: absolute;
    z-index: 999999;
    background-color: #000 !important;
    opacity: 0.97;
    filter: alpha(opacity=97);
}

.introjs-fixParent {
    z-index: auto !important;
}

.introjs-showElement {
    z-index: 9999999 !important;
}

.introjs-relativePosition {
    position: relative;
}

.introjs-helperLayer {
    position: absolute;
    z-index: 9999999;
    border: 3px ridge #e93322;
    box-shadow: inset 0px 0px 5px #e93322;
}

.introjs-helperNumberLayer {
    display: none;
    position: absolute;
    top: -14px;
    left: -14px;
    z-index: 9999999999 !important;
    font-family: Arial, verdana, tahoma;
    font-size: 12px;
    font-weight: bold;
    color: white;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0,0,0,.3);
    background: #333; /* Old browsers */
    width: 24px;
    height:24px;
    line-height: 20px;
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,.4);
}

.introjs-arrow {
    border: 5px solid #e93322;
    content:'';
    position: absolute;
}
.introjs-arrow.bottom {
    bottom: -7px;
    border-top-color:transparent;
    border-right-color:transparent;
    border-bottom-color:#e93322;
    border-left-color:transparent;
}
.introjs-arrow.left {
    left: -23px;
    top: 10px;
    border-top-color:transparent;
    border-right-color:transparent;
    border-bottom-color:transparent;
    border-left-color:#e93322;
}
.introjs-arrow.top {
    top: -7px;
    border-top-color:#e93322;
    border-right-color:transparent;
    border-bottom-color:transparent;
    border-left-color:transparent;
}
.introjs-arrow.right {
    right: -23px;
    top: 10px;
    border-top-color:transparent;
    border-right-color:#e93322;
    border-bottom-color:transparent;
    border-left-color:transparent;
}

.introjs-tooltip {
    color: #fff;
    position: absolute;
    padding: 5px 10px;
    min-width: 250px;
    max-width: 300px;
    -webkit-transition: opacity 0.1s ease-out;
    -moz-transition: opacity 0.1s ease-out;
    -ms-transition: opacity 0.1s ease-out;
    -o-transition: opacity 0.1s ease-out;
    transition: opacity 0.1s ease-out;
    border-radius: 20px;
    background-color: #000;
}

.introjs-tooltiptext{
    color: #fff;
    text-shadow: 1px 1px 1px #111;
}

.introjs-tooltiptext .h4{
    color: #ff0000 !important;
}

.introjs-tooltipbuttons {
}

.introjs-button {
    display: inline-block;
    padding: 2px 6px;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.428571429;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 0.2em;
    outline: none !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    color: #eee !important;
    text-shadow: 1px 1px 1px #000;
    background-color: #000;
    border-color: #222633;
    box-shadow: inset 0px 10px 0px #555;
}

.introjs-button:focus,
.introjs-button:active {

}

.introjs-skipbutton {
    margin-right: 5px;
}

.introjs-prevbutton {
    -webkit-border-radius: 0.2em 0 0 0.2em;
    -moz-border-radius: 0.2em 0 0 0.2em;
    border-radius: 0.2em 0 0 0.2em;
    border-right: none;
}

.introjs-nextbutton {
    -webkit-border-radius: 0 0.2em 0.2em 0;
    -moz-border-radius: 0 0.2em 0.2em 0;
    border-radius: 0 0.2em 0.2em 0;
}

.introjs-disabled, .introjs-disabled:hover, .introjs-disabled:focus {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.65;
    filter: alpha(opacity=65);
}


.introjs-bullets ul {
    clear: both;
    margin-bottom: 10px;
    padding: 0;
    display: inline-block;
}
.introjs-bullets ul li {
    list-style: none;
    float: left;
    margin: 0 2px;
}
.introjs-bullets ul li a {
    display: block;
    width: 10px;
    height: 5px;
    background: #ccc;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    text-decoration: none;
}
.introjs-bullets ul li a:hover {
    background: #ff0000;
}
.introjs-bullets ul li a.active {
    background: #ff0000;;
}