/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
/*@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');*/
:root {
  --header-height: 3rem;
  /* =========COLOR============ */
  --nuevo-tramite: #155db1;
  --enpruebas: yellow;
  --observaciones: orange;
  --falla: red;
  --emitido: green;
  --azul-uno: #001b48;
  --azul-dos: #002447;
  --azul-tres: #155db1;
  --azul-cuatro: #2196f3;
  --azul-cinco: #81c9fa;
  --rojo-uno: #cc0001;
  --rojo-dos: #e60000;
  --rojo-tres: #ff1a1a;
  --rojo-cuatro: #ff3334;
  --rojo-cinco: #ff4d4d;
  --grey-one: rgb(29, 29, 29);
  --grey-two: #222;
  --grey-three: #808080;
  --grey-four: #b3b3b3;
  --grey-five: #e6e6e6;
  --grey-six: #f3f3f3be;
  --grey-seven: #fcfcfc;
  --white: white;
  --wrapper-background: #fff111;
  --black: #111111;
  --botton-color: #333222;
  --target-color: #ebf6ff;
  /*========== Fuente y tipografia ==========*/
  --body-font: "Poppins", sans-serif;
  --big-font-size: 2rem;
  --h1-font-size: 50px;
  --h2-font-size: 42px;
  --h3-font-size: 30px;
  --h4-font-size: 20px;
  --h5-font-size: 18px;
  --normal-font-size: 17px;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== Margenes Bottom ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
}

.inactive {
  display: none;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  position: relative;
}

