body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.margin {
  margin: 16px;
}

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

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

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

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

.no-margin-bottom {
  margin-bottom: 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;
}

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

.institution__added {
  display: grid;
  grid-template-columns: 120px 1fr 24px;
  gap: 16px;
}
.institution__added i {
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .institution__added {
    grid-template-columns: 80px 1fr 24px;
  }
}
.institution__added__logo {
  background-color: white;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.institution__added__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.cursor-pointer {
  cursor: pointer;
}

.strong {
  font-weight: bold;
}

.hide {
  display: none !important;
}

.institucion-financiamiento {
  position: relative;
}
.institucion-financiamiento::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.presupuestos .presupuesto .budget {
  position: relative;
}
.presupuestos .presupuesto .budget .delete-budget {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
}

.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;
}

.library {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, minmax(100px, 1fr));
  gap: 16px;
}
@media screen and (max-width: 768px) and (min-width: 601px) {
  .library {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .library {
    grid-template-columns: repeat(1, 1fr);
  }
}
.library__doc {
  padding: 16px;
  border: solid 1px #0F3A5D;
  color: #333333;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
.library__doc:hover, .library__doc:active {
  background-color: #F6F3E0;
}
.library__doc__footer {
  display: flex;
  gap: 16px;
}

footer {
  background-color: #0f3a5d;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  margin-top: 24px;
}
footer p {
  padding: 0;
  margin: 0;
}

.nav-link.active {
  color: #0F3A5D !important;
  font-weight: bolder;
}

.comunas-proyecto {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
.comunas-proyecto__item {
  background-color: #E8EEE6;
  padding: 8px 16px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.comunas-proyecto__item i {
  cursor: pointer;
}

.comuna-management {
  display: flex;
  gap: 16px;
  align-items: center;
}

.navigation__proyectos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}
.navigation__proyectos .navigation__proyectos-btn {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.teacher-photo-preview {
  width: 100%;
  height: 220px;
  background-color: #F0F0F0;
  margin: auto;
  position: relative;
  background-size: cover;
  background-position: center;
}
.teacher-photo-preview .fake-button {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../assets/camera-btn.svg);
}
.teacher-photo-preview input {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  cursor: pointer;
}

.capitalize {
  text-transform: capitalize;
}

.pk-input-field {
  position: relative;
  margin: 0;
  margin-top: 24px;
  padding: 0;
  height: 40px;
  line-height: 40px;
  width: 100%;
}
.pk-input-field label {
  position: absolute;
  font-size: 1rem;
  padding: 0 16px;
  transform: translate(0, 0) scale(1);
  z-index: 1;
  transition: all 0.2s ease-in-out;
}
.pk-input-field label span {
  color: red !important;
}
.pk-input-field label.active {
  height: 16px;
  line-height: 16px;
  transform: translate(8px, -8px) scale(0.88);
  background-color: white;
  padding: 0 8px;
}
.pk-input-field input, .pk-input-field select, .pk-input-field textarea {
  width: 100%;
  position: absolute;
  padding: 0 16px;
  line-height: 40px;
  outline: none;
  border: solid 2px #F6F3E0;
  background-color: #F6F3E0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
}
.pk-input-field input::-moz-placeholder, .pk-input-field select::-moz-placeholder, .pk-input-field textarea::-moz-placeholder {
  opacity: 0;
}
.pk-input-field input::placeholder, .pk-input-field select::placeholder, .pk-input-field textarea::placeholder {
  opacity: 0;
}
.pk-input-field input:valid, .pk-input-field select:valid, .pk-input-field textarea:valid {
  border-color: #E8EEE6;
  background-color: white;
}
.pk-input-field input:required:-moz-placeholder, .pk-input-field select:required:-moz-placeholder, .pk-input-field textarea:required:-moz-placeholder {
  border-color: #F6F3E0;
  background-color: #F6F3E0;
}
.pk-input-field input:required:placeholder-shown, .pk-input-field select:required:placeholder-shown, .pk-input-field textarea:required:placeholder-shown {
  border-color: #F6F3E0;
  background-color: #F6F3E0;
}
.pk-input-field input:invalid:not(:-moz-placeholder), .pk-input-field select:invalid:not(:-moz-placeholder), .pk-input-field textarea:invalid:not(:-moz-placeholder) {
  border-color: #EA5252;
}
.pk-input-field input:invalid:not(:placeholder-shown), .pk-input-field select:invalid:not(:placeholder-shown), .pk-input-field textarea:invalid:not(:placeholder-shown) {
  border-color: #EA5252;
}
.pk-input-field input:invalid:not(:-moz-placeholder) + label, .pk-input-field select:invalid:not(:-moz-placeholder) + label, .pk-input-field textarea:invalid:not(:-moz-placeholder) + label {
  color: #EA5252;
  height: 16px;
  line-height: 16px;
  transform: translate(8px, -8px) scale(0.88);
  background-color: white;
  border-radius: 8px;
  padding: 0 8px;
}
.pk-input-field input:invalid:not(:placeholder-shown) + label, .pk-input-field select:invalid:not(:placeholder-shown) + label, .pk-input-field textarea:invalid:not(:placeholder-shown) + label {
  color: #EA5252;
  height: 16px;
  line-height: 16px;
  transform: translate(8px, -8px) scale(0.88);
  background-color: white;
  border-radius: 8px;
  padding: 0 8px;
}
.pk-input-field input:focus, .pk-input-field select:focus, .pk-input-field textarea:focus {
  border-color: #EB4606;
  background-color: white;
}
.pk-input-field input:required:focus, .pk-input-field select:required:focus, .pk-input-field textarea:required:focus {
  border-color: #EB4606;
  background-color: white;
}
.pk-input-field input.error, .pk-input-field select.error, .pk-input-field textarea.error {
  border-color: #EA5252;
  background-color: white;
}
.pk-input-field input.error + label, .pk-input-field select.error + label, .pk-input-field textarea.error + label {
  color: #EA5252;
  height: 16px;
  line-height: 16px;
  transform: translate(8px, -8px) scale(0.88);
  background-color: white;
  border-radius: 8px;
  padding: 0 8px;
}
.pk-input-field input[readonly] {
  border: solid 2px #E8EEE6;
  background-color: #F6F3E0;
  color: #EB4606;
  opacity: 0.7;
}
.pk-input-field input[readonly]:focus {
  border-color: #E8EEE6;
  background-color: #F6F3E0;
}
.pk-input-field select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23131313%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem top 50%;
  background-size: 0.65rem auto;
}
.pk-input-field input:focus + label, .pk-input-field input:valid + label {
  color: #EB4606;
  height: 16px;
  line-height: 16px;
  transform: translate(8px, -8px) scale(0.88);
  background-color: white;
  border-radius: 8px;
  padding: 0 8px;
}
.pk-input-field.icon-left .pk-icon-left {
  position: absolute;
  line-height: 40px;
  left: 8px;
  z-index: 0;
}
.pk-input-field.icon-left input {
  padding-left: 40px;
}
.pk-input-field.icon-left label {
  padding-left: 40px;
}
.pk-input-field.icon-left input:focus ~ .pk-icon-left, .pk-input-field.icon-left input:valid ~ .pk-icon-left {
  color: #EB4606;
}
.pk-input-field.icon-right .pk-icon-right {
  position: absolute;
  line-height: 40px;
  right: 8px;
  z-index: 0;
}
.pk-input-field.icon-right .pk-icon-right-btn {
  position: absolute;
  line-height: 36px;
  right: 8px;
  z-index: 1;
  color: white;
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 0;
  top: 4px;
  right: 4px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.pk-input-field.icon-right .pk-icon-right-btn:hover:not(.disabled):before {
  background-color: rgb(248.9377593361, 82.2261410788, 17.5622406639) !important;
}
.pk-input-field.icon-right .pk-icon-right-btn:active:not(.disabled):before {
  background-color: rgb(195.2157676349, 58.1493775934, 4.9842323651) !important;
}
.pk-input-field.icon-right .pk-icon-right-btn.disabled {
  cursor: default;
  opacity: 0.5;
}
.pk-input-field.icon-right .pk-icon-right-btn::before {
  content: "";
  position: absolute;
  display: block;
  width: 36px;
  height: 36px;
  background-color: #60B7C3;
  border-radius: 6px;
  z-index: -1;
  top: 0;
  right: 0;
}
.pk-input-field.icon-right input {
  padding-right: 40px;
}
.pk-input-field.icon-right label {
  padding-right: 40px;
}
.pk-input-field.icon-right input:focus ~ .pk-icon-left, .pk-input-field.icon-right input:valid ~ .pk-icon-left {
  color: #EB4606;
}
.pk-input-field.select-right .pk-icon-right {
  position: absolute;
  line-height: 40px;
  right: 8px;
}
.pk-input-field.select-right input:focus ~ .pk-icon-left, .pk-input-field.select-right input:valid ~ .pk-icon-left {
  color: #EB4606;
}
.pk-input-field textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  padding: 16px;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 8px;
  border: solid 2px #F6F3E0;
  background-color: #F6F3E0;
  transition: all 0.2s ease-in-out;
  position: absolute;
}
.pk-input-field textarea::-moz-placeholder {
  opacity: 0;
}
.pk-input-field textarea::placeholder {
  opacity: 0;
}
.pk-input-field textarea:focus {
  border-color: #EB4606;
  background-color: white;
}
.pk-input-field textarea:valid {
  border-color: #E8EEE6;
  background-color: white;
}
.pk-input-field textarea:focus + label, .pk-input-field textarea:valid + label {
  transform: translate(8px, -8px) scale(0.88);
  background-color: white;
  border-radius: 8px;
  padding: 0 8px;
  height: 16px;
  line-height: 16px;
  color: #EB4606;
}
.pk-input-field textarea:invalid:not(:-moz-placeholder) {
  border-color: #EA5252;
}
.pk-input-field textarea:invalid:not(:placeholder-shown) {
  border-color: #EA5252;
}
.pk-input-field textarea.error {
  border-color: #EA5252;
  background-color: white;
}

.pk-textarea {
  margin-top: 24px;
}

.register__phone-container {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 16px;
}

.register__gests {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
}
.register__gests .form-check {
  margin-top: 16px;
}
@media screen and (max-width: 600px) {
  .register__gests {
    grid-template-columns: repeat(2, 1fr);
  }
}

.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;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  background-color: white;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  gap: 8px;
}
.pagination li.active a {
  background-color: #0f3a5d;
  color: white;
}
.pagination li.disabled a {
  background-color: rgb(236.82, 230.76, 192.38);
  color: rgb(204.69, 187.92, 81.71);
}
.pagination li:not(.active-arrow-nav):hover {
  background-color: rgb(236.82, 230.76, 192.38);
  border-radius: 8px;
}
.pagination li.active-arrow-nav a {
  background-color: #0F3A5D;
  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;
}

.proyect-filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media screen and (max-width: 600px) {
  .proyect-filters {
    grid-template-columns: 1fr;
  }
}

.indicator {
  display: flex;
  align-items: stretch;
  min-height: 600px;
  margin-top: 72px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .indicator {
    flex-direction: column;
  }
}
.indicator .handler {
  width: 48px;
  max-width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 0 16px 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-72px);
  color: white;
  background-color: #0f3a5d;
}
@media screen and (max-width: 600px) {
  .indicator .handler {
    width: 100%;
    max-width: calc(100% - 32px);
    margin: 0 16px;
    border-radius: 16px;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 16px;
    transform: translateX(calc(100% + 32px));
  }
}
.indicator .handler.hide {
  display: none;
}
@media screen and (min-width: 601px) {
  .indicator .handler.hide {
    animation: sideOff 0.3s ease-in forwards;
  }
  @keyframes sideOff {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-72px);
    }
  }
}
@media screen and (min-width: 600px) {
  .indicator .handler.hide {
    animation: sideOff 0.3s ease-in forwards;
  }
  @keyframes sideOff {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
      display: none;
    }
  }
}
@media screen and (min-width: 601px) {
  .indicator .handler.show {
    animation: sideIn 0.3s ease-in 0.3s forwards;
  }
  @keyframes sideIn {
    to {
      transform: translateX(0);
    }
  }
}
@media screen and (max-width: 600px) {
  .indicator .handler.show {
    animation: sideIn 0.3s ease-in forwards;
  }
  @keyframes sideIn {
    to {
      transform: translateX(0);
    }
  }
}
@media screen and (min-width: 601px) {
  .indicator .handler span {
    display: none;
  }
}
.indicator aside {
  min-height: 100%;
  width: 400px;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .indicator aside {
    width: auto;
    margin-right: 16px;
  }
}
.indicator aside.hide {
  opacity: 1;
  animation: sideOff 0.3s ease-in forwards;
}
@media screen and (max-width: 600px) {
  .indicator aside.hide {
    display: none;
  }
}
@keyframes sideOff {
  0% {
    width: 400px;
    opacity: 1;
  }
  50% {
    width: 400px;
    transform: translateX(-100%);
    opacity: 1;
  }
  100% {
    width: 0px;
    transform: translateX(-100%);
    opacity: 0;
    display: none;
  }
}
.indicator aside.show {
  animation: sideIn 0.3s ease-in forwards;
}
@keyframes sideIn {
  0% {
    transform: translateX(-100%);
    width: 0px;
    opacity: 0;
  }
  50% {
    width: 400px;
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.indicator aside .wrapper {
  height: 100%;
  margin: 0 0 0 16px;
  padding: 16px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #0f3a5d;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.indicator aside .wrapper .aside-nav {
  display: flex;
  justify-content: space-between;
}
.indicator aside .wrapper .nav-back {
  color: white;
  text-decoration: none;
}
.indicator aside .wrapper .nav-back p {
  margin-bottom: 0 !important;
}
.indicator aside .wrapper .actions {
  display: flex;
  gap: 16px;
}
.indicator aside .wrapper .art {
  text-align: left;
  padding-top: 24px;
}
.indicator aside .wrapper .art img {
  margin: auto;
  width: 224px;
  border-radius: 0 0 0 10px;
}
.indicator article {
  flex: 1;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 600px) {
  .indicator article {
    margin-top: 48px;
  }
}
.indicator article .container div {
  padding: 16px;
}

.hero-about {
  position: relative;
  min-height: 50vh;
  height: -moz-max-content;
  height: max-content;
  overflow: hidden;
  color: white;
}
.hero-about h1 {
  margin-top: 24px;
  font-size: 3.6rem !important;
}
@media screen and (max-width: 768px) {
  .hero-about h1 {
    font-size: 2.2rem !important;
  }
}
.hero-about .hero-about__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-about .hero-about__bg .swiper {
  width: 100%;
  height: 100%;
}
.hero-about .hero-about__bg .swiper-slide {
  width: 100%;
  height: 100%;
  background-color: #333333;
}
.hero-about .hero-about__bg .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
}
.hero-about__content {
  padding: 24px;
  position: relative;
  z-index: 1;
  min-height: 50vh;
  height: -moz-max-content;
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-about__content.title_only {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-about__content h1 {
  font-size: 4.2rem;
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.mision__head {
  padding-top: 16px;
  border-top: 1px solid #0F3A5D;
}
.mision__header {
  height: 40vh;
  background-color: #0F3A5D;
  position: relative;
}
.mision__header__image {
  width: 100%;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  z-index: 1;
}
.mision__header__content {
  color: white;
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px;
}/*# sourceMappingURL=style.css.map */