@charset "UTF-8";
/*------------------------------------------------------------------
[Indice]

1. Variables y mixins
2. Estructura
3. Páginas
4. Componentes
5. Plugins

/*------------------------------------------------------------------
[1. Variables y mixins]
-------------------------------------------------------------------*/
/*===Variables===*/
:root {
  --colorPrimario: #006A8E;
  --colorPrimario-300: #E2EDF3;
  --colorSecundario: #CBA052;
  --colorSecundario-300: #F9F6EE;
  --colorFondoDetalle: #f6f6f6;
  --colorTerciario: #fff;
  --colorFuente: #3b434b;
  --requerido: rgb(180, 33, 33);
  /*===Imágenes===*/
  --imagen16_9: calc(100% / (16 / 9));
  --imagenBoton: calc(100% / (32 / 6));
  --imagen16_14: calc(100% / (16 / 14));
  --imagen16_18: calc(100% / (16 / 20));
  /*===Fuentes===*/
  --fuentePrincipal: "Arial MT", sans-serif;
  --fuenteSecundaria: "GT America", sans-serif;
}

/*------------------------------------------------------------------
[2. Estructura]
-------------------------------------------------------------------*/
/*===Clases colores===*/
.colorPrimario {
  color: var(--colorPrimario);
}

.colorPrimario-300 {
  color: var(--colorPrimario-300);
}

.colorSecundario {
  color: var(--colorSecundario);
}

.fondoSecundario-300 {
  background-color: var(--colorSecundario-300);
}

.fondoPrimario-300 {
  background-color: var(--colorPrimario-300);
}

.fondoTerciario-300 {
  background-color: #f6f6f6;
}

.colorTerciario {
  color: var(--colorTerciario);
}

.requerido {
  color: var(--requerido);
}

.colorTexto {
  color: var(--colorFuente);
}

/*===Tipo de fuente===*/
/* GT America */
@font-face {
  font-family: "GT America";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/GT-America-Light.otf"); /* IE9 Compat Modes */
  src: local(""), url("../fonts/GTAmerica-Light.woff2") format("woff2"), url("../fonts/GTAmerica-Light.woff") format("woff");
}
/* GT America */
@font-face {
  font-family: "GT America";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/GT-America-Regular.otf"); /* IE9 Compat Modes */
  src: local(""), url("../fonts/GTAmerica-Regular.woff2") format("woff2"), url("../fonts/GTAmerica-Regular.woff") format("woff");
}
/* GT America */
@font-face {
  font-family: "GT America";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/GT-America-Medium.otf"); /* IE9 Compat Modes */
  src: local(""), url("../fonts/GTAmerica-Medium.woff2") format("woff2"), url("../fonts/GTAmerica-Medium.woff") format("woff");
}
/* GT America */
@font-face {
  font-family: "GT America";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/GT-America-Bold.otf"); /* IE9 Compat Modes */
  src: local(""), url("../fonts/GTAmerica-Bold.woff2") format("woff2"), url("../fonts/GTAmerica-Bold.woff") format("woff");
}
/* Arial MT - latin */
@font-face {
  font-family: "Arial MT";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/ArialMT-light.otf"); /* IE9 Compat Modes */
  src: local(""), url("../fonts/ArialMT-light.woff2") format("woff2"), url("../fonts/ArialMT-light.woff") format("woff");
}
/* Arial MT - latin */
@font-face {
  font-family: "Arial MT";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/ArialMT-Regular.otf"); /* IE9 Compat Modes */
  src: local(""), url("../fonts/ArialMT-Regular.woff2") format("woff2"), url("../fonts/ArialMT-Regular.woff") format("woff");
}
/* Arial MT - latin */
@font-face {
  font-family: "Arial MT";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/ArialMT-Medium.otf"); /* IE9 Compat Modes */
  src: local(""), url("../fonts/ArialMT-Medium.woff2") format("woff2"), url("../fonts/ArialMT-Medium.woff") format("woff");
}
/* Arial MT - latin */
@font-face {
  font-family: "Arial MT";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/ArialMT-bold.otf"); /* IE9 Compat Modes */
  src: local(""), url("../fonts/ArialMT-bold.woff2") format("woff2"), url("../fonts/ArialMT-bold.woff") format("woff");
}
/*===Clases para tipografía===*/
strong {
  font-weight: 600;
}

h2 {
  font-family: var(--fuenteSecundaria);
  color: var(--colorSecundario);
}

h3 {
  font-family: var(--fuenteSecundaria);
  font-weight: 600;
}

.titulo {
  position: relative;
  margin-bottom: 2.5rem;
}

.fs-5 {
  line-height: 1.25;
}

html {
  min-height: 100%;
  position: relative;
  background-color: var(--colorTerciario);
}

body {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: var(--fuentePrincipal);
  font-style: normal;
  color: var(--colorFuente);
  font-weight: 400;
  background: transparent;
  /* Scrollbars en firefox */
  scrollbar-face-color: var(--colorSecundario); /* Firefox 63 compatibility */
  scrollbar-track-color: var(--colorFondo); /* Firefox 63 compatibility */
  scrollbar-color: var(--colorSecundario);
  scrollbar-width: thin;
  /* Scrollbars en chrome */
}
body::-webkit-scrollbar {
  width: 8px;
  border-radius: 5px;
}
body::-webkit-scrollbar-track {
  background-color: var(--colorFondo);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--colorSecundario);
  border-radius: 0;
  height: 50px;
}

p,
span {
  line-height: 1.6;
}

img {
  max-width: 100%;
}

main {
  padding-top: 178px;
}

@media (max-width: 1200px) {
  main {
    padding-top: 130px;
  }
}
@media (max-width: 768px) {
  main {
    padding-top: 115px;
  }
}
button {
  -webkit-appearance: none !important;
  border: none;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: inherit;
}

button:focus {
  outline: none;
}

button::-moz-focus-inner {
  border: 0;
}

a:focus {
  outline: none;
}

a::-moz-focus-inner {
  border: 0;
}

hr {
  color: #d9d9d9;
}

.enlace {
  color: var(--colorFuente);
}
.enlace:hover {
  opacity: 0.6;
}

.degradado {
  background: rgb(253, 253, 253);
  background: linear-gradient(180deg, rgb(253, 253, 253) 0%, rgba(226, 237, 243, 0.2) 120%);
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: calc(var(--bs-gutter-x) * 1);
  padding-left: calc(var(--bs-gutter-x) * 1);
}

