:root {
  ---color-blue: #00758b;
  ---color-green: #66b32e;
  ---color-amber: #f6a300;
  ---color-amber-light: #ffd075;
  ---color-home: #e71d73;
  ---color-home-text: #303030;
  ---color-home-light: #5b5b5b;
  ---color-explore: #00758b;
  ---color-message-user: #e94e1b;
  ---color-reflect: #66b32e;
  ---color-reflect-dark: #e94e1b;
  ---color-act: #f6a300;
  ---color-blue-light: #5ea29f;
  ---color-stress: #A67CA1;
  ---color-balance: #E391BD;
  ---color-environment: #F26D8C;
  ---color-mind: #F7BF5E;
  ---color-body: #90C498;
  ---color-sleep: #99A8BA;
  ---color-index-none: #a6a6a6;
  ---color-index-low: #6dbb80;
  ---color-index-med: #f9b233;
  ---color-index-high: #e03d8e;
}

@font-face {
  font-family: 'Comfortaa';
  src: url('/static/fonts/Comfortaa-VariableFont_wght.ttf') format('truetype');
 }

 @font-face {
  font-family: 'Nunito';
  src: url('/static/fonts/Nunito-VariableFont_wght.ttf') format('truetype');
 }

html,
body {
  height: 100%;
  font-family: 'Nunito', sans-serif;
}

.app {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  max-width: 100%;
  height: 100%;
}

.era-text {
  font-family: 'Comfortaa', sans-serif;
}

.head-text {
  font-weight: 400;
}

.text-blue, .text-explore {
  color: var(---color-blue);
}

.text-green, .text-reflect {
  color: var(---color-green);
}

.text-amber, .text-act {
  color: var(---color-amber);
}

.text-grey {
  color: #efefef;
}

.bg-blue {
  background-color: var(---color-blue) !important;
  color: white;
}

.bg-amber {
  background-color: var(---color-amber) !important;
  color: white;
}

.bg-red {
  background-color: #d33927 !important;
  color: white;
}

.content {
  flex: 1;
  overflow: auto;
}

.container-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  flex-wrap: nowrap;
}

.container-no-scroll {
  overflow: hidden !important;
}

.container-messages {
  display: flex;
  flex-direction: column;
  flex: 1;
  flex-wrap: nowrap;
  overflow: hidden;
  max-height:100%;
  position: relative;
  width: 100%;
}

.container-act, .container-reflect {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height:100%;
  width: 100%;
  padding: 20px;
  margin: auto;
}

.container-signup {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  padding: 20px 20px;
  margin: auto;
}

.container-chats {
  display: flex;
  flex-direction: column;
  flex: 1;
  flex-wrap: nowrap;
  overflow: hidden;
  max-height:100%;
  width: 100%;
  position: relative;
  padding: 0px 10px;
  margin: 20px 0px;
  align-items: flex-start;
}

.container-chart {
  flex: 0 0 auto;
  width: 100%;
  max-height: 270px;
}

.container-terms {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  padding: 20px;
}

.container-indexes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding: 5px;
}

.index-key {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: #6E996E;
  color: white;
  text-align: center !important;
  font-size: 9pt;
  margin: 1vw;
  border: none;
}


.home-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 20px;
  max-width: 400px;
  text-align: left;
  color: var(---color-home-text);
  font-size: 14pt;
  height: 300px;
}

.home-summary {
  border: 3px solid #2d2d2d;
  padding: 10px 15px !important
}

.intro-carousel-item {
  height: 100%;
}

.carousel-content-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  margin-top: 0px;
  padding-bottom: 20px;
  overflow-y: auto;
}

.carousel-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 20px;
  max-width: 400px;
  text-align: center;
  color: var(---color-home-text);
  font-size: 14pt;
}



.carousel-controls {
  align-self: center;
  width: 250px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.carousel-skip {
  margin-bottom: 10px;

}

.carousel-inner {
  height: 90%;
  width: 100%;
}

#carousel-indexes {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 5px;
  width: 100%;
}

.carousel-index-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.carousel-index-image {
  width: 40px;
  margin: 3px 10px 3px 0px;
}

