﻿/* ng-cloak flicker fix */
@charset "UTF-8";

[ng\:cloak],
[ng-cloak],
[data-ng-cloak],
[x-ng-cloak],
.ng-cloak,
.x-ng-cloak {
    display: none !important;
}

.vms-hidden {
    display: none;
}

.vms-visibility-hidden {
    visibility: hidden !important;
}

.vms-loading-block {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #2a3138;
    background-position: center;
    z-index: 9999999;
    /*background-image: url("/app/images/logo_logIn.png");*/
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border: solid 1px transparent;
    -moz-user-select: none;
    -webkit-user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
}

.vms-loading-block .load-app-err {
    display: none;
    width: 346px;
    padding: 15px;
    border-radius: 13px;
    border: solid 5px #295287;
    color: #c7cbd1;
    font-size: 15px;
    text-align: center;
    position: absolute;
    left: 40%
}

.vms-loading-block .load-app-err .errTitle {
    margin-bottom: 13px
}

.vms-loading-block .load-app-err .blue-button-new-ui {
    margin-top: 25px;
    width: auto!important
}
.vms-loading-view {
    height: 524px;
    width: 578px;
    position: absolute;
    top: calc(50% - 262px);
    left: calc(50% - 289px);
    background-image: url('/app/images/logo-symbol.png');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border: solid 1px transparent;
}

.spinner-container {
    -webkit-animation: rotate 10s linear infinite;
    animation: rotate 10s linear infinite;
    z-index: 2;
}

    .spinner-container .path {
        stroke-dasharray: 1,150; /* 1%, 101% circumference */
        stroke-dashoffset: 0;
        stroke: white;
        stroke-linecap: round;
        -webkit-animation: dash 5s ease-in-out infinite;
        animation: dash 5s ease-in-out infinite;
    }

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1,150; /* 1%, 101% circumference */
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90,150; /* 70%, 101% circumference */
        stroke-dashoffset: -35; /* 25% circumference */
    }

    100% {
        stroke-dasharray: 90,150; /* 70%, 101% circumference */
        stroke-dashoffset: -124; /* -99% circumference */
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1,150; /* 1%, 101% circumference */
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90,150; /* 70%, 101% circumference */
        stroke-dashoffset: -35; /* 25% circumference */
    }

    100% {
        stroke-dasharray: 90,150; /* 70%, 101% circumference */
        stroke-dashoffset: -124; /* -99% circumference */
    }
}
