/* ---------------------- 
Stylesheet Guide
-------------------------

GENERAL
LAYERS
TOOLTIP
TOOLTIP ARROWS
FIXED TOOLTIP
BUTTONS
BULLETS
PROGRESS
HINT
KEYFRAMES
MEDIA QUERIES

*/

/* ================= GENERAL ================== */

.introjs-overlay {
    position: absolute;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    z-index: 999999;
    opacity: 0;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .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: #fff;
    opacity: 0
}

.introjs-relativePosition {
    position: relative
}

.introjsFloatingElement {
    position: absolute;
    height: 0;
    width: 0;
    left: 50%;
    top: 50%
}

.introjs-fixedTooltip {
    position: fixed
}

/* ================= LAYERS ================== */

.introjs-helperLayer {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    position: absolute;
    z-index: 9999999;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out
}

.introjs-helperLayer:before {
    content:'';
    position: absolute;
    top:0;
    left:0;
    right: 0;
    bottom:0;
    width:100%;
    height: 100%;
}

.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 {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    position: absolute;
    visibility: hidden;
    z-index: 100000000;
    background-color: transparent;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out
}

.introjs-helperNumberLayer {
    color: #888;
    text-align: center;
    padding-bottom: 20px;
    padding-top: 10px;
    font-size: 14px;
    line-height: 1;
}

.introjs-stepNumberLayer {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 34px;
    width: 34px;
    height: 34px;
    background: #F44336;
    text-align: center;
    color: #fff;
    z-index: 9;
    border-radius: 0;
    font-weight: 700;
    font-size:16px;
    -webkit-transition: opacity .3s ease-out;
    -o-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out
}

body.rtl .introjs-stepNumberLayer {
    left: auto;
    right: 0;
}

/* ================= TOOLTIP ================== */

.introjs-tooltip {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    position: absolute;
    visibility: visible;
    background-color: #fff;
    width: 100%;
    max-width: 300px;
    border-radius: 4px;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
    margin: 0;
    transform:translateY(0);
}

.introjs-tooltiptext {
    padding: 20px;
    font-size: 14px;
    color: #212121;
}

.introjs-tooltip-title {
    font-size: 20px;
    margin: 0;
    padding: 0;
    font-weight: 700;
    line-height: 1.4;
    color: #212121;
}

.introjs-tooltip-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.introjs-tooltipbuttons {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
}

.introjs-tooltip.introjs-custom {
    left:0 !important;
    bottom:0 !important;
    top:auto !important;
    right: auto !important;
    transform: translateY(110%);
    -webkit-transition: opacity .3s ease-out;
    -o-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out;
}

body.tmintro-temp .introjs-tooltip {
    visibility:hidden !important;
    opacity:0 !important;
    transform:translateY(40px);
}

/* ================= TOOLTIP ARROWS ================== */

.introjs-arrow {
    border: 10px solid transparent;
    content: "";
    position: absolute
}

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

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

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

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

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

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

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

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

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

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

.introjs-custom .introjs-arrow {
    top: -20px !important;
    bottom:auto !important;
    right:auto !important;
    left: 20px !important;
    border: 10px solid transparent !important;
    border-bottom-color: #fff !important;
}

/* ================= FIXED TOOLTIP ================== */

.introjs-fixed .introjs-arrow {
    display: none !important;
}

.introjs-fixed .introjs-tooltip {
    position: fixed !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    bottom: 0 !important;
    top: auto !important;
    -webkit-transition: transform .2s ease-out;
    -o-transition: transform .2s ease-out;
    transition: transform .2s ease-out;
    transform:translateY(0) !important;
    opacity:1 !important;
    visibility: visible !important;
    display: block !important;
}

.introjs-fixed .introjs-tooltip.introjs-tooltip-fixed {
    transform:translateY(100%) !important;
    opacity:0 !important;
    visibility: hidden !important;
}

.introjs-fixed-wrapper {
    display: flex;
    align-items: center;
}

.introjs-fixed-left {
    width: 100%
}

.introjs-fixed-right {
    flex: 1;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    padding: 20px 0
}

.introjs-fixed-right .introjs-tooltipbuttons {
    justify-content: flex-end;
    border: none;
    padding: 0 20px
}

.introjs-fixed .introjs-progress {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9;
    margin: 0;
    border-radius: 0;
}

.introjs-fixed .introjs-helperNumberLayer {
    display: none;
}

.introjs-fixed .introjs-bullets {
    padding: 15px 20px 0 20px;
    justify-content: flex-end;
}

.introjs-fixed .introjs-button.introjs-prevbutton {
    margin: 0 10px
}

/* ================= BUTTONS ================== */

.introjs-button {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    position: relative;
    overflow: visible;
    padding: .5rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-decoration: none;
    font-size: 13px;
    color: #212121;
    white-space: nowrap;
    cursor: pointer;
    outline: 0;
    background-color: #f5f5f5;
    border-radius: .2em;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    line-height: 1.4;
    font-weight: 700;
}

.introjs-button:hover {
    outline: 0;
    text-decoration: none;
    border-color: #212121;
    background-color: #f5f5f5;
    color: #212121
}

.introjs-skipbutton {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    color: #212121;
    font-size: 15px;
    cursor: pointer;
    line-height: 1;
    text-align: center;
    padding: 0;
    opacity: 1;
}

.introjs-skipbutton:focus,
.introjs-skipbutton:hover {
    opacity: 0.7;
    outline: 0;
    text-decoration: none
}

.introjs-disabled {
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: default;
    background-image: none;
    text-decoration: none;
    opacity: 0.5;
    pointer-events: none;
}

.introjs-hidden {
    display: none
}

/* ================= BULLETS ================== */

.introjs-bullets {
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
}

.introjs-bullets ul {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap
}

.introjs-bullets ul li {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    list-style: none;
    margin: 0 2px;
    padding: 0;
}

.introjs-bullets ul li a {
    -webkit-transition: width .1s ease-in;
    -o-transition: width .1s ease-in;
    transition: width .1s ease-in;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: block;
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 18px;
    text-decoration: none;
    cursor: pointer
}

.introjs-bullets ul li a:focus,
.introjs-bullets ul li a:hover {
    width: 18px;
    text-decoration: none;
    outline: 0
}

.introjs-bullets ul li a.active {
    width: 18px;
    background: #2196F3
}

/* ================= PROGRESS ================== */

.introjs-progress {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    overflow: hidden;
    height: 10px;
    margin: 0 20px;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.introjs-progressbar {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 0;
    height: 100%;
    font-size: 10px;
    line-height: 10px;
    background-color: #2196F3;
    transition: width 0.2s linear;
}

/* ================= HINT ================== */

.introjs-hint {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    position: absolute;
    background: 0 0;
    width: 20px;
    height: 15px;
    cursor: pointer
}

.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 {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 10px;
    height: 10px;
    border: 5px solid rgba(60, 60, 60, .27);
    border-radius: 30px;
    background-color: rgba(136, 136, 136, .24);
    z-index: 10;
    position: absolute;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .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 rgba(146, 146, 146, .36);
    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
}

/* ================= KEYFRAMES ================== */

@-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
    }
}

/* ================= MEDIA QUERIES ================== */

@media only screen and (max-width: 576px) {
    .introjs-fixed-wrapper {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .introjs-fixed-right {
        flex-direction: row;
        align-items: center;
        padding: 20px 0;
        width: 100%;
        justify-content: space-between;
    }

    .introjs-fixed-left {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1)
    }

    .introjs-fixed .introjs-bullets {
        padding: 0px 20px;
        justify-content: flex-start;
    }
}