@charset "UTF-8";
.bx {
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
  border-radius: 10px;
  box-shadow: 0 1px 13px 0 rgba(0, 0, 0, 0.03);
  padding-bottom: 20px;
  border: 3px #e6e6e6c7 solid;
}

.bxcita {
  width: 100%;
  border-radius: 10px;
  height: 423px;
  border: 1px #e6e6e6c7 solid;
}

.img_logo img {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.14);
  border-radius: 10px;
  margin-top: -46px;
  background: white;
  padding: 5px 25px 5px 25px;
}

.fondo {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 100%;
  z-index: -1;
}

.container_l {
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 7rem;
  padding: 0 2rem;
}

.img {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.login-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
}
.login-content h6 {
  text-align: initial;
  line-height: 20px;
}

.img img {
  width: 500px;
}

.login-content img {
  height: 100px;
}

.login-content h2 {
  margin: 15px 0;
  color: #333;
  text-transform: uppercase;
  font-size: 2.9rem;
}

.login-content .input-div {
  position: relative;
  display: grid;
  grid-template-columns: 7% 93%;
  margin: 25px 0;
  padding: 5px 0;
  border-bottom: 2px solid #d9d9d9;
}

.login-content .input-div.one {
  margin-top: 0;
}

.i {
  color: #d9d9d9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.i i {
  transition: 0.3s;
}

.input-div div {
  position: relative;
  height: 45px;
}

.input-div div h5 {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 15px;
  transition: 0.3s;
}

.input-div div h6 {
  position: absolute;
  left: 10px;
  top: 0%;
  transform: translateY(-50%);
  color: #999;
  font-size: 15px;
  transition: 0.3s;
}

.input-div:before, .input-div:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #2306de;
  transition: 0.4s;
}

.input-div:before {
  right: 50%;
}

.input-div:after {
  left: 50%;
}

.input-div.focus:before, .input-div.focus:after {
  width: 50%;
}

.input-div.focus div h5 {
  top: 3px;
  font-size: 15px;
}

.input-div.focus .i i {
  color: #2306de;
}

.input-div div input {
  position: absolute;
  left: 0;
  top: 6px;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: none;
  padding: 0.5rem 0.7rem;
  font-size: 1.1rem;
  color: #555;
  font-family: "poppins", sans-serif;
}
.input-div div select {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: none;
  padding: 0.5rem 0.7rem;
  font-size: 1.2rem;
  color: #555;
  font-family: "poppins", sans-serif;
}

.input-div.pass {
  margin-bottom: 4px;
}

a {
  display: block;
  text-align: right;
  text-decoration: none;
  color: #999;
  font-size: 0.9rem;
}

.btn_ingresar {
  display: block;
  width: 17%;
  height: 35px;
  border-radius: 25px;
  outline: none;
  border: none;
  background-image: linear-gradient(to right, #2306de, #2306de, #48d66d);
  background-size: 200%;
  font-size: 1rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  margin: 1rem 0;
  cursor: pointer;
  transition: 0.5s;
}

.btn_ingresar:hover {
  background-position: right;
}

.btn_volver {
  display: block;
  width: 51%;
  height: 35px;
  border-radius: 25px;
  outline: none;
  border: none;
  background-image: linear-gradient(to right, #8A98A4, #8A98A4, #cad2d9);
  background-size: 200%;
  font-size: 0.8rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  margin: 1rem 0;
  cursor: pointer;
  transition: 0.5s;
}

.btn_volver:hover {
  background-position: right;
}

.recaptcha div:nth-child(1) {
  width: 100% !important;
}

.ct-b {
  align-items: center;
  justify-content: center;
}
.ct-b .btn-ingresar {
  width: 40%;
  border-radius: 20px;
  background: #00315a;
  border: 1px #00315a solid;
  color: white;
}

@media screen and (max-width: 1050px) {
  .container_l {
    grid-gap: 5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    height: 40vh;
  }

  .img {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .login-content h2 {
    font-size: 2.4rem;
    margin: 8px 0;
  }

  .img img {
    width: 400px;
  }
}
@media screen and (max-width: 900px) {
  .container_l {
    grid-template-columns: 1fr;
  }

  .img {
    display: none;
  }

  .fondo {
    display: none;
  }

  .login-content {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .input-div div select {
    font-size: 0.9rem;
  }
  .input-div div input {
    font-size: 0.9rem;
  }

  .bx {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .input-div.focus div h5 {
    top: 10px;
    font-size: 15px;
  }

  .btn_ingresar {
    width: 40%;
  }
}
.mb {
  font-size: 1.4rem;
  margin-top: 10px;
}

.lgtext {
  font-size: 1.4rem;
  margin-top: 10px;
}

.mdtext {
  font-size: 1rem;
}

.xstext {
  font-size: 14px !important;
}

.tc {
  font-size: 14px;
}

.scroll {
  height: 250px;
  overflow-y: scroll;
  text-align: initial;
  border: 2px #00000052 solid;
  padding: 10px;
}

.form-check-inline input {
  margin-top: 15px !important;
}

.mt-6 {
  margin-top: 70px;
}

.table td, .table th {
  padding: 1px !important;
  text-align: initial;
}
.table tr {
  padding-bottom: 10px;
}

@media screen and (max-width: 1050px) {
  .mt-7 {
    margin-top: 12rem;
  }
}
@media screen and (max-width: 768px) {
  .mt-7 {
    margin-top: 15rem;
  }
}
@media screen and (max-width: 767px) {
  .mt-7 {
    margin-top: 31rem;
  }
}
#exampleModal {
  padding-top: 65px;
}

#exampleModal2 {
  padding-top: 65px;
}

#exampleModal3 {
  padding-top: 65px;
}

#exampleModal4 {
  padding-top: 65px;
}

#exampleModal5 {
  padding-top: 65px;
}