#carouselIntro {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#introIndexes {
  width: 100%;
  margin-bottom: 30px;
}

.app-section {
  display: flex;
  flex-direction: row;
  border-radius: 20px 20px 20px 0px;
  padding: 25px;
  font-size: 20pt;
  width: 200px;
}

.app-section-sm {
  padding: 10px 25px;
}

.home-app-section {
  display: flex;
  flex-direction: row;
  margin-top: 10px;
  border-radius: 20px 20px 20px 0px;
  padding: 12px 30px;
  font-size: 14pt;
  width: 100%;
}

.messages {
  display: flex;
  flex-direction: column;
  padding: 10px;
  overflow-y: scroll;
  height: 100%;
  max-height:100%;
}

.fade-top {
  position: absolute;
  height: 60px;
  width: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  z-index: 1;
}

.fade-bottom {
  position: absolute;
  bottom: 0;
  height: 20px;
  width: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7));
}

.bg-explore {
  background-color: var(---color-explore);
  color: white;
}

.bg-reflect {
  background-color: var(---color-reflect);
  color: white;
}

.bg-act {
  background-color: var(---color-act);
  color: white;
}

.bg-terms, .bg-privacy, .bg-root {
  background-color: var(---color-home);
  color: rgb(54, 54, 54);
}

.navbar-toggler {
  border: none;
}

.message {
  color: white;
  padding: 7px 15px;
  margin: 8px 5px;
  max-width: 80%;
  box-shadow: 1px 2px #dbdbdb;
}

.message-bot {
  background-color: var(---color-explore);
  border-radius: 20px 20px 20px 0px;
  align-self: flex-start;
}

.message-user {
  background-color: var(---color-message-user);
  border-radius: 20px 20px 0px 20px;
  align-self: flex-end;
}

.message-summary {
  background-color: var(---color-explore);
  border-radius: 20px 20px 20px 0px;
  align-self: flex-start;
  max-width: 100%;
  margin: 8px 0px;
  box-shadow: none;
}

.message-summary-edit {
  background-color: rgb(219, 219, 219);
  color: black
}

.message-reflect {
  background-color: var(---color-reflect);
  border-radius: 20px 20px 20px 20px;
  border: 4px solid var(---color-reflect-dark);
  align-self: center;
  max-width: 100%;
  margin-top: 0 !important;
}

.message-disclaimer {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  color: rgb(54, 54, 54);
  font-size: 0.75rem;
  text-align: center;
  z-index: 99;
  box-sizing: border-box;
}

.message-disclaimer-explore {
  padding: 10px 20px;
}

.message-disclaimer-act {
  margin-top: 20px;
}

.message-reflect-first {
  border-radius: 2px 20px 20px 20px;
}

.message-reflect-last {
  border-radius: 20px 2px 20px 20px;
}


.message-act {
  background-color: var(---color-act);
  border-radius: 20px 20px 20px 0px;
  align-self: flex-start;
}

.message-round {
  border-radius: 20px 20px 20px 20px;
}

#issues {
  width: 100%;
  max-width: 800px;
}

.issue {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0px;
  width: 100%;
}

.issues {
  
  .issue, #issues-header {
    overflow:hidden;
    transition: all 0.5s ease-in-out;
    height:auto;
  }
}

.issue-description {
  flex: 1;
  background-color: var(---color-act);
  color: white;
  border-radius: 20px;
  padding: 6px 10px;
  cursor: pointer;
  transition: width 0.8s ease-in-out;
}

.issue-remove {
  /* border: 3px solid var(---color-environment); */
  border-radius: 50%;
  height: 30px;
  width: 30px;
  margin-left: 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
}

.issue-remove-hide {
  opacity: 0.3;
  pointer-events: none;
  filter: grayscale(100%);
}

.no-pointer {
  pointer-events: none;
}

.issue-remove-icon {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

.issue-fade {
  opacity:0;
}

#issues-header {
  flex: 1;
  width: 100%;
  margin: 10px 0px;
}

.action-segment {
  overflow-y: auto;
  overflow-x: hidden;
  background-color: var(---color-amber-light);
  border-radius: 10px;
  padding: 5px 10px;
  margin-bottom: 5px;
}

#actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: center;
  flex-wrap: nowrap;
  margin: 0px 0px;
  overflow: auto; 
  max-width: 800px;
}

.container-multichoice {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(---color-blue-light);
  padding: 0;
  transition: all 0.2s linear;
  border-top: 5px solid #0F7287;
  width: 100%;
}

.multichoice-instruction {
  padding: 0px;
  background-color: #0F7287;
  padding: 0px 20px 6px 20px;
  color: white;
  margin: 0px 0px 10px 0px;
  font-size: 12pt;
  border-radius: 0 0 20px 20px;
  text-align: left;
  align-self: flex-start;
}

.multichoice-options {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.multichoice-option {
  padding: 2px 8px 2px 8px;
  background-color: white;
  margin: 0px 5px 10px 5px;
  font-size: 12pt;
  color: #000;
  border-radius: 20px;
  border: 4px solid #0F7287;
  text-align: center;
}

.multichoice-option:active {
  background-color: var(---color-blue);
  color: white;
}

.container-input {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  background-color: var(---color-blue);
  padding: 5px;
}

.summary-option {
  padding: 3px 5px;
  background-color: white;
  margin: 5px 0px ;
  font-size: 12pt;
  border-radius: 10px;
  border: 3px solid #0F7287;
  text-align: center;
  color: black;
  width: 80px;
}

.container-summary-edit {
  align-self: flex-start;
  display: flex;
  flex-direction: row;
}

.container-end-options {
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 20px 20px;
  max-width: 350px;
  height: 100%;
}

.end-option {
  padding: 8px 16px 8px 16px;
  background-color: white;
  width: 100px;
  font-size: 16pt;
  border-radius: 20px;
  margin: 0px 0px 20px 0px;
  text-align: center;
  text-decoration: none;
  color: white
}

#end-reflect {
  background-color: var(---color-reflect);
}

#end-explore {
  background-color: var(---color-explore);
}

#end-act {
  background-color: var(---color-act);
}

.text-input {
  margin: 5px;
  border: none;
  padding: 10px;
  border-radius: 8px;
  display: block;
  width: 100%;
  max-height: 200px;
  background-color: white;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  font-size: 12pt;
  resize: none;
}

.text-input::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 14px !important;
}

.text-input::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.text-input::-webkit-scrollbar-track {
  background: #ffffff00;
  border-radius: 14px !important;
  z-index: -99;
}
.text-input::-webkit-scrollbar {
  width: 12px;
}

.action-segment::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 14px !important;
}

.action-segment::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.action-segment::-webkit-scrollbar-track {
  background: #f4f4f400;
  border-radius: 14px !important;
  margin: 10px 0px;
  z-index: -99;
}
.action-segment::-webkit-scrollbar {
  width: 10px;
  margin-right: 10px;
}

.text-input:focus {
  outline: none !important;
}

.text-input:disabled {
  filter: opacity(0.7);
}

.btn-send {
  background-color: transparent; 
  border: none; /* Remove borders */
}

.btn-send:enabled:active {
  filter: invert(42%);
}

.btn-send:disabled {
  filter: opacity(0);
}

.send-icon {
  height: 40px;
  width: 40px;
}

.btn-end {
  position: absolute;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap !important;
  flex-direction: column;
  top: 50%;
  right: 0;
  transform: translate(0%, -50%);
  background-color: white;
  padding: 4px;
  text-align: center;
  border-radius: 8px;
  font-size: 10pt;
  color: var(---color-blue);
  align-self: flex-end;
  z-index: 99;
  margin-right: 10px;
  height: calc(100% - 20px);
  border-width: 0px;
}

.btn-end:enabled:active {
  background-color: rgb(204, 204, 204);
  color: #000;
}

.offcanvas {
  max-width: 80%;
}

#typingProgress {
  display: none;
}

.progress-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  font-size: 10pt;
  height: 80px;
  flex-shrink: 0;
  padding: 5px 10px;
}



.spinner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 5px;
  max-width: 300px;
  text-align: center;
}

.menu-logo {
  width: 60px;
  margin-right: 6px;
  margin-left: 10px;
}

