#jspsych-survey-text-next {
  font-size: 20px;
  font-weight: bold;
  font-family: "Helvetica", "Arial", sans-serif;
  height: 40px;
  width: 120px;
  padding: 4px 4px 4px 4px;
}

/* Style for the question title */
.jspsych-survey-multi-choice-question p {
  font-size: 20px;
  font-weight: bold;
  /* Bold only for the title */
  color: #000000;
  font-family: "Helvetica", "Arial", sans-serif;
  margin-bottom: 10px;
}

/* Style for the options (radio buttons) */
.jspsych-survey-multi-choice-option label {
  font-size: 20px;
  /* Slightly smaller and not bold */
  font-weight: normal;
  color: #000000;
  font-family: "Helvetica", "Arial", sans-serif;
}

.jspsych-survey-likert-opts li input[type="radio"] {
  display: block;
  position: relative;
  top: 0;
  left: 50%;
  margin-left: -6px;
  transform: scale(1.5);
  /* Increase the size of the radio button */
}

.jspsych-display-element input[type="text"] {
  font-family: "Helvetica", "Arial", sans-serif;
  font-size: 25px;
  height: 40px;
  width: 300px;
}

.jspsych-display-element {
  width: 95vw;
}

.jspsych-btn:hover {
  background-color: rgb(225, 220, 230);
  font-size: 20px;
  font-family: "Helvetica", "Arial", sans-serif;
  font-weight: bold;
  text-align: center;
  /* Center-align title */
  color: #000000;
  font-weight: 600;
  border: 0px;
}

.jspsych-survey-likert-opts::before {
  background-color: #ffffff !important;
  height: 0px !important;
  width: 100%;
}

.jspsych-survey-likert-opt-label {
  line-height: 1.1em;
  font-size: 18px;
  color: black;
}

.jspsych-survey-likert-statement {
  display: block;
  font-size: 20px !important;
  font-weight: bold;
  padding-top: 20px;
  margin-bottom: 10px;
}

.jspsych-btn {
  font-size: 20px;
  width: 300px;
  font-family: "Helvetica", "Arial", sans-serif;
  font-weight: bold;
  text-align: center;
  /* Center-align title */
  color: #000000;
  font-weight: 600;
  border: 0px;
  padding: auto;
  background-color: rgb(232, 230, 237);
  margin: 8px;
}

.jspsych-html-button-response-button {
  margin: 8px 8px !important;
}

#jspsych-survey-multi-choice-next {
  font-size: 20px;
  font-family: "Helvetica", "Arial", sans-serif;
  font-weight: bold;
  text-align: center;
  /* Center-align title */
  color: #000000;
  font-weight: 600;
  border: 0px;
  padding: 15px 25px;
  background-color: #1356552a;
}

#jspsych-survey-multi-choice-next {
  font-size: 20px;
  font-family: "Helvetica", "Arial", sans-serif;
  font-weight: bold;
  text-align: center;
  /* Center-align title */
  color: #000000;
  font-weight: 600;
  border: 0px;
  padding: 15px 25px;
  background-color: #1356552a;
}

#jspsych-video-button-response-stimulus {
  border: none !important;
  margin: 8px;
}

#jspsych-fullscreen-btn {
  width: 400px;
}

video:focus {
  outline: none !important;
}

.jspsych-content {
  max-width: 90%;
}

body {
  font:
    normal 24px Helvetica,
    Arial,
    sans-serif !important;
  /* <-- fonts */
  padding: auto;
  margin: auto;
}

#jspsych-survey-multi-choice-response {
  font-size: 20px;
  font-weight: bold;
  color: #000000;
  font-weight: 200;
  /* Slightly less bold than the title */
  margin: 15px 0;
  font-family: "Helvetica", "Arial", sans-serif;
  height: 40px;
  width: 120px;
  padding: 0px 4px 4px 4px;
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease-in;
}

h1 {
  font-size: 40px;
  /* Adjust size for main title */
  font-weight: bold;
  text-align: center;
  /* Center-align title */
  color: #135655;
  /* Title color */
  margin: 20px 0;
}

h2 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  /* Center-align title */
  font-weight: 600;
  /* Slightly less bold than the title */
  color: #34495e;
  margin: 15px 0;
}

h3 {
  font-size: 20px;
  font-weight: bold;
  color: #000000;
  font-weight: 500;
  /* Slightly less bold than the title */
  color: #34495e;
  margin: 15px 0;
}

body {
  font-family: "Arial", sans-serif;
  font-size: 24px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
  /* Default text color */
}

.big-text {
  font-size: 28px;
  line-height: 1.5;
  text-align: center;
}

#loader {
  display: none;
  /* Initially hidden */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.phone {
  height: 50px;
  width: 100px;
  border: 3px solid white;
  border-radius: 10px;
  animation: rotate 1.5s ease-in-out infinite alternate;
  /* display: none; */
}


@keyframes rotate {
  0% {
    transform: rotate(0deg)
  }

  50% {
    transform: rotate(-90deg)
  }

  100% {
    transform: rotate(-90deg)
  }
}

@media only screen and (max-device-width: 812px) and (orientation: landscape) {

  .phone,
  .message {
    display: block;
  }
}

/* HTML: <div class="progressbar"></div> */
.progressbar {
  width: 300px;
  height: 25px;
  border-radius: 25px;
  background:
    linear-gradient(rgb(244, 206, 197) 0 0) 0/0% no-repeat rgb(232, 230, 237);
  animation: l2 1.5s infinite steps(15);
  margin-top: 10px;
  /* Space between text and progress bar */
}

@keyframes l2 {
  100% {
    background-size: 110%
  }
}