html,
body,
#app {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
}
#appContainer {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
}

.empoworx-home {
    background-color: #fbfbfb;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.empoworx-home__main {
    user-select: none;
    width: 100%;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.empoworx-home__footer {
    width: 100%;
    flex-grow: 0;
    text-align: center;
    padding: 1em 0;
    font-size: 12px;
    color: #999;
}

.empoworx-home__loading {
    height: 280px;
    width: 280px;
    margin-bottom: 20px;
    /*background-size: cover;*/
    background: url("../../img/svg/loading-spin.gif");
}

.empoworx-home__sub-title {
    color: #ABABAB;
    font-size: 12px;
}


.el-loading-mask{
    position: absolute;
    z-index: 2000;
    background-color: rgba(255, 255, 255, 0.9);
    margin: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: opacity 0.3s;
}

.el-loading-spinner{
    top: 50%;
    margin-top: 21px;
    width: 100%;
    text-align: center;
    position: absolute;
}


.el-loading-spinner .loading-container {
    height: 40px;
    justify-content: center;
    width: 40px;
    left: calc(50% - 20px)
}

.el-loading-spinner .loading-container, .el-loading-spinner .dot {
    align-items: center;
    display: flex;
    position: relative
}

.el-loading-spinner .loading-container .dot {
    flex-shrink: 0;
    height: 100%;
    transform-origin: center top;
    width: 25%
}

.el-loading-spinner .loading-container .dot:after {
    background-color: var(--primaryColor, #1566FF);
    border-radius: 50%;
    content: "";
    display: block;
    height: 25%;
    transition: background-color .3s ease;
    width: 100%
}

.el-loading-spinner .loading-container .dot:first-child {
    animation: swing 1.4s linear infinite
}

.el-loading-spinner .loading-container .dot:last-child {
    animation: swing2 1.4s linear infinite
}

@keyframes swing {
    0% {
        animation-timing-function: ease-out;
        transform: rotate(0deg)
    }
    25% {
        animation-timing-function: ease-in;
        transform: rotate(70deg)
    }
    50% {
        animation-timing-function: linear;
        transform: rotate(0deg)
    }
}

@keyframes swing2 {
    0% {
        animation-timing-function: linear;
        transform: rotate(0deg)
    }
    50% {
        animation-timing-function: ease-out;
        transform: rotate(0deg)
    }
    75% {
        animation-timing-function: ease-in;
        transform: rotate(-70deg)
    }
}