﻿* {
    margin: 0;
    padding: 0;
    text-decoration: none;
}
body {
    font-family: "Roboto", sans-serif;
}
.contenedor {
    display: grid;
/*    font-family: sans-serif;*/
    height: 100vh;
    grid-template-areas: "empresa   btnPrincipales" "sidebar   main";
    grid-template-columns: 250px 1fr;
    grid-template-rows: 80px 1fr;
/*    background-color: red;*/
}
.empresa {
    grid-area: empresa;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 60px 1fr;
    background-color: #1e1343;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}
.empresa div {
    margin-top: 5px;
    margin-bottom: 5px;
    display: flex;
}
.empresa .empresaLogo {
    height: 60px;
    width: 60px;
}
.empresa .empresaLetras {
    height: 32px;
    width: 104px;
}
.btnPrincipales {
    z-index: 5000;
    grid-area: btnPrincipales;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 48px 48px 48px;
    background-color: #1e1343;
    justify-content: right;
    align-items: center;
    padding-right: 10px;
}
.btnPrincipales .Menu {
    height: 32px;
    position: relative;
    display: flex;
    justify-content: left;
    align-items: center;
}
.btnPrincipales .btnPrincipal {
    height: 48px;
    width: 48px;
    position: relative;
}
.btnPrincipales .btnPrincipal .contNotify {
    z-index: 100;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #a2191f;
    font-size: 16px;
    font-weight: 700;
    background: #ffd7d9;
    width: 22px;
    height: 22px;
    border-radius: 10px;
    margin-top: -53px;
    margin-left: 26px;
    user-select: none;
}
.sidebar {
    grid-area: sidebar;
    background: #1e1343;
    transition-property: left;
    transition: all 0.3s linear;
    border: 1px outset #200c41;
    border-width: 1px 1px 1px 1px;
    z-index: 5000;
}
.sidebar .sidebarUser {
    display: grid;
    grid-gap: 5px;
    grid-template-columns: 1fr;
    justify-content: center;
    text-align: center;
    border: 1px outset #200c41;
    border-width: 0px 0px 1px 0px;
}
.sidebar .imgUserSidbar {
    width: 80px;
    height: 80px;
    border-radius: 100px;
    transition-property: left;
    transition: all 0.3s linear;
}
.sidebar .NombreUser {
    color: #C0B9CC;
    margin-bottom: 0px;
}
.sidebar .AccesoTitUser {
    color: #C0B9CC;
    margin-bottom: 0px;
}
.sidebar .AccesoValUser {
    color: #C0B9CC;
    margin-bottom: 10px;
}
.sidebar .NombreUser .h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
}
.sidebar .AccesoTitUser .h4 {
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
}
.sidebar .AccesoValUser .h4 {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}
.sidebar .Menu {
    margin-left: 0px;
    width: 246px;
    transition: all 0.3s linear;
    transform: translateX(0px);
}
.sidebar .RadMenu ul.rmRootGroup {
    background: #1e1343;
    box-shadow: none;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0px;
    padding-left: 0px;
    padding-Right: 0px;
    box-sizing: border-box;
    color: #C0B9CC;
    border-width: 0px;
    font-size: 16px;
    line-height: 40px;
    border: 0px;
}
.sidebar .RadMenu .rmItem {
    background: #1e1343;
    margin-left: 0px;
    border: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-left: -1px;
    width: 250px;
}
.sidebar .RadMenu .rmRootLink {
    background-color: #1e1343;
}
.sidebar .RadMenu_Inicial .rmItem .rmLink {
    background-color: #1e1343;
    margin-left: 0px;
    text-decoration: none;
    height: 40px;
}
.sidebar .RadMenu_desplazarleft .rmItem .rmLink {
    background-color: #1e1343;
    margin-left: 0px;
    text-decoration: none;
    height: 40px;
    border-left: 194px solid #1e1343;
    width: 6px;
}
.sidebar .RadMenu_Inicial .rmText {
    margin-right: -75px;
    width: 213px;
}
.sidebar .RadMenu_desplazarleft .rmText {
    display: none;
}
.sidebar .RadMenu .rmItem .rmLink:hover,
.sidebar .RadMenu .rmItem .rmFocused,
.sidebar .RadMenu .rmItem .rmSelected,
.sidebar .RadMenu .rmItem .rmExpanded {
    background: #2f215f;
    border: 0px;
    /*font-weight: bold;*/
    color: #C0B9CC;
    box-shadow: none;
    /*font-weight: bold;*/
}
.sidebar .RadMenu_Inicial .rmItem .rmLink:hover {
    /*border-left: 5px solid #00EEFF;*/
}
.sidebar .RadMenu_desplazarleft .rmItem .rmLink:hover {
    /*border-left: 194px solid #00EEFF;*/
}
.sidebar .RadMenu_Inicial ul.rmVertical .rmLeftImage {
    padding-top: 10px;
    padding-left: 13px;
}
.sidebar .RadMenu_desplazarleft ul.rmVertical .rmLeftImage {
    padding-left: 10px;
}
.sidebar .dTabs {
    display: none;
}
.main {
    grid-area: main;
    display: grid;
    grid-gap: 0px;
    grid-template-columns: 1fr;
    text-align: left;
    justify-content: left;
    transition-property: left;
    transition: all 0.3s linear;
    /*padding: 10px;*/
    padding: 0px;
    margin: 5px;
    width: -webkit-calc(100% - 13px);
    width: -moz-calc(100% - 13px);
    width: calc(100% - 13px);
    height: -webkit-calc(100% - 13px);
    height: -moz-calc(100% - 13px);
    height: calc(100% - 13px);
    /*background-color: yellow;*/

}
.verwin2 {
    transition: all 0.3s linear;
    transition-property: left ;
}

