*, ::before, ::after {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--container-color);
  box-shadow: 0 1px 0 rgba(22, 8, 43, 0.1);
  padding: 0 1rem;
  z-index: var(--z-fixed);
}

.header-container {
  display: flex;
  align-items: center;
  height: var(--header-height);
  justify-content: space-between;
}

.header-img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.header-text {
  width: 200px;
  height: 25px;
  border-radius: 50%;
  color: var(--title-color);
}

.header-logo {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  display: none;
  pointer-events: none;
}

.header-search {
  display: flex;
  padding: .40rem .75rem;
  background-color: var(--first-color-light);
  border-radius: .25rem;
}

.header-input {
  width: 100%;
  border: none;
  outline: none;
  background-color: var(--first-color-light);
}

.header-input::placeholder {
  font-family: var(--body-font);
  color: var(--text-color);
}

.header-icon, 
.header-toggle {
  font-size: 1.2rem;
  color: var(--text-color-nav);
}

.header-toggle {
  color: var(--title-color);
  cursor: pointer;
}

.nav {
  position: fixed;
  top: 0;
  left: -100%;
  height: 100vh;
  padding: 1rem 1rem 0;
  background-color: var(--container-color);
  box-shadow: 1px 0 0 rgba(22, 8, 43, 0.1);
  z-index: var(--z-fixed);
  transition: .4s;
  color: var(--text-color-nav)
}

.nav-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 3rem;
  overflow: auto;
  scrollbar-width: none; /* For mozilla */
}

/* For Google Chrome and others */
.nav-container::-webkit-scrollbar {
  display: none;
}

.nav-logo {
  margin-bottom: 2.5rem;
  transition: 0.5s all ease 0s;
}

.nav-list, 
.nav-items {
  display: grid;
}

.nav-list {
  row-gap: 2.5rem;
}

.nav-items {
  row-gap: 1.5rem;
}

.nav-subtitle {
  font-size: var(--normal-font-size);
  text-transform: uppercase;
  letter-spacing: .1rem;
  color: var(--text-color-light);
}

.nav-link-custom {
  display: flex;
  align-items: center;
  color: var(--text-color);
}

.nav-link-custom:hover {
  color: var(--first-color);
}

.nav-icon {
  font-size: 1.1rem;
  margin-right: .5rem;
}

.nav-name {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  white-space: nowrap;
}

.nav-logout {
  margin-top: 5rem;
}

/* Dropdown */
.nav-dropdown {
  overflow: hidden;
  max-height: 21px;
  transition: .4s ease-in-out;
}

.nav-dropdown-collapse {
  background-color: var(--first-color-light);
  border-radius: .25rem;
  margin-top: 1rem;
}

.nav-dropdown-content {
  display: grid;
  row-gap: .5rem;
  padding: .75rem 2.5rem .75rem 1.8rem;
}

.nav-dropdown-item {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color-dropdown);
}

.nav-dropdown-item:hover {
  color: var(--first-color);
}

.nav-dropdown-icon {
  margin-left: auto;
  transition: .4s;
}

/* Show dropdown collapse */
.nav-dropdown:hover {
  max-height: 100rem;
}

/* Rotate icon arrow */
.nav-dropdown:hover .nav-dropdown-icon {
  transform: rotate(180deg);
}

/*===== Show menu =====*/
.show-menu {
  left: 0;
}

/*===== Active link =====*/
#chartdiv {
  width: 100%;
  height: 300px;
}

.card-gauge {
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
}

.card-data {
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
}

.col-equal {
  display: table-cell;
}

.radius-left {
  border-radius: 1rem 0 0 1rem;
}

.radius-right {
  border-radius: 0 1rem 1rem 0;
}

.data-split {
  justify-content: space-between;
  display: flex;
}

.btn-card-bigger {
  border-radius: 30px;
  padding: 0.8rem 0.7rem;
}


.btn-card {
  border-radius: 30px;
  padding: 0.2rem 0.1rem;
}

