@charset "UTF-8";
:root {
  --colorprincipal: #134256;
  --colorprincipal_claro: #78959B;
  --colorsecundario: #0087B1;
  --colorsecundario_claro: #46A8C6;
  --verdeoscuro: #06363E;
  --verdeoscuro_claro: #547585;
  --azul: #00AFBC;
  --azuloscuro: #134256;
  --azul_claro: #46C4CE;
  --celeste: #f2fbfc;
  --celeste_claro: #B2FFFF;
  --gris: #e0ebee;
  --gris_claro: #E8F1F3;
  --negro: #000;
  --negro_claro: #000;
  --blanco: #fff;
  --naranja: #e67627;
  --naranja_claro: #EC9B62;
  --rojo: #e62727;
  --rojo_claro: #EC6262;
  --verde: #019537;
  --verde_claro: #58D486;
}

/** Media Queries **/
.clasemagicacolorprincipal {
  background-color: #134256;
  box-shadow: 5px 5px 5px 5px rgba(19, 66, 86, 0.48);
}
.clasemagicacolorprincipal:hover {
  color: #fff;
}

.clasemagicacolorsecundario {
  background-color: #0087B1;
  box-shadow: 5px 5px 5px 5px rgba(0, 135, 177, 0.48);
}
.clasemagicacolorsecundario:hover {
  color: #fff;
}

.clasemagicaazul {
  background-color: #00AFBC;
  box-shadow: 5px 5px 5px 5px rgba(0, 175, 188, 0.48);
}
.clasemagicaazul:hover {
  color: #fff;
}

.clasemagicaceleste {
  background-color: #f2fbfc;
  box-shadow: 5px 5px 5px 5px rgba(242, 251, 252, 0.48);
}
.clasemagicaceleste:hover {
  color: #fff;
}

.clasemagicagris {
  background-color: #e0ebee;
  box-shadow: 5px 5px 5px 5px rgba(224, 235, 238, 0.48);
}
.clasemagicagris:hover {
  color: #fff;
}

.clasemagicaverde {
  background-color: #019537;
  box-shadow: 5px 5px 5px 5px rgba(1, 149, 55, 0.48);
}
.clasemagicaverde:hover {
  color: #fff;
}

.clasemagicaverdeoscuro {
  background-color: #06363E;
  box-shadow: 5px 5px 5px 5px rgba(6, 54, 62, 0.48);
}
.clasemagicaverdeoscuro:hover {
  color: #fff;
}

.clasemagicanaranja {
  background-color: #e67627;
  box-shadow: 5px 5px 5px 5px rgba(230, 118, 39, 0.48);
}
.clasemagicanaranja:hover {
  color: #fff;
}

.clasemagicarojo {
  background-color: #e62727;
  box-shadow: 5px 5px 5px 5px rgba(230, 39, 39, 0.48);
}
.clasemagicarojo:hover {
  color: #fff;
}

.clasemagicanegro {
  background-color: #000;
  box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.48);
}
.clasemagicanegro:hover {
  color: #fff;
}

.clasemagicablanco {
  background-color: #fff;
  box-shadow: 5px 5px 5px 5px rgba(255, 255, 255, 0.48);
}
.clasemagicablanco:hover {
  color: #fff;
}

.caja_home_colorprincipal {
  --caja_color_fondo: #134256;
  --caja_color_fondo_claro: var(--colorprincipal_claro);
  --caja_color_texto_hover: var(--blanco);
  --caja_color_sombra: rgba(14, 59, 29, 0.5);
}

.caja_home_colorsecundario {
  --caja_color_fondo: #0087B1;
  --caja_color_fondo_claro: var(--colorsecundario_claro);
  --caja_color_texto_hover: var(--blanco);
  --caja_color_sombra: rgba(14, 59, 29, 0.5);
}

.caja_home_azul {
  --caja_color_fondo: #00AFBC;
  --caja_color_fondo_claro: var(--azul_claro);
  --caja_color_texto_hover: var(--blanco);
  --caja_color_sombra: rgba(14, 59, 29, 0.5);
}

.caja_home_celeste {
  --caja_color_fondo: #f2fbfc;
  --caja_color_fondo_claro: var(--celeste_claro);
  --caja_color_texto_hover: var(--blanco);
  --caja_color_sombra: rgba(14, 59, 29, 0.5);
}

.caja_home_gris {
  --caja_color_fondo: #e0ebee;
  --caja_color_fondo_claro: var(--gris_claro);
  --caja_color_texto_hover: var(--blanco);
  --caja_color_sombra: rgba(14, 59, 29, 0.5);
}

.caja_home_verde {
  --caja_color_fondo: #019537;
  --caja_color_fondo_claro: var(--verde_claro);
  --caja_color_texto_hover: var(--blanco);
  --caja_color_sombra: rgba(14, 59, 29, 0.5);
}

.caja_home_verdeoscuro {
  --caja_color_fondo: #06363E;
  --caja_color_fondo_claro: var(--verdeoscuro_claro);
  --caja_color_texto_hover: var(--blanco);
  --caja_color_sombra: rgba(14, 59, 29, 0.5);
}

.caja_home_naranja {
  --caja_color_fondo: #e67627;
  --caja_color_fondo_claro: var(--naranja_claro);
  --caja_color_texto_hover: var(--blanco);
  --caja_color_sombra: rgba(14, 59, 29, 0.5);
}

.caja_home_rojo {
  --caja_color_fondo: #e62727;
  --caja_color_fondo_claro: var(--rojo_claro);
  --caja_color_texto_hover: var(--blanco);
  --caja_color_sombra: rgba(14, 59, 29, 0.5);
}

.caja_home_negro {
  --caja_color_fondo: #000;
  --caja_color_fondo_claro: var(--negro_claro);
  --caja_color_texto_hover: var(--blanco);
  --caja_color_sombra: rgba(14, 59, 29, 0.5);
}

.caja_home_blanco {
  --caja_color_fondo: #fff;
  --caja_color_fondo_claro: var(--blanco_claro);
  --caja_color_texto_hover: var(--blanco);
  --caja_color_sombra: rgba(14, 59, 29, 0.5);
}

.fondo_colorprincipal {
  border: 1px solid #134256 !important;
  color: #134256 !important;
  background-color: var(--blanco) !important;
}

input[type=submit].fondo_colorprincipal:hover {
  background-color: #134256 !important;
  color: var(--blanco) !important;
}

button.fondo_colorprincipal:hover {
  background-color: #134256 !important;
  color: var(--blanco) !important;
}

.fondo_colorsecundario {
  border: 1px solid #0087B1 !important;
  color: #0087B1 !important;
  background-color: var(--blanco) !important;
}

input[type=submit].fondo_colorsecundario:hover {
  background-color: #0087B1 !important;
  color: var(--blanco) !important;
}

button.fondo_colorsecundario:hover {
  background-color: #0087B1 !important;
  color: var(--blanco) !important;
}

.fondo_azul {
  border: 1px solid #00AFBC !important;
  color: #00AFBC !important;
  background-color: var(--blanco) !important;
}

input[type=submit].fondo_azul:hover {
  background-color: #00AFBC !important;
  color: var(--blanco) !important;
}

button.fondo_azul:hover {
  background-color: #00AFBC !important;
  color: var(--blanco) !important;
}

.fondo_celeste {
  border: 1px solid #f2fbfc !important;
  color: #f2fbfc !important;
  background-color: var(--blanco) !important;
}

input[type=submit].fondo_celeste:hover {
  background-color: #f2fbfc !important;
  color: var(--blanco) !important;
}

button.fondo_celeste:hover {
  background-color: #f2fbfc !important;
  color: var(--blanco) !important;
}

.fondo_gris {
  border: 1px solid #e0ebee !important;
  color: #e0ebee !important;
  background-color: var(--blanco) !important;
}

input[type=submit].fondo_gris:hover {
  background-color: #e0ebee !important;
  color: var(--blanco) !important;
}

button.fondo_gris:hover {
  background-color: #e0ebee !important;
  color: var(--blanco) !important;
}

.fondo_verde {
  border: 1px solid #019537 !important;
  color: #019537 !important;
  background-color: var(--blanco) !important;
}

input[type=submit].fondo_verde:hover {
  background-color: #019537 !important;
  color: var(--blanco) !important;
}

button.fondo_verde:hover {
  background-color: #019537 !important;
  color: var(--blanco) !important;
}

.fondo_verdeoscuro {
  border: 1px solid #06363E !important;
  color: #06363E !important;
  background-color: var(--blanco) !important;
}

input[type=submit].fondo_verdeoscuro:hover {
  background-color: #06363E !important;
  color: var(--blanco) !important;
}

button.fondo_verdeoscuro:hover {
  background-color: #06363E !important;
  color: var(--blanco) !important;
}

.fondo_naranja {
  border: 1px solid #e67627 !important;
  color: #e67627 !important;
  background-color: var(--blanco) !important;
}

input[type=submit].fondo_naranja:hover {
  background-color: #e67627 !important;
  color: var(--blanco) !important;
}

button.fondo_naranja:hover {
  background-color: #e67627 !important;
  color: var(--blanco) !important;
}

.fondo_rojo {
  border: 1px solid #e62727 !important;
  color: #e62727 !important;
  background-color: var(--blanco) !important;
}

input[type=submit].fondo_rojo:hover {
  background-color: #e62727 !important;
  color: var(--blanco) !important;
}

button.fondo_rojo:hover {
  background-color: #e62727 !important;
  color: var(--blanco) !important;
}

.fondo_negro {
  border: 1px solid #000 !important;
  color: #000 !important;
  background-color: var(--blanco) !important;
}

input[type=submit].fondo_negro:hover {
  background-color: #000 !important;
  color: var(--blanco) !important;
}

button.fondo_negro:hover {
  background-color: #000 !important;
  color: var(--blanco) !important;
}

.fondo_blanco {
  border: 1px solid #fff !important;
  color: #fff !important;
  background-color: var(--blanco) !important;
}

input[type=submit].fondo_blanco:hover {
  background-color: #fff !important;
  color: var(--blanco) !important;
}

button.fondo_blanco:hover {
  background-color: #fff !important;
  color: var(--blanco) !important;
}

.bodyMiOchoa header {
  background-color: white;
  display: flex;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
  position: fixed;
  z-index: 999;
  width: 100%;
}

@media (max-width: 576px) {
  .bodyMiOchoa #logo {
    width: 60%;
  }
}

