/***********************************************************************************
 * UTI-TOOLKIT-V?.CSS 
 * 
 * A collection of CSS definitions specific to the UTI Toolkit section of the QID 
 * website 
 * 
 * 2022-06-16: Created 
 * 2022-10-07: Added styling for case studies, videos, and H1 
 * 2022-10-28: Moved user identification and breadcrumbs to the same line 
 * 2022-12-16: Changed to v1 
 * 2023-12-14: Changed to v2 
 *             Changed structure of user identification and breadcrumbs 
 * 2025-11-17: Changed to v3 
 ***********************************************************************************/


/***********************************************************************************
 * HTML Tags 
 ***********************************************************************************/
h1 {
  text-align: center;
}


/***********************************************************************************
 * Header 
 ***********************************************************************************/
header { 
	background-color: #ffffff; 
	background: linear-gradient(180deg, #ffffff, #ffffff); 
}


/***********************************************************************************
 * Site Identification (logo/tagline) 
 ***********************************************************************************/
#site-identification { 
	justify-content: space-between; 
  align-content: center; 
  margin-top: 0;
  padding-top: .8em;
}
#site-logo, #sponsor-logo { 
  min-width: 15rem; 
  min-height: 9rem; 
}
#site-logo img, #sponsor-logo img { 
  max-height: 8rem; 
  padding: 0 0 0 0; 
}
#site-tagline { 
	font-size: 2.125rem; 
	margin: 0 0 0 0; 
	font-weight: bold; 
	text-align: center; 
	white-space: nowrap; 
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif; 
}

@media only screen and (max-width: 700px) {
  #site-logo, #sponsor-logo { 
    min-width: 9.5rem; 
    min-height: 5.7rem; 
  }
	#site-logo img, #sponsor-logo img { 
    max-height: auto; 
  }
  #site-tagline { 
		font-size: 1rem; 
	}
}

@media only screen and (max-width: 600px) { 
	#site-logo, #sponsor-logo { 
    min-width: 6.3rem; 
    min-height: 3.8rem; 
  } 
  #site-logo img, #sponsor-logo img { 
    max-width: 100px; 
  }
	#site-tagline { 
		font-size: .75rem; 
	}
}


/***********************************************************************************
 * Site Navigation 
 ***********************************************************************************/
#site-navigation-container { 
	background-color: #163756; 
	box-shadow: 0px 2px 0px #07223c, 0px -2px 0px #07223c;  
}
#site-navigation label, #site-navigation a { 
	color: #ffffff; 
}
#site-navigation label:hover, #site-navigation a:hover { 
	color: #ffffff; 
}
#site-navigation .ddm-menu .ddm-ul .ddm-li:hover { 
  background-color: #4d6d8b; 
}
#site-navigation .ddm-menu > .ddm-ul > .ddm-li > .ddm-ul { 
	background-color: #445A43; 
}
#site-navigation .ddm-menu .ddm-toggle-on { 
	background-color: #445A43 !important; 
}


/***********************************************************************************
 * You Are Here (Breadcrumbs and User Identification) 
 ***********************************************************************************/
#you-are-here-container { 
  box-shadow: 0px -2px 0px #04131c;
}


/***********************************************************************************
 * Collapsible Content - H2 Header 
 ***********************************************************************************/
h2.collapsible-open { 
  border-color: #163756; 
  background: #4d6d8b; 
  color: #ffffff; 
}
h2.collapsible-closed { 
  border-color: #858280; 
  background: #8f8f8f; 
  color: #ffffff; 
}
h2.collapsible-open:hover, h2.collapsible-closed:hover { 
  color: #333333; 
}


/***********************************************************************************
 * Filterable Table 
 ***********************************************************************************/
.filterable th { 
  border-color: #ffffff;
  background-color: #5c6e7c; 
  color: #ffffff;  
}
.filterable td { 
  border-color: #ffffff; 
  border-bottom-color: #5c6e7c; 
}


/***********************************************************************************
 * Videos 
 ***********************************************************************************/
