.accordion-container {
    margin: 10px 0 !important;
}

.accordion-title {
		position: relative;
		/*background-color: #b7b8b9; */ /* #7e8283 */
		border-bottom: 2px solid #b7b8b9;
		color: #101f65 !important;
		font-size: 18px !important;
		padding: 15px 15px 15px 15px;
		font-weight: bold;
		cursor: pointer;
}

.accordion-title:hover {
	color: #b2b2b2 !important;
}

.accordion-triangle {
		left: 50%;
		transform: translateX(-50%);
		position: absolute;
		left: calc(50% - 15px);
		width: 40px;
		height: 20px;
		background-color: #b7b8b9;
		clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
		cursor: auto;
		margin-top: -0.5px;
}

.accordion-content {
		padding: 15px 20px 15px 15px;
		/*border-bottom: 1px rgba(236, 236, 236, 0.2);*/
		background-color: rgba(236, 236, 236, 0.2); /*  #f0f0f0 */
		display: none;
}

.uk-open .accordion-content {
		display: block;
}

.accordion-content > p {
    margin-bottom: 25px;
}

.uk-accordion>:nth-child(n+2) {
	border-top: none !important;
	margin-top: 0px !important;
	padding-top: 0px !important;
}