.contenedor_header {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
}
@media (max-width: 576px) {
  .contenedor_header {
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .contenedor_header {
    height: auto;
  }
}
@media (min-width: 992px) {
  .contenedor_header {
    max-width: 1000px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .contenedor_header {
    max-width: 1000px;
    margin: 0 auto;
  }
}
@media (min-width: 1400px) {
  .contenedor_header {
    max-width: 1200px !important;
    margin: 0 auto !important;
  }
}

.contenedor_logo {
  display: flex;
  justify-content: center;
}
@media (min-width: 576px) {
  .contenedor_logo {
    width: 40%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .contenedor_logo {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1024px) {
  .contenedor_logo {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}

.contenedor_logo a {
  line-height: 0px;
}

#ctl00_IconoNotificaciones1 {
  width: 7.5%;
}
@media (min-width: 576px) {
  #ctl00_IconoNotificaciones1 {
    width: 7.5%;
    display: flex;
    align-content: center;
    justify-content: flex-end;
  }
}

#ctl00_IconoCLiente1 {
  width: 7.5%;
}

.contador {
  border-radius: 50%;
  height: 1em;
  width: 1em;
  line-height: 1.3em;
  font-size: 1em;
  background: red;
  color: white;
  margin-top: -40px;
  margin-left: 20px;
  margin-right: auto;
  animation: notification 2.2s linear;
  animation-iteration-count: 2;
}
@media (min-width: 576px) {
  .contador {
    border-radius: 50%;
    height: 1em;
    width: 1em;
    line-height: 1.3em;
    font-size: 1em;
    background: red;
    color: white;
    margin-left: 20px;
    margin-right: auto;
    animation: notification 2.2s linear;
    animation-iteration-count: 2;
  }
}
@media (min-width: 768px) {
  .contador {
    display: inline-block;
    vertical-align: top;
    margin-left: -10px;
    margin-top: -10px;
    border-radius: 50%;
    height: 1.2em;
    width: 1.2em;
    line-height: 1.4em;
    font-size: 1em;
    background: red;
    color: white;
    margin-right: auto;
    animation: notification 2.2s linear;
    animation-iteration-count: 2;
  }
}
@media (min-width: 1024px) {
  .contador {
    display: inline-block;
    vertical-align: top;
    margin-left: -10px;
    margin-top: -10px;
    border-radius: 50%;
    height: 1.2em;
    width: 1.2em;
    line-height: 1.4em;
    font-size: 1em;
    background: red;
    color: white;
    margin-right: auto;
    animation: notification 2.2s linear;
    animation-iteration-count: 2;
  }
}

.contenedor_notificacion {
  display: block;
  margin-block-start: 10px;
  margin-block-end: 1em;
  margin-inline-start: 1px;
  margin-inline-end: 1px;
  height: 28px;
  text-align: center;
}
@media (min-width: 576px) {
  .contenedor_notificacion {
    display: block;
    margin-block-start: 10px;
    margin-block-end: 1em;
    margin-inline-start: 1px;
    margin-inline-end: 1px;
    height: 18px;
    text-align: center;
  }
}

.notificacion {
  height: 25px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .notificacion {
    height: 25px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .notificacion {
    height: 28px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .notificacion {
    height: 28px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .contenedor_cerrar_sesion {
    display: block;
    margin-block-start: 10px;
    margin-block-end: 1em;
    margin-inline-start: 1px;
    height: 30px;
    text-align: center;
  }
}
@media (min-width: 576px) {
  .contenedor_cerrar_sesion .contenedor_cerrar_sesion {
    display: block;
    margin-block-start: 10px;
    margin-block-end: 1em;
    margin-inline-start: 1px;
    height: 28px;
    text-align: center;
  }
}

.cerrar_sesion {
  height: 25px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cerrar_sesion {
    height: 25px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .cerrar_sesion {
    height: 28px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .cerrar_sesion {
    height: 28px;
    margin: 0 auto;
  }
}

.footer {
  position: fixed;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-left: 20%;
  padding-right: 20%;
  margin-top: 2%;
  background-color: var(--colorprincipal);
  color: #8aa1ab;
  text-align: center;
  z-index: 99;
}

.columna_footer {
  align-self: center;
  padding: 10px;
}

.caja_footer a {
  color: white !important;
}

footer {
  /*padding: 30px;*/
  background-color: var(--azul);
  color: white;
  text-align: center;
}

.caja_footer {
  font-size: 30px;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  text-align: center;
  padding-top: 1%;
  padding-bottom: 1%;
}
@media (min-width: 576px) {
  .caja_footer {
    font-size: 30px;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    text-align: center;
    padding-top: 1%;
    padding-bottom: 1%;
  }
}
@media (min-width: 768px) {
  .caja_footer {
    font-size: 4rem;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    text-align: center;
    padding-top: 2%;
    padding-bottom: 2%;
  }
}
@media (min-width: 1024px) {
  .caja_footer {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    text-align: center;
    height: 60%;
    padding-top: 2%;
    padding-bottom: 2%;
  }
}

.caja_footer #ctl00_Footer1_Linktel {
  font-size: 0.8em;
}

.caja_footer2 {
  font-size: 20px;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  text-align: center;
  border-top-style: dashed;
  border-top-color: white;
  border-top-width: 1px;
  padding-top: 1%;
  padding-bottom: 1%;
}
@media (min-width: 576px) {
  .caja_footer2 {
    font-size: 20px;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    text-align: center;
    border-top-style: dashed;
    border-top-color: var(--blanco);
    border-top-width: 1px;
    padding-top: 1%;
    padding-bottom: 1%;
  }
}
@media (min-width: 768px) {
  .caja_footer2 {
    font-size: 2rem;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    text-align: center;
    border-top-style: dashed;
    border-top-color: white;
    border-top-width: 1px;
    padding-top: 2%;
    padding-bottom: 2%;
  }
}
@media (min-width: 1024px) {
  .caja_footer2 {
    visibility: hidden;
    display: none;
    height: 1%;
  }
}

.caja_footer2 #ctl00_Footer1_ImgLlamada {
  width: 5%;
  margin-right: 1%;
}

#ctl00_Footer1_LinkFooter, #ctl00_Footer1_LinkFooter:visited {
  color: white;
}

.footer__home {
  padding: 0 4rem;
}

.logo__footer {
  margin-left: 0.25rem;
  color: var(--blanco);
}

@media (min-width: 576px) {
  .telefono_footer {
    margin: 0 0 0 0;
  }
}

@media (min-width: 576px) {
  .otros_telefonos_footer {
    margin: 0 0 0 0;
  }
}

#Div2 {
  top: -90px;
  padding: 0 0 0 0 !important;
  width: 100%;
}

.alineado_miochoa {
  width: 70%;
  margin-left: 15%;
}

.fila_2_botones.fila_2 {
  margin-left: 15%;
  width: 70% !important;
}
@media (max-width: 576px) {
  .fila_2_botones.fila_2 {
    width: 100% !important;
  }
}

@media (max-width: 576px) {
  .fila_2_botones.fila_2 .boton_grande {
    width: 80vw;
  }
}

.bodyMiOchoa .input-group {
  width: 100% !important;
}

.bodyMiOchoa .contenedor_campo_formulario {
  width: 100% !important;
}

.bodyMiOchoa .contenedor2 .fila_2_botones {
  margin-left: 15%;
  margin-top: 19px;
}

.fila_2_botones {
  position: relative;
  align-items: center;
  display: flex;
  gap: 12px;
}
@media (max-width: 576px) {
  .fila_2_botones {
    flex-direction: column;
    margin-left: 0% !important;
    gap: 0px;
  }
}

.confirmar {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--blanco);
  border: 1px solid #edeff2;
  width: 70%;
  margin: auto;
}
@media screen and (max-width: 699px) {
  .confirmar {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--blanco);
    border: 1px solid #edeff2;
    width: 100%;
    margin-top: 20px;
  }
}

/*menu lateral*/
#menuToggle {
  display: block;
  top: 50px;
  left: 50px;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

#menuToggle a {
  text-decoration: none;
  color: var(--colorprincipal);
  transition: color 0.3s ease;
}

#menuToggle a:hover {
  color: var(--colorsecundario);
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  margin: 0 auto;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: var(--colorprincipal);
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-5px, 5px);
  background: var(--colorprincipal);
  margin-bottom: 5px;
}

#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(-12px, 2px);
  margin-bottom: 5px;
}

#menu {
  height: 90vh;
  overflow-y: scroll;
  position: absolute;
  left: 0px;
  margin: 30px 0 0 0;
  padding: 1% 3% 1% 4%;
  border-bottom-right-radius: 25px;
  border-top-right-radius: 25px;
  background: var(--blanco);
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  -ms-overflow-style: none;
  /* IE and Edge */
  /* Firefox */
}
@media (max-width: 768px) {
  #menu {
    width: 50vw;
  }
}
@media (max-width: 576px) {
  #menu {
    position: fixed;
    width: 60vw;
    left: 0px;
    margin: 30px 0 0 0;
    z-index: 999999;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
  }
}
@media only screen and (max-width: 480px) {
  #menu {
    width: 70vw;
  }
}

#menu li {
  line-height: 3rem;
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-left: 1%;
  margin-top: 2%;
}
#menu li:after {
  content: "";
  transform: translateX(-50%);
  transition: 0.35s ease;
}

#menu::-webkit-scrollbar {
  display: none;
}

#menu li:before {
  display: block;
  float: left;
  content: "";
}

#menuToggle input:checked ~ ul {
  transform: none;
}

#menuToggle input:checked ~ ul {
  transform: none;
  /*    z-index: inherit;
  */
  z-index: 999;
}

menu {
  width: 20%;
  position: relative;
  display: flex;
}

.Logo {
  width: 30%;
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
}
@keyframes aparece_menu {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
/*fin menu lateral*/
#menu.activo a {
  -webkit-opacity: 0;
  -webkit-animation-name: aparece_menu;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 0.51s;
  -webkit-animation-timing-function: ease-in;
  -webkit-animation-fill-mode: forwards;
  animation-name: aparece_menu;
  animation-duration: 1s;
  animation-delay: 0.51s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  opacity: 0;
}

#menu.activo a:nth-of-type(1) {
  animation-delay: 0.54s;
}

#menu.activo a:nth-of-type(2) {
  animation-delay: 0.56s;
}

#menu.activo a:nth-of-type(3) {
  animation-delay: 0.58;
}

#menu.activo a:nth-of-type(4) {
  animation-delay: 1.05s;
}

#menu.activo a:nth-of-type(4) {
  animation-delay: 1.25s;
}

#menu.activo a:nth-of-type(5) {
  animation-delay: 1.45s;
}

#menu.activo a:nth-of-type(6) {
  animation-delay: 1.65s;
}

/* Para escritorio mostramos este footer   */
.movil {
  display: none;
}

.bodyMiOchoa {
  position: relative;
  z-index: 20;
  background-color: #dee0e1;
  background-position: top left;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: auto;
  overflow-x: hidden; /* Ocultamos el scroll inferior */
}

body::-webkit-scrollbar {
  height: 4px;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.44, rgb(193, 193, 194)), color-stop(0.72, rgb(173, 176, 180)), color-stop(0.44, rgb(193, 193, 194)));
}

/* Para moviles y tables este footer*/
@media only screen and (max-device-width: 768px) {
  .movil {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 99;
  }
  .page {
    min-height: 100%;
    margin: auto !important;
  }
  .footer {
    display: none !important;
  }
  .escritorio {
    display: none !important;
  }
}
.bodyMiOchoa h2 {
  font-size: 2.25rem;
  line-height: 1;
}

/*1 - Elementos básicos */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* CABECERA*/
.alineado_centrado {
  text-align: center;
}

.alineado_derecha {
  text-align: right;
}

.alineado_justificado {
  text-align: justify;
}

.alineado_izquierda {
  text-align: left;
}

input[type=submit].btn_xs {
  border-radius: 3px;
  color: #fff;
  background-color: #337ab7;
  height: auto;
  margin: 10px;
  padding-left: 30px;
}

input[type=submit].btn_xs:hover {
  background-color: #265a88;
  background-position: 0 -15px;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.08);
}

/*nav {

}
*/
/*video intro*/
.intro_video {
  position: fixed;
  left: 0px;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  background: white;
  background-size: 50px;
  animation-duration: 9s;
  animation-fill-mode: both;
}

.fadeOut2 {
  animation-name: fadeOut2;
}

