



/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/poppins/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/poppins/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/poppins/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: Poppins-SemiBold;
  src: url('../fonts/poppins/Poppins-SemiBold.ttf'); 
}




/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: Poppins-Regular, sans-serif;
}

/*---------------------------------------------*/
a {
	font-family: Poppins-Regular;
	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: #333333;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: Poppins-Regular;
	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: #adadad;}
input:-moz-placeholder { color: #adadad;}
input::-moz-placeholder { color: #adadad;}
input:-ms-input-placeholder { color: #adadad;}

textarea::-webkit-input-placeholder { color: #adadad;}
textarea:-moz-placeholder { color: #adadad;}
textarea::-moz-placeholder { color: #adadad;}
textarea:-ms-input-placeholder { color: #adadad;}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-family: Poppins-Regular;
  font-size: 15px;
  color: #999999;
  line-height: 1.5;
}

.txt2 {
  font-family: Poppins-Regular;
  font-size: 15px;
  color: #57b846;
  line-height: 1.5;
}

/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;  
  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: #fff;  
}

.wrap-login100 {
  width: 390px;
  background: #fff;
}


/*------------------------------------------------------------------
[ Form ]*/

.login100-form {
  width: 100%;
}

.login100-form-title {
  display: block;
  font-family: Poppins-Bold;
  font-size: 39px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
}

.login100-form-avatar {
  display: block;  
  height: 120px;  
  overflow: hidden;
  margin: 0 auto;
}

.login100-form-avatar img {
  width: 100%;
}

/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid #d9d9d9;
}

.input100 {
  font-family: Poppins-SemiBold;
  font-size: 18px;
  color: #555555;
  line-height: 1.2;

  display: block;
  width: 100%;
  height: 52px;
  background: transparent;
  padding: 0 5px;
}

/*---------------------------------------------*/ 
.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  background: #57b846;
}

.focus-input100::after {
  font-family: Poppins-Medium;
  font-size: 18px;
  color: #999999;
  line-height: 1.2;

  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 15px;
  left: 0px;
  padding-left: 5px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus + .focus-input100::after {
  top: -20px;
  font-size: 15px;
}

.input100:focus + .focus-input100::before {
  width: 100%;
}

/* Focus via wrapper – works when LastPass injects element between input and span */
.wrap-input100:focus-within .focus-input100::after {
  top: -20px;
  font-size: 15px;
}

.wrap-input100:focus-within .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::after {
  top: -20px;
  font-size: 15px;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}

/* Has-value via wrapper – works when LastPass injects element between input and span */
.wrap-input100.has-val .focus-input100::after {
  top: -20px;
  font-size: 15px;
}

.wrap-input100.has-val .focus-input100::before {
  width: 100%;
}


/*------------------------------------------------------------------
[ 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;
}

.login100-form-btn {
  font-family: Poppins-Medium;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
  background-color: #57b846;
  border-radius: 25px;

  box-shadow: 0 10px 30px 0px rgba(87, 184, 70, 0.5);
  -moz-box-shadow: 0 10px 30px 0px rgba(87, 184, 70, 0.5);
  -webkit-box-shadow: 0 10px 30px 0px rgba(87, 184, 70, 0.5);
  -o-box-shadow: 0 10px 30px 0px rgba(87, 184, 70, 0.5);
  -ms-box-shadow: 0 10px 30px 0px rgba(87, 184, 70, 0.5);

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn:disabled {
  background-color: #b5b5b5;
  box-shadow: none;
  color: #eee;
  cursor: not-allowed;
  pointer-events: none;
  text-transform: none;

  font-family: Poppins-Medium;
  font-size: 16px;
  font-weight: inherit;
  text-transform: uppercase;
}

.login100-form-btn:disabled:hover {
  background-color: #b5b5b5;
  box-shadow: none;
}

.login100-form-btn:hover  {
  background-color: #333333;
  box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
  -webkit-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
  -o-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
  -ms-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
}

/*------------------------------------------------------------------
[ Company row with New button ]*/
.company-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.company-row .company-input-wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

/* Select #company - same style as other inputs (border, outline, background) */
.company-row select.input100,
#company.input100 {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background-color: transparent;
  box-shadow: none;
  /* Subtle dropdown arrow - same gray as placeholder (#999999) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 5px center;
  padding-right: 24px;
}

.login100-form-btn-new {
  font-family: Poppins-Medium;
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
  align-self: center;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  height: 35px;
  min-width: 70px;
  background-color: #57b846;
  border-radius: 25px;

  box-shadow: 0 4px 15px 0px rgba(87, 184, 70, 0.4);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn-new:hover {
  background-color: #333333;
  box-shadow: 0 4px 15px 0px rgba(51, 51, 51, 0.4);
}

.company-empty-hint {
  font-family: Poppins-Regular, sans-serif;
  font-size: 13px;
  color: #c80000;
  margin-top: 8px;
  line-height: 1.4;
}


/*------------------------------------------------------------------
[ TimeMaker initialization wizard dialog ]*/
.tm-wizard-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.tm-wizard-overlay[aria-hidden="false"] {
  display: flex;
}

.tm-wizard-dialog {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.15);
  font-family: Poppins-Regular, sans-serif;
}

/* Shared wizard header: green bar (logon style) */
.tm-wizard-dialog-header {
  padding: 14px 20px;
  border-bottom: none;
  background: #57b846;
  border-radius: 10px 10px 0 0;
}

.tm-wizard-dialog-header .tm-wizard-title {
  color: #fff;
  font-size: 18px;
  text-align: left;
}

.tm-wizard-title {
  font-family: Poppins-Bold, sans-serif;
  font-size: 18px;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.tm-wizard-body {
  padding: 24px 24px 20px;
  background: #fff;
}

.tm-wizard-step-title {
  font-family: Poppins-Bold, sans-serif;
  font-size: 18px;
  color: #333333;
  margin: 0 0 4px 0;
}

.tm-wizard-step-subtitle {
  font-size: 15px;
  color: #666666;
  margin: 0 0 12px 0;
}

.tm-wizard-instruction {
  font-size: 14px;
  color: #666666;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.tm-wizard-input-wrap {
  position: relative;
  border-bottom: 2px solid #d9d9d9;
  margin-bottom: 20px;
}

.tm-wizard-input {
  font-family: Poppins-SemiBold, sans-serif;
  font-size: 18px;
  color: #555555;
  line-height: 1.2;
  display: block;
  width: 100%;
  height: 52px;
  background: transparent;
  padding: 0 5px;
  border: none;
  outline: none;
  box-sizing: border-box;
}

.tm-wizard-input:focus {
  outline: none;
}

.tm-wizard-input-wrap:focus-within {
  border-bottom-color: #57b846;
}

.tm-wizard-list-label {
  font-size: 14px;
  color: #666666;
  margin: 0 0 8px 0;
}

.tm-wizard-list {
  min-height: 140px;
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
  border: 2px solid #d9d9d9;
  border-radius: 4px;
  margin-bottom: 16px;
  padding: 4px 0;
}

.tm-wizard-list:focus-within {
  border-color: #57b846;
}

.tm-wizard-list-loading {
  display: block;
  padding: 16px 14px;
  font-size: 14px;
  color: #999999;
}

.tm-wizard-list-item {
  padding: 10px 14px;
  font-size: 16px;
  font-family: Poppins-Regular, sans-serif;
  color: #555555;
  cursor: pointer;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  transition: all 0.4s;
}

.tm-wizard-list-item:hover,
.tm-wizard-list-item.tm-wizard-list-item-selected {
  background: rgba(87, 184, 70, 0.15);
  color: #333333;
}

.tm-wizard-list-item.tm-wizard-list-item-selected {
  color: #57b846;
  font-family: Poppins-SemiBold, sans-serif;
}

.tm-wizard-footer-text {
  font-size: 13px;
  color: #999999;
  margin: 0 0 20px 0;
}

/* Shared wizard footer: logon style */
.tm-wizard-dialog-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid #e8e8e8;
  background: #fff;
}

.tm-wizard-dialog-footer-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}


/*------------------------------------------------------------------
[ TimeMaker wizard step 2: Logon to server ]*/
.tm-wizard-logon-overlay[aria-hidden="false"] {
  display: flex;
}

.tm-wizard-logon-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8e8e8;
}

.tm-wizard-logon-steps-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tm-wizard-logon-step-current {
  font-family: Poppins-Bold, sans-serif;
  font-size: 16px;
  color: #333333;
  display: block;
}

.tm-wizard-logon-step-next {
  font-size: 14px;
  color: #666666;
  display: block;
}

.tm-wizard-logon-step-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
  border: 1px solid #ccc;
  border-radius: 4px;
  flex-shrink: 0;
  margin-left: auto;
}

.tm-wizard-logon-fields {
  margin-top: 16px;
}

.tm-wizard-logon-message {
  font-size: 14px;
  color: #c0392b;
  background: #fdeaea;
  border: 1px solid #e8b4b8;
  border-radius: 4px;
  padding: 10px 12px;
  margin-bottom: 16px;
}

.tm-wizard-logon-message.tm-wizard-logon-message-hidden {
  display: none;
}

.tm-wizard-logon-label {
  display: block;
  font-family: Poppins-Regular, sans-serif;
  font-size: 14px;
  color: #333333;
  margin: 0 0 6px 0;
}

.tm-wizard-logon-input {
  font-family: Poppins-SemiBold, sans-serif;
  font-size: 16px;
  color: #555555;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  margin-bottom: 16px;
  background: #fff;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.tm-wizard-logon-input:focus {
  border-color: #0078d4;
  box-shadow: 0 0 0 1px #0078d4;
}

.tm-wizard-logon-input::placeholder {
  color: #adadad;
}

.tm-wizard-logon-btn {
  font-family: Poppins-Medium, sans-serif;
  font-size: 14px;
  padding: 8px 16px;
  min-height: 32px;
  border-radius: 4px;
  border: 1px solid #c0c0c0;
  background: #f0f0f0;
  color: #333333;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tm-wizard-logon-btn:hover {
  background: #e5e5e5;
  border-color: #a0a0a0;
}

.tm-wizard-logon-btn-next {
  background: #57b846;
  border-color: #57b846;
  color: #fff;
  margin-left: auto;
}

.tm-wizard-logon-btn-next:hover {
  background: #4a9e3a;
  border-color: #4a9e3a;
  color: #fff;
}

.tm-wizard-logon-btn-next.tm-wizard-btn-disabled,
.tm-wizard-logon-btn-next:disabled {
  background: #b5b5b5;
  border-color: #b5b5b5;
  color: #eee;
  cursor: not-allowed;
  pointer-events: none;
}

.tm-wizard-logon-btn-next:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(87, 184, 70, 0.5);
}