.menu-icon {
  width: 40px;
}

.menu-text {
  margin-left: 10px;
  font-size: large;
}

.nav-link {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.menu-footer a {
  color: white;
}

.hide{
  display: none !important;
}

.visuallyhidden {
  opacity: 0 !important;
}

.modal-content {
  border-radius: 20px 20px 20px 0px;
}

.modal-body {
  padding: 15px
}

.modal-body-feedback {
  height: 300px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#nav-feedback {
  text-decoration: none;
}

.summary-modal-content, .key-modal-content {
  height: 96% !important;
}

.summary-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.summary-modal-holding {
  height: 96% !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}

.summary-modal-text {
  color: black;
  font-size: 12pt;
}

.summary-modal-footer {
  margin: 20px 0 0 0;
  display: flex;
  flex-direction: row;
  justify-content: end;
}

.summary-modal-guide{
  margin: 10px 0;
  color: #8f8f8f;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.arrow-icon {
  width: 70px;
  margin: 0 4px;
}

.btn-era {
  color: white;
  padding: 10px 15px;
  font-size: 14pt;
  border-radius: 20px;
  border: none;
  width: auto;
}

.btn-era:focus {
  color: white;
  outline: none;
}

.btn-era:hover {
  color: #e2e2e2;
}

.btn-era:active {
  border: none !important;
  color: white !important;
  transform: translateY(2px);
}

.btn-modal {
  color: white;
  background-color: var(---color-blue);
  border-radius: 20px;
  border: none;
  width: auto;
}

.btn-modal-leave {
  background-color: var(---color-environment);
}

.navbar-head {
  display: flex;
  flex-direction: row;
  width: 100% !important;
  justify-content: space-between;
  align-items: center;
}

.navbar-title {
  padding: 0;
  height: 100%;
  font-size: 16pt;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: auto;
}

.reflect-buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.reflect-button {
  background-color:white;
  border: none;
  margin: 10px;
}

.reflect-button:hover{
  background-color:white;
}

.reflect-button:focus{
  border: none;
  outline: none;
  background-color:white;
}

/**
 * ==============================================
 * SLIDER
 * ==============================================
 */

.index-impact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 170px;
  padding-left: 10px;
  border-left: #dbdbdb 1px solid;
  flex-shrink: 0;
  height: 100%;
}

 .slider-container {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: transparent;
  width: 100%;
  flex-shrink: 0;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: #dbdbdb;
  outline: none;
  border-radius: 5px;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -moz-appearance: none !important;
  appearance: none !important;
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.slider::-moz-range-thumb {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(---color-blue);
  cursor: pointer;
  z-index: 2;
}

.range-text {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  height: 55px;
  width: 55px;
  pointer-events: none;
  background:none !important;
  font-size: 10pt;
}

.slider-ghost {
  position: absolute;
  left: 0;
  height: 30px;
  width: 30px;
  pointer-events: none;
  opacity: 0.5;
  border-radius: 50%;
}

.slider[data-score="0"]::-webkit-slider-thumb {
  background-color: var(---color-index-none);
}
.slider[data-score="0"]::-moz-range-thumb {
  background-color: var(---color-index-none);
}

.slider[data-score="1"]::-webkit-slider-thumb {
  background-color: var(---color-index-low);
}
.slider[data-score="1"]::-moz-range-thumb {
  background-color: var(---color-index-low);
}

.slider[data-score="2"]::-webkit-slider-thumb {
  background-color: var(---color-index-med);
}
.slider[data-score="2"]::-moz-range-thumb {
  background-color: var(---color-index-med);
}

.slider[data-score="3"]::-webkit-slider-thumb {
  background-color: var(---color-index-high);
}
.slider[data-score="3"]::-moz-range-thumb {
  background-color: var(---color-index-high)
}

.index-disabled {
  /* filter: saturate(20%); */
  filter: opacity(40%);
}

#noDataMessage {
  align-self: center;
  margin: 20px;
  text-align: center;
}

