/* Custom accordion panel styles */
.custom-accordion-panel-group {
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.14),
		0px 3px 1px -2px rgba(0, 0, 0, 0.2),
		0px 1px 5px 0px rgba(0, 0, 0, 0.12);
	border-radius: 4px;
	overflow: hidden;
}

.custom-accordion-panel {
	border-bottom: 1px solid #ddd;
}

.custom-accordion-panel:last-child {
	border-bottom: none;
}

.custom-accordion-heading {
	background-color: #3BC7ED;
	padding: 15px;
	cursor: pointer;
}

.custom-accordion-title a {
	display: block;
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	position: relative;
}

/* Rotate icon styling */
.custom-accordion-title a:before {
	content: '\e316';
	/* Material Icon code for expand_more */
	font-size: 24px;
	position: absolute;
	font-family: 'Material Icons';
	right: 10px;
	top: 50%;
	transform: translateY(-50%) rotate(180deg);
	/* Initial rotation */
	transition: all 0.5s ease-in-out;
}

.custom-accordion-heading.active a:before {
	transform: translateY(-50%) rotate(deg);
	/* Rotate on active */
}

.custom-accordion-body {
	background: #fff;
	padding: 15px;
}