body, html {
	font-family: Verdana, sans-serif;
	
	margin: 0px;
    padding: 0px; 
    background-color:#ffffff;
    height:100%;
}


.red{
    color: red;
    text-align: left;
    margin-top: 5px;
}

.hight-auto #outside-layout{
    height: 100%;
}

#title {
	font-size: 18px;
	color: #000000;
	font-weight: bold;
}


a {
	color: #0000FF;
	text-decoration: none;
}


a:link,a:visited {
	color: #0000FF;
	text-decoration: none;
}


a:HOVER {
	text-decoration: underline;	
}


.error {
	color: #ff0000;
	font-weight: bold;
}

.newheader{
	background-color: #4B4C6E;
}

.headerlogo {
	text-align: left;  
    font-size: 15pt;
    padding: 10px;
}

.logo-image{
	width: 150px
}

.toprow {
    background-color: #4B4C6E;
    top: 0;
    height: 50px;
}

.toptext {
	float:none;
	width: 1200px;
	text-align: right;  
    font-size: 15pt;
    padding-top: 10px;
}


.toptext a, .toptext a:link, .toptext a:visited {
	color: #ffffff;
	text-decoration: none;
}
.toptext a:HOVER {
	text-decoration: underline;	
}

.main {
	display: flex;
    margin: 0 auto;
	width: 1200px;
	
}



.appname {
	font-size: 15pt;
	color: orange;
	float: none;
}

.apphostname {
	font-size: 12pt;
	color: grey;
	float: none;
}

.appcomment {
	font-size: 12pt;
	color: green;
	float: none;
	
}

.projectname {
	font-size: 14pt;
	font-weight: bold;
}


.small {
	font-size: 8pt;
}
	
.h1_login {
	background-color: #46c54a;
	font-size: 14pt;
}

.h1_register {
	background-color: #f7c44a;
	font-size: 14pt;
}	
	
	
	
	
.checkstable {
	font-size: 9pt;
	vertical-align: middle;
}
	

/* Login Screen Css */
/********** Google Font **********/
@import url('line-awesome.min.css');
@import url('https://fonts.googleapis.com/css?family=Play:400,700&display=swap');

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Regular.eot');
    src: url('../fonts/MyriadPro-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/MyriadPro-Regular.woff2') format('woff2'),
        url('../fonts/MyriadPro-Regular.woff') format('woff'),
        url('../fonts/MyriadPro-Regular.ttf') format('truetype'),
        url('../fonts/MyriadPro-Regular.svg#MyriadPro-Cond') format('svg');
    font-weight: normal;
    font-style: normal;
}



.form-control {
    background-color: transparent;
    border-color: white;
    font-size: 14px;
    height: 40px;
}
.form-control:focus{
    background-color: transparent;
    box-shadow: none;
    border-color: #fff;
}
input::placeholder{
  color: #585756 !important;
}
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
    opacity: 0;
}
/********** Custom Css **********/
body {
    background: #fff;
    margin: 0px;
    padding: 0px;
    color: #767676;
    font-size: 14px;
    line-height: 26px;
    word-wrap: break-word;
    font-family: 'Myriad Pro';
}
a {
    text-decoration: none;
    transition: all 0.6s;
}
a:hover, a:focus {
    text-decoration: none;
    outline: none; 
    box-shadow: none !important;
    color: inherit;
}
.register-form {
    padding: 28px 0 70px;
    background-position: center;
    background-size: cover;
}
.login img {
    width: 60%;
    margin-bottom: 26px;
}
.login {
    background-color: #c8dff0;
    border: 3px solid #fff;
    border-radius: 11px;
    padding: 33px 45px;
}
.login .form-group input {
    background-color: #f6f5f5;
    border-radius: 33px;
    border: 3px solid #fff;
    font-size: 24px;
    font-style: italic;
    font-family: 'Myriad Pro';
    color: #585756;
    text-shadow: 0 0;
    height: 50px;
    padding-left: 56px;

}
span.icon-set {
    position: absolute;
    font-size: 23px;
    z-index: 1;
    left: 0;
    background-color: #4692cc;
    color: #FFF;
    padding: 5px 11px;
    /*padding: 9px 11px;*/
    border-radius: 33px 0 0 33px;
    margin-left: 74px;
    margin-top: 3px;
}
.login button {
    background-color: transparent;
    border: 2px solid #4693cc;
    border-radius: 13px;
    color: #4693cc;
    text-shadow: 0 0 0;
    font-size: 24px;
    padding: 3px 16px;
    transition: all 0.4s ease-in-out;
}
.login button:hover {
    background-color: #4693cc;
    border-color: #4693cc;
}
/* Hide the browser's default checkbox */
.remember input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  border: 2px solid #4693cc;
}

/* When the checkbox is checked, add a blue background */
.remember input:checked ~ .checkmark {
    border: 2px solid #4693cc;
    background-color: transparent;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.remember input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.remember .checkmark:after {
    left: 6px;
    top: 2px;
    width: 8px;
    height: 13px;
    border: solid #4693cc;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.remember{
 display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
    font-size: 16px;
    font-family: 'Play', sans-serif;
    color: #4693cc;
        text-shadow: 0 0 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.form-group-line ul li a{
    font-size: 16px;
    color: #4693cc;
    text-shadow: 0 0 0;
    font-family: 'Play', sans-serif;
}
.strong-match-text{
    font-size: 24px;
    color: #1f5680;
    text-shadow: 0 0;
    font-family: 'Play', sans-serif;
}

.strong-show ul li, .strong-match ul li {
    font-size: 24px;
    color: #1f5680;
    text-shadow: 0 0;
    width: 44%;
    font-family: 'Play', sans-serif;
}
.strong-show ul li:last-child {
    position: relative;
}
.strong-show ul li:last-child:after {
    position: absolute;
    content: '';
    width: 107px;
    background-color: #0ad314;
    left: 0;
    right: 0;
    margin: 0px auto;
    top: -7px;
    border: 3px solid #fff;
    padding: 2px;
}
@media (max-width: 320px){
    span.icon-set {
        margin-left: 37px;
    }
    .login{
        padding: 20px 16px;
    }
    .form-group-line ul li a, .remember{
        font-size: 15px;
    }
    span.logo img {
        width: 55%;
        margin: 0 auto;
    }
}

.mt-25-custom{
    margin-top: 25px;
}
.line-chart{
    width:800px;
    margin-top: 50px;
    margin-bottom: 50px;
}
#canvas-line-chart{
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
.main-content-wrap{
    flex-wrap: wrap;
}


.hwt-highlights,
textarea#web_result {
    line-height: 18px;
}

.flash-message ul{margin-bottom: 0px}
.flash-message ul li{text-align: left;}

.pwdopsdiv span{
    padding-left: 10%;
}

#loginRecaptcha iframe{
    margin-left:5%;
}
#registerRecaptcha iframe{
    margin-left:5%;
}





























