.accordion .card-header__tab{
  margin-bottom: 0;
  padding: 16px 10px;
  font-size: 24px;
  font-weight: 400;
  cursor: pointer;
  width: 100%;
  text-align: inherit;
  outline: none;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #2d2f3d;
  line-height: 1;
}

.accordion .card-header__tab .icon{
  line-height: 0;
}

.accordion .card-header {
  cursor: pointer; 
}

.accordion .card-header {
  position: relative;
  background: transparent;
}

.accordion .card {
  border-right: none;
  border-left: none;
  border-top: none;
  border-bottom: 1px solid #E9EAF0!important;
}

.accordion .icon {
  -webkit-box-align: center;
  align-items: center;
  background-color: rgb(229, 237, 253);
  padding: 12px;
  border-radius: 50%;
  display: flex;
  height: 100%;
  margin-right: 16px;
  transform: rotate(0deg);
  transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
.accordion .icon svg{
  fill: rgb(0, 79, 239);
}

.accordion .active .icon {
  transform: rotate(-180deg);
}

