/** @format */

@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,800&display=swap");

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

@media (max-width: 1279px) {
  body.no_ovfw {
    overflow: hidden;
  }
}

html ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

html ::-webkit-scrollbar-thumb {
  background-color: #afb6b9;
  outline: 1px solid #596470;
}

html ::-webkit-scrollbar {
  width: 8px;
}

.fa-size {
  font-size: 2em;
}

@media (max-width: 500px) {
  html ::-webkit-scrollbar {
    width: 6px;
  }

  .fa-size {
    font-size: 1em;
  }
}

@-webkit-keyframes aparecer {
  0% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}

@keyframes aparecer {
  0% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes rotate_center {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotate_center {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes parpadear_alerta {
  0% {
    border: 2px solid orange;
  }

  50% {
    border: 2px solid rgba(255, 166, 0, 0.3);
  }

  100% {
    border: 2px solid orange;
  }
}

@keyframes parpadear_alerta {
  0% {
    border: 2px solid orange;
  }

  50% {
    border: 2px solid rgba(255, 166, 0, 0.3);
  }

  100% {
    border: 2px solid orange;
  }
}

@-webkit-keyframes parpadear_error {
  0% {
    border: 2px solid #ff4f4f;
  }

  50% {
    border: 2px solid rgba(255, 79, 79, 0.3);
  }

  100% {
    border: 2px solid #ff4f4f;
  }
}

@keyframes parpadear_error {
  0% {
    border: 2px solid #ff4f4f;
  }

  50% {
    border: 2px solid rgba(255, 79, 79, 0.3);
  }

  100% {
    border: 2px solid #ff4f4f;
  }
}

@-webkit-keyframes parpadear_lleno {
  0% {
    border: 2px solid #50ff24;
  }

  50% {
    border: 2px solid rgba(85, 255, 51, 0.3);
  }

  100% {
    border: 2px solid #52ff2f;
  }
}

@keyframes parpadear_lleno {
  0% {
    border: 2px solid #50ff24;
  }

  50% {
    border: 2px solid rgba(85, 255, 51, 0.3);
  }

  100% {
    border: 2px solid #52ff2f;
  }
}

.fade {
  -webkit-animation: aparecer 0.3s ease;
  animation: aparecer 0.3s ease;
}

.btn-main {
  font-family: "Poppins", sans-serif;
  color: white;
  padding: 0.6em 1em;
  font-size: 0.9em;
  outline: none;
  border: none;
  background: #0077ff;
  border-bottom: 2px solid rgba(0, 0, 0, 0.301);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-main:hover:not(.disabled) {
  cursor: pointer;
  background: #0070f0;
}

.btn-main.red {
  background: #ff1010;
}

.btn-main.red:hover:not(.disabled) {
  background: #ff0101;
}

.btn-main.grey {
  background: #868686;
}

.btn-main.grey:hover:not(.disabled) {
  background: #7e7e7e;
}

.btn-main.orange {
  background: #ff7b00;
}

.btn-main.orange:hover:not(.disabled) {
  background: #f07400;
}

.btn-main.dark_blue {
  background: #0b4b9a;
}

.btn-main.dark_blue:hover:not(.disabled) {
  background: #093b79;
}

.btn-main.small {
  padding: 0.5em 0.9em;
  font-size: 0.8em;
}

.pre_icon {
  margin-right: 0.5em;
  width: 1.2em;
}

.page-container {
  min-height: calc(100vh);
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
  padding-top: 50px;
  padding-bottom: 1em;
}

@media (min-width: 1280px) {
  .page-container {
    padding-left: 48px;
  }

  .page-container.nav_visible {
    padding-left: 210px;
  }
}

.page-container button,
.page-container input,
.page-container select,
.page-container textarea {
  font-family: "Poppins", sans-serif;
}

.page-container input,
.page-container select,
.page-container textarea {
  outline: none;
  border: 1.5px solid grey;
  font-size: 0.9em;
  padding: 0.4em;
  background: none;
}

.page-container h1,
.page-container h2,
.page-container h3,
.page-container h4,
.page-container h5,
.page-container h6 {
  font-weight: 500;
}

.page-container.light {
  background: whitesmoke;
}

.page-container.light .page-title {
  background: #213c55;
}

.page-container.light .page-element .content {
  background: white;
}

.page-container.bg_blue:not(.dark) {
  background: #63c3ff !important;
}

.page-container.bg_blue .page-element {
  background: transparent !important;
}

.page-container a,
.page-container .link {
  text-decoration: none;
}

.page-container a .page-title:hover,
.page-container .link .page-title:hover {
  background: #1d344a;
  cursor: pointer;
}

.page-container a .page-title:hover .title,
.page-container .link .page-title:hover .title {
  text-decoration: underline;
}

.page-container .page-title {
  color: white;
  font-size: 1.1em;
  padding: 0.5em 1em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
}

.contenedor-title {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "title-edit button-title-edit";
}

.button-title-edit {
  align-self: center;
}

.contenedor-title-optionfooter {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "button-title-edit";
}

.button-title-edit {
  align-self: center;
}

.title-edit {
  align-self: center;
}

textarea {
  width: 97%;
  height: 100%;
}

.ver_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px 2px;
  grid-template-areas:
    "ver_col_1 ver_col_2 ver_col_3 ver_col_4"
    "ver_col_5 ver_col_6 ver_col_7 ver_col_7"
    "ver_col_8 null null null";
}

@media (max-width: 1280px) {
  .ver_container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px 2px;
    grid-template-areas:
      "ver_col_1 ver_col_2 ver_col_3"
      "ver_col_4 ver_col_5 ver_col_6"
      "ver_col_8 ver_col_7 ver_col_7";
  }
}

@media (max-width: 768px) {
  .ver_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 2px;
    grid-template-areas:
      "ver_col_1 ver_col_2"
      "ver_col_3 ver_col_4"
      "ver_col_5 ver_col_6"
      "ver_col_8 ver_col_8"
      "ver_col_7 ver_col_7";
  }
}

@media (max-width: 650px) {
  .ver_container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 2px;
    grid-template-areas:
      "ver_col_1"
      "ver_col_2"
      "ver_col_3"
      "ver_col_4"
      "ver_col_5"
      "ver_col_6"
      "ver_col_8"
      "ver_col_7";
  }
}