.toolmsj {
    font-size: 14px;
    margin: 5px;
}
.desplazarleftsidebar {
    transform: translateX(-190px);
}
.desplazarleftmain {
    transform: translateX(-190px);
    width: -webkit-calc(100% + 178px);
    width: -moz-calc(100% + 178px);
    width: calc(100% + 178px);
    /*background-color: green;*/
}
.desplazarrighttmain {
    transform: translateX(-190px);

  /*  background-color: blue;*/
}
.sidebar .desplazarleftimgUserSidbar {
    width: 48px;
    height: 48px;
    border-radius: 100px;
    margin-top: 20px;
    margin-bottom: 20px;
    transform: translateX(95px);
}
.sidebar .desplazarleftNombreUser {
    display: none;
}
.sidebar .desplazarleftAccesoTitUser {
    display: none;
}
.sidebar .desplazarleftAccesoValUser {
    display: none;
}
.ContenedorWin {
    width: 100%;
    height: 100%;
}
.ContenedorWin2 {
    transition-property:none;
}
.ContenedorWin3 {
    transition-property: left;
    transition: all 0.3s linear;
}
.RadWindow .RadWindow_MetroTouch .ContenedorWin3 .rwNoTitleBar {
    transition-property: left;
    transition: all 0.3s linear;
}


/*******************************Panel Notificador*********************************************/

.PanelNot {
    position: fixed;
    z-index: 10000;
    width: 100%;
    top: 60px;
    border-radius: 5px;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.377);
    left: -webkit-calc(100% - 360px);
    left: -moz-calc(100% - 360px);
    left: calc(100% - 360px);
    width: -webkit-calc(100% - 100%);
    width: -moz-calc(100% - 100%);
    width: calc(100% - 100%);
    min-width: 300px;
    user-select: none;
    background-color: white; /*1er opcion*/
    height: -webkit-calc(100% - 100px);
    height: -moz-calc(100% - 100px);
    height: calc(100% - 100px);
}
.PanelNotContenido {
    margin: 5px;
    height: 100%;
    overflow: auto;
    height: -webkit-calc(100% - 10px);
    height: -moz-calc(100% - 10px);
    height: calc(100% - 10px);
    scrollbar-color: rgba(0, 0, 0, .5) rgba(0, 0, 0, 0);
    scrollbar-width: thin; /* "auto" or "thin" */
}
/* Estilos scroll del notificador*/
.PanelNotContenido::-webkit-scrollbar {
    -webkit-appearance: none;
}
.PanelNotContenido::-webkit-scrollbar:vertical {
    width: 10px;
}
    .PanelNotContenido::-webkit-scrollbar-button:increment, .PanelNotContenido::-webkit-scrollbar-button {
        display: none;
    }
