@charset "UTF-8";
html {
  height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  height: 100%;
  padding: 1rem;
  background-color: #F8F8FF;
}

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

*::selection {
  background: #4a9463;
  color: white;
}

.socials-row {
  display: flex;
}
.socials-row img {
  width: 1.5rem;
  height: 1.5rem;
}
.socials-row > a {
  padding: 0.5rem;
  border-radius: 0.5rem;
  width: 100%;
  min-height: 3.5rem;
  display: flex;
  gap: 0.75rem;
  color: #17222A;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.1rem;
  color: #17222A;
  padding: 0.5rem;
  border: 1px solid #a9a9a9;
  border-radius: 10rem;
  transition: all 0.3s ease;
}
.socials-row > a svg {
  color: #17222A;
}
.socials-row > a:hover {
  border: 1px solid #4a9463;
}

.form-welcome-row {
  margin-bottom: 1rem;
}
.form-welcome-row h1 {
  color: #4a9463;
  font-size: 2rem;
  line-height: 2rem;
  font-weight: normal;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.form-welcome-row h2 {
  color: #687076;
  font-size: 1.1rem;
  font-weight: normal;
}

.divider {
  display: flex;
  white-space: nowrap;
  flex-direction: row;
  color: #17222A;
  gap: 1rem;
  align-items: center;
}

.divider-line {
  width: 100%;
  height: 1px;
  background: #17222A;
  opacity: 0.2;
}

.form-wrapper {
  position: relative;
  margin: 0 auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
  gap: 1rem;
  max-height: 200rem;
  height: 100%;
  width: 100%;
}

.form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  position: relative;
}
@media (max-width: 720px) {
  .form-side {
    flex-direction: column-reverse;
  }
}

.logo {
  height: 4rem;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}

.my-form {
  display: flex;
  flex-direction: column;
  justify-content: start;
  position: relative;
  gap: 1.25rem;
  max-width: 26rem;
  width: 100%;
}
.my-form:invalid .my-form__button {
  pointer-events: none;
  background: #A8D42E;
  border: 1px solid #A8D42E;
  padding-left: 2px;
}

.my-form-confirmate {
  max-width: 100%;
}

.my-form__button {
  background: #4a9463;
  color: #FFFFFF;
  white-space: nowrap;
  display: grid;
  place-items: center;
  margin-top: 1rem;
  line-height: 3.25rem;
  outline: none;
  border: none;
  font-size: 1.125rem;
  cursor: pointer;
  width: 100%;
  border-radius: 10rem;
  transition: all 0.3s ease;
}
.my-form__button:hover {
  color: #F8F8FF;
  background-color: #A8D42E;
}

.my-form__actions {
  display: flex;
  flex-direction: column;
  color: #D4D7DE;
  gap: 1rem;
  margin-top: 0.5rem;
}
.my-form__actions a {
  color: #17222A;
}
.my-form__actions a:hover {
  color: #687076;
  text-decoration: underline;
}

.my-form__row {
  display: flex;
  justify-content: center;
  color: #17222A;
  gap: 1rem;
}