.ver_col_1 {
  grid-area: ver_col_1;
}

.ver_col_2 {
  grid-area: ver_col_2;
}

.ver_col_3 {
  grid-area: ver_col_3;
}

.ver_col_4 {
  grid-area: ver_col_4;
}

.ver_col_5 {
  grid-area: ver_col_5;
}

.ver_col_6 {
  grid-area: ver_col_6;
}

.ver_col_7 {
  grid-area: ver_col_7;
}

.ver_col_8 {
  grid-area: ver_col_8;
}

.page-container .page-title .date {
  color: #00ceff;
}

.page-container .page-title.blue {
  background: #0053b3;
}

.page-container .page-title .title {
  display: inline-block;
}

.page-container .page-title .title>i {
  font-size: 0.8em;
  margin-left: 0.8em;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.page-container .page-title .title a {
  color: white;
  opacity: 0.9;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
}

.page-container .page-title .title a:hover {
  text-decoration: underline;
  opacity: 1;
}

.page-container .page-title .date {
  float: right;
  font-size: 0.85em;
}

.page-container .page-title .date i {
  margin-right: 0.3em;
}

@media (max-width: 767px) {
  .page-container .page-title .date {
    float: none;
    margin: 0.2em 0;
  }
}

.page-container .page-title .date.Alerta {
  color: orange !important;
}

.page-container .page-title .date.Error {
  color: #ff4f4f !important;
}

.page-container .page-title .buttons_detalle {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 100%;
}

.page-container .page-title .buttons_detalle .button {
  width: 2.5em;
  height: 100%;
  background: rgba(0, 0, 0, 0.178);
  position: relative;
}

.page-container .page-title .buttons_detalle .button i {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

.page-container .page-title .buttons_detalle .button:hover {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.26);
}

.page-container .page-content {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 0 1em;
}

.page-container .page-content.maxim {
  max-width: 1500px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .page-container .page-content {
    margin: 0.5em auto;
    padding: 0 1em;
  }
}

.page-container .page-element {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin: 0 auto;
  margin-top: 1em;
  max-width: 1550px;
}

.page-container .page-element.max_1300 {
  max-width: 1300px;
}

.page-container .page-element.full {
  max-width: none;
}

.page-container .page-element.Alerta {
  -webkit-animation: parpadear_alerta 2s ease infinite;
  animation: parpadear_alerta 2s ease infinite;
}

.page-container .page-element.Error {
  -webkit-animation: parpadear_error 2s ease infinite;
  animation: parpadear_error 2s ease infinite;
}

.page-container .page-element .header_content {
  background: #2b4e6f;
  padding: 0.5em 1em;
  border-bottom: 1px solid rgba(33, 60, 85, 0.5);
  font-size: 0.9em;
  color: #00ceff;
}

.page-container .page-element .header_content a {
  color: #00ceff;
  text-decoration: none;
}

.page-container .page-element .header_content a:hover {
  text-decoration: underline;
}

.page-container .page-element .content {
  padding: 1em;
}

.page-container .page-element .content.no-vertical {
  padding: 0 1em;
  padding-top: 1em;
}

.error_box {
  margin: 0.1em auto;
  color: #ff4848;
  border: 2px solid #ff4848;
  font-size: 1.5em;
  padding: 1em;
  text-align: center;
}

@media (max-width: 768px) {
  .error_box {
    font-size: 1.2em;
  }

  .error_box span {
    display: block;
  }
}

.error_box.alert {
  color: #ff7300;
  border: 2px solid #ff7300;
}

.error_box i {
  margin-right: 0.5em;
}

.modal_screen_segundo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.759);
  z-index: 1000;
  -webkit-animation: aparecer 0.3s ease;
  animation: aparecer 0.3s ease;
}