.PanelNotContenido::-webkit-scrollbar:horizontal {
    height: 10px;
}
.PanelNotContenido::-webkit-scrollbar-thumb {
    background-color: #797979;
    border-radius: 20px;
    border: 2px solid #f1f2f3;
}
.PanelNotContenido::-webkit-scrollbar-track {
    border-radius: 10px;
}

.toolNotContenedorFondo {
    padding-bottom: 5px;
}
.toolNotContenedor {
    display: grid;
    align-items: center;
    margin: 5px;
    grid-gap: 10px;
    user-select: none;
}
.toolNotContenedor .Notheader {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 40px 40px;
}
 .btnNot {
    border: none;
    font-size: 28px;
    font-weight: 800;
    width: 30px;
    height: 30px;
    background: white;
    color: #5F656E;
    cursor: pointer;
    border-radius: 100px;
}
 .Notlist .btnNot {
    overflow: hidden;
    box-shadow: 5px 5px 5px 5px rgba(0.377, 0.377, 0.377, 0.377);
    box-shadow: 0px 12px 28px 0px rgba(0, 0, 0, 0.1),0px 2px 4px 0px rgba(0, 0, 0, 0.2),inset 0px 0px 0px 1px rgba(255, 255, 255, 0.5);
}
 .btnNot2 {
    border: none;
    width: 100%;
    margin-left:10px;
    margin-right:10px;
    height: 30px;
    background: white;
    color: #5490E3;
    cursor: pointer;
    border-radius: 10px;
}
 .btnNot:hover {
    background: #F2F2F2;
}
 .btnNot:active {
    background: #E3E4E5;
}
 .btnNot2:hover {
    background: #F2F2F2;
}
 .btnNot2:active {
    background: #E3E4E5;
}
 .btntxt {
    height: 16px;
}
.btntxt2 {
    font-size: 18px;
    font-weight: 600;
    height: 30px;
}
.btntxt3 {
    font-weight: 700;
    height: 30px;
}
 .NotGrupoVistoheader {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 100px;
}
 .animado {
  opacity:0;
  transition: all 0.5s;
}
 .Notlist {
    display: grid;
    grid-template-columns: 1fr 0px;
}

.NotGrupoVistolist {
    cursor: pointer;
    border-radius: 10px;
    grid-gap: 10px;
    margin: 0px;
    margin-left: -5px;
}
.NotGrupoVistolist:hover {
    background: #F2F2F2;
}
 .NotGrupoVistolist:active {
    background: #E3E4E5;
}
.NotGrupoVistolistDet {
}
.NotGrupoVistolistDet .btnNot {
  margin-left:-40px;
}
.NotGrupoVistolistDet2 {
    border-radius: 100px;
    position: relative;
    left: -30px;
}
 .NotGrupoVistolistCont {
    margin: 10px;
    margin-right:45px;
}

 /********************tool Notificador****************************/