/**
 * ==============================================
 * Dot Flashing
 * ==============================================
 */
 .dot-flashing {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(---color-act);
  color: var(---color-act);
  animation: dot-flashing 1s infinite linear alternate;
  animation-delay: 0.5s;
}
.dot-flashing::before, .dot-flashing::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
}
.dot-flashing::before {
  left: -15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(---color-act);
  color: var(---color-act);
  animation: dot-flashing 1s infinite alternate;
  animation-delay: 0s;
}
.dot-flashing::after {
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(---color-act);
  color: var(---color-act);
  animation: dot-flashing 1s infinite alternate;
  animation-delay: 1s;
}

@keyframes dot-flashing {
  0% {
    background-color: var(---color-act);
  }
  50%, 100% {
    background-color: rgba(229, 229, 229, 0.858);
  }
}

.no-link {
  text-decoration: none !important;
  color: white;
}

.white-link:link {
  text-decoration: underline;
  color: white;
}

.white-link:visited {
  color: white;
  text-decoration: none;
}

.white-link:hover {
  text-decoration: underline;
  color: white;
}

.white-link:active {
  text-decoration: underline;
  color: white;
}

.index-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 10px 0px 10px 0px;
}

.index-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
}

.index-row-title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  color: black;
}

.index-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  border-bottom: #dbdbdb 1px solid;
}

.index-impact-key {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 170px;
  padding-left: 10px;
  border-left: #dbdbdb 1px solid;
  padding-bottom: 10px;
}

.index-impact-labels {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: white;
  font-size: 11pt;
}

.index-header-title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-right: 10px;
  padding-bottom: 10px;
}

.index-title {
  font-size: 10pt;
}

.index-header-text-sm {
  font-size: 10pt;
}

.index-label-left {
  border-radius: 12px 0px 0px 12px;
}

.index-label-right {
  border-radius: 0px 12px 12px 0px;
}

.index-impact-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 35px;
  width: 40px;
}

.index-icon {
  flex: 1 0 auto;
  width: 40px;
  height: auto;
  margin-right: 4px;
  background-color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.justify-collapse {
  width: 100%;
}

.justify-text {
  /* border-bottom: #2d2d2d 1px solid;
  border-right:  #2d2d2d 1px solid;
  border-left: #2d2d2d 1px solid;
  border-radius: 0px 0px 10px 10px; */
  background-color: #dedede;
  border-radius: 10px;
  padding: 10px 10px 10px 10px;
  margin: 10px 0px;
  width: 100%;
  font-size: 10pt;
}

.index-icon-reflect {
  width: 30px;
  border-radius: 50%;
  height: 30px;
  margin-left: 10px;
  object-fit: contain;
}

#index-impact-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.index-icon-selected {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

.tl-score[data-score="0"] {
  background-color: var(---color-index-none);
}

.tl-score[data-score="1"] {
  background-color: var(---color-index-low);
}

.tl-score[data-score="2"] {
  background-color: var(---color-index-med)
}

.tl-score[data-score="3"] {
  background-color: var(---color-index-high)
}

.info-icon {
  width: 20px;
  height: 20px;
  margin-left: 3px;
}

.info-container {
  display: flex;
  align-items: center;
  color: var(---color-explore);
  font-size: 16pt;
  font-weight: bold;
}

.index-info-container {
  display: flex;
  align-items: center;
}

#action {
  white-space: pre-line;
}

#action-urls{
  flex-shrink: 0;
}

.chart-control {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}

#date-range-select {
  max-width: 150px;
}

.reflect-chat-header, #chats-header {
  display: flex;
  flex-direction: row;
  width: 100%;
  font-size: 1.25rem;
  align-items: center;
}

#reflect-chats {
  overflow-y: auto;
}

#reflect-instructions {
  overflow-y: auto;
}

#reflect-instructions ul {
  padding-left: 1.2em
}

#terms-list {
  list-style-position: inside;
  padding-left: 0;
}

#terms-list ::marker {
  margin-right: 2px;
}

.signup-tab {
  display: none;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

/* Mark the active step: */
.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #04AA6D;
}

.signup-buttons {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.key-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0px;
}

.key-colour {
  width: 50px;
  height: 20px;
  border-radius: 5px;
  margin-right: 10px;
}

.key-grey {
  background-color: var(---color-index-none);
}

