@import url(https://fonts.googleapis.com/css?family=Nunito);

*,
:after,
:before {
  box-sizing: border-box;
}

.wrapper {
  display: flex;  
  flex-flow: row wrap;
}
.wrapper > * {
  flex: 1 100%;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: Nunito, sans-serif; /* font-size:.9rem; */
  font-weight: 400;
  line-height: 1.6;
  color: #212529;
  text-align: left;
  background-color: #f8fafc;
}

@media only screen and (min-width: 992px) {
  html,
  body { 
      overflow: hidden;
  }
}

/* Header */
@media all and (min-width: 992px) {
	.navbar .nav-item .dropdown-menu{ display: none; }
	.navbar .nav-item:hover .nav-link{   }
	.navbar .nav-item:hover .dropdown-menu{ display: block; }
	.navbar .nav-item .dropdown-menu{ margin-top:0; }

  .dropdown-menu-center {
    left: 50% !important;
    right: auto !important;
    text-align: center !important;
    transform: translate(-50%, 0) !important;
  }

}

.box-menu{
  padding: 10px;
  font-size: 18px;
}

.ant-image {
  position: relative;
  display: inline-block;
}

.ant-image-img {
  width: 100%;
  height: auto;
}
/* Header */

/* Sidebar */

.sideBar{
  position: relative;
  height: calc(100vh - 3rem);
  width: 200px;
  min-width: 0;
  white-space: nowrap;
  background: #001529;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  flex: 0 0 200px;
  padding: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.ant-layout-sider-children {
  height: 100%;
  margin-top: -.1px;
  padding-top: .1px;
}

.sideBar .nav-links{
  height: 100%;
  padding: 10px 0 100px 0;
  padding-left: 0;
  overflow: auto;
}

.sideBar.menu-close .nav-links{
  overflow: visible;
}

.sideBar .nav-links::-webkit-scrollbar{
  display: none;
}

.sideBar .nav-links li{
  position: relative;
  list-style: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.sideBar .nav-links a:hover{
  text-decoration: underline;
  text-decoration-color: white;
}

.sideBar .nav-links li .icon-link{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sideBar .nav-links li i{
  height: 50px;
  min-width: 66px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.sideBar .nav-links li.arrow.showMenu i.menu-open{
  transform: rotate(-180deg);
}

.sideBar.menu-close .nav-links li i.menu-open{
  display: none;
}

.sideBar .nav-links li .menu-father,
.sideBar .nav-links li a{
  display: flex;
  align-items: center;
  text-decoration: none;
}
.sideBar .nav-links li .menu-father .link_name,
.sideBar .nav-links li a .link_name{
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  transition: .3s ease;
  white-space:normal;


}
.sideBar.menu-close .nav-links li .menu-father .link_name,
.sideBar.menu-close .nav-links li a .link_name{
  opacity: 0;
  pointer-events: none;
  transition: .2s ease-out;
}

.sideBar .nav-links li .sub-menu{
  padding: 6px 6px 14px 40px;
  background: #000c17;
  display: none;
}
.sideBar .nav-links li.showMenu .sub-menu{
  display: block;
  white-space: normal;
}
.sideBar .nav-links li .sub-menu a {
  color: #fff;
  font-size: 14px;
  padding: 5px 0;
  /* white-space: nowrap; */
  opacity: 0.6;
  transition: all 0.3 ease;
}
.sideBar.menu-close .nav-links li .sub-menu a{
  white-space: nowrap;

}
.sideBar .nav-links li .sub-menu a:hover{
  opacity: 1;
}
.sideBar.menu-close .nav-links li .sub-menu{
  position: absolute;
  left: 100%;
  top: 0;
  margin-top: 0;
  padding: 10px 20px;
  border-radius: 0 5px 5px 0;
  opacity: 0;
  display: block;
  pointer-events: none;
}

.sideBar.menu-close .nav-links li:hover .sub-menu{
  opacity: 1;
  pointer-events: auto;
}

.sideBar.menu-close .nav-links li .sub-menu .link_name{
  display: none;
}

.sideBar.menu-close .nav-links li .sub-menu .link_name{
  opacity: 1;
  display: block;
}
.sideBar.menu-close .nav-links li .sub-menu li.sub-arrow:hover .child-menu {
  pointer-events: auto;
  display: block;
}

.sideBar .nav-links li .sub-menu .sub-arrow .icon-link {
  color: #fff;
  opacity: 0.6;
  font-size: 14px;
  padding: 5px 0;
}

.sideBar .nav-links li .sub-menu .sub-arrow .child-menu {
  display: none;
}

.sideBar .nav-links li.showMenu .sub-menu .sub-arrow.showChild .child-menu{
  display: block;
}

.sideBar .nav-links li.sub-arrow.showChild i.child-open{
  transform: rotate(-180deg);
}

.sideBar .nav-links li span.menu-blank {
  display: none;
}

.sideBar.menu-close .nav-links li span.menu-blank {
  display: block;
  position: absolute;
  left: 105%;
  top: 10px;
  color: #fff;
  font-size: 14px;
  padding: 5px;
  background: #000c17;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

.sideBar.menu-close .nav-links li:hover span.menu-blank{
  opacity: 1;
  pointer-events: auto;
}

.sideBar.menu-close .nav-links li span.menu-blank::before{
  content: "";
  position: absolute;
  top: 8px;
  left: -15px;
  width: 0;
  height: 0;
  border-width: 8px;
  border-style: solid;
  border-color: transparent #000c17 transparent transparent;
}

.main-content{
  width: calc(100% - 200px); 
  height: calc(100vh - 3rem);
  overflow: hidden;
  display: flex;
  flex: auto;
  flex-direction: column;
  background: #f0f2f5;
  transition:  all 0.3s ease;
}

.scrollbar-container{
  position: relative;
  height: 100%;
  overflow: auto;
}
.footer {
  flex: 0 0 auto;
  background: rgb(210, 210, 210);
  height: 70px;
  padding: 15px;
  font-size: 14px;
  text-align: -webkit-center;
}

.sideBar.menu-close {
  width: 66px;
  flex: 0 0 66px;
}  

.sideBar .other-modules{
  flex: 0 0 auto;
  height: 75px;
  padding: 0px;
  font-size: 14px;
  text-align: -webkit-center;
}

.sideBar .other-modules img{
  min-width: 25px;
  max-width: 35px;  
  padding: 5px;
  border-radius: 5px;
  background: gray;
  -webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.sideBar .other-modules img:hover{
  -webkit-filter: grayscale(0);
	filter: grayscale(0);
  background: white;
}


/* Estilos MBM */
th.sorting.sorting_desc, th.sorting.sorting_asc {
  background-color: white !important;
  color: #4e4e4e;
}
.DTFC_LeftHeadWrapper {
  background: white;
}
.DTFC_LeftBodyLiner {
  top: -13px !important;
  overflow-y: hidden !important;
}
table.table.table-striped.table-bordered.table-hover.dataTables-example.dataTable.no-footer.DTFC_Cloned {
  background: white;
}
th, td { white-space: nowrap; }
div.dataTables_wrapper {
    /* width: 800px; */
    margin: 0 auto;
}
.table thead {
  background: #1c84c6;
    color: white;
}
table.DTFC_Cloned thead{
  background-color: #1c84c6;
}
.ListNotification li:hover {
  background: #f1f1f1;
}
.proyectos li:hover {
  background: #f1f1f1;
}
.table-bordered > thead > tr > th, .table-bordered > thead > tr > td{
  background-color: #1d84c6;
}

table.dataTable tbody th,
table.dataTable tbody td {
    white-space: nowrap;
}

table.dataTable tbody td {
  vertical-align: middle;
}

#listIntegrantes{
  height: 30vh;
  overflow-y: auto;
}
 
.swal2-container.swal2-center.swal2-backdrop-show 
{
  z-index: 20000 !important;
}

.alertify-notifier{
  color: white;
}
 
#panelNotificaciones{
  margin-left: -140px;
} 
#panelDesarrolloNotificaciones{
  margin-left: -160px;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  html,
  body { 
    overflow: auto;
  }
   
}

.panel {
  margin: 10px 0;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
}
.panel-success {
  border-color: #1c84c6;
}
.panel-heading {
  color: white;
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel-success > .panel-heading {
  background-color: #1c84c6;
  border-color: #1c84c6;
  color: #ffffff;
}
.list-group-item {
  background-color: inherit;
  border: 1px solid #e7eaec;
  display: block;
  margin-bottom: -1px;
  padding: 10px 15px;
  position: relative;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  float: left;
  margin-right: 10px;
}

.message-date {
    font-size: 10px;
    color: #888888;
}
.message-content {
  font-size: 13px;
  color: #676a6c;
  display: block;
}

.panel-footer {
  padding: 10px 15px;
  border-top: 1px solid #e7eaec;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  #panelNotificaciones{
    margin-left: -280px;
  }
  #panelDesarrolloNotificaciones{
    margin-left: -280px;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
   
  .panel-detalles{
    height: 65vh;
    /* overflow-y: auto; */
  }
  .panel-desarrollo{ 
    min-height: 65vh;
  }
  .panel-desarrollo .list-desarrollo{
    height: 59.184vh;
    /* overflow-y: auto; */
  }
  
  .panel-desarrollo .text-desarrollo textarea{
    resize: none;
  }
  
  .panel-desarrollo-general{
    height: 70.5vh;
    /* overflow-y: auto; */
  }

  .panel-mensaje{
    height: 26.5vh;
  }
  .panel-mensaje .list-mensaje{
    height: 21vh;
    /* overflow-y: auto; */
  }
  .panel-mensaje .text-mensaje textarea{
    resize: none;
  } 
  .panel-adjuntos{
    height: 26.5vh;
  }
   
}

.dataTables_wrapper{
  font-family: Nunito, sans-serif;
  font-size: 13px;
}

div.dts div.dataTables_scrollBody {
  background: none !important; 
}

.ajs-message.ajs-custom { 
  color: #e3e6e9;  
  background-color: dodgerblue;  
  border-color: dodgerblue; 
}

.scrollbar-container::-webkit-scrollbar {
 display: none;
}

.btn-detail {
  background-color: #1c84c6 !important;
}

.text-detail {
  color: #1c84c6 !important;
}
.topnav-centered p {
  float: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #00164f;
}

@media only screen and (max-width: 600px) {
  .topnav-centered p{
    display: none;
  }
}
video {
  width: 100%    !important;
  height: auto   !important;
}

.panel-title > .small,
.panel-title > .small > a,
.panel-title > a,
.panel-title > small,
.panel-title > small > a {
  color: inherit;
}
.page-heading {
  border-top: 0;
  padding: 0 10px 20px 10px;
}
.panel-heading h1,
.panel-heading h2 {
  margin-bottom: 5px;
}
.panel-body {
  padding: 15px;
}
/* Bootstrap 3.3.x panels */
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 4px;
}
.panel-heading {
  color: white;
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel-footer {
  padding: 10px 15px;
  border-top: 1px solid #e7eaec;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel-default > .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #e7eaec;
}
.panel-default {
  border-color: #e7eaec;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  html,
  body { 
    overflow: auto;
  }
   
}
@media (max-width: 768px) {
  
}

.select2-container--open {
  z-index: 9999999
}

div#tbl_ctrl_inventario_wrapper div.dataTables_scrollBody {
  min-height: 300px;
}

.notificacion_bloqueo{
  display: none;
}

.btn-notification:focus {
  outline: 0;
  box-shadow: none;
}
.panel-notificaciones {
  background: #fff;
  -webkit-box-shadow: 0 0 35px 0 rgb(0 0 0 / 25%);
  box-shadow: 0 0 35px 0 rgb(0 0 0 / 25%);
  border-radius: 5px;
  opacity: 1;
  position: absolute;
  right: 0;
  visibility: visible;
  width: 22rem;
  display: none;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  z-index: 9990;
  max-height: 35vh;
  overflow-y: auto;
  
}


.container-iframe {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}