/*//////////////////////////////////////////////////////////////////
[ FONT ]*/


/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
}

body {
	font-family: "Ambit", "Open Sans", "Sans Serif";
	font-size: 22px;
	background-color: #4728A4;
}

button, span, input {
	font-family: "Ambit", "Open Sans", "Sans Serif";
}

div.loginContainer {
	position: absolute;
	height: 100vh;
	width: 100vw;
	overflow:hidden;
}

/*---------------------------------------------*/
a {
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
  color: #57b846;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}
/*
p {
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}
*/
ul, li {
	margin: 0px;
	list-style-type: none;
}


/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #999999; }
input:-moz-placeholder { color: #999999; }
input::-moz-placeholder { color: #999999; }
input:-ms-input-placeholder { color: #999999; }

textarea::-webkit-input-placeholder { color: #999999; }
textarea:-moz-placeholder { color: #999999; }
textarea::-moz-placeholder { color: #999999; }
textarea:-ms-input-placeholder { color: #999999; }

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-size: 13px;
  line-height: 1.5;
  color: #999999;
}

.txt2 {
  font-size: 13px;
  line-height: 1.5;
  color: #666666;
}


/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100vw;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: #dcdcdc;
}

.wrap-login100 {
  width: 960px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 177px 130px 33px 95px;
}

/*------------------------------------------------------------------
[  ]*/
.login100-pic {
  width: 316px;
}

.login100-pic img {
  max-width: 100%;
}


/*------------------------------------------------------------------
[  ]*/
.login100-form {
  width: 290px;
}

.login100-form-title {
  font-size: 24px;
  color: #333333;
  line-height: 1.2;
  text-align: center;

  width: 100%;
  display: block;
  padding-bottom: 54px;
}


/*---------------------------------------------*/
.wrap-input100 {
  position: relative;
  width: 100%;
  z-index: 1;
  margin-bottom: 10px;
}

.input100 {
  font-size: 15px;
  line-height: 1.5;
  color: #666666;

  display: block;
  width: 100%;
  background: #e6e6e6;
  height: 50px;
  border-radius: 25px;
  padding: 0 30px 0 68px;
}


/*------------------------------------------------------------------
[ Focus ]*/
.focus-input100 {
  display: block;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 0px 0px;
  color: rgba(87,184,70, 0.8);
}

.input100:focus + .focus-input100 {
  -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
  animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 70px 25px;
    opacity: 0;
  }
}

@keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 70px 25px;
    opacity: 0;
  }
}

.symbol-input100 {
  font-size: 15px;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 35px;
  pointer-events: none;
  color: #666666;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus + .focus-input100 + .symbol-input100 {
  color: #57b846;
  padding-left: 28px;
}

/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
}

.login100-form-btn {
  font-family: Montserrat-Bold;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;

  width: 100%;
  height: 50px;
  border-radius: 25px;
  background: #57b846;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn:hover {
  background: #333333;
}

td {
	color:#fff
}

.SignInCell {
	margin-left: auto;
	margin-right: auto;
	width: 28vw;
}

.actionButton {
	margin-left: auto;
	margin-right: auto;
}

.SignInButton, .btnLoginOT {
	cursor: pointer;
}

.tblLoginControl {
	margin-top:20px;
	margin-left: auto;
	margin-right: auto;
	width:90%;
}

.spnLogonLabel {
	color:#63568F; 
	font-size:1.2vw;
	margin-left: auto;
	margin-right: auto;
}

.tblLoginControl td {
	padding-left:20px;
	padding-bottom:25px;
	font-size:20px;
}

.tblLoginControl td:nth-child(1) {
	padding-left:unset;
}

.txtLogin {
	padding: 10px; 
	width:100%;
	max-width:26vw;
	height:40px;
	border-radius:4px;
}

.btnLogin {
	color:#fff; 
	background-color:#63568F; 
	font-size:24px; 
	font-weight: 500;
	border-radius:100px; 
	width:100%; 
	height:46px; 
	cursor:pointer;
}

.btnSend {
	color:#fff; 
	background-color:#63568F; 
	font-size:24px; 
	font-weight: 500;
	border-radius:100px; 
	width:100%; 
	height:46px; 
	cursor:pointer;
}

.lnkForgot {
	font-family: "Ambit", "Open Sans", "Sans Serif";
	font-size:20px; 
	color:#63568F; 
	text-decoration:none;
}

.divFailure {
	color:#63568F;
	width:26vw; 
	margin-top:20px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	font-size:14px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	div.imgLogo1 {
		background-image: url("../ui/images/login/flo10_logo.svg");
		background-size: contain;
		background-repeat: no-repeat;
		top: 100px; 
		float: left; 
		left: 100px; 
		width: 282px;
		height: 89px;
		position: absolute;
	}

	div.imgLogo2  {

	}

	div.imgHero1 {
		background-image: url("../ui/images/login/hero-imagewhiteFINAL.png");
		background-size: contain;
		background-repeat: no-repeat;
		width: 100vw;
		height: 100vh;
		position: absolute;
		left: 35vw;
		top: 5vh;
		overflow: hidden;
	}

	div.loginControl {
		/*position: relative; */
		/*top: 250px; 
		left: 100px;*/
		margin: auto;
		width: 50%;
	}
	
	.SignInButton {
		width: 300px;
		height: 48px;
		background-image: url("../ui/images/login/microsoft.svg");
		background-size: contain;
		background-repeat: no-repeat;
	}
	
	.btnLoginOT {
		color:#fff; 
		background-color:#EB6547; 
		font-size:20px; 
		border-radius:60px; 
		width:150px; 
		height:60px; 
		font-family: Arial;
		text-align:center;
		padding-top:12%;
		padding-bottom:12%;
	}
}

/*------------------------------------------------------------------
[ Responsive ]*/
@media {
	div.imgLogo1 {
		background-image: url("../ui/images/login/flo10_logo.svg");
		background-size: contain;
		background-repeat: no-repeat;
		top: 8vh; 
		float: left; 
		left: 7vw; 
		width: 17vw;
		height: 32px;
		position: absolute;
	}

	div.imgLogo2  {

	}

	div.imgHero1 {
		background-image: url("../ui/images/login/hero-imagewhiteFINAL.png");
		background-size: contain;
		background-repeat: no-repeat;
		width: 40vw;
		height: 10vh;
		position: absolute;
		left: 5vw;
		top: 70vh;
		overflow: hidden;
	}
	
	div.loginControlContainer {
		display: flex;
		align-items: center;
		height: 100vh;
	}

	div.loginControl {
		background-image: url("../ui/images/login/kp_logo.svg");
		background-repeat: no-repeat;
		background-position-x: center;
		background-position-y: 3vh;
		background-size: 22vw;
		display: flex;
		justify-content: center;
		position: relative;
		left: 62vw;
		width: 28vw;
		background-color: #EFEFF1;
		border-radius:24px;
	}
	
	div.SignInTable:after {
		content: " ";
		display: block;
		clear: both;
		padding: 0 0 20%;
	}

	div.SignInTable {
		display: table-cell;
		position:relative;
		top:90px;
	}
	
	.SignInButton {
		width: 23vw;
		height: 10vh;
		background-image: url("../ui/images/login/microsoft.svg");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		margin:auto;
	}
	
	.btnLoginOT {
		color:#fff; 
		background-color:#EB6547; 
		font-size:20px; 
		border-radius:60px; 
		width:150px; 
		height:60px; 
		font-family: Arial;
		text-align:center;
		padding-top:12%;
		padding-bottom:12%;
	}
}
@media (max-width: 1744px) {
	div.loginControl {
		/*height: 54vh;*/
		width: 24vw;
		background-size: 20vw;
	}
	
	div.SignInTable {
		top: 6vh;
	}
	
	.SignInCell {
		width:24vw;
	}
	
	.tblLoginControl {

	}
	
	.spnLogonLabel {
		font-size:1.3vw;
	}
	
	.tblLoginControl td {
		padding-bottom:20px;
	}
	
	.txtLogin {
		width: 100%;
		max-width:100%;
		height: 5vh;
		border-radius:4px;
	}
	
	.lnkForgot {
		font-size:1vw;
	}
	
	.divFailure {
		font-size: 1vw;
		width: 18vw;
		margin-top:unset;
	}
	
	.SignInButton {
		width:18vw;
	}
}
@media (max-width: 600px) {
	#tblImage {
		display:none;
	}
	
	div.imgHero1 {
		background-image: url("../ui/images/login/hero-imagewhiteFINAL.png");
		background-size: contain;
		background-repeat: no-repeat;
		width: 100vw;
		height: 100vh;
		position: absolute;
		left: 0vw;
		top: 20vh;
		overflow: hidden;
	}
  
	div.imgLogo1 {
		background-image: url("../ui/images/login/flo10_logo.svg");
		background-size: contain;
		background-repeat: no-repeat;
		top: 100px; 
		float: left; 
		left: 5vw; 
		width: 90%;
		height: 16vh;
		position: absolute;
	}
	
	div.loginControl {
		/*position: absolute; */
		/*top: 30vh; 
		left: 50px;*/
	}
	
	div.SignInTable {
		display: table-cell;
		vertical-align: middle;
	}
	
	.SignInCell {
		margin-left: auto;
		margin-right: auto;
		width: 95vw;
	}
	
	.tblLoginControl {
		margin-top:30px;
		margin-left: auto;
		margin-right: auto;
		width:80vw;
	}
	
	.spnLogonLabel {
		font-size: 5.5vw;
		width: 800px;
	}
	
	.tblLoginControl td {
		font-size: 5.5vw;
		width:80vw;
		display:flex;
		justify-content:center;
	}
	
	.txtLogin {
		font-size: 5vw;
		width: 80vw;
		height: 5vh;
		border-radius:4px;
	}
	
	.actionButton {
		width:30vw;
		margin-left: auto;
		margin-right: auto;
	}
	
	.btnLogin {
		font-size:5.5vw; 
		width:30vw; 
		height:5vh;
	}
	
	.btnSend {
		font-size:5.5vw; 
		width:30vw; 
		height:5vh;
	}
	
	.lnkForgot {
		font-size: 5.5vw;
	}
	
	.divFailure {
		font-size: 5.5vw;
		width: 100%;
	}
	
	.SignInButton {
		width: 90vw;
		height: 20vh;
		background-image: url("../ui/images/login/microsoft.svg");
		background-size: contain;
		background-repeat: no-repeat;
	}
	
	.btnLoginOT {
		color:#fff; 
		background-color:#EB6547; 
		font-size:5vh; 
		border-radius:60px; 
		width: 85vw;
		height: 10vh;
		font-family: Arial;
		text-align:center;
		padding-top:5%;
		padding-bottom:5%;
	}
}
@media all and (min-device-width: 280px) and (max-device-width: 580px) and (orientation:portrait)
, all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait)
, all and (device-width: 820px) and (device-height: 1180px) and (orientation:portrait)
, (max-device-width: 1200px) and (orientation:portrait)
{
	#tblImage {
		display:none;
	}
	
	div.imgHero1 {
		background-image: url("../ui/images/login/hero-imagewhiteFINAL.png");
		background-size: contain;
		background-repeat: no-repeat;
		width: 100vw;
		height: 100vh;
		position: absolute;
		left: 0vw;
		top: 20vh;
		overflow: hidden;
	}
  
	div.imgLogo1 {
		background-image: url("../ui/images/login/flo10_logo.svg");
		background-size: contain;
		background-repeat: no-repeat;
		top: 100px; 
		float: left; 
		left: 5vw; 
		width: 90%;
		height: 16vh;
		position: absolute;
	}
	
	div.loginControl {
		/*position: absolute;*/
		width:94vw;
		left:3vw;
		/*top: 20vh;*/
		/*height:54vh;*/
		background-size: 80vw;
	}
	
	div.SignInTable {
		display: table-cell;
		vertical-align: middle;
		top: 150px;
	}
	
	.SignInCell {
		margin-left: auto;
		margin-right: auto;
		width: 95vw;
	}
	
	.tblLoginControl {
		margin-top:60px;
		margin-left: auto;
		margin-right: auto;
		width:80vw;
	}
	
	.spnLogonLabel {
		font-size: 5.5vw;
		width: 800px;
	}
	
	.tblLoginControl td {
		font-size: 5.5vw;
		width:80vw;
		display:flex;
		justify-content:center;
	}
	
	.txtLogin {
		font-size: 5vw;
		width: 80vw;
		height: 5vh;
		border-radius:4px;
		max-width: 80vw;
	}
	
	.actionButton {
		width:48vw;
		margin-left: auto;
		margin-right: auto;
	}
	
	.btnLogin {
		font-size:5.5vw; 
		width:48vw; 
		height:6vh;
	}
	
	.btnSend {
		font-size:5.5vw; 
		width:48vw; 
		height:6vh;
	}
	
	.lnkForgot {
		font-size: 5.5vw;
	}
	
	.divFailure {
		font-size: 4vw;
		width: 95%;
	}
	
	.SignInButton {
		width: 90vw;
		height: 10vh;
		background-image: url("../ui/images/login/microsoft.svg");
		background-size: contain;
		background-repeat: no-repeat;
	}
	
	.btnLoginOT {
		color:#fff; 
		background-color:#EB6547; 
		font-size:5vh; 
		border-radius:60px; 
		width: 85vw;
		height: 10vh;
		font-family: Arial;
		text-align:center;
		padding-top:5%;
		padding-bottom:5%;
	}
}

