:root{
    --w-dsh:82px;
    --w-dsh-extend:300px;

    --color-empr:rgba(59,130,246,1);
    --color-fond:rgba(24,24,27,1);

    --border-color: rgba(39,39,42,1);
    --color-text:rgba(113,113,122,1);

    
    --border-color: rgb(214 214 214);

    --color-fond:rgb(255, 255, 255);
    --color-text:rgb(0, 0, 0);

}

body{
    height: 100vh;
    color: var(--color-text);
}

.dashb{
    width: 100%;
    height: 100vh;
    background: var( --color-fond);
    display: inline-flex;
    position: fixed;
}

.dashb .mai-n{
    width: calc(100% - var(--w-dsh));
    height: 100%;
    background: var( --color-fond);
    position: relative;
}

.dashb .mai-n .contenido{
    height: 100vh;
    overflow: hidden;
}

.dashb .mai-n .m-p{
    height: 50px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: rgb(236 236 236 / 52%);
}

.dashb .mai-n .m-p .user_select{
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#user-mn.dropdown-content {
    background-color: var( --color-fond);
    overflow: hidden;
    display: none;
}

#user-mn.dropdown-content li>a, #user-mn.dropdown-content li>span {
    color: var( --color-empr);
}

.dashb .mai-n .m-p .user-img{
    --wd:30px;
    width: var(--wd);
    height: var(--wd);
    border-radius: var(--wd);
    overflow: hidden;
    background: rgb(199 199 199);
}

.dashb .mai-n .m-p .user-img img{
    width: 100%;
    min-height: 100%;
}

.dashb .mai-n .m-p ul{
    display: inline-flex;
    align-items: stretch;
    justify-content: space-between;
    margin: 0;
}

.dashb .mai-n .m-p ul li{
    min-width: 100px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashb .mai-n .m-p ul li:hover, .dashb .mai-n .m-p ul li.active{
    color: var(--color-empr);
    border-bottom: 2px solid var(--color-empr);
}

.dashb .mun{
    width: var(--w-dsh);
    height: 100vh;
    background: var( --color-fond);
    padding: 0 15px;
    overflow-x: hidden;
    border-right: 2px solid var(--border-color);
    position: relative;
    transition: all 0.8s;
}

.dashb .mun.extend{
    width: var(--w-dsh-extend);
}

.dashb .mun .action-rezise-menu{
    position: absolute;
    bottom: 21px;
    right: 7px;
    cursor: pointer;
    height: 10px;
}

.dashb .mun .action-rezise-menu i{
    transition: all 0.8s;
}

.dashb .mun.extend .action-rezise-menu i{
    transform: rotate(180deg);
}

.dashb .mun .element{
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    border-radius: 0.5rem;
    margin: 10px 0;
    cursor: pointer;
    transition: all 0.8s, background .1s,color .1s ;
}

.dashb .mun.extend .element {
    justify-content: space-between;
    padding: 0 15px;
}

.dashb .mun.extend .element .info-visible-extend{
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 61%;
    font-size: 0.9rem;
}

.dashb .mun .only-extend{
    display: none;
}

.dashb .mun.extend .only-extend{
    display: block;
}

.dashb .mun .element:not(.exception):hover, .dashb .mun .element:not(.exception).active{
    background: var(--color-empr);
    color: rgb(255, 255, 255);
}

.dashb .mun .element .logo{
    width: 46px;
    color: var(--color-empr);
}


.content{
    width: 100%;
    height: calc(100% - 50px);
    display: inline-flex;
    overflow: auto;
}

.content .medie-cont{
    width: 88%;
    height: 100%;
    overflow: visible;
    padding: 20px;
    margin: auto;
}

.content .vertical-list{
    width: 12%;
    height: 100%;
    background: rgb(236 236 236 / 52%);
    padding: 10px;
    width: 0;
    display: none;
}

.content .vertical-list .p-card{
    width: 100%;
    height: 100px;
    background: white;
    border: 1px solid rgba(190, 190, 190, 0.534);
    border-radius: 6px;
    margin: 20px 0;
}

.content .vertical-list .p-card:hover{
    border: 2px solid var(--color-empr);
}

.m-p .intermedio{
    display: flex;
    min-width: 11%;
    justify-content: space-between;
    margin-right: 10px;
}

.m-p .intermedio .elem{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.m-p .intermedio .elem a{
    color: var(--color-empr);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.m-p .intermedio .notific{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.m-p .intermedio .notific i{
    cursor: pointer;
    position: relative;
}

.m-p .intermedio .notific.active i{
    color: var(--color-empr);
    animation: notf 2s infinite;
}

.m-p .intermedio .notific.active i::after{
    content: '';
    --rad: 6px;
    width: var(--rad);
    height: var(--rad);
    border-radius: var(--rad);
    background: #00cf23;
    position: absolute;
    right: 3px;
    top: 3px;
}

@keyframes notf {
    5%{transform: rotate(20deg);}
    10%{transform: rotate(-20deg);}
    15%{transform: rotate(20deg);}
    20%{transform: rotate(0deg);}
}

tbody tr:nth-child(2n) {
    background: rgb(255 255 255);
}

.user-view .background{
    background: var(--color-empr);
    background-image: linear-gradient(45deg, #000000a8, transparent);
}

@media only screen and (max-width: 600px) {
    .dashb .mai-n {
        --w-dsh: 0px;
    }

    .vertical-list{
        display: none;
    }

    .content .medie-cont {
        width: 100%;
    }

    .dashb .mai-n .m-p ul li {
        font-size: 0.8rem;
        min-width: 70px;
    }

    .m-p .intermedio .notific i {
        font-size: 1.4rem;
    }

    .dashb .mai-n .m-p {
        height: 45px;
    }
}