/**
 * Accordion specific styles
 * 
 */

.accordion .container {
	display: flex;
	flex-flow: column wrap;
	max-width: 1000px;
}
	.accordion .container h2 {
		margin-bottom: 0.2em;	
	}
	.accordion .intro p {
		text-align: center;
		margin-bottom: 2em;
	}
	
	.accordion .title-box {
		position: relative;
		cursor: pointer;
		padding-bottom: 12px;
		margin-bottom: 1.5em;
		border-bottom: 1px solid #ddd;
	}
	.accordion .title-box::after {
		content: '';
		display: block;
		position: absolute;
		right: 0;
		top: 50%;
		-webkit-transform: translateY(-50%);
		   -moz-transform: translateY(-50%);
		    -ms-transform: translateY(-50%);
		     -o-transform: translateY(-50%);
		        transform: translateY(-50%);
		border: 5px solid #5f5f5f;
		border-width: 0 5px 5px 0;
		padding: 5px;
		-webkit-transition: all .5s ease;
		   -moz-transition: all .5s ease;
		    -ms-transition: all .5s ease;
		     -o-transition: all .5s ease;
		        transition: all .5s ease;
	}
	.accordion .title-box::after {
		-webkit-transform: translateY(-50%) rotate(45deg);
		   -moz-transform: translateY(-50%) rotate(45deg);
		    -ms-transform: translateY(-50%) rotate(45deg);
		     -o-transform: translateY(-50%) rotate(45deg);
		        transform: translateY(-50%) rotate(45deg);
	}
	.accordion .title-box.ui-state-active::after {
		-webkit-transform: translateY(-50%) rotate(-135deg);
		   -moz-transform: translateY(-50%) rotate(-135deg);
		    -ms-transform: translateY(-50%) rotate(-135deg);
		     -o-transform: translateY(-50%) rotate(-135deg);
		        transform: translateY(-50%) rotate(-135deg);
	}

	.accordion .title-box:focus {
		outline: none;
	}

	.accordion .title-box h5{
   		font-weight: 600;
	}
	.accordion .title-box p{
		margin-bottom: 0;
	}

	.accordion-container .ui-accordion-content {
		margin-bottom: 2em;
	}