table.media-module { 
  width: 85%; 
  margin-left: auto;
  margin-right: auto; 
  margin-top: 2em; 
}
table.media-module td.media-video { 
  width: 502px; 
}
table.media-module td.media-video p { 
  text-align: center; 
  margin-bottom: .5em; 
}
table.media-module td.media-video iframe { 
  width: 500px; 
  height: 281px; 
  border: 5px solid #000000; 
}
table.media-module td.media-video-buttons { 
  vertical-align: middle; 
  text-align: center; 
  padding-left: 10px; 
  font-size: 1.2em; 
}
table.media-module td.media-video-buttons a { 
  display: block; 
}
table.media-module td.media-video-buttons a+a { 
  display: block; 
  margin-top: .5em; 
}
table.media-module td.media-video-buttons a.document-button { 
  font-size: 90%; 
  width: 100%; 
  max-width: 260px; 
  box-sizing: border-box; 
}
table.media-module td.media-video-buttons .ui-button { 
  padding: .3em .3em; 
}
.media-video-links { 
  width: 85%; 
  margin-left: auto; 
  margin-right: auto; 
  margin-top: 0; 
  font-size: 90%; 
}
.media-video-links p { 
  margin-top: 0px; 
  margin-bottom: 0px; 
}
.media-video-links p+p { 
  margin-top: .5em; 
}

@media only screen and (max-width: 600px) { 
	table.media-module { 
    width: 100%; 
    margin-top: 1em; 
  }
	table.media-module td.media-video { 
    display: block; 
    width: 100%; 
  }
	table.media-module td.media-video div { 
    position: relative; 
    padding-bottom: 56.25%; 
    padding-top: 30px; 
    height: 0; 
    overflow: hidden; 
  }
	table.media-module td.media-video div iframe { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
  }
	table.media-module td.media-video-buttons { 
    display: block; 
    width: 100%; 
  }
}


/***********************************************************************************
 * Case Studies 
 ***********************************************************************************/
.case-study { 
  margin-left: 4em; 
  margin-top: 1em; 
}
.case-study+.case-study { 
  margin-top: .5em; 
}
.case-study-print-link { 
  text-align: right; 
  font-size: .9em; 
  margin-bottom: 1em; 
}
.case-study-presentation { 
  display: flex; 
  flex-direction: row; 
  flex-wrap: nowrap; 
  justify-content: space-between; 
  align-items: stretch; 
  align-content: flex-start; 
}
.case-study-presentation-description { 
  border: 2px solid #000000; 
  width: 49%; 
  padding: 1em; 
}
.case-study-presentation-vitals { 
  border: 2px solid #000000; 
  width: 49%; 
  padding: 1em; 
}
.case-study-presentation-vitals-heading { 
  text-align: center; 
  font-weight: bold; 
}
.case-study-answer-link { 
  text-decoration: underline; 
  color: #0000ee; 
}
.case-study-answer-link:hover { 
  cursor: pointer; 
}
.case-study-answer-link:visited { 
  color: #551a8b; 
}
.case-study-answer { 
  background-color: #f3f3f3; 
  padding: 1em; 
} 
.case-study-answer-communication-script { 
  border: 1px solid #000000; 
  padding: 1em; 
}
.case-study-answer-communication-script-header { 
  margin: 1em auto 1em auto; 
  width: 250px; 
  border: 2px solid #000000; 
  font-weight: bold; 
  text-align: center; 
  padding: .6em; 
}
.case-study-answer-communication-script-resident { 
  float: left; 
  margin: 1em 0; 
}
.case-study-answer-communication-script-provider { 
  float: right; 
  margin: 1em 0; 
}
.case-study-answer-communication-script-date { 
  clear: both; 
  margin: 1em 0; 
}
.case-study-answer-communication-script-footer { 
  border: 2px solid #000000; 
  font-weight: bold; 
  padding: .6em; 
}

@media only screen and (max-width: 600px) { 
	.case-study { 
    margin-left: 1em; 
  }
}


/***********************************************************************************
 * End of UTI-TOOLKIT-V?.CSS 
 ***********************************************************************************/
 