.text-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.text-field input {
  color: #17222A;
  max-width: 100%;
  width: 100%;
  border: 1px solid #a9a9a9;
  min-height: 3rem;
  letter-spacing: 0.03rem;
  outline: none;
  transition: 0.25s;
  border-radius: 10rem;
  padding: 0 20px;
}
.text-field input::placeholder {
  color: #D4D7DE;
}
.text-field input:user-invalid {
  background: #FFFFFF;
  color: #e5484d;
  border: 1px solid #e5484d;
}
.text-field input:user-invalid ~ .error-message {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: #e5484d;
}
.text-field input:focus {
  border: 1px solid #4a9463;
}
.text-field input[type=number] {
  color: #17222A;
  max-width: 100%;
  width: 100%;
  border: 1px solid #a9a9a9;
  min-height: 3rem;
  letter-spacing: 0.03rem;
  outline: none;
  transition: 0.25s;
  border-radius: 10rem;
  text-indent: 1.25rem;
  padding: 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  /* Quita flechas en Firefox */
  background: white;
}
.text-field select {
  color: #17222A;
  max-width: 100%;
  width: 100%;
  border: 1px solid #a9a9a9;
  min-height: 3rem;
  letter-spacing: 0.03rem;
  outline: none;
  transition: 0.25s;
  border-radius: 10rem;
  text-indent: 1.25rem;
  padding: 10px 40px 10px 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: white url('data:image/svg+xml;utf8,<svg fill="gray" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;
  background-size: 1em;
}
.text-field label {
  color: #17222A;
}

.error-message {
  display: none;
}

.info-side {
  display: flex;
  justify-content: center;
  align-items: end;
  padding: 2rem;
  max-height: 80rem;
  border-radius: 2rem;
  background: url("../img/background.jpg") repeat center center;
  background-position: 55% 50%;
  height: 100vh;
  background-size: cover;
}
@media (max-width: 720px) {
  .info-side {
    background: url("../img/img-form-register-mobile.png") no-repeat top center;
    height: 30vh;
  }
}
.info-side .blockquote-wrapper {
  gap: 1.5rem;
  position: relative;
  padding: 1rem;
  max-width: 25rem;
  background: rgba(255, 255, 255, 0.856);
  border-radius: 1rem;
}
.info-side .blockquote-wrapper p {
  margin: 0;
}
.info-side .blockquote-wrapper img {
  margin-top: 0.5rem;
  width: 100%;
}
@media (max-width: 720px) {
  .info-side .blockquote-wrapper {
    display: none;
  }
}

.row-detail-modal {
  padding-bottom: 20px;
}

.text-field-info-list-reservate {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.text-field-info-list-reservate p {
  margin: 0;
}
.text-field-info-list-reservate span {
  color: #17222A;
  max-width: 100%;
  width: 100%;
  border: 1px solid #a9a9a9;
  min-height: 3rem;
  letter-spacing: 0.03rem;
  outline: none;
  transition: 0.25s;
  border-radius: 10rem;
  padding: 0 20px;
  display: flex;
  align-items: center;
}
.text-field-info-list-reservate span:focus {
  border: 1px solid #4a9463;
}
.text-field-info-list-reservate label {
  color: #17222A;
}

@media (max-width: 720px) {
  .form-wrapper {
    grid-template-columns: 1fr;
  }
}
.table-widget {
  border-radius: 1rem;
  background: var(--table-background);
  padding: 1.5rem;
  border: 2px solid var(--gray-background);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  text-align: left;
  overflow-x: auto;
  font-family: "Poppins", sans-serif;
}

.table-widget table {
  max-width: fit-content;
  border-collapse: collapse;
}

.table-widget caption {
  font-size: 1.12rem;
  font-weight: 500;
  text-align: left;
}
.table-widget caption .table-row-count {
  font-size: 0.8rem;
  font-weight: 400;
  background: var(--gray-mid);
  padding: 0.5rem;
  display: inline-flex;
  align-items: center;
  margin-left: 1rem;
  border-radius: 0.5rem;
}

.table-widget th {
  padding: 1.25rem 1rem;
  font-size: 0.875rem;
  color: var(--gray);
}

.table-widget thead {
  border-top: 2px solid var(--gray-background);
}

.table-widget tfoot {
  margin-top: 1rem;
  border-top: 2px solid var(--gray-background);
}

.table-widget td {
  padding: 0.5rem 1rem;
  vertical-align: middle;
}

.table-widget tbody tr {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.table-widget tbody tr:nth-child(odd) {
  background: var(--odd-row);
}

.table-widget tbody tr:hover {
  background: #e2ecff;
}

.team-member-profile {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.profile-info__name {
  font-weight: 400;
  white-space: nowrap;
}

.team-member-profile img {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  object-fit: cover;
}

.pagination {
  list-style-type: none;
  display: flex;
  gap: 1rem;
  padding: 0;
}

.pagination a {
  display: block;
  background-color: #EDEDED;
  color: #4a9463;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 700;
  padding: 0.25rem 0.9rem;
  border-radius: 50px;
}

.pagination a:hover,
a.active {
  background: var(--odd-row);
  text-decoration: none;
  background-color: #4a9463;
  color: white;
  font-weight: 400;
}

.actions {
  display: flex;
  gap: 10px;
  /* ===== CHECK (✓) STYLE ===== */
  /* ===== X STYLE ===== */
  /* Pulse animation */
}
.actions .details {
  font-size: 10px;
}
.actions .details-no-link {
  font-size: 10px;
}
.actions .custom-checkbox {
  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: none;
  margin: 10px;
  width: 1.5em;
  height: 1.5em;
}
.actions .custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.actions .checkmark {
  display: inline-block;
  width: 136%;
  height: 107%;
  background-color: #ccc;
  border-radius: 0.5em;
  transition: background-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.actions .check-style .checkmark {
  --clr: #0B6E4F;
  /* Verde */
}
.actions .check-style input:checked + .checkmark {
  background-color: var(--clr);
  animation: pulse 500ms ease-in-out;
}
.actions .check-style input:checked + .checkmark::before {
  content: "";
  position: absolute;
  left: 0.6em;
  top: 0.2em;
  width: 0.4em;
  height: 0.9em;
  border: solid #E0E0E2;
  border-width: 0 0.15em 0.15em 0;
  transform: rotate(45deg);
}
.actions .x-style .checkmark {
  --clr: #D32F2F;
  /* Rojo */
}
.actions .x-style input:checked + .checkmark {
  background-color: var(--clr);
  animation: pulse 500ms ease-in-out;
}
.actions .x-style input:checked + .checkmark::before,
.actions .x-style input:checked + .checkmark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 2px;
  background-color: #E0E0E2;
  transform-origin: center;
}
.actions .x-style input:checked + .checkmark::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.actions .x-style input:checked + .checkmark::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 var(--clr);
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  75% {
    box-shadow: 0 0 0 8px var(--clr);
  }
  100% {
    box-shadow: 0 0 0 12px rgba(0, 0, 0, 0.1);
    transform: rotate(0deg);
  }
}

.budget-total h2 {
  font-size: 16px;
  color: #4a9463;
  font-weight: 400;
}

.list-reservates-pre-approvate {
  width: 628px;
  height: 311px;
  overflow: auto;
}
.list-reservates-pre-approvate h2 {
  font-size: 16px;
  color: #4a9463;
  font-weight: 400;
}

.actions .check-style input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 2.6em;
  top: 0.2em;
  /*background-image: url(../img/icon-checkout.svg);*/
  width: 1.9em;
  height: 1.6em;
  background-repeat: no-repeat;
}

.total-sold h2 {
  font-size: 16px;
  color: #4a9463;
  font-weight: 400;
}

.notification {
  width: max-content;
  left: 0;
  right: 0;
  bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0.375rem;
  background: #313e2c;
  color: #aaec8a;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(1.875rem);
  opacity: 0;
  visibility: hidden;
  animation: fade-in 3s linear;
}

/* Mostrar solo si tiene clase active */
.notification.active {
  display: block;
}

.notification__icon {
  height: 1.625rem;
  width: 1.625rem;
  margin-right: 0.25rem;
}

.notification__body {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1rem 0.5rem;
}

.notification__progress {
  position: absolute;
  left: 0.25rem;
  bottom: 0.25rem;
  width: calc(100% - 0.5rem);
  height: 0.2rem;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(to right, #313e2c, #aaec8a);
  border-radius: inherit;
  animation: progress 2.5s 0.3s linear;
}

@keyframes fade-in {
  5% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  95% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes progress {
  to {
    transform: scaleX(1);
  }
}

/*# sourceMappingURL=main.css.map */
