/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;1,100;1,300;1,400&display=swap'); */
/* roboto-100 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  src: local(''),
       url('../fonts/Roboto/roboto-v27-latin-100.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/Roboto/roboto-v27-latin-100.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-100italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  src: local(''),
       url('../fonts/Roboto/roboto-v27-latin-100italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/Roboto/roboto-v27-latin-100italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-300 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: local(''),
       url('../fonts/Roboto/roboto-v27-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/Roboto/roboto-v27-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-300italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  src: local(''),
       url('../fonts/Roboto/roboto-v27-latin-300italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/Roboto/roboto-v27-latin-300italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/Roboto/roboto-v27-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/Roboto/roboto-v27-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: local(''),
       url('../fonts/Roboto/roboto-v27-latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/Roboto/roboto-v27-latin-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
*{
  font-family: 'Roboto', sans-serif;
  box-sizing: border-box;
}
:root {
  --c1: #7a7a7a; /* Neutral Dark */
  --c2: #a7ffdc; /* Primary: Healthcare Green */
  --c3: #9e9e9e; /* Accent: Soft Blue */
  --c4: #D11E1E; /* Red (staying) */
  --c5: #14B8A6; /* Secondary: Teal */
  --bg: #F8FAFC; /* Neutral Light */
  --input-disabled: #F9F8F8;
}

::-webkit-input-placeholder { /* Edge */
  color: var(--c3) !important;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--c3) !important;
}