.texto_p {
  color: #212529;
  font-weight: 700;
}

.fs-5 {
  font-size: 1.25rem;
}

#nonescroll {
  overflow: hidden;
}

button:focus {
  outline: none !important;
  /* outline: 5px auto -webkit-focus-ring-color; */
}

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

.btn-light:hover {
  color: #000;
  background-color: #e5e6e6;
  border-color: #f9fafb;
}

.btn-light {
  background-color: #ebeef1 !important;
  border-color: #f9fafb !important;
}

.bg-primary {
  background-color: white !important;
  border-right: 3px solid #e2e2e2;
}

.bg-light {
  background-color: #2306de !important;
}

.bg-grey {
  background-color: #2306de !important;
}

.bg-mix {
  background: linear-gradient(180deg, #2306de 50%, #2306de 0);
}

.btn-primary {
  background-color: #2306de;
  border: 0;
}
.btn-primary:hover {
  background-color: #2306de;
}

#sidebar-container {
  min-height: 100vh;
}
#sidebar-container .logo {
  padding: 0.875rem 1.25rem;
}
#sidebar-container .menu {
  width: 18rem;
}

#content {
  overflow-y: auto;
  height: 100vh;
  padding-bottom: 5rem;
}

.mttext {
  margin-top: 8rem;
}

.mbtext {
  margin-bottom: 8.6rem;
}

.avatar {
  max-width: 35px;
}

.logo_home {
  width: 75%;
}

.stat {
  border-right: 1px solid #2306de;
}

.dropdown-menu {
  left: -23px !important;
  min-width: 5rem !important;
}

