/**********Custom fonts**********/
@font-face {
  font-family: "opensans";
  src: url("../../fonts/OpenSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "opensans";
  src: url("../../fonts/opensans-lightitalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "opensans";
  src: url("../../fonts/opensans-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "opensans";
  src: url("../../fonts/opensans-italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "opensans";
  src: url("../../fonts/opensans-semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "opensans";
  src: url("../../fonts/opensans-semibolditalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "opensans";
  src: url("../../fonts/opensans-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "opensans";
  src: url("../../fonts/opensans-bolditalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "opensans";
  src: url("../../fonts/opensans-extrabold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "opensans";
  src: url("../../fonts/opensans-extrabolditalic.woff") format("woff");
  font-weight: 800;
  font-style: italic;
}

/**********common style**********/
::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}
::-webkit-scrollbar-track {
  background: #e7e7e7;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #d1d3d5;
  border: 1px solid #d1d3d5;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}

::-webkit-input-placeholder {
  color: #cacaca !important;
}
::-moz-input-placeholder {
  color: #cacaca !important;
}

* {
  margin: 0;
  padding: 0;
}
html, body {
  margin: 0;
  height: 100%;
  font-family: "opensans";
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "opensans";
}
p, li, ul {
  margin: 0px;
  padding: 0px;
  font-family: "opensans";
  font-weight: 400;
  list-style: none;
}
a {
  color: inherit;
  font-family: "opensans";
  font-weight: 400;
}
a:hover, a:focus, a:active {
  outline: none !important;
}
.clear {
  clear: both;
}
.rmv-mrg {
  margin: 0 !important;
}
.rmv-pad {
  padding: 0 !important;
}
.rmv-left-pad{
  padding-left: 0 !important;
}
.rmv-right-pad{
  padding-right: 0 !important;
}
.rmv-bdr {
  border: none !important;
}
.inline {
  display: inline-block;
}
.form-control:focus {
  border-color: #66afe9 !important;
}
.form-control {
  -webkit-box-shadow: inset 0 0 0 transparent;
  -moz-box-shadow: inset 0 0 0 transparent;
  -ms-box-shadow: inset 0 0 0 transparent;
  box-shadow: inset 0 0 0 transparent;
}
.btn-blue {
  color: #fff;
  border: 1px solid #0e71d6;
  background-color: #0e71d6;
  outline: none !important;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.btn-blue:hover,
.btn-blue:focus,
.btn-blue:active {
  color: #fff;
  background-color: #3771b8;
  border-color: #3771b8;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.btn-normal {
  color: #2b2b2b;
  border: 1px solid #d3d3d3;
  background-color: #fff;
  outline: none !important;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.btn-normal:hover,
.btn-normal:focus,
.btn-normal:active {
  color: #2b2b2b;
  background-color: #f2f2f2;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

/***********custom styles starts**********/
body{
  position: relative;
  display: block;
  width: 100%;
  min-height: 100%;
  background: url(../../images/login_screen/default/bg.jpg) no-repeat center center;
  background-size: cover;
}
.login-outer{
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 100%
}
.outer-section{
  margin: 0 auto;
  width: 1300px;
}
.left-section{
  display: table;
  padding-right: 35px;
  height: 100%;
}
.left-inner-section{
  display: table-cell;
  vertical-align: middle;
}
.left-section .logo{
  display: block;
  float: right;
  width: 100%;
  margin-bottom: 70px;
}
.left-section .logo img{
  float: right;
}
.left-section h1{
  position: relative; 
  display: inline-block;
  float: right;
  /*margin-bottom: 10px;*/
  font-weight: 700;
  color: #fff;
  font-size: 48px;
}
/*h1:before{
  content: "";
  position: absolute;
  bottom: -12px;
  width: 100%;
  height: 5px;
  border-bottom: 1px dashed white;
  border-top: 1px dashed white;
}*/
.left-section .small-tag{
  font-weight: 300;
  font-size: 30px;
  color: #fff;
}
.left-section .tagline{
  float: right;
  margin: 10px 0 30px 0;
  font-weight: 300;
  font-size: 21px;
  color: #fff;
  line-height: 30px;
  text-align: right;
}
.left-section .tagline span{
  display: block;
  font-weight: 600;
}
.left-section .version-text{
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  text-align: right;
  margin-bottom: 20px;
}
.left-section .default-text{
  display: block;
}
.left-section .default-text a,
.left-section .default-text a:focus{
  color: #fff;
}
.social-div{
  float: right;
}
.left-section .social-div p{
  display: block;
  font-weight: 300;
  font-size: 14px;
  color: #fff;
  text-align: right;
}
.left-section .social-div a{
  margin-right: 10px;
  font-size: 30px;
  color: #fff;
}
.left-section .social-div a:last-child{
  margin-right: 0;
}
.left-section .social-div a:hover{
  opacity: 0.8;
  transition: all .3s;
}
.copy{
  float: right;
  margin-top: 20px;
  text-align: right;
  font-size: 12.5px;
  font-weight: 300;
  color: #fff;
}
.copy a{
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.right-section-outer{
  height: 100%;
}
.login-section{
  position: relative;
  padding: 0 40px;
  width: 430px;
  min-height: 100%;
  background-color: #fff;
}
.login-inner-section .inner-logo{
  display: none;
  text-align: center;
}
.login-section .welcome{
  margin: 20px 0 30px 0;
  font-weight: 300;
  font-size: 25px;
  color: #2b2b2b;
}
.login-section .welcome span{
  display: block;
  margin-top: 5px;
  font-size: 18px;
  color: #8f8e8e;
}
.login-section .form-group{
  position: relative;
  margin-bottom: 25px;
}
.login-section .login-lbl{
  position: absolute;
  left: 20px;
  top: -10px;
  padding: 0 10px;
  font-weight: 300;
  font-size: 15px;
  color: #8f8e8e;
  background: #fff;
}
.login-section .form-control{
  padding: 6px 30px;
  height: 45px;
  font-size: 15px;
  color: #444444;
  font-weight: 400;
  border-color: #d0d0d0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.login-section .copy{
  display: none;
  margin-bottom: 20px;
}
.error-info{
  position: absolute;
  top: 44px;
  right: 0;
  display: none;
  padding: 0 6px;
  height: 20px;
  font-size: 12px;
  color: #fff;
  line-height: 20px;
  background: #bb0e06;
}
.error-msg .error-info{
  display: block;
}
.form-control.error,
.error-msg .form-control{
  border-bottom: 1px solid #bb0e06 !important;
}
.required-outer {
  position: absolute;
  top: 14px;
  right: 13px;
  display: none;
}
.required-outer .fa{
  font-size: 16px;
  color: #bb0e06;
  font-family: 'FontAwesome';
  opacity: 1;
}
.required .required-outer{
  display: block;
}
.error-captcha .form-control{
  
}
.pass-word .show-pass-outer {
  position: absolute;
  right: 0;
  top: 1px;
  display: block;
  width: 43px;
  height: 43px;
  cursor: pointer;
}
.pass-word .form-control{
  padding-top: 9px;
}
.pass-word .show-pass-outer .fa{
  position: absolute;
  top: 13px;
  right: 13px;
  display: block;
  font-size: 16px;
  color: #8f8e8e;
  font-family: 'FontAwesome';
  opacity: 1;
}
.fa-eye {
  display: none;
}
.fa-eye-slash {
  display: none;
}
.pass-word .show-pass-outer .fa-eye-slash {
  display: none;
}
.pass-word .show-pass-outer.dont-show .fa-eye {
  display: none;
}
.show-pass-outer.dont-show .fa-eye-slash {
  display: block;
}
.pass-word .show-pass-outer:hover .fa{
  opacity: 0.8;
}
.required .show-pass-outer {
  display: none;
}
.pass-word {
  margin-bottom: 15px !important;
}
.login-section input[type=checkbox] {
  display:none;
}
.login-section input[type=checkbox] + label{
  content: "";
  display: inline-block;
  float: left;
  margin: 8px 6px 0 0;
  width: 15px;
  height: 15px;
  vertical-align: middle;
  cursor: pointer;
  background: url("../../images/login_screen/default/custom-checkbox.png") no-repeat 0px 0px;
}
.login-section input[type=checkbox]:checked + label{
  background-position: -15px 0;
}
.login-section .remember-me{
  margin-top: 6px;
  font-weight: 300;
  color: #8f8e8e;
  font-size: 15px;
  cursor: pointer;
}
.login-section .required-field-msg{
  display: block;
  float: right;
  margin-bottom: 15px;
  color: #bb0e06;
  letter-spacing: -.2px;
  font-size: 13px;
  opacity: 0;
}
.login-section .invalid-msg{
  display: block;
  float: left;
  margin-top: 8px;
  color: #bb0e06;
  letter-spacing: -.2px;
  font-size: 13px;
}
.login-section .btn-outer{
  margin-top: 20px;
}
.login-section .btn-outer .btn-blue{
  margin-right: 26px;
  min-width: 160px;
  height: 46px;
  font-size: 16px;
  font-weight: 400;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.login-section .btn-outer .btn-normal{
  min-width: 160px;
  height: 46px;
  font-size: 16px;
  font-weight: 300;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.login-section .account{
  margin: 30px 0;
  font-weight: 300;
  font-size: 18px;
  color: #2b2b2b;
}
.login-section .account a{
  font-weight: 700;
  font-size: 22px;
  color: #0e71d6;
  text-decoration: none;
}
.login-section .account a:hover{
  opacity: 0.9;
}
.login-section .account span{
  display: block;
  font-size: 22px;
  color: #8f8e8e;
}
.login-section .captcha-outer{
  margin-top: 20px;
  width: 100%;
  border: 1px solid #dddddd;
  border-bottom: none;
}
.captcha-outer .captcha-div{
  height: 60px;
  text-align: center;
}
.captcha-outer .form-froup{
  margin-bottom: 0;
}
.captcha-outer .form-control{
  padding-right: 68px;
  border-width: 1px 0 1px 0;
  border-color: #dddddd;
  box-shadow: none;
}
.captcha-outer .form-control:focus{
  border-color: #dddddd !important;
}
.captcha-outer .icon-wrap{
  position: relative;
}
.captcha-outer .wraper-sec{
  position: absolute;
  right: 0;
  top: 1px;
  display: block;
  width: 32px;
  height: 43px;
  line-height: 43px;
  text-align: center;
  cursor: pointer;
}
.captcha-outer .wraper-sec.refresh{
  right: 24px;
}
.captcha-outer .wraper-sec .fa{
  color: #9a9a9a;
  font-size: 14px;
}
.captcha-outer .wraper-sec:hover{
  opacity: 0.8;
}
.captcha-div input {
  display: none;
}
/*forgot password model styles starts here*/
.forgot-pw{
  position: relative;
  margin: 70px auto 0 auto;
  width: 330px;
  border: 1px solid #dcdcdc;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.forgot-pw .close{
  position: absolute;
  top: -22px;
  right: -22px;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  opacity: 1;
  text-shadow: 0 1px 0 #000;
  filter: alpha(opacity=20);
}
.forgot-pw .close:hover{
  color: #e4e4e4;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.forgot-pw .forgot-inner{
  padding: 15px 15px 0 15px;
}
.forgot-pw .fgt-pw{
  position: relative;
  margin: 20px 0 30px 0;
  font-weight: 600;
  font-size: 18px;
  color: #252525;
  text-align: center;
}
.forgot-pw .fgt-pw:before{
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  height: 1px;
  border-top: solid 1px #F1F1F1;
  z-index: 1;
}
.forgot-pw .fgt-pw span{
  position: relative;
  padding: 0 10px;
  background: #fff;
  z-index: 5;
}
.forgot-pw .circle-wrap{
  margin: 15px auto 25px auto;
  width: 74px;
  height: 74px;
  font-size: 30px;
  text-align: center;
  color: #fff;
  line-height: 70px;
  background-color: #0e71d6;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}
.forgot-pw .circle-wrap .fa{
  padding: 15px;
  margin-top: 6px;
  border: 1px solid #fff;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}
.forgot-pw .pw-msg{
  margin-bottom: 30px;
  color: #6f6f6f;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  text-align: center;
}
.forgot-pw .pw-msg span{
  display: block;
  color: #0e71d6;
}
.forgot-pw label{
  position: relative;
  width: 100%;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #6f6f6f;
}
.forgot-pw label:before{
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  height: 1px;
  border-top: solid 1px #F1F1F1;
  z-index: 1;
}
.forgot-pw label span{
  position: relative;
  padding: 0 10px;
  background: #fff;
  z-index: 5;
}
.forgot-pw .form-control{
  padding: 6px 12px;
  height: 40px;
  font-size: 13.8px;
  text-align: center;
  border-color: #d3d3d3;
  background-color: #fafafa;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.forgot-pw .btn-link{
  margin: 20px 0;
  min-width: 142px;
  height: 40px;
  font-weight: 600;
  color: #fff;
  font-size: 15px;
  outline: none !important;
  text-decoration: none;
  border: 1px solid #0e71d6;
  background-color: #0e71d6;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.forgot-pw .btn-link:hover{
  background-color: #1b7de1;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.forgot-pw .btn-normal{
  float: right;
  margin: 20px 0;
  min-width: 142px;
  height: 40px;
  font-weight: 600;
  color: #bfbfbf;
  font-size: 15px;
  outline: none !important;
  text-decoration: none;
  border: 1px solid #d1d1d1;
  background-color: #fff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.forgot-pw .btn-normal:hover{
  color: #6F6F6F;
  background-color: #f2f2f2;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.forgot-pw .btn[disabled]{
  opacity: 0.3;
}
.forgot-pw .btn-normal[disabled]:hover{
  color: #bfbfbf;
  background-color: #fff;
}
.forgot-pw .btn-link[disabled]:hover{
  color: #fff;
  background-color: #0e71d6;
}
.forgot-pw .right{
  position: relative;
}
.forgot-pw .right:after{
  content: "\f058";
  position: absolute;
  top: 35px;
  right: 7px;
  font-size: 16px;
  color: #00b539;
  font-family: 'FontAwesome';
}
.forgot-pw .wrong{
  position: relative;
}
.forgot-pw .wrong .form-control{
  border-bottom: 1px solid #bb0e06;
}
.forgot-pw .form-group[disabled]{
  opacity: 0.3;
  pointer-events: none;
}
.forgot-pw .wrong:after{
  content: "\f057";
  position: absolute;
  top: 35px;
  right: 7px;
  font-size: 16px;
  color: #d72547;
  font-family: 'FontAwesome';
}
.forgot-pw .password-mail{
  padding: 80px 15px;
}
.forgot-pw .check-mail{
  width: 100%;
  font-weight: 600;
  font-size: 15px;
  color: #444444;
  text-align: center;
}
.forgot-pw .check-mail span{
  display: block;
  color: #6f6f6f;
  font-size: 15px;
  line-height: 32px;
}
.form-group-facility-disabled.wrong:after,
.form-group-facility-disabled.right:after{
  content: "";
}

.form-group-facility-disabled.wrong .form-control{
  border-bottom: none;
}
/*forgot password model styles ends here*/




/***********media query starts**********/

@media screen and (max-width: 1400px){

}

@media screen and (max-width: 1300px){

}

@media screen and (max-width: 1205px){

}

@media (max-width: 1199px){
 
}

@media (max-width: 1150px){
}

@media screen and (max-width: 1100px){
  .left-section .tagline{
    font-size: 18px;
  }
  .left-section h1{
    font-size: 43px;
  }
  .left-section .small-tag{
    font-size: 25px;
  }
}
@media screen and (max-width: 991px){
  .left-section{
    display: none;
  }
  .login-section{
    margin: 0 auto;
  }
  .login-inner-section .inner-logo{
    display: block;
    margin-top: 20px;
    text-align: center;
  }
  .login-section .welcome{
    width: 100%;
    text-align: center;
  }
  .login-section .copy{
    display: block;
    width: 100%;
    color: #2b2b2b;
    text-align: center;
    line-height: 22px;
  }
  .login-section .copy a{
    color: #3771b8;
  }
  .login-section .account{
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
  .login-section .account span{
    font-size: 15px;
  }
  .login-section .account a{
    font-size: 16px;
  }
}
@media screen and (min-width: 768px){
  .login-inner-section{
  display: table-cell;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
}
@media screen and (max-width: 767px){
  .login-inner-section .inner-logo{
    margin-top: 0;
    padding-top: 20px
  }
.login-outer{
  min-height: 100%;
  background: url(../../images/login_screen/default/bg.jpg) no-repeat center center;
  background-size: cover;
}
  .login-section{
    width: 55%;
  }
  .login-section .btn-outer .btn-blue{
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    min-width: 0;
    font-size: 14px;
    height: 40px;
  }
  .login-section .btn-outer .btn-normal{
    width: 100%;
    min-width: 0;
    font-size: 14px;
    height: 40px;
  }
  .login-section .welcome{
    font-size: 22px;
  }
  .login-section .copy{
    margin-bottom: 0;
    margin-top: 0;
    padding: 20px 0;
  }
}
@media screen and (max-width: 700px){
  .login-section {
    width: 60%;
  }
}
@media screen and (max-width: 600px){
  .login-section {
    width: 70%;
  }
}
@media screen and (max-width: 500px){
  .login-section {
    width: 80%;
    padding: 0 20px;
  }
  .login-section .welcome{
    font-size: 20px;
  }
  .forgot-pw{
    margin-top: 25px;
  }
  .forgot-pw .close{
    top: 6px;
    right: 8px;
    color: #A9A9A9;
    text-shadow: 0 1px 0 #FFF;
    filter: alpha(opacity=20);
  }
  .forgot-pw .close:hover{
    color: #D0D0D0;
  }
}
@media screen and (max-width: 400px){
  .login-section {
    width: 90%;
  }
  .login-section .welcome{
    font-size: 18px;
  }
}
@media screen and (max-width: 370px){
  .login-section {
    width: 95%;
  }
  .login-section .welcome{
    font-size: 18px;
  }
}
@media screen and (max-width: 340px){
  .forgot-pw{
    margin-top: 10px;
    width: 300px;
  }
  .forgot-pw .btn-normal{
    min-width: 125px;
  }
  .forgot-pw .btn-link{
    min-width: 125px;
  }
  .forgot-pw .form-control{
    font-size: 12px;
  }
}
iframe[name=google_conversion_frame]{
    display: none;
}