@media screen and (max-width: 1023px) {
    /*--- Header Content ---*/
    .menu-logo-content{
        display: flex;
        align-items: center;
    }
    .logo-dashboard{
        margin-left: 0;
        line-height: 0;
    }

    /*--- User Menu ---*/
    .user-button{
        margin-right: 20px;
    }
    .user-card{
        right: 20px;
        width: 300px;
    }

    /*--- Hamburguer Menu ---*/
    .movil-navbar {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 1rem;
        color: #000;
        opacity: 1;
    }
    .hamburger {
        position: relative;
        width: 20px;
        display: flex;
        flex-direction: column;
        cursor: pointer;
        height: 18px;
        justify-content: space-between;
        transition: 0.3s ease;
    }
    .bar {
        width: 100%;
        height: 2px;
        background-color: #000;
        transition: 0.3s ease;
        border-radius: 2px;
        position: relative;
    }
    .hamburger:hover .bar {
        background-color: #cd002f;
    }
    .hamburger.close-sidebar .bar:nth-child(1) {
        position: absolute;
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        width: 100%;
        transform-origin: center;
    }
    .hamburger.close-sidebar .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.close-sidebar .bar:nth-child(3) {
        position: absolute;
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
        width: 100%;
        transform-origin: center;
    }

    /*--- SIDEBAR ---*/
    .sidebar{
        left: -250px; 
        z-index: 1000; 
        transition: left 0.3s ease; 
    }
    .sidebar.open-sidebar{
        left:0;
    }

    /*--- Dashboard Content ---*/
    .dashboard-content{
        margin-left: auto;
        position: relative;
        width: 100%;
    }
}

/*---- Tablet ----*/
@media screen and (max-width: 768px) {

}

/*---- Movil ----*/
@media screen and (max-width:580px){
    /*--- Sidebar ---*/
    .sidebar.sidebar.open-sidebar{
        width: 100%;
    }

    /*--- User Menu ---*/
    .user-name{
        display: none;
    }

    /*--- Modal Content ---*/
    .modal-content, .modal-content.modal-warenkorb{
        min-width: auto;
        width: 95%;
    }

    /*--- Breadcrump ---*/
    .dashboard-title {
        flex-wrap: wrap;
        gap: 10px;
    }
    .dashboard-title{
        gap:6px;
    }
    .dashboard-title a, .dashboard-title h1 {
       font-size: 13px;
    }
}

/*---- Small Movil ----*/
@media screen and (max-width:320px){
    .user-card{
        width: 280px;
    }
}