/*
Scholarships shortcode CSS
*/

.scholarship-container {
	margin: 1em 0em;
}
.scholarship-container .scholarship {
	border-top: 1px solid #999;
	border-bottom: 1px solid #999;
	margin-bottom: -1px;
}
.scholarship .top-portion {
	padding: 0.25em 0.5em;
	margin-bottom: -1px;
	position: relative;
}
.scholarship .top-portion .title {
	display: inline-block;
	width: 50%;
}
.scholarship .top-portion .amount {
	display: block;
	position: absolute;
	width: 25%;
	right: 25%;
	top: 0.25em;
	text-align: right;
}
.scholarship .top-portion .recipients {
	display: block;
	position: absolute;
	width: 25%;
	right: 0.5em;
	top: 0.25em;
	text-align: right;
}
.scholarship .lower-portion {
	background-color: #F7F7F7;
	overflow: hidden;
}
.scholarship .lower-portion p {
	margin: 0em;
	padding: 0.25em 0.5em;
}
.scholarship .top-portion a {
	display: block;
	margin-left: 1.25em;
}
.scholarship .top-portion .title:before {
	content: "▶";
	display: table;
	position: absolute;
	color: #333;
	transition: transform 0.25s ease-in-out;
}
.scholarship.open .top-portion .title:before {
	transform: rotate(90deg);
}

@media (max-width: 719px) {
	.scholarship .top-portion .title,
	.scholarship .top-portion .amount,
	.scholarship .top-portion .recipients {
		width: auto;
		text-align: left;
		display: block;
		position:static;
	}

	.scholarship .top-portion .amount,
	.scholarship .top-portion .recipients {
		padding-left: 1.25em;
	}

	.scholarship .lower-portion {
		background-color: #F0F0F0;
	}
}