﻿/* Note: Schneider brand-specific */
html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    font-family: Verdana, Helvetica, Sans-Serif;
    margin: 0;
    padding: 0;
    color:#000;
    background-color:#626469;
    overflow: hidden;
}

a:hover {
    text-decoration: none;
}

a:active {
    color: #12eb87;
}
.editor-field
{
    margin:0 0 8px 0;
    height:32px;
}

.editor-field > input 
{
    float:right;
    width:100%;
    height:32px;

    -webkit-box-sizing: border-box;
            box-sizing: border-box;

    vertical-align:middle;
    border: 1px solid #aaa;
}

.editor-field > input[type="text"], .editor-field > input[type="password"]
{
    padding: 0 4px 0 4px;
    font-style: italic;
    font-size: 14px !important;
}

.field-validation-error,
.validation-summary-errors
{
    color: #ff0000;
    float: right;
    font-size: 12px;
}

.validation-summary-errors > ul
{
    margin: 0;
}

/* Login Page START */

.login_dlg 
{
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    width: 100%;
    height: 600px;
    max-width: 960px;
    min-width: 650px;

    margin: auto;

    background-color: #7d9fb1;
    -webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.4);
            box-shadow: 0 0 4px 0 rgba(0,0,0,0.4);
}

.login_dlg:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;

    background-image: url("Background.jpg");
    background-size: cover;
    background-position: center 0;

    opacity: 0;

    -webkit-animation: fadeInFeature 0.5s 0.2s;
            animation: fadeInFeature 0.5s 0.2s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;

}

.gradient {
    position: absolute;
    bottom: 0;

    width: 100%;
    height: 40%;

    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.15)),to(rgba(0,0,0,0.5)));
    background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.15) 0%,rgba(0,0,0,0.5) 100%);
    background-image: -o-linear-gradient(top, rgba(0,0,0,0.15) 0%,rgba(0,0,0,0.5) 100%);
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%,rgba(0,0,0,0.5) 100%);
}

