body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
/* For all elements that receive focus */
:focus {
  outline: none !important;
  box-shadow: none !important; /* Also remove box-shadow if present */
}

/* For specific element types, e.g., buttons */
.btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* For specific element types, e.g., form controls */
.form-control:focus {
  outline: none !important;
  box-shadow: none !important;
}
#docuModal .modal-header {
  align-items: center;
}
#docuModal .modal-footer {
  justify-content: space-between;
}
#docuModal .modal-footer .viewer-meta {
  font-size: 14px;
  color: #0047ba;
}
#viewerTitle {
  font-size: 20px;
  margin: 0;
  color: #0047ba;
  font-weight: 200;
}
#docuModal .pdf-controls {
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  padding: 0.5rem 0 1rem;
}
#docuModal .modal-body {
  overflow-x: scroll;
}
/**********************NAVBAR*********************************/
.navbar .navbar-nav .nav-item .nav-link {
  color: #3d3935;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link.active {
  color: #0047ba;
  transition: all 0.2s ease-in-out;
}
.navbar .forms {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.navbar form.search-form {
  border-bottom: 1px solid #3d3935;
  border-radius: 0;
  padding-bottom: 5px;
}
.navbar form input {
  border: 0;
  color: #3d3935;
  font-weight: bold;
  font-size: 10px;
  flex: 1;
}
.navbar form input::placeholder {
  color: #3d3935;
  font-weight: bold;
  font-size: 10px;
}
.navbar form .btn {
  color: #3d3935;
  font-weight: bold;
  font-size: 10px;
  border: 2px solid #3d3935;
  border-radius: 50px;
  flex: 1;
}
.navbar .forms .icon-btn,
.navbar .forms .icon-btn .bi {
  font-size: 20px;
  line-height: 20px;
}
.icon-btn {
  border: 0;
  background: transparent;
  padding: 0;
}

.dropdown:hover > .dropdown-menu {
  display: block !important;
}
.dropdown-submenu:hover > .dropdown-menu {
  display: block !important;
  left: 100%;
  margin-top: -37px;
}
.dropdown-menu {
  top: unset;
}
/**********************LOGIN*********************************/
.login,
.home-main .header {
  background: url(./images/login-bkg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.manuales-main .header.result-header {
  min-height: auto;
  padding: 8rem 0;
}
.login::before,
.home-main .header::before {
  content: "";
  height: 100%;
  width: 100%;
  background: #0000006b;
  display: block;
  position: absolute;
}
.login .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  z-index: 50;
}
.login .container h2 {
  color: #ffffff;
  font-size: 23px;
  font-weight: bold;
  text-align: center;
}
.login .container form {
  width: 460px;
}
.login .container form .form-group input {
  background: transparent;
  border: 2px solid #ffffff;
  padding: 1.5rem 1rem;
  border-radius: 50px;
}
.login .container form .form-group input,
.login .container form .form-group input::placeholder {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
}
.login .container form .form-group input[type="submit"],
.azure-login button {
  border: 0;
  background: #032b8f;
  padding: 0.6rem 3rem;
  font-weight: bold;
  margin-left: auto;
  display: block;
  width: fit-content;
  transition: all 0.2s ease-in-out;
}
.login .container form .form-group input[type="reset"] {
  padding: 0.6rem 3rem;
  font-weight: bold;
  margin-left: auto;
  display: block;
  width: fit-content;
  transition: all 0.2s ease-in-out;
}
.login .container form .form-group input[type="submit"]:hover,
.login .container form .form-group input[type="reset"]:hover {
  background: #0047ba;
  transition: all 0.2s ease-in-out;
}

.login .container form .last-form-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.login .container form .last-form-group .form-link {
  color: #ffffff;
  font-size: 12px;
}

#notification {
  background-color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #fdfdfd;
  border-radius: 20px;
  display: none;
  font-weight: bold;
  color: #ffffff;
}

#content-iframe {
  min-height: 80vh;
  width: 100%;
}

/**********************HOMEPAGE*********************************/
.home-main .header {
  justify-content: flex-end;
  padding: 2rem 0;
  height: 89vh;
}
.home-main .header .container h2 {
  color: #ffffff;
  font-size: 58px;
  line-height: 60px;
  font-weight: 100;
}
.home-main .header .container h2 strong {
  font-weight: bold;
}

