﻿@charset "utf-8";

:root {
    --white: #fff;
    --black: #55514c;
    --darkgreen: #7fba00;
    --lightgreen: #6fa225;
    --headericons: #838081;
    --lightgraybackgroud: #ebebeb;
    --maingraybackground: #f4f4f4;
    --fontcolor: #4e4546;
    --menuitemcolor: #838081;
    --listitemcolor: #646464;
    --forminput: #777;
    --forminputtext: #222;
    --labelcolor: #7b7b7b;
    --buttonblack: #555555;
}

* {
    font-family: "Nunito", sans-serif;
}
a{
    color: #646464;
}
a:hover {
    color: #646464;
    text-decoration: underline;
}
.page-wrap {
    width: 100%;
    min-height: 100vh;
    background-image: url(../images/login-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.error-msg {
    color: #dc3545 !important;
    font-size: 13px;
    margin-top: 2px;
}

.form-wrap {
    width: 500px;
    max-width: 500px;
    background-color: #fff;
    padding: 40px;
}

.form-wrap .logo-mvp {
    display: block;
    width: 286px;
    height: 47px;
    background: url(../images/logo.png) center center no-repeat;
    margin: 0 auto 2rem;
}

.form-wrap h3 {
    color: #000;
    margin-bottom: 16px;
}
.form-wrap h4 {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}
h5.modal-title {
    color: #000;
    font-size: 20px;
    font-weight: normal;
}
.form-wrap label {
    margin-bottom: 4px;
}

.form-wrap .form-control {
    height: 38px !important;
    line-height: 36px;
    background-color: #f7f7f7;
}

.position-relative .form-control {
    padding-right: 32px;
}

.form-wrap .form-control:focus {
    box-shadow: 0px 0px 9px 0px rgba(50, 50, 50, 0.3) !important;
    border: 1px solid #55514C !important;
}

.btn-dark {
    height: 38px;
    line-height: 36px;
    background-color: #007bff;
    border-color: #007bff;
    text-decoration: none;
}

.btn-dark:hover {
    background-color: #0069d9;
    border-color: #0069d9;
    text-decoration: none !important;
}

.btn-default {
    color: #000;
    border-radius: 5px;
    background-color: #eee;
}
.btn-default:hover,
.btn-default:active{
    color: #000;
    background-color: #ddd;
}

.toggleBTN {
    width: 20px;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: 11px;
    right: 10px;
}

.hrBorder {
    border-top: 2px solid #000;
    opacity: 1;
}

.login-copyrights {
    display: flex;
    justify-content: space-between;
}
.login-copyrights a{
    text-decoration: underline;
}
.modal-content {
    border-radius: 0;
}

button.btn-close:focus {
    box-shadow: none;
}

/** alert box css start***/
.customealert_overlay {
    background: #000;
    width: 100%;
    height: 100%;
    position: fixed;
    opacity: .50;
    filter: alpha(opacity=50);
    z-index: 999998;
    top: 0px;
    left: 0px;
}

.customealert {
    border: 1px solid #373631;
    padding: 1px;
    background: #fff;
    left: 50%;
    top: 50%;
    width: 500px;
    margin-left: -250px;
    margin-top: -140px;
    z-index: 999999;
    font-size: 12px;
    position: fixed;
    line-height: 30px;
}

.customealert .head-title {
    /*background-image: url(../img/bg.png);*/
    background-color: #55514C;
    height: 30px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 18px;
    color: #f2f2f2;
    text-shadow: none;
}

.customealert .alertbox {
    font-size: 15px;
    padding: 15px;
    line-height: 20px;
}

.customealert .btnset {
    text-align: right;
    border-top: 1px solid #ccc;
    padding: 5px;
}

.customealert button {
    background: #55514C;
    color: #f2f2f2;
    padding: 0 10px;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.customealert button:hover {
    background: #8CC13F;
}

.customealert .alertclose {
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
}

@media (max-width: 767px) {
    .page-wrap {
        padding: 0;
    }
    .form-wrap {
        width: calc(100% - 20px);
        padding: 30px 24px;
    }
    .login-copyrights {
        display: block;
    }
}
@media (max-width: 567px) {
    .form-wrap {
        padding: 24px 12px;
    }
    .form-wrap .logo-mvp {
        width: 276px;
        background-size: 276px auto;
    }
}

/* New Loader for New UI*/
#divSpinner #spinner {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999999 !important;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0.2s;
}

/* (B) CENTER LOADING SPINNER */
#divSpinner #spinner img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
}

/* (C) SHOW & HIDE */
#divSpinner #spinner {
    visibility: hidden;
    opacity: 0;
}

    #divSpinner #spinner.show {
        visibility: visible;
        opacity: 1;
    }

#divSpinner .loader {
    background-color: unset;
}

/*** Loader ***/
.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    /* z-index: 9; */
}

    .loader:after {
        content: "";
        border: 8px solid #eee;
        border-radius: 50%;
        border-top: 8px solid #7fba00;
        width: 50px;
        height: 50px;
        -webkit-animation: spin 1s linear infinite;
        /* Safari */
        animation: spin 1s linear infinite;
    }

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.form-wrap-auth-app {
    width: 650px;
    max-width: 650px;
}
    .form-wrap-auth-app .required{
        color: red;
    }