@charset "UTF-8";
.offcanvas {
  position: relative;
}
.offcanvas .offcanvas-body {
  padding-bottom: 132px !important;
  overflow: scroll;
  height: 100%;
}
.offcanvas .offcanvas-body ul {
  padding-left: 0 !important;
}
.offcanvas .offcanvas-footer {
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 0;
  z-index: 5;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  background-color: white;
}
.offcanvas .location-drawer-list__location {
  border: solid 1px #D8D8D8;
  border-radius: 8px;
  padding: 16px;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  position: relative;
}
.offcanvas .location-drawer-list__location:hover:not(.active) {
  cursor: pointer;
}
.offcanvas .location-drawer-list__location::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.offcanvas .location-drawer-list__location small {
  color: #4d4d4d;
}
.offcanvas .location-drawer-list__location .unchecked {
  display: block;
}
.offcanvas .location-drawer-list__location .checked {
  display: none;
}
.offcanvas .location-drawer-list__location.active {
  background-color: #60B7C3;
  color: white;
}
.offcanvas .location-drawer-list__location.active .unchecked {
  display: none;
}
.offcanvas .location-drawer-list__location.active .checked {
  display: block;
}
.offcanvas .location-drawer-list__location.active .location-drawer-list__location__title small {
  color: white;
}
.offcanvas .location-drawer-list__location__thumb {
  background-size: cover;
  background-color: #F4F4F4;
  width: 72px;
  height: 56px;
  border-radius: 4px;
}
.offcanvas .location-drawer-list__location__title {
  display: flex;
  flex-direction: column;
}
.offcanvas .location-drawer-list__location__title small {
  font-weight: normal;
  font-size: 0.8rem;
}
.offcanvas .course-drawer-list__course {
  border: solid 1px #D8D8D8;
  border-radius: 8px;
  padding: 16px;
  display: grid;
  grid-template-columns: 24px 72px 1fr;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  position: relative;
}
.offcanvas .course-drawer-list__course:hover:not(.active) {
  cursor: pointer;
}
.offcanvas .course-drawer-list__course::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.offcanvas .course-drawer-list__course .unchecked {
  display: block;
}
.offcanvas .course-drawer-list__course .checked {
  display: none;
}
.offcanvas .course-drawer-list__course.active {
  background-color: #60B7C3;
  color: white;
}
.offcanvas .course-drawer-list__course.active .unchecked {
  display: none;
}
.offcanvas .course-drawer-list__course.active .checked {
  display: block;
}
.offcanvas .course-drawer-list__course__thumb {
  background-size: cover;
  background-color: #F4F4F4;
  width: 72px;
  height: 56px;
  border-radius: 4px;
}
.offcanvas .course-teachers-list {
  margin-top: 24px;
}
.offcanvas .course-teachers-list__teacher {
  border: solid 1px #D8D8D8;
  border-radius: 8px;
  margin-top: 16px;
  padding: 8px 16px;
  display: grid;
  grid-template-columns: 24px 48px 1fr;
  gap: 16px;
  align-items: center;
  position: relative;
}
.offcanvas .course-teachers-list__teacher:hover {
  cursor: pointer;
}
.offcanvas .course-teachers-list__teacher::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.offcanvas .course-teachers-list__teacher__thumb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #F4F4F4;
  background-size: cover;
  background-position: center;
}
.offcanvas .course-teachers-list__teacher .material-icons.unchecked {
  display: block;
}
.offcanvas .course-teachers-list__teacher .material-icons.checked {
  display: none;
}
.offcanvas .course-teachers-list__teacher.active {
  background-color: #60B7C3;
  border-color: #60B7C3;
  color: white;
}
.offcanvas .course-teachers-list__teacher.active .material-icons.unchecked {
  display: none;
}
.offcanvas .course-teachers-list__teacher.active .material-icons.checked {
  display: block;
}

.margin {
  margin: 16px;
}

.margin-left {
  margin-left: 16px;
}

.margin-right {
  margin-right: 16px;
}

.margin-top {
  margin-top: 16px;
}

.margin-bottom {
  margin-bottom: 16px !important;
}

.no-margin-bottom {
  margin-bottom: 0px !important;
}

.no-margin {
  margin: 0px !important;
}

.padding {
  padding: 16px;
}

.padding-left {
  padding-left: 16px;
}

.padding-right {
  padding-right: 16px;
}

.padding-top {
  padding-top: 16px;
}

.padding-bottom {
  padding-bottom: 16px;
}

.no-padding-bottom {
  padding-bottom: 0px !important;
}

.button-with-icon span {
  display: flex;
}

.title-with-button {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.center-aling {
  text-align: center;
}

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

.border-none {
  border: none !important;
  border-width: 0 !important;
}

.nav-link.active {
  color: #60B7C3 !important;
  font-weight: bold !important;
}

.bg-dark {
  background-color: #333333 !important;
  color: white;
}

.bg-light-grey {
  background: rgb(68, 175, 241);
  background: linear-gradient(332deg, rgb(68, 175, 241) 0%, rgb(97, 207, 124) 50%, rgb(255, 167, 90) 100%);
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.stats {
  height: 280px;
}

.por_tipo {
  max-width: 100%;
  display: grid;
  grid-template-columns: 20vw 1fr;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .por_tipo {
    grid-template-columns: 1fr;
  }
}

.quantity_investments {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .quantity_investments {
    grid-template-columns: 1fr;
  }
}

.stats {
  width: 100% !important; /* Se asegura de que no crezca más allá del contenedor */
  height: auto !important; /* Ajuste automático según el width */
  max-height: 300px; /* Limita la altura para que no sobresalga */
}

/* Ajustes para pantallas pequeñas */
@media screen and (max-width: 768px) {
  .por_tipo, .quantity_investments {
    grid-template-columns: 1fr;
  }
}
.hero-home {
  height: 40vh;
  background-image: url("../assets/banner-home.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.hero-home img {
  width: 260px;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.proyect-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  background-color: #F4F4F4;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  gap: 8px;
}
.pagination li.active a {
  background-color: #60B7C3;
  color: white;
}
.pagination li.disabled a {
  background-color: #F4F4F4;
  color: #D8D8D8;
}
.pagination li:not(.active-arrow-nav):hover {
  background-color: #F4F4F4;
  border-radius: 8px;
}
.pagination li.active-arrow-nav a {
  background-color: #60B7C3;
  color: white;
}
.pagination li a {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333333;
  font-size: 18px;
}

.search-ui {
  position: relative;
}
.search-ui input {
  padding-right: 32px;
}
.search-ui .clear-btn {
  position: absolute;
  right: 8px;
  top: 2px;
  bottom: 0;
  margin: auto;
  font-size: 32px;
  cursor: pointer;
}
.search-ui .clear-btn.disabled {
  opacity: 0.3;
  cursor: none;
}

.kpi {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 991px) {
  .kpi {
    grid-template-columns: repeat(2, 1fr);
  }
}
.kpi__item {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  padding: 16px;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(51, 51, 51, 0.3);
  color: #333333;
}
.kpi__item h3 {
  font-size: calc(1rem + 0.6vw);
}
.kpi__item .material-icons {
  font-size: 1.8rem;
}
.kpi__item.disabled {
  color: rgba(51, 51, 51, 0.4);
}/*# sourceMappingURL=style.css.map */