.modal_screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.759);
  z-index: 1000;
  -webkit-animation: aparecer 0.3s ease;
  animation: aparecer 0.3s ease;
}

.modal_screen.preload {
  -webkit-animation: none;
  animation: none;
  opacity: 0.4;
}

.modal_screen.light .modal_container>div .modal_title {
  background: #213c55;
}

.modal_screen .modal_container {
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: aparecer 0.3s ease;
  animation: aparecer 0.3s ease;
}

.modal_screen .modal_container>div {
  background: white;
  width: 90vw;
  max-width: 520px;
  max-height: 80vh;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 10%;
  grid-template-rows: 1fr;
  gap: 1px 1px;
  grid-template-areas: "form-label form-input form-input boton-mas";
}

.grid-container-tarea {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 1px 1px;
  grid-template-areas: "form-label form-input form-input boton-mas";
}

.form-label {
  grid-area: form-label;
  justify-self: stretch;
  align-self: center;
  padding-right: 5px;
}

.boton-mas {
  grid-area: boton-mas;
  justify-self: stretch;
  align-self: center;
}

.form-input {
  grid-area: form-input;
  /* justify-self: start; */
  align-self: center;
}

.grid-containerM {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 10%;
  grid-template-rows: 1fr;
  gap: 1px 1px;
  grid-template-areas: "form-labelM form-inputM form-inputM";
}

@media (max-width: 450px) {
  .grid-container p {
    font-size: small;
  }

  .grid-container h5 {
    font-size: x-small;
  }

  .grid-container .input-autocomplete .selected input {
    font-size: x-small;
  }
}

@media (max-width: 600px) {
  /* .grid-containerM {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1px 1px;
    grid-template-areas: "form-labelM form-inputM";
  } */

  .btn-main {
    padding: 0.5em 0.9em;
    font-size: 0.8em;
    margin-bottom: 5px;
  }
}

.form-labelM {
  grid-area: form-labelM;
  justify-self: stretch;
  align-self: initial;
  padding-right: 5px;
}

.form-inputM {
  grid-area: form-inputM;
  /* justify-self: center; */
  align-self: initial;
}

#FormMantenimiento {
  margin: auto;
  width: 100%;
}

#FormTareas {
  margin: auto;
  width: 100%;
}

/* @media (max-width: 820px) {
  .modal_screen .modal_container > div {
    max-width: calc(100vw - 1em);
  } */
/* } */

@media (min-width: 1700px) {
  .modal_screen .modal_container>div {
    /* max-width: 1500px; */
    width: 80vw;
    height: 90vh;
    max-height: 90vh;
  }
}

.modal_screen .modal_container>div .modal_title {
  color: white;
  font-size: 1.1em;
  padding: 0.4em 1em;
  position: relative;
}

.modal_screen .modal_container>div .modal_title ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.modal_screen .modal_container>div .modal_title ::-webkit-scrollbar-thumb {
  background-color: #afb6b9;
  outline: 1px solid #596470;
}

.modal_screen .modal_container>div .modal_title ::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