/*===Hack H1===*/
.pixel {
  position: absolute;
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  margin: 0;
  border: 0;
}

/*===Cabecera===*/
#cabecera {
  background-color: var(--colorTerciario);
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  position: fixed;
  font-family: var(--fuentePrincipal);
  transition: all 0.5s;
  border-bottom: 1px solid var(--colorSecundario-300);
}
#cabecera .barraSuperior {
  padding: 1.5rem 0;
  background-color: #f6f6f6;
}
#cabecera .barraSuperior .botonPrimario,
#cabecera .barraSuperior .botonSecundario {
  padding: 0.55rem 0.8rem;
  min-width: 4rem;
  font-size: 0.8rem;
}
#cabecera .detalle {
  height: 2px;
  background-color: var(--colorSecundario);
}
#cabecera.fija {
  -webkit-box-shadow: 10px 10px 23px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 10px 10px 23px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 10px 10px 23px 0px rgba(0, 0, 0, 0.1);
}
#cabecera .navbar {
  padding: 0.8rem 0;
}
#cabecera .navbar-brand {
  margin-right: 0;
}
#cabecera .navbar-brand img {
  width: 220px;
}
#cabecera .backdrop {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: rgba(30, 26, 41, 0.7254901961);
  display: none;
}
#cabecera .navbar-nav {
  padding: 10px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#cabecera .navbar-nav a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--colorFuente);
  cursor: pointer;
}
#cabecera .navbar-nav a:hover {
  color: var(--colorPrimario);
  opacity: 1;
  border-bottom: 3px solid var(--colorPrimario);
}
#cabecera .navbar-nav a[data-state=activo] {
  color: var(--colorPrimario);
  font-weight: 600;
  border-bottom: 3px solid var(--colorPrimario);
}
#cabecera .navbar-nav a:active {
  color: var(--colorPrimario);
  background-color: transparent;
}
#cabecera .navbar-nav .nav-item:last-of-type {
  margin-right: 0;
}
#cabecera .buscador-cabecera .form-control {
  border: none;
  border-radius: 0;
  background-color: transparent;
  position: relative;
}
#cabecera .busqueda {
  position: static;
}

@media (max-width: 1199px) {
  #cabecera .togglers {
    z-index: 999;
    padding-top: 0.3rem;
  }
  #cabecera .navbar-brand {
    z-index: 2;
  }
  #cabecera .navbar-toggler {
    border: none;
    z-index: 2;
    padding: 0;
  }
  #cabecera .navbar-toggler i {
    color: var(--colorTerciario);
  }
  #cabecera .svg {
    vertical-align: baseline;
  }
  #cabecera .offcanvas-xl {
    padding: 1rem 2rem 2rem 2rem;
    align-items: end;
    background-color: var(--colorTerciario);
    overflow-y: auto;
    background-image: url(../img/marcaAgua/marcaAgua.svg);
    background-repeat: no-repeat;
    background-position: left 370px;
  }
  #cabecera .offcanvas-xl a {
    color: var(--colorFuente);
    padding: 1.5rem 0;
    text-align: right;
  }
  #cabecera .offcanvas-xl li:not(:last-of-type) .nav-link {
    border-bottom: 1px solid #f1f1f1;
  }
  #cabecera .container.espaciado {
    display: block;
  }
  #cabecera .navbar-toggler.blanco .icon-bar {
    background-color: var(--colorPrimario);
  }
  #cabecera .navbar-nav {
    align-items: normal;
  }
  #cabecera .navbar-collapse {
    position: fixed;
    top: 0;
    z-index: 1;
    right: 0;
    width: 100%;
    background-color: var(--colorTerciario);
    max-height: none;
    opacity: 1;
  }
  #cabecera .navbar-collapse .espaciado {
    padding: 7rem 0 0 0;
    height: 100vh;
    overflow-y: auto;
    align-items: baseline;
  }
  #cabecera .navbar-collapse a {
    font-size: 21px;
  }
  #cabecera .navbar-collapse .nav-item {
    margin-right: 0;
    margin-top: 20px;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #dee2e6;
  }
  #cabecera .navbar-collapse .nav-item:last-of-type {
    border-bottom: none;
  }
  #cabecera .navbar-collapse .nav-item.dropdown {
    border-left: none !important;
    padding-left: 0 !important;
  }
  #cabecera .dropdown .dropdown-toggle.show {
    border-color: var(--colorPrimario) !important;
    font-weight: 600;
  }
}
@media (min-width: 1200px) {
  #cabecera .navbar {
    padding: 0;
  }
  #cabecera .navbar-nav {
    padding: 0;
  }
  #cabecera .navbar-nav a {
    padding: 1.9rem var(--bs-nav-link-padding-x);
    border-bottom: 3px solid transparent;
  }
  #cabecera .offcanvas-xl {
    width: 100%;
  }
  #cabecera .dropdown-toggle {
    pointer-events: none;
  }
  #cabecera .busqueda .dropdown-toggle {
    pointer-events: all;
  }
  #cabecera .dropdown:not(.busqueda):hover {
    cursor: pointer;
  }
  #cabecera .dropdown:not(.busqueda):hover .dropdown-menu {
    display: block;
    margin-top: 0.1rem;
  }
  #cabecera .dropdown-menu {
    position: absolute;
    min-width: 300px;
    top: 57px;
    border: none;
    border-radius: 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 25px 24px;
    background-color: var(--colorTerciario);
    color: var(--colorTexto);
    padding: 0.5rem 1rem;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-left: 1px solid var(--colorSecundario-300);
    border-right: 1px solid var(--colorSecundario-300);
    border-bottom: 3px solid var(--colorSecundario);
    padding-bottom: 0;
  }
  #cabecera .dropdown-menu .dropdown-divider {
    margin: 0;
  }
  #cabecera .dropdown-menu a {
    display: block;
    color: var(--colorFuente);
    padding: 1.2rem 1rem;
    border-bottom: 1px solid #dee2e6;
    font-size: 0.9rem;
  }
  #cabecera .dropdown-menu a:last-of-type {
    border: none;
  }
  #cabecera .dropdown-menu a:hover {
    color: var(--colorPrimario);
    background-color: var(--colorPrimario-300);
  }
  #cabecera .dropdown-menu a:active {
    color: var(--colorPrimario);
    background-color: var(--colorPrimario-300);
  }
  #cabecera.fija .dropdown-menu {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 6px;
  }
  #cabecera .busqueda .dropdown-menu {
    width: 100%;
    top: 78px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  #cabecera .dropdown-menu {
    padding-bottom: 0;
    border-radius: 0;
    border: none;
    background-color: transparent;
  }
  #cabecera .dropdown-menu a {
    display: block;
    text-align: end;
    padding: 0.7rem 1rem;
    color: var(--colorFuente);
  }
  #cabecera .dropdown-menu a:last-of-type {
    border: none;
  }
  #cabecera .busqueda .dropdown-menu {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  #cabecera .dropdown-menu {
    border-radius: 0;
    border: none;
    background-color: transparent;
  }
  #cabecera .dropdown-menu a {
    display: block;
    color: var(--colorDetalle);
    padding: 0.7rem 1rem;
  }
  #cabecera .navbar-brand img {
    width: 200px;
  }
  #cabecera .dropdown-menu.show a {
    padding-left: 2rem;
  }
  #cabecera .barraSuperior .botonPrimario,
  #cabecera .barraSuperior .botonSecundario {
    padding: 0.35rem 0.7rem;
    min-width: 4rem;
    font-size: 0.75rem;
  }
}
@media (max-width: 1200px) {
  #cabecera .barraSuperior {
    padding: 0.5rem 0;
  }
  #cabecera .navbar {
    padding: 0.65rem 0;
    align-items: center;
  }
  #cabecera .busqueda .dropdown-menu {
    background-color: transparent;
    padding: 0;
    width: 100%;
    box-shadow: none;
    border-bottom: 1px solid #dee2e6;
    display: inline-block;
    z-index: 1;
  }
  #cabecera .busqueda .dropdown-menu .container {
    padding-left: 0;
  }
  #cabecera .busqueda a {
    display: inline-block;
    padding-bottom: 0;
    margin-right: 0;
  }
  #cabecera .busqueda {
    display: flex;
    align-items: center;
  }
  #cabecera .dropdown-menu a {
    white-space: normal;
  }
}
@media (max-width: 576px) {
  #cabecera .offcanvas-xl {
    width: 100%;
    padding: 1rem 2rem 2rem 2rem;
  }
  #cabecera .offcanvas-xl a {
    font-size: 1rem;
    text-align: left;
  }
}
.navbar-toggler {
  border: none;
  background: transparent !important;
  display: block;
}

