@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");

/* Components */
@import url("components/navbar.css");
/* @import url("components/sidebar.css"); */
@import url("components/modal.css");
@import url("components/icons.css");
@import url("components/buttons.css");
@import url("components/tabs.css");
@import url("components/inputs.css");
@import url("components/steps.css");
@import url("components/login.css");
@import url("components/avatar.css");
@import url("components/alert-modal.css");
@import url("components/input-search.css");
@import url("components/tables.css");

/* Pages CSS */
@import url("components/onboarding.css");
/* Invoices Components */
* {
  font-family: "Source Sans 3", sans-serif;
}

body,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
a,
td {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700 !important;
}

.min-vh-50 {
  min-height: 50vh;
}

body {
  width: 100%;
  height: 100%;
  background: #ffffff;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1rem;
  color: #444;
}

.wrapper {
  display: flex;
  min-width: 100%;
  min-height: 100vh;
  align-items: stretch;
  overflow-x: hidden;
}

#body {
  width: 100%;
  padding: 0;
  min-height: 100vh;
  transition: all 0.3s;
  background-color: #fff;
}

/*------------------------------------------------------------------
[2. Header / #header]
*/
#body > .navbar {
  padding: 0 1.5rem;
  min-height: 54px;
  box-shadow: none;
  border-bottom: 1px solid rgba(101, 109, 119, 0.16);
}

/*------------------------------------------------------------------
[4. Content / #content]
*/
.main-container {
  padding: 40px 30px;
}

@media(min-width: 768px) {
  .main-container {
    padding: 40px;
  }
}


#body > .navbar, .main-container {
  margin-left: 0;
}

@media(min-width: 960px) {
  #body > .navbar, .main-container {
    /* margin-left: 250px; */
  }
}

/*------------------------------------------------------------------
[9. Adjustments to default behaviors]
*/
a,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}

.btn.focus,
.btn:focus {
  box-shadow: none;
}

.btn.btn-square {
  border-radius: 0;
}

.table td,
.table th {
  vertical-align: middle;
}

table.dataTable thead .sorting:before,
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:before,
table.dataTable thead .sorting_desc_disabled:after {
  font-size: 0.8rem;
  bottom: 0.9rem;
}

.dataTables_info {
  visibility: hidden;
}

table.dataTable > tbody > tr.child ul.dtr-details {
  display: block;
}

.nav-tabs {
  border-bottom: 2px solid #dee2e6;
}

.nav-tabs.nav-tabs-altern {
  border-bottom: none !important;
}

.nav-tabs .nav-item {
  margin-bottom: -2px;
}

.nav-tabs .nav-link {
  border: none;
  -webkit-transition: color 0.1s ease;
  transition: color 0.1s ease;
  color: inherit;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #007bff;
  background-color: #fff;
  border-bottom: 2px solid #22a1f9;
}

.tab-content {
  padding: 15px 0;
}

@media(min-width: 768px) {
  .tab-content {
    padding: 15px;
  }
}

.svg-inline--fa {
  min-width: 15px;
}

.display-absolute {
  position: absolute;
}

.large-icon {
  font-size: 3em;
}

.license span {
  margin-bottom: 1em;
}

/*------------------------------------------------------------------
[11. Responsive properties]
*/
@media (max-width: 768px) {
  .display-absolute {
    position: relative;
  }
}

@media (max-width: 680px) {
  #body.active .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .nav-dropdown .nav-link-menu {
    position: fixed !important;
    top: 52px !important;
    margin-top: 0;
  }

  .nav-dropdown .nav-link {
    padding: 10px;
  }

  .nav-dropdown .nav-link-menu::before {
    right: 50%;
  }

  #body .navbar-collapse {
    display: none !important;
  }

  .btn-header {
    display: none;
  }
}

@media (min-width: 200px) {
  .navbar-expand-lg .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.card-search-preferred-pharmacy {
  height: 245px;
  max-height: 245px;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 17px 20px 15px 25px;
  border-radius: 30px;
  border: 2px solid #C5C5C5;
  box-shadow: 0px 0px 4px #ACBDDA;
  scrollbar-color: rgba(0, 0, 0, 0.5) rgba(0, 0, 0, 0);
  scrollbar-width: thin;
}

/* Estilo para el scrollbar */
.card-search-preferred-pharmacy::-webkit-scrollbar {
  width: 10px; /* Ancho del scrollbar */
  -webkit-appearance: none;
  background-color: transparent; /* Fondo del scrollbar */
}

/* Estilo para el mango del scrollbar */
.card-search-preferred-pharmacy::-webkit-scrollbar-thumb {
  background-color: #888; /* Color del mango */
  border-radius: 6px !important; /* Borde redondeado del mango */
}

/* Estilo para la pista del scrollbar */
.card-search-preferred-pharmacy::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Color de fondo de la pista */
}

.card-search-preferred-pharmacy .alert-search {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preferred-section {
  width: 100%;
  height: 85px;
  max-height: 85px;
  overflow-y: auto;
  padding: 0 5px;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
}

.preferred-section::-webkit-scrollbar {
  width: 16px;
  -webkit-appearance: none;
}

.preferred-section::-webkit-scrollbar-track {
  background-clip: padding-box;
  border: solid transparent;
  background-color: darkgrey;
  border-radius: 10px;
}

.preferred-section::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 100px;
  outline: 1px solid slategrey;
}

.circle-progre {
  color: #21897e;
  font-weight: 600;
  position: relative;
  border: 1px solid #21897e;
  /* background-color: #21897e; */
  height: 40px;
  width: 40px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.active-circle {
  background-color: #21897e;
  color: #ffffff;
}

.lineform {
  /* width: 213px; */
  width: 0px;
  height: 2px;
  top: 40px;
  left: 190px;
  position: absolute;
  background-color: #21897e;
}

@media (max-width: 553px) {
  .lineform {
    width: 175px;
    top: 40px;
    left: 180px;
  }
}

@media (max-width: 430px) {
  .lineform {
    width: 115px;
    top: 40px;
    left: 150px;
  }
}

@media (max-width: 412px) {
  .lineform {
    width: 110px;
    top: 40px;
    left: 140px;
  }
}

@media (max-width: 390px) {
  .lineform {
    width: 105px;
    top: 40px;
    left: 130px;
  }
}

@media (max-width: 375px) {
  .lineform {
    width: 93px;
    top: 40px;
    left: 130px;
  }
}

.btn-select-active {
  border: #21897e !important;
  background-color: #21897e !important;
}

.active-link-bottom {
  border-bottom: 3px solid #111059;
  padding-bottom: 10px;
  color: #111059;
}

.text-primary {
  color: #111059 !important;
}

.title-smart-tip {
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 400 !important;
  text-align: center;
  color: #616161;
}

.letter-circle {
  font-size: 2.3rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 70px;
  border-radius: 100px;
}

.letter-circle.bg-green-letter {
  background-color: #21897e;
  color: #fff;
}
.letter-circle.bg-red-letter {
  background-color: #FF6663;
  color: #fff;
}
.letter-circle.bg-blue-letter {
  background-color: #00AEFF;
  color: #fff;
}

.box-shadow-letter{
  background-color: #DAE2EF;
  border: 2px solid #DAE2EF;
  box-shadow: 0px 0px 10px 0px #DAE2EF;
}

.cursor-pointer {
  cursor: pointer;
}