body,
button,
input,
textarea {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

.body {
  background: var(--grey-six);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

ul {
  list-style: none;
}

p {
  font-size: var(--normal-font-size);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

main {
  margin-left: 287px;
  padding: 0px 10px;
}

.main__wrapper {
  margin-left: 0px;
  padding: 0px 10px;
}

@media screen and (max-width: 576px) {
  .section__welcome--container {
    width: 90%;
  }
}
.section {
  padding: 4rem 0 2rem;
}

/* ESTUS INFORMES */
.section-one {
  width: 50%;
  background-color: var(--grey-seven);
  border: 1px solid var(--grey-four);
  margin: 80px auto;
  border-radius: 5px 5px 0 0;
  font-size: 16px;
}

.tittle-table {
  border-radius: 6px 6px 0 0;
  background-color: var(--grey-seven);
  color: var(--azul-cuatro);
  border: 1px solid var(--grey-three);
}

.tittle-table h4 {
  text-align: center;
  padding: 10px;
}

.container-valid-info table {
  width: 100%;
}

.container-valid-info table tr {
  display: grid;
  width: 100%;
  height: 60px;
  grid-template-columns: 1fr 3fr;
  /* border: 1px solid var(--grey-six); */
  background-color: var(--grey-seven);
  align-items: center;
  justify-items: center;
}

.container-valid-info td {
  width: 80%;
}

.container-valid-info .estatus-vigente {
  width: 15%;
  padding: 6px;
  border-radius: 8px;
  background-color: rgb(19, 170, 19);
  color: white;
  text-align: center;
}

.container-valid-info .estatus-vencido {
  width: 30%;
  padding: 6px;
  border-radius: 8px;
  background-color: rgb(158, 0, 0);
  color: white;
  text-align: center;
}

.container-valid-info table tr td .estatus-falta-pago {
  width: 80%;
  background-color: rgb(128, 0, 0);
  color: white;
  padding: 5px;
  border-radius: 5px;
}

@media only screen and (max-width: 820px) {
  .section-one {
    width: 91%;
    margin: 20px auto;
    padding: 5px;
  }
  .container-valid-info table {
    width: 100%;
  }
  .container-valid-info table tr {
    grid-template-columns: 1fr 2fr;
    width: 100%;
    height: 45px;
    margin-top: 15px;
    background-color: var(--grey-six);
    align-items: center;
    justify-items: center;
  }
  .container-valid-info table tr td {
    width: 100%;
  }
  .container-valid-info table tr td .estatus-vigente {
    width: 50%;
    background-color: green;
  }
  .container-valid-info table tr td .estatus-vencido {
    width: 80%;
    background-color: rgb(128, 0, 0);
  }
  .container-valid-info table tr td .estatus-falta-pago {
    width: 80%;
    background-color: rgb(128, 0, 0);
  }
}
/* >>>>>>>>>>>>>>FOOTER */
footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* footer-contact */
.footer-contact {
  background: var(--grey-two);
}

.container-footer {
  width: 80%;
  margin: 0 auto;
  display: flex;
}

.container-footer .google-map {
  height: 300px;
  float: right;
  margin: auto 0;
  width: 50%;
}

.container-footer .google-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 2px;
}

.contact-form {
  width: 50%;
  height: 340px;
}

.contact-form h3 {
  text-align: center;
}

.direction {
  text-align: center;
  color: var(--white);
  padding: 10px;
  margin: 10px;
}

.direction-text {
  margin-top: 50px;
}

@media only screen and (max-width: 992px) {
  .container-footer {
    display: flex;
    width: 100%;
    flex-direction: column;
    margin: 0 auto;
  }
  .container-footer .google-map {
    width: 90%;
    margin: 0 auto;
  }
  .contact-form {
    width: 100%;
    height: auto;
  }
}
/* footer */
.footer-container {
  padding: 20px;
  background: var(--grey-one);
  color: var(--white);
  text-align: center;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>INFORME TRAMITE */
.informe__tramite {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 90px;
}

.sect__informe {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(247, 247, 247);
  box-shadow: 0px 10px 15px 4px rgba(0, 0, 0, 0.1);
  width: 28%;
}

.informe__costilla {
  width: 9%;
}

.informe__estatus {
  width: 90%;
  height: auto;
  border-radius: 8px;
  padding: 5px;
}

.informe__estatus .informe__tittle {
  text-align: center;
}

.informe__main table {
  width: 100%;
}

.informe__main table tr td {
  padding: 6px;
  border: 1px solid rgb(233, 233, 233);
  margin: 6px;
}

.informe__estatus .info {
  font-size: 14px;
  margin-top: 15px;
  text-align: center;
  color: rgb(255, 255, 255);
  background-color: rgb(5, 77, 119);
  padding: 5px;
}

.informe__footer {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  text-align: center;
}

.informe__footer a {
  background-color: #00aa2b;
  color: white;
  padding: 6px;
  border-radius: 8px;
  font-size: 18px;
}

.informe__footer a:hover {
  color: white;
  text-decoration: none;
}

.informe__footer__incidencia {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: 20px;
  text-align: center;
}

.informe__footer__incidencia .info__incidencia {
  font-size: 14px;
  margin: 15px 0;
  text-align: center;
  color: rgb(255, 255, 255);
  background-color: rgb(219, 11, 11);
  padding: 5px;
}

.informe__footer__incidencia a {
  background-color: #095bad;
  color: white;
  padding: 6px;
  border-radius: 8px;
  font-size: 18px;
}

.informe__footer__incidencia .doc__inci {
  border: 1px solid rgb(240, 112, 112);
  background-color: white;
  color: var(--azul-cuatro);
  padding: 6px;
  border-radius: 8px;
  font-size: 18px;
}

.informe__footer__incidencia .doc__inci:hover {
  color: #001b48;
  text-decoration: none;
}

.informe__footer__incidencia a:hover {
  color: white;
  text-decoration: none;
}

/* LINE TIME */
.linetime {
  display: flex;
  margin: 45px 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.linetime .linestatus__name {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  width: 70%;
}

.linetime .linestatus__name .rule {
  width: 8%;
  text-align: center;
}

.linestatus__name .rule .rule-estatus-activo {
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  background-color: rgb(5, 112, 252);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 8px;
}

.linestatus__name .rule .rule-estatus-desactivo {
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgb(5, 112, 252);
  padding: 8px;
  background-color: white;
}

.linestatus__name .rule .rule-estatus-warning {
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  background-color: rgb(252, 166, 5);
  border: 2px solid black;
  color: black;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 8px;
}

.linestatus__name .rule .rule-estatus-warning::after {
  position: absolute;
  content: "";
  height: 3px;
  width: 180px;
  background: rgb(5, 112, 252);
  z-index: -1;
  margin-top: -15px;
}

.linestatus__name .rule .rule-estatus-activo-hallazgo {
  margin: 0 auto;
  display: inline-block;
  background-color: #ee0303;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.linestatus__name .rule .rule-estatus-desactivo-hallazgo {
  margin: 0 auto;
  display: inline-block;
  background-color: #ee0303;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.linestatus__name .rule .rule-estatus-activo-publicado {
  margin: 0 auto;
  display: inline-block;
  background-color: #08aa02;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.linestatus__name .rule .rule-estatus-desactivo-publicado {
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgb(5, 112, 252);
  padding: 8px;
  background-color: white;
}

.linestatus__name .rule .rule-estatus-activo::after {
  position: absolute;
  content: "";
  height: 3px;
  width: 135px;
  background: rgb(5, 112, 252);
  z-index: -1;
  margin-top: -12px;
}

.linestatus__name .rule .rule-estatus-activo-publicado::after {
  position: absolute;
  content: "";
  height: 5px;
  width: 60px;
  background: rgb(255, 255, 255);
  z-index: -1;
  margin-top: -15px;
}

.linestatus__name .rule .rule-estatus-desactivo::after {
  position: absolute;
  content: "";
  height: 3px;
  width: 135px;
  background: rgb(5, 112, 252);
  z-index: -1;
  margin-top: -15px;
}

.linestatus__name .rule .rule-estatus-desactivo-hallazgo::after {
  position: absolute;
  content: "";
  height: 3px;
  width: 130px;
  background: rgb(5, 112, 252);
  z-index: -1;
  margin-top: -15px;
}

.linestatus__name .rule .rule-estatus-activo-hallazgo::after {
  position: absolute;
  content: "";
  height: 3px;
  width: 130px;
  background: rgb(5, 112, 252);
  z-index: -1;
  margin-top: -12px;
}

.linetime .linestatus__name .rule .rule-desactivo {
  border: 1px solid rgb(5, 112, 252);
  padding: 5px;
  background-color: white;
}

.linetime .linestatus__name .rule .rule-activo {
  background-color: rgb(5, 112, 252);
  color: white;
  padding: 6px;
}

.linetime .linestatus__name .rule .rule-warning {
  background-color: orange;
  padding: 6px;
  border: 2px solid #000;
}

.linetime .linestatus__name .rule .rule-activo-hallazgo {
  background-color: #e40404;
  color: white;
  padding: 6px;
}

.linetime .linestatus__name .rule .rule-activo-publicado {
  background-color: #08aa02;
  color: white;
  padding: 6px;
}

.linetime .linestatus__name .rule p {
  font-size: 17px;
}

.linetime .linestatus__info {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  margin: 20px;
  background: rgb(241, 241, 241);
  height: 120px;
  border-radius: 15px;
  border: 2px solid orange;
  padding: 25px;
  text-align: center;
}

.linetime .linestatus__info .info__pruebas button {
  margin-top: 20px;
  border: 1px solid rgb(146, 146, 146);
}

.linetime .linestatus__info .info__pruebas button:hover {
  background-color: rgb(226, 226, 226);
}

@media only screen and (max-width: 1200px) {
  .informe__estatus {
    width: 90%;
  }
  .linetime {
    margin-top: 50px;
  }
  .linetime .linestatus__name .rule {
    margin-left: 10px;
    padding: 3px;
  }
  .linetime .linestatus__name .rule p {
    font-size: 14px;
  }
}
/*  
.bar__header {
  display: flex;
  width: 100%;
  height: 50px;
  background-color: #00588b;
  position: sticky;
  top: 50px;
  z-index: 2;
}

.bar__header .bar__bottom {
  margin: auto auto;
  color: white;
}

  /* ======MENU========== */
.navbar-default {
  display: flex;
  align-items: center;
  width: 98%;
  background: var(--white);
  position: fixed;
  top: 10px;
  left: 16px;
  border-bottom: 1px solid rgb(224, 224, 224);
}

.navbar-logo {
  width: 98%;
}
.navbar-logo a img {
  width: 8%;
  margin-left: 1px;
  margin-top: 6px;
}

.navbar-collapse {
  padding: 10px;
  width: 50%;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.navbar-collapse .profile__nav-user {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgb(209, 209, 209);
  background: rgb(218, 218, 218);
  float: right;
  margin-right: 120px;
  text-align: center;
}
.navbar-collapse .profile__nav-user .profile__option-user {
  margin: 30px 0;
  width: 160px;
  height: auto;
  border-radius: 5px;
  background: #fff;
  border: 1px solid rgb(228, 228, 228);
  padding: 12px;
}
.navbar-collapse .profile__nav-user .profile__option-user .log-out {
  border: 1px solid rgb(255, 255, 255);
}

.button-contact .button-nav a {
  color: #0a55c5;
  float: right;
  font-weight: 500;
  padding-inline-start: 12px;
  padding-inline-end: 12px;
  padding-block-start: 11px;
  padding-block-end: 11px;
  border-radius: 4px;
  text-transform: none;
  text-decoration: none;
  text-align: center;
}

.button-contact .button-nav:hover {
  background-color: var(--grey-three);
}

.sidebar {
  display: flex;
  height: auto;
  width: 300px;
  position: fixed;
  top: 0;
  left: 0;
  overflow-x: hidden;
  z-index: 2;
}
.sidebar .sidebar__section-one {
  width: 25%;
  height: 100%;
}
.sidebar .sidebar__section-one .menu-movile {
  position: absolute;
  background-color: white;
  margin-left: 40px;
  margin-top: 50px;
}
.sidebar .sidebar__section-one .menu-movile label {
  width: 20px;
}
.sidebar .sidebar__section-two {
  width: 75%;
  background-color: var(--grey-two);
}
.sidebar .sidebar__section-two .sidebar__header {
  padding-top: 30px;
}
.sidebar .sidebar__section-two .sidebar__header .sidebar__header-img {
  display: flex;
  justify-content: center;
}
.sidebar .sidebar__section-two .sidebar__header .sidebar__header-img img {
  width: 65%;
}

.sidebar button {
  position: absolute;
  margin-top: 70px;
  margin-left: 250px;
  z-index: 1;
}

.sidebar__content {
  margin: 90px 0px 0px 0px;
}

.sidebar a {
  padding: 10px;
  text-decoration: none;
  font-size: 14px;
  display: block;
  border-radius: 5px;
  margin: 1px 10px;
  color: rgb(222, 228, 238);
  font-weight: 600;
}

.sidebar a:hover {
  background-color: var(--grey-six);
  color: #000;
}

.sidebar__footer {
  position: absolute;
  bottom: 230px;
  width: 100%;
  color: rgb(222, 228, 238);
}

.sidebar__footer:hover {
  color: #000;
}

@media screen and (max-height: 450px) {
  .sidebar {
    padding-top: 15px;
  }
  .sidebar a {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .sidebar {
    display: none;
  }
}
/* SECTION LOGIN */
.login-main {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../images/banner-login.png);
  background-repeat: repeat;
  background-size: cover;
  box-shadow: 0px 0px 25px -3px rgba(0, 18, 158, 0.57);
  max-width: 100%;
  height: 100vh;
  font-size: 18px;
}

.login-main .login_content {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dadce0;
  background-color: #f3f3f3;
  width: 400px;
  height: 500px;
  border-radius: 8px;
}

.login-main .login_form {
  display: grid;
  grid-template-rows: 1fr 2fr 1fr;
  width: 80%;
  height: 80%;
}

.login-main .login_form .login-tittle {
  width: 100%;
  text-align: center;
  grid-row: 1;
  margin: auto 0;
  color: #0046a1;
}

.login-main .login_form .login-tittle img {
  width: 50%;
}

.login-main .login_form .section-two-form {
  grid-row: 2;
}

.login-main .login_form .section-two-form .login-form-container {
  width: 90%;
  margin: 0 auto;
}

.login-main .login_form .section-two-form .login-form-container .group-form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 15px 0;
}

.login-main .login_form .section-two-form .login-form-container .group-form input {
  padding: 14px;
  outline: none;
  border: 1px solid #dadce0;
  border-radius: 4px;
  font-size: 14px;
}

.login-main .login_form .section-two-form .login-form-container .login-footer-button {
  grid-row: 3;
}

.login-main .login_form .section-two-form .login-form-container .login-footer-button .login-footer-button-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 50%;
}

.login-main .login_form .section-two-form .login-form-container .login-footer-button .login-footer-button-container .button-login {
  padding: 8px;
  border: none;
  border-radius: 5px;
  color: white;
  background-color: #1a73e8;
}

.login-main .login_form .condiciones {
  padding: 10px;
}

.login-main .login_form .condiciones p {
  font-size: 12px;
  color: gray;
}

/* END SECCTION LOGIN */
/* ===============================FACTURACION========================== */
.fac__section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0 10px 0;
  font-size: 14px;
}

.fac__section .fac__container {
  width: 99%;
  background-color: white;
  border: 1px solid rgb(224, 224, 224);
  padding: 15px;
  border-radius: 20px;
}

.fac__section .fac__container .fac__container__index {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  background-color: #f6f6f6;
}

.fac__section .fac__container .fac__container__index .micuent {
  color: #0a64ff;
}

/* 
.fac__container__index .fac__container__search input {
  border-radius: 12px;
  padding: 5px;
  border: 1px solid rgb(189, 189, 189);
}

.fac__container__main {
  display: flex;
  width: 98%;
  background-color: white;
  height: auto;
  margin: 15px 15px;
  flex-wrap: wrap;
  justify-content: center;

} */
.fac__container__main__table {
  width: 95%;
  background-color: white;
  margin: 0 auto;
  padding: 25px;
  height: auto;
}

.fac__container__main__table table #notification_message {
  display: block;
  color: white;
  background-color: #ec0000;
  text-align: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.img-welcomme {
  margin-top: 80px;
}
.img-welcomme .container-img {
  display: flex;
  justify-content: center;
}
.img-welcomme .container-img img {
  width: 30%;
}

/* 
.card__inform {
  width: 100%;
  height: 90px;
  border-radius: 5px;
  padding: 5px;
  background-color: rgb(245, 245, 245);
  border: 1px solid rgb(238, 238, 238);
  margin: 20px 4px;
}

.card__inform a {
  position: absolute;
  background-color: #0a64ff;
  width: 150px;
  color: #fff;
  padding: 3px;
  border-radius: 5px;
  text-align: center;
} */
/* .fac__section .fac__container .fac__container__footer {
  width: 100%;
  background-color: #ebf6ff;
  height: 10%;
} */
/* =========================== */
/* .control__informes {
  width: 100%;
  margin-top: 20px;
}

.control__informes .control__fact-table {
  display: flex;
  align-items: center;
  justify-content: center;  
}

.control__informes .control__fact-table .content__table-informes {
  width: 80%;  
}

.content__table-informes thead tr th{
  background-color: rgb(230, 230, 230);  
  padding: 5px 10px;
  border: 1px solid rgb(141, 141, 141);
  text-align: center;
}

.content__table-informes tbody tr td{
  background-color: rgb(253, 253, 253);  
  border: 1px solid rgb(141, 141, 141);
  padding: 5px 10px;
  margin: 10px;
  text-align: center;
} */
/* SECTION MESSAGES  */
.section__chat {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
}

.container__chat {
  width: 100%;
  padding: 10px;
  border: 1px solid rgb(233, 233, 233);
}

.chat-box {
  position: relative;
  min-height: 500px;
  max-height: 500px;
  overflow-y: auto;
  padding: 10px 30px 20px 30px;
  background: #f7f7f7;
  box-shadow: inset 0 32px 32px -32px rgba(0, 0, 0, 0.05), inset 0 -32px 32px -32px rgba(0, 0, 0, 0.05);
}

.chat-box .text {
  position: absolute;
  top: 45%;
  left: 50%;
  width: calc(100% - 50px);
  text-align: center;
  transform: translate(-50%, -50%);
}

.chat-box .chat {
  margin: 15px 0;
}

.chat-box .chat p {
  word-wrap: break-word;
  padding: 8px 16px;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.08), 0rem 16px 16px -16px rgba(0, 0, 0, 0.1);
}

.chat-box .outgoing {
  display: flex;
}

.chat-box .outgoing .details {
  margin-left: auto;
  max-width: calc(100% - 130px);
}

.outgoing .details p {
  background: rgb(5, 77, 119);
  color: #fff;
  border-radius: 18px 18px 0 18px;
}

.chat-box .incoming {
  display: flex;
  align-items: flex-end;
}

.chat-box .incoming img {
  height: 35px;
  width: 35px;
}

.chat-box .incoming .details {
  margin-right: auto;
  margin-left: 10px;
  max-width: calc(100% - 130px);
}

.incoming .details p {
  background: #fff;
  color: #333;
  border-radius: 18px 18px 18px 0;
}

.typing-area {
  padding: 18px 30px;
  display: flex;
  justify-content: space-between;
}

.typing-area input {
  height: 45px;
  width: calc(100% - 58px);
  font-size: 16px;
  padding: 0 13px;
  border: 1px solid #e6e6e6;
  outline: none;
  border-radius: 5px 0 0 5px;
}

.typing-area button {
  color: #fff;
  width: 80px;
  border: none;
  outline: none;
  background: rgb(5, 77, 119);
  font-size: 19px;
  cursor: pointer;
  opacity: 0.7;
  pointer-events: none;
  border-radius: 0 5px 5px 0;
  transition: all 0.3s ease;
}

.typing-area button.active {
  opacity: 1;
  pointer-events: auto;
}

/* //////////////////SUPERVISION///////////////// */
.container__sup {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 5px 0;
}

.container__sup .sup__form {
  background-color: var(--white);
  width: 98%;
  height: auto;
  border: 1px solid rgb(226, 226, 226);
  border-radius: 10px;
  box-shadow: 2px 1px 27px 2px rgba(176, 176, 176, 0.41);
  padding: 30px;
}

.container__sup .sup__form .header-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container__sup .sup__form .header-wrapper .tittle-wrapper {
  width: 70%;
}

.container__sup .sup__form .search-inform {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container__sup .sup__form .search-inform input {
  border-radius: 5px;
  border: 1px solid grey;
  padding: 8px;
  margin-right: 20px;
}

.form-footer {
  position: relative;
}

.back {
  display: flex;
  flex-direction: column;
  margin-bottom: 120px;
  text-align: center;
}

.back p {
  margin-bottom: 16px;
}

.back a {
  margin: 0 auto;
  width: 80px;
  background: rgb(5, 77, 119);
  padding: 10px;
  color: white;
}

.back a:hover {
  color: #85c7fd;
}

.footer__dashboard {
  display: flex;
  justify-content: center;
}

.footer__dashboard__content {
  text-align: center;
  padding: 9px;
  width: 99%;
  background-color: var(--white);
  border: 1px solid rgb(224, 224, 224);
  border-radius: 20px;
  bottom: 0;
  color: rgb(97, 97, 97);
}

/* SECCTION WELCOME */
.section__welcome {
  width: 100%;
  height: 680px;
  display: flex;
}

.section__welcome--container {
  width: 80%;
  margin: auto auto;
}

.section__welcome--title {
  text-align: center;
}

.btn-informe {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.btn-informe a {
  padding: 10px;
  background-color: rgb(3, 89, 170);
  color: white;
  border-radius: 5px;
  font-size: 18px;
}

.btn-informe a:hover {
  color: #ebebeb;
}

@media screen and (max-width: 576px) {
  .section__welcome--container {
    width: 90%;
  }
}
/* footer-contact */
.footer-contact {
  background: var(--grey-two);
}

.container-footer {
  width: 80%;
  margin: 0 auto;
  display: flex;
}
.container-footer .google-map {
  height: 300px;
  float: right;
  margin: auto 0;
  width: 50%;
}
.container-footer .google-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 2px;
}

.contact-form {
  width: 50%;
  height: 340px;
}

.contact-form h3 {
  text-align: center;
}

.direction {
  text-align: center;
  color: var(--white);
  padding: 10px;
  margin: 10px;
}

.direction-text {
  margin-top: 50px;
}

@media only screen and (max-width: 992px) {
  .container-footer {
    display: flex;
    width: 100%;
    flex-direction: column;
    margin: 0 auto;
  }
  .container-footer .google-map {
    width: 90%;
    margin: 0 auto;
  }
  .contact-form {
    width: 100%;
    height: auto;
  }
}
/* footer */
.footer-container {
  padding: 20px;
  background: var(--grey-one);
  color: var(--white);
  text-align: center;
}

.details {
  display: flex;
  justify-content: center;
  height: 740px;
  margin-top: 30px;
}
.details .card {
  padding: 50px;
}
.details .card .card-header {
  border: 1px solid rgb(209, 209, 209);
}
.details .card .card-body table {
  width: 100%;
}
.details .card .card-footer {
  display: flex;
  justify-content: space-around;
  border: 1px solid rgb(209, 209, 209);
}

.table-download_footer .download-inform {
  color: rgb(255, 255, 255);
  background-color: rgb(15, 182, 0);
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
  text-align: center;
}
.table-download_footer .info_download {
  color: grey;
  font-size: 11px;
}

/*# sourceMappingURL=styles.css.map */
