@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
*{ margin: 0; padding: 0;}
body{
  font-style: normal;
  font-weight: 300;
  font-smoothing: antialiased;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
  font-size: 15px;
  background: #fff;
}

 .title {
    font-style: normal;
    font-size: 35px; 
 }

 main{
    background: #f8fcf7;
    padding: 20px;  
  }

 @media only screen and (min-width: 720px){
    main{
      max-width: 900px;
      margin-left: auto;
      margin-right: auto; 
      padding: 24px;
    }
}

.hidden-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

:root {
    --prm-color:         #025e33;
    --prm-done:          #28a745;
    --prm-button:        #41a928;
    --prm-button-text:   #ffffff;
    --prm-gray:          #b1b1b1;
}

/* Desktop: green from --prm-button, white bold 18pt text, full opacity */
.btn-local {
  background-color: var(--prm-button)      !important;
  color:            var(--prm-button-text) !important;
  opacity:          1                      !important;
  font-weight:      bold                   !important;
  font-size:        18pt                   !important;
  transition:       0.25s;
}

/* Mobile (<768px): drop text size to 14pt */
@media (max-width: 767.98px) {
  .btn-local {
    font-size: 14pt !important;
  }
}

.btn-local:hover {
  background-color: var(--prm-button);
    opacity: .5 !important;
}
.card {
  border: 0px;
}
.card-header {
  font-size: 24px;
  color: #262626;
}
.card-title {
  font-size: 20px;
  color: #4d4d4d;
}
/* CSS  TODO: changes these from steps to options*/
.steps {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 1rem;
    margin-bottom: 3rem;
    position: relative;
    gap: 10px;
}

.step-button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: none;
    background-color: var(--prm-done);
    transition: .4s;
}

.step-button[aria-expanded="true"] {
    width: 25px;
    height: 25px;
    background-color: var(--prm-color);
}
.step-button[aria-expanded="true"]:before {
  content: attr(choice-name);
  color: black;
  position: absolute;
	transform: translateX(-50%) translateY(-160%);
}

/* do not show the answer if the item is selected 
.step-button[aria-expanded="true"][choice-answer]:not([choice-answer='undefined']):after {
  content: attr(choice-answer);
  position: absolute;
	transform: translateX(-50%) translateY(60%);
} */

.step-button[aria-expanded="false"]:hover:after {
  content: attr(choice-name);
  color: black;
  position: absolute;
	transform: translateX(-50%) translateY(60%);
  transition: .4s;
}
.step-button[aria-expanded="false"]:hover:before {
  content: attr(choice-name);
  color: black;
  position: absolute;
	transform: translateX(-50%) translateY(60%);
  transition: .4s;
}

.step-button[aria-expanded="false"]:hover:after {
  content: attr(choice-answer);
  position: absolute;
	transform: translateX(-50%) translateY(130%);
}
.step-button[aria-expanded="false"]:hover {
 width: 20px;
  height: 20px;
  transition: .4s;
}

.step-button[aria-expanded="false"][choice-answer="undefined"] {
  background-color: var(--prm-gray);
}
.done {
    background-color: var(--prm-color);
    color: #fff;
}
.small-text {
  font-size: 0.7em;
  padding-bottom: 2px;
}
.probability-div {
  margin-bottom: 10px;
}
.probability-p {
  margin: 0px;
}
sup {
  font-size: .6em;
}
.fineprint-p {
  color: #000000 !important;
  padding: 2px 0 !important;
  line-height: .7em;
  margin: 0;
}

.fineprint-span {
  font-size: 12px;
  color: #666666;
}
/* New hovertext */
@-webkit-keyframes tooltipFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes tooltipFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.tt-span {
  font-size: 24px;
}
.tt {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  color: black;
  position: relative;
}

.tt__label:before {
  content: "";
  display: flex;
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.tt-dropdown {
  border-width: 10px;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: max-content;
  max-width: 720px;
  padding-top: 32px;
}

.tt-dropdown__content {
  color: white;
  background-color: var(--prm-button);
  border-radius: 4px;
  border: 1px solid var(--prm-color);
  padding: 7px 12px;
  text-align: left;
  font-size: 17px;
  line-height: 1.2em;
}

.tt--open .tt-dropdown {
  -webkit-animation: tooltipFadeIn 0.15s;
          animation: tooltipFadeIn 0.15s;
  display: block;
}

@media (hover: hover) {
  .tt:hover .tt-dropdown {
    -webkit-animation: tooltipFadeIn 0.15s;
            animation: tooltipFadeIn 0.15s;
    display: block;
  }
}

.icon-wrap {
 display: flex;
 align-items: center;
}

.tt-dropdown__content {
  background-color: #ffffff !important; /* white background */
  color: #573D82 !important;            /* DDWA purple text */
  font-size: 16px !important;           /* minimum 16px font */
  line-height: 1.4em;
  border: 1px solid var(--prm-color);
}

[hidden] {
  display: none !important;
}

#intro_card {
  font-size: 1.15rem;
}

#intro_card .title {
  font-size: 1.4rem;
  font-weight: 600;
}

#intro_card p {
  font-size: 1.18rem;
}