* {
    padding: 0;
    margin: 0
}

html, body {
    height: 100vh;
    font-family: 'Roboto', sans-serif,Arial,Helvetica,sans-serif;
    overflow: hidden
}

.scrollDis {
    overflow: hidden !important
}

.loader {
    position: fixed;
    background-color: rgba(0,0,0,.5);
    width: 100%;
    height: 100vh;
    display: none
}

.rsLoading {
    position: relative;
    width: 60px;
    height: 55px;
    margin: auto;
    top: 50%;
}

    .rsLoading div {
        position: absolute;
        top: 27px;
        width: 11px;
        height: 11px;
        border-radius: 50%;
        background: #fff;
        animation-timing-function: cubic-bezier(0,1,1,0)
    }

        .rsLoading div:nth-child(1) {
            left: 6px;
            animation: rsLoading1 .6s infinite
        }

        .rsLoading div:nth-child(2) {
            left: 6px;
            animation: rsLoading2 .6s infinite
        }

        .rsLoading div:nth-child(3) {
            left: 26px;
            animation: rsLoading2 .6s infinite
        }

        .rsLoading div:nth-child(4) {
            left: 45px;
            animation: rsLoading3 .6s infinite
        }

@keyframes rsLoading1 {
    0% {
        transform: scale(0)
    }

    100% {
        transform: scale(1)
    }
}

@keyframes rsLoading3 {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(0)
    }
}

@keyframes rsLoading2 {
    0% {
        transform: translate(0,0)
    }

    100% {
        transform: translate(19px,0)
    }
}

.cb-slideshow, .cb-slideshow li span {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0
}

.cb-slideshow {
    position: fixed
}

    .cb-slideshow li span {
        position: absolute;
        color: transparent;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: none;
        opacity: 0;
        -webkit-backface-visibility: hidden;
        -webkit-animation: imageAnimation 60s linear infinite 0s;
        -moz-animation: imageAnimation 60s linear infinite 0s;
        -o-animation: imageAnimation 60s linear infinite 0s;
        -ms-animation: imageAnimation 60s linear infinite 0s;
        animation: imageAnimation 60s linear infinite 0s
    }

    .cb-slideshow li:nth-child(1) span {
        background-image: url(../../assets/images/1.jpg)
    }

    .cb-slideshow li:nth-child(2) span {
        background-image: url(../../assets/images/2.jpg);
        -webkit-animation-delay: 10s;
        -moz-animation-delay: 10s;
        -o-animation-delay: 10s;
        -ms-animation-delay: 10s;
        animation-delay: 10s
    }

    .cb-slideshow li:nth-child(3) span {
        background-image: url(../../assets/images/3.jpg);
        -webkit-animation-delay: 20s;
        -moz-animation-delay: 20s;
        -o-animation-delay: 20s;
        -ms-animation-delay: 20s;
        animation-delay: 20s
    }

    .cb-slideshow li:nth-child(4) span {
        background-image: url(../../assets/images/4.jpg);
        -webkit-animation-delay: 30s;
        -moz-animation-delay: 30s;
        -o-animation-delay: 30s;
        -ms-animation-delay: 30s;
        animation-delay: 30s
    }

    .cb-slideshow li:nth-child(5) span {
        background-image: url(../../assets/images/5.jpg);
        -webkit-animation-delay: 40s;
        -moz-animation-delay: 40s;
        -o-animation-delay: 40s;
        -ms-animation-delay: 40s;
        animation-delay: 40s
    }

    .cb-slideshow li:nth-child(6) span {
        background-image: url(../../assets/images/1.jpg);
        -webkit-animation-delay: 50s;
        -moz-animation-delay: 50s;
        -o-animation-delay: 50s;
        -ms-animation-delay: 50s;
        animation-delay: 50s
    }

