*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Satoshi', 'Roboto', 'Arial', sans-serif;
}

@font-face {
  font-family: 'Satoshi';
  src: url('/assets/fonts/Satoshi-Variable.ttf') format('truetype');
  font-display: auto;
}
.font-satoshi {
  font-family: 'Satoshi', sans-serif;
}

.button {
  border: 2px solid;
  border-radius: 8px;
  padding: 6px 18px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s, background-color 0.15s, border-color 0.15s;
  border-color: #007bff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.button-primary {
  background-color: #007bff;
  color: #fff !important;
}
.button-primary:hover {
  background-color: #fff;
  color: #007bff !important;
}

.button-secondary {
  background-color: transparent;
  color: #007bff;
}
.button-secondary:hover {
  background-color: #007bff;
  color: #fff;
}

.button-xl {
  padding: 12px 28px;
  font-size: 20px;
}

a,
.link {
  color: #333;
  text-decoration: none;
  transition: color, 0.15s;
  cursor: pointer;
  transition: color 0.15s;
}
a:hover,
.link:hover {
  color: #007bff;
}

a.blue,
.link.blue {
  transition: color 0.15s;
  color: #007bff;
}
a.blue:hover,
.link.blue:hover {
  color: #004a99;
}

.active-link-account {
  background: rgba(189, 221, 255, 0.2901960784);
}

.active-link {
  background-color: #bdddff;
}

.heading1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: clamp(2.7rem, 5.2vw, 4.2rem);
  font-weight: 900;
}

.heading2 {
  font-size: clamp(2.4rem, 5vw, 3rem);
  font-weight: 800;
}

.heading3 {
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 700;
}

.heading4 {
  font-size: clamp(1.2rem, 5vw, 1.8rem);
  font-weight: 700;
}

.heading5 {
  font-size: 1.2rem;
  font-weight: bold;
}

.heading6 {
  font-size: 1.1rem;
  font-weight: 600;
}

.text {
  font-size: normal;
  font-weight: normal;
}

.subtitle {
  font-size: clamp(0.875rem, 2vw, 1.25rem);
  font-weight: normal;
  color: #7f7f7f;
}

.label {
  font-size: clamp(0.75rem, 5vw, 1rem);
  font-weight: bold;
}

.legals h2 {
  border-top: 1px solid #e9ecef;
  padding-top: 14px;
  margin-top: 2rem;
  padding-bottom: 1rem;
}
.legals p {
  margin-top: 1rem;
}
.legals a {
  color: #007bff;
}
.legals a:hover {
  color: #004a99;
}

.list {
  list-style-type: disc;
  padding: 0;
  margin: 0;
  margin-top: 0.5rem;
}
.list li {
  margin-left: 1rem;
}