.navbar-toggler:hover {
  background: transparent !important;
}

.navbar-toggler .icon-bar {
  height: 2px;
  width: 22px;
  border-radius: 1px;
  display: block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background-color: var(--colorFuente);
}

.navbar-toggler .icon-bar + .icon-bar {
  margin-top: 4px;
}

.dropdown-toggle::after {
  content: none;
}

/*---Animación del menú hamburguesa---*/
.navbar-toggler.x .icon-bar:nth-of-type(1) {
  -webkit-transform: translateX(3px) rotate(45deg); /* Safari 3-8 & Chrome 4-35 & Opera 15-22 */
  -ms-transform: translateX(3px) rotate(45deg); /* IE 9 */
  -moz-transform: translateX(3px) rotate(45deg); /* Firefox 3-15 */
  -o-transform: translateX(3px) rotate(45deg); /* Opera 10-14 */
  transform: translateX(3px) rotate(45deg);
  -webkit-transform-origin: 10% 10%;
  -ms-transform-origin: 10% 10%;
  -moz-transform-origin: 10% 10%;
  -o-transform-origin: 10% 10%;
  transform-origin: 10% 10%;
}

.navbar-toggler.x .icon-bar:nth-of-type(2) {
  opacity: 0;
  filter: alpha(opacity=0); /* For IE8 and earlier */
  -moz-opacity: 0; /* Older Firefox 1 */
}

.navbar-toggler.x .icon-bar:nth-of-type(3) {
  -webkit-transform: translateX(3px) rotate(-45deg);
  -ms-transform: translateX(3px) rotate(-45deg);
  -moz-transform: translateX(3px) rotate(-45deg);
  -o-transform: translateX(3px) rotate(-45deg);
  transform: translateX(3px) rotate(-45deg);
  -webkit-transform-origin: 10% 90%;
  -ms-transform-origin: 10% 90%;
  -moz-transform-origin: 10% 90%;
  -o-transform-origin: 10% 90%;
  transform-origin: 10% 90%;
}

.navbar-toggler.x.collapsed .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}

.navbar-toggler.x.collapsed .icon-bar:nth-of-type(2) {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
}

.navbar-toggler.x.collapsed .icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}

/*===MenuLateral===*/
.menuLateral {
  display: none;
}
.menuLateral .logoLateral {
  width: 100%;
  border-top: 1px solid #f6f6f6;
  padding-top: 0.8rem;
}
.menuLateral .logoLateral img {
  max-width: 200px;
}
.menuLateral .navbar-collapse .flex-column {
  width: 100%;
}
.menuLateral .nav-link {
  display: flex;
  align-items: baseline;
  color: var(--colorFuente);
  padding: 1.2rem 1rem;
  font-size: 0.92rem;
  border-bottom: 1px solid #f6f6f6;
}
.menuLateral .nav-link:last-of-type {
  border-bottom: none;
}
.menuLateral .nav-link:hover {
  background-color: var(--colorPrimario-300);
  color: var(--colorPrimario);
  font-weight: 600;
}
.menuLateral .nav-link[data-state=activo] {
  background-color: var(--colorPrimario-300);
  color: var(--colorPrimario);
  font-weight: 600;
}
.menuLateral i {
  color: var(--colorPrimario);
}

@media (max-width: 991px) {
  .menuLateral {
    padding: 0;
    background-color: var(--colorFondoDetalle);
    border-bottom: 2px solid var(--colorSecundario);
    border-radius: 4px;
  }
  .menuLateral .togglers {
    padding: 1rem 0.8rem;
  }
  .menuLateral .togglers a {
    padding: 0;
  }
  .menuLateral .navbar-collapse {
    background-color: var(--colorFondoDetalle);
  }
}
#pie {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--colorPrimario);
  color: var(--colorTerciario);
  font-size: 0.8rem;
}
#pie img {
  max-width: 190px;
}
#pie .footer {
  padding: 2.5rem 0 1.5rem 0;
}
#pie .footer a {
  color: var(--colorTerciario);
}
#pie .footer a:hover {
  opacity: 0.8;
}
#pie .footer p {
  color: var(--colorTerciario);
}
#pie .subfooter {
  background-color: #014660;
}
#pie .subfooter p {
  margin-bottom: 0;
  color: var(--colorTerciario);
  font-family: var(--fuentePrincipal);
}
#pie .subfooter a {
  color: var(--colorTerciario);
  font-family: var(--fuentePrincipal);
}
#pie .subfooter a:hover {
  opacity: 0.7;
}

