.accordion-trigger {
  width: 92%;
  display: block;
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  padding: 24px;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  display: flex;
  border: none;
  gap: 16px;
  justify-content: space-between;
  cursor: pointer;
}
/*
.accordion-item {
  width: 100%;
}
*/

.accordion-title {
  font-size: 20px;
  font-weight: 600;
}

.accordion-icon {
  transition: transform 0.5s ease;
}

.accordion-item[open] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-item:not([open]) .accordion-icon {
  transform: rotate(0deg);
}

.accordion-text {
  text-align: left;
  word-wrap: break-word;
  margin-left: 2%;
  margin-right: 15%;
  //width: 80%;
}

.accordion {
  margin-bottom: 24px;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 320px;
  background-color: black;
  color: #fff;
  text-align: center;
  font-size: 14px;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  top: -300%;
  right: 100%;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent black;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* used for download links that take a while */
.hidden { display: none; }
.throbber {
    width: 14px;
    height: 14px;
    border: 3px solid #ccc;
    border-top: 3px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-left: 10px;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}