@-webkit-keyframes imageAnimation {
    0% {
        opacity: 0;
        -webkit-animation-timing-function: ease-in
    }

    8% {
        opacity: 1;
        -webkit-animation-timing-function: ease-out
    }

    17% {
        opacity: 1
    }

    25% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

@-moz-keyframes imageAnimation {
    0% {
        opacity: 0;
        -moz-animation-timing-function: ease-in
    }

    8% {
        opacity: 1;
        -moz-animation-timing-function: ease-out
    }

    17% {
        opacity: 1
    }

    25% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

@-o-keyframes imageAnimation {
    0% {
        opacity: 0;
        -o-animation-timing-function: ease-in
    }

    8% {
        opacity: 1;
        -o-animation-timing-function: ease-out
    }

    17% {
        opacity: 1
    }

    25% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

@-ms-keyframes imageAnimation {
    0% {
        opacity: 0;
        -ms-animation-timing-function: ease-in
    }

    8% {
        opacity: 1;
        -ms-animation-timing-function: ease-out
    }

    17% {
        opacity: 1
    }

    25% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

@keyframes imageAnimation {
    0% {
        opacity: 0;
        animation-timing-function: ease-in
    }

    8% {
        opacity: 1;
        animation-timing-function: ease-out
    }

    17% {
        opacity: 1
    }

    25% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

.footer {
    position: fixed;
    width: 100%;
    background-color: #fff;
    bottom: 0;
    text-align: center;
    height: 40px;
    line-height: 40px;
    font-size: 10px;
    color: #777
}

.loginScreen {
    display: none;
    width: 320px;
    background: #fff;
    text-align: center;
    padding: 40px;
    box-shadow: #78859D 0px 3px 6px;
    position: absolute;
    right: 10%;
    top: 21%
}

    .loginScreen label {
        display: block;
        padding-right: 10px;
        white-space: nowrap
    }

        .loginScreen label input {
            vertical-align: middle
        }

    .loginScreen .logo {
        width: 110px;
        margin-bottom: 25px;
    }

    .loginScreen p.updatePass {
        font-size: 13px;
        margin-bottom: 1.5rem;
        color: #80868b;
        margin-top: -20px;
    }

.hide {
    display: none !important
}

.form-group {
    position: relative;
}

.help-block {
    position: absolute;
    right: 0px;
    top: 40px;
    font-size: 11px;
    padding: 5px;
    display: none;
    z-index: 9;
    background: #f8dde1;
    color: #ff0000;
}

.has-error .help-block {
    display: block
}

.help-block:before {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #f8dde1;
    content: '';
    position: absolute;
    top: -6px;
    right: 14px;
}

.frInValid {
    position: absolute;
    right: 10px;
    top: 32%;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    line-height: 18px !important;
    background: #ff0000;
    z-index: 9;
}

    .frInValid:after {
        content: "\e93e";
        font-family: 'uday' !important;
        color: #fff;
        font-size: 9px;
        padding: 2px 0px 0 0px;
        display: inline-block;
    }

.frValid {
    position: absolute;
    right: 5px;
    top: 15px;
    width: 17px;
    height: 17px;
    font-size: 10px;
    color: #fff;
    line-height: 18px !important;
    border-radius: 100%;
    background: #7cbd5b;
}

    .frValid:after {
        content: "\e90f";
        display: block;
        color: #fff;
        font-family: 'uday' !important;
        font-weight: 900;
    }



.has-success input {
    border-color: #1489D5;
}

.has-success .ud-userName, .has-success .ud-password {
    color: #1489D5;
}

.field-wrapper {
    position: relative;
    margin-bottom: 15px;
}

    .field-wrapper input {
        border: 1px solid #DADCE0;
        padding: 15px 40px 15px;
        border-radius: 4px;
        width: calc(100% - 76px)
    }

        .field-wrapper input:focus {
            border-color: #1489D5;
            outline: 0;
        }

    .field-wrapper .field-placeholder {
        font-size: 14px;
        position: absolute;
        bottom: 15px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        color: #80868b;
        left: 8px;
        padding: 0 8px;
        -webkit-transition: transform 150ms cubic-bezier(0.4,0,0.2,1),opacity 150ms cubic-bezier(0.4,0,0.2,1);
        transition: transform 150ms cubic-bezier(0.4,0,0.2,1),opacity 150ms cubic-bezier(0.4,0,0.2,1);
        z-index: 1;
        text-align: left;
        width: 100%;
    }

        .field-wrapper .field-placeholder span {
            background: #ffffff;
            padding: 0px 8px;
            margin-left: 17px;
        }

    .field-wrapper input:not([disabled]):focus ~ .field-placeholder {
        color: #1A73E8;
    }

    .field-wrapper input:not([disabled]):focus ~ .field-placeholder,
    .field-wrapper.hasValue input:not([disabled]) ~ .field-placeholder {
        -webkit-transform: scale(.75) translateY(-29px) translateX(-60px);
        -webkit-transform: scale(.75) translateY(-29px) translateX(-43px);
        transform: scale(.75) translateY(-29px) translateX(-60px);
        transform: scale(.75) translateY(-29px) translateX(-43px);
    }
/*input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus*/
.icon {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #777
}

.floatLeft {
    float: left;
}

.floatRight {
    float: right;
}
.mar-tp-10 {
    margin-top: 10px;
}
.btn_primary {
    color: #fff;
    cursor: pointer;
    cursor: pointer;
    padding: 8px 10px;
    display: flex;
    min-width: 100px;
    border: 0px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background-color: #0165F5 !important;
    font-family: 'hcltech_roobertsemibold';
    border-radius: 5px;
}

    .btn_primary:hover {
        background: #3282FA !important;
        transition: all .5s;
        box-shadow: 0 0 0 1px #3282FA inset !important;
    }

.font12 {
    font-size: 12px;
    color: #777;
}

.forGetLink {
    cursor: pointer;
    text-decoration: underline
}

.clear {
    clear: both;
    display: block
}

.marginTop20 {
    margin-top: 20px
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}


.overlay {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: none;
}

.customMessage {
    display: none;
    color: #777;
    text-align: left;
    width: 470px;
    position: absolute;
    bottom: 10%;
    left: 50px;
    background: #fff;
    border-radius: 7px;
    border-left: 5px solid #4caf50;
    padding: 15px;
    box-shadow: 0px 0px 20px #000;
    border-left: 7px solid #4caf50;
}

    .customMessage h3 {
        font-size: 20px;
        color: #000;
        margin-bottom: 2px;
    }

    .customMessage p {
        color: #777
    }

.successIcon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    background: #4caf50;
    display: inline-block;
    border-radius: 100%;
    font-size: 25px;
    text-align: center;
    color: #fff;
    margin-top: 4px;
}

    .successIcon i {
        margin-top: 7px;
        display: inline-block
    }

.close1 {
    cursor: pointer;
    text-align: right !important;
    line-height: 35px;
    font-size: 25px;
    margin-top: 4px;
    font-style: normal;
}


.has-success .help-block {
    display: none !important
}


/*---------------------------------------
 7. Toast Css Start Here
-----------------------------------------*/
.jq-toast-wrap {
    display: block;
    position: fixed;
    width: 600px;
    margin: 0;
    letter-spacing: normal;
    z-index: 9000 !important;
    box-shadow: 0 0 20px #000;
    border-radius: 5px;
    color: #222;
    background-color: #fff;
    /*  border-left: 5px solid #4CAF50;*/
}
/*
    .jq-toast-wrap * {
        margin: 0;
        padding: 0
    }

    .jq-toast-wrap.bottom-left {
        bottom: 90px;
        left: 10px
    }

    .jq-toast-wrap.bottom-right {
        bottom: 20px;
        right: 40px
    }

    .jq-toast-wrap.top-left {
        top: 20px;
        left: 20px
    }

    .jq-toast-wrap.top-right {
        top: 20px;
        right: 40px
    }
*/
.jq-toast-single {
    display: block;
    padding: 12px 40px 12px 55px !important;
    font-size: .9rem;
    line-height: 22px;
    color: #777;
    position: relative;
    border-radius: 5px
}

    .jq-toast-single.jq-icon-success {
        border-left: 5px solid #4CAF50;
    }

    .jq-toast-single.jq-icon-info {
        border-left: 5px solid #2196F3;
    }

.jq-icon-info .sucAlertIcon {
    background: #2196F3;
}

    .jq-icon-info .sucAlertIcon:after {
        content: "\e93e";
    }

.jq-toast-single.jq-icon-warning {
    border-left: 5px solid #FFC021;
}

.jq-icon-warning .sucAlertIcon {
    background: #FFC021;
}

    .jq-icon-warning .sucAlertIcon:after {
        content: "\e93f";
    }

.jq-toast-single.jq-icon-error {
    border-left: 5px solid #F44336;
}

.jq-icon-error .sucAlertIcon {
    background: #F44336;
}

    .jq-icon-error .sucAlertIcon:after {
        content: "\e911";
        font-size: 13px;
        padding: 5px 0px 0px 8px !important;
    }

.jq-toast-wrap * {
    margin: 0;
    padding: 0
}

.jq-toast-wrap.bottom-left {
    bottom: 90px;
    left: 10px
}

.jq-toast-wrap.bottom-right {
    bottom: 20px;
    right: 40px
}

.jq-toast-wrap.top-left {
    top: 20px;
    left: 20px
}

.jq-toast-wrap.top-right {
    top: 20px;
    right: 40px
}


.sucAlertIcon {
    padding: 5px;
    border-radius: 50%;
    color: #fff;
    font-weight: 900 !important;
    font-size: 1.2rem;
    float: left;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 10px;
    top: 15px;
}

    .sucAlertIcon::after {
        font-family: 'uday' !important;
        padding: 1px 0px 0px 3px;
        display: inline-block;
    }

.jq-icon-success .sucAlertIcon {
    background: #4CAF50;
}

    .jq-icon-success .sucAlertIcon:after {
        content: "\e90f";
    }

.jq-toast-single h2 {
    font-family: arial,sans-serif;
    font-size: 1rem;
    color: #222;
}

.jq-toast-single a {
    color: #eee;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid #fff;
    padding-bottom: 3px;
    font-size: 12px
}

.jq-toast-single ul {
    margin: 0 0 0 15px;
    background: none;
    padding: 0
}

    .jq-toast-single ul li {
        list-style-type: disc !important;
        line-height: 17px;
        background: none;
        margin: 0;
        padding: 0;
        letter-spacing: normal
    }

.close-jq-toast-single {
    position: absolute;
    top: 25px;
    right: 12px;
    font-size: 17px;
    cursor: pointer;
    font-weight: 900 !important;
    color: #777;
}

.jq-toast-loader {
    display: block;
    position: absolute;
    top: 0;
    height: 3px;
    width: 0;
    left: 0;
    border-radius: 5px;
    background: red
}

.jq-toast-loaded {
    width: 100%;
    left: -1px
}

.splashScreen {
    background: rgba(0,0,0,0.5);
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    display: none;
}
/*---------------------------------------
7. Toast Css Ends Here
-----------------------------------------*/






/*************************
css by gaurav start
*************************/

.loginScreenPtm {
    display: none;
    width: 100%;
    /* background: rgba(0,0,0,.6); */
    background: url(../images/ptm-bg.png) center center no-repeat;
    text-align: left;
    padding: 40px;
    /* box-shadow: 0px 0px 30px 20px rgba(0,0,0,0.6); */
    position: absolute;
    right: 0;
    left: 0;
    top: 21%;
    margin: 0 auto;
    z-index: 2;
}

    .loginScreenPtm form#LoginForm {
        width: 360px;
        margin: 0 auto;
    }

    .loginScreenPtm label {
        display: block;
        padding-right: 10px;
        white-space: nowrap
    }

        .loginScreenPtm label input {
            vertical-align: middle
        }

    .loginScreenPtm .logo {
        width: 110px;
        margin-bottom: 35px;
    }

    .loginScreenPtm p.updatePass {
        font-size: 13px;
        margin-bottom: 1.5rem;
        color: #80868b;
        margin-top: -20px;
    }

    .loginScreenPtm .welcome {
        color: rgba(255,255,255,.8);
        font-weight: 100;
        font-size: 35px;
    }

    .loginScreenPtm p {
        color: rgba(255,255,255,.5);
        font-size: 18px;
        margin-bottom: 30px;
        font-weight: 100;
        line-height: 22px;
    }

    .loginScreenPtm .field-wrapper input {
        border: 1px solid #9c9c9c;
        border-radius: 1px;
        width: calc(100% - 133px);
        background: transparent;
        padding: 36px 40px 23px 92px !important;
        color: #fff;
        font-size: 1.2em;
    }

    .loginScreenPtm .field-wrapper:first-child input:first-child {
        border-bottom: transparent;
    }

    .loginScreenPtm .form-group i.icon {
        padding-top: 8px;
        padding-left: 15px;
        font-size: 2em;
    }

    .loginScreenPtm .loginScreenPtm .field-wrapper input:focus i.icon {
        color: #1489D5;
    }

    .loginScreenPtm .borderbtmNone {
        border-bottom: 0px !important;
    }

    .loginScreenPtm .field-wrapper {
        position: relative;
        margin-bottom: 0px;
    }

.overlay-bg {
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.loginScreenPtm .frValid {
    top: 40px;
}

.loginScreenPtm .frInValid {
    top: 38px;
    right: 15px;
}

.loginScreenPtm .ud-complete:before {
    padding-left: 4px;
}

.loginScreenPtm .frInValid:after {
    text-align: center;
}

.loginScreenPtm .forGetLink {
    cursor: pointer;
    margin-top: 40px;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid;
    color: rgba(255,255,255,.5);
    font-size: 18px;
    font-weight: 100;
    line-height: 22px;
}

.loginScreenPtm .btn_primary {
    font-size: 16px;
    padding: 12.5px 25px;
    background: #3f87fb;
    color: #c1d4fd;
    margin-top: 30px;
}

.loginScreenPtm .loginScreenBG {
    display: none
}

.loginScreenPtm .help-block {
    top: 62px;
    color: #ff0000;
    right: 10px;
    font-size: 12px;
    line-height: 100%;
    margin: 0;
}
/* .loginScreenPtm .inputBosSdw {-webkit-box-shadow: 0px 0px 171px 67px rgba(0,0,0,0.76);-moz-box-shadow: 0px 0px 171px 67px rgba(0,0,0,0.76);box-shadow: 0px 0px 171px 67px rgba(0,0,0,0.76);border-radius: 4px;} */
.loginScreenPtm .field-wrapper input:focus {
    border-color: #9c9c9c;
    outline: 0;
}

.loginScreenPtm .field-wrapper input:not([disabled]):focus ~ .field-placeholder {
    color: #80868b;
}

.loginScreenPtm .frInValid:after {
    content: 'i';
    display: block;
    color: #fff;
    padding-left: 1px;
    font-size: 12px;
}

.loginScreenPtm .frValid {
    position: absolute;
    right: 15px;
    width: 17px;
    height: 17px;
    font-size: 10px;
    color: #fff;
    line-height: 18px !important;
    border-radius: 100%;
    background: #7cbd5b;
}

    .loginScreenPtm .frValid:after {
        content: "\e90f";
        display: block;
        color: #fff;
        font-family: 'uday' !important;
        font-weight: 900;
        padding-left: 3px;
        color: #000;
        padding-left: 5px;
        font-size: 8px;
    }

.loginScreenPtm .help-block:before {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #f8dde1;
    content: '';
    position: absolute;
    top: -4px;
    right: 9px;
}

.loginScreenPtm .field-wrapper .field-placeholder span {
    background: transparent;
    padding: 0px 8px;
    margin-left: 24px;
    font-size: 1.2rem;
}

.loginScreenPtm .field-wrapper input:not([disabled]):focus ~ .field-placeholder {
    color: #777;
}

.loginScreenPtm .field-wrapper input:not([disabled]):focus ~ .field-placeholder,
.loginScreenPtm .field-wrapper.hasValue input:not([disabled]) ~ .field-placeholder {
    -webkit-transform: scale(.78) translateY(-18px) translateX(-26px);
    transform: scale(.85) translateY(-18px) translateX(-26px);
}

.loginScreenPtm .icon {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #777
}

.loginScreenPtm .has-success input {
    border-color: #9c9c9c !important;
}

.loginScreenPtm .has-success .ud-userName, .loginScreenPtm .has-success .ud-password {
    color: #777 !important;
}

.field-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.loginScreenPtm .field-wrapper input:focus {
    border-color: #9c9c9c;
    outline: 0;
}

.loginScreenPtm .field-wrapper .field-placeholder {
    font-size: 14px;
    position: absolute;
    bottom: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #80868b;
    left: 54px;
    padding: 0 8px;
    -webkit-transition: transform 150ms cubic-bezier(0.4,0,0.2,1),opacity 150ms cubic-bezier(0.4,0,0.2,1);
    transition: transform 150ms cubic-bezier(0.4,0,0.2,1),opacity 150ms cubic-bezier(0.4,0,0.2,1);
    z-index: 1;
    text-align: left;
    width: 100%;
}
/*************************
css by gaurav end
*************************/

.cb-slideshow img {
    width: 100vw;
    height: 100vh;
}

#pswd_info {
    display: none;
}

#pswd_info {
    background: #fff;
    border-radius: 3px;
    box-shadow: 0px 0px 15px #ccc;
    color: #777;
    position: absolute;
    bottom: 50px;
    right: 0;
    left: 0;
    z-index: 99;
    text-align: left;
}

    #pswd_info::before {
        position: absolute;
        content: "";
        bottom: -6px;
        right: 10%;
        width: 0px;
        height: 0px;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #fff;
    }

    #pswd_info h4 {
        display: block;
        font-size: 14px;
        letter-spacing: 0;
        padding: 15px 15px 10px;
        text-align: left;
        margin: 0;
        color: #222;
    }

    #pswd_info ul {
        list-style: outside none none;
        margin: 0;
        padding: 0 15px 10px;
    }

        #pswd_info ul li {
            padding: 4px 0;
            font-size: 12px;
        }

