html,
body,
.container-fluid,
.container-fluid > .row,
#render {
  height: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

:root {
  --primary-color: #106873; /* Color verde */
  --primary-color-border: #0c5963; /* Color verde */
  --primary-color-light: #10687388; /* Color verde */
  --secondary-color: #f1a020; /* Color naranja */
  --secondary-color-border: #df9114; /* Color naranja */
  --secondary-color-light: #f1a020; /* Color naranja */
  --font-size: 16px;
  --color-header: #439aa4; /* Color naranja */
  --text-title: #222; /* Color naranja */
  --text-subtitle: #888; /* Color naranja */
}

/* 
.table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
	padding: 2px 8px;
	white-space: nowrap;
	font-size: 13px;
} */

.module-container {
  height: 100%;
}

.navbar-default {
  background: #4686b0;
  color: #fff;
}

.navbar-default .navbar-brand {
  color: #fff;
}

.no-padding {
  padding: 0px;
}

.navbar-default a {
  color: #fff;
  background: #4686b0;
}

.navbar-default .navbar-nav > li > a {
  color: #fff;
  line-height: 16px;
  padding: 8px;
}

.module-container {
  padding: 0px;
  overflow: auto;
}
/* la seleccion de las tablas sea mas notoria */
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: #b1bcd8;
}

.table-hover > tbody > tr.selected > td,
.table-hover > tbody > tr.selected > th {
  background-color: #d2d6de;
  /*color: #fff;*/
}

.table .card-view {
  border-bottom: 1px solid #ccc;
}

/*material design*/
.nav-tabs > li > a,
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
  border-radius: 0;
}

.nav-tabs > li > a:hover,
.nav-tabs > li > a {
  padding: 6px 12px;
}

.modal-header,
.modal-footer {
  background: #fff;
}

.ui-datepicker .ui-datepicker-header {
  color: #444;
}

.fixed-table-body {
  background: #fff;
}
.panel-info {
  border-color: #ccc;
}

@-moz-keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}

@-o-keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}

@-moz-keyframes loading-text-opacity {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-o-keyframes loading-text-opacity {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes loading-text-opacity {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes loading-text-opacity {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 2px solid transparent;
  border-color: transparent #000 transparent #000;
  -moz-animation: rotate-loading 1.5s linear 0s infinite normal;
  -moz-transform-origin: 50% 50%;
  -o-animation: rotate-loading 1.5s linear 0s infinite normal;
  -o-transform-origin: 50% 50%;
  -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
  -webkit-transform-origin: 50% 50%;
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading {
  border-color: transparent #e45635 transparent #e45635;
}

.loading-container:hover .loading,
.loading-container .loading {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#loading-text {
  -moz-animation: loading-text-opacity 2s linear 0s infinite normal;
  -o-animation: loading-text-opacity 2s linear 0s infinite normal;
  -webkit-animation: loading-text-opacity 2s linear 0s infinite normal;
  animation: loading-text-opacity 2s linear 0s infinite normal;
  color: #000;
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 10px;
  font-weight: bold;
  margin-top: 40px;
  opacity: 0;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 0;
  width: 100px;
}

h2.information {
  border-left: 5px solid #a21b1b;
  background-color: #dfdfdf;
  padding: 8px;
  font-style: italic;
  color: #666;
}

::-webkit-scrollbar-track {
  /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
  background-color: #ddd;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;

  background-color: #ddd;
}

::-webkit-scrollbar-thumb {
  background-color: #aaa;
}
/*
.form-control {
    height: 25px;
    border-radius: 0;
        font-size: 11px;
        padding: 3px 12px;
}

.btn {
    padding: 3px 12px;
    font-size: 12px;
    border-radius: 0;

}

.input-group-addon {
    padding: 3px 12px;
}

.form-control-feedback {
    height: 25px;
    line-height: 25px;
}

.modal-header, .modal-footer {
    background: #7d7d7d;
    border-top: 1px solid #777;
        padding: 2px 16px;
}
.modal-header {
    border-bottom: 1px solid #777;
    color: #000;
}
.modal-body{
	background: #9E9E9E;
}*/

/* para los iconos 125x18 */
.icon-fugue {
  background-image: url(../img/icons/fugue/icons/icons-fugue.png);
  height: 18px;
  width: 18px;
  display: inline-block;
  background-position: 28px 80px;
}

.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a:hover {
  color: #ccc;
}

select option {
  padding: 6px 30px 6px 12px;
  position: relative;
}

select option:checked {
  background: #4caf50 linear-gradient(0deg, #4caf50 0%, #4caf50 100%);
  padding: 6px 30px 6px 12px;
}

select option:checked:after {
  position: absolute;
  content: "";
  height: 20px;
  width: 2px;
  background-color: #fff;
  right: 12px;
  transform: rotate(45deg);
}

select option:checked:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 2px;
  background-color: #fff;
  right: 22px;
  transform: rotate(-45deg);
  top: 14px;
}

.material-symbols-rounded {
  vertical-align: middle;
  font-size: 18px !important;
}

.sub-title {
  font-size: 18px;
  color: #445963;
}

.p-relative {
  position: relative;
}

button#addPhone {
  position: absolute;
  right: -8px;
  top: -5px;
}

p.explain-text {
  color: #607d8b;
  font-style: italic;
  border-left: 4px solid;
  padding: 8px;
  background: #f5f5f5;
}

.copy:hover {
  /* text-shadow: 0px 2px 2px #ffc107; */
}

.modal-backdrop {
  position: initial;
}

body.agent {
}

body.agent #workspace_admin_module_container > nav {
  display: none;
}

body.agent #workspace_admin_module_container .menu-slide {
  display: none;
  left: -360px;
}

