/*Working as of 05/09/2016*/



/*HEADER*/

/*Modify the header background for all catalog pages.*/
#app-header {
  padding: 0;
  height: 100px;
  background-color: #fff;
}
#app-header2 {
  padding: 0;
  height: 50px;
  background-color: #000;
}
/* Modify the layout of the header contents*/
#app-header .container {
margin-right: auto;
margin-left: auto;
padding-left: 15px
padding-right: 15px
}

/*Modify the account logo in the header*/
/*any header logo uploaded in a catalog will override this option*/
#app-header .logo a {
  background-image: url(https://s3.amazonaws.com/tr-learncanvas/code/catalog/logo-eduonline.png);
  background-size: 212px 29px;
  background-position: center center;
  background-repeat: no-repeat;
  margin-top: 20px;
  width: 212px;
  height: 53px;
}

/*HOME PAGE*/

/*Modify the home page feature area background*/
#home-page .feature-region {
  height: 300px;
  background-repeat: no-repeat;
  background: #0190D2;
}
#home-page .feature-region2 {
  height: 50px;
  background-repeat: no-repeat;
  background: #0F599A;
}
/*Modify the layout for the contents of the feature area background*/
#home-page #feature div {
  max-width: 1000px;
  padding-top: 48px;
  margin: auto;
  color: #fff;
}
/*Modify the H2 text style in the feature area. Add actual text via JavaScript */
#home-page #feature h2 {
  text-align: right;
  font-size: 1.9em;
  margin-top: 1em;
  line-height: 1;
}

/*Modify the H3 text style in the feature area. Add actual text via JavaScript */
#home-page #feature h3 {
  text-align: center;
  font-size: 5.3em;
  margin-top: 0.5em;
  line-height: 1;
}

/*Modify the H4 text style in the feature area. Add actual text via JavaScript */
#home-page #feature h4 {
  text-align: left;
  font-size: 1.9em;
}

/* Modify the search box background color*/
#search-form.callout-region {
  background-color: #3e3e3e;
}

/*Modify the layout of the search box label*/ 
.search-form .search-label {
  line-height: 1.5;
  font-size: 26px;
  font-weight: 500;
  color: #3E3E3E;
}

/*To hide the search box label completely, use code below instead and remove /* */ around code*/
/*.search-form .search-label {
  display: none;
}
*/

/* Modify the layout of the search box*/
.search-form .search-box-wrapper {
  margin: 0 auto;
  display: block;
  width: 50%;
  padding: 0 0 0 0;
}

/* Modify the corners and size of the search box*/
.search-form .search-box {
  border-radius: 4px;
  height: 44px
}

/* Modify the layout of the search box submit icon*/
.search-form .search-submit {
color: #0F599A;
width: 30px;
height: 30px;
top: 8px;
}

/*Modify the layout for account logo on product tile. Add logo in managed accounts area.*/
.product-tile .product-account-image-wrapper {
  height: 30px;
  margin-bottom: 10px;
}



/*LISTING PAGE*/

/*Format the listing page feature area background*/
#product-page #feature {
    background: #0190D2;
    padding-top: 20px
}

/*Format the background inside the feature area*/
.product-bg {
 background-color: #DBDBDB;
}

/*Format the account logo under feature area; same logo on Home Page*/
.product-tile .product-account-logo {
  height: 20px;
  margin-bottom: 10px;
  margin-top: 10px;
}

/*To hide the account logo on listing page, use code below instead and remove /* */ around code*/
/*.product-tile .product-account-logo {
  display: none;
}
*/

/*Format the full course or program description area*/
#main {
 color: #0899D3;
min-height: 150px;
}

/* Modify the listing page footer background*/
.callout-region {
  background-color: #DBDBDB;
}

/*Format the listing page footer text layout*/
#product-page footer .h2 {
  font-style: normal;
  margin: 15px 0;
  color: #3E3E3E;
  font-size: 25px;
}


/*FOOTER*/

/*Format the footer for all catalog pages*/
#app-footer {
  background-color: #fff;
  padding-top: 30px;

/*To change the size of the first row of footer links, add to above code*/  
font-size: 14px;
}
/*

/*Format the second row of copyright information*/
.small {
  font-size: 12px;
}

.new-layout .detail-blocks {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin-top: 35px;
}

.new-layout .detail-blocks div {
	margin-right: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	padding: 5px 5px 5px 5px;
  	height: 45px;
	width: 200px;
	text-align: center;
	background-color: rgb(0,100,160);
	background-repeat: no-repeat;
	background-position: -35px 0;
}

.new-layout .detail-blocks div.detail-date { background-position: -105px 0; color: rgb(255,255,255);}
.new-layout .detail-blocks div.detail-duration { background-position: -235px 0; color: rgb(255,255,255);}
.new-layout .detail-blocks div.detail-commitment { background-position: -440px 0; color: rgb(255,255,255); }
.new-layout .detail-blocks div.detail-requirement { background-position: -35px -105px; color: rgb(255,255,255); }
.new-layout .detail-blocks div.detail-type { background-position: -235px -105px; color: rgb(255,255,255); }
.new-layout .detail-blocks div.detail-credential { background-position: -440px -105px; color: rgb(255,255,255); }

.new-layout .detail-blocks h5 {
	font-family: "proxima nova bold", arial, sans-serif;
	font-size: 13px;
	text-transform: uppercase;
	margin: 0;
	color: rgb(70,70,70);
}

.new-layout .detail-blocks p {
	font-family: "proxima nova light", arial, sans-serif;
	font-size: 14px;
}
/*MEDIA FORMATTING rules for responsive devices. This coding is optional but helpful for tablets and mobile devices.*/

/*Media for header*/

@media (max-width: 768px) {
  #app-header .header-nav {
    background: #555;
  }

*/Media for feature region*/

@media (max-width: 1200px) {
  #home-page #feature div {
    max-width: 800px;
 }
 
@media (max-width: 768px) {
  #home-page #feature {
    height: 200px;
    text-align: center;
    padding: 0 2em;
  }

.alert-top {
  margin-bottom: 0;
}