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



h4 {
	font-weight: 800;
}
h5 {
	font-size: 1em;
	font-weight: 600;
}
.accordion h3 {
	font-size: 1em;
	margin-top: 0;
}

.contact .card-staff-5 .card-staff-portrait {
	display: none;
}

.hide-mobile {
	display: none;
}

/* big image blocks next to text on non-mobile screens, fixed on mobile */
.big-blocks .left-block {
	background-position: right;
}
.big-blocks .right-block {
	background-position: left;
}

.big-blocks .right-block .value {
	background-position: left;
}
.big-blocks .left-block .value {
	left: 80px;
	top: 80px;
	background-position: right;
}

/* WELLNESS WHEEL STYLES */

#wellness-wheel {
  --financial: #4D6A93;
  --environmental: #7C6B6B;
  --intellectual: #707070;
  --emotional: #638B80;
  --social: #7E4815;
  --physical: #844A49;
  --spiritual: #355B5C;
  --occupational: #726D5C;
}

.financial {     background-color: var(--financial);}
.environmental { background-color: var(--environmental);}
.intellectual {   background-color: var(--intellectual);}
.emotional {     background-color: var(--emotional);}
.social {        background-color: var(--social);}
.physical {      background-color: var(--physical);}
.spiritual {     background-color: var(--spiritual);}
.occupational {  background-color: var(--occupational);}

/* COACH BIO CARDS */

.card.trip-leader {
	padding: 0;
	display: flex;
	flex-direction: column;
	background-color: #f9f9f9;
	border-radius: 8px;
}
.trip-leader .pic-name {
	display: flex;
	flex-direction: row;
	align-items: center;
background-color: white;
	border-radius: 8px;
	box-shadow: 0 3px 6px #00000029;
}
.trip-leader img {
	width: 50%;
	max-height: 100%;
	object-fit: contain;
	height: auto;
	margin-inline-end: 20px;
}
.pic-name h3, .pic-name .title {
	flex-basis: 66%;
}
.pic-name .title {
	font-weight: 700;
}
.pic-name div {
	text-align: left;
}
.pic-name h3 {
	font-size: 1.33em;
}
.trip-leader .bio {
	padding: 40px;
}
.bio dd {
	margin-bottom: 10px;
}

/* FORMAT TABLES */

	.schedule, .schedule th, .schedule td {
		border: 1px solid #ddd;
		border-collapse: collapse;
	}
	.schedule th {
		color: var(--color-uvu-primary);
		vertical-align: bottom !important;
		background-color: #eee;
		text-wrap: wrap;
		white-space: pre-wrap;
	}
		.schedule th:first-child {
			background-color: var(--color-uvu-primary);
			color: #fff;
		}
		.schedule tr td:first-child {
			color: var(--color-uvu-primary);
			font-weight: 700;
		}
	.schedule td {
		width: 20%;
		vertical-align: middle !important;
	}
	.wide {
		width: 65%;
	}

/* SECTIONS AROUND DAYS */
.day {
	background-color: #fff;
	border-radius: 8px;
	margin-block: 10px;
	padding: 10px 20px;
}
	.day h3 {
		background-color: var(--color-uvu-primary);
		padding: 10px;
		color: #fff;
		border-radius: 8px;
		margin-inline: -10px;
		margin-block-start: 5px;
		font-size: 1.75rem;
	}
	.day h4 {
		font-size: 1.5rem;
	}
	.day ul {
		padding-left: 1em;
	}
.bold-links a {
	font-weight: 600;
	font-size: 1.15em;
	padding-inline: .25em;
}

/* STYLE COACHING PROGRAMS LIST */
.coaching-programs {
	font-size: .85em;
}
.coaching-programs li {
	margin-block-end: 1.25em;
}
.coaching-programs a {
	font-weight: 700;
	font-size: 1rem;
	display: inline-block;
	margin-right: 5px;
}

/* STYLING PRESENTATION TOPICS */
.presentation-topics h3 {
	margin-top: 2em;
}
	h3.move-up {
		margin-top: .25em;
	}

.alcohol h4{
	margin-top: 2em;
}
.alcohol h4:first-child {
	margin-top: 0;
}

.wForm div.htmlContent {
	margin-top: 20px;
}

.event-description {
	display:grid;
	align-items: center;
	padding-left: 10px;
}


/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	
	.contact .card-staff-5 .card-staff-portrait {
	display: block;
}
	
	.big-blocks .right-block .value {
	float: right;
	}	
	.big-blocks .value {
	width: 40%;
	}
	.big-blocks .left-block, .big-blocks .right-block {
	background-repeat: no-repeat;
	background-size: 50%;
	padding: 80px;
}

	.big-blocks .col-sm-push-6 {
		position: relative;
		left: 50%;
		display: block;
	}
	.big-blocks .col-sm-pull-6 {
		position: relative;
		right: 50%;
		display: block;
	}
	
	
.big-blocks .stress-reduction {
	background-image: url(https://www.uvu.edu/wellness/images/sevices/services_reduction.jpg);
}
.big-blocks .body-scan {
	background-image: url(https://www.uvu.edu/wellness/images/sevices/services_fit3d.jpg);
}
.big-blocks .massage {
	background-image: url(/wellness/images/sevices/services_massage.jpg
);
}
	
/* 	COACH BIO CARDS */
	.card.trip-leader {
	width: 90%;
}
	.trip-leader .pic-name {
	height: 230px;
	max-height: 230px;
}

/* 	ADD COLUMNS TO COACHING PROGRAMS */
	.coaching-programs {
		columns: 3;
	}
	
	img.hide-mobile {
		display: inline;
	}


}/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	
/* 	COACH BIO CARDS */
	.trip-leader img {
	width: 30%;
}

.event-description {
	padding-left: 20px;
}


}/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
	
	.jumbo header {
    padding: 80px 40px;
}



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