/*------------------------------------------------------------------
[3. Páginas]
-------------------------------------------------------------------*/
/*===Página de inicio===*/
.filtros ul {
  overflow-y: hidden;
  overflow-x: auto;
}
.filtros li {
  margin-right: 0.8rem;
  font-size: 0.85rem;
  min-width: 8rem;
  text-align: center;
}

.galeria {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.galeria a {
  margin-bottom: 1.2rem;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}
@media (min-width: 576px) {
  .galeria a {
    width: 50%;
  }
}
@media (min-width: 991px) {
  .galeria a {
    width: 33%;
  }
}
@media (min-width: 1200px) {
  .galeria a {
    width: 25%;
  }
}

/*------------------------------------------------------------------
[4. Componentes]
-------------------------------------------------------------------*/
.botonSecundario, .botonPrimario {
  padding: 0.55rem 0.8rem;
  min-width: 8rem;
  font-size: 0.85rem;
  display: inline-block;
  text-align: center;
  font-family: var(--fuentePrincipal);
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 6px;
}

.botonPrimario {
  background-color: var(--colorPrimario);
  color: var(--colorTerciario);
}
.botonPrimario:hover {
  background-color: transparent;
  border: 1px solid var(--colorPrimario);
  color: var(--colorPrimario);
  transition: all 0.8s;
}
.botonPrimario:active {
  background-color: var(--colorPrimario);
  color: var(--colorTerciario);
  transition: all 0.8s;
}
.botonPrimario[data-state=deshabilitado] {
  pointer-events: none;
  opacity: 0.7;
}

.botonSecundario {
  background-color: var(--colorTerciario);
  color: var(--colorPrimario);
  border: 1px solid var(--colorPrimario);
}
.botonSecundario:hover {
  background-color: var(--colorPrimario);
  color: var(--colorTerciario);
  transition: all 0.8s;
  border: 1px solid var(--colorPrimario);
}
.botonSecundario:active {
  background-color: var(--colorPrimario);
  color: var(--colorTerciario);
  transition: all 0.8s;
}
.botonSecundario.aspNetDisabled {
  opacity: 0.6;
}
.botonSecundario.aspNetDisabled:hover {
  background-color: var(--colorSecundario);
  color: var(--colorPrimario);
}
.botonSecundario.aspNetDisabled.active {
  background-color: var(--colorSecundario);
  color: var(--colorPrimario);
}

.list-unstyled ._df_button {
  background-color: transparent;
  padding: 0;
  font-size: 1rem;
  border: none;
}

.accordion-flush .accordion-item .accordion-button {
  border-radius: 0.4rem;
}

.accordion-button {
  background-color: var(--colorPrimario-300);
}

.accordion-item {
  border-color: #b7d2e1;
}

.accordion-button:not(.collapsed) {
  background-color: var(--colorPrimario-300);
}

.accordion-button:not(.collapsed)::after {
  filter: hue-rotate(324deg);
}

/*===Fornulario===*/
textarea {
  resize: none;
  padding-top: 1rem;
}

.form-control {
  border-color: #e0e0e0;
  background-color: transparent;
  font-size: 0.9rem;
}
.form-control::placeholder {
  color: #999;
  font-size: 0.9rem;
}
.form-control:focus {
  border-color: var(--colorPrimario);
  transition: all 0.5s;
  box-shadow: none;
}

.form-floating > textarea.form-control {
  height: 150px;
}
.form-floating label {
  color: #999;
}

.form-floating > label {
  font-size: 0.95rem;
}

.buscador {
  position: relative;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}

/*------ Eliminación de estilos del autofill del navegador  ------*/
input[type=date],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-transition-delay: 9999s;
  transition-delay: 9999s;
}

/*===Hero===*/
.banner {
  display: flex;
  align-items: center;
}
.banner .swiper-slide {
  display: flex;
  align-items: center;
}
.banner .swiper-slide .container {
  z-index: 2;
}
.banner .swiper-slide .imagen, .banner .swiper-slide .imagenResponsive, .banner .swiper-slide .video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.banner .swiper-slide .video video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.banner .swiper-slide .imagenResponsive {
  display: none;
}
.banner .swiper-wrapper {
  height: 100% !important;
}
.banner .css-dis-bg {
  background-image: url(../temp/banner/banner.jpg);
}
.banner .css-dis-bg2 {
  background-image: url(../temp/banner/banner2.jpg);
}
.banner .css-dis-bg3 {
  background-image: url(../temp/banner/banner3.jpg);
}

