:root {
    --loader-primary-color: #192d40;
    --loader-secondary-color: #192d40;
}

body.loading.with-progress #loader .overlay {
    --app-overlay-background-color: #f2f2f2;
}

@keyframes load {
    0% {
        border-color: rgba(128, 204, 70, 0) var(--loader-secondary-color) rgba(27, 160, 243, 0) var(--loader-primary-color);
        transform: rotate(0deg);
    }

    50% {
        border-color: var(--loader-primary-color) rgba(27, 160, 243, 0) var(--loader-secondary-color) rgba(128, 204, 70, 0);
        transform: rotate(180deg);
    }

    100% {
        border-color: rgba(128, 204, 70, 0) var(--loader-secondary-color) rgba(27, 160, 243, 0) var(--loader-primary-color);
        transform: rotate(360deg);
    }
}

body {
    overflow: hidden;
    margin: 0;
}

body #loader {
    display: none;
}

body #appMaster .nelo-dialog {
    -moz-transition: opacity 1s ease-in-out;
    -ms-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    -webkit-transition: opacity 1s ease-in-out;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

body.loading.with-progress #loaderSpinner {
    display: none !important;
}

body.loading:not(.with-progress) #loaderPercentage {
    display: none !important;
}

body.loading.with-banner #loader .content img {
    display: block;
    border-radius: 25px;
}

body.loading:not(.with-banner) #loader .content .container img {
    display: block;
}

body.loading #appMaster .nelo-dialog {
    opacity: 0;
}

body.loading #loader {
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    overflow: hidden;
    z-index: 12;
}

body.loading #loader .overlay {
    background: var(--app-overlay-background-color);
    height: 100vh !important;
    left: 0;
    position: absolute;
    top: 0;
    width: 100vw !important;
    z-index: 5;
    overflow: hidden;
}

body.loading #loader .content {
    display: flex;
    flex-direction: column;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 90%;
    z-index: 5;
}

body.loading #loader .content img {
    display: none;
    margin: auto auto 25px auto;
    width: 90%;
    max-width: 870px;
}

body.loading #loader .content .container {
    box-sizing: border-box;
    display: block;
    height: 60px;
    margin: auto;
    overflow: hidden;
    transition: transform 200ms ease-in;
    width: 60px;
}

body.loading #loader .content .container > .spinner {
    animation-duration: 1.75s;
    animation-iteration-count: infinite;
    animation-name: load;
    animation-timing-function: ease;
    border-radius: 100%;
    border-style: solid;
    border-width: 6px;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
}

#loaderPercentage {
    margin: auto;
    width: 100%;
}

#loaderPercentage label {
    display: block;
    text-align: center;
    margin-top: 13px;
    font-family: Roboto;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: center;
    color: #4d4d4d;
}

#loaderPercentage .progressBar {
    width: 320px;
    max-width: 100%;
    height: 10px;
    border-radius: 8px;
    border: solid 1px #999999;
    margin-top: 1.5rem;
    background-color: #e6e6e6;
    margin: auto;
}

#loaderPercentage .progressBarFull {
    background-color: var(--loader-secondary-color);
    height: 100%;
    border-radius: 10px;
}

#login-not-supported {
    align-items: center;
    background-image: url('dist/images/login_background.png');
    background-size: cover;
    -webkit-backdrop-filter: blur(49px);
    display: none;
    height: 100vh;
    justify-content: center;

    font-size: 14px;
    text-align: center;
    line-height: 1.21;
}

.login-not-supported-core {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 40%;
    padding: 34px 81px 17px;
    border-radius: 20px;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
    background-color: #fff;
}

.login-not-supported-alert {
    width: 50px;
    height: 50px;
    background-image: url('dist/images/ic_erro.svg');
}

.login-not-supported-core-text-main {
    font-weight: bold;
    margin-top: 20px;
}

.login-not-supported-core-text-sec {
    margin: 25px 0;
}

.login-not-supported-core-browsers {
    display: flex;
    flex-direction: column;
}

.login-not-supported-core-browsers-name {
    font-weight: bold;
    text-decoration: underline;
}

.login-not-supported-core-browsers-version {
    margin-top: 10px;
    margin-bottom: 20px;
}

#app-proxies {
    display: none;
}

#error-404 {
    display: none;
}

#error-loading {
    display: none;
}

#app-cip {
    display: none;
}
