﻿body {
    background-color: white;
}

.cs-loader-overlay-screen {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    position: fixed;
    z-index: 99999999;
    top: 0;
    left: 0;
}

.cs-loader-overlay-screen.hide {
    display: none;
}

.cs-loader-overlay-screen .cs-spinner-container {
    width: 200px;
    height: 150px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    margin: auto auto;
    text-align: center;
}

.cs-loader-overlay-screen .cs-spinner-container span {
    font-weight: lighter;
    font-size: 12px;
    text-align: center;
    width: 100%;
    display: block;
    color: #f2f2f2 !important;
    text-shadow: none;
    margin-top: -10px;
}

.cs-loader-overlay-screen .cs-spinner-container .cs-spinner-sprite {
    width: 100px;
    height: 100px;
    display: block;
    background: url("./assets/img/cs-loader-sprite.png");
    -webkit-animation: play 1.5s steps(20) infinite;
    animation: play 1.5s steps(20) infinite;
    -moz-animation: play 1.5s steps(20) infinite;
    -o-animation: play 1.5s steps(20) infinite;
    text-align: center;
    margin: 0 auto;
}

@-webkit-keyframes play {
    100% {
        background-position: -2000px;
    }
}

@keyframes play {
    100% {
        background-position: -2000px;
    }
}

.intercom-lightweight-app-launcher {
    bottom: 10px !important;
}

.intercom-lightweight-app {
    /* overlays have z-index of 1000 */
    z-index: 999 !important;
}

.css3-spinner {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    z-index: 9999;
    text-align: center;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    overflow-y: hidden;
}

.css3-spinner > div {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -9px;
    margin-left: 13px;
    width: 18px;
    height: 18px;
    background-color: #f4f4f4;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
    animation: bouncedelay 1.4s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.css3-spinner .css3-spinner-bounce1 {
    margin-left: -31px;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.css3-spinner .css3-spinner-bounce2 {
    margin-left: -9px;
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.loadSpinner {
    animation: inv-spinner 2s linear infinite;
}

@-webkit-keyframes bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0.0);
    }
    40% {
        -webkit-transform: scale(1.0);
    }
}

@keyframes bouncedelay {
    0%, 80%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    40% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

.auth0-lock-header-logo.centered {
    margin-top: 0px !important
}

.auth0-lock.auth0-lock .auth0-lock-header-logo {
    padding-top: 0px !important;
    margin: unset !important;
}

.auth0-lock-submit {
    padding: 0px !important;
}