@media (max-width: 991px) {
  .banner .swiper-slide {
    min-height: 500px;
  }
}
@media (min-width: 1200px) {
  .banner .swiper-slide {
    min-height: 520px;
  }
}
@media (max-width: 991px) {
  .banner .swiper-slide .imagen, .banner .swiper-slide .imagenResponsive {
    min-height: 500px;
  }
  .banner .swiper-slide .imagen {
    display: none;
  }
  .banner .swiper-slide .imagenResponsive {
    display: block;
  }
  .banner .swiper-slide .imagenResponsive.css-dis-bg {
    background-image: url(../temp/banner/banner_corto.jpg);
  }
  .banner .swiper-slide .imagenResponsive.css-dis-bg2 {
    background-image: url(../temp/banner/banner_corto2.jpg);
  }
  .banner .swiper-slide .imagenResponsive.css-dis-bg3 {
    background-image: url(../temp/banner/banner3.jpg);
  }
}
/*===Tablas===*/
.tabla {
  border-radius: 8px;
  width: 100%;
  font-weight: 400;
  font-size: 0.9rem;
}
.tabla th {
  padding: 0.8rem;
}
.tabla td {
  padding: 1rem 0.8rem;
}
.tabla th {
  background-color: var(--colorPrimario-300);
  color: var(--colorPrimario);
}
.tabla th:last-of-type {
  text-align: right;
}
.tabla tbody tr:not(:last-of-type) {
  border-bottom: 1px solid #f6f6f6;
}
.tabla td:last-of-type {
  text-align: right;
}
.tabla td .badge {
  min-width: 80px;
}
.tabla th:first-of-type {
  border-top-left-radius: 4px;
}
.tabla th:last-of-type {
  border-top-right-radius: 4px;
}
.tabla tr:nth-of-type(odd) {
  background-color: rgb(246, 246, 246);
}
.tabla .filaEnlace:hover {
  background-color: rgba(46, 143, 140, 0.0745098039);
  cursor: pointer;
}
.tabla .paginacion {
  border-top: 1px solid var(--colorDetalle);
  background-color: var(--colorTerciario) !important;
}
.tabla .paginacion > td {
  padding: 0;
  padding-top: 1.5rem;
}
.tabla .paginacion > td a {
  padding: 0.5rem 0.75rem;
}
.tabla .paginacion > td a.activo {
  background-color: var(--colorPrimario);
  color: var(--colorTerciario);
}
.tabla .paginacion > td span {
  background-color: var(--colorPrimario);
  color: var(--colorTerciario);
  padding: 0.5rem 0.75rem;
  font-weight: 600;
}
.tabla .paginacion > td table {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tabla .paginacion > td table td {
  padding: 0;
}
.tabla .paginacion > td table tr {
  background-color: var(--colorTerciario) !important;
}

@media (min-width: 991px) and (max-width: 1200px) {
  .scroll {
    overflow-x: scroll;
    /* Scrollbars en firefox */
    scrollbar-face-color: var(--colorPrimario); /* Firefox 63 compatibility */
    scrollbar-track-color: #dedede; /* Firefox 63 compatibility */
    scrollbar-color: var(--colorPrimario);
    scrollbar-width: thin;
    /* Scrollbars en chrome */
  }
  .scroll::-webkit-scrollbar {
    width: 0.4em;
    height: 0.4em;
  }
  .scroll::-webkit-scrollbar-track {
    background-color: #dedede;
    border-radius: 10px;
  }
  .scroll::-webkit-scrollbar-thumb {
    background-color: var(--colorPrimario);
    border-radius: 10px;
  }
}
@media (max-width: 991px) {
  .tabla.responsive {
    border: 0;
    min-width: auto;
  }
  .tabla.responsive caption {
    font-size: 1.3em;
  }
  .tabla.responsive thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .tabla.responsive tr:last-of-type {
    border-bottom: 0;
  }
  .tabla.responsive td {
    display: flex;
    justify-content: space-between;
    font-size: 1em;
    align-items: center;
    text-align: end;
  }
  .tabla.responsive .ocultoDown-lg {
    display: none;
  }
  .tabla.publica.responsive span {
    display: contents;
  }
  .tabla.responsive td::before {
    content: attr(data-title);
    font-weight: 600;
    margin-right: 1rem;
    text-align: start;
  }
  .tabla.responsive .paginacion td::before {
    content: none;
  }
  .tabla.responsive .paginacion td {
    display: table-cell;
  }
  .tabla.responsive td:last-child {
    border-bottom: 0;
  }
  .tabla .seleccionado {
    border-left: none;
  }
}
.paginacion .pagination {
  justify-content: center;
}
.paginacion a {
  background-color: var(--colorTerciario);
  border: 1px solid #f6f6f6;
  color: var(--colorPrimario);
  padding: 0.375rem 1rem;
  font-weight: 600;
  margin-right: 1rem;
  border-radius: 6px;
}
.paginacion a:hover {
  color: var(--colorTerciario);
  background-color: var(--colorPrimario);
  border: 1px solid var(--colorPrimario);
}
.paginacion a[data-state=activo] {
  font-weight: 600;
  color: var(--colorTerciario);
  background-color: var(--colorPrimario);
}

/*===Tabs===*/
.nav-tabs {
  border-bottom: 1px solid var(--colorSecundario-300);
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
.nav-tabs .nav-link {
  min-width: 13rem;
  text-align: center;
  border: none;
  color: #999;
}
.nav-tabs .nav-link.active {
  color: var(--colorPrimario);
  font-weight: 600;
  border: none;
  border-bottom: 4px solid var(--colorPrimario);
}
.nav-tabs .nav-link:hover {
  border: none;
  border-bottom: 4px solid var(--colorPrimario);
  color: var(--colorPrimario);
  cursor: pointer;
}
.nav-tabs .nav-link:focus {
  border: none;
  border-bottom: 4px solid var(--colorPrimario);
  cursor: pointer;
}

/*===Tooltip===*/
.tooltip > .tooltip-inner {
  background-color: var(--colorSecundario);
  max-width: 400px;
  color: #fff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
  background: var(--colorSecundario);
  text-align: left;
  opacity: 1 !important;
}

.tooltip > .tooltip-arrow::before {
  border-right-color: var(--colorSecundario);
}

.tooltip.show {
  opacity: 1;
}

.tooltip > .tooltip-inner {
  background: var(--colorTerciario);
  border-bottom: 3px solid var(--colorPrimario);
  color: var(--colorPrimario);
  border-radius: 0;
  font-weight: 600;
}
.tooltip .tooltip-arrow {
  display: none;
}

ul a {
  word-break: break-all;
}

/*===Modales===*/
.cookies {
  background-color: var(--colorTerciario);
  opacity: 0.95;
}
.cookies .modal.show .modal-dialog {
  display: flex;
  align-items: center;
}
.cookies .modal-title {
  color: var(--colorTerciario);
  font-weight: 700;
  font-family: "Archivo", sans-serif;
  display: flex;
  align-items: center;
}
.cookies .modal-footer {
  display: flex;
  justify-content: center;
}
.cookies .btn-close {
  appearance: none;
  text-shadow: none;
  color: var(--colorTerciario);
  font-size: 2rem;
  opacity: 1;
}
.cookies .btn-close:hover {
  text-shadow: none;
  opacity: 0.6;
  color: var(--colorTerciario);
}
.cookies .modal-content {
  color: var(--colorTexto);
  background-color: transparent;
  width: 100%;
  border: none;
}
.cookies .modal-content .modal-body {
  width: 100%;
}
.cookies .modal-content .modal-footer {
  border-top: none;
}
.cookies .modal-body video {
  max-width: 100%;
}
.cookies p {
  font-size: 0.95rem;
}

.modal-content {
  border: none;
}
.modal-content .btn-close {
  font-size: 0.8rem;
  background: none;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--colorTerciario);
  opacity: 1;
}
.modal-content .btn-close:after {
  content: "\f00d";
}

.modal-header {
  border: none;
  background-color: var(--colorPrimario);
  color: var(--colorTerciario);
}
.modal-header .modal-title {
  font-weight: 600;
}

.modal-footer {
  border-top: none;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .modal-footer {
    display: block !important;
  }
  .modal-footer a {
    display: block;
  }
  .modal-footer a:last-of-type {
    margin-top: 1rem;
  }
}
/*===Migas===*/
.migas {
  background-color: var(--colorPrimario-300);
  padding: 0.8rem 0;
  font-size: 0.95rem;
}
.migas a {
  color: var(--colorFuente);
}
.migas a:hover {
  color: var(--colorPrimario);
}
.migas strong {
  color: var(--colorPrimario);
}

/*===Card===*/
.card {
  color: var(--colorFuente);
  border: none;
  border-radius: 6px;
  height: 100%;
  border: 1px solid #eceef3;
  font-size: 0.95rem;
}
.card h6 {
  line-height: 1.4;
}
.card .card-body {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card .card-body .contenido a {
  color: var(--colorPrimario);
}
.card .enlaces {
  background-color: var(--colorPrimario-300);
  border-radius: 6px;
  padding: 0.5rem;
}

.card :where(.enlace):hover i {
  transform: translateX(5px);
  transition: all 0.3s;
}

.contenedorImagen .fecha {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 0.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: var(--colorTerciario);
}
.contenedorImagen .fecha > * {
  line-height: 1.1;
}
.contenedorImagen .fecha > .fs-5 {
  line-height: 0.8;
}

.card .contenedorImagen img[src$="porDefecto.svg"] {
  border-bottom: solid 3px var(--colorPrimario);
  object-fit: contain;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
}

.card .contenedorImagen img[src$="newsletter.jpg"] {
  border-bottom: solid 3px var(--colorPrimario);
  object-fit: contain;
}

.servicios .cards .card {
  height: 180px;
  border: none;
  background-color: var(--colorTerciario);
  color: var(--colorPrimario);
  transition: all 0.5s;
  padding-bottom: 0rem;
}
.servicios .cards .card .fs-6 {
  line-height: 1.25;
}
.servicios .cards .card .icono i {
  color: var(--colorSecundario);
}

.organigrama .card-img-top {
  border-bottom: 3px solid var(--colorSecundario);
}

.datos a:hover .card {
  background-color: var(--colorSecundario-300);
}
.datos .card.fondoPrimario-300 .icono i {
  color: var(--colorSecundario);
}

@media (min-width: 768px) {
  .servicios .cards a:hover > .card {
    background-color: var(--colorSecundario);
    color: var(--colorTerciario);
    height: 200px;
    transition: height 0.5s;
  }
  .servicios .cards a:hover > .card .icono i {
    color: var(--colorTerciario);
  }
  .servicios .cards a:hover > .card .d-md-none {
    display: block !important;
  }
  .servicios .cards .col-sm-6 {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: end;
  }
}
/*===Animaciones===*/
/*===Animación carga===*/
.transicionCarga {
  animation: transicionIn 1.5s;
}

@keyframes transicionIn {
  from {
    opacity: 0;
    transform: translateY(-70px);
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
    transform: scale(1);
  }
}
.pulso {
  animation: pulse-yellow 2s infinite;
}

@keyframes pulse-yellow {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}
/*===Alertas===*/
.alert {
  border: 1px solid;
  text-align: start;
}
.alert .btn-close {
  font-size: 0.8rem;
  background: none;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #645f5d;
  top: -2px;
  opacity: 1;
}
.alert .btn-close:after {
  content: "\f00d";
}
.alert .btn-close:focus {
  box-shadow: none;
}
.alert.alert-info .icono, .alert.alert-warning .icono, .alert.alert-success .icono, .alert.alert-danger .icono {
  display: inline-block;
  align-items: center;
  justify-content: center;
}
.alert.alert-info .icono i, .alert.alert-warning .icono i, .alert.alert-success .icono i, .alert.alert-danger .icono i {
  font-size: 1.5rem;
  color: var(--colorTerciario);
  margin-right: 0;
  border-radius: 50%;
}
.alert.alert-danger {
  color: #fc5758;
  background-color: #fbefeb;
  border-color: #efcfc6;
}
.alert.alert-danger .icono {
  background-color: #fc5758;
  border-radius: 50%;
}
.alert.alert-danger .icono i {
  border: 0.6rem solid #fc5758;
}
.alert.alert-success {
  color: #7abc87;
  background-color: #f1f8f4;
  border-color: #cde8d1;
}
.alert.alert-success .icono {
  background-color: #7abc87;
  border-radius: 50%;
}
.alert.alert-success .icono i {
  border: 0.6rem solid #7abc87;
}
.alert.alert-warning {
  color: #a1953c;
  background-color: #fff7df;
  border-color: #a1953c;
}
.alert.alert-warning .icono {
  background-color: #a1953c;
  border-radius: 50%;
}
.alert.alert-warning .icono i {
  border: 0.6rem solid #a1953c;
}
.alert.alert-info {
  color: #006a8e;
  background-color: #e2edf3;
  border-color: #006a8e;
}
.alert.alert-info span {
  font-size: 1.15rem;
}
.alert.alert-info .icono {
  background-color: #a1953c;
  border-radius: 50%;
}
.alert.alert-info .icono i {
  border: 0.6rem solid #a1953c;
}

@media (max-width: 576px) {
  .alert {
    text-align: center;
    padding-right: 1rem;
  }
  .alert.alert-danger .icono, .alert.alert-success .icono, .alert.alert-warning .icono, .alert.alert-info .icono {
    margin: 0 auto;
  }
}
/*===Checkboxes===*/
/*===Checkboxes===*/
.checkbox,
.radio {
  cursor: pointer;
}

input[type=checkbox] {
  width: 17px;
  height: 17px;
  background-color: #dfd7c1;
  margin-right: 0.3rem;
  border-radius: 2px;
  appearance: none;
  position: relative;
  top: 2px;
  left: 0;
  transition: all 0.3s;
  cursor: pointer;
}
input[type=checkbox]:disabled {
  cursor: no-drop;
}

input[type=checkbox]:checked {
  background-color: transparent;
  transition: all 0.3s;
}
input[type=checkbox]:checked::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 19px;
  color: var(--colorPrimario);
  content: "\f14a";
  display: block;
  position: absolute;
  width: 17px;
  height: 17px;
  top: -1px;
  left: 0;
  line-height: 1;
  transition: all 0.3s;
}
input[type=checkbox]:checked:disabled {
  opacity: 0.5;
  cursor: no-drop;
}

input[type=radio]:checked {
  background-color: transparent;
}
input[type=radio]:checked::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 17px;
  color: var(--colorPrimario);
  content: "\f192";
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  line-height: 1;
}
input[type=radio]:checked:disabled {
  opacity: 0.6;
  cursor: no-drop;
}