/*fin video intro*/
/*FIN COLORES */
/*LOGO ANIMADO*/
.logoanimado {
  width: 300px;
  height: 40px;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.cajalogo {
  width: 40px;
  height: 40px;
  background-image: url(iconos/corazon.svg);
  background-repeat: no-repeat;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  font-style: italic;
  position: absolute;
  left: 20%;
  z-index: 2;
  animation: test 2s;
}

.cajalogo:after {
  content: "";
  display: block;
  height: 90%;
  width: 1px;
  background: var(--colorprincipal);
  position: absolute;
  top: 0;
  right: -10px;
  bottom: 0;
  margin: auto;
  animation: expand 2s;
}

.textologo {
  height: 40px;
  color: var(--colorprincipal);
  padding-left: 40%;
  line-height: 40px;
  font-size: 30px;
  font-weight: 100;
  animation: fade 2.5s;
}

.animacionzoom {
  animation: zoomIn 3s;
  animation-delay: 3s;
  animation-fill-mode: both;
  animation-direction: forward;
  transform-origin: 50%;
}

.animaciondibujar {
  animation: expand 2.5s;
}

.animacion_salpicar {
  animation: salpicar 2s ease-out;
  animation-iteration-count: infinite;
  -webkit-animation: salpicar 2s ease-out;
  -webkit-animation-iteration-count: infinite;
}
@media (max-width: 576px) {
  .animacion_salpicar {
    animation-iteration-count: 3;
    -webkit-animation-iteration-count: 3;
  }
}

.animacion_pulso_continuo {
  animation: pulso_continuo 2s ease-out;
  animation-iteration-count: infinite;
  -webkit-animation: pulso_continuo 2s ease-out;
  -webkit-animation-iteration-count: infinite;
}
@media (max-width: 576px) {
  .animacion_pulso_continuo {
    animation-iteration-count: 3;
    -webkit-animation-iteration-count: 3;
  }
}

.svg-elem-1 {
  animation: animate-svg-fill-1 1.7s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.8s both;
}

.svg-elem-2 {
  animation: animate-svg-fill-2 1.7s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.9s both;
}

.svg-elem-3 {
  animation: animate-svg-fill-3 1.7s cubic-bezier(0.55, 0.085, 0.68, 0.53) 1s both;
}

.svg-elem-4 {
  animation: animate-svg-fill-4 1.7s cubic-bezier(0.55, 0.085, 0.68, 0.53) 1.1s both;
}

.svg-elem-5 {
  animation: animate-svg-fill-5 1.7s cubic-bezier(0.55, 0.085, 0.68, 0.53) 1.2s both;
}

.svg-elem-6 {
  animation: animate-svg-fill-6 1.7s cubic-bezier(0.55, 0.085, 0.68, 0.53) 1.3s both;
}

.svg-elem-7 {
  animation: animate-svg-fill-7 1.7s cubic-bezier(0.55, 0.085, 0.68, 0.53) 1.4s both;
}

.svg-elem-8 {
  animation: animate-svg-fill-8 1.7s cubic-bezier(0.55, 0.085, 0.68, 0.53) 1.5s both;
}

/* BOTONES */
.shadows {
  box-shadow: 0px 4px 5px #666, 2px 6px 10px #999;
}

.centrar_svg {
  margin: auto;
  display: block;
}

.failureNotification ul li {
  color: var(--rojo_claro);
}

/*nuevo cajahome*/
.caja_home_principal {
  --caja_color_fondo: var(--colorprincipal);
  --caja_color_fondo_claro: var(--colorprincipal_claro);
  --caja_color_texto_hover: var(--blanco);
  --caja_color_sombra: rgba(14, 59, 29, 0.5);
}

.caja_home_secundario {
  --caja_color_fondo: var(--colorsecundario);
  --caja_color_fondo_claro: var(--colorsecundario_claro);
  --caja_color_texto_hover: var(--blanco);
  --caja_color_sombra: rgba(70, 196, 206, 0, 50);
}

.caja_home_basico {
  --caja_color_fondo: var(--blanco);
  --caja_color_fondo_claro: var(--blanco);
  --caja_color_texto_hover: var(--colorprincipal);
}

.contenedor_chema {
  display: flex;
  flex-wrap: wrap;
  margin: -0.5rem;
}

.columna_chema {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fila_chema {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.salto_chema {
  flex-basis: 100%;
  height: 0;
}

.control_chema {
  margin: 0.5rem;
  background: #f3edd6;
  border: 3px solid #b59214;
  color: #b59214;
  padding: 3rem;
  font-size: 2rem;
  text-align: center;
}

.caja_home_caja {
  width: 220px;
  height: 220px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease-out;
  text-decoration: none;
}

.caja_home_caja:hover {
  transform: translateY(-5px) scale(1.005) translateZ(0);
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.11), 0 24px 46px var(--caja_color_sombra);
}

.caja_home_caja:hover .caja_home_efecto {
  transform: scale(10) translateZ(0);
}

.caja_home_caja:hover .caja_home_circulo {
  border-color: var(--caja_color_fondo_claro);
  background: var(--caja_color_fondo);
}

.caja_home_caja:hover .caja_home_circulo:after {
  background: var(--caja_color_fondo_claro);
}

.caja_home_caja:hover h3 {
  color: var(--caja_color_texto_hover);
}

.caja_home_caja:active {
  transform: scale(1) translateZ(0);
  box-shadow: 0 15px 24px rgba(0, 0, 0, 0.11), 0 15px 24px var(--caja_color_sombra);
}

.caja_home_caja h3 {
  font-family: "bronkoh-regular", Sans-serif;
  color: var(--verdeoscuro);
  top: -5%;
  z-index: 1000;
  transition: color 0.6s ease-out;
  float: left;
  position: absolute;
  left: 5%;
}

.caja_home_nuevo {
  margin: 10px 10px;
  position: relative;
  padding: 0rem 0rem 0rem 0rem;
  border-radius: 25px;
}

.caja_home_nuevo:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.caja_cuadrada_hijo {
  position: absolute;
  width: 100%;
  height: 100%;
}

.caja_home_circulo {
  width: 4em;
  height: 4em;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-out;
}

.caja_home_circulo:after {
  content: "";
  width: 4em;
  height: 4em;
  display: block;
  position: absolute;
  border-radius: 50%;
  transition: opacity 0.3s ease-out;
}

.caja_home_circulo .caja_logo_img {
  z-index: 10000;
  transform: translateZ(0);
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
}

.caja_home_efecto {
  width: 5em;
  position: absolute;
  height: 5em;
  border-radius: 50%;
  background: var(--caja_color_fondo);
  z-index: 0;
  transition: transform 0.6s ease-out;
}

/*fin nuevo cajahome*/
.boton_grande {
  width: 220px;
}

.boton_mediano {
  width: 150px;
}

/*FIN LISTAS*/
ul.actions {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  cursor: default;
  list-style: none;
  margin-left: -1rem;
  padding-left: 0;
}

ul.actions li {
  padding: 0 0 0 1rem;
  vertical-align: middle;
}

ul.actions.special {
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  width: calc(100% + 1rem);
}

ul.actions.stacked {
  -moz-flex-direction: column;
  flex-direction: column;
  margin-left: 0;
}

ul.actions.stacked li {
  padding: 1.3rem 0 0 0;
}

ul.actions.stacked li:first-child {
  padding-top: 0;
}

ul.actions.fit {
  width: calc(100% + 1rem);
}

ul.actions.fit li {
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  -ms-flex-shrink: 1;
  flex-shrink: 1;
  width: 100%;
}

ul.actions.fit li > * {
  width: 100%;
}

ul.actions.fit.stacked {
  width: 100%;
}

/*Fin Básicos*/
.nav-up {
  top: -81px;
}

.nav-down {
  top: 0px;
}

/*LOGOS*/
.logoochoa {
  width: 220px;
}

.filter-dropdown {
  color: var(--rojo);
  transition: color 0.2s ease;
  cursor: pointer;
  margin-right: 16px;
}

.filter-dropdown:hover {
  color: black;
}

.contenedor_seguridad {
  border-radius: 0.25rem;
  background: var(--blanco);
  width: 100%;
  margin: 0 0 1.875em;
}

.fluido {
  margin-top: 20px;
  width: 100%;
}

.class_contenedor {
  border-radius: 0.25rem;
  background: var(--blanco);
  width: 100%;
  margin: 0 0 1.875em;
}

.color_tres {
  color: var(--colorsecundario) !important;
}

.color_rojo {
  color: var(--rojo) !important;
}

hr {
  background-color: var(--colorprincipal);
}

.icono_llamada {
  margin-right: 2%;
  margin-right: 2%;
  width: 1.5em;
  padding-top: 4%;
}

.filter:hover,
.filter-remove:hover {
  color: blue;
  background-color: #585858;
}

.operator {
  color: rgba(255, 255, 255, 0.5);
}

.filter-remove {
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.remove:hover {
  color: blue;
}

.edit-filter-modal {
  width: 260px;
  left: 416px;
  transition: transform 0.1s ease, opacity 0.1s ease;
  transform-origin: 0 0;
  padding: 16px;
}

.hidden {
  transform: scale(0.5);
  opacity: 0;
}

.boton_notificaciones {
  display: block;
  width: 15%;
}

.familiar {
  height: 40% !important;
  width: 40% !important;
  margin: 8% auto !important;
}

.texto_familiar {
  text-align: center !important;
  color: var(--colorsecundario) !important;
}

.menu_idiomas {
  display: inline;
}

.menu_idiomas ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: inline-block;
}

.menu_idiomas ul li:before {
  list-style-type: none !important;
  content: none;
}

.menu_idiomas ul li {
  font-size: 1rem;
}

.menu_idiomas li {
  cursor: pointer;
  padding-bottom: 10px;
}

.menu_idiomas li ul {
  display: none;
}

.menu_idiomas li:hover ul {
  position: absolute;
  top: 29px;
  right: -15px;
  display: block;
  background: #fff;
  width: 120px;
  padding-top: 0px;
  z-index: 99999999;
  border-radius: 5px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.menu_idiomas li:hover .triangulo {
  position: absolute;
  top: 15px;
  right: -10px;
  z-index: 10;
  height: 14px;
  overflow: hidden;
  width: 30px;
  background: transparent;
}

.menu_idiomas li:hover .triangulo:after {
  content: "";
  display: block;
  z-index: 20;
  width: 15px;
  transform: rotate(45deg) translateY(0px) translatex(10px);
  height: 15px;
  background: #fff;
  border-radius: 2px 0px 0px 0px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.triangulo_abajo {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #333 transparent;
  border-width: 6px 4px 0 4px;
  border-top-color: #333;
  display: inline-block;
}

.menu_idiomas li ul li {
  position: relative;
  text-align: left;
  background: transparent;
  padding: 15px 15px;
  padding-bottom: 0;
  z-index: 2;
  font-size: 15px;
  color: #3c3c3c;
}

.menu_idiomas li ul li:last-of-type {
  padding-bottom: 15px;
}

.menu_idiomas li ul li span {
  padding-left: 5px;
}

.posicion_banderita {
  display: inline-block;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
  width: 20px;
  height: 20px;
  background: #aaa;
  border-radius: 50%;
  position: relative;
  top: 2px;
  overflow: hidden;
}

.bandera-al {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTM0A1t6AAAAPUlEQVQ4T+3HMQ0AIBTE0NOHM8x9B7hgh71bIWGieUvze1m7kHGBr/AVvsJX+EpmP5dV5/gKX+ErfIUvVDYcX2NMxQC8PAAAAABJRU5ErkJggg==");
  background-size: cover;
  background-position: center center;
}

.bandera-uk {
  background-size: cover;
  background-position: center center;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTM0A1t6AAABhUlEQVQ4T2Ows82PjGixsc4LD2tysC/09Kjw8622tyuICG8u0w/cpGSCBzF4e1VmZkzw9anOzOj38a4KCW4IC22ECHYk1l9tn4gHMeTlTnZxLikvm+XiUpKW2hvgX+vnV5OVOQEoOGfOtv94AYOzU3Fd7XxHh6Lq6rlurqUx0W0J8Z1AnbW18yotonaYuOJBDBXls4A+bGpaBCTz86YEBtQCvVBSPAPIbY0oP1/aiAcxABU1Ny+2tclvbFjo5FgUF9uenNwNDLnmpkWEnV1TPRcY1O1tS4H6i4umA/0MDK2K8tlAwRqHpP1uoXgQKKraWpcClTY3LQZaCLQ5NaUX5OaWJY3++SeTC/AgBmA4AXUClUJs9ver8fKsAAYEUJCws4G21dXNB1oFdD/Qz8DQTk4C+bm2dn6DZ9bRiDQ8iAEYt8CoBpK5YBIYw0AEEZwSXX4oMB4PYoC6gCzAcDqrjGzEsMfen2xEmbMv1rSTjRi26dqRjShz9o2+6WQjBrSShQSkZAIADvW/HLrLY6cAAAAASUVORK5CYII=");
}

.bandera-es {
  background-size: cover;
  background-position: center center;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAABN2lDQ1BBZG9iZSBSR0IgKDE5OTgpAAAokZWPv0rDUBSHvxtFxaFWCOLgcCdRUGzVwYxJW4ogWKtDkq1JQ5ViEm6uf/oQjm4dXNx9AidHwUHxCXwDxamDQ4QMBYvf9J3fORzOAaNi152GUYbzWKt205Gu58vZF2aYAoBOmKV2q3UAECdxxBjf7wiA10277jTG+38yH6ZKAyNguxtlIYgK0L/SqQYxBMygn2oQD4CpTto1EE9AqZf7G1AKcv8ASsr1fBBfgNlzPR+MOcAMcl8BTB1da4Bakg7UWe9Uy6plWdLuJkEkjweZjs4zuR+HiUoT1dFRF8jvA2AxH2w3HblWtay99X/+PRHX82Vun0cIQCw9F1lBeKEuf1UYO5PrYsdwGQ7vYXpUZLs3cLcBC7dFtlqF8hY8Dn8AwMZP/fNTP8gAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAXIaVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA2LjAtYzAwMiA3OS4xNjQ0NjAsIDIwMjAvMDUvMTItMTY6MDQ6MTcgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIiB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCAyMS4yIChXaW5kb3dzKSIgeG1wOkNyZWF0ZURhdGU9IjIwMjItMDgtMTlUMTc6MTI6NTArMDI6MDAiIHhtcDpNb2RpZnlEYXRlPSIyMDIyLTA4LTE5VDE3OjE0OjQxKzAyOjAwIiB4bXA6TWV0YWRhdGFEYXRlPSIyMDIyLTA4LTE5VDE3OjE0OjQxKzAyOjAwIiBkYzpmb3JtYXQ9ImltYWdlL3BuZyIgcGhvdG9zaG9wOkNvbG9yTW9kZT0iMyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpiM2MzMTI1Ni0xYTEwLTY5NDktOWJlYi02M2Q4M2FmZmJiZTAiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDo0MjJkNWRhMi1mZDU2LWNlNGItODg0Yi0wNTI3MWIzYjYxNGUiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo4ZTBlOGExOC1lNzIwLTc5NDItOTdlNi05ZjIwNzMzYzEzYzUiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOjhlMGU4YTE4LWU3MjAtNzk0Mi05N2U2LTlmMjA3MzNjMTNjNSIgc3RFdnQ6d2hlbj0iMjAyMi0wOC0xOVQxNzoxMjo1MCswMjowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIDIxLjIgKFdpbmRvd3MpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDpiM2MzMTI1Ni0xYTEwLTY5NDktOWJlYi02M2Q4M2FmZmJiZTAiIHN0RXZ0OndoZW49IjIwMjItMDgtMTlUMTc6MTQ6NDErMDI6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCAyMS4yIChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7xUEH4AAAAZElEQVQ4je3TMQ5AYBBE4beyjUan436OqZQ4h0pCqRB+h/B05gBfMTsbE31BTGViAFkIF7xVDmIZGrXDKBMqmBxyh1yq58/mB98ncXdN7mOtgjG3nfsp5+rWmJX7yl9cGTYTfABT4xPFYxHWfQAAAABJRU5ErkJggg==");
}

.bandera-fr {
  background-size: cover;
  background-position: center center;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAABN2lDQ1BBZG9iZSBSR0IgKDE5OTgpAAAokZWPv0rDUBSHvxtFxaFWCOLgcCdRUGzVwYxJW4ogWKtDkq1JQ5ViEm6uf/oQjm4dXNx9AidHwUHxCXwDxamDQ4QMBYvf9J3fORzOAaNi152GUYbzWKt205Gu58vZF2aYAoBOmKV2q3UAECdxxBjf7wiA10277jTG+38yH6ZKAyNguxtlIYgK0L/SqQYxBMygn2oQD4CpTto1EE9AqZf7G1AKcv8ASsr1fBBfgNlzPR+MOcAMcl8BTB1da4Bakg7UWe9Uy6plWdLuJkEkjweZjs4zuR+HiUoT1dFRF8jvA2AxH2w3HblWtay99X/+PRHX82Vun0cIQCw9F1lBeKEuf1UYO5PrYsdwGQ7vYXpUZLs3cLcBC7dFtlqF8hY8Dn8AwMZP/fNTP8gAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAXIaVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA2LjAtYzAwMiA3OS4xNjQ0NjAsIDIwMjAvMDUvMTItMTY6MDQ6MTcgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIiB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCAyMS4yIChXaW5kb3dzKSIgeG1wOkNyZWF0ZURhdGU9IjIwMjItMDgtMTlUMTc6MTk6MjErMDI6MDAiIHhtcDpNb2RpZnlEYXRlPSIyMDIyLTA4LTE5VDE3OjIwOjQyKzAyOjAwIiB4bXA6TWV0YWRhdGFEYXRlPSIyMDIyLTA4LTE5VDE3OjIwOjQyKzAyOjAwIiBkYzpmb3JtYXQ9ImltYWdlL3BuZyIgcGhvdG9zaG9wOkNvbG9yTW9kZT0iMyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyNzY2MDZiOC0wNmJkLTc4NDEtYTMyYS1kZWQ3MGUyMTRhNzciIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDo5NWNmNGE2Mi1kODcwLTZlNGItOTc1YS03YmM5ODRhODA5OTQiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDozMjNlNDU0Yi05ZmM0LWI0NGMtOTYyMy1mYjkyMGEwMDhkMmUiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOjMyM2U0NTRiLTlmYzQtYjQ0Yy05NjIzLWZiOTIwYTAwOGQyZSIgc3RFdnQ6d2hlbj0iMjAyMi0wOC0xOVQxNzoxOToyMSswMjowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIDIxLjIgKFdpbmRvd3MpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDoyNzY2MDZiOC0wNmJkLTc4NDEtYTMyYS1kZWQ3MGUyMTRhNzciIHN0RXZ0OndoZW49IjIwMjItMDgtMTlUMTc6MjA6NDIrMDI6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCAyMS4yIChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5eMUhtAAAAdUlEQVQ4jWNkCNrylIGBgZcBGTz7xuDjI8uwudqQ4evnnwx//v2HiDMzMTDz8DK8Dctn+LJ6OgMLgxIDGvjMwsDAIIUuSgHgZWJgYPhMRQM/M1HRMAYGBgaGUQNHDRw1cNRA+hnIS1AV8YCXhYGB4RkVDf0MAMJ2FR2tte9MAAAAAElFTkSuQmCC");
}

.contenedor_cerra_sesion {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 40px;
  margin-inline-end: 40px;
  height: 36px;
  text-align: center;
  position: relative;
}

/*menu acciones*/
.contenedor_prueba input[type=checkbox] {
  display: none;
}

.btnacciones {
  background: var(--naranja);
  min-width: 100%;
  margin: 5px 0% 5px;
  margin-bottom: 10px;
  height: 25px;
  border-radius: 3px;
  outline: 0;
  outline-style: none;
  border: none;
  color: white;
  font-size: 10px;
  font-weight: 150;
  cursor: pointer;
  transition: box-shadow 0.4s ease;
  line-height: 1rem;
}

.btnacciones--large {
  width: 60px;
  height: 60px;
}

.btnacciones--menu::before {
  font: normal 20px/1;
  color: white;
  margin: 0 auto;
}

.btnredondo {
  border-radius: 50%;
}

.btnacciones--menu::after {
  content: "Opciones";
  color: white;
  font-style: normal;
  text-transform: uppercase;
  font-size: 1em;
  position: relative;
}

[id*=chkopciones]:checked + .opciones-menu > .btnacciones--aceptar {
  background: var(--colorprincipal);
}

[id*=chkopciones]:checked + .opciones-menu > .btnacciones--modificar {
  background: var(--colorsecundario);
}

[id*=chkopciones]:checked + .opciones-menu > .btnacciones--borrar {
  background: var(--rojo);
}

.opciones-menu {
  position: absolute;
  width: 60px;
  height: 60px;
  right: 15px;
  bottom: 15px;
  z-index: 9;
}

.opciones-menu .btnacciones {
  position: absolute;
  top: 8px;
  left: 8px;
  opacity: 0;
  transition: top 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275), left 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 200ms;
}

.opciones-menu .btnacciones--menu {
  position: absolute;
  opacity: 1;
  top: 0;
  left: 0;
  z-index: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btnacciones--menu,
[id*=chkopciones]:checked + .opciones-menu > .btnacciones {
  opacity: 1;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

[id*=chkopciones]:checked + .opciones-menu > .acciones {
  min-width: 250pxpx;
  margin: 5px 0% 5px;
  margin-bottom: 10px;
  height: 25px;
  border-radius: 3px;
  outline: 0;
  outline-style: none;
  border: none;
  color: white;
  font-size: 10px;
  font-weight: 150;
  cursor: pointer;
  transition: box-shadow 0.4s ease;
  line-height: 1rem;
}

[id*=chkopciones]:checked + .opciones-menu > .btnacciones--aceptar {
  top: -70px;
  left: -70px;
}

[id*=chkopciones]:checked + .opciones-menu > .btnacciones--modificar {
  top: -35px;
  left: -90px;
}

[id*=chkopciones]:checked + .opciones-menu > .btnacciones--borrar {
  left: -120px;
  top: 3px;
}

/*fin menu acciones*/
.caja_color1 {
  height: auto;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  padding: 7px 33px;
  border: 1px solid #0b96ab;
  border-radius: 22px;
  box-shadow: var(--blanco) 0px 0px 40px 0px;
  text-shadow: var(--blanco) 1px 1px 1px;
  font: normal normal normal 16px arial;
  color: var(--blanco);
  text-decoration: none;
  margin: 20px 20px 20px 20px;
}

.caja_color1:hover,
.caja_color1:focus {
  border: 1px solid #0ec3de;
  color: #0b96ab;
  text-decoration: none;
}

.caja_color2 {
  height: auto;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  padding: 7px 33px;
  border: 1px solid #a8a8a8;
  border-radius: 22px;
  box-shadow: var(--blanco) 0px 0px 40px 0px;
  text-shadow: var(--blanco) 1px 1px 1px;
  font: normal normal normal 16px arial;
  color: var(--blanco);
  text-decoration: none;
  margin: 20px 20px 20px 20px;
}

.caja_color2:hover,
.caja_color2:focus {
  border: 1px solid #0ec3de;
  color: #0b96ab;
  text-decoration: none;
}

hr.separador {
  border-top: 0, 5px solid #bbb;
}

/* FIN CABECERA */
.animacion_caja {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.entrada_izquierda {
  animation-name: entrada_izquierda;
}

.contenedor {
  background: var(--blanco);
  border-radius: 16px 16px 16px 16px;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding-top: 24px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 24px;
  margin-top: 15px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 130px;
  max-width: 1200px;
  overflow: hidden;
  text-align: center;
}

.label_centrado {
  margin-right: 1em;
  color: var(--colorprincipal);
  font-size: 14px;
  font-weight: normal;
  font-family: "bronkoh-light", Sans-serif !important;
  margin: 3% 3% 0 3%;
  display: inline-block;
}

table {
  border: 0;
}

table caption {
  font-size: 1.3em;
}

table tr {
  border-bottom: 3px solid #ddd;
  margin-bottom: 0.625em;
}

table td::before {
  content: attr(data-label);
  float: left;
  font-weight: bold;
  text-transform: uppercase;
}

#disponibilidad td {
  border-bottom: 1px solid #ddd;
  display: table-cell;
  font-size: 0.8em;
  text-align: left;
}

.icono_titulo {
  color: var(--colorprincipal);
  font-weight: normal;
  margin-bottom: 0;
  margin-top: 0;
  font-family: "bronkoh-light", Sans-serif !important;
}

.table-row {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  flex-wrap: no-wrap;
  -webkit-flex-wrap: no-wrap;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.wrapper {
  display: -webkit-flex;
  flex-direction: row;
  flex-grow: 0;
  -webkit-flex-grow: 0;
}

.text-4,
.text-2,
.text {
  flex-grow: 1;
  -webkit-flex-grow: 1;
}

.text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 20px;
}

.text {
  width: 180px;
}

.num {
  width: 80px;
  text-align: right;
}

.table-row {
  border-bottom: 2px solid #e0e0e0;
  border-collapse: collapse;
  padding-top: 5px;
}

.table-row.header {
  background-color: #ffeedb;
  font-weight: bold;
  padding-top: 8px;
  padding-bottom: 8px;
}

.migas_de_pan {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin-left: 10px;
  width: 100%;
}

.texto_migas {
  font-size: 13px;
  text-align: left;
}

.texto_migas a {
  color: #adb0b1;
}

.item_actual {
  color: var(--colorsecundario);
  padding-right: 5px;
}

#faq {
  font-weight: 600;
  font-family: "bronkoh-regular", Sans-serif !important;
}

/* BOTONES */
.boton_enviar {
  background-color: var(--colorprincipal);
  color: var(--blanco) !important;
  font-family: "bronkoh-light", Sans-serif;
  font-style: normal;
  font-size: 15px;
  border-radius: 25px 25px 25px 25px;
  text-align: center;
  align-items: center;
  width: 220px;
}

.boton_buscar {
  background-color: var(--colorprincipal);
  color: var(--blanco) !important;
  font-family: "bronkoh-light", Sans-serif;
  font-style: normal;
  font-size: 15px;
  margin-bottom: 25px;
  padding: 5px 5px 45px 5px;
  border-radius: 25px 25px 25px 25px;
  text-align: center;
  align-items: center;
  width: 220px;
}

.boton_gris {
  background-color: var(--gris);
  color: var(--colorprincipal) !important;
  font-family: "bronkoh-light", Sans-serif;
  font-style: normal;
  font-size: 15px;
  box-shadow: 2px 3px 4px 1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  border-radius: 25px 25px 25px 25px;
  display: flex;
  align-items: center;
  width: 240px;
  height: 40px;
}

.boton_gris:active {
  background-color: var(--blanco);
}

.boton_blanco {
  background-color: var(--blanco);
  color: var(--colorprincipal) !important;
  font-family: "bronkoh-light", Sans-serif;
  font-style: normal;
  font-size: 15px;
  box-shadow: 2px 3px 4px 1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  border-radius: 25px 25px 25px 25px;
  display: flex;
  align-items: center;
  width: 240px;
  height: 40px;
}

.boton_blanco:active {
  background-color: #edeff1;
}

.boton_seleccion {
  background-color: var(--blanco);
  color: var(--colorprincipal) !important;
  font-family: "bronkoh-light", Sans-serif;
  font-style: normal;
  font-size: 15px;
  padding: 5px 5px 5px 50px;
  box-shadow: 2px 3px 4px 1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  margin: 1% 1% 1% 1%;
  border-radius: 25px 25px 25px 25px;
  text-align: center;
  align-items: center;
  float: left;
  width: 240px;
  height: 40px;
  border-style: none;
}

.boton_seleccion:active {
  background-color: #edeff1;
}

.borrar_cita {
  background-color: var(--blanco);
  color: var(--rojo) !important;
  font-family: "bronkoh-light", Sans-serif;
  font-style: normal;
  font-size: 10px;
  transition: all 1s ease 0s;
  padding: 0 1rem !important;
  padding: 0px 10px;
  margin: 0 5px 5px 0;
  border-radius: 25px 25px 25px 25px;
  border: 1px solid var(--rojo);
  text-align: center;
  align-items: center;
  width: unset;
  line-height: 1.5em;
  height: 30px;
  min-width: 150px;
}

.modificar_cita {
  background-color: var(--blanco);
  color: var(--colorprincipal) !important;
  font-family: "bronkoh-light", Sans-serif;
  font-style: normal;
  font-size: 10px;
  transition: all 1s ease 0s;
  padding: 0 1rem !important;
  padding: 0px 10px;
  margin: 0 5px 5px 0;
  border-radius: 25px 25px 25px 25px;
  border: 1px solid var(--colorprincipal);
  text-align: center;
  align-items: center;
  width: unset;
  line-height: 1.5em;
  height: 30px;
  min-width: 150px;
  border-radius: 25px 25px 25px 25px !important;
  border: 1px solid var(--colorprincipal) !important;
}

.borrar_cita:hover {
  background-color: var(--rojo) !important;
  color: white !important;
}

.modificar_cita:hover {
  background-color: var(--colorprincipal) !important;
  color: white !important;
}

.identificate {
  position: relative;
  top: 20%;
  left: 0%;
  margin-top: -50px;
  display: inline-block;
  width: 220px;
  height: 40px;
  font-size: 1.2em !important;
  text-transform: uppercase !important;
  text-align: center;
  line-height: 40px;
  letter-spacing: 0px;
  color: white !important;
  border-radius: 20px !important;
  background: var(--colorprincipal) !important;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(35, 85, 33, 0.25);
  animation: pulso_boton 1.7s infinite;
}

.identificate:before {
  content: "";
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  width: 60px;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.5;
  filter: blur(30px);
  transform: translateX(-100px) skewX(-15deg);
}

.identificate:after {
  content: "";
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  width: 30px;
  height: 100%;
  left: 30px;
  top: 0;
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-100px) skewX(-15deg);
}

.identificate:hover {
  animation: none;
  background: var(--verde);
  color: var(--blanco);
}

.identificate:hover:before {
  transform: translateX(300px) skewX(-15deg);
  opacity: 0.6;
  transition: 0.7s;
}

.identificate:hover:after {
  transform: translateX(300px) skewX(-15deg);
  opacity: 1;
  transition: 0.7s;
}

.identificate2 {
  position: relative;
  top: 20%;
  left: 0%;
  margin-top: -50px;
  display: inline-block;
  width: 220px;
  height: 40px;
  font-size: 1.2em !important;
  text-transform: uppercase !important;
  text-align: center;
  line-height: 40px;
  letter-spacing: 0px;
  color: white !important;
  border: none !important;
  border-radius: 0% !important;
  background: var(--colorprincipal) !important;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(35, 85, 33, 0.25);
  animation: pulso_boton 1.7s infinite;
}

.identificate2:before {
  content: "";
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  width: 60px;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.5;
  filter: blur(30px);
  transform: translateX(-100px) skewX(-15deg);
}

.identificate2:after {
  content: "";
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  width: 30px;
  height: 100%;
  left: 30px;
  top: 0;
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-100px) skewX(-15deg);
}

.identificate2:hover {
  animation: none;
  background: var(--verde);
  color: var(--blanco);
}

.identificate2:hover:before {
  transform: translateX(300px) skewX(-15deg);
  opacity: 0.6;
  transition: 0.7s;
}

.identificate2:hover:after {
  transform: translateX(300px) skewX(-15deg);
  opacity: 1;
  transition: 0.7s;
}

/**/
.boton_pulso {
  position: relative;
  top: 20%;
  left: 0%;
  margin-top: -50px;
  display: inline-block;
  width: 220px;
  height: 40px;
  font-size: 1.2em !important;
  text-transform: uppercase !important;
  text-align: center;
  line-height: 40px;
  letter-spacing: 0px;
  color: var(--blanco) !important;
  border: none !important;
  border-radius: 0% !important;
  background: var(--colorprincipal) !important;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(35, 85, 33, 0.25);
  animation: pulso_boton 1.7s infinite;
}

.boton_pulso:before {
  content: "";
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  width: 60px;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.5;
  filter: blur(30px);
  transform: translateX(-100px) skewX(-15deg);
}

.boton_pulso:after {
  content: "";
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  width: 30px;
  height: 100%;
  left: 30px;
  top: 0;
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-100px) skewX(-15deg);
}

.boton_pulso:hover {
  animation: none;
  background: var(--verde);
}

.boton_pulso:hover:before {
  transform: translateX(300px) skewX(-15deg);
  opacity: 0.6;
  transition: 0.7s;
}

.boton_pulso:hover:after {
  transform: translateX(300px) skewX(-15deg);
  opacity: 1;
  transition: 0.7s;
}

.boton_reiniciar {
  background-color: var(--blanco);
  color: var(--colorsecundario) !important;
  font-family: "bronkoh-light", Sans-serif;
  font-style: normal;
  font-size: 15px;
  padding: 5px 5px 45px 5px;
  transition: all 0.3s ease 0s;
  margin: 1% 1% 1% 1%;
  border-radius: 25px 25px 25px 25px;
  border: 1px solid #0b97ab;
  text-align: center;
  align-items: center;
  width: 240px;
  height: 40px;
}

.boton_reiniciar:active {
  background-color: #edeff1;
}

.descarga {
  background: url(iconos/boton_descarga.svg) 30px 30px no-repeat;
}

.cita_migas_de_pan {
  display: flex;
  padding: 20px 0;
}
@media (max-width: 480px) {
  .cita_migas_de_pan {
    padding: 40px 0px;
  }
}

.cita_movil {
  vertical-align: middle;
  background-color: white;
}

.celda_movil_acciones {
  display: flex;
  align-self: center;
  right: 3%;
  text-align: center;
}
@media (max-width: 576px) {
  .celda_movil_acciones {
    right: 0;
  }
}

.celda_movil_acciones div {
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  .celda_movil_acciones div {
    width: 100%;
    flex-direction: column;
  }
}

.celda_movil_acciones .textos_avisos {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-around;
  align-items: center;
}

.separacion2 {
  margin-right: 2%;
}

.cita_migas_de_pan__item + .cita_migas_de_pan__item {
  display: flex;
  margin-left: 5px;
  margin-top: 0 !important;
  cursor: unset;
  pointer-events: none;
}

.cita_migas_de_pan button {
  margin-right: 4px !important;
}

.cita_migas_de_pan button:last-child {
  margin-right: 0;
}

.solicitante {
  margin-top: 10px;
  margin-bottom: 10px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
  align-self: flex-end;
  margin-right: 10px;
}

.telefonos-list {
  padding-left: 0;
  display: block;
  width: 100%;
}

.telefonos-list li {
  display: flex;
  padding-bottom: 20px;
}

.telefonos-list li .custom-bullet {
  flex: 1;
  padding-right: 20px;
  justify-content: flex-start;
  font-family: "Bronk-light", Sans-serif;
  font-size: 18px;
  font-weight: 100;
  color: #273841;
}

.telefonos-list li .custom-bullet::before {
  margin-right: 10px;
  align-self: flex-start;
  margin-top: 5px;
}

.custom-bullet::before {
  width: 14px;
  min-width: 14px;
  height: 14px;
}

.añadir_familiar {
  background-color: var(--blanco) !important;
  color: var(--colorsecundario) !important;
  font-family: "bronkoh-light", Sans-serif;
  font-style: normal;
  font-size: 15px;
  transition: all 0.3s ease 0s;
  padding: 0px 10px;
  margin: 0 5px 5px 0;
  border-radius: 25px 25px 25px 25px !important;
  border: 1px solid #0b97ab !important;
  text-align: center;
  align-items: center;
  line-height: 0;
  min-width: 150px;
  height: 30px;
}

.lista_formulario li {
  margin-bottom: 10px;
}

.texto_verde {
  font-family: "bronkoh-regular", Sans-serif;
  font-size: 12px;
  color: var(--colorprincipal) !important;
  padding: 0px 0px 5px 20px;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
}

.icon {
  text-decoration: none;
  border-bottom: none;
  position: relative;
}

.icon:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "bronkoh-regular", Sans-serif;
  font-style: normal;
  font-weight: normal;
  text-transform: none !important;
}

