div.block-dropdown {
  padding: var(--wp--preset--spacing--xl);
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  background-color: white;
  color: var(--wp--preset--color--dark);
  margin-bottom: var(--wp--preset--spacing--s);
}
div.block-dropdown * {
  box-sizing: border-box;
}
div.block-dropdown:last-child {
  margin-bottom: var(--wp--preset--spacing--xl);
}
div.block-dropdown.open:after {
  content: "-";
}
div.block-dropdown .title {
  font-weight: 450;
  min-height: 40px;
  display: flex;
  align-items: center;
  padding-right: 50px;
}
div.block-dropdown::after {
  content: "+";
  font-size: 30px;
  width: 40px;
  height: 100%;
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 999px;
  position: absolute;
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: var(--wp--preset--spacing--xl);
}
div.block-dropdown .text {
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  width: 95%;
  overflow: hidden;
  height: 0px;
  transition: height 0.3s;
}
@media screen and (max-width: 768px) {
  div.block-dropdown .text {
    width: 80%;
  }
}
div.block-dropdown .text p {
  padding-top: var(--wp--preset--spacing--s);
  color: #313131;
  margin: 0;
}
div.block-dropdown.open .text {
  height: auto;
  height: calc-size(auto);
}