/*===Switches===*/
.form-check-input:checked {
  background-color: var(--colorPrimario);
  border-color: var(--colorPrimario);
}

.form-switch .form-check-input {
  background-color: #fff;
  cursor: pointer;
}

.form-check-input:checked:before {
  content: none !important;
}

.form-switch .form-check-input:checked {
  background-color: var(--colorPrimario);
}

/*===Loader===*/
.loader .modal-content {
  text-align: center;
  background-color: transparent;
  border: none;
  align-items: center;
}

.backdropLoader {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #ececec;
  opacity: 0.7;
}

.loader .logoModal {
  width: 200px;
}

.logoModal {
  animation: LoaderNotting 2s infinite;
}

@keyframes LoaderNotting {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*===Detalles===*/
.separador {
  height: 3px;
  width: 50px;
  margin-top: 0.6rem;
  background-color: var(--colorSecundario);
}

.icono i {
  border-radius: 50%;
  display: inline-block;
  color: var(--colorPrimario);
  font-size: 1.5rem;
}

.icono-xl {
  display: inline-block;
  color: var(--colorPrimario);
  font-size: 2.6rem;
}

.borde-detalle {
  border-bottom: 3px solid var(--colorSecundario);
}

.dropdown-divider {
  border-top: 1px solid #f6f6f6;
}

.etiqueta span,
.etiqueta a {
  display: inline-block;
  background-color: var(--colorSecundario-300);
  color: var(--colorSecundario);
  border-radius: 6px;
  font-size: 0.7rem;
  padding: 0.2rem;
  min-width: 5rem;
  text-align: center;
  font-weight: 500;
}
.etiqueta a:hover {
  background-color: var(--colorSecundario);
  color: var(--colorTerciario);
  font-weight: 600;
}
.etiqueta a[data-state=activo] {
  background-color: var(--colorSecundario);
  color: var(--colorTerciario);
  font-weight: 600;
}

.enlaces a:not(:last-of-type) {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--colorFondoDetalle);
}
.enlaces a {
  display: block;
  word-wrap: break-word;
}