@media (max-device-width: 1400px) and (orientation: landscape) 
{
  .wrap-login100 {
    padding: 177px 90px 33px 85px;
  }

  .login100-pic {
    width: 35%;
  }

  .login100-form {
    width: 50%;
  }
  
  div.loginControl {
	  width:38vw;
	  left:54vw;
	  /*height:46vh;
	  top:26vh;*/
  }
  
  div.SignInTable {
	  /*left:2vw;*/
	  width:28vw;
  }
  
  .SignInCell {
	  /*width:34vw;*/
  }
  
  .divFailure {
	  width:34vw;
	  font-size:1.5vw;
  }
}

@media (max-device-width: 1200px) and (orientation:landscape)
{
  .wrap-login100 {
    padding: 177px 90px 33px 85px;
  }

  .login100-pic {
    width: 35%;
  }

  .login100-form {
    width: 50%;
  }
  
  div.loginControl {
	  width:43vw;
	  /*left:54vw;*/
	  /*height:51vh;
	  top:23vh;*/
  }
  
  div.SignInTable {
	  /*left:2vw;*/
	  width:34vw;
  }
  
  .SignInCell {
	  /*width:39vw;*/
  }
  
  .divFailure {
	  width:39vw;
	  font-size:1.5vw;
  }
}

@media (max-device-width: 1024px) and (orientation:landscape)
, all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape)
{
  .wrap-login100 {
    padding: 177px 90px 33px 85px;
  }

  .login100-pic {
    width: 35%;
  }

  .login100-form {
    width: 50%;
  }
  
  div.loginControl {
	  width:51vw;
	  left:47vw;
	  background-size:40vw;
	  /*height:85vh;
	  top:8vh;*/
  }
  
  div.SignInTable {
	  /*left:2vw;*/
	  width:46vw;
	  top:70px;
  }
    
  .SignInCell {
	  width:45vw;
  }
  
  .SignInButton {
	  width:28vw;
  }
  
  .divFailure {
	  width:45vw;
	  font-size:1.5vw;
  }
}
}

@media (max-device-width: 992px) and (orientation:landscape)
{
  .wrap-login100 {
    padding: 177px 90px 33px 85px;
  }

  .login100-pic {
    width: 35%;
  }

  .login100-form {
    width: 50%;
  }
  
  div.loginControl {
	  width:51vw;
	  left:46vw;
	  /*height:84vh;
	  top:9vh;*/
  }
  
  div.SignInTable {
	  left:2vw;
	  width:47vw;
  }
  
  .SignInCell {
	  width:46vw;
  }
  
  .divFailure {
	  width:46vw;
	  font-size:1.8vw;
  }
}

@media (max-width: 768px) {
  .wrap-login100 {
    padding: 100px 80px 33px 80px;
  }

  .login100-pic {
    display: none;
  }

  .login100-form {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .wrap-login100 {
    padding: 100px 15px 33px 15px;
  }
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: white;
  border: 1px solid #c80000;
  border-radius: 13px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
  pointer-events: none;

  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 13px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}