.valid {
    color: green;
}

.invalid {
    color: #FF0000;
}



.errorLogin {
    width: 500px;
    padding: 20px;
}

    .errorLogin img {
        width: 200px;
    }

    .errorLogin h2 {
        color: #425577;
        font-size: 40px;
        margin: 20px 0 10px 0;
        font-weight: 500;
    }

    .errorLogin p {
        color: #222;
        font-size: 1rem;
        margin-bottom: 30px;
        font-weight: 300;
    }

/*Brand Refresh Style [Start]*/

@font-face {
    font-family: 'hcltech_roobertlight';
    src: url('../fonts/hcltechroobert-light-webfont.woff2') format('woff2'), url('../fonts/hcltechroobert-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'hcltech_roobertregular';
    src: url('../fonts/hcltechroobert-regular-webfont.woff2') format('woff2'), url('../fonts/hcltechroobert-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'hcltech_roobertmedium';
    src: url('../fonts/hcltechroobert-medium-webfont.woff2') format('woff2'), url('../fonts/hcltechroobert-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'hcltech_roobertsemibold';
    src: url('../fonts/hcltechroobert-semibold-webfont.woff2') format('woff2'), url('../fonts/hcltechroobert-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'hcltech_roobertbold';
    src: url('../fonts/hcltechroobert-bold-webfont.woff2') format('woff2'), url('../fonts/hcltechroobert-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'hcltech_roobertheavy';
    src: url('../fonts/hcltechroobert-heavy-webfont.woff2') format('woff2'), url('../fonts/hcltechroobert-heavy-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.pageText {
    font-size: 16px;
    color: #222222;
    margin-bottom: 15px;
    text-align: left;
    line-height: 22px;
    font-family: 'hcltech_roobertsemibold';
}

.orgLogin {
    padding: 40px 40px 20px;
}

p.needRegister {
    display: inline-block;
    width: 100%;
    margin-top: 16px;
    font-size: 13px;
    text-align: left;
    color: #777;
}

    p.needRegister a {
        color: #1489D5;
        padding-left: 5px;
        text-decoration: underline;
    }

.footer {
    position: fixed;
    width: 98%;
    background-color: #fff;
    bottom: 0;
    text-align: center;
    height: 40px;
    line-height: 40px;
    font-size: 10px;
    color: #777;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: none;
    height: 40px;
    line-height: 40px;
    font-size: 10px;
    color: #fff;
    padding: 0px 20px;
    background: transparent linear-gradient(90deg, #0065F5 0%, #33AFA0 67%, #198E88 100%) 0% 0% no-repeat padding-box;
}

    .footer span {
        font-size: 18px;
    }

    .footer p {
        margin: 0px;
        padding: 0px;
        font-size: 12px;
        font-family: 'hcltech_roobertregular';
    }
/*Brand Refresh Style [End]*/