.wrapper {
  width: 100%;
}
.title {
  text-align: center;
  font-weight: 600 !important;
  font-size: 1.2em;
  margin-bottom: 0.5rem;
  margin:1.5rem 0rem;
}
.item-wrapper {
  position: relative;
  margin-bottom: 0.3rem;
  border-radius: 0.2rem;
  box-shadow: 3px 3px 10px #0002;
  background-color: #fff;
  transition: all 0.3s;
  overflow: hidden;
  margin:7px 0px;
  padding: 5px 10px;
  border-radius: 5px;
  z-index: 1;
  &:before {
    content: '';
  }
  &.active {
    &:before {
      transform: scale(8);
      filter: blur(8px);
      content: '';
        position: absolute;
        bottom: 0rem;
        right: 0;
        width: 5rem;
        height: 5rem;
        background-image: radial-gradient(#fff2b3 50%, #fff0 0);
        z-index: -1;
        pointer-events: none;
        transition: all 0.3s;
    }
    .item-title {
      text-decoration: underline;
      &:hover {
        transform: none;
      }
    }
  }
}
.item-title {
  padding: 0.2rem;
  font-weight: 600 !important;
  cursor: pointer;
  transition: all 0.3s;
  margin:5px 0px;
  &:hover {
    transform: translateX(1%);
  }
  
}
.content-outer {
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
}
.content {
  padding: 0.2rem;
  line-height: 1.7;
  font-style: italic;
}