.icon > .label {
  display: none;
}

ul.icons {
  cursor: default;
  list-style: none;
  padding-left: 0;
}

ul.icons li {
  display: inline-block;
  padding: 0 1rem 0 0;
}

ul.icons li:last-child {
  padding-right: 0;
}

ul.icons li .icon:before {
  font-size: 2rem;
}

.image {
  border-radius: 4px;
  border: 0;
  display: inline-block;
  position: relative;
}

.image img {
  border-radius: 4px;
  display: block;
}

.image.left,
.image.right {
  max-width: 40%;
}

.image.left img,
.image.right img {
  width: 100%;
}

.image.left {
  float: left;
  margin: 0 2rem 2rem 0;
  top: 0.25rem;
}

.image.right {
  float: right;
  margin: 0 0 2rem 2rem;
  top: 0.25rem;
}

.image.fit {
  display: block;
  margin: 0 0 2rem 0;
  width: 100%;
}

.image.fit img {
  width: 100%;
}

.image.main {
  display: block;
  margin: 0 0 3rem 0;
  width: 100%;
}

.image.main img {
  width: 100%;
}

/* PANTALLA MI PERFIL*/
.contenedor_formulario.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.popup-call {
  position: fixed;
  visibility: hidden;
  z-index: 9999;
  margin: auto;
  clear: both;
  height: 100%;
  width: 480px;
  overflow: auto;
  padding: 15px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  background: var(--blanco);
  opacity: 0;
  transform: scale(0);
  transition: 0.5s ease all;
}

