@font-face {
  font-family: "roboto_medium_regular";
  src:
    url("../webfonts/roboto-medium-webfont.woff2") format("woff2"),
    url("../webfonts/roboto-medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "roboto_condensed_light";
  src:
    url("../webfonts/robotocondensed-light-webfont.woff2") format("woff2"),
    url("../webfonts/robotocondensed-light-webfont.woff") format("woff"),
    url("../webfonts/robotocondensed-light-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "roboto_condensed_regular";
  src:
    url("../webfonts/robotocondensed-regular-webfont.woff2") format("woff2"),
    url("../webfonts/robotocondensed-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

:root {
  --color-one: rgb(212, 212, 212);
  --color-two: #707070;
  --color-three: #000000;
  --color-four: #dfdfdf;
  /*--color-three: #0366D6;*/

  --form-color: #1a1111;

  --accent-color: #000000;
  /*--accent-color: #455A64;*/
  --border-color: #161616;
}

/* #map-template {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
} */

#map_addRentas {
  height: 250px;
}

#map_addContrato {
  height: 250px;
}

body,
html {
  font-family: "roboto_condensed_light";
  width: 100%;
  height: 100vh;
  background-color: var(--color-one);
  color: #000000;
  font-size: 16px;
}

.full-box {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
}

.form-neon {
  border: 1px solid var(--border-color);
  background-color: var(--color-four);
  padding: 15px;
  border-radius: 3px;
}

/*----------  Page headers styles  ----------*/
.page-header {
  padding: 30px 20px 60px 20px;
}

.page-header > :nth-child(1) {
  padding-bottom: 7px;
}

.page-header > :nth-child(2) {
  font-size: 18px;
}

/*---------- NAVBAR TEST --------------

.navbar-Test {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  padding: 10px 20px;
  color: white;
}

.logo-Test a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
}

.nav-links-Test {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links-Test li {
  margin-left: 20px;
}

.nav-links-Test a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.menu-icon-Test {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links-Test {
    display: none; 
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px; 
    left: 0;
    background-color: #333;
    text-align: center;
  }

  .nav-links-Test.show {
    display: flex; 
  }

  .nav-links-Test li {
    margin: 10px 0;
  }

  .menu-icon-Test {
    display: block; 
  }
}
---------- NAVBAR TEST --------------*/

/*----------  Page nav tabs  ----------*/
.page-nav-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.page-nav-tabs li,
.page-nav-tabs li a {
  height: 40px;
  line-height: 40px;
}

.page-nav-tabs li {
  margin: 5px 20px;
}

.page-nav-tabs li a {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 17px;
  min-width: 200px;
  width: auto;
  display: block;
  text-align: center;
  user-select: none;
  transition: all 0.2s ease-in-out;
  background-color: #75757548;
  border-radius: 5px;
  border-bottom: 2px solid #333;
  border-right: 1px solid #333;
}

.page-nav-tabs li a.active {
  text-decoration: none;
  font-size: 17px;
  background-color: #757575db;
  border-radius: 10px;
  color: var(--color-three);
  cursor: none;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
  border-bottom: 2px solid #333;
  border-right: 1px solid #333;
}

.page-nav-tabs li a:hover {
  color: #ffffff;
  background-color: #000000c3;
  border-radius: 10px;
  text-decoration: none;
  border-right: 1px solid #333;
  border-bottom: 2px solid #333;
}

/*    INICIO     Custom        */

select::-webkit-scrollbar {
  display: none; /* Para Chrome, Safari, Edge y Opera */
}
.mi-select {
  appearance: none;
  -webkit-appearance: none; /* Para navegadores basados en WebKit */
  -moz-appearance: none; /* Para Firefox */
  background-color: #87878734;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  padding: 1px 25px;
  scrollbar-width: none; /* Para Firefox */
  -ms-overflow-style: none; /* Para Internet Explorer y Edge (versiones antiguas) */
}

.mi-select:hover {
  background-color: #75757548;
  box-shadow: 0 0 0 3px #000000c3;
}
select.mi-select option {
  background-color: #000000c3;
  color: #ffffff;
}
/*      FIN      Custom Year        */

/*----------  Edit bootstrap styles  ----------*/
div.btnr {
  text-align: center;
}

.button_slide {
  color: #bbbbbb;
  background-color: #16161600;
  border: 1px solid rgba(97, 97, 97, 0.466);
  border-radius: 15px;
  padding: 8px 16px;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: inset 0 0 0 0 #0a212793;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}

.slide_left:hover {
  box-shadow: inset 0 0 0 50px #535353c7;
}

/*----------  Edit bootstrap styles  ----------*/
.form-control[readonly] {
  background-color: transparent;
}

.form-control:focus,
.form-control:active {
  outline: none;
  box-shadow: none;
  border: none;
}

.form-control-file:active,
.form-control-file:focus {
  outline: none;
}

.table .btn {
  margin-bottom: 0;
}

.table thead th {
  color: #fff;
}

.table tbody tr {
  color: #333;
  transition: all 0.2s ease-in-out;
}

.table {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.table-dark,
.table {
  background-color: #fff;
}

.table-dark {
  border: 1px solid var(--accent-color);
}

.table-dark thead tr {
  background-color: var(--accent-color);
}

.table-dark td,
.table-dark thead th,
.table-dark th {
  border: none;
}

.table-dark tr:hover {
  color: rgb(0, 0, 0);
  background-image: linear-gradient(
    to right,
    transparent,
    rgba(0, 0, 0, 0.5) 50%,
    transparent
  );
}

.page-link {
  transition: all 0.2s ease-in-out;
}

label.bmd-label-floating {
  color: #000000;
}

.page-link:hover,
.page-link.active {
  background-color: var(--color-three);
  color: #ffffff;
}

table form {
  margin-bottom: 0;
}

/*----------  Text Styles  ----------*/
.roboto-medium {
  font-family: "roboto_medium_regular";
}

.roboto-condensed-light {
  font-family: "roboto_condensed_light";
}

.roboto-condensed-regular {
  font-family: "roboto_condensed_regular";
}

/*----------  Page 404 styles  ----------*/
.container-404 {
  background: #001028;
  background: linear-gradient(to right, #6d6258, #281200);
  color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*----------  login Styles  ----------*/
.login-container {
  /* width: 100vw; */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e67d05;
  background: -webkit-linear-gradient(to right, #753900b7, #690000);
  background: linear-gradient(to right, #000000ed, #180c00);
}

.login-content {
  width: 95%;
  max-width: 320px;
  height: auto;
  border: 2px solid var(--border-color);
  background-color: #979797;
  border-radius: 15px;
  padding: 15px;
  color: #000000;
}

.btn-login {
  width: 90%;
  padding: 10px 0;
  display: block;
  margin: 30px auto 0; /* Simplificado */
  border-radius: 3px;
  background: transparent;
  color: #000000;
  border: 3px solid #000000;

  /* Definimos el gradiente aquí, pero oculto o estático */
  background-image: linear-gradient(
    to right,
    #0000006b,
    #753900b7,
    #0000006b
      /* Repetimos el primer color para que el ciclo sea infinito/suave */
  );
  background-size: 300% 100%; /* Hacemos el fondo muy ancho */
  background-position: 0% 50%;
  transition: all 0.4s ease; /* Aumenté un poco el tiempo para que se note el movimiento */
}

.btn-login:hover {
  border: 3px solid #000000; /* Mantener el mismo grosor evita que el botón "salte" */
  background-position: 100% 50%; /* Desplazamos el fondo al pasar el mouse */
  cursor: pointer;
  text-decoration: none;
}

.btn-login:active,
.btn-login:focus {
  outline: none;
}

/*----------  Page layout Styles  ----------*/
.main-container {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow-x: hidden;
}

.page-content,
.nav-lateral {
  height: 100%;
  overflow-x: hidden;
}

.page-content {
  position: relative;
  padding-left: 300px;
  transition: all 0.2s ease-in-out;
  padding-bottom: 20px;
}

/*  Nav Lateral */
.nav-lateral {
  width: 300px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.2s ease-in-out;
  background-color: #000000;
  /* background-image: url("../assets/img/leftNavLogo.png"); */
  background-position: center center;
  background-size: cover;
}

.nav-lateral-bg {
  display: none;
}

.nav-lateral-content {
  max-width: 300px;
  height: 100%;
  background-color: rgba(36, 41, 46, 0.8);
}

.nav-lateral-bar {
  height: 3px;
  background-color: var(--color-three);
}

.nav-lateral-avatar {
  padding: 40px 0;
}

.nav-lateral-avatar i {
  display: none;
}

.nav-lateral-avatar img {
  width: 50%;
  margin: 0 auto;
  display: block;
  border: 4px solid #000000;
  border-radius: 100%;
}

.nav-lateral-avatar figcaption {
  margin-top: 20px;
  color: #fff;
}

.nav-lateral-menu {
  height: auto;
}

.nav-lateral-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-lateral-menu ul li {
  width: 100%;
  height: auto;
}

.nav-lateral-menu ul li a {
  display: block;
  width: 100%;
  height: 45px;
  line-height: 45px;
  text-decoration: none;
  color: #fff;
  font-size: 17px;
  box-sizing: border-box;
  padding-left: 20px;
  transition: all 0.2s ease-in-out;
}

.nav-lateral-menu ul li a.active {
  color: #432900;
  background-color: var(--color-three);
}

.nav-lateral-menu ul li a:hover {
  color: #ffffff;
  background-image: linear-gradient(
    to right,
    transparent,
    #21140026 50%,
    transparent
  );
}

.nav-lateral-menu ul li ul {
  display: none;
  border: 1px solid var(--color-three);
  background: rgba(48, 35, 20, 0.5);
}

.nav-lateral-menu ul li ul a {
  padding-left: 45px;
}

.show-nav-lateral-submenu {
  display: block !important;
}

.nav-lateral-menu .fa-chevron-down,
.nav-lateral-menu .fa-chevron-up {
  float: right;
  height: 45px;
  line-height: 45px;
  margin-right: 7px;
  transition: all 0.2s ease-in-out;
}

/*  Page content */
.navbar-info {
  height: 50px;
  border-bottom: 1px solid var(--border-color);
  text-align: right;
  padding-right: 10px;
}

.navbar-info a {
  color: #000000;
  height: 50px;
  min-width: 40px;
  text-align: center;
  line-height: 50px;
  display: inline-block;
  transition: all 0.2s ease-out;
  user-select: none;
}

.navbar-info a:hover {
  color: var(--color-three);
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1),
    transparent 80%
  );
}

.navbar-info a:active,
.navbar-info a:focus {
  outline: none;
}

/*----------  Home Styles  ----------*/
.tile-container {
  text-align: center;
  padding: 20px 25px;
}

.tile {
  height: 200px;
  width: 200px;
  margin: 10px;
  display: inline-block;
  text-decoration: none;
  color: var(--accent-color);
  border: 1px solid var(--border-color);
  border-radius: 3px;
  user-select: none;
  transition: all 0.2s ease-in-out;
  background-color: #fff;
}

.tile:hover {
  text-decoration: none;
  border-color: var(--color-three);
}

.tile:focus,
.tile:active {
  outline: none;
}

.tile-tittle {
  margin: 0;
  width: 100%;
  padding: 0;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.2s ease-in-out;
  font-family: "roboto_medium_regular";
}

.tile:hover .tile-tittle {
  color: #2c150059;
  border-color: #2c0e005b;
  background-color: #2c1a0054;
}

.tile-icon {
  width: 100%;
  height: 160px;
  box-sizing: border-box;
  padding-top: 22px;
}

.tile-icon > i {
  font-size: 80px;
}

.tile-icon > p {
  font-family: "roboto_medium_regular";
  height: 35px;
  line-height: 35px;
}

.tile:hover .tile-icon > i,
.tile:hover .tile-icon > p {
  color: #2c100069;
}

select.form-select {
  width: 100%;
}

#map-template {
  width: 100%;
  height: 65vh;
  /* margin: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex; */
}

/*----------  Breakpoints  ----------*/
@media (max-width: 767px) {
  .nav-lateral {
    width: 100%;
    overflow: hidden;
    display: none;
    background-image: none;
  }

  .nav-lateral.active {
    display: block;
    z-index: 9999;
  }

  .nav-lateral-bg {
    width: 100%;
    height: 100%;
    background-color: rgba(3, 3, 3, 0.4);
    position: relative;
    display: block;
    z-index: 2;
  }

  .nav-lateral-content {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    transform: translateX(-400px);
    transition: all 0.3s ease-in-out;
    background-color: var(--color-two);
  }

  .nav-lateral.active .nav-lateral-content {
    transform: translateX(0);
  }

  .nav-lateral-avatar i {
    height: 50px;
    width: 50px;
    line-height: 50px;
    color: #fff;
    cursor: pointer;
    font-size: 25px;
    position: absolute;
    top: 5px;
    right: 0;
    text-align: center;
    display: block;
    transition: all 0.2s ease-out;
  }

  .nav-lateral-avatar i:hover {
    color: var(--color-three);
  }

  .page-content {
    padding-left: 0;
  }
}

/*  Bootstrap breakpoints */
@media (min-width: 576px) {
}

@media (min-width: 768px) {
  .nav-lateral.active {
    transform: translateX(-400px);
  }

  .page-content.active {
    padding-left: 0;
  }
}

@media (max-width: 1000px) {
  .div-page-nav-tabs {
    padding-bottom: 60px;
  }
}

@media (max-width: 1200px) {
}

/*----------  Keyframes  ----------*/
