.panel-background-container {
  margin: var(--wp--preset--spacing--10) 0;
}

.yct-collapsible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  max-width: 100%;
  padding: var(--wp--preset--spacing--10);
  width: 100%;
  background-color: var(--wp--preset--color--primary);
  text-align: left;
  border: none;
  border-radius: 25px;
}
.yct-collapsible:after {
  content: "";
  position: absolute;
  top: -200px;
}
.yct-collapsible .yct-collapsible-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.yct-collapsible .yct-collapsible-icon {
  font-weight: 900;
  margin-left: 1rem;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  color: var(--wp--preset--color--default-page);
  font-size: var(--wp--preset--font-size--30);
}
.yct-collapsible.active {
  background-color: var(--wp--preset--color--primary-dark);
}
.yct-collapsible.active .yct-collapsible-icon {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.yct-panel {
  -webkit-transition: max-height 500ms ease-in-out;
  transition: max-height 500ms ease-in-out;
  padding: var(--wp--preset--spacing--20);
}