.popup-call-show {
  opacity: 1;
  transform: scale(1);
  transition: 0.5s ease all;
}

.popup-form {
  width: 80%;
  display: inline;
}

.popup-form input[type=text],
.popup-form input[type=email],
.popup-form input[type=phone],
.popup-form input[type=date] {
  font-size: 16px;
  margin-bottom: 10px;
  padding: 8px;
  width: 95%;
}

.popup-form textarea {
  border: 1px solid;
  width: 95%;
  padding: 8px;
  font-size: 16px;
  height: 80px;
  margin-bottom: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.close:hover {
  color: var(--colorprincipal);
}

.popup-form input[type=submit] {
  background: var(--rojo);
  border: 0;
  border-radius: 5px;
  color: var(--blanco);
  font-size: 16px;
  padding: 10px;
}

#misdatos {
  width: 30%;
  margin-right: 2%;
  position: relative;
  float: left;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 1px;
}

#aviso {
  width: 40%;
  margin-right: 2%;
  position: relative;
  float: right;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 1px;
  margin-bottom: 20px;
}

#seguridad {
  display: flex;
  margin-right: 2%;
  position: relative;
  float: left;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 1px;
  margin-left: 4%;
}

.cajadatos {
  border-radius: 0.25rem;
  text-align: left;
  padding: 1em;
  color: var(--blanco);
  color: #444;
}

.cajaseguridad {
  border-radius: 0.25rem;
  text-align: left;
  padding: 1em;
  color: var(--blanco);
  color: #444;
}
@media (max-width: 576px) {
  .cajaseguridad {
    padding: 0;
  }
}

.familiares {
  width: 20%;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

/* FIN PANTALLA MI PERFIL      
/* NUEVO */
.bodyMiOchoa .container {
  width: 100vw !important;
  max-width: none !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  padding: 90px 1em 0 1em !important;
}
@media (max-width: 480px) {
  .bodyMiOchoa .container {
    padding: 70px 0.5em 0 0.5em !important;
  }
}

.home {
  background-image: linear-gradient(90deg, #1d406d, #3f67a9);
  background-attachment: fixed;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.home__content {
  text-align: center;
  margin: 8rem 0 4rem 0;
}

.home__title--vote {
  color: var(--blanco);
  font-size: 80px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}

.home__title--electronic {
  color: #f5a623;
  font-size: 40px;
  text-transform: uppercase;
  margin: 1rem 0;
}

.home__title--year {
  color: var(--blanco);
  font-size: 40px;
}

.home__title--name {
  display: block;
  font-weight: 30px;
  text-align: center;
  font-weight: 200;
  color: var(--blanco);
}

.home__title--input {
  height: 40px;
  width: 400px;
  text-align: center;
  margin: 0.5rem;
  font-size: 16px;
  font-weight: 500;
  margin: 2rem 0 2rem 0;
}

.home__title--button {
  text-decoration: none;
  border: 0px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.25);
  display: block;
  height: 40px;
  width: 400px;
  text-align: center;
  margin: 0 auto;
  line-height: 40px;
  color: var(--blanco);
  font-size: 16px;
}

.logo {
  height: 25px;
  width: 25px;
  margin: 0;
}

.logo--img {
  height: 25px;
  width: 25px;
}

.courses {
  padding: 6rem 0;
  text-align: center;
}

.courses__title {
  font-size: 30px;
  font-weight: 600;
  color: var(--negro);
  text-align: center;
  margin: 0;
}

.courses__menssage {
  font-size: 20px;
  font-weight: 200;
  color: var(--negro);
  display: block;
  padding: 2rem 0 0 0;
  text-align: left;
}

.course--button {
  background-color: #3673d9;
  color: var(--blanco);
  font-size: 20px;
  border: none;
  padding: 16px 40px 16px 40px;
  border-radius: 2px;
  cursor: pointer;
}

.course--button:hover {
  background-color: #0f3574;
}

.texto_verde {
  padding: 0px 0px 5px 0px;
}

.texto_datos_cita {
  font-size: 1em !important;
  text-align: left;
}

.fecha_cita_doctor {
  text-align: center;
  display: table-cell;
  background-color: var(--colorprincipal);
  width: unset;
}

.fila_disponibilidad_dia {
  padding: 0.15rem 0.75rem;
  vertical-align: middle;
  background-color: white;
  width: 100%;
}

#titulo_pagina {
  margin-left: 10px;
  margin-bottom: 6%;
}

.contenido_panelizquierda_normal {
  font-size: 12px;
}

.contenido_panelizquierda_grande {
  font-size: 20px;
  font-weight: 700;
}

.fila_disponibilidad_dia {
  border: 1px solid #ccc;
  padding: 0 0 0 0;
  font-size: 13px;
  font-weight: 400;
  color: #a8a8a8;
  vertical-align: baseline;
  border-left: 1px solid #edeff2 !important;
  border-bottom: 1px solid #edeff2 !important;
}

.pulse:hover,
.pulse:focus {
  animation: pulse 1s;
  box-shadow: 0 0 0 2em rgba(255, 255, 255, 0);
}

.pulse {
  --color: #0b96ab;
  --hover: #ef8f6e;
}

.btn {
  color: var(--color);
  transition: 0.25s;
}

.btn:hover,
.btn:focus {
  border-color: var(--hover);
  color: var(--blanco);
}

.btn {
  border-radius: 22px;
  background: none;
  border: 2px solid;
  font: inherit;
  line-height: 1;
  margin: 0.5em;
  padding: 1em 2em;
}

@media all and (max-width: 320px) {
  .table-row.header {
    display: none;
  }
  .table-row {
    flex-direction: column;
  }
  .table-row div {
    flex-grow: 0;
    -webkit-flex-grow: 0;
    width: 100%;
  }
  .num {
    text-align: left;
  }
}
@media all and (max-width: 580px) {
  .table-row.header {
    display: none;
  }
  .text-4,
  .num-4 {
    flex-direction: column;
  }
  .text-4 div,
  .num-4 div {
    flex-grow: 0;
    -webkit-flex-grow: 0;
    width: 100%;
    display: initial;
  }
  .text-4 {
    width: 180px;
  }
  .num-4 {
    width: 80px;
  }
  input[type=button],
  input[type=reset],
  input[type=submit] {
    height: 2.3rem;
  }
}
@media screen and (max-width: 575px) {
  .contenedor {
    padding-right: 1px;
    padding-left: 1px;
    padding-bottom: 24px;
  }
  .bloque_contacto {
    padding: 0px;
    margin: 0px;
  }
  .contenedor_contacto {
    margin: 0px;
    padding: 0px;
  }
  .lista_formulario li {
    margin-bottom: 10px;
  }
  .row {
    display: inline-flex;
    -webkit-display: box;
    -moz-display: box;
    -ms-display: flexbox;
    -webkit-display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
  }
  input[type=button],
  input[type=reset],
  input[type=submit] {
    height: 3.2rem;
    font-size: 1.3rem;
  }
  .fila {
    width: 100%;
    align-items: center;
    margin: 2% 0 2% 0;
  }
  .boton_blanco {
    width: 100%;
    display: inline-block;
  }
  .boton_gris {
    width: 100%;
    display: inline-block;
  }
  .identificate {
    width: 100%;
  }
  .boton_reiniciar {
    width: 100%;
    display: inline-block;
  }
  .espaciado_derecha_normal {
    margin-right: 15px;
  }
  .espaciado_izquierda_normal {
    margin-left: 15px;
  }
  .boton_seleccion {
    width: 100%;
  }
  .fila_filtro {
    width: 100%;
    position: relative;
    align-items: center;
    margin: 12% 0 2% 0;
    display: inherit;
  }
  .listado_home {
    padding: 1% 0;
    margin: 5% auto;
  }
  .listado_parking {
    margin-left: 3%;
  }
  .elemento_parking {
    margin-top: 40px;
  }
  #familiares {
    width: 100%;
    display: block;
  }
  #misdatos {
    width: 100%;
  }
  .caja_home {
    background-color: var(--blanco);
    margin: 10px 5px 10px 5px;
    width: 45%;
    padding: 0rem 0rem 0rem 0rem;
    border-radius: 25px;
  }
  .margen_izquierdo {
    margin-left: 30px;
  }
  .login_formulario {
    width: 90%;
  }
  .formulario {
    width: 90%;
  }
  .medico_info__avatar {
    width: 20%;
    height: 20%;
  }
  .texto_datos_paciente {
    font-size: calc(4vw + 4vh + 2vmin);
  }
  .fila_tarjeta {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
}
[id*=chkopciones]:checked + .opciones-menu > .btnacciones--aceptar {
  top: -70px;
  left: -45px;
}

