.navbar {
  border-radius: 0;
  background-color: #f39137 !important;
  height: 80px;
  margin: 0px;
}

.navbar-brand {
  overflow: hidden;
  padding: 0px !important;
  margin: 0px !important;
  height: 4rem;
}
.navbar-brand img {
  height: 100%;
}

.dgom-nav-bar-item {
  color: white !important;
}
.dgom-nav-bar-item:hover {
  background-color: #f39137 !important;
}

.dgom-nav-bar-subitem {
  color: gray !important;
}

.webapp-nav {
  height: 80px;
  width: 100%;
  min-width: 100%;
  position: relative;
  z-index: 10;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-around;
  color: white;
  padding: 0px 24px;
  background-color: #ff6700;
  box-shadow: 0px 2px 10px rgba(128, 128, 128, 0.4);
}

.system-logo {
  height: 100%;
  width: auto;
  max-width: 300px;
  display: flex;
  align-items: center;
}

.nav-bar-system-logo {
  height: 70%;
  margin: auto;
}

.menu {
  flex-grow: 1;
  height: 100%;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  margin: 0 24px;
}

.menu-item {
  color: white;
  display: flex;
  width: auto;
  min-width: 80px;
  height: 100%;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  padding: 0 8px;
  font-size: 1.2rem;
}
.menu-item:hover {
  background-color: gray;
}
.menu-item:hover .sub-menu {
  display: flex;
}
.menu-item:hover a {
  color: white;
}
.menu-item a {
  padding: 0 4px;
  display: flex;
  align-items: center;
  margin: auto;
  color: white;
  text-decoration: none;
}
.menu-item a i {
  margin-right: 4px;
}

.menu-item-link a {
  color: gray;
}

.sub-menu {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 48px;
  background-color: gray;
  display: none;
  align-items: center;
  justify-content: flex-start;
  padding: 0 12px;
}

.sub-menu-item {
  font-weight: normal;
  font-size: 1rem;
  letter-spacing: 1px;
}

