/*@font-face {
  font-family: Siemens-sans;
  font-style:normal;
  font-weight: 300;
  src: url("../fonts/OpenSans-Light.ttf") format("truetype");
}
*/
input {
    padding:3px;
    -webkit-border-radius:4px;
      border-style:solid;
      border-radius: 4px;
      border: solid 1px #969696;
      box-shadow : 0 1px 2px 0 rgba(0, 0, 0, 0.3);
      font-size:9pt;
}

meter {
  /* Reset the default appearance */
 /* -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;*/

  margin: 0 auto 1em;
  width: 100%;
  height: 0.5em;

  /* Applicable only to Firefox */
  background: none;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

meter::-webkit-meter-bar {
  background: none;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border: 0px solid transparent;
   
}

/* Webkit based browsers */
meter[value="0"]::-webkit-meter-optimum-value { background: red; border-radius: 10px;}
meter[value="1"]::-webkit-meter-optimum-value { background: red; border-radius: 10px;}
meter[value="2"]::-webkit-meter-optimum-value { background: orange; border-radius: 10px;}
meter[value="3"]::-webkit-meter-optimum-value { background: yellow; border-radius: 10px;}
meter[value="4"]::-webkit-meter-optimum-value { background: green; border-radius: 10px;}

/* Gecko based browsers */
meter[value="0"]::-moz-meter-bar { background: red; }
meter[value="1"]::-moz-meter-bar { background: red; }
meter[value="2"]::-moz-meter-bar { background: orange; }
meter[value="3"]::-moz-meter-bar { background: yellow; }
meter[value="4"]::-moz-meter-bar { background: green; }

.change-password-content * {
     font-family: Open Sans;
     max-width: 272px;
}

/*
.container {
    height:472px;
    width:320px;
    margin-top: 5rem;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: auto;

}
*/

.change-pass-swipe-content {
    width:0px;
    overflow:hidden;
    position:absolute;  
    /*background-color:#F0F0F0;*/
    right:0;
    /*top:0px;
    height: 284;*/
}


.change-pass-swipe-content.showed {
    width:100%;
    height:472;
}

.change-password-content {
    padding: 0 8px 0 8px;
    position: relative;
    left: 0;
    width:272px;
    height: 270px;
} 

.change-password-content .title {
    font-size: 12.5pt;
    font-weight:300;
    color : #006487;
    padding-bottom:20px;
    line-height: 0.82em;
    display: inline-block
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    height:18px;
}

.change-password-content .change-password-form{
    margin:0;
    padding:0;
    display: grid;
}

.change-password-content .change-pass-credential-lbl {
    display:block;
    font-size: 11.0pt;
    font-weight:400;
    color: #5A5A5A;
    padding-bottom:10px;
    line-height: 0.82em;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}

.change-password-content .change-pass-credential-lbl.empty:after {
  content: "\f057";
  font-family: FontAwesome;
  color: red;
  margin-left: 15px;
  font-size: 12.0pt;
}

.change-password-content .change-pass-credential-span {
    display:block;
    font-size: 11.0pt;
    font-weight:400;
    color: #5A5A5A;
    margin-bottom:20px;
    line-height: 0.82em;
    display: inline-block
}

.change-password-content .change-pass-credential-input {
    width: 100%;
    height: 32px;
    font-size: 9.0pt;
    color: #1E1E1E;
    margin-bottom:8px;
    padding-left:8px;
}

.change-password-content .change-pass-credential-input.empty {
  background: url(../images/close-octagon.png);
    background-size: 18px;
    background-repeat: no-repeat;
    position: relative;
    background-color: white;
    background-position-y: center;
    background-position-x: 255px;
}

.change-password-content .loginButton {
  height:32px;
  padding:0;
  width:88px;
  border: 0;
  border-radius: 3px;
  margin-bottom:5px;
  font-size:9pt;
  cursor:pointer;
  position: absolute;
  bottom:0px;
  font-weight: 400;
  box-shadow: 0px 1px 2px 0px #BEBEBE;
}

.change-password-content .loginButton.signInBtn {
    
    background:#327094;
  color: white;
  right:8px;
  /*width:100%;*/
}

.change-password-content .disclaimerButton:hover {
    background:#AFD7E1;
    color:#1E1E1E;
}

.change-password-content .loginButton.signInBtn:hover {
    background:#AFD7E1;
    color:#1E1E1E;
}

.change-password-content .loginButton.signInBtn.disabled {
      background-color: transparent;
    color: #AAAAAA;
    cursor: auto;
    border-style: solid;
    border-width: 1px;
    border-color: #AAAAAA;
}

.change-password-content .loginButton.signInBtn p {
    padding:10px;
}

.change-password-content .loginButton.cancelBtn {
  display:none;
  right: 104px;
  background-color: rgb(240, 240, 240);
  background-image: none;
  border-style: solid;
  border-width: 1px;
  border-color: #AAAAAA;
  line-height: 21px;
  color: #333333;
}

.change-password-content .error-content {
    width: 272px;
    height: 55px;
    position: absolute;
    bottom: 40px;
    overflow: hidden;
}

.change-password-content .error-message {
    color: red;
    font-size: 10pt;
    font-family: Open Sans;
    text-overflow: ellipsis;
    overflow: hidden;
    display:none;
    padding:0 5px 0 5px;
}

.change-password-content .change-password-form .change-pwd {
    font-size:9.0pt;
    color:#006487;
    float:right;
}

.change-password-content .change-password-form .password-strength-meter {
    float: left;
    margin: 0;
    height: 15px;
    width: 40%;
    position: relative;
    top: -15px;
}

.change-password-content .change-password-form .password-strength-text {
    width: 50%;
    float: right;
    font-size: 12px;
    color: #5A5A5A;
    height: 15px;
    margin: 0;
    text-align: center;
    position: relative;
    top: -15px;
}

.change-password-content .message-div {
    height:361px;
    width:272px;
    display:none;
}

.change-password-content .message-div  .system-change-pass-message {
    font-size: 12.0pt;
    color: #5A5A5A;
    /*margin-top:20px;*/
}
.change-password-content .message-div .ackButton  {
    position: absolute;
    bottom: 0px;
    width:272px;
    margin-bottom:5px;
    background:#327094;
    height:32px;
    font-size:9pt;
    color:white;
    cursor: pointer;
}