.home-main .main-content {
  padding: 6rem 0;
  background: url(./images/patern.png);
  background-repeat: repeat-y;
  background-position: right;
  background-size: contain;
}
.home-main .main-content h3 {
  font-size: 40px;
  font-weight: 200;
  color: #0047ba;
}
.home-main .main-content h4 {
  font-size: 30px;
  font-weight: bold;
  color: #0047ba;
  text-align: center;
  margin: 4rem 0;
}
.home-main .main-content p {
  font-size: 22px;
  color: #333333;
}
.home-main .main-content .container {
  display: flex;
  gap: 2rem;
}
.home-main .main-content .container > div.caption {
  width: 35%;
}
.home-main .main-content .container > div.image {
  width: 65%;
}
.home-main .main-content .container > div img {
  max-width: 100%;
  margin-top: -12rem;
}

.home-main .main-content .buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.home-main .main-content .buttons > div {
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  padding: 2rem 3rem;
  background-color: #cbc3bb;
}
.home-main .main-content .buttons > div.blue {
  background: #0047ba;
}

.home-main .main-content .buttons > div h5 {
  font-size: 24px;
  color: #0047ba;
  text-align: center;
  font-weight: 200;
}
.home-main .main-content .buttons > div.blue h5 {
  color: #cbc3bb;
}
.home-main .main-content .buttons > div h5 strong {
  font-weight: bold;
}

.home-main .main-content .buttons > div a {
  border-radius: 50px;
  padding: 0.2rem 2rem;
  font-size: 15px;
  font-weight: bold;
  color: #0047ba;
  background: #ffffff;
  transition: all 0.2s ease-in-out;
}