/*===ScrollUp===*/
#scrollUp {
  padding: 0.4rem 0.7rem;
  position: fixed;
  bottom: 2.5rem;
  right: 2%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: none;
  z-index: 9999;
  background-color: var(--colorPrimario);
}
#scrollUp i {
  color: #fff;
}

#scrollUp:hover {
  color: #fff;
}

/*------------------------------------------------------------------
[5. Clases auxiliares]
-------------------------------------------------------------------*/
/*===Clases Auxiliares===*/
.desenfoque {
  filter: blur(0.1rem);
  transition: all 0.5s;
}

.fuenteSecundaria {
  font-family: var(--fuenteSecundaria);
}

@media (min-width: 767px) {
  .imagenError img {
    max-width: 500px;
  }
}
.textoDestacado {
  background-color: var(--colorPrimario-300);
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
}

.pieFoto {
  font-size: 0.725em;
}

.mw-auto {
  min-width: auto !important;
}

.break {
  word-break: break-all;
}

[data-state=oculto] {
  display: none;
}

[type=button] {
  -webkit-appearance: none;
  appearance: none;
}

.gap-1 {
  gap: 1rem !important;
}

a.enlaceBanner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 4;
  display: block;
}

.enlaceAncla {
  scroll-margin-top: 100px;
}

