/* COLORES
**  Fondo  #ECEFF1;
**  Panel Lateral  #3A4651;
**  Letras  #FFFFFF;
**
*/


/*
font-color: #3A4651

Azul Boton: #109AC8
Azul Boton:hover: #086787
ROJO Boton: #F70202
ROJO Boton:hover :#7B0000

GRIS Boton: #535F6A
GRIS Boton:hover : #6D7882

gris para celda seleccionada: #D6DEE3
Texto celda seleccionada: #535F6A
Color grisaceo azulado universal: #3A4651

ACORDEON: FONDO PANEL: #535F6A
FONDO NIVEL: (NO ACTIVO): #6D7882

*/

@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/nunito-sans/NunitoSans-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/nunito-sans/NunitoSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/nunito-sans/NunitoSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/nunito-sans/NunitoSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/nunito-sans/NunitoSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/nunito-sans/NunitoSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

body {
    background-color: #ECEFF1;
    font-family: 'Nunito Sans', sans-serif;
    color: #3A4651;
}

body .ui-widget,
body .ui-widget .ui-widget {
    font-family: 'Nunito Sans', sans-serif;
}

body .ui-float-label>label {
    top: 25%;
}

body .ui-float-label {
    margin: 10px;
}


/* **  Animated Fadein ** */

.animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fast {
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.fadeOut {
    animation-name: fadeOut;
}

body input {
    width: 100%;
    /* margin-bottom: 10px !important; */
}


/* OTRA ANIMACION DE FADE */

.oculto {
    opacity: 0;
}

.m-fadeOut {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 300ms, opacity 300ms;
}

.m-fadeIn {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s linear 0s, opacity 300ms;
}


/* Fade In/Out */

.elementToFadeInAndOut {
    -webkit-animation: fadeinout 4s linear forwards;
    animation: fadeinout 4s linear forwards;
    opacity: 0;
}

@-webkit-keyframes fadeinout {
    50% {
        opacity: 1;
    }
}

@keyframes fadeinout {
    50% {
        opacity: 1;
    }
}


/* ** Resizable ** */

body .redimensionable {
    border: 2px solid #D6DEE3;
    padding: 20px;
    /*width: 300px;*/
    resize: both;
    overflow: auto;
}

body .zoom {
    transition: transform .2s;
    /* Animation */
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

body .zoom:hover {
    transform: scale(1.5);
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}


/* ** Spinner ** */

.spinner-container {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(69, 69, 69, 0.3);
    z-index: 1100;
}

.spinner-container>p-progressSpinner {
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    z-index: 100;
    position: relative;
}


/* Titulos Pantallas */

body h1.titulo {
    font-size: 24px;
    font-weight: 600;
    margin: 12px 0 6px;
    padding: 0 7px;
}


/* ** MENU LATERAL ** */

body .layout-menu {
    font-size: 16px;
}

body .menu-lateral-plegar-boton {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: white;
    z-index: 999999;
}


/*logotipo*/

.layout-wrapper .layout-sidebar .sidebar-logo img {
    margin-left: 0px;
    max-width: 240px;
}

body .layout-wrapper .layout-sidebar .sidebar-logo {
    height: 48px;
    margin-left: 0px;
    padding-top: 0px;
}

body .layout-wrapper .layout-sidebar .sidebar-logo {
    background-color: #3A4651;
}

@media (max-width: 1024px) {
    .layout-wrapper .layout-main {
        margin-left: 0px !important;
    }
    .layout-wrapper-static .layout-main .layout-topbar {
        width: 100% !important;
    }
}


/*Panel*/

body .layout-wrapper .layout-sidebar .ui-scrollpanel {
    background-color: #3A4651;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}


/*Etiquetas Opciones*/

body .layout-wrapper .layout-sidebar .layout-menu li {
    padding: 0 30px 0px 10px;
}

body .layout-wrapper .layout-sidebar .layout-menu li>a {
    color: #FFFFFF;
}

body .layout-wrapper .layout-sidebar .layout-menu>li>a.active-menuitem-routerlink {
    color: #FFFFFF;
}

body .layout-wrapper .layout-sidebar .layout-menu li>a i {
    color: #FFFFFF;
}


/* Iconos */

.layout-wrapper .layout-sidebar .layout-menu li>a i {
    float: right;
    width: 32px;
    height: 32px;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -15px;
}


/* celda */

body .layout-wrapper .layout-sidebar .layout-menu>li.active-menuitem>a {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
}

body .layout-wrapper .layout-sidebar .layout-menu li {
    padding: 0px 30px 5px 10px;
}


/* ** TOP BAR ** */

body .layout-wrapper .layout-main .layout-topbar {
    z-index: 999999;
    height: 48px;
    left: 0;
    width: 100%;
    position: absolute;
    top: 0px;
    background-color: #3A4651;
}


/*
Si la pantalla mide más de 1025px, Left=0
Si la pantalla mide menos de 1025px, Left=70
*/

body .top-bar-logo {
    position: absolute;
    top: 0;
    left: 20px;
    height: 46px;
}

@media (max-width: 1025px) {
    body .top-bar-logo {
        position: absolute;
        top: 0;
        left: 70px;
        height: 46px;
    }
}

@media (max-width: 1024px) {
    body .layout-wrapper .layout-main .layout-topbar {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
    }
}

.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu>li.profile-item>a {
    top: -18px;
}


/* body .layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu > li.profile-item > ul:before {
  right: 8px !important;
} */

.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu>li.profile-item>ul:before {
    left: 226px;
}

.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu>li.profile-item>ul {
    /* right: 0; */
    left: -210px;
}

.layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu>li>a i {
    font-size: 41px;
}

body .layout-wrapper .layout-main .layout-topbar .layout-topbar-menu-wrapper .topbar-menu>li.profile-item {
    float: right;
    margin-left: 0;
    padding-top: 4px;
}

/*
body .layout-wrapper .layout-main .layout-breadcrumb {
    padding-top: 48px;
}
*/
.app-breadcrumb {
    position: relative;
    left: -20px;
    width: calc(100% + 37px);
    display: block;
}


body .layout-wrapper .layout-main .layout-breadcrumb {
    padding-top: 36px;
    padding-bottom: 10px;
    line-height: 23px;
}

.layout-wrapper .layout-main .layout-breadcrumb .layout-breadcrumb-options {
    float: right;
    padding: 3px 3px 0 0;
    height: 100%;
}


/* ** FOOTER ** */

body .layout-wrapper .layout-main .layout-footer img {
    margin-top: 0px;
    float: right;
}

body .layout-wrapper .layout-main .layout-footer {
    display: none;
    position: fixed;
    bottom: 0;
    width: calc(100% - 289px)
}

@media (max-width: 1024px) {
    .layout-wrapper .layout-main .layout-footer {
        width: calc(100% - 31px) !important;
    }
}

body .layout-main {
    margin-bottom: 75px;
}


/* ** DASHBOARD ** */

.dashboard p-panel>div:first-child {
    height: 100%;
}

.ruta-sugerida-carousel-dashboard {
    /* height: 100%;
	 */
    height: calc( 25vw - 68.5px);
}


/* ** INDICADORES CARD ** */

.dashboard .overview-box.overview-box-1 .overview-box-header {
    background-color: #42c1eb;
}

.dashboard .overview-box.overview-box-1 .overview-box-content {
    background-color: #4296eb;
    height: 112px;
}

.dashboard .overview-box.overview-box-1 .overview-box-content .overview-box-icon {
    background-color: #4296eb;
}

.dashboard .overview-box.overview-box-2 .overview-box-header {
    background-color: #a475f0;
}

.dashboard .overview-box.overview-box-2 .overview-box-content {
    background-color: #8646ec;
    height: 112px;
}

.dashboard .overview-box.overview-box-2 .overview-box-content .overview-box-icon {
    background-color: #8646ec;
}

.dashboard .overview-box.overview-box-3 .overview-box-header {
    background-color: #eb9642;
}

.dashboard .overview-box.overview-box-3 .overview-box-content {
    background-color: #eb6c42;
    height: 112px;
}

.dashboard .overview-box.overview-box-3 .overview-box-content .overview-box-icon {
    background-color: #eb6c42;
}


/* .dashboard .overview-box .overview-box-content .overview-box-icon {
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    line-height: 65px;
    margin: 0 auto;
    margin-top: -28px;
} */


/* ** CONTENIDO CARD ** */

.dashboard .overview-box .overview-box-content .overview-box-title {
    font-size: 24px;
}

.dashboard .overview-box .overview-box-content .overview-box-count {
    font-size: 60px;
}

body .dashboard .task-box.task-box-1 .task-box-header {
    background-color: #757575;
}

.dashboard .task-box.task-box-1 .task-box-header {
    background-color: #757575;
}


/* ** CELDAS ** */

.celda-flex {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.columna-1-celda-flex {
    flex-direction: column;
    flex-grow: 1;
    /* max-height: 50px; */
    word-wrap: break-word;
    /* white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis;
}

.columna-1-celda-titulo {
    font-size: 14px;
}

.columna-1-celda-mensaje {
    font-size: 10px;
}

.columna-2-celda-flex {
    max-width: 50px;
    flex-grow: 0;
    max-height: 70px;
}

.dashboard .messages ul li>div img {
    float: left;
    max-width: 50px;
    max-height: 70px;
}

.dashboard .messages ul {
    border: solid 1px #d8d8d8;
    margin: 0 10px;
}

body .ui-message {
    border: 1px solid;
    margin: 0 .25em;
    padding: 0.25em .25em;
    display: inline-block;
}

.giveMeEllipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-height: X;
    /* fallback */
    max-height: X*N;
    /* fallback */
}


/* ** CAROUSEL ** */


/*
.ui-panel-images {
  width: 100% !important;
}

.ui-galleria{
  width: 100% !important;
  height: 229px;
}
.ui-galleria-panel {
  width: 100% !important;
  height: 100%;
}

.ui-galleria-panel-wrapper {
  width: 100% !important;
  height: 100%;
}

.ui-galleria-caption{
  width: 100% !important;
}
*/


/* GALERIA DE RUTAS */

.ui-galleria-nav-next,
.ui-galleria-nav-prev {
    color: white;
}

.rutas-galleria .ui-galleria-filmstrip-wrapper {
    display: none;
}

.rutas-galleria>.ui-galleria {
    width: 100% !important;
    /* height: 229px; */
    /* height: px; */
    height: calc( 25vw - 108px);
}

@media (max-width: 1024px) {
    .rutas-galleria>.ui-galleria {
        height: calc( 50vw - 68.5px);
    }
}

@media (max-width: 640px) {
    .rutas-galleria>.ui-galleria {
        height: calc( 100vw - 63.5px);
    }
}

.rutas-galleria>.ui-galleria>.ui-galleria-nav-prev {
    z-index: 1000000000;
}

.rutas-galleria>.ui-galleria>.ui-galleria-nav-next {
    z-index: 1000000000;
}

.rutas-galleria>.ui-galleria>.ui-galleria-caption {
    width: 100% !important;
    bottom: 0px !important;
    padding: 1.2em 1em;
    left: 0px;
}

.rutas-galleria>.ui-galleria>.ui-galleria-panel-wrapper {
    width: 100% !important;
    height: 100%;
}

.rutas-galleria>.ui-galleria>.ui-galleria-panel-wrapper>.ui-galleria-panel>.ui-panel-images {
    width: 100% !important;
}

.rutas-galleria>.ui-galleria>.ui-galleria-panel-wrapper>.ui-galleria-panel {
    width: 100% !important;
    height: 100%;
}


/* GALERIA DE NOTICIAS */

.noticias-galleria>.ui-galleria {
    width: 100% !important;
    height: 100px;
}

.noticias-galleria>.ui-galleria>.ui-galleria-nav-prev {
    z-index: 1000000000;
}

.noticias-galleria>.ui-galleria>.ui-galleria-nav-next {
    z-index: 1000000000;
}

.noticias-galleria>.ui-galleria>.ui-galleria-caption {
    width: 100% !important;
    bottom: 0px !important;
    padding: 1.2em 1em;
    height: 100px;
    left: 0px;
}

.noticias-galleria>.ui-galleria>.ui-galleria-caption>h4 {
    margin: 0em;
}

.noticias-galleria>.ui-galleria>.ui-galleria-caption>p {
    margin: 0em;
}

.noticias-galleria>.ui-galleria>.ui-galleria-panel-wrapper {
    width: 100% !important;
    height: 100px !important;
}

.noticias-galleria>.ui-galleria>.ui-galleria-panel-wrapper>.ui-galleria-panel>.ui-panel-images {
    width: 100% !important;
}

.noticias-galleria>.ui-galleria>.ui-galleria-panel-wrapper>.ui-galleria-panel {
    width: 100% !important;
    height: 100%;
    left: 0px;
}

body .noticias-galleria .ui-widget-content {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

body .noticias-galleria .ui-widget-content .ui-galleria-caption {
    /* background-color: transparent; */
}


/* ** Arbol Contenido ** */

.arbolContenidos>.ui-tree {
    width: 100%;
}

body .dashboard .overview-box .overview-box-content {
    padding: 8px 0px 14px 0px;
}


/* ** Pantalla de Login ** */

body .boton-login {
    background-color: #109AC8;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

.boton-login:hover {
    background-color: #086787 !important;
}

body .login-body .login-panel .login-panel-header {
    background-color: transparent;
    padding-top: 40px;
}

body .login-body .login-panel .login-panel-header img {
    width: 75%;
}

body .login-body .login-panel {
    width: 400px;
    height: 682px;
    margin-left: -200px;
    margin-top: -290px;
}

body .login-body .login-panel .login-panel-content {
    padding: 20px 35px;
    height: 277px;
}

body .login-body .login-panel .login-panel-content h1 {
    font-size: 22px;
    color: #898989;
}

body .login-body .login-panel .login-panel-content .ui-g-12:last-child a,
.login-body .login-panel .login-panel-content .ui-g-6:last-child a {
    color: #109AC8;
}


/* *** PANTALLA SELECCION MAPA *** */

body .ui-accordion .ui-accordion-header.ui-state-active {
    background-color: #6D7882;
}

body .ui-accordion .ui-accordion-header {
    border-radius: 3px;
    background-color: #6D7882;
}

body .ui-accordion .ui-accordion-header.ui-state-active {
    background-color: #6D7882;
}

body .ui-accordion .ui-accordion-header:not(.ui-state-active):not(.ui-state-disabled):hover {
    background-color: #535F6A;
}

body .boton-qr {
    background-color: #086787;
}

body .boton-qr:hover {
    background-color: #086787 !important;
}

body .boton-editar {
    background-color: #6D7882;
}

body .boton-editar .fa {
    font-size: 2.5em;
}

body .boton-editar:hover {
    background-color: #535F6A !important;
}

body .boton-eliminar {
    background-color: #F70202;
}

body .boton-eliminar .fa {
    font-size: 2.5em;
}

body .boton-eliminar:hover {
    background-color: #7B0000 !important;
}

body .boton-add-nivel {
    background-color: #109AC8;
    /* -webkit-border-radius: 0px;
  border-radius: 0px; */
}

body .boton-add-nivel:hover {
    background-color: #086787 !important;
}

body .ui-widget-header {
    background-color: #3A4651;
    /*background-color: #ffffff;*/
    color: #ffffff;
    border: 0px;
}

body .ui-datepicker .ui-datepicker-buttonbar {
    background-color: #ffffff;
}

body .ui-datepicker .ui-timepicker {
    background-color: #ffffff;
	color: #3A4651;
}

body .ui-datepicker .ui-timepicker .fa{
	color: #3A4651;
}

body .ala-cell {
    color: black;
    background-color: white;
    ;
    padding: inherit;
}

body .add-ala {
    text-align: center;
    padding: 20px;
}

body .ala-nombre {
    background-color: white;
    font-size: 16px;
    color: #898989;
    text-align: center;
}

body .ala-imagen {
    width: 100px;
    height: 100px;
    opacity: 0.5;
}

body .ala-imagen:hover {
    opacity: 1;
}

body .tipologia-nodo-icono {
    width: 50px;
    height: 50px;
}

body .ui-accordion .ui-accordion-content {
    padding: 0;
    line-height: 18px;
}

body .ui-datagrid .ui-panel .ui-panel-titlebar {
    visibility: hidden;
}

body p-panel .ui-panel-content-wrapper {
    text-align: center;
    width: 100%;
    height: 100%;
    /* margin: 1em; */
}

body .ui-accordion-content-wrapper {
    background-color: #3A4651;
}

body .ui-accordion-content {
    background-color: #3A4651;
    border: none;
}

body .cabecera-acordeon {
    width: calc(100% - 90px);
}

body .cabecera-acordeon-completo {
    width: 100%;
}


/* Tarjetas ALA */

.acordeonDataGrid>div>div>div>p-panel {
    /* background: rgb(225, 232, 238); */
    border: solid 1px;
    border-color: rgb(200, 208, 214);
    border-radius: 10px;
    /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.02), 0 6px 6px rgba(0, 0, 0, 0.1); */
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 0 2px 0 rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 0 2px 0 rgba(0, 0, 0, 0.14);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 0 2px 0 rgba(0, 0, 0, 0.14);
    padding: 15px;
    margin: 20px;
}

.acordeonDataGrid>div>div>div>p-panel>div {
    /* background: rgb(225, 232, 238); */
    border: solid 0;
}


/* *** PANTALLA SELECCION ESPACIO *** */

body .espacio-cell {
    color: black;
    background-color: white;
    ;
    /* padding: inherit; */
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

body .add-espacio {
    text-align: center;
    padding: 20px;
    display: block;
}

body .espacio-nombre {
    background-color: white;
    font-size: 16px;
    color: #898989;
    height: 75px;
    padding-top: 10px;
}

body .espacio-imagen {
    /* width: 100%; */
    /* max-height: 100px; */
    height: 150px;
    width: 150px;
}

body .espacio-imagen-add {
    width: 100px;
    height: 100px;
}

body p-panel .ui-panel-content-wrapper {
    margin: 0em;
}

body .espacio-cell-container {
    /*width: 175px;*/
}

body .boton-seleccion-espacio {
    /*align-self: flex-end;*/
    background-color: #109AC8;
    /* height: 45px; */
}

.boton-seleccion-espacio:hover {
    background-color: #086787 !important;
}

.contenedor-boton-flotante {
    display: block;
    position: relative;
    width: 150px;
    min-height: 150px;
}

body .boton-editar-flotante {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin-top: 50px;
    line-height: 30px;
    opacity: 0.75;
}


/* *** PANTALLA SELECCION CONTENIDO *** */

.icono-visibilidad-app {
    color: #898989;
    font-size: 20px;
    cursor: pointer;
    /* border: solid 1px red; */
    align-self: flex-start;
    margin-top: 10px;
}

.float-label-con-visibilidad-app {
    /* border: solid 1px pink; */
    align-self: flex-start;
    margin: 10px;
    width: 100%;
}

.dialog-reordenar-contenidos-destacados>div {
    height: 80%;
    max-width: 900px;
}

.dialog-reordenar-contenidos-destacados>div>div:nth-child(2) {
    height: calc( 100% - 115px);
}

body .contenido-imagen {
    width: 100%;
}

body .contenido-imagen-formulario {
    width: 120px;
    height: 120px;
}

body .contenido-imagen-container {
    padding: 0em !important;
    padding-right: 5px !important;
    padding-left: 5px !important;
    padding-top: 5px !important;
    width: 85px;
}

body .contenido-cabecera {
    background-color: #757575 !important;
    color: white !important;
}

body .contenido-cabecera:hover {
    background-color: #757575 !important;
    color: white !important;
}

body .contenido-cabecera>p-sorticon>span {
    color: white !important;
}


/* imagen */

body .contenido-cabecera:first-child {
    width: 55px;
}


/* titulo */

body .contenido-cabecera:nth-child(2) {
    width: 85px;
}


/* estado */

body .contenido-cabecera:nth-child(3) {
    width: 85px;
}


/* Codigo */

body .contenido-cabecera:nth-child(4) {
    width: 100px;
}


/* Tipo */

body .contenido-cabecera:nth-child(5) {
    width: 100px;
}


/* asignado */

body .contenido-cabecera:nth-child(6) {
    width: 120px;
}


/* imagen */

body .contenido-cabecera:last-child {
    width: 50px;
}

body .boton-add-contenido {
    background-color: #109AC8;
}

.boton-add-contenido:hover {
    background-color: #086787 !important;
}

body .ui-datepicker tbody td a.ui-state-active {
    background-color: #086787 !important;
}

body .ui-icon-file-upload {
    color: white !important;
}

body .contenido-botonera-editar {
    text-align: center !important;
    float: none !important;
}

body .contenido-url-content {
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

body .contenido-cabecera-webs {
    background-color: #757575 !important;
    color: white !important;
}

body .contenido-cabecera-webs:hover {
    background-color: #757575 !important;
    color: white !important;
}

body .contenido-cabecera-webs>p-sorticon>span {
    color: white !important;
}

body .contenido-cabecera-webs:last-child {
    width: 125px;
}

body .contenido-input-text {
    padding: 15px;
    /* border: solid 1px blue; */
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

body .contenido-input-fechas-container {
    /* padding: 15px; */
    padding: .5em;
    display: flex;
    flex-direction: row;
    /*justify-content: space-between;*/
}

body .calendario_derecha p-calendar span .ui-datepicker {
    right: 0px !important;
    left: inherit !important;
}

body .calendario_izquierda p-calendar span .ui-datepicker {
    left: 0px !important;
    right: inherit !important;
}

body .contenido-input-fecha {
    padding: 15px;
}

body .contenido-input-date {
    padding: 15px;
}

body .contenido-imagen-container>ul {
    list-style-type: none;
}

body .contenido-imagen-container>ul>div>li {
    padding: 5px;
}

.celda-asgignado-flex {
    display: flex;
    justify-content: space-between;
    border-style: solid;
    border-color: transparent;
}

.grupo-1-asignado-flex {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.grupo-0-asignado-flex {
    display: flex !important;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}


/* Tabla contenidos destacados*/

body .celda-destacados-cabecera {
    background-color: #757575 !important;
    color: white !important;
}

body .celda-destacados-cabecera .ui-chkbox-box {
    border: 2px solid white !important;
    color: white !important;
}

body .celda-destacados-cabecera:hover {
    background-color: #757575 !important;
    color: white !important;
}

body .celda-destacados-cabecera>p-sorticon>span {
    color: white !important;
}

body .celda-destacados-cabecera:first-child {
    width: 55px;
}

body .celda-destacados-cabecera:nth-child(2) {
    width: 87px;
}

body .celda-destacados-cabecera:nth-child(4) {
    width: 200px;
}

body .celda-destacados-cabecera:nth-child(5) {
    width: 150px;
}

.resaltar-con-borde {
    border-color: #109AC8;
    border-style: solid;
}


/* Check Favoritos */

.destacados-checkbox {
    unicode-bidi: bidi-override;
    direction: rtl;
}

.destacados-checkbox .ui-chkbox-box {
    border: none !important;
    background-color: transparent !important;
}

.destacados-checkbox .ui-chkbox-icon {
    border: none;
    background-color: transparent !important;
    color: #3A4651;
    width: 1.1em;
}

.destacados-checkbox .ui-chkbox .ui-chkbox-box.ui-state-active .fa {
    color: orange;
}

.destacados-checkbox .ui-chkbox-icon:before,
.destacados-checkbox .ui-chkbox-icon {
    content: "\2605";
}


/* *** PANTALLA NUEVO CONTENIDO *** */

/deep/ body .posicionar-contenido-dropdown>div {
    width: 185px !important;
}

body .contenedorMapa-nuevo-contenido {
    cursor: crosshair !important;
}

body .contenedorMapa-nuevo-contenido polyline {
    cursor: crosshair !important;
}

body .contenedorMapa-nuevo-contenido:hover {
    cursor: crosshair !important;
}

body .contenedorMapa-nuevo-contenido polyline:hover {
    cursor: crosshair !important;
}


/* body .contenedorMapa-nuevo-contenido > app-plano > div > svg > g > g > polyline:hover{
	cursor: crosshair !important;
} */

.contenedorMapa-nuevo-contenido {
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 274px);
    max-width: inherit;
    max-height: inherit;
    overflow: hidden;
    margin: 0;
    padding-bottom: 16px !important;
    padding-right: 16px !important;
}


/*
.contenedorMapa-historicos {
    width: 100%;
    max-width: inherit;
    max-height: calc(100vh - 274px);
    overflow: hidden;
    margin: 0;
    padding-bottom: 16px !important;
    padding-right: 16px !important;
}
*/

.contenedor_app-plano_historicos>app-plano>div>svg {
    width: 100%;
    min-height: calc(100vh - 470px) !important;
    max-height: calc(100vh - 470px) !important;
    overflow: hidden;
}

.contenedor_app-plano_historicos>.mensaje_cambio_planta_animacion_historicos {
    width: 100%;
    min-height: calc(100vh - 335px) !important;
    max-height: calc(100vh - 335px) !important;
    overflow: hidden;
}

body .ui-multiselect {
    width: 100% !important;
}

body .ui-dropdown .ui-dropdown-label {
    white-space: initial;
}

p-calendar .ui-datepicker-buttonbar .ui-g {
    padding: 0;
    display: flex !important;
    width: 100%;
}


/*Boton HOY*/

p-calendar .ui-datepicker-buttonbar .ui-g>div:first-child {
    padding: 0;
    display: flex !important;
    justify-content: flex-start;
}


/* Boton CLEAR */

p-calendar .ui-datepicker-buttonbar .ui-g>div:last-child {
    padding: 0;
    display: flex !important;
    justify-content: flex-end;
}

.pestanias-nuevo-contenido {
    display: flex;
    justify-content: space-between;
}

.boton-bloquear-mapa {
    display: flex;
    justify-content: space-between;
}

.selector-ala-mapa {
    float: left;
    position: absolute !important;
}

.ui-toolbar-group-right-flex {
    display: flex;
}

body .ui-tabmenu .ui-tabmenu-nav>.ui-tabmenuitem.ui-state-active {
    background-color: #ffffff;
    border-color: #109AC8;
    border-style: solid;
}

body .ui-tabmenu .ui-tabmenu-nav>.ui-tabmenuitem.ui-state-active a .fa {
    color: #109AC8;
}

body .ui-picklist .ui-picklist-droppoint {
    height: 0px;
    list-style-type: none;
}

body .ui-picklist .ui-picklist-list li {
    margin: 0px;
    padding: 0px;
}

body .asociar-elemento-pickList-container {
    width: 100%;
}

body .asociar-elemento-pickList-container>div {
    display: flex;
    /* or inline-flex */
    flex-direction: row;
    height: 500px;
}

body .asociar-v-pickList-container>div>div>ul {
    height: 100% !important;
}

body .asociar-elemento-pickList-container>div>div:first-child {
    display: none;
}

body .asociar-elemento-pickList-container>div>div:nth-child(2) {
    width: 50% !important;
    padding: 20px;
}

body .asociar-elemento-pickList-container>div>div:nth-child(3) {
    display: none;
}

body .asociar-elemento-pickList-container>div>div:nth-child(4) {
    width: 50% !important;
    padding: 20px;
}

body .asociar-elemento-pickList-container>div>div:last-child {
    display: none;
}

body .asociar-elemento-pickList-container>div>div>ul {
    height: 400px !important;
}

body .ui-picklist li.ui-picklist-item.ui-state-highlight {
    /* background-color: rgb(63, 181, 69); */
    background-color: #D6DEE3;
    color: #535F6A;
    /* color: #ffffff; */
}

body .asociar-elemento-pickList-celda {
    font-size: 14px;
    border-style: solid;
    border-width: 0px;
    border-bottom: solid 1px;
    border-color: #3A4651;
    display: flex;
    flex-direction: row;
}

body .asociar-elemento-pickList-celda-izquierda {
    flex-grow: 1;
}

body .asociar-elemento-pickList-celda-derecha {
    flex-grow: 1;
    text-align: right;
}

body .asociar-elemento-pickList-celda>div {
    margin: 15px !important;
}

body .asociar-elemento-posicionado-cell {
    font-size: 14px;
    border-style: solid;
    border-width: 0px;
    border: solid 1px;
    border-color: #3A4651;
    display: flex;
    flex-direction: row;
}

body .asociar-elemento-posicionado-cell-sin-borde {
    font-size: 14px;
    display: flex;
    flex-direction: row;
}

body .asociar-elemento-posicionado-cell-izquierda {
    flex-grow: 1;
}

body .asociar-elemento-posicionado-cell-derecha {
    flex-grow: 1;
    text-align: right;
    color: #109AC8;
}

body .asociar-elemento-posicionado-cell>div {
    margin: 15px !important;
}

body .ui-picklist .ui-picklist-filter-container .ui-picklist-filter {
    text-indent: 3.1em;
    width: 100%;
}

body .asociar-elemento-pickList-container>div>div:nth-child(4)>ul {
    min-height: 150px !important;
}

#mapaContainerContenido .ui-dialog {
    top: auto !important;
    bottom: 0;
}

#mapaContainerContenido .ui-dialog {
    top: 40%!important;
    bottom: 0 !important;
    right: 1% !important;
    left: inherit !important;
    height: 340px;
    width: 400px;
    border-radius: 15px;
    padding: 15px;
    /* top: 48px !important;
    bottom: 0 !important;
	right: 0 !important;
	left: inherit !important;
    height: 100%;
    width: 350px; */
}


/* ** PANTALLA MENSAJES ** */

.nuevo-mensaje-container {
    overflow: inherit;
    display: flex;
    flex-direction: column;
}

body .mensaje-input-text {
    padding: 15px;
}

body .ui-table .ui-table-tbody>tr.ui-state-highlight {
    background-color: #109AC8 !important;
    color: white !important;
}

body .ui-table .ui-table-tbody>tr:nth-child(odd).ui-state-highlight {
    background-color: #109AC8 !important;
    color: white !important;
}

body .contenedor_programar_envio {
    padding-top: 1em;
}

body .evento_envio_notificacion {
    padding: 0em;
}

body .repetir_notificacion {
    padding: 0em;
}

body .evento_envio_notificacion>div:first-child {
    padding-left: 0em;
}

body .evento_envio_notificacion>div {
    padding-left: 2em;
}

body .repetir_notificacion:nth-child(2)>div:nth-child(2) {
    padding-left: 2em;
}

body .repetir_notificacion:nth-child(2)>div:nth-child(2)>span {
    padding: 0;
}


/* ** PANTALLA NOTICIAS ** */

body .secciones-nueva-noticia {
    /* padding: 20px; */
}

body .noticia-dialog-formulario>div>div:nth-child(2) {
    height: 500px;
}

body .nueva-noticia-textbox {
    width: 100%;
}

body .nueva-noticia-input {
    width: 100%;
}

body .nueva-noticia-input>span {
    width: 100%;
}

body .nueva-noticia-botonera {
    /* padding-top: 100px; */
}

body .noticia-imagen {
    width: 400px;
    height: 100px;
}

body .noticia-imagen-container {
    padding: 0em !important;
    padding-right: 5px !important;
    padding-left: 5px !important;
    padding-top: 5px !important;
}

body .noticia-cabecera:first-child {
    width: 410px;
}

body .noticia-cabecera:last-child {
    width: 100px;
}

body .noticia-cabecera-webs:last-child {
    width: 125px;
}

body .noticia-imagen-container>ul {
    list-style-type: none;
}

body .noticia-imagen-container>ul>div>li {
    padding: 5px;
}


/* ** FILEUPLOAD  ** */

body .selector-imagen>div>div:first-child>button {
    display: none;
}

body .selector-imagen>div>div:nth-child(1)>button>div>div>div>div:nth-child(1) {
    display: none;
}

body .ui-dialog {
    display: flex;
    /* Se mete parámetro overflow-y para poder trabajar y almacenar datos */
    overflow-y: auto;
}

body .nueva-rutaSugerida-dialog>div {}


/* ** Validación angular casera ** */

.input-requerido {
    border-width: 0 0 1px 0;
    border-color: red !important;
    padding-bottom: 0px;
    float: left;
}


/* ** Ocultar boton cerrar warning  ** */

body .ui-widget-content .fa {
    /* display: none; */
}

p-messages>div>a {
    display: none;
}


/* ** PLANO ** */

app-plano>div>svg {
    width: 100%;
    height: 100%;
    min-height: 1000px;
}

body .planoExt>app-plano>div>svg {
    min-height: inherit !important;
}

.contenedorMapa {
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 274px);
    max-width: inherit;
    max-height: inherit;
    overflow: hidden;
    margin: 0;
    padding-bottom: 16px !important;
    padding-right: 16px !important;
}

.boton-menu-visivilidad-capas {
    float: right;
    right: 40px;
    position: absolute !important;
}

.blockUI {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(69, 69, 69, 0.3);
    /* z-index: 1100; */
}

.blockPosicionarContenido {
    display: none;
    position: absolute;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
    background: rgba(69, 69, 69, 0.2);
    /* z-index: 1100; */
}

.blockPosicionarNotificacion {
    display: none;
    margin-top: 296px;
    position: absolute;
    width: calc(100% - 319px);
    height: calc(100% + 63px);
    background: rgba(69, 69, 69, 0.2);
}


/* FORMULARIOS MAPA */

.resumen-contenido-formulario-contenido {
    display: flex;
    justify-content: space-between;
}

.resumen-contenido-formulario-contenido>div {
    display: flex;
    flex-direction: column;
    width: 60%;
}

#mapaContainer .ui-dialog {
    top: auto !important;
    bottom: 0;
}

#mapaContainer .ui-dialog {
    top: 6%!important;
    bottom: 0 !important;
    right: 1% !important;
    left: inherit !important;
    height: 93%;
    width: 400px;
    border-radius: 15px;
    padding: 15px;
    /* top: 48px !important;
    bottom: 0 !important;
	right: 0 !important;
	left: inherit !important;
    height: 100%;
    width: 350px; */
}

p-dialog p-footer>div {
    /* display: flex;
    justify-content: space-between;
    flex-direction: row-reverse; */
}

.p-dialog-formulario>div>.ui-dialog-content {
    /* display: flex; */
    flex-direction: row;
    /* min-height: calc(100% - 110px); */
    /* TODO: Descomentar cuando se quite el scrol de los formularios */
    min-height: calc(100% - 60px);
}

.p-dialog-formulario>div>div {
    display: flex;
    justify-content: space-between;
}

.p-dialog-formulario>div>div>span {
    flex-grow: 2;
}

.cabecera-formulario-mapa {
    display: flex;
}

.app-formulario-mapa {
    /* border: solid 1px green; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.app-formulario-mapa-con-tabs {
    display: flex;
    flex-direction: column;
}

.app-formulario-mapa-con-tabs>div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 100;
}

.app-formulario-tabs {
    flex-grow: 1;
    padding-bottom: 2em;
}

.formulario-nodo-contenidos-asociados-contenidor {
    border: solid 2px;
    border-radius: 5px;
    border-color: #bdbdbd;
}

.formulario-nodo-contenidos-asociados-iconos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.formulario-nodo-contenidos-asociados-titulo {
    padding: 10px;
}

.formulario-nodo-contenedor-nuevo-portal {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.formulario-boton-guardar {
    background-color: #109AC8 !important;
    color: #ffffff !important;
    float: right !important;
    margin: .5em .4em .5em !important;
    /* -webkit-border-radius: 0px;
  border-radius: 0px; */
}

.formulario-boton-cancelar {
    float: left !important;
    margin: .5em .4em .5em !important;
}

.div-contenedor-boton-formulario {
    width: 100%;
}

.formulario-boton-guardar>span {
    color: #ffffff !important;
}

.formulario-boton-guardar:hover {
    background-color: #086787 !important;
    color: #ffffff !important;
}

body .ui-datepicker-buttonbar .formulario-boton-guardar {
	color: #333333 !important;
    background-color: #f4f4f4 !important;
    float: right !important;
    margin: .5em .4em .5em !important;
}

body .ui-datepicker-buttonbar .formulario-boton-guardar>span {
    color: #333333 !important;
}

body .ui-datepicker-buttonbar .formulario-boton-guardar:hover {
    background-color: #c8c8c8 !important;
    color: #333333 !important;
}



body .formulario-boton-eliminar {
    background-color: #F70202;
    float: left !important;
    margin: .5em .4em .5em !important;
}

body .formulario-boton-eliminar:hover {
    background-color: #7B0000 !important;
}

body .formulario-boton-confirmar-cancelar {
    background-color: #6D7882;
}

body .formulario-boton-confirmar-cancelar:hover {
    background-color: #535F6A !important;
}

.recurepar-password-botonera {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.recurepar-password {
    cursor: pointer;
}

.no-hay-portales-aviso {
    color: #bdbdbd;
    text-align: center;
}


/*.app-formulario-mapa {
	width: 560px;
	height: 100%;
	padding: 20px;
}*/

.app-formulario-mapa div {
    /* padding: 0.2em; */
}

.app-formulario-mapa input {
    /* font-size: 1em; */
}

.numero-contenidos {
    font-size: 20px;
}

.formulario-conexion-portales-container {
    background: rgb(225, 232, 238);
    border: solid 2px;
    border-color: rgb(200, 208, 214);
    border-radius: 15px;
    flex-grow: 1;
    margin-top: 2em;
    margin-bottom: 2em;
}

app-formulario-conexion-portales>div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 100;
}

.conexion-portal-tarjeta {
    /* background: rgb(225, 232, 238); */
    border: solid 1px;
    border-color: rgb(200, 208, 214);
    border-radius: 10px;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); */
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 0 2px 0 rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 0 2px 0 rgba(0, 0, 0, 0.14);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 0 2px 0 rgba(0, 0, 0, 0.14);
    padding: 15px;
    margin-bottom: 12px;
}

.conexion-portal-tarjeta-nivel-ala {
    padding-bottom: 10px;
    text-decoration: bold;
}

.conexion-portal-tarjeta-label {
    color: #086787 !important;
}

.conexion-portal-tarjeta-nodo {
    color: #109AC8;
}

.peso-para-perfil-container {
    display: flex;
    justify-content: space-between;
}

.label-peso-para-perfil {
    width: 100% !important;
}

.formularios-mapa-container {
    border-radius: 15px;
    padding: 15px;
}

.formularios-mapa-container>div {
    overflow: scroll;
}

body .view {
    stroke: transparent;
}


/* ** IDIOMA ** */

.dropdown-idioma {
    float: right;
    width: 7em;
}

.dropdown-idioma>div {
    width: inherit !important;
    height: 42px;
    border: none !important;
}

.dropdown-idioma>div>label {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 7em !important;
    padding: 0 !important;
    text-align: right !important;
    color: #109AC8;
}

body .ui-dropdown-panel .ui-dropdown-item.ui-state-highlight {
    background-color: #109AC8;
}

.dropdown-idioma>.ui-dropdown .ui-state-focus {
    border: none !important;
}

.dropdown-idioma>div:focus {
    border: none !important;
}

body .ui-dropdown {
    width: 100% !important;
}

.dropdown-idioma>div>.ui-dropdown-trigger {
    width: 7em;
    height: 100%;
    background: transparent;
    border-width: 1px 1px 1px 1px;
    font-size: 1em;
    border-color: #109AC8;
    border-radius: 5px;
    border-style: solid;
}

.dropdown-icono-idioma {
    margin-right: 4px;
    font-size: 2em;
    color: #109AC8 !important;
}


/* ** PANTALLA RUTA SUGERIDA ** */

body .arrastrable-imagen {
    width: 32px;
    height: 32px;
}

.nueva-ruta-nodo-cell {
    height: 60px;
}

body .nueva-ruta-nodo-cell-botonera {
    font-size: 14px;
    display: flex;
    /* or inline-flex */
    flex-direction: row;
}

body .nueva-ruta-nodo-cell-botonera-izquierda {
    flex-grow: 2;
}

body .nueva-ruta-nodo-cell-botonera-derecha {
    flex-grow: 1;
    text-align: right;
}


/*tabla asignados*/

body .nueva-ruta-nodo-cabecera:first-child {
    width: 55px;
}

body .nueva-ruta-nodo-cabecera:nth-child(2) {
    width: 100px;
}

body .nueva-ruta-nodo-cabecera:last-child {
    width: 200px;
}

body .nueva-ruta-nodo-cabecera {
    background-color: #757575 !important;
    color: white !important;
}

body .nueva-ruta-nodo-cabecera:hover {
    background-color: #757575 !important;
    color: white !important;
}

body .nueva-ruta-nodo-cabecera p-sorticon>span {
    color: white !important;
}


/*tabla no asignados*/

body .nueva-ruta-contenido-no-asignado-cabecera:first-child {
    width: 100px;
}

body .nueva-ruta-contenido-no-asignado-cabecera {
    background-color: #757575 !important;
    color: white !important;
}

body .nueva-ruta-contenido-no-asignado-cabecera:hover {
    background-color: #757575 !important;
    color: white !important;
}

body .nueva-ruta-contenido-no-asignado-cabecera p-sorticon>span {
    color: white !important;
}


/* Ordenar */

body .ordenar-ruta-cabecera {
    background-color: #757575 !important;
    color: white !important;
}

body .ordenar-ruta-cabecera:hover {
    background-color: #757575 !important;
    color: white !important;
}

body .ordenar-ruta-cabecera>p-sorticon>span {
    color: white !important;
}


/* Drag */

body .ordenar-ruta-cabecera:first-child {
    width: 55px;
}


/* Imagen */

body .ordenar-ruta-cabecera:nth-child(2) {
    width: 100px;
}


/* destacado */

body .ordenar-ruta-cabecera:last-child {
    width: 20px;
}


/* MINIMIZAR */

.boton-minimizar {
    font-size: 0.6em;
    height: 21px;
    width: 21px;
}


/* ** Switchs  ** */


/* background-color: #7986CB !important; */

body .ui-inputswitch.ui-inputswitch-checked .ui-inputswitch-handle {
    background-color: #ffffff;
    color: #ffffff;
}

body .ui-inputswitch.ui-inputswitch-checked {
    background-color: #109AC8;
    border-color: #109AC8;
}

.no-hay-portales-aviso {}


/* Tablas */

body .ui-table-resizable>.ui-table-wrapper {
    overflow: inherit;
    /* min-height: 400px; */
}

.cabecera-tabla-filtrada {
    display: flex;
    justify-content: space-between;
}

.cabecera-tabla-filtrada>.boton-add-contenido {
    float: none !important;
}

.cabecera-tabla-filtrada>input {
    width: 100% !important;
    margin-right: 5%;
}

body .ui-table-thead {
    font-size: 16px;
}

.cabecera-tabla-con-info-y-ordenacion {
    display: flex;
    justify-content: space-between;
}

.cabecera-info-icon {
    font-size: 18px;
}


/* FileUpload Imagen*/

body .ui-fileupload .ui-fileupload-buttonbar .ui-button {
    background-color: #109AC8;
}

body .ui-fileupload .ui-fileupload-buttonbar .ui-button:hover {
    background-color: #086787 !important;
}

body .fileupload-row-plano {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


/* FileUpload Importar*/

body .importador-contenidos>span {
    background-color: #109AC8 !important;
}

body .importador-contenidos>span:hover {
    background-color: #086787 !important;
}


/*
body .ui-fileupload-choose:not(.ui-state-disabled):hover.ui-button, body .ui-fileupload-choose.ui-state-focus.ui-button {
    background-color: #109AC8;
}
*/


/* Tablas Hover cell*/

body .ui-table .ui-table-tbody>tr:nth-child(odd).ui-state-highlight {
    background-color: #D6DEE3;
    color: #535F6A;
}


/* Paginator */

body .ui-paginator .ui-paginator-pages a.ui-state-active {
    background-color: #109AC8;
    color: #ffffff;
}

body .ui-table .ui-sortable-column.ui-state-highlight {
    background-color: #109AC8;
    color: #ffffff;
    border-top-color: #109AC8;
}

.titulo-con-selector-idioma-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* ** PANTALLA AJUSTES ** */


/* tabla tipologia contenido*/

body .tipologia-cabecera {
    background-color: #757575 !important;
    color: white !important;
}

body .tipologia-cabecera:hover {
    background-color: #757575 !important;
    color: white !important;
}

body .tipologia-cabecera div>p-sorticon>span {
    color: white !important;
}

body .tipologia-cabecera:first-child {
    width: 100px;
}

body .tipologia-cabecera:nth-child(2) {
    width: 160px;
}

/* tabla tipologia seccion*/

body .tipologia-seccion {
    background-color: #757575 !important;
    color: white !important;
}

body .tipologia-seccion:hover {
    background-color: #757575 !important;
    color: white !important;
}

body .tipologia-seccion div>p-sorticon>span {
    color: white !important;
}



/* tabla usuarios */

body .usuario-cabecera {
    background-color: #757575 !important;
    color: white !important;
}

body .usuario-cabecera:hover {
    background-color: #757575 !important;
    color: white !important;
}

body .usuario-cabecera p-sorticon>span {
    color: white !important;
}

body .dropdown-tipologia-usuario>div {
    width: 100% !important;
}


/* tabla perfiles movilidad*/

body .perfil-cabecera {
    background-color: #757575 !important;
    color: white !important;
}

body .perfil-cabecera:hover {
    background-color: #757575 !important;
    color: white !important;
}

body .perfil-cabecera p-sorticon>span {
    color: white !important;
}


/* PANTALLA BALIZAS */

body .balizas-cabecera {
    background-color: #757575 !important;
    color: white !important;
}

body .balizas-cabecera:hover {
    background-color: #757575 !important;
    color: white !important;
}

body .balizas-cabecera p-sorticon>span {
    color: white !important;
}


/* ** IMAGE_CROPPER  ** */

.mi-fileUpload {
    border: 1px solid #cacaca;
}

.file-upload-input {}

.file-upload span.ui-icon-file-upload {
    vertical-align: middle;
}

.file-upload-boby {
    display: flex;
    flex-wrap: wrap;
}

.file-upload-boby>div {
    padding: 1em;
}

.file-upload-thumnail-noticia {
    width: 400px;
    height: 100px;
}

.file-upload-thumnail {
    width: 160px;
    height: 160px;
}

.imagendetallePreview {
    max-width: 800px;
}

body .custom-input {
    overflow: hidden;
    background-color: #757575;
    color: #ffffff !important;
    font-size: 1em;
    height: 2.25em;
    padding: 0.5em 1em;
    border: 0 none;
    -moz-box-shadow: 0 1px 2.5px 0 rgba(0, 0, 0, 0.26), 0 1px 5px 0 rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0 1px 2.5px 0 rgba(0, 0, 0, 0.26), 0 1px 5px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 1px 2.5px 0 rgba(0, 0, 0, 0.26), 0 1px 5px 0 rgba(0, 0, 0, 0.16);
    -moz-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
    background-color: #109AC8;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.custom-input:hover {
    background-color: #086787 !important;
    cursor: pointer;
}


/* ** CURSORES ** */

.alias {
    cursor: alias;
}

.all-scroll {
    cursor: all-scroll;
}

.auto {
    cursor: auto;
}

.cell {
    cursor: cell;
}

.context-menu {
    cursor: context-menu;
}

.col-resize {
    cursor: col-resize;
}

.copy {
    cursor: copy;
}

.crosshair {
    cursor: crosshair;
}

.default {
    cursor: default;
}

.e-resize {
    cursor: e-resize;
}

.ew-resize {
    cursor: ew-resize;
}

.grab {
    cursor: grab;
}

.grabbing {
    cursor: grabbing;
}

.help {
    cursor: help;
}

.move {
    cursor: move;
}

.n-resize {
    cursor: n-resize;
}

.ne-resize {
    cursor: ne-resize;
}

.nesw-resize {
    cursor: nesw-resize;
}

.ns-resize {
    cursor: ns-resize;
}

.nw-resize {
    cursor: nw-resize;
}

.nwse-resize {
    cursor: nwse-resize;
}

.no-drop {
    cursor: no-drop;
}

.none {
    cursor: none;
}

.not-allowed {
    cursor: not-allowed;
}

.pointer {
    cursor: pointer;
}

.progress {
    cursor: progress;
}

.row-resize {
    cursor: row-resize;
}

.s-resize {
    cursor: s-resize;
}

.se-resize {
    cursor: se-resize;
}

.sw-resize {
    cursor: sw-resize;
}

.text {
    cursor: text;
}

.url {
    cursor: url(myBall.cur), auto;
}

.w-resize {
    cursor: w-resize;
}

.wait {
    cursor: wait;
}

.zoom-in {
    cursor: zoom-in;
}

.zoom-out {
    cursor: zoom-out;
}

@media print {
    body .noPrint {
        display: none !important;
    }
    body .imprimible {
        width: 100%;
    }
    body .imprimible .layout-main {
        min-width: 0 !important;
        margin-left: 0 !important;
    }
    body .imprimible .extenderImpresion {
        width: 100% !important;
        padding: 0;
    }
    body .imprimible .pagebreak {
        clear: both;
        page-break-before: always;
        page-break-after: always;
    }
    /* page-break-after works, as well */
    body .imprimible .card {
        box-shadow: inherit;
        -webkit-box-shadow: inherit;
        -moz-box-shadow: inherit;
        -moz-border-radius: inherit;
        -webkit-border-radius: inherit;
        border-radius: inherit;
        background: inherit;
        padding: 0;
        margin-bottom: 0;
        box-sizing: inherit;
    }
}

@media screen {
    body .soloPrint {
        display: none !important;
    }
}


body .ui-datepicker tbody td.ui-datepicker-today a {
	background-color: #d0d0d0;
	color: #333333;
}


/* ** DIALOG **

body p-dialog > div > div > a {
  display: none;
}

*/