.user-menu {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-menu a {
  padding: 0 4px;
  display: flex;
  align-items: center;
  margin: auto;
  color: #A4DA23;
  text-decoration: none;
}
.user-menu a i {
  margin-left: 8px;
}

.footer {
  height: 40px;
  background-color: #004e98;
  box-shadow: 0px -4px 40px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 900;
  color: #f3f3f3;
}
.footer-wrapper {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 960px;
  padding: 0 2em;
}

.footer-company-name {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-developer-name {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.footer-developer-name a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  text-decoration: none;
}
.footer-developer-name h6 {
  color: #f3f3f3;
  display: inline-flex;
  margin-right: 1em;
  margin-top: 5px;
}
.footer-developer-name img {
  height: 15px;
}

.breadcrumb {
  background-color: white;
  margin-bottom: 10px;
  margin-top: 10px;
}

.breadcrumb > .active {
  color: #4e4857;
  font-family: Georgia, serif;
}

.breadcrumb a {
  color: #4e4857;
  font-family: Georgia, serif;
}

.btn-guardar-form {
  min-width: 150px;
  background-color: #387FA9;
  border-color: #387FA9;
  text-transform: uppercase;
}

.btn-cancelar-form {
  min-width: 150px;
  background-color: #ca3140;
  border-color: #ca3140;
  text-transform: uppercase;
}

.btn-primary {
  color: #fff;
  background-color: #5c677d;
  border-color: #5c677d;
}

.btn-success {
  color: #fff;
  background-color: #004e98;
  border-color: #004e98;
}

.btn-warning {
  color: #000;
  background-color: #f5be56;
  border-color: #f5be56;
}


.site-login {
  min-height: calc(100vh - 40px);
}

.login_bkgd_image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 1;
  height: 100%;
  width: 100%;
  display: block;
}

.login-form-wrapper {
  will-change: transform, opacity;
  margin: auto;
  display: flex;
  flex-flow: column;
  z-index: 3;
  align-items: center;
  transition: all 1.2s cubic-bezier(0.36, 0.27, 0.32, 0.99);
  transform: translate(0, -300px);
  opacity: 0;
  padding-top: 100px;
  padding-bottom: 100px;
}

.register-form-wrapper {
  padding-top: 100px;
}

.login-form-wrapper.showLogin {
  transition: all 0.8s cubic-bezier(0.36, 0.27, 0.32, 0.99);
  transform: translate(0, 0);
  opacity: 1;
}

.login_form_logo {
  width: auto;
  max-height: 160px;
  margin-bottom: 24px;
  margin: 0 auto;
}

.login_form_title {
  font-size: 1.7rem;
  text-transform: uppercase;
  color: #5d5959;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 24px;
  text-align: center;
}

.form-horizontal {
  margin-top: 20px;
  border-radius: 1px;
  height: auto;
  overflow: hidden;
  overflow-y: scroll;
  width: 70%;
  padding: 1rem;
}

.login-form-recover-pass {
  height: auto;
}

.form-horizontal .form-group {
  margin: 0;
  width: 100%;
  position: relative;
  margin-top: 20px;
}

.form-group-inputs {
  min-height: 86px;
}

.form_label {
  font-size: 1rem;
  font-weight: 400;
}

.form-register {
  height: auto;
}

.form_input {
  position: relative;
  display: flex;
}
.form_input:focus {
  border: none;
  box-shadow: none;
  outline: none;
}

.form_icon {
  position: absolute;
  top: 0px;
  left: 8px;
  display: flex;
  width: 20px;
  height: 100%;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.login-form-wrapper .form-control {
  border: none;
  box-shadow: none;
  outline: none;
  border-radius: 0;
  border: 1px solid #5d5959;
  height: 40px;
  padding-left: 20px;
}
.login-form-wrapper .form-control:focus {
  border: none;
  box-shadow: none;
  outline: none;
  border-bottom: 1px solid #5d5959;
}

.has-success .form-control:focus {
  border: none;
  box-shadow: none;
  outline: none;
  border-bottom: 1px solid #5d5959;
}

.has-error .form-control {
  border: none;
  border-right: 2px solid #5d5959;
  box-shadow: none;
  border: 1px solid #ff000f;
}
.has-error .form-control:focus {
  border: none;
  box-shadow: none;
  outline: none;
  border-bottom: 1px solid #5d5959;
}

.has-error .control-label {
  color: #ff000f;
}
.has-error .help-block,
.has-error .help-block-error {
  background-color: #ff000f;
  color: white;
  padding: 0.5rem 1.8rem;
  margin-top: 2px;
  font-size: 0.8rem;
}

.btn-primary_login {
  background-color: #004e98;
  border-color: #004e98;
  font-size: 1.5em;
  font-weight: 400;
  padding: 8px 12px;
  width: 100%;
  border-radius: 0;
}
.btn-primary_login:hover {
  background-color: #004e98;
  border-color: #004e98;
}
.btn-primary_login:focus {
  background-color: #004e98;
  outline: 0;
  box-shadow: none;
  border-color: #004e98;
}
.btn-primary_login:down {
  background-color: #004e98;
  outline: 0;
  box-shadow: none;
  border-color: #004e98;
}
.btn-primary_login:active {
  background-color: #004e98;
  box-shadow: none;
}

.btn-primary_login:not(:disabled):not(.disabled):active {
  background-color: #004e98;
  border-color: #004e98;
  outline: 0;
  box-shadow: none;
}

.btn-primary_login:not(:disabled):not(.disabled):active:focus {
  background-color: #004e98;
  border-color: #004e98;
  box-shadow: none;
}

.recuperar-pass-title {
  color: #5d5959;
  font-size: 1.5em;
  font-weight: 400;
  margin-bottom: 8px;
  margin-top: 32px;
  text-align: left;
}

.recuperar-pass {
  color: #5d5959;
}

.inline-btn {
  color: #ff6700;
  display: inline-block;
}
.inline-btn:hover {
  color: #004e98;
}

.dgom-aceptar-terminos {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  margin-top: 32px;
}
.dgom-aceptar-terminos input[type=checkbox] {
  height: 40px;
  width: 40px;
  margin-right: 20px;
}
.dgom-aceptar-terminos label {
  display: inline;
  margin-left: 4px;
  font-size: 1rem;
  font-weight: 400;
}

.col-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 32px;
  width: 100%;
}

.col-right,
.col-left {
  width: 50%;
}

.col-left {
  margin-right: 24px;
}

.login_logo-secondary {
  position: absolute;
  bottom: 15.2%;
  left: 0;
  z-index: 3;
}

html {
  font-size: 14px;
}

body {
  color: #000000;
  margin: 0;
  padding: 0;
  font-family: "Opensans, sans-serif";
  background-color: #ebebeb;
}

.page {
  background-color: #f2f3f5;
  position: relative;
  z-index: 1;
}

.body-content {
  min-height: calc(100vh - 185px);
  background-color: white;
  padding: 25px;
}

h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 10px 0;
}

