.sidebar{
    background-color:   #F0EDE6; 
    height: 100%;
    z-index:101;
  }
  .sidebar .nav-links{ 
    overflow: auto;
    overflow-x:hidden;
  }
  .sidebar .nav-links li:hover{
    background: #efdcbf;
    
  }
  .sidebar .nav-links li.showMenu{
    background: #EFDCBF;
  }
  .sidebar.close .nav-links li.showMenu{
    background: #F0EDE6;    
  }
  .sidebar.close .nav-links li.showMenu:hover{
    background: #EFDCBF;
  }
  .sidebar .nav-links .sub-menu li:hover{
    background: #d0b68e;
    border-radius:6px;

  }  
  .sidebar .nav-links .iocn-link:hover{
    border-left: 4px solid #c3a574;
  }
  
  .sidebar .nav-links li:hover{
    transition: all 0.1s ease;
  }
  .sidebar .nav-links li a{
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  .sidebar .iocn-link a i {
    color: #544e45;
  }
  
  .sidebar .nav-links li a .link_name{
    font-size: 14px;
    font-weight: 400;
    color: #544e45;
    transition: all 0.1s ease;
  }
  .sidebar .nav-links li .arrow{
    color: #544e45;
  }
  .sidebar.close .nav-links li a .link_name{
    opacity: 0;
  
    pointer-events: none;
  
  }
  .sidebar .nav-links li .sub-menu{
    padding: 0;
    margin-top: 0px;
    background: #efdcbf;
    display: none;
  }
  .sidebar .nav-links li.showMenu .sub-menu{
    display: block;
  }
  .sidebar .nav-links li.showMenu .sub-menu .header-seccion{

    display: none;
  }
  .sidebar.close .nav-links li.showMenu .sub-menu .header-seccion{

    display: block;
  }
  .sidebar .nav-links li .sub-menu a .i{
    color: #544E45;
    font-size: 15px;
    padding: 0px 10px;
    white-space: nowrap;
    opacity:30;
    transition: all 0.1s ease;
  }

  /* Color de las letras e iconos en el submenu lateral*/
  .sidebar .nav-links li .sub-menu a:hover{
    opacity: 100;
    color:#F0EAD6;
    /* font-weight:590; */
  }
  .home-section  .main-header {
  
    background: #D3B37E;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 10px;
    width: 100%;
    align-items: center;  
    }
    
    .home-section  .main-header .bx-menu {
        color: white;
        font-size: 23px;
    }
    .home-section  .main-header  .dropdown {
        background: #D3B37E;
  
        color: white;
  
        }
        .home-section  .main-header  .dropdown   #info-user{
         display: flex;
         flex-direction: row;
         align-items: center;
         cursor: pointer;
         position: relative;
        }
        .home-section  .main-header  .dropdown   #user-name{
            font-size: 18px;
            transition: width 300ms ease-in-out;
        }
      .home-section  .main-header  .dropdown  ul.item-main {
        margin: 0;
        position: absolute;
        display: flex;
        flex-direction: column;
        overflow-y: hidden;
        width: 320px;
        height: 0;
        padding: 0 10px;
        overflow-y: hidden;
        background: white;
        border-radius: 0 0 5px 5px;
        right: 0px;
        z-index: 100;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        font-family: "Segoe UI","Segoe UI Web Regular","Segoe UI Symbol","Helvetica Neue","BBAlpha Sans","S60 Sans",Arial,sans-serif;
        color: #544e45;
        transition: all 200ms ease-in-out;
     
    }

    .home-section  .main-header  .dropdown  ul.item-main.show {
      height: 160px;
      padding: 10px 10px;
    }
    .home-section  .main-header  .dropdown  ul.item-main *{
      opacity: 0;
      display: none;
      user-select: none;
      transition: all 300ms ease-in-out;
    }
    .home-section  .main-header  .dropdown  ul.item-main.show *{
      opacity: 1;
      display: flex;
    }
    .home-section  .main-header  .dropdown  ul.item-main .header{
        height: 40px;
        display: flex;
        flex-direction: row;
       justify-content: space-between;
        
    }
    .home-section  .main-header  .dropdown  ul.item-main .header #type-user{
      color: #333;
      text-transform: uppercase;
      font-size: 13px;
      font-family: "Segoe UI","Segoe UI Web Regular","Segoe UI Symbol","Helvetica Neue","BBAlpha Sans","S60 Sans",Arial,sans-serif;
     
    }
    .home-section  .main-header  .dropdown  ul.item-main .header #cerrar-session{
      color: #333;
      font-size: 13px;
      font-family: "Segoe UI","Segoe UI Web Regular","Segoe UI Symbol","Helvetica Neue","BBAlpha Sans","S60 Sans",Arial,sans-serif;
      cursor: pointer;
    }
    .home-section  .main-header  .dropdown  ul.item-main .body{
      height: 100%;
      display: flex;
      flex-direction: row;

  }
  .home-section  .main-header  .dropdown  ul.item-main .body .img{
    height: 100%;
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;

}
.home-section  .main-header  .dropdown  ul.item-main .body .img #img-user{
  padding: 0;
  width: 80px;
  height: 80px;
  justify-content: center;
  align-items: center;
  background-color: #d0b68ea2;
  text-transform: uppercase;
  border-radius: 50%;
  color: #544e45;
  font-size: 33px;
  font-weight: 600;
  font-family: "Segoe UI","Segoe UI Web Regular","Segoe UI Symbol","Helvetica Neue","BBAlpha Sans","S60 Sans",Arial,sans-serif;
}
.home-section  .main-header  .dropdown  ul.item-main .body .content-main{
  height: 100%;
  width: 65%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap:5px;
}
.home-section  .main-header  .dropdown  ul.item-main .body .content-main a{
  color: #0078d6;
    background-color: inherit;
    text-decoration: underline;
    font-size: 13px
}
.home-section  .main-header  .dropdown  ul.item-main .body .content-main #name-user{
  font-size: 18px;
  font-weight: 700;
  font-family: "Segoe UI","Segoe UI Web Regular","Segoe UI Symbol","Helvetica Neue","BBAlpha Sans","S60 Sans",Arial,sans-serif;
}
.home-section  .main-header  .dropdown  ul.item-main .body .content-main #email-user{
  font-size: 13px;
  font-family: "Segoe UI","Segoe UI Web Regular","Segoe UI Symbol","Helvetica Neue","BBAlpha Sans","S60 Sans",Arial,sans-serif;
}

        .home-section  .main-header  .dropdown   #user-icon{
            font-size: 24px;
        }
  
    .home-section  .main-header  .dropdown .dropdown-toggle {
  
        background: #D3B37E;
        position: flex;
        color: white;
  
        }
        .sidebar .home-section  .main-header  .dropdown .dropdown-toggle {
  
          margin-left:123px;
    
          }
  
    .home-section  .main-header  .dropdown .dropdown-toggle .caret {
  
        color: white !important;
  
        }
         .home-section  .main-header .options-rigth {
          display: flex;
          flex-direction: row;
          width: auto;
      }
      .home-section  .main-header .options-rigth .icon {
        padding: 10px 15px;
    }
    .home-section  .main-header .options-rigth #info-user {
      padding-left: 10px;
  }
  .home-section  .main-header .options-rigth .container-notify:hover{
    background-color: #c3a574;
  }
  .home-section  .main-header .options-rigth #info-user:hover {
    background-color: #c3a574;
}
.home-section  .main-header .options-rigth .item-option:hover {
  background-color: #c3a574;
}
      .home-section  .main-header .options-rigth a{
        font-size: 17px;
        
  
    }
      .home-section  .main-header .options-rigth .icon-bell {
       color: #fff;
       font-size: 17px;
       cursor: pointer;
        }
        .home-section  .main-header .options-rigth .item-option{
          position: relative;
        }
        .home-section  .main-header .options-rigth .item-option span{
          color: white;
          font-size: 22px;
          cursor: pointer;
        }
        .home-section  .main-header .options-rigth .item-option #number-notify{
          height: 15px;
          width: 15px;
          font-size: 10px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 50%;
          background-color: rgb(161, 7, 7);
          color: white;
          font-family: 'Calibri';
          position: absolute;
          top : 5px;
          right: 9px;
        }
        .sidebar.close ~ .home-section  .container-alert{
          left: -50px;
          width: calc(100% + 50px);
      }
      .home-section  .container-alert{
        background-color: #544e457e;
        width: calc(100% + 190px);
        height: 100%;
        position: absolute;
        top: 0;
        left: -190px;
        z-index: 9990999;
        display: none;
        flex-direction: row;
        align-items: center;
        justify-content: center;
      }
      .sidebar-disabled{
          background-color: #544e457e;
          width: 101%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          z-index: 9990999;
          display: none;
          flex-direction: row;
          align-items: center;
          justify-content: center;
      }
     
        .container-alert{
          background-color: #544e457e;
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          z-index: 9990999;
          display: none;
          flex-direction: row;
          align-items: center;
          justify-content: center;
          padding: 40px;
          overflow-y:auto ;
        }
        .container-alert .alert.appear-alert{
          width: max-content;
          max-width: 550px;
          min-width: 340px;
          background-color: white;
          border-radius: 20px;
          padding: 0 !important;;
     
       
        }
        .container-components{
          height: calc(100% - 45px);
          overflow-y: auto;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
        }
        .container-components .container-view{
          display: flex;
          flex-direction: column;
        }
        #footer {
          height: 40px;
          background-color: #f5f5f5;
          width: 100%;
         }
        .appear-alert{
          image-rendering: auto;
          animation:aparecer-alerta 300ms;
          animation-play-state: running;
          animation-fill-mode: forwards;
        }
        .container-alert .alert .header-alert{
          width: 100%;
          display:flex ;
          flex-direction: row;
          justify-content: end;
          padding: 20px;
          position: absolute;
        }
        .container-alert .alert .header-alert button{
          background-color: transparent;
          border: none;
          color: #e2e2e2;
          font-size: 17px;
          transition: all 0.1s ease;
        }
        .container-alert .alert .header-alert button:hover{
          color: #c3a574;
          transform: scale(1.1);
        }
        .container-alert .alert .body-alert{
          display: flex;
          flex-direction: column;
          padding: 20px;
          gap: 10px;
        }
        .container-alert .alert .footer-alert{
          display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: center;
          padding: 10px;
          gap: 10px;
        }
        .container-alert .alert .body-alert span:first-child{
          font-family: 'Source Sans Pro','Helvetica Neue',Helvetica,Arial,sans-serif;
          font-size: 18px;
          text-align: center;
          justify-content: center;
          margin-bottom: 10px;
        }
        .container-alert .alert .body-alert span:nth-child(2n){
          font-family: 'Source Sans Pro','Helvetica Neue',Helvetica,Arial,sans-serif;
          font-size: 15px;
          text-align: center;
          justify-content: center;
        }
        .container-alert .alert .body-alert label{
          color: #696969;
        }
        .container-alert .alert .body-alert .info{
          display: flex;
          flex-direction: row;
          align-items: center;
          padding: 10px;
        }
        .container-alert .alert .body-alert .info #text-info{
          text-align: left;
          font-size: 18px;
        }
        .container-alert .alert .body-alert .icon{
          padding: 10px;
          animation:rotar 1800ms linear;
          animation-play-state: running;
          animation-fill-mode: forwards;
        }
        .container-alert .alert .body-alert .icon i{
          font-size: 30px;
        }
        
        
        
        .logo img{
         width: 100%; 
        }
        .logo{
          width: 100%; 
          display: flex;
          flex-direction: column;
          align-items: center;
          font-weight: 0;
          
         }
         .logo span{
          text-align: center;
          font-weight: 100;
          color: #757575 ;
         }
         .logo span{
          background-color: transparent;
          border:none;
          width: 100%;
          overflow: hidden;
          font-size: 14px;
          font-weight: 100;
          transition: all 0.3s ease-in-out;
        }
        .sidebar.close .logo span {
          font-size: 4.5px;
          color: transparent;
        }
        .show-info{
          color: rgb(54, 133, 158);
          cursor: pointer;
        }
        @media screen and (max-width: 600px){
          body{
            padding: 0;
          }
          .logo img{
           width: 50%; 
          }
          .home-section{
            width: 100%;
            left: 0;
          }
          
          .sidebar{
            width: 100%;
            top:43px;
          }
          .sidebar.close   {
            transform: translateX(-80px);
            transition: all 0.54s ease;
          }
          .sidebar.close ~ .home-section {
            left: 0px;
            width: calc(100% );
        }
        .sidebar.close ~ .home-section .main-header {
          width: calc(100% );
      }
      .sidebar .nav-links li i {
        height: 40px;
        min-width: 50px;
        text-align: center;
        line-height: 40px;
        color: #544e45;
        font-size: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .sidebar.close ~ .home-section  .container-alert{
      width: 100%;
      top: 0;
      left: 0;
      right: 0;
  }
  .home-section  .container-alert{
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
  }
        }
      
        @keyframes aparecer-alerta {
          0% {
            transform: scale(0.7);
        }
        45% {
            transform: scale(1.05);
        }
      
        80% {
            transform: scale(0.95);
        }
        100% {
            transform: scale(1);
        }
        }
        @keyframes rotar {
          from {
              transform: rotate(0deg)
          }
          15% {
              
              transform: rotate(12deg) scale(1.2)
          }
          25% {
              transform: rotate(-12deg)
          }
          35% {
              transform: rotate(5deg)
          }
           40% {
              transform: rotate(-5deg) 
               
          }
          50% {
              transform: rotate(1deg)
          }
           60% {
              transform: rotate(-1deg)
          }
          70% {
              
            
          }
      }