.toolNotDetGeneral {
    width: 210px;
    user-select: none;
}
.toolNotDetGeneral .Notheader {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 40px;
}
.toolNotDetGeneral .NotGrupoVistolist {
    cursor: pointer;
    border-radius: 10px;
    grid-gap: 10px;
    margin: 0px;
}
.toolNotDetGeneral .NotGrupoVistolistCont {
    display: grid;
    grid-template-columns: 30px 1fr;
    padding: 5px;
    width: 100%;
    margin: 0px;
}
.detalleNot {
    margin: 0px 0px 0px 0px;
}
.detalleNot {
    display: grid;
    background-color: white;
    grid-gap: 0px;
    height:100%;
    grid-template-columns: 1fr 60px 230px;
    grid-template-rows: 30px 40px 40px 300px 60px;
    grid-template-areas:
        "tit1    tit1    tit1"
        "et1     et2     et3"
        "et4     et4     et4"
        "et5     et5     et5"
        "et6     et6     et6";
}
.detalleNot .tit1 {
    grid-area: tit1;
    background-color: #1e1343;
    color: white;
    height: 100%;
}
.detalleNot .tit1 .dphcenter {
    font-size: 18px;
    font-weight: 500;
    color: #0f62fe;
    height: 100%;
    margin-top: 2px;
}
.detalleNot .et1 {
    grid-area: et1;
}
.detalleNot .et2 {
    grid-area: et2;
    margin-top: 10px;
}
.detalleNot .et3 {
    grid-area: et3;
    margin-top: 10px;
}
.detalleNot .et4 {
    grid-area: et4;
    margin-left: 10px;
    margin-right: 10px;
}
.detalleNot .et5 {
    grid-area: et5;
    margin:10px;
    margin-top:10px;
}
.detalleNot .et5 .conEditor {
    height: 100%;
    border: 2px solid #1e1343;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.377);
    color: black;
    background-color: #e5e5e5;
    border-radius: 20px;
    align-items: center;
    grid-gap: 0px;
}
.detalleNot .et5 .conEditor .conEditortxt {
    margin:10px;
    margin-right:5px;
}
.detalleNot .et6 {
    grid-area: et6;
}
.detalleNot .et6 .btnAcciones {
    grid-area: btnAcciones;
    display: grid;
    align-items: center;
    justify-content: center;
    height: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "btn1 btn2 btn3";
}
.detalleNot .et6 .btnAcciones .btn2 {
    display: flex;
    grid-area: btn2;
    justify-content: center;
    margin-bottom:0px;
}
.MyEditor {
    overflow: scroll;
}
/*Responsive Design*/
/* 
smart wathch 320×320, 240×240
xs   --  320px — 480px: Móviles -- H 320x480,  360x640, 480x320, 480x854
s    --  481px — 768px: iPads, Tablets -- H 480x320, 767x 480, 768x1024, 
m    --  769px — 1023px: Small screens, laptops -- H 800x600, 960x540
lg   --  1024px — 1299px: Desktops --H 1024x640, 1024x800, 1280x1024
xg   --  1300px en adelante —  Extra large -- 1600x900, 1920x1080
*/
/* xg   --  1401px en adelante —  Extra large screens, TV */
/* lg   --  1024px — 1299px: Desktops */
/* m    --  769px — 1023px: Small screens, laptops  */
/*Medida Default*/
/* s    --  481px — 768px: iPads, Tablets  */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-190px);
    }
    .main {
        transform: translateX(-190px);
        width: -webkit-calc(100% + 180px);
        width: -moz-calc(100% + 180px);
        width: calc(100% + 180px);
    }
    .sidebar .imgUserSidbar {
        width: 48px;
        height: 48px;
        border-radius: 100px;
        margin-top: 10px;
        transform: translateX(95px);
    }
    .sidebar .NombreUser {
        display: none;
    }
    .sidebar .AccesoTitUser {
        display: none;
    }
    .sidebar .AccesoValUser {
        display: none;
    }
    .desplazarrightsidebar {
        transform: translateX(0px);
    }

    .sidebar .desplazarrightimgUserSidbar {
        width: 100px;
        height: 100px;
        border-radius: 100px;
        margin-top: 20px;
        margin-bottom: 10px;
        transition-property: left;
        transition: all 0.3s linear;
        transform: translateX(0px);
    }
    .sidebar .desplazarrightNombreUser {
        display: block;
    }
    .sidebar .desplazarrightAccesoTitUser {
        display: block;
    }
    .sidebar .desplazarrightAccesoValUser {
        display: block;
    }
    .sidebar .RadMenu_Inicial .rmItem .rmLink {
        border-left: 194px solid #1e1343;
        width: 6px;
    }
    .sidebar .RadMenu_Inicial .rmItem .rmLink:hover {
        border-left: 194px solid #00EEFF;
    }
    .sidebar .RadMenu_Inicial .rmText {
        display: none;
    }
    .sidebar .RadMenu_Inicial ul.rmVertical .rmLeftImage {
        padding-left: 10px;
    }
    .sidebar .RadMenu_desplazarright .rmItem .rmLink {
        border-left: 5px solid #1e1343;
        width: 195px;
    }
    .sidebar .RadMenu_desplazarright .rmItem .rmLink:hover {
        border-left: 5px solid #00EEFF;
    }
    .sidebar .RadMenu_desplazarright .rmText {
        display: block;
    }
    .sidebar .RadMenu_desplazarright ul.rmVertical .rmLeftImage {
        padding-left: 10px;
    }
    


}
/* xs   --  320px — 480px: Móviles   */
@media (max-width: 480px) {
    .contenedor {
        grid-template-areas: "empresa empresa" "btnPrincipales btnPrincipales" "sidebar main";
        grid-template-columns: 250px 1fr;
        grid-template-rows: 80px 50px 1fr;
    }
    .btnPrincipales {
        grid-template-columns: 48px 48px 48px 48px;
        justify-content: left;
        margin-left: 0px;
    }
    /*******************************Panel Notificador*********************************************/
    .PanelNot {
        top: 122px;
        height: -webkit-calc(100% - 170px);
        height: -moz-calc(100% - 170px);
        height: calc(100% - 170px);
        left: -webkit-calc(100% - 310px);
        left: -moz-calc(100% - 310px);
        left: calc(100% - 310px);
    }
}
/* xxs   --  < 320px */
@media (max-width: 369px) {
    .contenedor {
        grid-template-columns: 190px 1fr;
    }
    .sidebar {
        transform: translateX(-200px);
    }
    .sidebar .imgUserSidbar {
        transform: translateX(0px);
    }

    .sidebar .sidebarlist .srlLogo {
        transform: translateX(0px);
    }
    .desplazarrightsidebar {
        transform: translateX(0px);
        width: -webkit-calc(100% + 60px);
        width: -moz-calc(100% + 60px);
        width: calc(100% + 60px);
    }
    .desplazarrighttmain {
        transform: translateX(0px);
    }
    .sidebar .RadMenu_Inicial {
        display: none;
    }
    .sidebar .RadMenu_desplazarright {
        display: block;
    }
}

