.form-check-input {
  margin-top: 0;
  transform: scale(1.5);
}
.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.form-check-label {
  margin-left: 0.5rem;
}
#use-cases-form {
  width: 100%;
  padding: 4.5rem;
  background-color: #fcf2da;
}
#recommendation-text-card {
  background-color: rgba(243, 189, 72, 0.5);
  padding: 3rem 4.5rem 3rem 2rem;
  position: absolute;
  top: 25%;
  right: -3.5rem;
  z-index: 1;
}
.recommendation-text-card-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.recommendation-text-card-text {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
}
.loading-container {
  width: 75%;
  height: 30px;
  border: 2px solid black;
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
}
.loading-bar {
  height: 100%;
  width: 0;
  background-color: #f99a31;
  position: absolute;
  transition: width 0.5s ease;
}
#progress-section-header {
  width: 60%;
  text-align: center;
  font-style: italic;
}
.ellipsis:after {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  -webkit-animation: ellipsis steps(4, end) 1500ms infinite;
  animation: ellipsis steps(4, end) 1500ms infinite;
  content: "\2026";
  /* ascii code for the ellipsis character */
  width: 0px;
}

@keyframes ellipsis {
  to {
    width: 1.25em;
  }
}

@-webkit-keyframes ellipsis {
  to {
    width: 1.25em;
  }
}
#progress-section-importance {
  font-size: 12px;
  margin-bottom: 0.5rem;
  width: 50%;
  text-align: center;
}
#progress-subtexts {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
  width: 100%;
  padding-left: 20vw;
}

@media (max-width: 991px) {
  .recommendation-text-card-title {
    font-size: 26px;
  }
  #recommendation-text-card {
    background-color: rgba(243, 189, 72, 0.5);
    padding: 2rem;
    position: relative;
    top: 0;
    right: 0;
    z-index: 1;
  }
  #progress-section-importance {
    width: 100%;
  }
  #use-cases-form {
    padding: 2rem;
  }
}