[id*=chkopciones]:checked + .opciones-menu > .btnacciones--modificar {
  top: -35px;
  left: -65px;
}

[id*=chkopciones]:checked + .opciones-menu > .btnacciones--borrar {
  left: -85px;
  top: 3px;
}

/* Tamaños medianos (tablets, 576px y superiores)*/
@media (min-width: 576px) {
  body {
    text-align: left;
    background: #edeff1;
    padding: 0px 0px 0px 0px;
    background-size: auto;
    margin-top: 0rem;
    margin-right: 0rem;
    margin-bottom: 0rem;
    margin-left: 0rem;
  }
  .fila_filtro {
    display: grid;
  }
  .icono_cita {
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
  }
  .icono_citas {
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
  }
  .icono_archivo {
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
  }
  .icono_buzon {
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
  }
  .icono_perfil {
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
  }
  .icono_configuracion {
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
  }
  .listado_home {
    padding: 1% 0;
    margin: 5% auto;
    width: 80%;
  }
  .caja_home {
    background-color: var(--blanco);
    margin: 10px 13px 10px 13px;
    width: 33%;
    padding: 0rem 0rem 2rem 0rem;
    border-radius: 25px;
  }
  .caja_home:hover {
    transform: scale(1.1);
    border: 0px;
  }
  .titulo_caja {
    font-size: 2rem;
    font-weight: 500;
  }
  .caja_logo_img {
    height: 50%;
    width: 50%;
  }
  .caja_logo {
    height: 80%;
    width: 80%;
    margin: 2% auto;
  }
  .titulo_caja {
    font-family: "bronkoh-regular", Sans-serif;
    font-size: 20px;
    color: var(--colorprincipal);
    margin: 1rem 0 0 1rem;
    text-align: left;
  }
}
@media screen and (max-width: 699px) {
  .solicitante {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-right: 0px;
    align-self: auto;
  }
  .botones {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  input[type=button],
  input[type=reset],
  input[type=submit] {
    height: 2.3rem;
  }
  .contenedor_contacto {
    display: -ms-flexbox;
    display: block;
    position: relative;
    width: 100%;
    margin: 0px;
    padding: 0px;
  }
  .ancho_fuente_normal {
    width: 100%;
  }
}
@media (max-width: 699px) {
  .tt-alert {
    margin: 1.4rem 0.75rem;
  }
  .tt-columns.is-mobile > .tt-column.is-one-fifth {
    flex: none;
    width: 20%;
  }
  .tt-column {
    display: grid;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    padding: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .login_formulario {
    width: 90%;
  }
  .formulario {
    width: 70%;
  }
  .boton_blanco,
  .boton_gris,
  .boton_reiniciar {
    width: 50%;
  }
  #misdatos {
    width: 100%;
  }
  #aviso {
    width: 100%;
    margin-right: 0%;
    position: relative;
    float: right;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 1px;
    margin-bottom: 20px;
  }
  #seguridad {
    width: 100%;
    float: none;
  }
  .cajadatos {
    text-align: center;
  }
  .cajaseguridad {
    text-align: center;
  }
  .familiares {
    width: 100%;
  }
  .table-responsive-vertical > .table {
    margin-bottom: 0;
    background-color: transparent;
  }
  .imagen_celda_medico {
    display: none;
  }
  .table-responsive-vertical > .table > thead,
  .table-responsive-vertical > .table > tfoot {
    display: none;
  }
  .table-responsive-vertical > .table > tbody {
    display: block;
  }
  .table-responsive-vertical > .table > tbody > tr {
    display: block;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    margin-bottom: 1.6rem;
  }
  .table-responsive-vertical > .table > tbody > tr > td {
    background-color: var(--blanco);
    display: block;
    text-align: right;
    width: 100%;
  }
  .table-responsive-vertical > .table > tbody > tr > td[data-title]:before {
    content: attr(data-title);
    float: left;
    font-size: inherit;
    font-weight: 400;
    color: #757575;
  }
  .table-responsive-vertical.shadow-z-1 {
    box-shadow: none;
  }
  .table-responsive-vertical.shadow-z-1 > .table > tbody > tr {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
  }
}
@media (min-width: 768px) {
  body {
    text-align: left;
    background: #edeff1;
    padding: 0px 0px 0px 0px;
    background-size: auto;
    margin-top: 0rem;
    margin-right: 0rem;
    margin-bottom: 0rem;
    margin-left: 0rem;
  }
  #menu {
    height: 70vh;
    margin: 9% 0 0 0;
    width: 40%;
    left: 0;
    padding: 4% 3% 1% 4%;
  }
  #menu li {
    line-height: 1rem;
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-size: 2vw;
    margin: 0 0 0 0;
  }
  .fila_filtro {
    display: grid;
  }
  .icono_cita {
    background-size: 3rem;
    height: 3rem;
    width: 3rem;
  }
  .icono_citas {
    background-size: 3rem;
    height: 3rem;
    width: 3rem;
  }
  .icono_archivo {
    background-size: 3rem;
    height: 3rem;
    width: 3rem;
  }
  .icono_buzon {
    background-size: 3rem;
    height: 3rem;
    width: 3rem;
  }
  .icono_perfil {
    background-size: 3rem;
    height: 3rem;
    width: 3rem;
  }
  .icono_configuracion {
    background-size: 3rem;
    height: 3rem;
    width: 3rem;
  }
  .listado_home {
    padding: 1% 0;
    margin: 5% auto;
    width: 70%;
  }
  .caja_home {
    background-color: var(--blanco);
    margin: 10px 13px 10px 13px;
    padding: 0rem 0rem 2rem 0rem;
    border-radius: 25px;
  }
  .caja_home:hover {
    transform: scale(1.1);
    border: 0px;
  }
  .caja_logo_img {
    height: 50%;
    width: 50%;
  }
  .caja_logo {
    height: 50%;
    width: 50%;
    margin: 7% auto;
  }
  .text-4 {
    display: initial;
  }
}
@media (min-width: 992px) {
  body {
    text-align: left;
    background: #edeff1;
    padding: 0px 0px 0px 0px;
    background-size: auto;
    margin-top: 0rem;
    margin-right: 0rem;
    margin-bottom: 0rem;
    margin-left: 0rem;
  }
  header {
    height: 80px;
    width: 100%;
  }
  .nav-up {
    top: -81px;
  }
  .nav-down {
    top: 0px;
  }
  #menu {
    height: 60vh;
    margin: 4% 0 0 0;
    width: 20%;
    padding: 2% 1% 1% 1%;
  }
  #menu li {
    line-height: 2rem;
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-size: 1.5vw;
    margin-left: 10%;
    margin-top: 2%;
  }
  .fila_filtro {
    display: flex;
  }
  .icono_cita {
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
  }
  .icono_citas {
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
  }
  .icono_archivo {
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
  }
  .icono_buzon {
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
  }
  .icono_perfil {
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
  }
  .icono_configuracion {
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
  }
  .listado_home {
    padding: 1% 0;
    margin: 2% auto;
    width: 60vw;
  }
  .caja_home {
    width: 43%;
  }
  .titulo_caja {
    font-size: 1.5rem;
  }
  .caja_logo {
    height: 60%;
    width: 60%;
    margin: 7% auto;
  }
  .caja_home {
    background-color: var(--blanco);
    margin: 10px 13px 10px 13px;
    width: 43%;
    padding: 0rem 0rem 2rem 0rem;
    border-radius: 25px;
  }
  .caja_home:hover {
    transform: scale(1.1);
    border: 0px;
  }
}
@media (min-width: 1200px) {
  body {
    text-align: left;
    background: #edeff1;
    padding: 0px 0px 0px 0px;
    background-size: auto;
    margin-top: 0rem;
    margin-right: 0rem;
    margin-bottom: 0rem;
    margin-left: 0rem;
  }
  header {
    height: 80px;
    width: 100%;
  }
  .nav-up {
    top: -81px;
  }
  #menu {
    height: 80vh;
    left: 0px;
    margin: 3% 0 0 0;
    width: 20%;
    padding: 2% 1% 1% 1%;
  }
  #menu li {
    line-height: 2rem;
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-size: 1.5vw;
    margin-left: 16%;
    margin-top: 1%;
  }
  .fila_filtro {
    display: flex;
  }
  .icono_cita {
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
  }
  .icono_citas {
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
  }
  .icono_archivo {
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
  }
  .icono_buzon {
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
  }
  .icono_perfil {
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
  }
  .icono_configuracion {
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
  }
  .listado_home {
    padding: 1% 0;
    margin: 2% auto;
    width: 40vw;
  }
  .caja_home {
    background-color: var(--blanco);
    margin: 10px 13px 10px 13px;
    width: 36%;
    padding: 0rem 0rem 2rem 0rem;
    border-radius: 25px;
  }
  .caja_home:hover {
    transform: scale(1.1);
    border: 0px;
  }
  .titulo_caja {
    font-size: 1.5rem;
  }
  .caja_logo {
    height: 60%;
    width: 60%;
    margin: 10% auto;
  }
  .text-2,
  .num-2 {
    flex-direction: column;
  }
  .text-2 div,
  .num-2 div {
    flex-grow: 0;
    -webkit-flex-grow: 0;
    width: 100%;
  }
  .text-2 {
    width: 180px;
  }
  .num-2 {
    width: 80px;
  }
}
@media (min-width: 1400px) {
  body {
    text-align: left;
    background: #edeff1;
    padding: 0px 0px 0px 0px;
    background-size: auto;
    margin-top: 0rem;
    margin-right: 0rem;
    margin-bottom: 0rem;
    margin-left: 0rem;
  }
  header {
    height: 80px;
    width: 100%;
  }
  .nav-up {
    top: -81px;
  }
  #menu {
    left: 0px;
    margin: 2.5% 0 0 0;
    height: 80vh;
    width: 15%;
    padding: 2% 1% 1% 2%;
  }
  #menu li {
    line-height: 2rem;
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-size: 1vw;
    margin-left: 1%;
    margin-top: 2%;
  }
  .fila_filtro {
    display: flex;
  }
  .icono_cita {
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
  }
  .icono_citas {
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
  }
  .icono_archivo {
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
  }
  .icono_buzon {
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
  }
  .icono_perfil {
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
  }
  .icono_configuracion {
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
  }
  .listado_home {
    padding: 1% 0;
    margin: 2% auto;
    width: 30vw;
  }
  .caja_home {
    width: 30%;
    margin: 10px 10px 10px 10px;
    padding: 0rem 1.1rem 2rem 1.1rem;
    border-radius: 25px;
  }
  .titulo_caja {
    font-size: 1.1rem;
    margin: 1rem 0 0 0rem;
    text-align: left;
  }
  .caja_logo {
    height: 80%;
    width: 80%;
    margin: 8% auto;
  }
}
/*CAJA HOME*/
/* BOTONES */
.centrar_svg {
  margin: auto;
  display: block;
}