.card-main {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.25rem;
  gap: 1rem;
  display: flex;
  align-items: center;
  min-height: 120px;
  width: 100%;
  transition: box-shadow 0.15s;
}
.card-main:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.card-main .img {
  width: 60px;
  height: 60px;
  aspect-ratio: 1/1;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.card-main .heading4,
.card-main h4 {
  width: 100%;
}
.card-main p {
  opacity: 0.5;
  color: #333;
}

.wrapper-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  visibility: hidden;
  transition: visibility 0.5s ease-in-out;
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 40px);
}
.wrapper-modal .background-modal {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.wrapper-modal .modal {
  position: relative;
  width: 90%;
  max-width: 500px;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  transform: translateY(-20px);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .wrapper-modal .modal {
    width: 95%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@supports (-webkit-touch-callout: none) {
  .modal {
    padding-bottom: 40px;
  }
}

.wrapper-modal.active {
  visibility: visible;
}
.wrapper-modal.active .background-modal {
  opacity: 1;
}
.wrapper-modal.active .modal {
  transform: scale(1);
}

.form {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
}
.form input,
.form textarea,
.form select,
.form .input-container {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

input:not([type='checkbox']),
textarea,
select,
.input-container {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  width: 100%;
  padding: 10px !important;
  border: 1px solid #e9ecef;
  border-radius: 8px;
}

.input-container {
  display: flex;
  gap: 10px;
  align-items: center;
}
.input-container input {
  margin-bottom: 0;
  padding: 0 !important;
  border: none;
}

.dropzone-wrapper {
  width: 100%;
  height: 50vh;
  padding: 20px;
  max-height: 450px;
  min-height: 300px;
  border-radius: 1.5rem;
}
.dropzone-wrapper:hover {
  opacity: 0.8;
}
.dropzone-wrapper .dropzone-label {
  border-radius: 0.75rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed #fff;
  cursor: pointer;
  background-color: #007bff;
  text-align: center;
  transition: background-color 0.15s, border-color 0.15s;
}
.dropzone-wrapper .dropzone-label .dropzone-upload-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 1.25rem;
  padding-bottom: 1.5rem;
}
.dropzone-wrapper .dropzone-label .dropzone-text {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #fff;
}
.dropzone-wrapper .dropzone-label .dropzone-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
}
.dropzone-wrapper .dropzone-label .dropzone-text-xs {
  font-size: 0.75rem;
  color: #fff;
  opacity: 0.8;
}

#burger {
  z-index: 999;
}
@media screen and (max-width: 640px) {
  #burger {
    transition: visibility 0.15s, transform 0.15s;
    transform: translateY(-110%);
    visibility: hidden;
  }
}

@media screen and (max-width: 640px) {
  #burger.active {
    transform: translateY(-10%);
    visibility: visible;
  }
}

.background-burger {
  display: none;
  transition: visibility 0.15s, opacity 0.15s;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 200vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
@media screen and (max-width: 640px) {
  .background-burger {
    display: block;
  }
}

.background-burger.active {
  opacity: 1;
  visibility: visible;
}

.loader-dots {
  width: 100px;
  height: 40px;
  --g: radial-gradient(
      farthest-side,
      #0000 calc(95% - 3px),
      #fff calc(100% - 3px) 98%,
      #0000 101%
    )
    no-repeat;
  background: var(--g), var(--g), var(--g);
  background-size: 30px 30px;
  animation: l9 1s infinite alternate;
}
@keyframes l9 {
  0% {
    background-position: 0 50%, 50% 50%, 100% 50%;
  }
  20% {
    background-position: 0 0, 50% 50%, 100% 50%;
  }
  40% {
    background-position: 0 100%, 50% 0, 100% 50%;
  }
  60% {
    background-position: 0 50%, 50% 100%, 100% 0;
  }
  80% {
    background-position: 0 50%, 50% 50%, 100% 100%;
  }
  100% {
    background-position: 0 50%, 50% 50%, 100% 50%;
  }
}

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

#mobile-menu {
  position: fixed;
  top: 70px; /* Height of the header */
  left: 0;
  right: 0;
  background-color: white;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  transform: translateY(-10%);
  opacity: 0;
  padding: 1rem;
  overflow-y: auto;
}

#mobile-menu.mobile-menu-active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

header {
  position: relative;
  z-index: 1001;
  background-color: white;
}

main {
  margin-bottom: 0;
}

.header-spacer {
  height: 70px;
}

/* Custom z-index classes for modals and dialogs */
.z-100 {
  z-index: 100 !important;
}

.jetstream-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100 !important;
}

.jetstream-modal > div:last-child {
  margin-top: 60px !important;
}

.format-option.active {
  --tw-ring-color: var(--format-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
}

.radio-dot {
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  border-radius: 50%;
  position: relative;
}

.radio-dot::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease;
}

.format-option.active .radio-dot {
  border-color: var(--format-color);
}

.format-option.active .radio-dot::after {
  background-color: var(--format-color);
}

.input-container.error input {
  border-color: rgb(239 68 68);
}

#email-error {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}