/** FONTS & FONT SIZES **/
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@font-face {
  font-family: 'Salesforce Sans';
  src: url(../fonts/SalesforceSans-Regular.woff2?aa41afdaceb8b78c56529555448bcf44) format("woff2"), url(/fonts/SalesforceSans-Regular.woff?401b32ddc80c4c66d0558df1bc202d9b) format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Salesforce Sans';
  src: url(../fonts/SalesforceSans-Bold.woff2?68a71533d08ff9251d6f179043a4781b) format("woff2"), url(/fonts/SalesforceSans-Bold.woff?1a99b4b58efca0b3c1b1ea9c29d981e4) format("woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Salesforce Sans';
  src: url(../fonts/SalesforceSans-BoldItalic.woff2?dba3843e5b62ac3c2d9637a98f2207f4) format("woff2"), url(/fonts/SalesforceSans-BoldItalic.woff?41ae6b36a1f81e8c5d2aafe12c409f30) format("woff");
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: 'Trailhead';
  src: url(../fonts/Trailhead-Bold.woff2?703611e1f3b68f9a905eeea1489ffa0d) format("woff2"), url(/fonts/Trailhead-Bold.woff?ea9ae2fe90a7e0674444e1b042c99ec8) format("woff");
  font-weight: bold;
  font-style: italic;
}

.font-size-s {
  font-size: 0.8125rem !important;
}

.font-size-base {
  font-size: 16px !important;
}

.font-size-l {
  font-size: 1.5rem !important;
}

.font-size-xl {
  font-size: 2.75rem !important;
}

.font-weight-regular {
  font-weight: normal !important;
}

.font-weight-semibold {
  font-weight: 500 !important;
}

/** OVERALL STYLES **/
body {
	font-family: "Salesforce Sans", "Open Sans", sans-serif;
	font-size: 16px;
	line-height: 1.25;
	color: #16325C;
	text-rendering: geometricPrecision;
	-webkit-text-rendering: geometricPrecision;
	-moz-text-rendering: geometricPrecision;
	-o-text-rendering: geometricPrecision;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-o-font-smoothing: antialiased;
	padding: 10px;
	background: #222222 url(../images/backgrounds/Banner_IndustriesAstro_1.png) no-repeat left top;
	background-size: 100%;
}

@media (max-width: 768px) {
	body {
	  background: #009EDB url(../images/backgrounds/Banner_IndustriesAstro_1.png) no-repeat left top;
	background-size: cover;
	}
}

html,
body {
  margin: 0;
  padding: 0;
}

/** what does this do??? 
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
}**/

h1,
h2,
h3,
h4,
h5,
p,
label {
  margin: 0;
}

h1 {
  font-size: 2.75rem;
  line-height: 3.5rem;
  letter-spacing: .025em;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 16px;
  font-weight: bold;
}

p {
  font-size: 0.8125rem;
  line-height: 1.125rem;
}

a {
  color: #0070D2;
  text-decoration: none;
}

a:hover {
  color: #0057A3;
  text-decoration: underline;
}

/*********************************
**** COOKIE / PRIVACY WARNING ****
**********************************/

.privacy-bar {
  display: none;
  position: relative;
  margin-bottom: 15px;
  padding: 10px 20px;
  color: #222;
  font-size: 15px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.5);
}

.privacy-bar::after {
  clear: both;
  content: '';
  display: block;
}

.privacy-bar-container {
  background-color: #c1b9b4;
  background-color: #c2c2c2;
}

.privacy-bar-close-button {
  color: #215ca0;
}

.privacy-bar-content {
/*  width: 90%; */
  overflow: hidden;
  line-height: 24px;
}

.privacy-bar-content p {
  margin: 0;
}

#privacy-bar-close {
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}

#privacy-bar-close .privacy-bar-close-button {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
}

#privacy-bar-close .privacy-bar-close-button::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  background-color: #333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#privacy-bar-close .privacy-bar-close-button::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	top: 50%;
	background-color: #333;
	-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .privacy-bar {
    font-size: 11px;
  }

