* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  color: #6e6e6e;
  font-family: "Roboto", sans-serif;
}

body {
  background-color: #F3F3F3;
}

main {
  padding: 1rem;
}

::selection {
  background-color: #6e6e6e;
  color: #FFFFFF;
}

img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.alert {
  color: #FFFFFF;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  padding-right: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  margin-top: -1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.alert--success {
  background-color: #55a30b;
}
.alert--danger {
  background-color: #A00505;
}

.main__header {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #D1D1D1;
}
.main__header__superior {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}
.main__header__logo {
  max-width: 100px;
  margin-right: auto;
}
.main__header__icon {
  margin-left: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  flex-grow: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 0.9rem;
  text-decoration: none;
  outline: none;
  border: none;
  cursor: pointer;
  color: #FFFFFF;
  background-color: #02abed;
  border: 2px solid #FFFFFF;
}
.main__header__icon:hover {
  background-color: #1f4a5c;
  color: #FFFFFF;
}
.main__header__icon--inverse {
  color: #02abed;
  background-color: #FFFFFF;
}
.main__header__saludo {
  color: #9B9B9B;
  font-size: 0.9rem;
}

.section__header {
  display: flex;
  align-items: baseline;
  padding-bottom: 1.25rem;
}
.section__icon--active {
  color: #7cc7e4;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
  cursor: pointer;
}
.section__icon--active:hover {
  color: #02abed;
}
.section__icon--inactive {
  color: #B6B6B6;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
  cursor: pointer;
}
.section__icon--inactive:hover {
  color: #02abed;
}
.section__titulo {
  font-size: 1.25rem;
  font-weight: bold;
  color: #6e6e6e;
  margin-right: auto;
}
.section__footer {
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  width: 100%;
  background-image: linear-gradient(to top, #FFFFFF, #FFFFFF 80%, transparent);
}
.section__footer__btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  background-color: #FFFFFF;
  box-shadow: 5px 5px 10px rgba(182, 182, 182, 0.8);
  text-decoration: none;
  text-align: center;
  outline: none;
  margin: 0;
  font-size: 1rem;
  line-height: 1.2rem;
  cursor: pointer;
  color: #FFFFFF;
  background-image: linear-gradient(to right, #02abed, #32809f);
  border: 1px solid #32809f;
}
.section__footer__btn:hover {
  background-image: linear-gradient(to right, #32809f, #1f4a5c);
  color: #FFFFFF;
}
.section__estadistica {
  padding: 0.5rem 1rem;
  color: #FFFFFF;
  background-color: #32809f;
  margin-bottom: 1rem;
  border-radius: 5px;
}
.section__estadistica:last-of-type {
  margin-bottom: 2rem;
}

.buscador {
  margin-bottom: 2rem;
  background-color: #FFFFFF;
  padding: 2rem 1rem;
  border-radius: 10px;
  border: 1px solid #E7E7E7;
  box-shadow: 5px 5px 10px rgba(182, 182, 182, 0.8);
}
.buscador__label {
  display: block;
}
.buscador__label--regular {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  color: #9B9B9B;
}
.buscador__label--big {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: bold;
  color: #6e6e6e;
}
.buscador__input {
  width: 100%;
  color: #6e6e6e;
  border: 1px solid #B6B6B6;
  padding: 0.5rem;
  outline: none;
  box-shadow: none;
}
.buscador__input:focus {
  border: 1px solid #02abed;
  color: #6e6e6e;
  background-color: #cde9f4;
}
.buscador__input::placeholder {
  color: #B6B6B6;
}
.buscador--bgdegradado {
  background-image: linear-gradient(to bottom left, #F3F3F3, #FFFFFF);
}
.buscador__error {
  font-size: 0.8rem;
  color: #E70606;
}

.buscador--limpio {
  margin-bottom: 2rem;
  padding: 2rem 1rem;
}
.buscador--limpio__label {
  color: #6e6e6e;
  font-size: 0.8rem;
  display: block;
  color: #9B9B9B;
}
.buscador--limpio__label--regular {
  margin-bottom: 0.25rem;
}
.buscador--limpio__label--big {
  margin-bottom: 1rem;
}
.buscador--limpio__input {
  width: 100%;
  color: #6e6e6e;
  border: 1px solid #B6B6B6;
  padding: 0.5rem;
  outline: none;
  box-shadow: none;
}
.buscador--limpio__input:focus {
  border: 1px solid #02abed;
  color: #6e6e6e;
  background-color: #cde9f4;
}
.buscador--limpio__input::placeholder {
  color: #B6B6B6;
}
.buscador--limpio--bgdegradado {
  background-image: linear-gradient(to bottom left, #F3F3F3, #FFFFFF);
}
.buscador--limpio__error {
  font-size: 0.8rem;
  color: #E70606;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.75rem;
  margin-bottom: 7rem;
}

.card {
  background-color: #FFFFFF;
  background-image: linear-gradient(to left, #FFFFFF, rgba(209, 209, 209, 0.2));
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #E7E7E7;
  box-shadow: 0px 1px 0px rgba(182, 182, 182, 0.8), 0px -1px 2px rgba(182, 182, 182, 0.1);
}
.card--small {
  margin-left: 1.5rem;
}
.card__roundbtn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  flex-grow: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 0.9rem;
  text-decoration: none;
  outline: none;
  border: none;
  cursor: pointer;
  color: #FFFFFF;
  background-color: #02abed;
  border: 2px solid #FFFFFF;
  margin-right: 1rem;
}
.card__roundbtn:hover {
  background-color: #1f4a5c;
  color: #FFFFFF;
}
.card__roundbtn--danger {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  flex-grow: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 0.9rem;
  text-decoration: none;
  outline: none;
  border: none;
  cursor: pointer;
  color: #02abed;
  background-color: #FFFFFF;
  margin-left: auto;
  color: #E70606;
}
.card__roundbtn--danger:hover {
  background-color: #1f4a5c;
  color: #FFFFFF;
}
.card__roundbtn--danger:hover {
  color: #FFFFFF;
  background-color: #E70606;
}
.card__roundbtn--success {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  flex-grow: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 0.9rem;
  text-decoration: none;
  outline: none;
  border: none;
  cursor: pointer;
  color: #02abed;
  background-color: #FFFFFF;
  margin-left: auto;
  color: #55a30b;
}
.card__roundbtn--success:hover {
  background-color: #1f4a5c;
  color: #FFFFFF;
}
.card__roundbtn--success:hover {
  color: #FFFFFF;
  background-color: #55a30b;
}
.card__titulo {
  font-size: 0.9rem;
  color: #161616;
}
.card__descripcion {
  font-size: 0.8rem;
  color: #B6B6B6;
}
.card__fecha {
  font-size: 0.8rem;
  color: #9B9B9B;
}
.card__editar {
  color: #E70606;
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
}
.card__editar:hover {
  color: #FFFFFF;
  font-size: 0.7rem;
  background-color: #E70606;
}
.card__horas {
  font-size: 0.7rem;
  color: #9B9B9B;
  text-align: center;
  margin-left: auto;
  padding-left: 1rem;
}
.card__horas span {
  font-size: 1.25rem;
  color: #02abed;
  display: block;
}
.card__content a {
  display: inline-block;
  padding: 0.5rem;
  width: 120px;
  height: 120px;
}
.card__content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.horas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  grid-gap: 1rem;
  margin-bottom: 2rem;
}
.horas__grid--2col {
  grid-template-columns: 1fr 1fr;
}
.horas__grid label {
  display: block;
  padding: 1rem;
  border-radius: 10px;
  background-color: #FFFFFF;
  text-align: center;
  font-size: 0.8rem;
  color: #B6B6B6;
  box-shadow: 0px 1px 0px rgba(182, 182, 182, 0.8), 0px -1px 2px rgba(182, 182, 182, 0.1);
}
.horas__grid label.date-label {
  display: block;
  padding: 0;
  border-radius: none;
  background-color: transparent;
  text-align: left;
  font-size: 0.8rem;
  color: #02abed;
  box-shadow: none;
  margin-top: 1rem;
}
.horas__grid span {
  display: block;
  font-size: 1rem;
  color: #02abed;
}
.horas__grid input[type=radio] {
  display: none;
}
.horas__grid input[type=radio]:checked + label {
  background-image: linear-gradient(to bottom left, #02abed, #32809f);
  color: #FFFFFF;
}
.horas__grid input[type=radio]:checked + label span {
  color: #FFFFFF;
}
.horas__grid input[type=date], .horas__grid input[type=number], .horas__grid select {
  width: 100%;
  font-family: "Roboto";
  color: #6e6e6e;
  border: 1px solid #B6B6B6;
  padding: 0.5rem;
  outline: none;
  box-shadow: none;
  background-color: #FFFFFF;
}
.horas__grid input[type=date]:focus, .horas__grid input[type=number]:focus, .horas__grid select:focus {
  border: 1px solid #02abed;
  color: #6e6e6e;
  background-color: #cde9f4;
}
.horas__grid input[type=date]::placeholder, .horas__grid input[type=number]::placeholder, .horas__grid select::placeholder {
  color: #B6B6B6;
}
.horas__grid p {
  color: #fc7d07;
}
.horas__label {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #6e6e6e;
}
.horas__date {
  font-size: 0.8rem;
  color: #9B9B9B;
}
.horas__textarea {
  width: 100%;
  color: #6e6e6e;
  border: 1px solid #B6B6B6;
  padding: 0.5rem;
  outline: none;
  box-shadow: none;
  margin-bottom: 1rem;
  height: 100px;
}
.horas__textarea:focus {
  border: 1px solid #02abed;
  color: #6e6e6e;
  background-color: #cde9f4;
}
.horas__textarea::placeholder {
  color: #9B9B9B;
}
.horas__botones {
  display: flex;
  justify-content: space-between;
}
.horas__btn--regular {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  background-color: #FFFFFF;
  box-shadow: 5px 5px 10px rgba(182, 182, 182, 0.8);
  text-decoration: none;
  text-align: center;
  outline: none;
  margin: 0;
  font-size: 1rem;
  line-height: 1.2rem;
  cursor: pointer;
  color: #FFFFFF;
  background-image: linear-gradient(to right, #02abed, #32809f);
  border: 1px solid #32809f;
  margin-right: auto;
}
.horas__btn--regular:hover {
  background-image: linear-gradient(to right, #32809f, #1f4a5c);
  color: #FFFFFF;
}
.horas__btn--inverse {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  background-color: #FFFFFF;
  box-shadow: 5px 5px 10px rgba(182, 182, 182, 0.8);
  text-decoration: none;
  text-align: center;
  outline: none;
  margin: 0;
  font-size: 1rem;
  line-height: 1.2rem;
  cursor: pointer;
  color: #32809f;
  background-image: linear-gradient(to right, #FFFFFF, #F3F3F3);
  border: 1px solid #D1D1D1;
}
.horas__btn--inverse:hover {
  background-image: linear-gradient(to right, #32809f, #1f4a5c);
  color: #FFFFFF;
}

.btn--full {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  background-color: #FFFFFF;
  box-shadow: 5px 5px 10px rgba(182, 182, 182, 0.8);
  text-decoration: none;
  text-align: center;
  outline: none;
  margin: 0;
  font-size: 1rem;
  line-height: 1.2rem;
  cursor: pointer;
  color: #FFFFFF;
  background-image: linear-gradient(to right, #02abed, #32809f);
  border: 1px solid #32809f;
  width: 100%;
  margin: 1rem 0;
}
.btn--full:hover {
  background-image: linear-gradient(to right, #32809f, #1f4a5c);
  color: #FFFFFF;
}

.error {
  color: #E70606 !important;
}

.success {
  color: #55a30b !important;
}

.fullrow {
  grid-column: 1/-1;
}

.galeria {
  columns: 3;
  margin-bottom: 2rem;
}
.galeria__photo {
  display: block;
  object-fit: cover;
}

@media only screen and (max-width: 1000px) {
  .galeria {
    columns: 2;
    column-gap: 0px;
  }
}
@media only screen and (max-width: 600px) {
  .galeria {
    columns: 1;
  }
}
input[type=file] {
  display: block;
  width: 100%;
  font-family: "Roboto";
  color: #6e6e6e;
  border: 1px solid #B6B6B6;
  padding: 0.5rem;
  outline: none;
  box-shadow: none;
  background-color: #FFFFFF;
  margin-bottom: 1rem;
}

.login {
  width: 100%;
  height: 100vh;
  background-color: white;
  background: linear-gradient(to bottom left, #7cc7e4, #32809f) left top no-repeat;
  background-size: 100% 50vh;
  padding: 12vh 20vw;
}
.login__form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.login__container, .login__logotipo {
  height: 200px;
}
.login__titulo {
  color: white;
  text-transform: uppercase;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 1rem;
}
.login__input {
  width: 100%;
  background-color: white;
  height: 34px;
  margin-bottom: 1rem;
  border-radius: 5px;
  border: none;
  text-align: center;
  color: grey;
}
.login__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  outline: none;
  border: none;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  font-size: 1.75rem;
  transition: all 0.2s ease;
  cursor: pointer;
}
.login__btn:hover {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  background-color: #1f4a5c;
  color: #FFFFFF;
}
.login__pie {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  border-top: 1px solid lightgray;
  padding-top: 1rem;
}

.modal {
  position: fixed;
  z-index: 1;
  left: 0;
  top: -500px;
  width: 100%;
  background-color: #fefefe;
  padding: 0;
  height: 400px;
  transition: transform 0.5s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
}
.modal__header {
  padding: 16px;
  background-color: #F3F3F3;
  color: gray-dark;
  font-size: 1.25rem;
  font-weight: bold;
}
.modal__body {
  padding: 1rem;
}
.modal__fecha {
  margin-bottom: 1rem;
  color: #B6B6B6;
  font-size: 0.9rem;
}
.modal__input {
  width: 100%;
  color: #6e6e6e;
  border: 1px solid #B6B6B6;
  padding: 0.5rem;
  outline: none;
  box-shadow: none;
}
.modal__input:focus {
  border: 1px solid #02abed;
  color: #6e6e6e;
  background-color: #cde9f4;
}
.modal__input::placeholder {
  color: #B6B6B6;
}
.modal__footer {
  padding: 1rem;
}
.modal__mostrar {
  transform: translateY(500px);
}/*# sourceMappingURL=style.css.map */