::placeholder {
  color: var(--c3) !important;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on h#a8a8a8 */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

header{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    background: linear-gradient(90deg, #a7ffdc, #15c08a);
    color: white;
    padding: 20px;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
    z-index: 1000;
}

/* Toolbar Menu */
.toolbar-menu {
    display: flex;
    gap: 10px;
    background: white;
    padding: 10px;
    margin-bottom: 0;
}

.toolbar-menu .tl-top {
    display: flex;
    gap: 15px;
    align-items: center;
}

.toolbar-menu .tl-menu-item {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    color: #7a7a7a;
    transition: color 0.2s;
}

.toolbar-menu .tl-menu-item:hover {
    color: #15c08a;
}

/* Style for Materialicon SVGs */
.toolbar-menu .tl-menu-item svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    vertical-align: middle;
}

.toolbar-menu{
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: column;
    width: 50px;
    height: 100vh;
    height: -webkit-fill-available;
    padding-top: 65px;
    background: #141e30;
    z-index: 1;
}

.tl-top,
.tl-bottom
{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tl-top{
    flex-grow: 1;
}

.tl-bottom{
    padding-top: 10px;
    gap: 10px;
}

.tl-bottom::before{
    content: "";
    border-top: 1px solid #23334f;
    width: calc(100% + 20px);
    height: 1px;
    top: 0;
    position: absolute;
}

.tl-menu-item{
    position: relative;
    background: #1d2c47;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    transition: all .2s ease-in-out;
}

.tl-menu-item > a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tl-menu-item > a svg > path{
    fill: #a6ffdc;
}

.tl-menu-item span{
    display: none;
}

.tl-menu-item:hover{
    background: #26395a;
}

.tl-menu-item > span {
    background: rgba(38,58,90,0.88);
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: calc(100% + 10px);
    color: #a6ffdc;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 12px;

    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.tl-menu-item:hover > span {
    opacity: 1;
    visibility: visible;

    transition: opacity 0.3s ease 1s, visibility 0s linear 1s;
}

.logout-tl-menu svg path{
    fill: #d35252 !important;
}

body{
    padding: 0px;
    padding-top: 55px;
    margin: 0px;
    height: 100%;
    height: 100vh;
    background-color: white !important;
    color: var(--c1);
}

hr{
  border: 0;
  border-bottom: 1px solid #E8E8E8;
}

hr.margin{
  margin: 10px 0;
}

h1, h2, h3, h4, h5, h6{
  margin: 10px 0;
}

.init-load{
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    height: 100vh;
    z-index: 10000;
    background: #262626f0;
}
.load-animate{
    position: relative;
}

@keyframes loadingpage{
    0%{
        height: 100%;
    }
    100%{
        height: 0%;
    }
}

.load-animate {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.load-animate img{
    width: 100px;
    filter: drop-shadow(0 10px 25px rgba(64,65,65,0.35));
    animation: floatPulse 3s ease-in-out infinite;
}

@keyframes floatPulse {

    0% {
        transform: translateY(0px) scale(0.95);
        opacity: 0.8;
    }

    25% {
        transform: translateY(-10px) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateY(0px) scale(1.05);
        opacity: 1;
    }

    75% {
        transform: translateY(8px) scale(1);
        opacity: 0.95;
    }

    100% {
        transform: translateY(0px) scale(0.95);
        opacity: 0.8;
    }
}

.load-animate::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(
        circle,
        rgba(11,11,11,0.04) 0%,
        transparent 70%
    );
    animation: glowMove 4s ease-in-out infinite;
}

@keyframes glowMove {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

.logo span{
    color: #14835f;
}

.bg-primary{
    background-color: #8bcd56 !important;
}

.bg-secondary{
    background-color: #1caca5 !important;
}

.block{
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    height: 100vh;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow:hidden;
    overflow-y: auto;
}
.block .card{
    min-width: 400px;
}
.block.block-top{
    z-index: 1000;
}
.block[none]{
    display: flex !important;
}

/* Loading overlay hidden by default */
.loading{
    display:none; /* hidden initially */
    position: fixed;
    background: rgb(0 0 0 / 40%);
    bottom: 10px;
    right: 10px;
    width: 150px;
    height: 50px;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    border-radius: 10px;
    /* slide‑in animation when shown */
    animation: slideIn 0.3s ease-out forwards;
}

/* When .loading gets the .show class, make it visible and trigger animation */
.loading.show{
    display:flex;
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.loading::after {
    content: "Loading";
    font-size: 15px;
    margin-left: 10px;
    color: #FFF;
}

.left, [left]{
    text-align: left;
}
.center, [center]{
    text-align: center;
}
.right, [right]{
    text-align: right;
}
.float-right, [float-right]{
    float: right;
}

.strong, [strong]{
    font-weight: bold !important;
}

.none, [none]{
    display: none !important;
}

.inline-block, [inline-block]{
    display: inline-block;
}

.no-space, [no-space]{
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
}

.no-space-all,
.no-space-all *,
[no-space-all],
[no-space-all] *{
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
}

.flex, [flex]{
    display: flex;
    display: inline-flex;
    display: -webkit-flex;
}

.flex-center-vertical,[flex-center-vertical]{
    align-items: center;
}
.flex-center-horizontal,[flex-center-horizontal]{
    justify-content: center;
}
.flex-center,[flex-center]{
    justify-content: center;
    align-items: center;
}

.flex-grow,[flex-grow]{
    flex-grow: 1;
}

.flex-column,[flex-column]{
    flex-direction: column;
}

.sm-padding, [sm-padding]{
    padding: 5px !important;
}

.md-padding, [md-padding]{
    padding: 10px !important;
}

.flex-margin > *, [flex-margin] > *{
    margin: 0 5px !important;
}

.fit-content, [fit-content]{
    width: 1%;
    white-space: nowrap;
}

.auto-width, [auto-width]{
    width: auto !important;
    flex-grow: 0 !important;
}

.full-width, [full-width]{
    width: 100%;
}

.full-height, [full-height]{
    height: 100%;
}

.disabled-element, [disabled-element]{
    pointer-events: none;
}

.unset-position, [unset-position]{
    position: unset !important;
}

.pointer, [pointer]{
    cursor: pointer !important;
}

.input{
  margin: 10px 0;
}

.line-v{
    width: 100%;
    height: 1px;
    background: #E8E8E8;
    z-index: 1;
}

.line-h{
    width: 1px;
    min-width: 1px;
    height: 100%;
    background: #E8E8E8;
}

.line-h-button {
    width: 3px;
    background: var(--c2);
}

.scroll-v,[scroll-v]{
    overflow-y: auto;
}

.full-width,[full-width]{
    width: 100%;
}

.button
{
    color: var(--c2);
    cursor: pointer;
    padding: 0 10px;
    display: flex;
    display: inline-flex;
    display: -webkit-flex;
    align-items: center;
    white-space: nowrap;
}
.button .icon-button svg
{
    fill: #4bbe90;
    width: 20px;
    height: 20px;
}
.button button
{
    color: #4bbe90;
    background: transparent;
    border:0;
    padding: 0;
    margin-left: 6px;
}
.button:hover{
    background: #F1F5F9;
}
.button-h100{
    height: 100%;
}
.icon-button + span{
    margin-left:10px;
    color: var(--c2);
}

.hide-empty-content{
    flex-grow: 1;
}
.hide-empty-content + .empty-content{
    display: none !important;
}
.empty-content
{
    flex-grow: 1;
}
.empty-content span
{
    width: 60px;
    height: 60px;
    border-radius: 30px;
    display: inline-block;
    background-color: #F8F8F8;
    text-align: center;
    line-height: 60px;
}
.empty-content svg{
    fill: #807B7B;
    width: 30px;
    height: 30px;
}

.ec2 span{
    background-color: #eceeef;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    line-height: 100px;
}

.ec2 svg{
    fill: #807B7B;
    width: 50px;
    height: 50px;
}

/* Custom Bootstrap */
.btn.fill svg{
    fill: #5e5e5e;
}
.btn.outline:hover svg{
    fill: #5e5e5e;
}
.btn-primary{
    color: #5e5e5e !important;
    background-color: var(--c2) !important;
    border: 2px solid var(--c2) !important;
}
.btn-primary:hover{
    border: 2px solid #32feac !important;
}
.table-light {
    /* border-color: var(--c2) !important; */
}
.table > :not(:last-child) > :last-child > * {
    border-bottom-color: var(--c2) !important;
}
.table > :not(caption) > * > * {
    border-bottom-width: 1px !important;
}

/*Toggle Slider*/
.toggle-slider{
	position: relative;
	display: inline-block;
	width: 35px;
	height: 16px;
}
.toggle-slider input[type=checkbox]{
	display: none;
}
.toggle-slider input[type=checkbox]:checked ~ .ts_bg{
	background: #0078D4;
}
.toggle-slider input[type=checkbox]:checked ~ .ts_button{
	left: auto;
	right: 2px;
}
.toggle-slider .ts_bg{
	width: 100%;
	height: 100%;
	background: #EDEDED;
	border-radius: 10px;
	cursor: pointer;
}
.toggle-slider .ts_button{
	display: inline-block;
	width: 12px;
	height: 12px;
	background: #FFF;
	border-radius: 10px;
	position: absolute;
	top: 2px;
	left: 2px;
	cursor: default;
}

/* Toast Info */
.toast-info{
    position: fixed;
    left: 50%;
    transform: translatex(-50%);
    transition: all 0.5s;
    top: -100px;
    background: #FFF;
    z-index: 1000;
    border: 1px solid #d1d1d1;
    padding: 5px 10px;
    border-radius: 8px;
    box-shadow: 0 3px 3px rgba(0,0,0,0.1);
}

/* Custom */
.dropdown-noarrow:after{
    display: none !important;
}

#formsearch{
    margin: 0
}

.empty-content span{
    display: flex;
    align-items: center;
    justify-content: center;
}

header .icon-button svg path{
    fill: #4bbe90;
}