/*---------Cortar texto-------*/
.card :where(.descripcion) {
  max-height: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/*---------Video container-------*/
.videoContainer {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.videoContainer iframe,
.videoContainer object,
.videoContainer embed,
.videoContainer video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*---------Contenedores imágenes-------*/
.contenedorImagen {
  position: relative;
}
.contenedorImagen > img, .contenedorImagen picture img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.contenedorImagen:before {
  content: "";
  display: inline-block;
}
.contenedorImagen.contenedor16-9:before {
  padding-bottom: var(--imagen16_9);
}
.contenedorImagen.contenedor16-14:before {
  padding-bottom: var(--imagen16_14);
}
.contenedorImagen.contenedor16-16:before {
  padding-bottom: var(--imagen16_18);
}

.h-120 {
  height: 120px;
}
.h-120 img {
  height: 100%;
  object-fit: contain;
}

.imagenBoton {
  border-bottom: 4px solid var(--colorPrimario);
  padding: 1rem;
  text-align: center;
  background-color: var(--colorTerciario);
}
.imagenBoton img {
  max-width: 250px;
}

/*===Órdenes===*/
.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

@media (min-width: 1200px) {
  .order-xl-6 {
    order: 6 !important;
  }
}
@media (min-width: 1200px) {
  .order-xl-7 {
    order: 7 !important;
  }
}
@media (min-width: 1200px) {
  .order-xl-8 {
    order: 8 !important;
  }
}
@media (min-width: 1200px) {
  .order-xl-9 {
    order: 9 !important;
  }
  .jq_volver {
    display: none;
  }
}
.jq_volver {
  position: absolute;
  left: 0;
  z-index: 999;
}

@media (max-width: 576px) {
  .nav-link {
    padding-left: 1.5rem !important;
  }
}
/*------------------------------------------------------------------
[6. Plugins]
-------------------------------------------------------------------*/
.bootstrap-select .btn-light {
  border-color: #ced4da;
  background-color: transparent;
  font-size: 0.9rem;
  color: var(--colorTexto);
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.bootstrap-select .dropdown-menu {
  background-color: var(--colorTerciario);
}
.bootstrap-select .dropdown-item {
  color: var(--colorTexto);
}
.bootstrap-select .dropdown-item:hover {
  background-color: var(--colorPrimario-300);
  opacity: 1;
  color: var(--colorPrimario);
  font-weight: 600;
}
.bootstrap-select .dropdown-item.active {
  background-color: var(--colorPrimario-300);
  color: var(--colorPrimario);
  font-weight: 600;
}
.bootstrap-select .dropdown-toggle::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078";
  border: none;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  color: var(--colorPrimario);
  transition: all 0.5s;
}
.bootstrap-select .dropdown-toggle.show::after {
  transform: rotate(180deg);
  transition: all 0.5s;
}
.bootstrap-select .btn-check:focus + .btn-light,
.bootstrap-select .btn-light:focus {
  box-shadow: none;
  outline: none;
}
.bootstrap-select .dropdown-toggle .filter-option {
  display: flex;
  align-items: center;
}

.input-group .btn-light {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/*------------------------------------------------------------------
[Datepicker]
-------------------------------------------------------------------*/
.bootstrap-datetimepicker-widget.dropdown-menu {
  width: auto;
  background-color: var(--colorTerciario);
}

.input-group-text {
  height: 100%;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  cursor: pointer;
}

.bootstrap-datetimepicker-widget {
  box-shadow: 0 0.5rem 1rem rgba(23, 31, 56, 0.15);
}
.bootstrap-datetimepicker-widget thead th {
  color: var(--colorPrimario);
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background-color: var(--colorPrimario);
}

.bootstrap-datetimepicker-widget table td.day:hover {
  background: var(--colorPrimario);
  color: var(--colorTerciario);
}

.bootstrap-datetimepicker-widget table td span.active {
  background-color: var(--colorPrimario);
}

.bootstrap-datetimepicker-widget table td.day,
.bootstrap-datetimepicker-widget table th {
  transition: all 0.2s ease;
  width: 36px;
  height: 30px;
  border: none;
  text-align: center;
  font-size: 0.875rem;
}

.bootstrap-datetimepicker-widget .picker-switch {
  padding-bottom: 0;
}
.bootstrap-datetimepicker-widget .picker-switch span {
  line-height: 1.5 !important;
  color: var(--colorSecundario);
}

.bootstrap-datetimepicker-widget .picker-switch .fa-clock-o {
  position: relative;
  height: 3rem !important;
}
.bootstrap-datetimepicker-widget .picker-switch .fa-clock-o:before {
  font-size: 0.9rem;
  content: "Seleccione hora";
  display: block;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
}
.bootstrap-datetimepicker-widget .picker-switch .fa-clock-o:after {
  content: "\f017";
}

/*===Swiper===*/
.swiper-pagination-bullet {
  background: #bcadad;
  width: 15px;
  border-radius: 6px;
  opacity: 0.8;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--colorSecundario);
  width: 40px;
  border-radius: 6px;
  opacity: 1;
}

.card :where(.swiper-pagination-bullet) {
  background: var(--colorPrimario-300);
}

.swiper-slide {
  height: auto;
}

.swiper-button-next, .swiper-button-prev {
  display: flex;
  position: relative;
  font-size: 1.2rem;
  border: 1px solid #eceef3;
  left: auto;
  right: auto;
  top: auto;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: var(--colorPrimario);
  margin-top: 0;
}
.swiper-button-next:after, .swiper-button-prev:after {
  content: none;
}

.card-body.d-block .swiper-container-horizontal > .swiper-pagination-bullets, .card-body.d-block .swiper-pagination-custom, .card-body.d-block .swiper-pagination-fraction {
  bottom: -5px;
}
.card-body.d-block .swiper-pagination-bullet {
  background: var(--colorPrimario-300);
}
.card-body.d-block .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--colorSecundario);
}

.thumbs .swiper-slide {
  cursor: pointer;
}

.swiper-pagination-fraction {
  background-color: var(--colorTerciario);
  width: 40px;
  right: 0;
  left: auto;
  bottom: 0;
  font-family: var(--fuentePrincipal);
  font-weight: 600;
}

.memoria {
  position: relative;
}
.memoria .swiper-button-next, .memoria .swiper-button-prev {
  position: absolute;
  z-index: 4;
  top: 50%;
  background-color: var(--colorTerciario);
}
.memoria .swiper-button-next {
  right: 10px;
  left: auto;
}

.swiper-container.instalaciones img {
  height: 100%;
  object-fit: cover;
}

/*# sourceMappingURL=estilos.css.map */

a.enlaceBanner {
    width: 100%;
    height: 100%;
    display: block;
}

.bannerPosicionAbsoluta {
    position: absolute;
    left: 0;
    top: 0;
}

/*Errores*/

.input-group-addon-error,
.dropdown-toggle-error,
.panel-default-error,
.fileInputError .file-caption,
input[type=text].error,
input[type=text].error:focus,
input[type=password].error,
input[type=password].error:focus,
textarea.error,
textarea.error:focus,
select.error,
select.error:focus,
.TxDescripcion_DesignBox.error {
    border-color: #a94442;
}

    input[type=text].error:focus,
    input[type=password].error:focus,
    textarea.error:focus,
    select.error:focus {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) inset, 0 0 8px rgba(221, 75, 57, 0.6);
        opacity: 0.8;
        outline: 0 none;
    }

input[type="submit"] {
    border: none;
}


.bootstrap-tagsinput input[type=text]:not(.error):focus {
    box-shadow: none;
}


.captchaError {
    color: #cc0000;
    line-height: normal;
    font-size: 11px;
    font-weight: normal;
    display: block;
}

.input-group.error .file-caption,
input[type=text].error,
input[type=password].error,
textarea.error,
select.error,
.dropdown-toggle.error,
.dropdown-toggle-error,
.bootstrap-select .btn.dropdown-toggle.btn-light.dropdown-toggle-error {
    border-color: #aa0000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) inset, 0 0 8px rgba(221, 75, 57, 0.6);
    color: #333333;
    outline: 0 none;
}


div.error, span.error {
    color: #cc0000;
    line-height: normal;
    font-size: 11px;
    font-weight: normal;
}

.input-group-addon-error {
    color: #a94442;
    background-color: #f2dede;
}

.panel-default-error .panel-heading {
    color: #a94442 !important;
    background-color: #f2dede !important;
}

    .panel-default-error .panel-heading > * {
        color: #a94442 !important;
    }


.fileInputErrorMG .file-caption {
    border-color: #aa0000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) inset, 0 0 8px rgba(221, 75, 57, 0.6);
}
/* FIN Errores */

a.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.datos a.noHover:hover .card {
    background-color: unset
}

a.migaActiva {
    color: #006A8E;
    font-weight: 600;
}

.claseIframe {
    width: 100%;
    height: 760px;
}

.mw-auto {
    min-width: auto;
}

.h-custom .btn-light {
    height: calc(1.5em + 1rem + 2px);
}

.galeria img {
    height: 100%;
    object-fit: cover;
}

.pswp__zoom-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none !important;
}

.pswp__img {
    position: relative;
}

@media (min-width: 1200px) {
    .twitter-timeline {
        padding-top: 6.8rem;
    }
}

.strong {
	font-weight: 600
}

