/* VIEJO NOTIFICACIONES  */
/* Modals */
.cont-filtrosAlertas {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 50px;
  align-items: center;
  justify-content: space-around;
}

.filtrosAlertas {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  width: 30px;
}

.filtrosAlertas__link {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
}

.filtrosAlertas__link:hover,
.filtrosAlertas__check:hover + .filtrosAlertas__link {
  color: #fff;
  background: #3753bf;
  text-decoration: none;
  -webkit-animation-name: pulseAnimation--azul;
  animation-name: pulseAnimation--azul;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.filtrosAlertas__link--RND {
  transition: 200ms all;
}

.filtrosAlertas__link--RND:hover {
  background: orangered;
  color: #fff;
  -webkit-animation-name: none;
  animation-name: none;
}

/* Contenido */

/* Contador de notificaciones EJ: 2362 Notificaciones */
.cont-contadorNotificaciones {
  display: none;
  /* OCULTADO PARA ANIMACIONES */
}
/* Tabla notificaciones */
.tbl-notificaciones {
  font-weight: normal;
}
.tbl-notificaciones thead tr th {
  border: none;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #3753bf;
}
.tbl-notificaciones tr th,
.tbl-notificaciones tr td {
  padding: 0;
  padding: 5px 0px;
}
.tbl-notificaciones tbody tr td {
  vertical-align: middle;
}
.tbl-notificaciones tbody tr:hover {
  cursor: pointer;
  background-color: #434652;
}
/* --- --- Contenedor --- --- */
.container-notificaciones {
  width: 97%;
  margin: 0 auto;
}

.modal__notificaciones .modal-body {
  background: #3f424b;
}

/* SECCION VIDEO/MAPA */
.cont-videoMapa {
  margin: 30px 0;
  display: none;
  /* OCULTADO PARA ANIMACIONES */
}

.cont-videoMapa .notiMap {
  height: 100%;
}

.cont-mapa {
  height: 360px;
}

.cont-mapa .notiMap {
  height: 100%;
}

/* NUEVO NOTIFICACIONES */
/* --- --- SECCION PARAMETROS --- --- */
.filtroFechas_NH input[type='text'],
.filtroFechas_NH input[type='text'] + .input-group-addon {
  background: transparent;
  border: none;
  border-bottom: 1px solid #222;
  color: #ddd;
  border-radius: 0;
  box-shadow: none;
  transition: 200ms all ease;
}

.filtroFechas_NH input[type='text']:focus,
.filtroFechas_NH input[type='text']:focus + .input-group-addon {
  background: #1b1c22;
  border-bottom: 1px solid orangered;
}

.parametros-checkboxs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.parametros-checkboxs .form-group {
  display: grid;
  justify-content: center;
  grid-template-rows: repeat(2, 1fr);
  text-align: center;
}

.parametros-checkboxs .form-group label,
.parametros-checkboxs .form-group input {
  margin: 0 auto;
  transition: 300ms all;
}

.parametros-checkboxs .form-group input[type='checkbox'],
.parametros-checkboxs .form-group input[type='checkbox']:active,
.parametros-checkboxs .form-group input[type='checkbox']:focus {
  margin-top: 0;
  outline: none;
}

.parametros-checkboxs .form-group label {
  border-bottom: 2px solid transparent;
}

.parametros-checkboxs .form-group input[type='checkbox']:checked + label {
  border-bottom: 2px solid orangered;
  border-radius: 1px;
}

.filtro_NH .form-group select,
.filtro_NH .form-group input {
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #222;
  transition: 200ms all ease;
  color: #fff;
}

.filtro_NH .form-group .teleFinderList {
  max-height: 150px;
  overflow: scroll;
  position: absolute;
  top: 53px;
  left: 10px;
  width: 90%;
}

.RNDlabel--naranja {
  color: #fd9000;
}

.parametros-checkboxs .form-group input[type='checkbox']:checked + .RNDlabel--naranja {
  color: #ffaa37;
}

/* --- --- Btn Filtrar --- --- */
.filtroActive_NH button {
  margin-top: 23px;
}

/* --- --- Selector de PATENTES --- --- */
.selectorPatentes {
  color: #fff;
}

.selectorPatentes fieldset,
.selectorPatentes fieldset:focus,
.selectorPatentes__select,
.selectorPatentes__select:focus {
  border: none;
  outline: none;
}

.selectorPatentes__select {
  margin-top: 10px;
  background-color: #333;
  padding: 5px 2px;
}

.selectorPatentes__select option:nth-of-type(2n) {
  background: #2f3137;
}

.selectorPatentes__select option:nth-of-type(2n + 1) {
  background: rgba(68, 70, 79, 0.8);
}

/* --- --- TABLAS --- --- */
.nh-tabla tbody {
  max-height: 300px;
  overflow-y: auto;
}

.nh-tabla thead tr th {
  font-size: 1.2rem;
  background: #fd9000;
  border-right: 1px solid orangered;
}

.nh-tabla thead tr th:last-child {
  border-right: none;
}

.nh-tabla thead tr th a {
  color: #fff;
}

/*---Body---*/
.nh-tabla tbody tr {
  transition: 100ms all;
  color: #d2d2d2;
}

.nh-tabla tbody tr td {
  font-size: 1.2rem;
  padding: 0;
  vertical-align: middle;
}

.nh-tabla tbody tr:nth-child(even) {
  background: #2f3137;
}

.nh-tabla tbody tr:hover {
  background: #50545f;
}

.fila-parametros input:focus,
.fila-parametros select:focus {
  box-shadow: none;
  background: #1b1c22;
  border-bottom: 1px solid orangered;
}

.fila-parametros select option {
  background: #1b1c22;
}

.header-tabla-notificaciones,
.header-tabla-historial,
.header-multiple-patentes {
  margin: 20px 0px;
}

.header-multiple-patentes {
  margin-top: 30px;
}

.header-tabla-notificaciones__botones {
  display: flex;
  justify-content: flex-end;
}

.header-tabla-historial__botones {
  display: flex;
  justify-content: space-between;
}

/* --- --- TABLAS : TABLA NOTIFICACIONES --- --- */
.container-nh-tabla--notificaciones,
.container-nh-tabla--historial {
  max-height: 300px;
  overflow-y: scroll;
}
/* Checkboxs */
.checkbox_alarmas {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 13px;
}
.checkbox_alarmas .noActivado {
  transition: 300ms all;
  background-color: #343741;
}
.checkbox_alarmas .activado {
  transition: 300ms all;
  background-color: #1bbf89;
}
/* --- --- TABLAS : TABLA HISTORIAL --- --- */

.nh-tabla--historial thead .nh-tabla--historial__alertas {
  width: 40px;
  background: #454855;
  border: none;
  border-right: 1px solid #33353f;
}

.nh-tabla--historial thead .nh-tabla--historial__alertas a {
  background: transparent;
  color: cyan;
}

/* KEYFRAMES */
@-webkit-keyframes swing-in-top-fwd {
  0% {
    transform: rotateX(-100deg);
    transform-origin: top;
    opacity: 0;
  }

  100% {
    transform: rotateX(0deg);
    transform-origin: top;
    opacity: 1;
  }
}

@keyframes swing-in-top-fwd {
  0% {
    transform: rotateX(-100deg);
    transform-origin: top;
    opacity: 0;
  }

  100% {
    transform: rotateX(0deg);
    transform-origin: top;
    opacity: 1;
  }
}

@-webkit-keyframes slide-in-elliptic-right-fwd {
  0% {
    transform: translateX(800px) rotateY(-30deg) scale(0);
    transform-origin: -100% 50%;
    opacity: 0;
  }

  100% {
    transform: translateX(0) rotateY(0) scale(1);
    transform-origin: -1800px 50%;
    opacity: 1;
  }
}

@keyframes slide-in-elliptic-right-fwd {
  0% {
    transform: translateX(800px) rotateY(-30deg) scale(0);
    transform-origin: -100% 50%;
    opacity: 0;
  }

  100% {
    transform: translateX(0) rotateY(0) scale(1);
    transform-origin: -1800px 50%;
    opacity: 1;
  }
}
