.app-sidebar__user-avatar {
    width: 100%; /* Tamaño inicial */
    height: 100%; /* Tamaño inicial */
    border-radius: 50%; /* Para hacerlo circular */
    overflow: hidden; /* Oculta cualquier contenido fuera del borde */
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease; /* Transición suave para escala, brillo y sombra */
    background: linear-gradient(45deg, #ff7e5f, #feb47b); /* Fondo con gradiente de color */
}

.app-sidebar__user-avatar:hover {
    transform: scale(1.2); /* Aumenta el tamaño al pasar el mouse */
    filter: brightness(120%); /* Aumenta el brillo al pasar el mouse */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5); /* Agrega un resplandor alrededor del avatar al pasar el mouse */
}

.headerRegister, .header-primary{
    background: #009688;
    color: #FFF;
}

.headerUpdate{
    background: #007bff;
    color:#FFF;
}
.notBlock{
    display: none;
}

/*Estilos Login*/
#divLoading{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: rgba(254, 254, 255, .65);
    z-index: 9999;
    display: none;
}

#divLoading img{
    width: 50px;
    height: 50px;
}
.required{
    color: red;
    font-size: 13pt;
    font-weight: bold;
}

/*Estilos para cargar fotos categorias*/
.prevPhoto {
    display: flex;
    justify-content: space-between;
    width: 300px;
    height: 200px;
    border: 1px solid #CCC;
    position: relative;
    cursor: pointer;
    background: url(../images/portada_categoria.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin: auto;
}
.prevPhoto > div {
    width: 100%;
    height: 100%;
}

.prevPhoto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.prevPhoto label{
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.prevPhoto img{
    width: 100%;
    height: 100%;
}
.upimg, .notBlock{
    display: none !important;
}
.errorArchivo{
    font-size: 16px;
    font-family: arial;
    color: #cc0000;
    text-align: center;
    font-weight: bold; 
    margin-top: 10px;
}
.delPhoto{
    color: #FFF;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    background: red;
    position: absolute;
    right: -10px;
    top: -10px;
    z-index: 10;
}

#tbl_list_productos img{
    width: 50px;
}
.imgProductoDelete{
    width: 175px;
}

/* urls*/
.linkw {
    text-decoration: none !important;
    color: inherit;
}

.linkw:hover {
    text-decoration: none !important;
}