h2 {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 10px 0;
}

h3 {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 10px 0;
}

.body-content-form {
  background-color: #ebebeb;
  width: 100%;
  padding: 24px;
  margin-top: 20px;
  -webkit-box-shadow: 0 12px 28px -5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 12px 28px -5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 12px 28px -5px rgba(0, 0, 0, 0.3);
}

.button-group {
  margin-top: 10px;
  text-align: right;
}

h1.page-title {
  border-bottom: 1px solid #A4DA23;
  padding-bottom: 10px;
  padding-left: 10px;
  margin-left: 60px;
  margin-right: 60px;
}

.hint-block {
  color: #1684B7;
  font-size: 0.8rem;
}

.has-success .control-label {
  color: #1684B7;
}

.casa-link {
  color: #ff6700 !important;
  text-decoration: none;
  text-transform: uppercase;
}

.container {
  max-width: 1500px !important;
}

.table-headers {
  background-color: #ebebeb;
}

.numbers {
  text-align: right;
}

.adeudos-table {
  width: 50rem !important;
}

.informe-table {
  width: 80rem !important;
  text-align: left;
}

.center {
  margin: auto;
  width: 60%;
  padding: 10px;
}

.list_pictures {
  width: 4rem;
  height: 4rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: black;
  margin: 0 auto;
  border: 3px;
}

.box_wrapper {
  width: 100%;
  padding: 1rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
}
.box_wrapper .box_content {
  border-radius: 0.1rem;
  box-shadow: 5px 5px 5px 5px #80808075;
  background-color: white;
}

.box_wrapper .box_content .body-container .body {
  width: 100%;
  text-align: center;
  padding: 3rem;
}

.box_wrapper .box_content .body-container .body .title {
  color: #808080b8;
  font-weight: 500;
  font-size: 0.9rem;
}

.box_wrapper .box_content .body-container .body .number {
  font-size: 2rem;
  color: #2a9d8f;
  font-weight: bold;
}

.box_wrapper .box_content .body-icon-container {
  display: flex;
  height: 150px;
  align-items: center;
  gap: 1rem;
}
.box_wrapper .box_content .body-icon-container .body {
  width: 60%;
  text-align: center;
}
.box_wrapper .box_content .body-icon-container .body .number {
  font-size: 2rem;
  color: #2a9d8f;
  font-weight: bold;
}
.box_wrapper .box_content .body-icon-container .body .title {
  color: #808080b8;
  font-weight: 500;
  font-size: 0.9rem;
}
.box_wrapper .box_content .body-icon-container .icon {
  font-size: 5rem;
  color: #36a1ff;
}
.box_wrapper .box_content .link {
  text-align: center;
  background-color: #36a1ff;
  line-height: 2.2rem;
}
.box_wrapper .box_content .link a {
  color: white;
  text-decoration: none;
}