/*FIN CAJAHOME*/
.caja_home_basico {
  --caja_color_fondo: var(--blanco);
  --caja_color_fondo_claro: var(--blanco);
  --caja_color_texto_hover: var(--colorprincipal);
}

.medico_info__content a {
  color: white;
}

.caja_home_caja {
  width: 220px;
  height: 220px;
  background: #fff;
  /*border-top-right-radius: 10px;*/
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease-out;
  text-decoration: none;
}

.caja_home_caja:hover {
  transform: translateY(-5px) scale(1.005) translateZ(0);
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.11), 0 24px 46px var(--caja_color_sombra);
}

.caja_home_caja:hover .caja_home_efecto {
  transform: scale(10) translateZ(0);
}

.caja_home_caja:hover .caja_home_circulo {
  border-color: var(--caja_color_fondo_claro);
  background: var(--caja_color_fondo);
}

.caja_home_caja:hover .caja_home_circulo:after {
  background: var(--caja_color_fondo_claro);
}

.caja_home_caja:hover h3 {
  color: var(--caja_color_texto_hover);
}

.caja_home_caja:active {
  transform: scale(1) translateZ(0);
  box-shadow: 0 15px 24px rgba(0, 0, 0, 0.11), 0 15px 24px var(--caja_color_sombra);
}

.caja_home_caja h3 {
  font-family: "bronkoh-regular", Sans-serif;
  color: var(--verdeoscuro);
  top: -5%;
  z-index: 1000;
  transition: color 0.6s ease-out;
  float: left;
  position: absolute;
  left: 5%;
}

.caja_home_nuevo {
  margin: 10px 10px;
  position: relative;
  padding: 0rem 0rem 0rem 0rem;
  border-radius: 25px;
}
@media (max-width: 576px) {
  .caja_home_nuevo {
    width: 42% !important;
    margin: 2%;
  }
}

.caja_home_nuevo:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.caja_cuadrada_hijo {
  position: absolute;
  width: 100%;
  height: 100%;
}

.caja_home_circulo {
  width: 4em;
  height: 4em;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-out;
}

.caja_home_circulo:after {
  content: "";
  width: 4em;
  height: 4em;
  display: block;
  position: absolute;
  border-radius: 50%;
  /* top: 7px;
        left: 7px;*/
  transition: opacity 0.3s ease-out;
}

.caja_home_circulo .caja_logo_img {
  z-index: 10000;
  transform: translateZ(0);
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
}

.caja_home_efecto {
  width: 5em;
  position: absolute;
  height: 5em;
  border-radius: 50%;
  background: var(--caja_color_fondo);
  /*top: 50px;
    left: 50px;*/
  z-index: 0;
  transition: transform 0.6s ease-out;
}

.listado_home {
  padding: 10px 0;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .listado_home {
    padding: 1% 0;
    width: 100%;
    margin: 0;
  }
}

.caja_home {
  background-color: var(--blanco);
  margin: 10px 13px 10px 13px;
  width: 30%;
  padding: 1.5rem 1.1rem 2rem 1.5rem;
  border-radius: 25px;
}
.caja_home:hover {
  transform: scale(1.1);
  border: 0px;
}
@media (max-width: 576px) {
  .caja_home:hover {
    transform: scale(1.1);
    border: 0px;
  }
}

.caja_logo {
  height: 100px;
  width: 100px;
  margin: 10% auto;
}
@media (max-width: 576px) {
  .caja_logo {
    height: 90px;
    width: 100px;
    margin: 1% auto;
  }
}

.caja_logo_img {
  height: 70px;
  width: 70px;
}
@media (max-width: 576px) {
  .caja_logo_img {
    height: 50px;
    width: 50px;
  }
}

.titulo_caja {
  font-family: "bronkoh-regular", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--colorprincipal);
  margin: 1rem 0 0 0;
  text-align: left;
}
@media (max-width: 576px) {
  .titulo_caja {
    font-family: "bronkoh-regular", Sans-serif;
    font-size: 1em;
    font-weight: 600;
    color: var(--colorprincipal);
    margin: 1rem 1rem 0 1rem;
    text-align: left;
  }
}

/* titulo pagina */
.titulopagina {
  padding: 5px 0px;
}

/*fin titulo pagina*/
/*Tarjeta Cita Cliente*/
.tarjetaclientemiochoa {
  border-style: dashed;
  border-color: var(--verdeoscuro);
  border-width: medium;
  display: grid;
  justify-content: space-between;
  align-content: center;
  gap: 4px;
  grid-auto-flow: column;
  align-items: center;
  justify-items: start;
}

.tarjetaclientemiochoa .dias_disponibles {
  background-color: var(--blanco);
  border: none;
  border: 0px !important;
}

.contenido_centrado_miochoa {
  width: 60%;
  display: inline-table;
}

.tarjeta_citamiochoa {
  display: inline-table;
  width: 70%;
  border: 0 !important;
  margin: 0 15%;
}
@media (max-width: 576px) {
  .tarjeta_citamiochoa {
    width: 100%;
    margin: 0 0;
  }
}
@media (min-width: 1024px) {
  .tarjeta_citamiochoa {
    display: inline-table;
    width: 70%;
    border: 0 !important;
    margin: 0 15%;
  }
}

.tarjeta_citamiochoa tr {
  display: flex;
  border: 0 !important;
}

a [class*=medico_info__conten] {
  color: white;
}

