/* CSS Document */
a:active,
a:hover {
  outline: 0;
}
.bubble-list {
	margin: 0;
}
.bubble-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.bubble-list li {
	margin: 0;
	padding: 0;
	position: relative
}
.bubble-list li:before {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	top: 10px
}

.bubble-list .active .bubble:after,
.bubble-list .active .bubble:before {
	position: absolute;
	content: "";
	top: -8px;
	left: 8px;
	width: 0px;
	height: 0px;
}
.bubble-list .active .bubble:before {
	top: -10px;
	left: 7px;
}
.bubble-list .bubble {
	font-size: 14px;
	color: #4496d2;
	padding: 0 24px 10px 24px;
	position: relative;
	visibility: hidden;
	opacity: 0;
	height: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.bubble-list .active .bubble {
	padding: 8px 24px 10px 24px;
	visibility: visible;
	opacity: 1;
	height: auto;
}
.bubble-list h8 {
	font-size: 20px;
	font-weight: normal;
	padding: 8px 24px 0;
	margin: 0;
	cursor: pointer;
}
.bubble-list h8:hover {
	color: #1d5680;
}
.bubble-list .active h8 {
	padding: 8px 24px 16px;
	font-size: 20px;
	color: #1d5680;
}
.bubble-list .bubble p {
	font-size: 16px;
	text-transform: none;
	display: none;
}
.bubble-list .active .bubble p {
	display: block;
	 font-family: 'Rubiklight', sans-serif;
}
.bubble-list .active .bubble p a {
	color: #2ecc71;
	 font-family: 'Rubiklight', sans-serif;
}
.bubble-list .active .icon-plus {
  display: none;
}
.bubble-list .active .icon-minus {
  display: inline-block;
}
.bubble-list:not(.active) .icon-plus {
  display: inline-block;
}
.bubble-list:not(.active) .icon-minus {
  display: none;
}

.sectionActionsh {
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
  background: #2ecc71;
  border: 1px solid #e6f4fd;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  text-align: center;
	color: white;
}

.sectionActionsh > a {
  display: block;
  padding: 3rem 1.5rem;
  color: #fff;
  font-family: 'RubikRegular', sans-serif;
	text-decoration: underline;
}
.sectionActionsh > a:hover {
  background: #1b7943;
  color: #fff;
}
.sectionActionsh > a p {
  margin-bottom: 0;
}
