.find {
    width: 200px;
    height: 50px;
    font-weight: bold;
    background-color: #FF0000;
    color: #FFFFFF;
}

.wrapper {
    max-width: 80%;
    white-space: normal;
    word-wrap: break-word;
}

button span {
    vertical-align: middle;
    font-weight: bold;
}

li:not(:last-child) {
   margin-bottom: 20px;
}

/* Legend-related styles */
.legend {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.svg {
    width: 40px;
    height: 24px;
    margin-left: auto;
    margin-right:auto;
    display:block;
}

.legend-text {
    float: left;
    display: inline-block;
    width: 90%;
    font-size: 80%;
}

/* Collapsible styles*/
.collapsible {
  background-color: #34b1eb;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active, .collapsible:hover {
  background-color: #349ceb;
}

.collapsible:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
}