.btn-card-two {
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
}

.hiddenRow {
  padding: 0 !important;
}

.dropbtn {
  background-color: transparent;
  color: black;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-shadow: none;
  display: inline-block;
  text-align: center;
  margin: 0em;
  padding-block: 16px;
}

.blur-card {
  backdrop-filter: blur(20px); 
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
  height: 200px;
  border: 0;
  border-radius: 12px;
  color: #fff;
}

.align-center-custom {
  display: flex;
  align-items: center;
}

.container-dropdown {
  color: black;
  padding: 12px 12px;
  text-decoration: none;
  display: block;
  padding: 1rem 1.5rem;
  border-radius: 12px;
}

.container-dropdown a:hover {
  background-color: rgba(153, 188, 133, 0.1);
}
.container-dropdown a:hover {
  color: #5a7748;
}

.container-dropdown a.active {
  background-color: #5a7748;
  color: #D4E7C5;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  backdrop-filter: blur(8px); 
  background-color: rgba(0, 0, 0, 0.75);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 12px 12px 12px 32px;
  text-decoration: none;
  font-size: 20px;
  color: #ffffff;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

.nav-dropdown {
  overflow: hidden;
  max-height: 54px;
  transition: .4s ease-in-out;
  padding: 12px 12px 12px 32px;
}

.nav-dropdown-content {
  display: grid;
  background-color: #fff;
  padding: .75rem 2.5rem .75rem 1.8rem;
}

.nav-dropdown-content a {
  padding: 0px 0px 0px 32px;
  text-decoration: none;
  font-size: 20px;
  color: #ffffff;
  display: block;
  transition: 0.3s;
}

/* Show dropdown collapse */
.nav-dropdown:hover {
  max-height: 100rem;
}

/* Rotate icon arrow */
.nav-dropdown:hover .nav-dropdown-icon {
  transform: rotate(180deg);
}

.card-filter {
  padding: 1rem;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
}

.card-employee {
  padding: 1rem;
}

.card-employee-mini {
  background-color: #F5F5F5;
  border-radius: 0.5rem;
}

.card-employee-selected {
  background-color: #824E75;
  border-radius: 0.5rem;
  color: #fff;
}

.card-employee-outer {
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
}

.responsive-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.responsive-img-sm {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.centered-data {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.size-0 {
  font-size: 14px;
}

select#xyz {
  border-radius: 80px;
  padding: 0.5rem 2rem;
  width:auto;
  min-height: 2.75rem;
  max-height: 2.75rem;
  text-align: center;
}

.navbar-split {
  justify-content: space-between;
  padding: 1.5rem 3rem;
}

.vl {
  border-left: 2px solid #CED4DA;
  height: auto;
  margin-left: 1rem;
  margin-right: 1rem;
}

.card-white {
  background-color: #fff;
  border-radius: 1rem;
}

.card-upper-1 {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  border-left: 24px solid #8E7AB5;
}

.card-upper-2 {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  border-left: 24px solid #B784B7;
}

.card-upper-3 {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  border-left: 24px solid #E493B3;
}

.card-upper-4 {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  border-left: 24px solid #EEA5A6;
}

.container-fluid-custom {
  padding: 2rem;
}

.btn-option{
  padding: 0.75rem;
}

.badge {
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
  font-weight: 400;
}

.btn-custom {
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
  font-size: 1.5rem;
  border: 0;
  background-color: transparent;
}

.btn-custom:hover {
  color: #000;
  text-decoration: none;
  opacity: .75;
}

.btn-custom:focus {
  outline: 0;
  text-decoration: none;
}

.modal-content {
  border-radius: 1rem;
}

/* Dropdown */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  padding: 0.5rem;
  display: none;
  position: absolute;
  backdrop-filter: blur(12px); 
  background-color: rgba(255, 255, 255, 0.5);
  min-width: 200px;
  border-radius: 0.5rem;
  z-index: 1;
}

.dropdown-content a,
.dropdown-content p {
  color: black;
  padding: 12px 12px;
  text-decoration: none;
  display: block;
  border-radius: 8px;
  cursor: pointer;
}

.dropdown-content a:hover,
.dropdown-content p:hover {
  background-color: rgba(142, 122, 181, 1);
  color: #fff;
}

.dropdown-content a .active {
  background-color: #8E7AB5;
  color: #ffffff;
}

.dropdown:hover .dropdown-content {
  display: block;
  transition: .4s linear;
}

.text-wrap {
  display: inline-block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-custom-round {
  width: 100%;
  height: 50px;
  border-radius: 50px;
}

.btn-do {
  background-color: #824E75;
  border-color: #824E75;
  color: #fff;
}

.btn-do.dropdown-toggle:hover {
  background-color: #643458;
  border-color: #643458;
  color: #fff;
  transition: 0.25s;
}

.btn-do:focus, .btn-do.focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 78, 117, 0.5);
}

