
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");
:root {
  --header-height: 3rem;
  --nav-width: 68px;
  --first-color: #333333;
  --first-color-light: #ffffff;
  --white-color: #f7f6fb;
  --body-font: "Nunito", sans-serif;
  --normal-font-size: 1rem;
  --z-fixed: 100;
}
*,
::before,
::after {
  box-sizing: border-box;
}
body {
  position: relative;
  margin: var(--header-height) 0 0 0;
  padding: 0 1rem;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: 0.5s;
}
a {
  text-decoration: none;
}
.header {
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  background-color: var(--white-color);
  z-index: var(--z-fixed);
  transition: 0.5s;
}
.header_toggle {
  color: var(--first-color);
  font-size: 1.5rem;
  cursor: pointer;
}
.header_img {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}
html, body{
  height: 100%;
  width: 100%;
}
.nav.flex-column a{
  text-decoration: none !important;
  color: rgb(255, 255, 255) !important;
}
.header_img img {
  width: 40px;
}
.l-navbar {
  position: fixed;
  top: 0;
  left: -30%;
  width: var(--nav-width);
  height: 100vh;
  background-color: var(--first-color);
  padding: 0.5rem 1rem 0 0;
  transition: 0.5s;
  z-index: var(--z-fixed);
  
}
.nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.nav .show{
  overflow: visible;
}
.nav_logo,
.nav_link {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  column-gap: 1rem;
  padding: 0.5rem 0 0.5rem 1.5rem;
}
.nav_logo {
  margin-bottom: 2rem;
}
.nav_logo-icon {
  width: 1.50rem;
  color: var(--white-color);
}
.nav_logo-name {
  color: var(--white-color);
  font-weight: 700;
}
.nav_link {
  position: relative;
  color: var(--first-color-light);
  margin-bottom: 1 rem;
  transition: 0.3s;
  text-decoration: none;
}
.nav_link:hover {
  color: var(--white-color);
}
.nav_icon {
  font-size: 1.25rem;
}
.show {
  left: 0;
  overflow: visible;
}
.body-pd {
  padding-left: calc(var(--nav-width) + 1rem);
}
.active {
  color: var(--white-color);
}
.active::before {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  height: 32px;
  background-color: var(--white-color);
}
.height-100 {
  height: 100vh;
}
.Contenido-vista {
  margin-left: var(--nav-width); 
  padding: 20px;
}

/* Estilos para el título */
.Titulo-vista {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  body {
    margin: calc(var(--header-height) + 1rem) 0 0 0;
    padding-left: calc(var(--nav-width) + 2rem);
  }
  .header {
    height: calc(var(--header-height) + 1rem);
    padding: 0 2rem 0 calc(var(--nav-width) + 2rem);
  }
  .header_img {
    width: 40px;
    height: 40px;
  }
  .header_img img {
    width: 45px;
  }
  .l-navbar {
    left: 0;
    padding: 1rem 1rem 0 0;
    overflow: visible;
    z-index: 100;
  }
  
  .show {
    width: calc(var(--nav-width) + 156px);
    overflow: visible;
    
  }
  .body-pd {
    padding-left: calc(var(--nav-width) + 155px);
    
  }
}
.text-blue{
  color: var(--first-color);
}
.bg-blue{
  background-color: var(--first-color);
}
.text-white{
  color: #fff;
}
button:hover{
  background-color: none !important;
  color: #615d5d;
}
a:hover{
  background-color: none !important;
}
#chart {
  width: 100%;
  margin: 35px auto;
  opacity: 0.9;
}

#timeline-chart .apexcharts-toolbar {
  opacity: 1;
  border: 0;
}

.nav_dropdown {
  position: relative;
}

.nav_dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--first-color);
  min-width: 160px;
  z-index: 1000;
  left:100%;
  top:0;

}

.nav_dropdown:hover .nav_dropdown-content {
  display: block;
}

.nav_dropdown-content a {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  color: rgb(255, 255, 255);
}

.nav_dropdown-content a:hover {
  color: aquamarine;
}