.modal_screen .modal_container>div .modal_title .title_span {
  width: calc(100% - 4em);
  overflow: hidden;
  overflow-x: auto;
  white-space: nowrap;
}

.modal_screen .modal_container>div .modal_title .title_span.full {
  width: calc(100% - 1.5em);
}

.modal_screen .modal_container>div .modal_title i {
  position: absolute;
  right: 0.3em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 0.9em;
  padding: 0.4em;
  opacity: 0.8;
}

.modal_screen .modal_container>div .modal_title i:hover {
  opacity: 1;
  cursor: pointer;
}

.modal_screen .modal_container>div .modal_content {
  padding: 1em;
  height: 100%;
  max-height: calc(80vh - 40px);
  overflow-y: auto;
}

@media (min-width: 1700px) {
  .modal_screen .modal_container>div .modal_content {
    max-height: calc(90vh - 40px);
  }

  .modal_screen .modal_container>div .modal_content .grafica-container {
    height: 100%;
    max-height: 100%;
  }
}

@media (max-width: 650px) {
  .modal_screen .modal_container>div .modal_content {
    padding: 0.5em;
  }
}

@media (min-width: 1700px) {
  .modal_screen.small .modal_container>div {
    height: auto !important;
    max-width: 600px;
  }
}

.modal_screen .modal_loading {
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid white;
  border-bottom-color: transparent;
  -webkit-animation: rotate_center 0.8s linear infinite;
  animation: rotate_center 0.8s linear infinite;
}

.modal_screen .modal_confirm {
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  max-width: 95vw;
  background: white;
  border-radius: 2px;
  padding: 1em;
  width: 350px;
  text-align: center;
}

.modal_screen .modal_confirm .botones {
  text-align: center;
  margin-top: 1em;
}

.modal_screen .modal_confirm .botones button:not(:last-child) {
  margin-right: 0.5em;
}

.botones .btn-main {
  margin-right: 0.5em;
  text-align: center;
}

.botones {
  text-align: center;
}

.botones-end {
  text-align: end;
}

.grafica-container {
  max-width: 100%;
  height: 600px;
  position: relative;
  max-height: 70vh;
}

@media (min-width: 1700px) {
  .grafica-container {
    height: 80vh;
    max-height: 80vh;
  }
}

.grafica-container .grafica-placeholder {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 1.3em;
  text-align: center;
}

.grafica-container .grafica-placeholder .modal_loading {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #a8a8a8;
  border-bottom-color: transparent;
  -webkit-animation: rotate 0.8s linear infinite;
  animation: rotate 0.8s linear infinite;
  margin: 0 auto;
}

.grafica-container .grafica-placeholder .text {
  margin: 0 auto;
  margin-top: 1em;
}

.Toastify .Toastify__toast-body {
  font-family: "Poppins", sans-serif;
}

.chart_element {
  text-align: center;
  border: 1px solid rgba(79, 90, 110, 0.292);
  border-radius: 3px;
  padding: 1em 0.5em;
  margin: 1em auto;
  -webkit-animation: aparecer 0.8s ease;
  animation: aparecer 0.8s ease;
  color: #072430;
}

@media (max-width: 650px) {
  .chart_element {
    margin: 0.5em auto;
  }
}

.chart_element .chart_title {
  font-weight: 500;
  font-size: 1.1em;
  opacity: 0.85;
  margin: 0 auto;
  margin-bottom: 1em;
  max-width: 95%;
  height: 2.4em;
  line-height: 1.2em;
}

.chart_element .chart_title .span {
  display: inline-block;
}

.chart_element .chart_title .span:not(:last-child) {
  margin-right: 1em;
  border-right: 2px solid grey;
  padding-right: 1em;
}

.chart_element .chart_container {
  margin: 0 auto;
  max-width: 100%;
}

.chart_element .chart_container.linear {
  margin: 1.95em auto;
}

.chart_element .chart_container.termo {
  -webkit-transform: translateX(22px);
  transform: translateX(22px);
  margin-top: -1em;
}

.chart_element .load_graph {
  display: inline-block;
  border: 1px solid rgba(79, 90, 110, 0.292);
  padding: 0.4em 1em;
  cursor: pointer;
  border-radius: 3px;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.chart_element .load_graph i {
  font-size: 1.1em;
}

.moment-container {
  position: relative;
  z-index: 10;
}

.moment-container>i {
  display: none;
  color: white;
}

.moment-container>div {
  position: fixed;
  right: 100%;
  top: 0;
  -webkit-transform: translateY(-50%) translateX(-20px);
  transform: translateY(-50%) translateX(-20px);
  -webkit-box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.342);
  box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.342);
}