.key-green {
  background-color: var(---color-index-low);
}

.key-amber {
  background-color: var(---color-index-med);
}

.key-red {
  background-color: var(---color-index-high);
}

.btn-key {
  border: var(--bs-border-width) solid var(--bs-border-color);
}

.menu-footer {
  color: white;
  display: flex;
  flex-direction: column;
}

.index-none {
  background-color: var(---color-index-none);
}

.index-low {
  background-color: var(---color-index-low);
}

.index-med {
  background-color: var(---color-index-med);
}

.index-high {
  background-color: var(---color-index-high);
}

.carousel-holding-item {
  height: 100%;
  width: 100%;
}

.carousel-holding{
  height: 100%;
  width: 100%;
  overflow-y:  auto;
  /* padding: 20px */
}

.carousel-holding-inner{
  height: 100%;
  width: 100%;
  overflow-y:  auto;
  padding: 10px
}

.carousel-holding-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-size: 14pt;
  text-align: center;
  margin: 10px 20px;
}

.carousel-holding-image-summary {
  width: 100px;
  height: auto;
  margin-top: 10px;
}

.carousel-holding-image-index {
  width: 150px;
  height: auto;
  margin-top: 10px;
}

.carousel-holding-image-issues {
  width: 150px;
  height: auto;
  margin-top: 10px;
}

.carousel-holding-image-reflect {
  width: 200px;
  height: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

.holding-image-title {
  margin: 5px 0px;
  font-size: 12pt;
}

.summary-includes {
  width: 100%;
  border: 4px solid var(---color-explore);
  border-radius: 20px;
  margin: 6px 0px;
}

.btn-reflect-act {
  background-color: var(---color-act);
  color: white;
  font-family: 'Comfortaa', sans-serif;
  font-size: 12pt;
  border-radius: 20px;
  text-decoration: none;
  padding: 3px 20px;
  margin-left: 5px;
}

.btn-era-page {
  width: 100px
}

@media (max-width: 350px) {
  #nav-feedback {
    display: none;
  }
}

.action-link {
  color: black;
  /* text-decoration: none; */
}

@keyframes fadeMessageRight {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeMessageLeft {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInTop {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(100%);
    transform-origin: bottom;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    transform-origin: bottom;
  }
}

.multichoice-fade {
  opacity: 0;
  animation: fadeIn 0.2s ease-out forwards;
}

.fade-in-user {
  opacity: 0;
  animation: fadeMessageRight 0.3s ease-out forwards;
}

.fade-in-bot {
  opacity: 0;
  animation: fadeMessageLeft 0.3s ease-out forwards;
}

.fade-in-top {
  opacity: 0;
  animation-delay: 0.5s;
  animation: fadeInTop 1s ease-out forwards;
}

.fade-in-right {
  opacity: 0;
  animation-delay: 0.5s;
  animation: fadeInRight 1s ease-out forwards;
}

.fade-in-top.delay-1 {
  animation-delay: 1.5s;
}

.fade-in-top.delay-2 {
  animation-delay: 3s;
}

.fade-in-top.delay-3 {
  animation-delay: 4.5s;
}

.fade-in-top.delay-4 {
  animation-delay: 6s;
}

.fade-in-top.delay-sm-1 {
  animation-delay: 0.5s;
}

.fade-in-right.delay-sm-1 {
  animation-delay: 1s;
}

.fade-in-right.delay-sm-2 {
  animation-delay: 2s;
}

.fade-in-right.delay-sm-3 {
  animation-delay: 3s;
}

.fade-in-right.delay-sm-4 {
  animation-delay: 4s;
}

.fade-in-right.delay-sm-5 {
  animation-delay: 5s;
}

.fade-in-right.delay-sm-6 {
  animation-delay: 6s;
}

.fade-in-right.delay-sm-7 {
  animation-delay: 7s;
}

.intro-screenshot {
  width: 35%;
  max-width: 150px;
  height: auto;
  /* object-fit: cover; */
  margin-bottom: 20px;
}

#feedback {
  resize: none;
}

#act-footer, #reflect-footer {
  max-width: 800px;
  justify-self: center;
}