/* 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 ========================== */
/*so white is visible when editing*/
.ou-justedit-region .text-white {
    color: #000;
}

/*PAGE HEADER CSS*/
.flex-col-row {
    display: flex;
    flex-direction: column;
}
.head-img-end {
    padding-bottom: 35px;
}

/*HIGHLIGHT CARD CSS*/
.highlight-card {
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
    position: relative;
}
.highlight-card img {
    border-radius: 8px;
}
.highlight-card h3 {
    background: #185C33;
    font-family: "Stratum", "Rajdhani", sans-serif;
    color: #fff;
    padding: 8px;
    font-size: 24px;
    display: inline-block;
}

.offset-border-v2:before, .mobile-offset-border-v2:before {
    content: '';
    width: 100%;
    height: 100%;
    border: 2px solid #C5D97A;
    border-radius: 8px;
    display: block;
    position: absolute;
    left: 3px;
    top: 0px;
    z-index: 5;
}
.offset-border-v2:after, .mobile-offset-border-v2:after {
    content: '';
    width: 100%;
    height: 100%;
    border: 2px solid #008A40;
    border-radius: 8px;
    position: absolute;
    display: block;
    left: -5px;
    top: -8px;
    z-index: 10;
}

/*SCHEDULE ACCORDION CSS*/
details {
    box-shadow: 0 2px 5px rgb(0 0 0 / 20%);
    margin-bottom: 15px !important;
    outline: none !important;
    background-color: #fff !important;
}
details summary {
    background-color: #fff !important;
    padding: 15px 45px 15px 15px !important;
    outline: none !important;
	display: block !important;
}
details[open] summary {
    background-color: #185c33 !important;
    border-radius: 5px 5px 0 0;
}
details[open] summary h3 {
    color: #fff !important;
}
details summary:after {
        color: #185c33 !important;
    background-color: inherit !important;
    font-size: 24px !important;
    right: 5px !important;
}
details[open] summary:after {
	color: #fff !important;
}
.accordion-content {
    border-top: none !important;
    background-color: #fff !important;
}

/*SCHEDULE TABLE CSS*/
.table-responsive {
    border: none;
}
.table-responsive table {
    background-color: #fff;
}
.table-responsive td:first-child {
	border-right: 2px dashed #ddd;
}
.table-responsive td {
	border-top: 2px dashed #ddd !important;
	padding: 15px !important;
}
.table-responsive th {
	border: none !important;
}

/*PHOTO CARD CSS*/
.card-staff-5 {
	background-color: var(--color-uvu-primary);
    color: #fff;
	border-radius: 8px;
}
.card-staff-5 .card-staff-name, .card-staff-5 a, .card-staff-5 a:hover {
	color: #fff !important;
}
.card-staff-5 .card-staff-portrait {
	display: none;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%) !important;
}
.card-staff-5 .card-staff-details .card-staff-title {
	color: #fff;
	font-size: 1.3em;
}
.card-staff-5.inverted .card-staff-details .card-staff-name {
	color: #000 !important;
}
p.card-staff-email, p.card-staff-directory, .card-staff-officecontact {
    margin: 0;
	color: #fff;
}

/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	details summary {
		display: flex !important;
	}
	
	.card-staff-5 .card-staff-portrait {
		display: block;
	}
	
	/*PAGE HEADER CSS*/
	.flex-col-row {
        flex-direction: row;
    }
	.header-text {
        padding-left: 0;
    }
	 .head-img-end {
        margin-left: auto;
        padding-bottom: 0;
    }
	
	/*HIGHLIGHT CARD CSS*/
	.highlight-card {
		grid-template-columns: 1fr 1fr;
	}
	.mobile-offset-border-v2:before, .mobile-offset-border-v2:after {
		display: none;
	}
	.tablet-offset-border-v2:before {
		content: '';
		width: 100%;
		height: 100%;
		border: 2px solid #C5D97A;
		border-radius: 8px;
		display: block;
		position: absolute;
		left: 3px;
		top: 0px;
		z-index: 5;
	}
	.tablet-offset-border-v2:after {
		content: '';
		width: 100%;
		height: 100%;
		border: 2px solid #008A40;
		border-radius: 8px;
		position: absolute;
		display: block;
		left: -5px;
		top: -8px;
		z-index: 10;
	}
	
}

/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	/*HIGHLIGHT CARD CSS*/
	.highlight-card {
		grid-template-columns: 1fr 1fr;
		grid-gap: 20px;
	}
	.highlight-card h3 {
		margin-top: 0;
	}
	
}

/*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*/