.moment-container>div:after {
  content: "";
  position: fixed;
  right: 0;
  top: 46%;
  width: 50px;
  height: 50px;
  background: white;
  -webkit-transform: translateY(-50%) translateX(10px) rotate(45deg);
  transform: translateY(-50%) translateX(10px) rotate(45deg);
  z-index: -1;
  -webkit-box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.342);
  box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.342);
  border: 1px solid rgba(255, 255, 255, 0.103);
}

@media (max-width: 991px) {
  .moment-container>div {
    top: -5px;
    right: 50%;
    -webkit-transform: translateY(25px) translateX(50%);
    transform: translateY(25px) translateX(50%);
  }

  .moment-container>div:after {
    top: 0;
    right: 50%;
    -webkit-transform: translateY(-10px) translateX(50%) rotate(45deg);
    transform: translateY(-10px) translateX(50%) rotate(45deg);
  }
}

.input-container {
  border: 1.5px solid grey;
  position: relative;
  padding: 0.05em 0.2em;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
}

.input-container:hover {
  background: rgba(217, 226, 236, 0.103);
}

.input-container.visible {
  background: #0077ff;
  border-color: #0056b8;
  color: white;
}

.input-container.visible input {
  color: white;
}

.input-container input {
  border: none;
  cursor: pointer;
}

.input-container i {
  position: absolute;
  right: 0.5em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.input-container.visible~.moment-container {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.644);
  -webkit-animation: aparecer 0.3s ease;
  animation: aparecer 0.3s ease;
}

.input-container.visible~.moment-container>i {
  display: block;
  right: 0;
  padding: 0.8em;
  font-size: 1.4em;
  position: fixed;
  opacity: 0.8;
}

.input-container.visible~.moment-container>i:hover {
  cursor: pointer;
  opacity: 1;
}

.input-container.visible~.moment-container>div {
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  width: 300px;
}

.input-container.visible~.moment-container>div:after {
  display: none;
}

.tooltip {
  position: relative;
}

.tooltip:after {
  content: attr(data-tooltip);
  font-family: "Poppins", sans-serif;
  color: white;
  background: #131313;
  padding: 0.4em 0.5em;
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-5px);
  transform: translateX(-50%) translateY(-5px);
  white-space: pre;
  font-size: 0.9em;
  z-index: 200;
  border-radius: 3px;
  visibility: hidden;
  opacity: 0.2;
  line-height: 1.4em;
}

.tooltip:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
  width: 10px;
  background: #131313;
  height: 10px;
  visibility: hidden;
  opacity: 0.2;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

