/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

#panel {

    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    top: 0;
    left: -250px;
    position: fixed;
    width: 250px;
    padding-right: 25px;
    padding-left: 0px;
    padding-top: 10px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
    z-index: 2;
}

#panel.active {
    left: 0;
}

#toggle-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
}

#content {
    /* margin-left: 270px;
    padding: 20px; */
    display: inline;
}



.menu-icon {
  position: absolute;
 

  left: 13px;

  padding: 0px;
  color: #4070f4;
  font-size: 18px;
  cursor: pointer;
  margin-left: -4px;
  transition: all 0.3s ease;
}

.menu-icon:hover {
  color: blue;
}

#refresh-icon {
  left:226px;
  bottom:3px;
}


#clear-icon {
  bottom:39px;

}



#lock-icon {
    bottom:3px;
    font-size: 20px;
}



#lock-icon.locked {
    color: red; /* Cambia el color cuando el panel está bloqueado */
}





.flex {
  display: flex;
  align-items: center;
}
.nav_image {
  display: flex;
  min-width: 55px;
  justify-content: center;
}
.nav_image img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.logo_items {
  gap: 8px;
}
.logo_name {
  font-size: 22px;
  color: #333;
  font-weight: 500px;
  transition: all 0.3s ease;
}

/* #sidebar-close {
  display: none;
  color: #333;
} */
.menu_container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 10px;
  overflow-y: auto;
  height: calc(100% - 55px);
}
.menu_container::-webkit-scrollbar {
  display: none;
}

ul {
    margin-left: 0px;
}
.menu_title {
  position: relative;
 
  border-bottom: 2px solid rgba(13,110,253,.25);
    width: 100%;
    padding-bottom: 3px;
    margin-bottom: 7px;
    justify-content: center;
}

.menu_items ul  {
    /* border-top: 2px solid rgba(0, 0, 0, 0.1); */
    /* background-color: red; */
    padding-bottom: 5px;
    text-align: -webkit-center;
}

/* .menu_items ul :not(:first-of-type) {
    background-color: transparent;
}
 */

.menu_title .title {
  margin-left: 15px;
  transition: all 0.3s ease;
  color:#171717;
}
/* .sidebar.close .title {
  opacity: 0;
} */
.menu_title .line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 20px;
  border-radius: 25px;
  background: #aaa;
  transition: all 0.3s ease;
}
.menu_title .line {
  opacity: 0;
}
.sidebar.close .line {
  opacity: 1;
}
.item {
  list-style: none;
}
.link {
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 6px;
  color: #707070;
  height: 30px;
  cursor: pointer;
}

.presets {
font-size: 9pt;
}

.link:hover {
  text-decoration: none;
  color: #fff;
  background-color: #4070f4;
}
.link span {
  white-space: nowrap;
  margin-left: -5px;
}
.link i {
  height: 50px;
  min-width: 55px;
  display: flex;
  font-size: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.sidebar_profile {

    display: flex;
    flex-direction: column;
   
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  padding-top: 15px;
  
  margin-top: 0px;
  gap: 4px;
  
  margin-bottom: 28px;
} 
.sidebar_profile .name {
  font-size: 18px;
  color: #333;
}
.sidebar_profile .email {
  font-size: 15px;
  color: #333;
}

.navbar {
  max-width: 500px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 60%;
  transform: translateX(-50%);
  background: #fff;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  justify-content: space-between;
}
/* #sidebar-open {
  font-size: 30px;
  color: #333;
  cursor: pointer;
  margin-right: 20px;
  display: none;
} */
.search_box {
  height: 46px;
  max-width: 500px;
  width: 100%;
  border: 1px solid #aaa;
  outline: none;
  border-radius: 8px;
  padding: 0 15px;
  font-size: 18px;
  color: #333;
}
.navbar img {
  height: 40px;
  width: 40px;
  margin-left: 20px;
}

/* @media screen and (max-width: 1100px) {
  .navbar {
    left: 65%;
  }
}
@media screen and (max-width: 800px) {
  .sidebar {
    left: 0;
    z-index: 1000;
  }
  .sidebar.close {
    left: -100%;
  }
  #sidebar-close {
    display: block;
  }
  
  .navbar {
    left: 0;
    max-width: 100%;
    transform: translateX(0%);
  }
  #sidebar-open {
    display: block;
  }
}  */