.home-main .main-content .buttons > div a:hover {
  text-decoration: none;
  color: #ffffff;
  background: #0263ff;
  transition: all 0.2s ease-in-out;
}
.resp-lista {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.resp-lista .responsable {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 1rem 0;
  padding: 1rem 0 2rem;
  border-bottom: 1px solid #cbc3bb;
}
.resp-lista .responsable:last-of-type {
  border-bottom: 0;
}
.resp-lista .responsable.table-header {
  border-bottom: 0;
}
.resp-lista .responsable > div {
  flex: 1;
}
.resp-lista .responsable > div.first {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.resp-lista .responsable > div.first h4 {
  font-size: 17px;
  font-weight: bold;
  color: #cbc3bb;
}
.resp-lista .responsable > div h5 {
  color: #0047ba;
  font-size: 18px;
}
.resp-lista .responsable > div p {
  color: #3d3935;
  font-size: 16px;
  font-weight: bold;
}
.resp-lista .responsable > div h2 {
  color: #0047ba;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
}

/**********************HOMEPAGE*********************************/
.manuales-main .header {
  background-image: url(./images/manuales-bkg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.manuales-main .header::before {
  content: "";
  height: 100%;
  width: 100%;
  background: #0000006b;
  display: block;
  position: absolute;
}
.manuales-main .header .container {
  z-index: 50;
}
.manuales-main.politicas-main .header {
  background-image: url(./images/politicas-bkg.jpg);
  background-position: center;
}
.manuales-main.qa-main .header {
  background-image: url(./images/qa-bkg.jpg);
  background-position: center;
}
.manuales-main.responsables-main .header {
  background-image: url(./images/responsables-bkg.jpg);
  background-position: center;
}
.manuales-main .header .container h2 {
  color: #ffffff;
  font-size: 58px;
  line-height: 60px;
  font-weight: 100;
}
.manuales-main .header .container h2 strong {
  font-weight: bold;
}

.manuales-main .main-content {
  padding: 6rem 0;
  background: url(./images/patern.png);
  background-repeat: repeat-y;
  background-position: right;
  background-size: 200px;
  position: relative;
  z-index: 0;
  background-attachment: fixed;
}

.manuales-main .main-content .container {
  z-index: 50;
  position: relative;
}

.manuales-main .main-content .container h4 {
  text-align: center;
  color: #0047ba;
  font-size: 22px;
  font-weight: 200;
  max-width: 700px;
  margin: 0 auto;
}
.manuales-main .main-content .container h4 strong {
  font-weight: bold;
}
.manuales-main .main-content .mySwiper {
  margin: 8rem 0;
}
.manuales-main .main-content.swiper {
  width: 100%;
  height: 100%;
}

.manuales-main .main-content .swiper-slide {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  position: relative;
}

.manuales-main .main-content .swiper-slide img {
  display: block;
  width: 250px;
  height: 250px;
}
.manuales-main .main-content .swiper-slide span {
  width: 46px;
  height: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  position: relative;
}
.manuales-main .main-content .swiper-slide span p {
  margin: 0;
  font-size: 23px;
  color: #cbc3bb;
  font-weight: bold;
  line-height: 23px;
}
.manuales-main .main-content .swiper-slide .spacer {
  height: 250px;
}
.manuales-main .main-content .swiper-slide hr {
  position: absolute;
  border: 1px solid #3d3935;
  width: 100%;
}

.manuales-main .main-content .swiper-wrapper {
  padding-bottom: 2rem;
}

.manuales-main
  .main-content
  .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

.manuales-main .main-content form.detail-search {
  max-width: 467px;
  margin: 4rem auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.manuales-main .main-content form.detail-search select,
.manuales-main .main-content form.detail-search input {
  border: 0;
  border-bottom: 1px solid #0047ba;
  padding: 1rem 0.5rem;
  color: #0047ba;
}
.manuales-main .main-content form.detail-search input,
.manuales-main .main-content form.detail-search input::placeholder {
  color: #0047ba;
  font-size: 14px;
  font-weight: bold;
}
.manuales-main .main-content form.detail-search select {
  font-size: 22px;
  font-weight: bold;
}
.manuales-main .main-content form.detail-search select#departamento {
  font-size: 30px;
  font-weight: 300;
}
.manuales-main .main-content form.detail-search button {
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  background: #0047ba;
  transition: all 0.2s ease-in-out;
  border: 0;
  width: fit-content;
  margin-left: auto;
  transition: all 0.2s ease-in-out;
  min-width: 200px;
}
.manuales-main .main-content form.detail-search button:hover {
  background: #032b8f;
  transition: all 0.2s ease-in-out;
}

.form-hr {
  max-width: 467px;
  margin: 4rem auto;
}

.manuales-main .main-content form.detail-search.alt {
  flex-direction: row;
  border-bottom: 1px solid #0047ba;
  align-items: center;
}
.manuales-main .main-content form.detail-search.alt input {
  border-bottom: 0;
}

.manuales-main .main-content .table_component {
  overflow: auto;
  width: 728px;
  margin: 4rem auto;
}

.manuales-main .main-content .table_component table {
  height: 100%;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 1px;
  text-align: left;
}

.manuales-main .main-content .table_component caption {
  caption-side: top;
  text-align: left;
}

.manuales-main .main-content .table_component th {
  color: #000000;
  padding: 5px;
}

.manuales-main .main-content .table_component td {
  background-color: #ffffff;
  color: #000000;
  padding: 5px;
}
.manuales-main .main-content .table_component tbody tr td {
  background: #fcfcfc;
}
.manuales-main .main-content .table_component tbody tr td a {
  color: #0047ba;
  font-size: 28px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.manuales-main .main-content .table_component tbody tr td a:hover {
  color: #032b8f;
  transition: all 0.2s ease-in-out;
}
.manuales-main .main-content .table_component tbody tr td a.disable {
  color: #eeeeee;
  cursor: not-allowed;
}
.manuales-main .main-content .table_component tbody tr td.title {
  color: #111111;
  font-size: 16px;
  width: 280px;
}
.manuales-main .main-content .table_component thead tr th {
  padding-bottom: 2rem;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  color: #0047ba;
}

/**********************ACCORDION******************************/
#section-nine {
  padding: 4rem 0;
}
#section-nine .accordion {
  margin-top: 4rem;
}
#section-nine .accordion-button {
  background: transparent;
  box-shadow: none;
  color: #0047ba;
  border: 0;
  border-bottom: 1px solid #0047ba;
  text-align: left;
  padding: 1.5rem 0.2rem 0.3rem;
  width: 100%;
}
#section-nine .accordion-button {
  box-shadow: none !important;
}
#section-nine .accordion .accordion-item .accordion-button {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: 20px;
}

#section-nine .disclaimer-part {
  max-width: 640px;
  margin: 4rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  justify-content: center;
  align-items: center;
}
#section-nine .accordion-sec-title {
  margin: 2rem 0 1rem;
}