.centrar_btn_salir {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.centrar_btn_salir .btn_salir {
  display: block;
  width: 36%;
  height: 30px;
  border-radius: 25px;
  outline: none;
  border: none;
  background-image: linear-gradient(to right, #2306de, #2306de, #48d66d);
  background-size: 200%;
  font-size: 0.8rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  margin: 1rem 0;
  cursor: pointer;
  transition: 0.5s;
}
.centrar_btn_salir .btn_salir:hover {
  background-position: right;
}

.btn_siguiente {
  display: block;
  width: 56%;
  height: 35px;
  border-radius: 25px;
  outline: none;
  border: none;
  background-image: linear-gradient(to right, #2306de, #2306de, #48d66d);
  background-size: 200%;
  font-size: 0.8rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  margin: 1rem 0;
  cursor: pointer;
  transition: 0.5s;
}

.btn_siguiente:hover {
  background-position: right;
}

.btn_reprogramar {
  display: block;
  width: 85%;
  height: 35px;
  border-radius: 25px;
  outline: none;
  border: none;
  background-image: linear-gradient(to right, #2306de, #2306de, #48d66d);
  background-size: 200%;
  font-size: 0.8rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  margin: 1rem 0;
  cursor: pointer;
  transition: 0.5s;
}

.btn_reprogramar:hover {
  background-position: right;
}

.menu::-webkit-scrollbar {
  width: 8px;
  /* Tamaño del scroll en vertical */
  height: 8px;
  /* Tamaño del scroll en horizontal */
  /* Ocultar scroll */
}

/* Ponemos un color de fondo y redondeamos las esquinas del thumb */
.menu::-webkit-scrollbar-thumb {
  background: #2306de;
  border-radius: 4px;
}

/* Cambiamos el fondo y agregamos una sombra cuando esté en hover */
.menu::-webkit-scrollbar-thumb:hover {
  background: #2306de;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

/* Cambiamos el fondo cuando esté en active */
.menu::-webkit-scrollbar-thumb:active {
  background-color: #2306de;
}

/* Ponemos un color de fondo y redondeamos las esquinas del track */
.menu::-webkit-scrollbar-track {
  background: #2306de;
  border-radius: 4px;
}

/* Cambiamos el fondo cuando esté en active o hover */
.menu::-webkit-scrollbar-track:hover,
.menu::-webkit-scrollbar-track:active {
  background: #2306de;
}

.btn_ver {
  display: block;
  width: 28%;
  height: 35px;
  border-radius: 25px;
  outline: none;
  border: none;
  background-image: linear-gradient(to right, #2306de, #2306de, #48d66d);
  background-size: 200%;
  font-size: 0.8rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  margin: 1rem 0;
  cursor: pointer;
  transition: 0.5s;
}

.btn_ver:hover {
  background-position: right;
}

.btn_programar {
  display: block;
  width: 70%;
  height: 35px;
  border-radius: 25px;
  outline: none;
  border: none;
  background-image: linear-gradient(to right, #2306de, #2306de, #48d66d);
  background-size: 200%;
  font-size: 0.8rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  margin: 1rem 0;
  cursor: pointer;
  transition: 0.5s;
}

.btn_programar:hover {
  background-position: right;
}

.card-header {
  border-bottom: none;
}

.card-stats .card-header.card-header-icon {
  text-align: right;
  background: white;
}
.card-stats .card-header.card-header-text {
  text-align: right;
  background: white;
}

.card-category {
  font-size: 12px;
}

.card-exp {
  font-size: 1rem;
  text-align: left;
}

.card-fecha {
  font-size: 1.2rem;
  text-align: left;
}

.card-title {
  font-size: 1.2rem;
}

.card {
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(170, 189, 255, 0.4);
}
.card .card-header-warning .card-icon {
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(255, 152, 0, 0.4);
}
.card .card-header-warning .card-text {
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(255, 152, 0, 0.4);
}
.card .card-header-warning:not(.card-header-icon):not(.card-header-text) {
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(255, 152, 0, 0.4);
}
.card [class*=card-header-] {
  margin: 0 15px;
  padding: 0;
  position: relative;
}
.card [class*=card-header-] .width2 {
  border-radius: 3px;
  background-color: #59ac58;
  padding: 29px;
  margin-top: -32px;
  margin-right: 15px;
  float: left;
}
.card [class*=card-header-] .width {
  border-radius: 3px;
  background-size: cover;
  margin-top: -25px;
  margin-right: 15px;
  float: none;
}
.card .card-header {
  z-index: 3 !important;
}
.card .card-footer {
  background: white;
}

.card-footer {
  padding: 0.1rem 1.1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.menu2 {
  display: none;
}

hr {
  border-top: 3px solid #e2e2e2 !important;
}

.card-icon svg {
  font-size: 30px !important;
  color: white;
}

.menu svg {
  font-size: 15px !important;
  color: black;
}

.card-t {
  font-size: 0.9rem;
  text-align: left;
}

.text_cab {
  margin-top: -35px;
  height: 80px;
  background-color: #eeeeee;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  margin-bottom: 20px;
}

.text_cab_cita {
  margin-top: -35px;
  height: 80px;
  background-color: #fef2cc;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  margin-bottom: 20px;
}

.text_tri {
  margin-top: -35px;
  height: 91px;
  background-color: #EEE;
  display: block;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  margin-bottom: 20px;
  /* padding: 20px; */
  padding-left: 10px;
  padding-top: 10px;
  text-align: center;
}

.text_covid {
  padding: 0.75rem 1rem;
  font-size: 1.2rem;
}

.text_warning {
  font-size: 1rem;
}

.pd {
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
}

.breadcrumb {
  background-color: #fbfbfb !important;
}

input[type=file] {
  display: none;
}

.file {
  color: white;
  height: 133px;
  width: 198px;
  background-image: linear-gradient(to right, #2306de, #2306de, #48d66d);
  background-size: 200%;
  font-size: 1.2rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  margin: 1rem 0;
  cursor: pointer;
  transition: 0.5s;
  padding-top: 20px;
  left: 0;
  right: 0;
  font-size: 20px;
  display: block;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 10px;
}

.file:hover {
  background-position: right;
}

.mb-2 label svg {
  font-size: 68px;
}

.bg-danger .bootstrap-tagsinput span {
  margin: 3px 0;
  padding: 6px 7px;
  margin-right: 6px;
}

.text_small {
  font-size: 1rem;
}

.badge-info {
  color: #fff;
  background-color: #016ab4;
  border-radius: 50px;
}

.dataTables_paginate a.paginate_button.previous {
  display: none;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #2306de;
  border-color: #2306de;
}

.mouse {
  display: block;
  position: fixed;
  height: 45px;
  width: 25px;
  border-radius: 20px;
  bottom: 253px;
  left: 79%;
  z-index: 2;
  transform: translateX(-50%);
  animation: mouse alternate 0.8s infinite;
}

.mouse:after {
  position: absolute;
  border-radius: 2px;
  width: 20px;
  height: 0px;
  content: "";
  font-size: 35px;
  color: #016ab461;
  margin-left: 109px;
  margin-top: 139px;
  animation: mouse-bola alternate 0.8s infinite;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
}

.mt-home {
  margin-top: 2.9rem !important;
  border-radius: 10px !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

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

.text_covid_cita {
  margin: 17px 10px 2px 20px;
}

.content_estado {
  padding: 3px;
}

.breadcrumb-item {
  font-size: 1.5rem !important;
}

.list-group-item {
  padding: 0.25rem 0.9rem !important;
}

.search_info {
  border-radius: 15px 0px 0px 15px;
  height: 40px;
}

.search_boton_info {
  border-radius: 0px 15px 15px 0px;
  height: 40px;
  font-size: 15px;
  line-height: 10px;
  background: #2306de;
  color: white;
}
.search_boton_info svg {
  line-height: 10px;
}

.p_text {
  font-size: 15.9px;
}

.dropbtn {
  background-color: #2306de;
  color: white;
  padding: 4px;
  font-size: 17px;
  border: none;
  cursor: pointer;
  border-radius: 10px;
}

.dropbtn:hover, .dropbtn:focus {
  background-color: #2306de;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 107px;
  overflow: auto;
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {
  background-color: #00000012;
}

.show {
  display: block;
}

.dropbtn::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

@keyframes mouse-bola {
  0% {
    height: 0px;
  }
  100% {
    height: 10px;
  }
}
@keyframes mouse {
  0% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(-50%, calc(-50% + 20px));
  }
}
@media (max-width: 768px) {
  #sidebar-container {
    display: none;
    min-height: 100vh;
  }
  #sidebar-container .logo {
    padding: 0.875rem 1.25rem;
  }
  #sidebar-container .stat {
    border: 0;
  }
  #sidebar-container .menu {
    width: 14rem;
  }

  .mb-6 {
    margin-bottom: 2.5rem !important;
  }

  .mt-8 {
    margin-top: 36rem;
  }
}
.cargando {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1035;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}
.cargando .cargando_content {
  position: relative;
  height: 3px;
  display: block;
  width: 100%;
  overflow: hidden;
}
.cargando .cargando_content .cargado_llenado:before {
  animation: mbar 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}
.cargando .cargando_content .cargado_llenado:after {
  animation: m_s 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  animation-delay: 1.15s;
}

.cargando .cargando_content .cargado_llenado:after, .cargando .cargando_content .cargado_llenado:before {
  content: "";
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
}
@keyframes mbar {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -35%;
  }
}
@keyframes m_s {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}