@media (max-width: 319px) {
    .contenedor {
        grid-template-columns: 80px 1fr;
    }
    .sidebar {
        transform: translateX(-180px);
    }
    .main {
        transform: translateX(-80px);
        width: -webkit-calc(100% + 70px);
        width: -moz-calc(100% + 70px);
        width: calc(100% + 70px);
    }
    .desplazarrightsidebar {
        transform: translateX(0px);
        width: -webkit-calc(100% + 168px);
        width: -moz-calc(100% + 168px);
        width: calc(100% + 168px);
    }
    .desplazarrighttmain {
        transform: translateX(-80px);
    }
    .sidebar .RadMenu_desplazarright .rmItem {
        width: 192px;
    }
    .sidebar .RadMenu_desplazarright .rmItem .rmLink {
        border-left: 5px solid #1e1343;
        width: 192px;
    }
}

@media (max-width: 250px) {
    .contenedor {
        grid-template-columns: 0px 250px;
    }
    .main {
        transform: translateX(0px);
        width: -webkit-calc(100% - 10px);
        width: -moz-calc(100% - 10px);
        width: calc(100% - 10px);
    }
    .desplazarrightsidebar {
        transform: translateX(0px);
        width: -webkit-calc(100% + 248px);
        width: -moz-calc(100% + 248px);
        width: calc(100% + 248px);
    }
}
/*********************Verificacion************************************************/

.windesplazarleftmain {
    left: 65px !important;
    width: -webkit-calc(100% - 65px) !important;
    width: -moz-calc(100% - 65px) !important;
    width: calc(100% - 65px) !important;
    transform: translateX(-190px);
}
.windesplazarrighttmain {
    transform: translateX(-190px);
/*    background-color: blue;*/
}