@charset "UTF-8";
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #f5f5f5;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 100%;
  overflow-x: hidden;
}

.header-background {
  background-color: #ffef00;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 0;
}
@media not screen and (max-width: 1000px) {
  .header-background {
    clip-path: polygon(0 0, 100% 0, 100% 100%, calc(100% - 108px) 100%, calc(100% - 216px) calc(100% - 187px), calc(100% - 108px) calc(100% - 374px), calc(100% - 216px) calc(100% - 561px), calc(100% - 432px) calc(100% - 561px), calc(100% - 542px) calc(100% - 374px), 0 calc(100% - 374px));
    height: 600px;
  }
}
@media not screen and (min-width: 1000px) {
  .header-background {
    height: 180px;
  }
}

.header {
  position: absolute;
  z-index: 10;
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
@media not screen and (min-width: 1000px) {
  .header {
    margin-top: 10px;
  }
}

.title-container {
  max-width: 820px;
  width: 100%;
}
@media not screen and (min-width: 1000px) {
  .title-container {
    padding: 0 20px;
  }
}

.form-container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  margin-top: 250px;
  margin-bottom: 120px;
}
@media not screen and (max-width: 1000px) {
  .form-container {
    max-width: 820px;
  }
}
@media not screen and (min-width: 1000px) {
  .form-container {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 220px;
  }
}

h1 {
  color: #000;
  font-weight: 400;
  text-align: left;
  font-family: "Dela Gothic One", serif;
  font-size: 52px;
  margin: 0;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1000px) {
  h1 {
    font-size: 28px;
  }
}

h2 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 1rem;
}