.btn-do:not(:disabled):not(.disabled):active, .btn-do:not(:disabled):not(.disabled).active,
.show > .btn-do.dropdown-toggle {
  background-color: #824E75;
  border-color: #824E75;
  color: #fff;
}

.btn-do:not(:disabled):not(.disabled):active:focus, .btn-do:not(:disabled):not(.disabled).active:focus,
.show > .btn-do.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 78, 117, 0.5);
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}

.btn-primary {
  background-color: #824E75;
  border-color: #824E75;
  color: #fff;
}

.btn-primary:hover {
  background-color: #5c3552;
  border-color: #5c3552;
  color: #fff;
}

.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 78, 117, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #824E75;
  border-color: #824E75;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  background-color: #824E75;
  border-color: #824E75;
  color: #fff;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.1rem rgba(130, 78, 117, 0.25);
}

.filter-collapse {
  background-color: #F8F9FA; 
  border-radius: 12px; 
  border: 0; 
  padding: 1.5rem 2rem;
}

.form-control {
  border: 0;
}

.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 78, 117, 0.25);
}

.dropdown i {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  margin-left: 0.25rem;
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.drop-zone {
  width: 100%;
  height: 400px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
  color: #cccccc;
  border: 3px dashed rgba(130, 78, 117, 0.75);
  border-radius: 1rem;
  margin-top: 1.5rem;
}

.drop-zone--over {
  border-style: solid;
}

.drop-zone__input {
  display: none;
}

.drop-zone__thumb {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #F8F9FA;
  background-size: cover;
  position: relative;
}

.drop-zone__thumb::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  text-align: center;
}

:root {
  --size: 160px;
  --coefficient: 1.2;
  --timeline: 2.6s;
  --delay: 0.65s;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.loader--hidden {
  opacity: 0;
  pointer-events: none; /* ensure clicks pass through when hidden */
}

.loading {
  width: calc(var(--size) * var(--coefficient));
  aspect-ratio: 1;
  transform-origin: 50% 50%;
  animation: squish-squosh var(--timeline) var(--delay) infinite;
}

.spinner {
  animation: spin var(--timeline) var(--delay) infinite;
}

.jumper {
  animation: jump var(--timeline) var(--delay) infinite;
}

@keyframes squish-squosh {
  0%, 50%, 60% {
    transform: scale(1);
  }
  10%, 35% {
    transform: scale(1.2, 0.8, 1.2);
  }
  25% {
    transform: scale(0.8, 1.2, 0.8);
  }
  70% {
    transform: scale(1);
  }
}

@keyframes spin {
  0%, 10% {
    transform: rotate(0deg);
  }
  40%, 100% {
    transform: rotate(-360deg);
  }
}

@keyframes jump {
  0%, 10%, 35%, 50% {
    transform: translate(0);
  }
  25% {
    transform: translateY(-80%);
  }
}

.cuboid {
  width: 100%;
  height: 100%;
  position: relative;
}

.cuboid__side {
  position: absolute;
}

.cell-wrap {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}