.tarjeta_citamiochoa .medico_info {
  color: var(--colorprincipal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  position: relative;
  border: 0 !important;
  flex-direction: column;
}
@media (max-width: 576px) {
  .tarjeta_citamiochoa .medico_info {
    padding: 0px 0px;
  }
}

.tarjeta_citamiochoa .medico_info__content_grande {
  font-family: "bronkoh-semibold", Sans-serif;
  font-weight: bolder;
  font-size: xx-large;
}
@media (max-width: 576px) {
  .tarjeta_citamiochoa .medico_info__content_grande {
    font-size: 1.9em;
  }
}

.tarjeta_citamiochoa .medico_info__content_normal {
  font-size: 1em;
}

.tarjeta_citamiochoa .fila_disponibilidad_dia {
  color: #a8a8a8;
  border: 1px solid #a8a8a8 !important;
  width: 70%;
}

.tarjeta_citamiochoa .fecha_cita_doctor {
  padding: 0px;
  width: 30%;
}

.tarjeta_citamiochoa .medico_info-desktop {
  margin: 0px;
  background-color: var(--colorprincipal);
  height: 100%;
  width: 100%;
  justify-content: flex-start;
}
@media (max-width: 576px) {
  .tarjeta_citamiochoa .medico_info-desktop {
    justify-content: center;
  }
}

.tarjeta_citamiochoa table tr {
  border-bottom: 0px;
  margin-bottom: 0.625em;
}

.tarjeta_citamiochoa .fecha_cita {
  display: flex;
  flex-wrap: wrap;
  padding: 0.35rem 0.35rem;
  line-height: normal;
  background-color: white;
  border: 1px solid #a8a8a8 !important;
}

.tarjeta_citamiochoa .celda_movil_acciones {
  align-self: auto;
}
@media (min-width: 768px) {
  .tarjeta_citamiochoa .celda_movil_acciones {
    position: absolute;
    text-align: right;
    top: 20%;
    right: 0;
  }
}
@media (max-width: 576px) {
  .tarjeta_citamiochoa .celda_movil_acciones {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .tarjeta_citamiochoa .celda_movil_acciones {
    flex-direction: row;
  }
}

/*FIN TARJETA CITA CLIENTE*/
/*TARJETA CLIENTE*/
.nombre_cliente {
  font-weight: 600;
  font-size: 1rem;
}

.flecha_abajo {
  border: solid white;
  border-width: 0 3px 3px 0;
  margin: 2px 0 0px 8px;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
}
@media (max-width: 576px) {
  .flecha_abajo {
    border-width: 0 2px 2px 0;
    margin: 2px 0 10px 3px;
  }
}

.desplegable_flecha {
  background-color: var(--verdeoscuro);
  border-radius: 50%;
  height: 25px;
  width: 25px;
}
@media (max-width: 576px) {
  .desplegable_flecha {
    height: 1rem;
    width: 1rem;
  }
}

.posicion_cliente {
  margin-top: 20px;
  margin-right: 15%;
}
@media (max-width: 768px) {
  .posicion_cliente {
    flex-direction: row;
    justify-content: flex-start;
    width: 85%;
    margin-left: 15%;
    margin-right: 0px !important;
    margin-top: 60px;
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .posicion_cliente {
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    margin-left: 0px !important;
    margin-top: 60px;
    gap: 10px;
  }
}

/*FIN TARJETA CLIENTE*/
@media (max-width: 576px) {
  .contenido-principal {
    max-width: 100%;
    margin: 0 1rem;
  }
}
.contenido-principal .cita_migas_de_pan .boton {
  min-width: auto !important;
}

/* TARJETA MIOCHOA */
.tabla_miochoa {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  color: #575e62;
  font-family: sans-serif;
  box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.15);
}

.tabla_miochoa thead tr {
  background-color: white;
  color: #575e62;
  text-align: left;
}

.tabla_miochoa th,
.tabla_miochoa td {
  padding: 12px 15px;
}
@media (max-width: 576px) {
  .tabla_miochoa th,
  .tabla_miochoa td {
    font-size: 1rem;
  }
}

.tabla_miochoa tr {
  border: 0px !important;
}

.tabla_miochoa tbody tr:last-of-type {
  /*nada por ahora*/
}

.tabla_miochoa tbody tr.celda_color {
  font-weight: bold;
  color: #575e62;
}

@media (max-width: 576px) {
  /* Force table to not be like tables anymore */
  .tabla_miochoa table, .tabla_miochoa thead, .tabla_miochoa tbody, .tabla_miochoa th, .tabla_miochoa td, .tabla_miochoa tr {
    display: block;
  }
  .tabla_miochoa td {
    text-align: right;
  }
  /* Hide table headers (but not display: none;, for accessibility) */
  .tabla_miochoa thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .tabla_miochoa tr {
    margin: 0 0 1rem 0;
    /*nuevo diseño 16/05/2022*/
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
  }
  .tabla_miochoa tr td:nth-child(odd) {
    width: 50%;
    margin: 0 0;
    text-align: left;
  }
  .tabla_miochoa tr td:nth-child(even) {
    width: 50%;
    margin: 0 0;
    text-align: right;
  }
  .tabla_miochoa td:before {
    top: 0;
    left: 6px;
    width: 25%;
    margin-right: 5%;
    text-align: left;
    padding-right: 10px;
    white-space: nowrap;
  }
}
.tabla_miochoa .pulso_circular {
  margin: 0 0 !important;
}

@media (max-width: 576px) {
  .tabla_miochoa tr td:nth-of-type(3), .tabla_miochoa tr td:nth-of-type(4), .tabla_miochoa tr td:nth-of-type(5), .tabla_miochoa td:nth-of-type(6) {
    display: none;
  }
  .tabla_miochoa tr.shown td:nth-of-type(3), .tabla_miochoa tr.shown td:nth-of-type(4), .tabla_miochoa tr.shown td:nth-of-type(5), .tabla_miochoa tr.shown td:nth-of-type(6) {
    display: block;
  }
  p.accordion:after {
    content: "Más Detalles  +";
    color: var(--azul);
    font-weight: 900;
    float: right;
    margin-left: 5px;
  }
  p.active:after {
    content: "Menos Detalles  −";
  }
}
/*FIN TARJETA MI DOSIER*/
.bodyMiOchoa .contenedor {
  padding-top: 5%;
  padding-right: 5%;
  padding-left: 5%;
  text-align: left;
  padding-bottom: 24px;
}
@media (max-width: 576px) {
  .bodyMiOchoa .contenedor {
    padding-right: 0px;
    padding-left: 0px;
  }
}

.bodyMiOchoa .datos_usuario {
  line-height: 2;
}

.notification--num {
  position: absolute;
  top: -10%;
  left: 50%;
  font-size: 2.25rem;
  border-radius: 50%;
  width: 1.25em;
  height: 1.25em;
  background-color: #ff4c13;
  border: 4px solid #ff4c13;
  color: #ffffff;
  text-align: center;
  animation: notification 2.2s linear;
}

/* tarjeta notificacion */
.tarjeta_notificacionmiochoa {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 1% 0;
}

.tarjeta_notificacionmiochoa:nth-child(odd) {
  background-color: #f2fbfc;
}

.tarjeta_notificacionmiochoa:nth-child(even) {
  background-color: #fff;
  padding: 0 0;
}

.tarjeta_notificacionmiochoa .columna_fecha {
  width: 20%;
  padding: 0 24px 0 15px;
  display: flex;
  align-items: center;
}

.tarjeta_notificacionmiochoa .columna_titulo {
  width: 15%;
  padding: 0 24px 0 15px;
  display: flex;
  align-items: center;
}

.columna_texto {
  padding: 10px;
  padding: 0 24px 0 15px;
  width: 65%;
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  .columna_texto {
    width: 100%;
    text-align: justify;
    padding: 0 2%;
  }
}

.notificacion_sin_ver h2 {
  color: #134256 !important;
  font-weight: 900 !important;
  animation: aviso_notificacion 2s 3;
}

.notificacion_sin_ver .contenido_notificacion {
  color: #134256 !important;
  font-weight: 900 !important;
  animation: aviso_notificacion 2s 3;
}

@keyframes aviso_notificacion {
  50% {
    opacity: 0;
  }
}
.contenido_notificacion {
  color: #575e62;
  font-size: 15px;
  font-weight: 500;
  font-family: "bronkoh-light", Sans-serif;
  font-style: normal;
  font-size: 1rem;
  vertical-align: middle;
}

.mas_texto {
  display: none;
}

.tarjeta_notificacionmiochoa h2 {
  color: #575e62;
  font-family: "bronkoh-light", Sans-serif;
  font-style: normal;
  font-size: 12pt;
  font-weight: 600;
  vertical-align: middle;
  text-align: justify;
}
@media (max-width: 576px) {
  .tarjeta_notificacionmiochoa h2 {
    text-align: left;
    font-size: 1.2rem;
  }
}

.toggle-text-content span {
  display: none;
}

.contenido_notificacion a {
  outline: none;
  text-decoration: none;
  padding: 2px 1px 0;
  color: #00AFBC;
}

.contenido_notificacion a:link {
  color: #00AFBC;
  font-weight: bold;
}

.contenido_notificacion a:visited {
  color: #134256;
}

.contenido_notificacion a:focus {
  background: rgba(19, 66, 86, 0.0392156863);
}

.contenido_notificacion a:hover {
  color: #134256;
}

.contenido_notificacion a:active {
  color: #134256;
}

@media (max-width: 768px) {
  .tarjeta_notificacionmiochoa {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .columna_fecha {
    width: calc(60% - 24px) !important;
    border-left: none !important;
    padding: 0 0 !important;
    margin: 1rem 2%;
  }
  .columna_titulo {
    width: calc(40% - 24px) !important;
    border-left: none !important;
    padding: 0 0 !important;
    margin-bottom: 1rem 2%;
  }
}
/* fin tarjeta notificacion */
#ctl00_MainContent_Panel1 {
  width: 100%;
  display: inline-table;
}

.contenedor_tabla_fija {
  display: inline-table;
  border: 0 !important;
  width: 70%;
  width: 100%;
  margin: 0 auto;
}

.availability_hours {
  margin-top: 3%;
  text-align: left;
  margin-left: 15%;
}
@media (max-width: 576px) {
  .availability_hours {
    margin-left: 0px;
  }
}

table thead {
  border-bottom: 0px !important;
  background-color: white;
}

.dias_disponibles-doctor-col {
  width: 30%;
}

#tabla_disponibilidad .dias_disponibles-doctor-col {
  border: 0px;
  border-right: 1px solid #a8a8a8 !important;
}

.bodyMiOchoa .caja_avisos {
  width: 70%;
  margin-left: 15%;
  box-shadow: none !important;
}
@media (max-width: 576px) {
  .bodyMiOchoa .caja_avisos {
    width: 100%;
    margin-left: 0px;
  }
}

.bodyMiOchoa .cita_migas_de_pan {
  margin-left: 15%;
}
@media (max-width: 768px) {
  .bodyMiOchoa .cita_migas_de_pan {
    margin-left: 0px;
    margin-top: 40px;
  }
}
@media (max-width: 576px) {
  .bodyMiOchoa .cita_migas_de_pan {
    margin-left: 0px;
    margin-top: 40px;
  }
}

.bodyMiOchoa .boton_disponible {
  font-weight: 600;
}

.fila_disponibilidades .boton {
  padding: 0 !important;
  border-radius: 3px !important;
  border-color: transparent !important;
  border-style: solid !important;
  font-size: 15px;
  text-align: center !important;
}
@media (max-width: 480px) {
  .fila_disponibilidades .boton {
    font-size: 0.8rem !important;
  }
}
@media (max-width: 576px) {
  .fila_disponibilidades .boton {
    font-size: 1rem;
    margin: 0.5rem 0;
  }
}

.table-hover > tbody > tr:hover {
  background-color: white;
}

table tr {
  border-bottom: 0px;
}

.medico_info__content-name-text {
  font-family: "bronkoh-semibold", Sans-serif !important;
  font-weight: 500;
}

table thead .tt-text-left {
  font-size: 0.8em;
}

.dias_disponibles {
  background-color: var(--blanco);
  border: none;
}

.fixed-table-body {
  overflow-x: unset;
  overflow-y: unset;
}

tbody tr {
  border: 1px solid #a8a8a8;
}

.fila_formulario_citas {
  width: 70%;
  margin-right: 15%;
  margin-left: 15%;
  display: inline-block;
}
@media (max-width: 576px) {
  .fila_formulario_citas {
    width: 100%;
    margin: 0 auto;
  }
}

.fila_disponibilidades.alineado_arriba span div {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.boton.boton_disponible {
  width: 3vw !important;
}
@media (max-width: 576px) {
  .boton.boton_disponible {
    width: 10vw !important;
  }
}

.bodyMiOchoa .dias_disponibles.tarjeta_citamiochoa + span ~ div {
  margin: 0 15%;
  width: 70%;
}
@media (max-width: 576px) {
  .bodyMiOchoa .dias_disponibles.tarjeta_citamiochoa + span ~ div {
    margin: 0 0;
    width: 100%;
  }
}

/*CONTACTO*/
.bloque_contacto {
  display: flex;
  position: relative;
  width: 100%;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 10px 20px 0px 0px;
  margin: 0px 0px 0px 0px;
}
@media (max-width: 576px) {
  .bloque_contacto {
    padding: 0px;
    margin: 0px;
    margin-bottom: 5%;
  }
}

.contenedor_contacto {
  display: flex;
  position: relative;
  width: 100%;
  margin: 0px 0px 0px 0px;
  padding: 10px 20px 0px 30px;
}
@media (max-width: 576px) {
  .contenedor_contacto {
    padding: 0px;
    margin: 0px;
  }
}

.bloque_parking {
  margin: 50px 0px 0px 0px;
  padding: 0px 20px 0px 30px;
  display: flex;
  width: 100%;
  position: relative;
  align-content: flex-start;
}

.subbloque_parking {
  width: 100%;
  position: relative;
  text-align: left;
  margin: 0px 0px 0px 0px;
}

.listado_parking {
  margin-right: -11.5px;
  margin-left: -11.5px;
  padding: 0;
  justify-content: flex-start;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .listado_parking {
    margin-left: 3%;
  }
}

.listado_parking li::before {
  content: none !important;
}

.elemento_parking {
  margin-right: 11.5px;
  margin-left: 11.5px;
  margin-top: 30px;
  font-size: 15px;
  line-height: 2rem;
  justify-content: flex-start;
  text-align: left;
  flex-shrink: 0;
}

.imagen_responsive {
  vertical-align: middle;
  display: inline-block;
  height: auto;
  max-width: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.subtitulos_contacto {
  font-size: 24px;
  color: var(--colorsecundario);
}

div.dataTables_length label {
  width: 25%;
}

.texto_localizacion {
  width: 100%;
  text-align: left;
  color: var(--colorprincipal);
  font-size: 18px;
  margin: 10px 0px;
  position: relative;
  display: block;
}

.elementor-icon-list-text {
  margin-left: 20px;
  margin-right: 20px;
}

.marker {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: bounce;
  background-color: var(--colorsecundario);
  border-radius: 50% 50% 50% 0;
  height: 30px;
  /*left: 50%;*/
  margin: -20px 0 0 -20px;
  position: absolute;
  /*top: 50%;*/
  transform: rotate(-45deg);
  width: 30px;
  z-index: 2;
  text-align: initial;
}

.marker::after {
  background-color: var(--blanco);
  border-radius: 50%;
  content: "";
  height: 14px;
  margin: 8px 0 0 8px;
  position: absolute;
  width: 14px;
}

.location {
  background-color: var(--colorprincipal);
  border-radius: 50%;
  height: 14px;
  /*left: 50%;*/
  margin: 11px 0px 0px -12px;
  position: absolute;
  /*top: 50%;*/
  transform: rotateX(55deg);
  width: 14px;
  z-index: 1;
  text-align: initial;
}

.location::after {
  animation: pulso 1s ease-out;
  animation-delay: 1.1s;
  animation-iteration-count: infinite;
  border-radius: 50%;
  box-shadow: 0 0 1px 2px rgba(14, 59, 29, 0.5);
  content: "";
  height: 40px;
  margin: -13px 0 0 -13px;
  opacity: 0;
  position: absolute;
  width: 40px;
}

#caja_icono div:nth-child(2) h2.icono_titulo {
  flex-direction: row-reverse !important;
}

#caja_icono2 div:nth-child(2) h2.icono_titulo {
  flex-direction: row-reverse !important;
}

.caja_icono {
  display: flex;
  align-items: center;
  justify-content: start;
  -webkit-box-align: center;
  flex-direction: row;
  /* width: 100%; CAMBIO_06_10 */
}

.disenio_icono {
  fill: var(--colorsecundario);
  color: var(--colorsecundario);
  border-color: var(--colorsecundario);
  margin-right: 30px;
  line-height: 1;
  font-size: 50px;
  text-align: center;
  float: left;
  width: 1em;
  height: 1em;
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
}

.icono_titulo {
  color: var(--colorprincipal);
  font-weight: normal;
  margin-bottom: 0;
  margin-top: 0;
  font-family: "bronkoh-light", Sans-serif !important;
  text-align: left;
}

.icono_subtitulo {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--colorsecundario);
  font-family: "bronkoh-light", Sans-serif !important;
}

.iconoold_ {
  margin-right: 1%;
  line-height: 1;
  font-size: 50px;
  text-align: center;
  float: left;
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  background-repeat: no-repeat;
}

.icono_ {
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
}

.icono_pequeno {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 15px;
  display: inline-flex;
  vertical-align: text-bottom;
}

.icono_titulo span {
  margin-left: 2rem;
}
@media (max-width: 576px) {
  .icono_titulo span {
    margin-left: 1rem;
  }
}

.icono_titulo {
  display: flex;
  flex-direction: column;
}

.iconoold_ {
  margin-right: 0.1rem;
  float: left;
  margin-right: 0.1rem;
}

.iconoold_ div[class*=ochoa-a8] {
  /*Pendiente*/
}

.bodyMiOchoa .texto_izquierda {
  margin-top: 3%;
  margin-left: 5%;
}

[id$=_lblTitulo] {
  font-weight: 600;
  margin-right: 0.5rem;
}

@media (max-width: 576px) {
  #ctl00_MainContent_MiPerfil1_btnIdentificate .identificate {
    width: 220px;
  }
}

.bodyMiOchoa .cajaseguridad.inline #Div1.fila_inline {
  margin: 0 5px;
}

input[type=text], input[type=password], input[type=email], input[type=tel], input[type=search], input[type=url] {
  color: #A8A8A8 !important;
  padding: 8px 10px 8px 20px !important;
  height: 3.25rem !important;
}

textarea {
  color: #A8A8A8 !important;
  padding: 8px 10px 8px 20px !important;
}

.contenedor_formulario tr {
  border: 0px;
}

.changePassword p {
  margin: 0 0;
}

@media (max-width: 576px) {
  .login_formulario1 {
    width: 100%;
  }
  .login_formulario1 label, .login_formulario1 legend {
    text-align: left;
  }
}

#Div2.contenedor_formulario {
  margin-top: 2rem;
}
#Div2.contenedor_formulario p {
  margin: 0 0 0.5rem 0;
  text-align: left;
  color: var(--colorprincipal);
}

@keyframes logo-fade {
  to {
    fill-opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  40% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomInLast {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  40% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes expand {
  0% {
    height: 0;
  }
  40% {
    height: 0;
  }
  60% {
    height: 80%;
  }
}
@keyframes test {
  0% {
    transform: scale(0);
    left: -3%;
  }
  60% {
    left: -1%;
  }
  100% {
    left: 0%;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
    padding-left: 30%;
  }
  65% {
    opacity: 0;
    padding-left: 30%;
  }
  100% {
    opacity: 1;
    padding-left: 40%;
  }
}
@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #0087b1;
  }
}
@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #003843;
  }
}
@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #003843;
  }
}
@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #003843;
  }
}
@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #003843;
  }
}
@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #003843;
  }
}
@keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #003843;
  }
}
@keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #003843;
  }
}
/*FIN LOGO ANIMADO*/
@keyframes bell {
  0%, 25%, 75%, 100% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(10deg);
  }
  45% {
    transform: rotate(-10deg);
  }
  55% {
    transform: rotate(8deg);
  }
  60% {
    transform: rotate(-8deg);
  }
}
@keyframes bellClapper {
  0%, 25%, 75%, 100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(-0.15em);
  }
  45% {
    transform: translateX(0.15em);
  }
  55% {
    transform: translateX(-0.1em);
  }
  60% {
    transform: translateX(0.1em);
  }
}
@keyframes notification {
  0%, 25%, 75%, 100% {
    opacity: 1;
  }
  30%, 70% {
    opacity: 0;
  }
}/*# sourceMappingURL=estilos_Miochoa.css.map */