.Accordion {
  padding-top: 0px;
  padding-bottom: 60px;
}
.Accordion__tabs {
  max-width: 900px;
  list-style: none;
  padding-left: 0;
}
.Accordion__tab {
  width: 100%;
}
.Accordion__tab__headline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(248, 248, 248, 0.5);
  transition: 0.2s ease all;
  padding: 20px 15px;
  cursor: pointer;
  font-weight: 400;
}
.Accordion__tab__headline:hover {
  background-color: #dedfe0;
}
.Accordion__tab__headline > h4 {
  font-size: 16px;
  font-weight: bold;
  user-select: none;
  margin: 0;
}
.Accordion__tab__headline .icon {
 display: inline-block;
    width: 30px;
    height: 30px;
    border: 2px solid;
    border-radius: 30px;
    color:#000839;
    position: relative;
}
.Accordion__tab__headline .icon::before {
  display: block;
    position: absolute;
    content: "";
    top: 12px;
    left: 6px;
    width: 15px;
    height: 2px;
    background: currentColor;
}
.Accordion__tab__headline .icon::after {
 display: block;
    position: absolute;
    content: "";
    top: 6px;
    left: 12px;
    width: 2px;
    height: 15px;
    background: currentColor;
    transition: 0.2s ease all;
}
.Accordion__tab__content {
  overflow: hidden;
  padding: 0px 15px;
  box-sizing: border-box;
  height: 100%;
  max-height: 0;
  transition: 0.4s ease all;
}
.Accordion__tab--open .Accordion__tab__headline .icon::after {
  transform: scaleY(0);
}
.wrapper{
  padding: 10px 5px;
}



/*== start of code for tooltips ==*/
.tool {
    cursor: help;
    color: #000839;
    font-weight: 500;
}

.tooltip-inner{
    background-color: #000839 !important;
    font-size: 16px !important;
    max-width: 550px !important;
    padding: 1rem !important;
  }