/*-------------------------
    Page Loader
--------------------------*/
html:not(.ismobile) .page-loader {
    background: #fff;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10000 !important;
    opacity: 0.9;
}
html:not(.ismobile) .page-loader .preloader {
    width: 50px;
    position: absolute;
    left: 50%;
    margin-left: -25px;
    top: 50%;
    margin-top: -55px;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 3000ms;
    animation-duration: 3000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
html:not(.ismobile) .page-loader .preloader p {
    white-space: nowrap;
    position: relative;
    left: -9px;
    top: 22px;
    color: #CCC;
}
html.ismobile .page-loader {
    display: none;
}
.page-loader {
    display: none;
}

.preloader {
    position: relative;
    margin: 0px auto;
    display: inline-block;
}
.preloader:not([class*="pl-"]) {
    width: 40px;
}
.preloader:before {
    content: '';
    display: block;
    padding-top: 100%;
}
.preloader.pl-xs {
    width: 20px;
}
.preloader.pl-sm {
    width: 30px;
}
.preloader.pl-lg {
    width: 50px;
}
.preloader.pl-xl {
    width: 80px;
}
.preloader.pl-xxl {
    width: 100px;
}
.preloader:not([class*="pls-"]) .plc-path {
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
}
.preloader[class*="pls-"] .plc-path {
    animation: dash 1.5s ease-in-out infinite;
}
.preloader.pls-red .plc-path {
    stroke: #F44336;
}
.preloader.pls-blue .plc-path {
    stroke: #2196F3;
}
.preloader.pls-green .plc-path {
    stroke: #4CAF50;
}
.preloader.pls-yellow .plc-path {
    stroke: #FFEB3B;
}
.preloader.pls-bluegray .plc-path {
    stroke: #607D8B;
}
.preloader.pls-amber .plc-path {
    stroke: #FFC107;
}
.preloader.pls-teal .plc-path {
    stroke: #009688;
}
.preloader.pls-gray .plc-path {
    stroke: #9E9E9E;
}
.preloader.pls-pink .plc-path {
    stroke: #E91E63;
}
.preloader.pls-purple .plc-path {
    stroke: #BA68C8;
}
.preloader.pls-white .plc-path {
    stroke: #fff;
}
.pl-circular {
    animation: rotate 2s linear infinite;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.plc-path {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    stroke-width: 2;
    stroke-miterlimit: 10;
    fill: none;
}
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes dash {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124px;
    }
}
@keyframes color {
    100%,
    0% {
        stroke: #F44336;
    }
    40% {
        stroke: #2196F3;
    }
    66% {
        stroke: #4CAF50;
    }
    80%,
    90% {
        stroke: #FFC107;
    }
}
/*-------------------------
    Page Loader
--------------------------*/
