
#sidebar_new {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000; 
    width: 340px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    overflow: auto;
}
#sidebar_new.show {
    transform: translateX(0);
}
#sidebar_new ul li a {
    display: inline-block;
    width: 100%;
    padding: 8px 16px;
    font-size: 16px;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    min-height: 40px;
}

#sidebar_new ul li a:hover {
    background-color: #008891;
    color: #FFFFFF !important;
    border-radius: 8px;
}

.nav-link:hover {
    color: #d1c8ab !important;
}

ul.level-1 { 
    padding: 0 12px;
}

ul.level-1 li {
    list-style: none;
    margin: 0;
    padding: 8px 8px 0 8px;
}

ul.level-1 .ph {
    font-size: 18px;
}

.menu-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    min-height: 40px;
}

.menu-label span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.rotate {
  transform: rotate(180deg);
}

.menu-label:hover {
    background: #008891;
    color: #FFFFFF !important;

}   

ul.level-2 {
    padding: 0 0 0 16px;
}

ul.level-2 .has-children {
    padding: 2px 0px 0 8px;
}

ul.level-3 {
    padding: 0 16px;
}

ul.level-3 li {
    padding: 2px 0 0 !important;
}

.header_menu_new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px 16px 36px;
}
.header_menu_new i {
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header_menu_new i:hover {
    background: #F4F4F4;
    border-radius: 8px;
}

.icon-principal {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

  /* bg-dark */
.bg-white {
  background-color: #FFFFFF !important; /* mismo gris oscuro de Bootstrap */
  color: #000000; /* texto claro por defecto en fondos oscuros */
}

/* vh-100 => altura 100% del viewport */
.vh-100 {
  height: 100vh !important;
}

/* position-fixed */
.position-fixed {
  position: fixed !important;
}

/* top-0 */
.top-0 {
  top: 0 !important;
}

/* start-0 (izquierda en LTR) */
.start-0 {
  left: 0 !important;
}

/* pt-5 (padding-top: 3rem en Bootstrap 4/5) */
.pt-5 {
  padding-top: 3rem !important;
}

/* d-none (display none) */
.d-none {
  display: none !important;
}

.blocked-screen, .pre-line-txt {
    display: none !important;
}

@media only screen and (max-width: 1080px) {

    body {
        background: #fff;
    }

    .img-blocked-high 
    {
        display: block;
    }

    .img-blocked {
        display: none;
    } 

    .sidebar, #sidebar_new, .main-panel ,.content-log {
        display: none !important;
    }

    .blocked-screen {
        display: flex !important;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        height: 100vh;
        padding: 0 32px;
    }

    .blocked-screen .ctn-txt {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 20px;
        /* width: 70vw; */
    }

    .blocked-screen .ctn-subtxt {
        display: flex;
        flex-direction: column;
    }

    .blocked-screen .ctn-txt  p {
        color: #566A80;
        text-align: center;
        font-family: Poppins;
        font-size: 28px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px; /* 114.286% */
        margin: 0;
    }

    .blocked-screen .ctn-txt  span {
        color: #566A80;
        text-align: center;
        font-family: Poppins;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: var(--typography-interface-body-body-height, 24px); /* 150% */
        letter-spacing: var(--typography-interface-body-body-space, 0);
    }

    .logo-blocked {
        height: 32px;
        position: absolute;
        bottom: 30px;
    }
}

@media only screen and (max-width: 768px) {

    .blocked-screen  {
        padding: 0 20px;
    }

    .pre-line-txt {
        display: block !important;
    }
}

@media only screen and (max-width: 480px) { 
    
    .img-blocked-high 
    {
        display: none;
    }

    .img-blocked {
        display: block;
    }

    .blocked-screen .ctn-txt  p {
        font-size: 24px;
    }

    .blocked-screen .ctn-txt  span {
        font-size: 16px;
    }

    .logo-blocked {
        height: 24px;
    }

}

@media only screen and (max-height: 545px) {
    .logo-blocked{
        display: none;
    }
}


