/* Styling the Body element i.e. Color,
		Font, Alignment */

html {
  height: 100%;
  width: 100%;
}

body {
  font-family: Verdana;
  text-align: center;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: white;
  padding: 6px;
  height: calc(100% - 24px);
}

#loader {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  justify-items: center;
  /* height: 100%; */
  height: auto;
  min-height: 100%;
  flex-direction: column;
}

#loader>img {
  /* width: 120px; */
  height: 75px;
  width: auto;
}

.custom-loader {
  margin-top: 20px;
  align-content: center;
  width: 120px;
  height: 20px;
  background: linear-gradient(90deg, #0000, #5c1584) left -50px top 0/50px 20px no-repeat #E4E4ED;
  animation: ct2 1s infinite linear;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

@keyframes ct2 {
  100% {
    background-position: right -50px top 0
  }
}

/* Styling the Form (Color, Padding, Shadow) */
form {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Styling form-control Class */
.form-control {
  text-align: left;
}

/* Styling form-control Label */
.form-control label {
  display: block;
  margin-bottom: 12px;
}

/* Styling form-control input,
		select, textarea */
.form-control input,
.form-control select,
.form-control textarea {
  border: 1px solid #777;
  border-radius: 2px;
  font-family: inherit;
  padding: 10px;
  display: block;
  width: 95%;
}

/* Styling form-control Radio
		button and Checkbox */
.form-control input[type="radio"],
.form-control input[type="checkbox"] {
  display: inline-block;
  width: auto;
}

.form-control #questionsAnswersDiv #Question p {
  margin: 0 auto;
  padding: 0.5em;
}

/* Styling Button */
button {
  background-color: #5c1584;
  border: 1px solid #777;
  border-radius: 2px;
  font-family: inherit;
  font-size: 17px;
  display: block;
  width: 100%;
  border-radius: 25px;
}

#button-wrapper {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}

#thank>img {
  /* width: 120px; */
  height: 75px;
  width: auto;
}

.thank {
  opacity: 0;
}

.thank-visible {
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* gap: 16px; */
  height: 100%;
  transition: all 0.5s ease-in;
}

.not-active {
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* gap: 16px; */
  height: 100%;
  transition: all 0.5s ease-in;
}

#notActive>img {
  /* width: 120px; */
  height: 75px;
  width: auto;
}

.not-active>span {
  font-size: 12px;
  display: flex;
}

#progress-container {
  display: none;
  position: fixed;
  top:0;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: #ccc;
  z-index: 9999;
}
#progress-bar {
  height: 100%;
  width: 0;
  background-color: #5c1584;
}
#info-container {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 10%;
  font-size: 10px;
  padding-right: 2%;
  justify-content: flex-end;
  height: 10px;
  z-index: 9999;
}