@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap");

/* Styles for the body element */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #fff;
  font-family: "Inter", sans-serif;
}

/* Styles for the progress bar container */
.progress-container {
  width: 300px;
  height: 8px;
  background-color: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 0px;
  transition: opacity 0.25s ease-out;
}

/* Styles for the progress bar */
.progress-bar {
  display: block;
  height: 100%;
  background-color: #1fa086;
  width: 0;
  transition: width 0.5s ease;
}

/* CSS for a fade-in animation */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}

/* Keyframes for the fadeIn animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.modal {
  display: none;
  position: fixed;
  align-items: center;
  justify-content: center;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #f2f2f2;
  border: none;
  margin: 0 5rem;
  padding: 20px;
  width: 100%;
  margin: 0 5rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #0b1a28;
}

.modal-content h3 {
background-color: #f2f2f2;
  padding-bottom: 0;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 19px;
  line-height: 22px;
}

.modal-content p {
  text-align: center;
  margin-top: 0;
  font-size: 16px;
  font-weight: 400;
}

.close {
  color: #1fa086;
  font-size: 17px;
  border-top: 1px solid #dddddd;
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 11px;
  cursor: pointer;
}

.smartbanner {
  z-index: 100!important;
}
