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

MAIN
LOADING IMAGE
LOADING TEXT
LOADING BAR
LOADING TEXT/BAR ANIMATIONS
SKIP TEXT
PERCENTAGE COUNTER

*/

/* ================= MAIN ================== */

#isg-page-loading {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 99999999999999999999;
    width: 100%;
    height: 100%;
    display: block;
    max-width: 100%;
}

#isg-loading-table {
    display: table;
    height: 100%;
    width: 100%;
}

#isg-loading-cell {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 0px 40px;
}

.isg-loading-overflow-hidden {
    overflow: hidden;
}


/* ================= LOADING IMAGE ================== */

#isg-loading-gif {
    display: inline-block;
    margin: 0px auto;
}

#isg-loading-image {
    display: block;
    width: 100%;
}

#isg-loading-image img {
    max-width: 100%;
    height: auto;
}


/* ================= LOADING TEXT ================== */

#isg-loading-text {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

#isg-loading-sub-text {
    display: block;
    -webkit-transition: color 1s ease;
    -moz-transition: color 1s ease;
    -o-transition: color 1s ease;
    -ms-transition: color 1s ease;
    transition: color 1s ease;
}

#isg-loading-text::before {
    position: absolute;
    overflow: hidden;
    width: 0;
    content: attr(data-content);
    text-align: left;
    white-space: nowrap;
}


/* ================= LOADING BAR ================== */

#isg-loading-bar {
    width: 100%;
    display: block;
    position: fixed;
    left: 0px;
    right: 0px;
    overflow: hidden;
}

#isg-loading-bar.isgbottombar {
    bottom: 0px;
}

#isg-loading-bar.isgtopbar {
    top: 0px;
}

#isg-loading-bar::before {
    content: '';
    display: block;
    width: 0;
    overflow: hidden;
}


/* ================= LOADING TEXT/BAR ANIMATIONS ================== */

#isg-loading-text.start-animation::before,
#isg-loading-bar.start-animation::before {
    width: 90%;
    -webkit-transition: width 5s linear;
    -moz-transition: width 5s linear;
    -o-transition: width 5s linear;
    -ms-transition: width 5s linear;
    transition: width 5s linear;
}

#isg-loading-text.start-animation.stop-animation::before,
#isg-loading-bar.start-animation.stop-animation::before {
    -webkit-transition: width 1s linear;
    -moz-transition: width 1s linear;
    -o-transition: width 1s linear;
    -ms-transition: width 1s linear;
    transition: width 1s linear;
    width: 100%;
}


/* ================= SKIP TEXT ================== */

#isg-skip-text {
    position: fixed;
}

#isg-skip-text.isgskipbottomright {
    bottom: 0px;
    right: 0px;
}

#isg-skip-text.isgskipbottomleft {
    bottom: 0px;
    left: 0px;
}

#isg-skip-text.isgskiptopright {
    top: 0px;
    right: 0px;
}

#isg-skip-text.isgskiptopleft {
    top: 0px;
    left: 0px;
}

#isg-skip-text.isgskiptopcenter {
    top: 0px;
    right: 0px;
    left: 0px;
}

#isg-skip-text.isgskiptopcenter #isg-skip-inner {
    text-align: center;
}

#isg-skip-text.isgskipbottomcenter {
    bottom: 0px;
    right: 0px;
    left: 0px;
}

#isg-skip-text.isgskipbottomcenter #isg-skip-inner {
    text-align: center;
}

#isg-skip-inner {
    cursor: pointer;
    display: none;
    line-height: 1;
}


/* ================= PERCENTAGE COUNTER ================== */

#isg-percentage {
    position: fixed;
}

#isg-percentage.isgcounterbottomright {
    bottom: 0px;
    right: 0px;
}

#isg-percentage.isgcounterbottomleft {
    bottom: 0px;
    left: 0px;
}

#isg-percentage.isgcounterbottomcenter {
    bottom: 0px;
    right: 0px;
    left: 0px;
}

#isg-percentage.isgcounterbottomcenter #isg-percentage-inner {
    text-align: center;
}

#isg-percentage.isgcountertopright {
    top: 0px;
    right: 0px;
}

#isg-percentage.isgcountertopleft {
    top: 0px;
    left: 0px;
}

#isg-percentage.isgcountertopcenter {
    top: 0px;
    right: 0px;
    left: 0px;
}

#isg-percentage.isgcountertopcenter #isg-percentage-inner {
    text-align: center;
}

#isg-percentage-inner {
    line-height: 1;
}