.tooltip:hover:after,
.tooltip:hover:before {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.tooltip.bottom:after {
  bottom: 0;
  -webkit-transform: translateY(120%) translateX(-50%);
  transform: translateY(120%) translateX(-50%);
}

.tooltip.bottom:before {
  bottom: 0;
  -webkit-transform: translateX(-50%) translateY(100%) rotate(135deg);
  transform: translateX(-50%) translateY(100%) rotate(135deg);
}

.tooltip.left:after {
  left: 0;
  -webkit-transform: translateY(-10%) translateX(-2px);
  transform: translateY(-10%) translateX(-2px);
}

.tooltip.left:before {
  left: 0;
  -webkit-transform: translateX(0) translateY(0) rotate(-45deg);
  transform: translateX(0) translateY(0) rotate(-45deg);
}

.bokeh-tooltip {
  padding: 0.3em;
  font-family: "Poppins";
}

.bokeh-tooltip .item .item-title {
  display: inline-block;
  color: #0077ff;
  font-weight: 500;
}

.bokeh-tooltip .item .item-title.red {
  color: red;
}

.bokeh-tooltip .item .item-value {
  font-weight: 500;
  margin-left: 0.4em;
  font-size: 0.95em;
}

.no_service {
  background: #0c1c30;
  min-height: 100vh;
  width: 100%;
}

.no_service .err_service {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100vw;
  padding: 1.5em;
  font-size: 2em;
  color: white;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: #0073f7;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#2188ff),
      to(#0065d8));
  background: linear-gradient(to bottom, #2188ff 0%, #0065d8 100%);
  border-radius: 3px;
  text-align: center;
  -webkit-box-shadow: 1px 1px 3px 4px rgba(0, 0, 0, 0.205);
  box-shadow: 1px 1px 3px 4px rgba(0, 0, 0, 0.205);
}

@media (max-width: 1024px) {
  .no_service .err_service {
    padding: 1em;
    font-size: 1.7em;
  }
}

@media (max-width: 600px) {
  .no_service .err_service {
    width: 95%;
  }
}

.no_service .err_service button {
  font-family: "Poppins";
  padding: 0.5em;
  font-size: 0.5em;
  color: white;
  background: none;
  outline: none;
  border: 2px solid rgba(0, 0, 0, 0.151);
  margin-top: 2em;
  cursor: pointer;
}

.no_service .err_service button:hover {
  background: rgba(0, 34, 56, 0.651);
}

.p_1em {
  padding: 1em;
}

.empty_notif {
  margin: 2em auto;
  text-align: center;
  background: #0073f7;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#0c7dff),
      to(#006ce8));
  background: linear-gradient(to bottom, #0c7dff 0%, #006ce8 100%);
  border-radius: 3px;
  color: white;
  padding: 2em 1em;
}

.empty_notif h4 a {
  color: white;
}

.a-center {
  text-align: center !important;
}

.a-left {
  text-align: left !important;
}

.pag_details {
  background: white;
  padding: 0.5em 1em;
  padding-bottom: 1em;
  text-align: center;
  max-width: 1550px;
  margin: 0 auto;
}

.pag_details .links a,
.pag_details .links span {
  text-decoration: none;
  display: inline-block;
}

.pag_details .links a:not(:last-child),
.pag_details .links span:not(:last-child) {
  margin-right: 1em;
}

.pag_details .links span {
  cursor: auto;
  opacity: 0.8;
}

.pag_details .links span:hover {
  background: #868686;
}

.pagination {
  width: 100%;
  text-align: center;
}

.pagination .pagination-buttons {
  font-size: 95%;
  margin-top: 1em;
}

.pagination .pagination-buttons button:first-child {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.pagination .pagination-buttons button:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.pagination button {
  border: none;
  outline: none;
  background: none;
  font-family: "Poppins", sans-serif;
  padding: 0.5rem 0.75rem;
  font-size: 0.95em;
  opacity: 0.92;
  border: 1px solid #dee2e6;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.pagination button.disabled {
  color: #6c757d;
  cursor: auto;
  background: white;
  border: 1px so;
}

.pagination button.enabled,
.pagination button.unselected {
  cursor: pointer;
  color: #0f7fff;
  background: white;
}

.pagination button.enabled:hover,
.pagination button.unselected:hover {
  background: #f7f7f7;
}

.pagination button.selected {
  color: white;
  background: #0f7fff;
  border-color: #0f7fff;
}

i.click_icon {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 0.5em;
  cursor: pointer;
  opacity: 0.8;
}

i.click_icon:hover {
  opacity: 1;
}

.input-box {
  border: 1.5px solid grey;
  position: relative;
  max-width: 310px;
  margin: 0 auto;
  margin-top: 0.3em;
}

.input-box input {
  border: none;
  max-width: calc(100% - 1em);
}

.input-box .input_button {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 0.3em 0.7em;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#0077ff),
      to(#0070f0));
  background: linear-gradient(#0077ff, #0070f0);
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 1em;
}

.input-box .input_button:hover {
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#0072f5),
      to(#006be6));
  background: linear-gradient(#0072f5, #006be6);
}

.input-box .input_button i {
  color: white;
}

.sm {
  font-size: 0.85em;
}

.bat-container {
  display: inline-block;
}

.bat-container .bat {
  display: inline-block;
  width: 17px;
  height: 30px;
  position: relative;
  background: #e2e2e2;
  border-radius: 1px;
  -webkit-box-shadow: inset -2.5px 0 2px 1px rgba(255, 255, 255, 0.526);
  box-shadow: inset -2.5px 0 2px 1px rgba(255, 255, 255, 0.526);
}

.bat-container .top {
  position: absolute;
  top: 0;
  left: 50%;
  width: 60%;
  height: 4px;
  -webkit-transform: translateY(-100%) translateX(-50%);
  transform: translateY(-100%) translateX(-50%);
}

.bat-container .relleno {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-box-shadow: inset -2.5px 0 2px 1px rgba(255, 255, 255, 0.526);
  box-shadow: inset -2.5px 0 2px 1px rgba(255, 255, 255, 0.526);
}

.bat-container .lines {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.bat-container .lines span {
  width: 100%;
  display: block;
  height: 2px;
  background: white;
}

.bat-container .lines span:nth-child(1) {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.bat-container .lines span:nth-child(2) {
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}

.bat-container .volt {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 1.2em;
}

.row.center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.region_selector {
  text-align: center;
}

.region_selector select {
  display: block;
  outline: none;
  border: 1.5px solid grey;
  background: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.9em;
  padding: 0.4em;
  margin: 0 auto;
  margin-bottom: 1em;
  min-width: 300px;
  max-width: 100%;
}

.back_to_list {
  font-size: 0.8em;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #0077ff;
  z-index: 100;
}

.back_to_list a {
  color: white !important;
  padding: 0.5em 1em;
  display: block;
}

.back_to_list:hover {
  cursor: pointer;
  background: #006be6;
}

@media (max-width: 600px) {
  .back_to_list {
    font-size: 0.75em;
  }
}

.updateWorker {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  -webkit-animation: aparecer 0.4s ease;
  animation: aparecer 0.4s ease;
  z-index: 999999999999;
}

.updateWorker span {
  position: fixed;
  left: 50%;
  top: 50%;
  padding: 1em;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  color: white;
  background: #0073f7;
  text-align: center;
}

@media (max-width: 600px) {
  .updateWorker span {
    width: calc(100% - 2em);
  }
}

.updateWorker span:hover {
  cursor: pointer;
  background: #006eed;
}

.jss3575 {
  transition: 0.2s background-color 0.1s;
  background-color: #ccc;
}

.jss3572 {
  color: #252525 !important;
  width: unset !important;
  border: 0 !important;
  height: unset !important;
  padding: 10px 15px;
  max-width: unset !important;
  min-width: unset !important;
  max-height: unset !important;
  min-height: unset !important;
  line-height: 24px;
  margin-left: 4px;
  border-radius: 3px;
}

.botonAccion {
  color: #252525 !important;
  width: unset !important;
  border: 0 !important;
  height: unset !important;
  padding: 5px 10px;
  max-width: unset !important;
  min-width: unset !important;
  max-height: unset !important;
  min-height: unset !important;
  line-height: 24px;
  margin-left: 4px;
  border-radius: 3px;
}

.jss3572:focus {
  outline: none;
}

.botonAccion:focus {
  outline: none;
}

.MuiTab-textColorInherit.Mui-selected {
  opacity: 1;
}

.MuiTab-textColorInherit {
  color: inherit;
  opacity: 0.7;
}

.MuiBadge-root {
  display: inline-flex;
  position: relative;
  flex-shrink: 0;
  padding-bottom: 5px;
  vertical-align: middle;
}

.MuiBadge-anchorOriginTopRightRectangle {
  top: 0;
  right: 0;
  transform: scale(1) translate(50%, -50%);
  transform-origin: 100% 0%;
}

.MuiBadge-colorSecondary {
  color: #fff;
  background-color: #1b77c2;
}

.MuiBadge-colorDanger {
  color: #fff;
  background-color: #d62828;
}

.MuiBadge-colorWarning {
  color: #fff;
  background-color: #ffae0b;
}

.MuiBadge-badge {
  height: 20px;
  display: flex;
  padding: 0 6px;
  z-index: 1;
  position: absolute;
  flex-wrap: wrap;
  font-size: 0.75rem;
  min-width: 20px;
  box-sizing: border-box;
  transition: transform 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  align-items: center;
  font-family: Nunito, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
  font-weight: 600;
  line-height: 1;
  align-content: center;
  border-radius: 10px;
  flex-direction: row;
  justify-content: center;
}

.shake {
  animation: shake_4333 3.875s ease infinite;
  transform-origin: 50% 50%;
}

@keyframes shake_4333 {
  0% {
    transform: rotate(-12deg);
  }

  5.16129% {
    transform: rotate(12deg);
  }

  6.45161% {
    transform: rotate(24deg);
  }

  11.6129% {
    transform: rotate(-24deg);
  }

  12.90323% {
    transform: rotate(-24deg);
  }

  18.06451% {
    transform: rotate(24deg);
  }

  19.35484% {
    transform: rotate(24deg);
  }

  24.51613% {
    transform: rotate(-24deg);
  }

  25.80645% {
    transform: rotate(-24deg);
  }

  30.96774% {
    transform: rotate(24deg);
  }

  32.25807% {
    transform: rotate(24deg);
  }

  37.41935% {
    transform: rotate(-24deg);
  }

  38.70968% {
    transform: rotate(-24deg);
  }

  43.87097% {
    transform: rotate(24deg);
  }

  48.3871% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.tabla_eliminar {
  /* border: 1px solid#b3b3b3b8; */

  background-color: rgb(241, 241, 241);
  text-align: left;
  padding: 0px 10px;
}

.msg_eliminar {
  padding: 0px 5px;
}

.btn-file {
  margin-bottom: 5px;
  /* border-radius: 50px; */
}

.separador {
  border-bottom: 1px solid grey;
  margin: 10px 5px;
}

/*# sourceMappingURL=main.css.map */

[type="file"] {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  white-space: nowrap;
  width: 1px;
}

[type="file"]+label {
  background-color: #0077ff;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  padding: 0.5em 0.9em;
  font-size: 0.8em;
  outline: none;
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.301);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  /* font-weight: 600; */

  display: inline-block;
  transition: all 0.5s;

  /* text-transform: uppercase; */
  width: fit-content;
  text-align: center;
}

[type="file"]:focus+label,
[type="file"]+label:hover {
  background-color: #106ba0;
}

.file-return {
  margin: 0;
}

.file-return:not(:empty) {
  margin: 1em 0;
}

.file-return {
  font-style: italic;
  font-size: 0.9em;
  font-weight: bold;
}

.file-return:not(:empty):before {
  content: "Selected file: ";
  font-style: normal;
  font-weight: normal;
}

.iconos-table {
  align-self: start;
}

/* .panel{
  top: -184px;
  position: relative;
  transform: translate(0px, 184px);
  overflow: hidden;
  transition: all 2s ease;
} */

/* ------------------------------------------------------------ */
.toggle {
  display: block;
  position: static;
  float: left;
}

.toggleWhite {
  margin-left: 1em;
  padding: 0.5em 0;
}

.toggleWhite i {
  font-size: 0.9em;
  opacity: 0.5;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.toggleWhite i.op1 {
  opacity: 1;
}

.toggleWhite .toggle {
  width: 40px;
  height: 18px;
  border-radius: 30px;
  display: inline-block;
  background: #08a045;
  margin: 0 0.2em;
  margin-right: 0.2em;
  position: relative;
  top: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  float: none;
}

.toggleWhite .toggle:after {
  height: 14px;
  width: 14px;
  content: "";
  border-radius: 50%;
  background: white;
  position: absolute;
  right: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.toggleWhite .toggle.white {
  background: #9e9e9e;
}

.toggleWhite .toggle.white:after {
  right: 24px;
}

.toggle {
  position: fixed;
  right: 0;
  color: white;
  padding: 0.1em 0.35em;
  font-size: 1.4em;
  margin: 0.2em;
  margin-top: 0.55em;
  cursor: pointer;
  text-shadow: 0px 1px 0px black;
}

.toggle span {
  width: 23px;
  height: 3px;
  background: white;
  display: block;
  line-height: 5px;
  margin-bottom: 5px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.toggle.visible span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(-225deg);
  transform: translateY(8px) rotate(-225deg);
}

.toggle.visible span:nth-child(2) {
  width: 0;
}

.toggle.visible span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(225deg);
  transform: translateY(-8px) rotate(225deg);
}

@media (min-width: 851px) {
  .toggle {
    display: none;
  }
}

.links:not(.visible) .link.tog_white {
  padding: 0.2em 0;
  margin-top: 0;
}

.links:not(.visible) .link.tog_white:hover {
  background: #006bb3;
}

.links:not(.visible) .link .toggleWhite {
  margin-left: 0;
  -webkit-transform: scale(0.9) translateX(2px);
  transform: scale(0.9) translateX(2px);
}

.links:not(.visible) .link .toggleWhite i {
  display: none;
}

.info-left {
  text-align: start;
  width: 100%;
  padding-right: 10px;
}

.info-right {
  text-align: end;
  width: 100%;
  padding-right: 10px;
}