body.agent #workspace_admin_module_container .content {
  padding-left: 0;
}

body.agent #workspace_admin_module_container h2#title-app {
  margin-left: 0;
}

body.agent #workspace_admin_module_container .main-content {
  height: 100%;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.flex-center {
  display: flex;
  align-items: center;
}

.btn-block {
  width: 100%;
}

.fs-wrap {
  vertical-align: top;

  line-height: 22px;
}

.fs-label-wrap {
  display: block;
  width: 100%;
  height: 34px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.modal-foraing .modal-body {
  height: 450px;
}

.btn-default {
  background: #e0e0e0;
  margin-right: 4px;
}

body {
  /* font-family: 'Raleway', sans-serif; */
  font-display: sans-serif;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1pxsolidrgba (0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
  box-shadow: 15px 18px 80px #0000008f;
}

.form-inline {
  display: flex;
  grid-gap: 8px;
  align-items: flex-end;
}

.text-helper {
  padding: 8px;
  background: #eee;
  margin: 8px 0;
  font-size: 14px;
  border-radius: 4px;
  width: fit-content;
  display: flex;
  grid-gap: 8px;
}

#titan-message .modal-content h1 {
  font-family: auto;
}

.progress-bar.progress-bar-success {
  height: 100%;
}

.btn {
  display: inline-flex;
  grid-gap: 8px;
  align-items: center;
  justify-content: center;
}

.number-formatter {
  font-family: "Roboto", Arial, sans-serif; /* Usa una fuente clara y legible */
  font-weight: bold; /* Resalta el número */
  padding: 4px 8px; /* Añade espacio interno alrededor del número */
  border-radius: 4px; /* Bordes redondeados para suavizar el contorno */
  display: inline-block; /* Asegura que el número se comporte como un elemento en línea */
}

.no-list {
  list-style: none;
}

.btn-danger {
  background-color: var(--primary-color);
  border-color: var(--primary-color-border);
}

.btn-danger:hover {
  background-color: var(--primary-color-border);
  border-color: var(--primary-color-border);
}

.btn-danger:active {
  background-color: var(--primary-color-border);
  border-color: var(--primary-color-border);
}

.btn-danger:focus {
  color: #fff;
  background-color: var(--primary-color-border);
  border-color: var(--primary-color-border);
  box-shadow: 0 0 0 0.25rem var(--primary-color-light) !important;
}

.btn-danger.disabled,
.btn-danger:disabled {
  background-color: var(--primary-color-light);
  border-color: var(--primary-color-border);
}


/* loading */

#loader-content {
  background: rgba(255, 255, 255, 0.75);
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
}

.loader {
  height: calc(100% - 106px);
  width: 100%;
  padding: 0;
  display: inline-block;
  background: rgba(255, 255, 255, 0.75);
  position: fixed;
  left: 0;
  top: 106px;
  z-index: 10;
}

.spinner {
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #333;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes bouncedelay {
  0%,
  80%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  40% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

/* end loading */
.dropdown-filter-dropdown {
  display: none;
}

.modal-content {
  box-shadow: 15px 18px 0 2000px #000000ba;
}