.gradient:after {
    content: "";
    position: absolute;
    bottom: 26px;
    right: 32px;

    width: 50%;
    height: 54px;
    
    background-image: url("RangeLogo.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.topBar {
    position:absolute;
    bottom:102px;
    left:0;

    width: 100%;
    height: 168px;

    background-color: #3dcd58;
    background-image: url("ProductLogo_White.png");
    background-repeat: no-repeat;
    background-position: 32px 64px;
    background-size: 42%;

    border-top: 40px solid rgba(61,201,85,0.8);
    background-clip: padding-box;

    -webkit-transition: height ease-in-out .2s, top ease-in-out .2s, background-position ease-in-out .2s;
    -o-transition: height ease-in-out .2s, top ease-in-out .2s, background-position ease-in-out .2s;
    -webkit-transition: height ease-in-out .2s, bottom ease-in-out .2s, background-position ease-in-out .2s;
    -o-transition: height ease-in-out .2s, bottom ease-in-out .2s, background-position ease-in-out .2s;
    transition: height ease-in-out .2s, bottom ease-in-out .2s, background-position ease-in-out .2s;
}

.login_dlg.active .topBar {
    bottom: 343px;
    height: 40px;
    background-position: 32px 150px;
}

.loginBox 
{

    background: #fff;
    position:absolute;
    bottom:104px;
    top: 334px;
    left:0;

    width: 100%;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-orient: horizontal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -ms-flex-pack: distribute;
        -webkit-box-pack: justify;
            justify-content: space-between;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;

    padding: 64px 16px 16px 16px;

    overflow: hidden;

    -webkit-box-sizing: border-box;
            box-sizing: border-box;

    -webkit-transition: top .2s, bottom .2s;
    -o-transition: top .2s, bottom .2s;
    transition: top .2s, bottom .2s;
    text-align:right;
}

.login_dlg.active .loginBox 
{
    top: 256px;
}

.loginBox:before {
    content: "";
    display: block;

    width: 45%;
    min-width: 300px;
    height: 112px;

    margin: 0 32px 8px 16px;

    -ms-flex-item-align: start;

        align-self: flex-start;

    background-image: url("ProductLogo.png");
    background-position: 32px center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: left center;
}

.customerRegistrationInfoBox {
    position:absolute;
    bottom:16px;
    left:30px;
    right: 300px;
    max-width: 550px;
    text-align: left;
    font-family: "Arial";
    font-size: 12px;
    color: #9fa0a4;
}

.customerRegistrationText {
    height: 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.customerRegistrationTextBold {
    font-weight: bold;
    color: #000;
}

#logOnForm {
    max-width: 240px;
    width: 100%;
    margin: 0 16px 0 16px;
    -ms-flex-item-align: start;
        align-self: flex-start;
}

div.login_dlg input[type="submit"]
{
    color: #fff;
    width: 100%;
    padding:8px 40px;
    border-radius: 3px;
    background-color: #3dcd58;
    border: 1px solid #aaa;
    cursor: pointer;
    font-size: 14px !important;

    font-style: italic;
}

div.login_dlg div.logOnValidationSummary 
{
    margin-top: -100%;
    margin-bottom: 8px;
    font-size: 14px;
    display: inline-block;
}

div.validation-summary-errors
{
    width:100%;
}

div.login_dlg div.logOnValidationSummary ul
{
    list-style-type:none;
    text-align:center;
    width:100%;
    padding:0;
}

.copyrightBox {
    position:absolute;
    bottom:40px;
    left:32px;
    right: 325px;
    font-size: 11px;
    color: #fff;
}

div.login_dlg div.noJavaScriptMessage 
{
    padding-bottom: 7px;
}
/* Login Page END */



@-webkit-keyframes fadeInBackground {
            from { opacity: 0; }
            to   { opacity: 0.5; }
}

@keyframes fadeInBackground {
            from { opacity: 0; }
            to   { opacity: 0.5; }
}

@-webkit-keyframes fadeInFeature {
            from { opacity: 0; }
            to   { opacity: 1; }
}

@keyframes fadeInFeature{
            from { opacity: 0; }
            to   { opacity: 1; }
}

/*Authorization Dialog START*/

.auth_dlg 
{
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    width: 100%;
    height: 600px;
    max-width: 960px;
    min-width: 650px;
    margin: auto;

    background-color: white;
    -webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.4);
            box-shadow: 0 0 4px 0 rgba(0,0,0,0.4);
}

.auth_dlg:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center 0;
    background-color: white;

    opacity: 0;

    -webkit-animation: fadeInFeature 0.5s 0.2s;
            animation: fadeInFeature 0.5s 0.2s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;

}

.auth_inner{
    top: 0px;
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
}

.cont_btn{
    height: 35px;
    width: 105px;
    border-radius: 3px;
    margin-bottom: 60px;
    left: 485px;
    position: absolute;
    top: 505px;
    cursor: pointer;
}

.exit_btn{
    height: 35px;
    width: 105px;
    border-radius: 3px;
    margin-bottom: 60px;
    left: 370px;
    position:absolute;
    top:505px;
    cursor: pointer;
}

/*SSO #158007 - S*/

#WinAuth {
    margin-top: 6px;
    font-family: Arial;
    font-size: 12px;
    color: #0087cd;
    text-align: center;
}

#WinAuth a {
    color: #0087cd;
}

#SsoAuth {
    margin-top: 6px;
    font-family: Arial;
    font-size: 12px;
    color: #0087cd;
    text-align: center;
}

#SsoAuth a {
    color: #0087cd;
    text-decoration: underline;
    cursor: pointer;
}

#SsoAuth a:hover {
    text-decoration: none;
}

/*SSO #158007 - E*/

/* This ensures the validation summary takes up one line of space even when blank */
div.validation-summary-errors:empty::after { content: "."; visibility: hidden;}

#Authenticating {
    font-family: Arial;
    font-size: 12px;
    text-align: left;
    color: #9fa0a4;
    margin-top: 16px;
}

/*Authorization Dialog END*/