.privacy-bar-content {
    width: 90%;
  }

  #privacy-bar-close {
    font-size: 18px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .privacy-bar {
    font-size: 11px;
  }

.privacy-bar-content {
    width: 90%;
  }

  #privacy-bar-close {
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .privacy-bar {
    font-size: 15px;
  }

  .privacy-bar-content {
    width: 95%;
  }

  #privacy-bar-close {
    font-size: 15px;
  }
}

/*********************************
******  TITLES & SUBTITLES  ******
**********************************/
.title, .subtitle {
  text-align: center;
  font-family: "Trailhead", sans-serif;
  font-weight: bold;
  margin-bottom: 16px;
  margin-top: 12px;
}

/** These classes aren't use in this sample
.title img {
  vertical-align: middle;
  width: 80px;
}

.title img:first-of-type {
  margin-right: 20px;
  padding-bottom: 8px;
}

.title img:last-of-type {
  margin-left: 20px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  padding-top: 8px;
}
**/

/** change the color, style, and sizing of the title and subtitle to account background image color changes for different screen sizes **/
@media (max-width: 768px) {
	.title {
	  color: #FFF;
	  text-shadow: 4px 4px 12px rgba(0, 0, 0, 1);
	  font-size: 2rem;
	  line-height: 3rem;
	  letter-spacing: .05em;
	}

	.subtitle {
	  color: #FFF;
	  text-shadow: 2px 2px 10px rgba(0, 0, 0, 1);
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.title {
	  color: #2a3e53;
	  text-shadow: 2px 2px 8px rgba(255, 255, 255, 1);
	  font-size: 2.25rem;
	  line-height: 3rem;
	}

	.subtitle {
	  color: #EEE;
	  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
	}
}

@media (min-width: 1024px) {
	.title {
	  color: #2a3e53;
	  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
	}

	.subtitle {
	  color: #2a3e53;
	  text-shadow: 0 2px 4px rgba(255, 255, 255, 1);
	}
}


/*********************************
******   MAP/LINK SECTION   ******
**********************************/

.page-journey {
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  background-image: url(../images/backgrounds/bg-masthead-lg.png?61e5d11331124d336d7e5a97b47fa520);
  background-size: 100%;
  height: 125px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  background-color: #a8a8a88c;
}

.page-journey .journey-option {
	height: 100%;
	padding: 5px;
	position: relative;
	cursor: pointer;
	display: -webkit-flex;
	-webkit-align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.page-journey .journey-option .dot {
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	width: 30px;
	height: 30px;
	margin: auto;
	position: relative;
	z-index: 2;
	border: 4px solid #16325C;
	border-radius: 50%;
	background-color: #fff;
	background-position: 50% 56px;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

.page-journey .journey-option .badge {
	transition: all 0.15s ease;
	-webkit-transition: all 0.15s ease;
	-moz-transition: all 0.15s ease;
	-ms-transition: all 0.15s ease;
	-o-transition: all 0.15s ease;
	max-width: 100%;
	padding: 1px 10px;
	position: relative;
	z-index: 5;
	border-radius: 6px;
	font-size: 0.8125rem;
	line-height: 1.5rem;
	font-weight: bold;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #0070D2;
	overflow: hidden;
	background-color: #fff;
}

@media (max-width: 768px) {
	.page-journey .journey-option .badge {
	  font-size: 0.6rem;
	  line-height: 0.75rem;
	  padding: 2px 5px;
white-space: normal;
	}
}

.page-journey .journey-option .path {
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 400%;
  position: absolute;
  left: 50%;
  top: 42%;
  pointer-events: none;
  z-index: 0;
}

.page-journey .journey-option .path svg {
	width: 100%;
}

.page-journey .journey-option .path svg .path-dotted {
	fill: none;
	stroke: #16325C;
	stroke-width: 4px;
	stroke-dasharray: 8, 4;
}

.page-journey .journey-option .path svg .path-filled {
  transition: all 1.5s ease;
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -ms-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  fill: none;
  stroke: #16325C;
  stroke-width: 6px;
  stroke-dasharray: 1208;
  stroke-dashoffset: 1208;
}

.page-journey .journey-option:nth-of-type(1) .dot {
  background-image: url(../images/mascots/bg-heading-2-old.png?b1aa5b76d105b0a4b9d649846f2b12d2);
}

.page-journey .journey-option:nth-of-type(2) .dot {
  background-image: url(../images/mascots/bg-heading-2.png?90cc59ba8eec8e251f6cc4c567e8b5b7);
}

.page-journey .journey-option:nth-of-type(3) .dot {
  background-image: url(../images/mascots/bg-eheading.png?6620191d9f80e450b23b6308de7494ae);
}

.page-journey .journey-option:nth-of-type(4) .dot {
  background-image: url(../images/mascots/img-avatar-7.png?8a78031f09a9a6c4e7f27d316b288a0e);
}

.page-journey .journey-option:nth-of-type(5) .dot {
  background-image: url(../images/mascots/img-avatar-8.png?0146980fb4ab0eda0eb3b9df63429591);
}

.page-journey .journey-option.active .dot {
  width: 56px;
  height: 56px;
  background-color: #87CEEB;
  background-position: 50% 0;
}

.page-journey .journey-option.active .badge {
  color: #fff;
  background-color: #032E61;
}

.page-journey .journey-option:not(.active):hover .dot {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.page-journey .journey-option:not(.active):hover .badge {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  color: #fff;
  background-color: #032E61;
}

.page-journey .journey-option:not(.active):active .dot {
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
}
/** end MAP LINK styles **/


/***************************************
*******   CONTENT HEADING BAR   ********
**  Tab Title, Description, Personas  **
****************************************/

.page-heading {
  color: #16325C;
  overflow: hidden;
  position: relative;
  min-height: 125px;
  padding: 5px 5px 5px 20px;
  background-size: contain;
  background-color: #ecebea ;
  background-position: left center;
}


.page-heading .heading-option {
  height: 100%;
  min-height: 125px;
  padding-right: 20px;
  position: absolute;
  top: 0;
  display: -webkit-flex;
  -webkit-justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
  -webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
margin: 0px;
padding: 3px 45px 0px 15px;
} 

.page-heading .heading-option h2 {
  margin-bottom: 10px;
}

.page-heading .heading-option.hidden {
  opacity: 0;
  pointer-events: none;
}

.page-heading .heading-option.hidden--left {
  transform: translateX(-50px);
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  -o-transform: translateX(-50px);
}

.page-heading .heading-option.hidden--right {
  transform: translateX(50px);
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  -o-transform: translateX(50px);
}

/*********************************
******   PERSONA BUBBLES    ******
**********************************/
.personas {					/** add top margin to the persona bubbles **/
    margin-top: 8px;
padding-bottom: 5px;
}

.oval {						/** creates a white oval behind text **/
	margin-right: 8px;
    padding: 3px;
    background: #FFF;
    border-radius: 8px;
    font-size: 0.85em;
}
/** END PERSONA BUBBLES **/

/*********************************
******   MAIN CONTENT AREA  ******
**********************************/

.page {						/** the main body of the page, with a tan background **/
  background-color: #F4F6F9;
  border-radius: 8px;
  overflow: hidden;
}

.page-body {
	padding: 15px 10px; 
	height: auto; 
	margin: 0px;
}

/** page-content becomes visible or is made hidden by the javascript to show the right content for the tab **/
.page-body .page-content {
  visibility: visible;
  position: initial;
  opacity: 1;
  -webkit-transition: -webkit-transform 300ms ease-out;
  transition: -webkit-transform 300ms ease-out;
  transition: transform 300ms ease-out;
  transition: transform 300ms ease-out, -webkit-transform 300ms ease-out;
}

.page-body .page-content.hidden {
  visibility: hidden;
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  height: 0 !important;
}

.page-body .page-content.hidden--left {
  transform: translateX(-50px);
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  -o-transform: translateX(-50px);
}

.page-body .page-content.hidden--right {
  transform: translateX(50px);
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  -o-transform: translateX(50px);
}

/** where is this used? nowhere? **/
.page-body .page-content .page-title-list {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
}

/******************************
******   CONTENT CARDS   ******
*******************************/

.card-container {
	padding: 0px 10px;
}

.card-title {					/** title above a column of content **/
  margin: auto;
  height: 55px;
  line-height: 40px;
  margin-bottom: 5px;
}

.card-title h3 {
  display: inline-block;
  vertical-align: middle;
}

.card-content { 				/** everything in the white background **/
  padding: 10px;
  background-color: #fff;
  border-top: 4px solid #D8DDE6;
  margin-bottom: 15px;
  font-size: 0.8125rem;
  line-height: 1.125rem;
}

.card-item {
  min-height: 50px;
  vertical-align: middle;	
  position: relative;
  margin: 0px 0px 15px 0px;
}

/**
.card-item img {
  vertical-align: middle;
  border: 1px solid #D8DDE6;
  border-radius: 50%;
  padding: 7px; 
  width: 32px;
  height: 32px;
  background-color: #FFF;
  background-size: 55%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: background 200ms ease, border 200ms ease;
  transition: background 200ms ease, border 200ms ease;
  float:left;
  margin-right: 5px 5px 5px 0px;
} **/

.card-item .icon-border {
	border: 1px solid #D8DDE6;
	border-radius: 50%;
	float:left;
	width: 32px;
	height: 32px;
}

.card-item:hover .icon-border {
	border: 1px solid #54698D;
	background-color: #54698D;
}

.card-item .words {
	padding-left: 40px;
	  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);

}

.card-content.row {
	margin: 0px;
}

.video-card {
	text-align: center;
}

.image-card-horiz {
	text-align: center;
}

.image-card-horiz img {
	width: 90%;
}

.image-card-vert {
	text-align: center;
}

.image-card-vert img {
	max-height: 200px;
}

.modal-card {
	text-align: center;
}

.cloud_logos {
	float: right;
	text-align: center;
}

.words img {
	padding-left: 0px;
	width: 20px;
	height: 20px;
	margin-left: 5px;
}

/******************************
***** CONTENT TYPE ICONS ******
*******************************/

/** DOCUMENTATION ICON **/
.card-item .icon-doc { 
	background: url("../images/icons/documentation.svg");
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	float: left;
	width: 32px;
	height: 32px;
	-webkit-transition: background 200ms ease, border 200ms ease;
	transition: background 200ms ease, border 200ms ease;
}

.card-item:hover .icon-doc {
	background: url("../images/icons/documentation_hover.svg");
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	float: left;
	width: 32px;
	height: 32px; 
	-webkit-transition: background 200ms ease, border 200ms ease;
	transition: background 200ms ease, border 200ms ease; 
}

/** TRAILHEAD TRAIL/MODULE ICON **/
.card-item .icon-th { 
	background: url("../images/icons/trailhead.svg");
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	float: left;
	width: 32px;
	height: 32px;
	-webkit-transition: background 200ms ease, border 200ms ease;
	transition: background 200ms ease, border 200ms ease;
}
.card-item:hover .icon-th {
	background: url("../images/icons/trailhead_hover.svg");
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	float: left;
	width: 32px;
	height: 32px; 
	-webkit-transition: background 200ms ease, border 200ms ease;
	transition: background 200ms ease, border 200ms ease; 
}

/** VIDEO ICON **/
.card-item .icon-vid { 
	background: url("../images/icons/video.svg");
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	float: left;
	width: 32px;
	height: 32px;
	-webkit-transition: background 200ms ease, border 200ms ease;
	transition: background 200ms ease, border 200ms ease;
}

.card-item:hover .icon-vid {
	background: url("../images/icons/video_hover.svg");
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	float: left;
	width: 32px;
	height: 32px; 
	-webkit-transition: background 200ms ease, border 200ms ease;
	transition: background 200ms ease, border 200ms ease; 
}

/** DOWNLOADABLE ASSET ICON **/
.card-item .icon-download { 
	background: url("../images/icons/download.png");
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	float: left;
	width: 32px;
	height: 32px;
	-webkit-transition: background 200ms ease, border 200ms ease;
	transition: background 200ms ease, border 200ms ease;
}
.card-item:hover .icon-download {
	background: url("../images/icons/download_hover.png");
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	float: left;
	width: 32px;
	height: 32px; 
	-webkit-transition: background 200ms ease, border 200ms ease;
	transition: background 200ms ease, border 200ms ease; 
}

/** DIAGRAM ICON **/
.card-item .icon-map { 
	background: url("../images/icons/map.png");
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	float: left;
	width: 32px;
	height: 32px;
	-webkit-transition: background 200ms ease, border 200ms ease;
	transition: background 200ms ease, border 200ms ease;
}

.card-item:hover .icon-map {
	background: url("../images/icons/map_hover.png");
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	float: left;
	width: 32px;
	height: 32px; 
	-webkit-transition: background 200ms ease, border 200ms ease;
	transition: background 200ms ease, border 200ms ease; 
}

/** CHANGE MANGEMENT ICON **/
.card-item .icon-change { 
	background: url("../images/icons/change.png");
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	float: left;
	width: 32px;
	height: 32px;
	-webkit-transition: background 200ms ease, border 200ms ease;
	transition: background 200ms ease, border 200ms ease;
}

.card-item:hover .icon-change {
	background: url("../images/icons/change_hover.png");
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	float: left;
	width: 32px;
	height: 32px; 
	-webkit-transition: background 200ms ease, border 200ms ease;
	transition: background 200ms ease, border 200ms ease; 
}

/** TASK ICON **/
.card-item .icon-task { 
	background: url("../images/icons/task.png");
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	float: left;
	width: 32px;
	height: 32px;
	-webkit-transition: background 200ms ease, border 200ms ease;
	transition: background 200ms ease, border 200ms ease;
}

.card-item:hover .icon-task {
	background: url("../images/icons/task_hover.png");
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	float: left;
	width: 32px;
	height: 32px; 
	-webkit-transition: background 200ms ease, border 200ms ease;
	transition: background 200ms ease, border 200ms ease; 
}

/** BLOG ICON **/
.card-item .icon-note { 
	background: url("../images/icons/note.png");
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	float: left;
	width: 32px;
	height: 32px;
	-webkit-transition: background 200ms ease, border 200ms ease;
	transition: background 200ms ease, border 200ms ease;
}

.card-item:hover .icon-note {
	background: url("../images/icons/note_hover.png");
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	float: left;
	width: 32px;
	height: 32px; 
	-webkit-transition: background 200ms ease, border 200ms ease;
	transition: background 200ms ease, border 200ms ease; 
}

/** SOLUTION KIT ICON **/
.card-item .icon-case {
	background: url("../images/icons/case.png");
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	float: left;
	width: 32px;
	height: 32px;
	-webkit-transition: background 200ms ease, border 200ms ease;
	transition: background 200ms ease, border 200ms ease;
}
.card-item:hover .icon-case {
	background: url("../images/icons/case_hover.png");
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	float: left;
	width: 32px;
	height: 32px; 
	-webkit-transition: background 200ms ease, border 200ms ease;
	transition: background 200ms ease, border 200ms ease; 
}

/** THOUGHT LEADERSHIP ICON **/
.card-item .icon-star {
	background: url("../images/icons/star.png");
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	float: left;
	width: 32px;
	height: 32px;
	-webkit-transition: background 200ms ease, border 200ms ease;
	transition: background 200ms ease, border 200ms ease;
}
.card-item:hover .icon-star {
	background: url("../images/icons/star_hover.png");
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	float: left;
	width: 32px;
	height: 32px; 
	-webkit-transition: background 200ms ease, border 200ms ease;
	transition: background 200ms ease, border 200ms ease; 
}

/** EDUCATION ICON **/
.card-item .icon-edu {
	background: url("../images/icons/education.png");
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	float: left;
	width: 32px;
	height: 32px;
	-webkit-transition: background 200ms ease, border 200ms ease;
	transition: background 200ms ease, border 200ms ease;
}
.card-item:hover .icon-edu {
	background: url("../images/icons/education_hover.png");
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	float: left;
	width: 32px;
	height: 32px; 
	-webkit-transition: background 200ms ease, border 200ms ease;
	transition: background 200ms ease, border 200ms ease; 
}

/******************************
******   MODAL STYLES   *******
*******************************/

.modal img {
    max-width: 100%;
    max-height: 100%;
}

.modal {
    text-align: center; !important;
	max-height: 95vh;
}

.modal-header {
	background-color: #F4F6F9;
	padding: 20px 20px 10px 30px;
}

div .modal-header { 
	float: left;
	display: block;
}

button .close {
	float: right;
	padding-right: -10px;
}

.modal-title {
	width: 100%; !important;
	line-height: 3.5rem; !important;
}

.modal-shortdesc {
	font-size: 16px !important;
	padding-right: 10px;
	margin: 7px 0px;
}

.modal-body {
  padding: 10px;
  background-color: #fff;
  border-top: 4px solid #D8DDE6;
  margin-bottom: 15px;
	text-align: center;
}

.modal-image {
	object-fit: scale-down;
	height: 75vmin;
}

.modal-footer {
	background-color: #F4F6F9;
}

.modal-dialog {
	text-align: left; 
	max-width: 90%;
	width: auto !important;
	display: inline-block;
}

h4.modal-header {
	margin: auto;
	height: 40px;
	line-height: 40px;
	margin-bottom: 5px;
	font-size: 16px;
	font-weight: bold;
}

.btn.btn-lm-blue {
	background-color: #032E61;
	color: #FFF;
	padding: 2px 15px;
	border-radius: 4px;
	font-size: 0.8125rem;
	line-height: 1.5rem;
	font-weight: bold;
	text-overflow: ellipsis
}

.btn.btn-lm-white {
	background-color: #FFF;
	color: #032E61;
	padding: 2px 15px;
	border-radius: 4px;
	font-size: 0.8125rem;
	line-height: 1.5rem;
	font-weight: bold;
	text-overflow: ellipsis
}

.btn.btn-link {
	color: #0070D2;
	text-decoration: none;
	margin-top: 0px;
	padding-top: 0px;
	font-size: 0.8125rem;
	line-height: 1.125rem;
}

.btn.btn-link:hover {
	color: #0070D2;
	text-decoration: underline;
	margin-top: 0px;
	padding-top: 0px;
	font-size: 0.8125rem;
	line-height: 1.125rem;
}


/*****************************
*******   PAGE FOOTERS  *******
******************************/

/** Customer footers for your learning map **/

.page-footer {
	margin: 24px auto 15px;
	padding: 0px;
	overflow: hidden;
	list-style-type: none;
	border-radius: 8px;
	background-color: #2a3e53;
	line-height: 2rem;
}

.footer-item:hover {
	background-color: #215CA0;
}

.page-footer a {
	font-weight: bold;
	color: white;
	font-size: 13px;
	text-align: center;
	height: 100%;
	padding: 15px;
	position: relative;
}

.page-footer a .footer-icon {
	padding-right: 10px;
}

.page-footer a:hover {
	text-decoration: none;
}

/** SFDC standard-styled footer with Cookie Settings link **/

.sfdc-standard-footer-container {
	padding: 0px;
	float: center;
	background-color: #032E61; /* This color is used on other salesforce.com pages */
}

.sfdc-standard-footer {
	margin: 0px;
	padding: 10px; 
	overflow: hidden;
	list-style-type: none;
	color: white;
	width: 100%;
}

.sfdc-footer-cloud-image {
	max-width: 100px;
	text-align: right;
	float: right;
	padding: 0px 20px 5px 10px;
}

.sfdc-footer-copyright {
	font-size: 0.7em;
}

.sfdc-footer-item {
}

.sfdc-footer-item ul {
	padding: 0px;
	margin: 0px;
}

.sfdc-footer-list-item {
	text-decoration: none;
	list-style-type: none;
	display: inline;
	margin-right: 18px;
	padding-left: 0px;
	font-size: .8em;
}

.sfdc-footer-list-link a, a:hover {
	color: #00A1E0;   /* this color is used on other Salesforce.com pages */
	text-decoration: none;
}