
@font-face {
	font-family: "Lexend";
	src: url("../fonts/Lexend.ttf") format("truetype");  
}

@font-face {
	font-family: "Aptos";
	src: url("../fonts/aptos.ttf") format("truetype");  
}

:root {
  --tblr-font-sans-serif: 'Lexend', -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
  --tblr-body-font-family: 'Lexend';
/*    --tblr-primary: #e86a92; */
/*   --tblr-navbar-bg: #e86a92; */
/*   --tblr-primary: #554971; */
/*   --tblr-secondary: #e86a92; */
/*   --tblr-primary-rgb: 85, 73, 113; */
/*   --tblr-body-bg: #FCF3EC; */
/*   --tblr-primary-rgb: 232, 106, 146; */
/*   --tblr-primary-rgb: rgb(85, 73, 113); */
/*   --tblr-body-bg: #FFF7ED; */
  --tblr-body-font-size: 0.875rem;
  --tblr-alert-bg: #fff;

/*   --tblr-link-color: #000;
  --tblr-link-color-rgb: rgba(0,0,0,1); */
}

::-webkit-scrollbar-track {
  backgound-color: #F6F8FB;
}
  

#loading {
  position: fixed;
  z-index: 10000000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out;
}

.spinner-border-lg {
  --tblr-spinner-border-width: 4px;
  --tblr-spinner-width: 2.5rem;
  --tblr-spinner-height: 2.5rem;
}

.table-responsive {
  width: 100%;
}


table.table {
  font-size: var(--tblr-body-font-size);
}


form {
  margin: 0;
}



body {
  font-feature-settings: "cv03", "cv04", "cv11";
}

a {
  cursor: pointer;
/*   color: unset; */
}

a:hover {
  text-decoration: none;
}


.hidden-input {
  display: none;
}

.badge {
  --tblr-badge-color: #fff;
}

#modal {
/*   top: 100vh; */
/*   display: block; */
/*   opacity: 0; */
/*   backdrop-filter: brightness(60%); */
}

#modal.show {
  display: block;
}

.modal-backdrop {
  display: none;
}

.modal-backdrop.show {
  display: block;
  background-color: rgba(0,0,0,0.4);
  opacity: 1;
  backdrop-filter: blur(4px);
}


#alerts {
  z-index: 10000;
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.alert {
/*   background-color: #fff; */
  animation-name: alert-fade-in;
  animation-duration: 5s;
  opacity: 0;
}

@keyframes alert-fade-in {
  0% {opacity: 0;}
  10% {opacity: 1;}
  50% {opacity: 1;}
  100% {opacity: 0;}
}

.input-search-results {
  position: absolute;
  top: 38px;
  right: 0;
  width: 100%;
  max-height: 250px;
  overflow-y: scroll;
  background-color: #fff;
  font-family: var(--tblr-font-sans-serif);
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.4285714286;
  color: var(--tblr-body-color);
  background-color: var(--tblr-bg-forms);
  background-clip: padding-box;
  border: var(--tblr-border-width) solid var(--tblr-border-color);
  border-radius: var(--tblr-border-radius);
  box-shadow: var(--tblr-box-shadow-input);
}

.input-search-result {
  line-height: 1.3;
  padding: 0.4625rem 0.75rem;
  cursor: pointer;
}

.input-search-result:hover {
  background-color: rgba(var(--tblr-secondary-rgb),.08);
}

/* TomSelect */

body .ts-control, body .ts-wrapper.single.input-active .ts-control, body .full .ts-control, body .ts-dropdown {
  background: var(--tblr-bg-forms);
  color: var(--tblr-body-color);
  border: none;
}

body .ts-control {
  padding: 2px 0;
  min-height: 20px;
}

body .ts-control input {
  color: var(--tblr-body-color);
  min-height: 28px;
}

body .ts-dropdown .optgroup-header {
  color: var(--tblr-body-color);
  background: var(--tblr-bg-forms);
  text-transform: uppercase;
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.3em;
}

body .ts-dropdown .option {
  min-height: 28px;
}

#stopwatch {
  height: 70px;
}

#stopwatch + .page-wrapper {
  margin-top: 70px;
}


.hover-change > *:nth-child(2) {
  display: none;
}

.hover-change:hover > *:nth-child(1) {
  display: none;
}

.hover-change:hover > *:nth-child(2) {
  display: block;
}

/* Signature */

.user-signature-stage {
/*   all: unset; */
  border-radius: 5px;
  color: #000;
  font-family: Aptos;
  padding: 20px;
  background-color: #fff;
  margin-bottom: 10px;
}