.box_wrapper_accent_3 .box_content {
  background-color: white;
  border-color: #2a9d8f;
}
.box_wrapper_accent_3 .box_content .body-container .body .number {
  color: #2a9d8f;
}
.box_wrapper_accent_3 .box_content .body-container .body .title {
  color: #808080b8;
}
.box_wrapper_accent_3 .box_content .body-icon-container .icon {
  color: #2a9d8f;
}
.box_wrapper_accent_3 .box_content .link {
  background-color: #2a9d8f;
}
.box_wrapper_accent_3 .box_content .link a {
  color: white;
}

.box_wrapper_accent_4 .box_content {
  background-color: white;
}
.box_wrapper_accent_4 .box_content .body-container .body .number {
  color: #ffb703;
}
.box_wrapper_accent_4 .box_content .body-icon-container .icon {
  color: #ffb703;
}
.box_wrapper_accent_4 .box_content .link {
  background-color: #ffb703;
}
.box_wrapper_accent_4 .box_content .link a {
  color: white;
}

.box_wrapper_accent_1 .box_content {
  background-color: white;
}
.box_wrapper_accent_1 .box_content .body-container .body .number {
  color: #2a9d8f;
}
.box_wrapper_accent_1 .box_content .body-icon-container .icon {
  color: #2a9d8f;
}
.box_wrapper_accent_1 .box_content .link {
  background-color: #2a9d8f;
}
.box_wrapper_accent_1 .box_content .link a {
  color: white;
}

.box_wrapper_accent_2 .box_content {
  background-color: white;
}
.box_wrapper_accent_2 .box_content .body-container .body .number {
  color: #ef476f;
}
.box_wrapper_accent_2 .box_content .body-icon-container .icon {
  color: #ef476f;
}
.box_wrapper_accent_2 .box_content .link {
  background-color: #ef476f;
}
.box_wrapper_accent_2 .box_content .link a {
  color: white;
}

.box_wrapper_accent_5 .box_content {
  background-color: white;
}
.box_wrapper_accent_5 .box_content .body-container .body .number {
  color: #4e4857;
}
.box_wrapper_accent_5 .box_content .body-icon-container .icon {
  color: #ebebeb;
}
.box_wrapper_accent_5 .box_content .link {
  background-color: #ebebeb;
}
.box_wrapper_accent_5 .box_content .link a {
  color: #4e4857;
  font-size: 1.3rem;
  font-family: Georgia, serif;
}

.graph_wrapper {
  border-radius: 0.5rem;
  background: #69B9FF !important;
  color: white;
}
.graph_wrapper .graph_box .title {
  border-radius: 0.5rem 0.5rem 0 0;
  background-color: rgb(54, 161.2, 255);
  font-size: 1rem;
  padding: 0.5rem 1rem;
  font-weight: bold;
}

.graph_wrapper_2 {
  background: #005874 !important;
  color: white;
}
.graph_wrapper_2 .graph_box .title {
  background-color: rgb(0, 49.3103448276, 65);
}

.table-calendario {
  margin-top: 10px;
  text-align: center;
  background-color: #f4f4ed;
}

.table-calendario tr th {
  background-color: #c0c0c0;
  color:#24272b;
  text-transform: uppercase;
}

.table-calendario tr th a{
  background-color: #c0c0c0;
  color:#24272b
}



.table-calendario .pendiente {
  background-color: #205375;
  color:#ffffff
}

.table-calendario .pendiente a{
  background-color: #205375;
  color:#ffffff
}

.table-calendario .pendiente button{
  background-color: #205375;
  color:#ffffff
}

.table-calendario .atrasado {
  background-color: #FFc872;
  color: #000;
}

.table-calendario .atrasado a{
  background-color: #FFc872;
  color: #000;
}

.table-calendario .atrasado button{
  background-color: #FFc872;
  color: #000;
}