﻿.accordion {
  width: 100%;
  margin-bottom: 25px;
}

.accordion-header,
.accordion-body {
  background: white;
}

.accordion-header {
	background: #FFFFFF;
	position: relative;
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.08);
	border-bottom: 4px solid rgba(0, 0, 0, 0.15);
	width: 100%;
	height: auto;
	padding: 20px 20px 15px 20px;
	max-height: 165px;
	font-weight: 600;
	font-family: 'bookerly';
	font-size: 21px;
	line-height: 1.5;
	margin-bottom: 0px;
	cursor: pointer;
	color: #232f3e;
	transition: all 0.3s ease-in-out;
	z-index: 100;
}

.accordion-header:hover {
	border: 1px solid #00A8E1;
	color: #00A8E1;
	border-bottom: 4px solid #00A8E1;
	box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
}
.accordion__item {
	margin-bottom: 15px;
}

.accordion-body {
  background: #FFFFFF;
  color: #3f3c3c;
  clear: right;
  display: none;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
}

.accordion-body__contents {
  padding: 30px 20px 20px 20px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0px 0px 3px 3px;
}

.accordion__item > .accordion-header:after {
  content: "\f3d0";
  font-family: IonIcons;
  float: right;
  position: relative;
  font-size: 16px;
  top: -25px;
  transition: transform .3s ease-in-out;
  transform: rotate(0deg);
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 30px;
}
.accordion__item.active > .accordion-header:after {
  transform: rotate(-180deg);
}

.accordion__item.active .accordion-header {
  background: #FFFFFF;
  color: #232f3e;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);

}
.accordion__item.active > .accordion-header:after {
	background: #00A8E1;
	border: 2px solid #00A8E1;
	color: #FFFFFF;
}
