/* Department CSS Document */
/*For mobile first adaptive design place styles for mobile and up in the mobile and up area.
Place styles for tablet and up inside the media query in the tablet and up area.
Place styles for desktop only inside the media query in the desktop only area.

For questions or media query training contact Web Development Services.
*/
/* ====================== Mobile and Up ========================== */
/*TUITION TABLE*/
.financial-aid-tuition {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}
.financial-aid-tuition div:first-child {
    border-right: 2px solid #275d38;
    padding-right: 10px;
}
.financial-aid-tuition div:last-child {
	padding-left: 10px;
}
.financial-aid-tuition p {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-align: center;
    font-size: 24px;
	margin: 0;
}

/*SCHOLARSHIP ACCORDION*/
.scholarship-accordion .accordion:not(.accordion-unstyled)::before {
    display: flex;
    justify-content: center;
    align-items: center;
    content: "\f81d";
    font-family: "Font Awesome 5 Solid", "Font Awesome 5 Pro";
    font-size: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    height: auto;
    width: 50px;
    color: #275D38;
}
.scholarship-accordion .accordion.open:not(.accordion-unstyled)::before {
	color: #FFF;
}

/*FEE TABLE*/
.fee-table tr th {
	color: #000;
    background-color: transparent;
    font-weight: normal;
    padding: 5px 5px 5px 45px !important;
}
.fee-table tr.not-indented th, .fee-table tr.total th {
    padding: 8px !important;
    font-weight: bold;
}
.fee-table tr.not-indented th, .fee-table tr.not-indented td, .fee-table tr.total th, .fee-table tr.total td {
    background-color: var(--color-uvu-primary);
    color: #fff;
}
.fee-table tr.total th, .fee-table tr.total td {
    border-top: 3px dotted var(--color-uvu-primary);
}
.fee-table tr.total {
	font-size: 18px;
}


/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	/*TUITION TABLE*/
	.financial-aid-tuition div:first-child {
		padding-right: 20px;
	}
	.financial-aid-tuition div:last-child {
		padding-left: 20px;
	}
	.financial-aid-tuition p {
		font-size: 30px;
	}
	
}

/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
}

/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {

}
/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/