* {
  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: #ADE0C1;

  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;
}

.checkbox-container input[type="checkbox"] {
  width: 24px;
  height: 24px;
  border: 2px solid #404040;
  cursor: pointer;
}

.checkbox-container input[type="checkbox"]:checked {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M20.285 6.707l-11.285 11.285-5.285-5.285 1.414-1.414 3.871 3.871 9.871-9.871z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}

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

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