/**********************FOOTER*********************************/
footer {
  background-color: #0047ba;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer hr {
  border-color: #ffffff;
  opacity: 0.1;
  width: 90%;
}
footer .container .copyright {
  color: #ffffff;
  font-weight: 200;
  font-size: 16px;
  text-align: center;
}
footer .container.main-container {
  padding: 4rem 0;
}
footer .floating-element {
  position: absolute;
  right: 0;
  width: 225px;
}
footer .main-container {
  display: flex;
  justify-content: space-between;
}
footer .main-container .footer-navigation h3 {
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
}
footer .main-container .footer-navigation ul {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
footer .main-container .footer-navigation ul li a {
  font-size: 14px;
  color: #ffffff;
}
.file-modal .modal-content {
  background: transparent;
  border: 0;
  padding: 0;
}
.file-modal .btn-close {
  position: absolute;
  top: 10vh;
  right: 20vw;
  border: 0;
  background: 0;
}
#searchModal .modal-content {
  border: 0;
  border-radius: 0;
}
#searchModal .btn-close {
  background: transparent;
  border: 0;
  padding: 0;
}
#searchModal .modal-header {
  border-bottom: 0;
  background: #00000021;
  border-radius: 0;
}
#searchModal .modal-header .modal-title {
  font-size: 20px;
}
#searchModal #searchResults ul {
  margin: 0;
  padding: 0;
}
#searchModal #searchResults ul li {
  list-style: none;
  padding: 1rem;
  border-bottom: 1px solid #0263ff;
  transition: all 0.2s ease-in-out;
}
#searchModal #searchResults ul li:last-of-type {
  border: 0;
}
#searchModal #searchResults ul li:hover {
  background: #fdfdfd;
  transition: all 0.2s ease-in-out;
}
#searchModal #searchResults ul li a {
  cursor: pointer;
  color: #0047ba;
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}
#searchModal #searchResults ul li a:hover {
  color: #032b8f;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

#resultados-body {
  background: #fcfcfc;
}
#resultados-body .resultados-item {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2rem;
}
#resultados-body .resultados-item .resultados-all-items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
#resultados-body .resultados-item:nth-child(even) {
  background-color: lightgray;
}
#resultados-body .resultados-item h3 {
  font-size: 20px;
}
#resultados-body .resultados-item a {
  font-size: 40px;
}
#resultados-body a {
  color: #0055df;
  font-size: 30px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  line-height: normal;
}
#resultados-body a .bi-folder2-open {
  display: none;
}
#resultados-body a:hover {
  text-decoration: none;
  color: #032b8f;
  transition: all 0.2s ease-in-out;
}
#resultados-body a:hover .bi-folder2-open {
  display: inline-block;
}
#resultados-body a:hover .bi-folder2 {
  display: none;
}
#resultados-body a small {
  font-size: 12px;
  line-height: 1.5;
  display: block;
}
#breadcumb {
  display: flex;
}
#breadcumb p {
  font-size: 14px;
  color: #0047ba;
  display: flex;
  gap: 0.5rem;
  margin-right: 0.5rem;
}
#breadcumb p::after {
  content: " / ";
}
#breadcumb p:last-of-type::after {
  content: "";
}
.inline-link {
  font-size: 18px;
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
}

.floating-pngs {
  position: absolute;
  left: 0;
  top: 50%;
  width: 240px;
}

#loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  background: #000000ad;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
#loading p {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
#loading p svg {
  width: 60px;
}
#docuModal .modal-dialog {
  width: 95vw;
  max-width: 95vw;
}
.pdf-canvas-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
/**********************MOVIL*********************************/
@media only screen and (max-width: 600px) {
  section .container,
  footer .container,
  .home-main .main-content .buttons {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .login .container form {
    width: 100%;
  }
  .home-main .main-content .container,
  .home-main .main-content .buttons,
  footer .main-container,
  footer .main-container .footer-navigation ul,
  .manuales-main .main-content form.detail-search.alt {
    flex-direction: column;
  }
  .home-main .main-content .container > div {
    width: 100% !important;
  }
  .home-main .main-content .container > div img {
    margin: 0;
  }
  footer .main-container .footer-navigation h3 {
    margin: 3rem 0 2rem;
  }
  .manuales-main .main-content .table_component {
    width: 100%;
  }
  .manuales-main .header .container h2 {
    font-size: 38px;
  }

  .resp-lista .responsable {
    width: 100%;
    word-break: break-all;
    gap: 1.5rem;
  }
  .resp-lista .responsable > div h5,
  .resp-lista .responsable > div.first h4,
  .resp-lista .responsable > div h2,
  .resp-lista .responsable > div p {
    font-size: 12px;
  }
  .resp-lista .responsable > div p {
    font-size: 10px;
  }
  .resp-lista .responsable > div.first img {
    max-width: 40px;
  }
  .manuales-main .main-content form.detail-search.alt {
    border-bottom: 0;
  }
  .manuales-main .main-content form.detail-search input {
    border-bottom: 1px solid #0047ba !important;
  }
  #resultados-body .resultados-item {
    grid-template-columns: 1fr;
  }
  .modal-fullscreen {
    width: initial;
    max-width: 100vw;
  }
}