@media screen and (max-width: 1000px) {
  .title-container h2 {
    font-size: 16px;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  .form-row {
    display: block;
  }
}
.form-row .form-group {
  flex: 1;
}

label {
  color: rgb(33, 37, 41);
  cursor: default;
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 5px;
}

input, select {
  width: 100%;
  padding: 10px;
  border: 1px solid #000;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='5'%3E%3Cpolygon points='0,0 10,0 5,5' fill='%23808080'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
  cursor: pointer;
}

input:focus, select:focus {
  outline: none;
  border-color: #ffef00;
  box-shadow: 0 0 0 2px rgba(255, 239, 0, 0.25);
}

.ts-wrapper {
  width: 100%;
}
.ts-wrapper .ts-control {
  padding: 10px !important;
  border: 1px solid #000 !important;
  border-radius: 4px !important;
  font-size: 16px;
  box-sizing: border-box;
  background: #fff !important;
  cursor: pointer;
  min-height: auto !important;
  line-height: normal !important;
}
.ts-wrapper .ts-control > input {
  font-size: 16px;
  padding: 0 !important;
  margin: 0 !important;
}
.ts-wrapper .ts-control > .item {
  margin: 0 !important;
  padding: 0 !important;
  color: #000;
}
.ts-wrapper.focus .ts-control {
  border-color: #ffef00 !important;
  box-shadow: 0 0 0 2px rgba(255, 239, 0, 0.25) !important;
  outline: none;
}
.ts-wrapper .ts-dropdown {
  border: 1px solid #000;
  border-radius: 4px;
  margin-top: 4px;
}
.ts-wrapper .ts-dropdown .option {
  padding: 10px;
  font-size: 16px;
}
.ts-wrapper .ts-dropdown .option.active {
  background-color: #ffef00;
  color: #000;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

.section {
  background-color: #fff;
  border: 1px solid hsla(0, 0%, 50%, 0.2);
  border-radius: 15px;
  margin-bottom: 30px;
  padding: 25px;
}
.section a {
  color: rgb(13, 110, 253);
}
.section.section-animated {
  max-height: 1000px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin-bottom 0.5s ease, padding 0.5s ease, border-color 0.5s ease;
}
.section.section-animated.hidden {
  display: block;
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
  padding: 0 25px;
  border-color: transparent;
}

.section-title {
  color: #000;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 30px;
  padding-left: 20px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .section-title {
    font-size: 20px;
  }
}
.section-title::before {
  background-color: #ffef00;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 10px;
}

.fade-toggle {
  max-height: 200px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
.fade-toggle.hidden {
  display: block;
  max-height: 0;
  opacity: 0;
}

.sub-section {
  border-top: 1px solid hsla(0, 0%, 50%, 0.2);
  margin-top: 10px;
  padding-top: 20px;
  max-height: 500px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.4s ease, padding-top 0.4s ease, border-color 0.4s ease;
}
.sub-section.hidden {
  display: block;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  padding-top: 0;
  border-color: transparent;
}

.sub-section-title {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 20px;
  padding-left: 15px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .sub-section-title {
    font-size: 16px;
  }
}
.sub-section-title::before {
  background-color: #ffef00;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 6px;
}

.hidden {
  display: none;
}

.flash-success {
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.error {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
}

.radio-group {
  display: flex;
  gap: 20px;
}
.radio-group > div {
  display: flex;
  gap: 20px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: normal;
  cursor: pointer;
}

.radio-group input[type=radio] {
  appearance: none;
  background-color: #fff;
  border: 1px solid grey;
  border-radius: 50%;
  color: currentColor;
  font: inherit;
  height: 10px;
  padding: 9px;
  width: 10px;
  margin: 0;
  cursor: pointer;
}
.radio-group input[type=radio]:checked {
  border: 5px solid #000;
  padding: 5px;
}

.flash-error {
  background-color: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.flash-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: #e8f4fd;
  border: 1px solid #b6d4f8;
  border-left: 4px solid #2196f3;
  color: #1565c0;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.5;
}
.flash-info::before {
  content: "ℹ";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #2196f3;
  color: white;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}

.d-flex {
  display: flex;
}

.ic-32 {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.bg-dark-grey {
  background-color: #333;
}

.icon-yellow {
  color: #ffef00;
}

.text-normal {
  font-size: 1rem;
  font-weight: 400;
}

.grey {
  color: #666;
}

.annotation {
  gap: 12px;
  align-items: center;
  margin-bottom: 1.5rem;
}

.required-asterisk {
  color: #dc3545;
  font-weight: bold;
}

.legal-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1rem;
}
.legal-text.bold {
  font-weight: 600;
  color: #333;
}
.legal-text a {
  color: #000;
  text-decoration: underline;
}

.legal-expandable {
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 1;
}
.legal-expandable[style*="max-height: 0"] {
  opacity: 0;
}

.legal-toggle-link {
  color: #000;
  cursor: pointer;
}
.legal-toggle-link:hover {
  text-decoration: underline;
}

.legal-checkbox {
  margin-top: 1.5rem;
  text-align: right;
}
.legal-checkbox .checkbox-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.legal-checkbox .checkbox-wrapper input[type=checkbox] {
  width: auto;
  margin: 0;
}
.legal-checkbox .checkbox-wrapper label {
  margin: 0;
  font-weight: 400;
  color: #666;
}

footer {
  z-index: 2;
  position: absolute;
  color: white;
  width: 100%;
  bottom: 0px;
}

.footer-copyright {
  box-sizing: border-box;
  padding: 28px 80px;
  height: 80px;
  text-align: center;
  justify-content: space-between;
  background-color: #333;
  font-size: 0.8rem;
}

.footer-text a {
  text-decoration: none;
  color: white;
}

@media screen and (max-width: 1000px) {
  footer .footer-image-desktop {
    display: none;
  }
  footer .footer-image-mobile {
    width: 100%;
  }
  .footer-copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 28px 20px;
  }
}
@media not screen and (max-width: 1000px) {
  footer .footer-image-desktop {
    width: 100%;
  }
  footer .footer-image-mobile {
    display: none;
  }
}
.d-flex {
  display: flex;
}

.submit-button-container {
  justify-content: flex-end;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.1);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.1);
  }
  70% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.separator {
  background: #ffef00;
  width: 3px;
}

.nav-button.next {
  width: fit-content;
  color: #ffef00;
  background: #000;
  animation: heartbeat 2s ease-in-out infinite;
  cursor: pointer;
  padding: 12px 25px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  margin-left: 30px;
  padding: 3px 10px;
}
.nav-button.next:hover {
  color: white;
}
.nav-button.next:hover .nav-arrow p {
  margin-left: 20px;
}

.nav-arrow {
  display: flex;
  gap: 0px;
  text-align: left;
  font-size: 33px;
  font-weight: 400;
  height: 33px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.nav-arrow p {
  margin: 0px;
  transition: margin-left 0.2s ease;
}

.nav-text {
  color: var(--primary-yellow);
  font-family: Inter Black, Impact, sans-serif;
  font-size: 33px;
  font-weight: 700;
  transform: scaleY(0.85);
}

.background-image-container {
  top: 400px;
  position: sticky;
  height: 0;
  overflow: visible;
  z-index: -1;
  width: 100vw;
}

@media screen and (max-width: 1000px) {
  .background-image-container {
    display: none;
  }
}
.background-image-mobile {
  width: 100%;
  object-fit: fill;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
}

.background-image {
  width: 100%;
  transform: scaleX(-1);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 80%);
}

.background-image-container-mobile {
  top: 400px;
  position: sticky;
  height: 0;
  overflow: visible;
  z-index: -2;
}

@media not screen and (max-width: 1000px) {
  .background-image-container-mobile {
    display: none;
  }
}
.nowrap {
  white-space: nowrap;
}

.meeting-intro {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.meeting-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.meeting-card {
  position: relative;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 15px 20px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-color: #fafafa;
}
.meeting-card:hover {
  border-color: #ccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.meeting-card.selected {
  border-color: #ffef00;
  box-shadow: 0 0 0 2px rgba(255, 239, 0, 0.3);
  background-color: #fffef0;
}
.meeting-card.selected .meeting-card-check {
  display: flex;
}

.meeting-card-date {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.meeting-card-title {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #888;
  margin-bottom: 5px;
}

.meeting-card-info {
  display: flex;
  gap: 20px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #888;
}
.meeting-card-info i {
  margin-right: 4px;
}
@media screen and (max-width: 1000px) {
  .meeting-card-info {
    flex-direction: column;
    gap: 4px;
  }
}

.meeting-card-check {
  display: none;
  position: absolute;
  top: 12px;
  right: 15px;
  color: #ffef00;
  font-size: 22px;
  align-items: center;
  justify-content: center;
}

.meeting-card-none {
  border-style: dashed;
  text-align: center;
  padding: 20px;
}
.meeting-card-none .meeting-card-title {
  margin-bottom: 0;
  color: #666;
  font-weight: 500;
}

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid transparent;
  border-top: 5px solid #ffef00;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../../assets/styles/app.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22;AAIA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI,kBAda;EAeb;EACA;EACA;EACA;;AAEA;EAPJ;IAQQ;IAYA;;;AAGJ;EAvBJ;IAwBQ;;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EARJ;IASQ;;;;AAIR;EACI;EACA;;AAEA;EAJJ;IAKQ;;;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAEA;EAPJ;IAQQ;;;AAGJ;EAXJ;IAYQ;IACA;IACA;IACA;;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EATJ;IAUQ;;;;AAIR;EACI;EACA;EACA;EACA;EACA;;;AAIA;EADJ;IAEQ;;;;AAIR;EACI;;;AAGJ;EACI;EACA;;AACA;EAHJ;IAIQ;;;AAGJ;EACI;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA,cA9Ja;EA+Jb;;;AAIJ;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAIR;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EACI,kBA9MC;EA+MD,OA9MA;;;AAmNhB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;;AAIZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EATJ;IAUQ;;;AAGJ;EACI,kBA1QS;EA2QT;EACA;EACA;EACA;EACA;EACA;;;AAGR;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;;AAGR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGR;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EARJ;IASQ;;;AAGJ;EACI,kBA9TS;EA+TT;EACA;EACA;EACA;EACA;EACA;;;AAGR;EACI;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;EACA;;AAEA;EACI;EACA;;;AAGR;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;;AAGR;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAKR;EACI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI,OAlba;;;AAqbjB;EACI;EACA;;;AAGJ;EACI;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;;;AAIJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI,OAtdQ;EAudR;;;AAIR;EACI;EACA;EACA;;AAEA;EACI;;;AAIR;EACI,OAteY;EAueZ;;AAEA;EACI;;;AAIR;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;;;AAKZ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;;;AAGJ;EACI;IACI;;EAEJ;IACI;;EAEJ;IACI;IACA;IACA;IACA;IACA;;;AAIR;EACI;IACI;;EAEJ;IACI;;;AAIR;EACI;;;AAGJ;EACI;;;AAGJ;EACI;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;;AAIR;EACI,YAllBa;EAmlBb;;;AAGJ;EACI;EACA,OAxlBa;EAylBb,YAxlBY;EAylBZ;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;;AACA;EACI;;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;;;AAIR;EACI;EACA;EACA;EACA;EACA;;;AAIJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;IACI;;;AAIR;EACI;EACA;EACA;;;AAIJ;EACI;EACA;EACA;;;AAKJ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;EACI;IACI;;;AAIR;EACI;;;AAIJ;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI,cA5sBS;EA6sBT;EACA;;AAEA;EACI;;;AAKZ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EAXJ;IAYQ;IACA;;;;AAIR;EACI;EACA;EACA;EACA;EACA,OA5vBa;EA6vBb;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;;;AAKR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;IACI%22,%22file%22:%22app.output.css%22%7D */
