.circle-background {
  height: 150px;
  width: 300px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.8);
  background-blend-mode: lighten;
  background-size: contain;
}
.background-petri {
  background-image: url("../assets/petri-dish.svg");
}
.background-hospital {
  background-image: url("../assets/hospital.svg");
}
.background-ctrlpanel {
  background-image: url("../assets/control-panel.svg");
}
.background-brain {
  background-image: url("../assets/brain.svg");
}

.background-rash {
  height: 150px;
  background-image: url("../assets/rash.svg");
  background-color: rgba(255, 255, 255, 0.5);
}

.circle {
  text-align: center;
  vertical-align: middle;
  border-radius: 50%;
  background: rgba(255, 255, 0, 0.7);
  margin: auto;
  align-items: center;
  border: 2px solid black;
  height: 70px;
  width: 70px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
}

.circle-inactive {
  border: 2px dashed black;
  background: rgba(0, 0, 0, 0.05);
}
.circle-name {
  font-size: x-large;
  font-style: oblique;
  font-family: sans-serif;
  font-weight: bold;
}
.circle-name-inactive {
  color: rgba(0, 0, 0, 0.55);
}

/* custom style for input[type="range] (slider) to improve alignment between positions and labels */
.jspsych-slider {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  background: transparent;
  --thumb_visibility: hidden;
}

.jspsych-slider:focus {
  outline: none;
}

/* track */
.jspsych-slider::-webkit-slider-runnable-track {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: #eee;
  border-radius: 2px;
  border: 1px solid #aaa;
}

.jspsych-slider::-moz-range-track {
  appearance: none;
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: #eee;
  border-radius: 2px;
  border: 1px solid #aaa;
}

.jspsych-slider::-ms-track {
  appearance: none;
  width: 99%;
  height: 14px;
  cursor: pointer;
  background: #eee;
  border-radius: 2px;
  border: 1px solid #aaa;
}

/* thumb */
.jspsych-slider::-webkit-slider-thumb {
  border: 1px solid #666;
  height: 24px;
  width: 14px;
  border-radius: 5px;
  background: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -9px;
  /* Fallback */
  visibility: visible;
  /* Dynamic Value */
  visibility: var(--thumb_visibility);
}

.jspsych-slider::-moz-range-thumb {
  border: 1px solid #666;
  height: 24px;
  width: 14px;
  border-radius: 5px;
  background: #ffffff;
  cursor: pointer;
  /* Fallback */
  visibility: visible;
  /* Dynamic Value */
  visibility: var(--thumb_visibility);
}

.jspsych-slider::-ms-thumb {
  border: 1px solid #666;
  height: 20px;
  width: 14px;
  border-radius: 5px;
  background: #ffffff;
  cursor: pointer;
  margin-top: -2px;
  /* Fallback */
  visibility: visible;
  /* Dynamic Value */
  visibility: var(--thumb_visibility);
}

/* Fix instructions */
#jspsych-html-button-response-stimulus {
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.jspsych-btn {
  font-size: 18px;
}
p {
  text-align: left;
}

h1 {
  text-align: left;
}
h3 {
  text-align: left;
}

fieldset {
  margin: 25px 0;
}

.jspsych-survey-multi-choice-question {
  font-size: 17px;
}

.jspsych-survey-multi-choice-option {
  font-size: 16px;
}

.jspsych-display-element {
  line-height: 1.8em;
}