.tm-wizard-logon-btn-cancel {
  border-color: #c05050;
  background: #fff;
  color: #333;
}

.tm-wizard-logon-btn-cancel:hover {
  background: #fdeaea;
  border-color: #a03030;
}


/*------------------------------------------------------------------
[ TimeMaker wizard: Congratulations – enter company name ]*/
.tm-wizard-congrats-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  margin: -24px -24px 20px -24px;
  background: #f5f5f5;
  border-bottom: 1px solid #0078d4;
}

.tm-wizard-congrats-info-text {
  flex: 1;
  min-width: 0;
}

.tm-wizard-congrats-heading {
  font-family: Poppins-Bold, sans-serif;
  font-size: 16px;
  color: #333333;
  margin: 0 0 2px 0;
  display: block;
}

.tm-wizard-congrats-subtitle {
  font-size: 14px;
  color: #666666;
  margin: 0;
  display: block;
}

.tm-wizard-congrats-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.tm-wizard-congrats-footer {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.tm-wizard-congrats-footer-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #666666;
}

.tm-wizard-congrats-link {
  color: #0078d4;
  text-decoration: underline;
}

.tm-wizard-congrats-link:hover {
  color: #106ebe;
}

.tm-wizard-congrats-team {
  color: #666666;
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  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: 0px;
  pointer-events: none;

  font-family: Poppins-Regular;
  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;
  font-size: 16px;
  color: #c80000;

  display: block;
  position: absolute;
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 5px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}