
.growfast-accordion__item{
	margin-block: 1rem;
}
.growfast-accordion__item--content{
	display: none;
  text-align:center;
  background-color:#ffffff95;
  font-family: Jost, sans-serif;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  color: #363636;
  font-size: 18px;
  padding:20px;
  border-bottom-left-radius:5px;
  border-bottom-right-radius:5px;
}
.growfast-accordion__item--title{
	padding: 1rem;
	border-radius: 5px;
  border-top-left-radius:5px;
  border-top-right-radius:5px;
  border-bottom-left-radius:0px;
  border-bottom-right-radius:0px;
	line-height: 1.2;
	position: relative;
	cursor: pointer;
  border:0!important;
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(250,248,246,1) 40%);
}
}
.growfast-accordion__item--content>div{
	padding: 1rem 1rem 0;
}

.growfast-accordion__item--content img{
	border-radius:100%;
  border:1px solid #CFBB7A;
  width:40px;
  height:40px;
}
.growfast-accordion__item--content>div>*:last-child{
	margin-bottom: 0;
}
.growfast-accordion__item--title span {
	cursor: pointer;
	margin-top: -1rem;
	position: absolute;
	right: 0.625rem;
	top: 50%;
	width: 2rem;
	height: 2rem;
	flex-direction: column;
	justify-content: center;
	display: flex;
	padding: 0.375rem;
}

.growfast-accordion__item--title span:before,
.growfast-accordion__item--title span:after {
	content: "";
	display: block;
	height: 1px;
	width: 100%;
	top: 50%;
	left: 0.5rem;
	margin-top: -1px;
	transform-origin: 50% 50%;
	opacity: 1;
	-moz-transition: -moz-transform ease 200ms;
	-webkit-transition: -webkit-transform ease 200ms;
	-o-transition: -o-transform ease 200ms;
	-ms-transition: -ms-transform ease 200ms;
	transition: transform ease 200ms;
	border: none;
}

.growfast-accordion__item--title span:before {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(-180deg);
}

.growfast-accordion__item--title span:after {
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(90deg);
}

.growfast-accordion__item--title.active span:after,
.growfast-accordion__item--title:hover span:after {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}