body {
    margin: 0;
    padding: 0;
}
#splash-screen {
    position: absolute;
    z-index: 1000;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #f2f3f8;
}

#splash-screen img {
    margin-left: calc(100vw - 100%);
    margin-bottom: 30px;
}

#splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-spinner {
    animation: rotate 2s linear infinite;
    margin-left: calc(100vw - 100%);
    width: 50px;
    height: 50px;
}

.splash-spinner .path {
    stroke: #5d78ff;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/***authorize***/
.headerlogo {
    padding: 35px;
}
.login-bg {
    padding: 3rem;
}
.login-bg .btn {
    max-width: 100px;
    width: 100%;
    text-transform: uppercase;
}
.login-bg i {
    padding: 5px;
    background: #d7dae7;
    border-radius: 3px;
    color: #007dbc;
    font-size: 25px;
    width: 36px;
    height: 36px;
    text-align: center;
    margin-right: 25px;
    vertical-align: middle;
}
.login-heading {
    margin-bottom: 40px;
}
.login-bg a {
    color: #093d5e;
    text-decoration: underline;
}
.card-spacing {
    margin: 15px 0;
}
.alert-col .row {
    padding: 12px;
}

/* Sass */

.loading {
    position: fixed;
    z-index: 1060;
    height: 2em;
    width: 2em;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.loading img {
    animation: rotation 2s infinite linear;
    animation-delay: 0.5s;
}
@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}
.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(132, 124, 124, 0.5);
}

.reduce_txt {
    white-space: nowrap;
    width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 479px) {
    .login-bg i {
        margin-right: 10px;
    }
    .login-bg .btn {
        max-width: 85px;
    }
}
