/*HEADER*/

 /*Modify the header background for all catalog pages.*/
/* NOTE: THIS HEADER BG BLOCK APPEARS TO BE BREAKING ADMIN NAV. ~ EWT   #app-header {
  padding: 0;
  height: 100px;
}  */

/*NEW BLOCK TO SET PULL-DOWN MENU LINK COLOR - NEW BLOCK ADDED BY EMILY*/  
#app-header .btn-link {
    color:#3d3d3d;
}

/* Modify the layout of the header contents*/
 #app-header .container {
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px;
} 

/*HOME PAGE*/

/*Modify the home page feature area background*/
#home-page .feature-region {
  height: 125px;
  background: #a51417;
}

/*Modify the layout for the contents of the feature area background - COMMENTED OUT ORIGINAL VERSION
#home-page #feature div {
  max-width: 1100px;
  padding-top: 15px;
  margin: auto;
  color: #a51417;
}  */

/*Modify the layout for the contents of the feature area background - EMILY'S BACKGROUND IMAGE VERSION */
#home-page #feature div {
  background-image: url('https://mycanvas.wustl.edu/wp-content/uploads/2021/07/mycanvas-banner-125px.jpg');
  background-repeat: repeat;
  background-position: top left;
  padding-top: 15px;
  height: 125px;
  margin: auto;
  color: #a51417;
}

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

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

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

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

/*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: 35px
}

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

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

/*LISTING PAGE*/

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

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

/*Format the account logo under feature area; same logo on Home Page - COMMENTED OUT*/
/*.product-tile .product-account-logo {
  height: 30px;
  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 - COMMENTED OUT*/
/*#main {
color: #eee;
min-height: 150px;
}
*/

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

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

/*Format the product enrollment notice - NEW BLOCK ADDED BY EMILY*/
.ProductEnrollment__Notice {
    color: #555;
}

/*FOOTER*/

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

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

/*NEW BLOCK TO SET FOOTER LINK - NEW BLOCK ADDED BY EMILY*/  
#app-footer a:link {
    color:#FFFFFF;
}
#app-footer  a:visited  {
    color:#FFFFFF;
}
#app-footer a:hover  {
    color:#FFFFFF;
}
#app-footer a:active  {
    color:#FFFFFF;
}

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


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

