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

h4,
button {
  font-family: "Nunito", sans-serif;
}

html,
body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  color: #404040;
  height: 100%;
  display: flex;
}

h4 {
  font-weight: 400;
  font-size: 24px;
  margin: 24px 0;
}

h4 .bolder {
  font-weight: 600;
  line-height: 1.3;
}

p {
  font-family: "Roboto", sans-serif !important;
  font-size: 16px;
  color: #404040;
}

p .bolder {
  font-weight: 700;
}

button {
  border: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0%;
}

b {
  font-weight: 600;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}

.modal-container {
  background: #fff;
  width: 90%;
  max-width: 600px;
  height: 500px; /* Set a fixed height or adjust as needed */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.modal-header {
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 10px;
  background-color: #fff;
  box-sizing: border-box;
}

.modal-close-button {
  background: transparent;
  border: none;
  border: none;
  font-size: 32px;
  line-height: 32px;
  cursor: pointer;
  z-index: 10000;
  color: #404040;
  cursor: pointer;
}

.modal-close-button:hover {
  color: #6f6f6f;
}

.modal-content {
  flex-grow: 1;
  /* overflow-y: auto; */
}

.modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.modal-close-button {
  position: absolute;
}

.container {
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  background: white;
  padding: 40px 32px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  box-sizing: border-box;
}

.body {
  flex-grow: 1; /* Allows the body to take up available space */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers content vertically */
  align-items: center;
}

.bottom-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: auto;
}

.logo {
  width: auto;
  padding: 28px 14px;
}

.info {
  display: flex;
  align-items: center;
  text-align: left;
  margin: 0 0 24px 0;
}

.info img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.primary-button {
  width: 296px;
  height: 42px;
  background: #edff00;

  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  box-shadow: 0px 4px 4px 0px #4242421a;
  cursor: pointer;
  color: #404040;
}

.primary-button:disabled {
  background: #f4f4f4;
  color: #a0a0a0;
  cursor: not-allowed;
}

.secondary-button {
  width: 169px;
  height: 42px;
  margin-top: 16px;
  background: #f8f8f8;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  box-shadow: 0px 4px 4px 0px #4242421a;
  cursor: pointer;
  color: #404040;
}

.icon-container {
  margin-right: 10px;
  display: flex;
  width: 36px;
  height: 36px;
  padding: 0px 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--Secondary-Neutral-Grey-Light, #f4f4f4);
  border-radius: 50%;
}

.infoBullet {
  padding: 12px 16px;
  margin-top: 24px;
  border-radius: var(--Radius-Radius12, 12px);
  background: var(--Secondary-Neutral-Grey-Light, #f4f4f4);
}

.infoBullet .icon-container {
  float: left;
}

.infoBullet p {
  text-align: left;
}

.displayNone {
  display: none !important;
}

.remaining-statements {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
}

.remaining-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 16px;
  background: var(--Secondary-Neutral-Grey-Light, #f4f4f4);
  position: relative;
  z-index: 1;
  background-image: url("/assets/icon_invoice_money.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
}

.remaining-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 16px;
  height: 3px;
  background-color: #f4f4f4;
  transform: translateY(-50%);
}

.remaining-item.active {
  width: 40px;
  height: 40px;
  background-color: var(--Success-Green, #cfffad);
  background-image: url("/assets/icon_check.svg");
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: center;
}

.remaining-statements .remaining-item:last-child::before {
  display: none;
}

.remaining-statements .remaining-item:last-child {
  margin-right: 0;
}

.description {
  margin-bottom: 20px;
}

/* Style for the checkbox and its label */
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  position: relative;
  width: 24px;
  height: 18px;
  border: 2px solid #404040;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}
input[type="checkbox"]::before {
  content: "";
  color: #fff;
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  left: 1px;
  background-color: transparent;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 3px;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.1s ease-in-out;
  transition: -webkit-transform 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2210%22%20height%3D%228%22%20viewBox%3D%220%200%2010%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M9.79253%201.47579C10.0964%201.10709%2010.0625%200.54544%209.71687%200.221308C9.37121%20-0.102824%208.84467%20-0.0666944%208.54079%200.302006L3.97233%205.84508L1.3942%203.34258C1.05381%203.01217%200.526759%203.03866%200.217001%203.40175C-0.092757%203.76483%20-0.0679222%204.32702%200.272471%204.65743L3.47759%207.76854C3.64289%207.92898%203.86168%208.01188%204.08482%207.99862C4.30797%207.98536%204.51677%207.87705%204.66433%207.698L9.79253%201.47579Z%22%20fill%3D%22%23404040%22%2F%3E%3C%2Fsvg%3E");
}

input[type="checkbox"]:checked::before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.checkbox-container label {
  font-family: "Roboto", sans-serif !important;
  font-size: 14px;
  font-weight: 400;
  color: #404040;
  text-align: left;
  cursor: pointer;
  outline: none;
  border: none;
}

a {
  font-family: "Roboto", sans-serif !important;
  color: #02a4de;
  font-weight: 500;
  text-decoration: none;
  outline: none;
  border: none;
}

.appbar {
  width: 100vw;
  max-width: 600px;
  height: 56px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10001;
  padding: 0 8px;
}
.appbar button {
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  width: 40px;
  height: 40px;
}
.appbar button svg {
  display: none;
}
.appbar button:hover {
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.appbar-back {
  background-image: url("./assets/back_arrow_icon.svg");
}

.appbar-faq {
  background-image: url("./assets/question_icon.svg");
}

.appbar-close {
  background-image: url("./assets/close_icon.svg");
}

.appbar-title {
  flex: 1;
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #404040;
}
