/*HEADER*/
#app-header {
background-color: #FFFFFF;
}

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

/*Modify the account logo in the header*/
#app-header .logo a {
  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: 30px;
  background-repeat: no-repeat;
  background: #007d8a;
}

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

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

/*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: #0899D3
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;
}

/*Modify the background color around the listings. */
/*#main.product-results {
  background-color: #cfcfcf;
}*/

/*hide self-paced & other dates from listing tiles*/
/* .product-dates {
    display: none;
} */

/*hide logo on the listing tiles*/
span.product-account-image-wrapper {
    display: none;
}

/*LISTING PAGE*/

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

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

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

/*To hide the account logo on listing page, use code below instead and remove "comment out" asterisks and slashes around code  */
.product-account-logo {
    display: none
}


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

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

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

/*FOOTER*/

/*Format the footer for all catalog pages*/
#app-footer {
  background-color: #ffffff;
  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;
  color: ##8e99a0;
}


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

/* figure out how to remove gear icon button to drop courses on student dashboard pages */
/* Hide the Drop Course option from the student dashboard */
.col-xs-2.col-sm-1 {
    display: none;
}

/* This helps you change the color of the header bar incase you want white links
#app-header {
    padding:4px 0 5px;
    background-color:#414042;
}
*/
#app-header h1 {
    margin:10px 0;
}

/* user-nav includes changes to the Login / User information link */
#user-nav {
    padding-top:25px;
}
#user-nav > a {
    display:inline-block;
    margin-bottom:0;
    font-weight:normal;
    text-align:center;
    vertical-align:middle;
    cursor:pointer;
    background-image:none;
    border:1px solid transparent;
    white-space:nowrap;
    padding:5px 5px;
    font-size:14px;
    line-height:1.428571429;
    border-radius:4px;
    -webkit-user-select:none;
    color:#4d4d4d;
}

#user-nav > a:hover {
    text-decoration:none;
    color:#e63d2f;
}
/* Active Color of Login button once logged in */

.header-nav li a {
    color:#4d4d4d;
}

/* Page Links refers to the custom links */
#page-links {
    display:inline-block;
}
#page-links a {
    display:inline-block;
    padding:5px 10px;
    font-size:14px;
    color:#4d4d4d;
}
#page-links a:hover,
.btn-link:hover,
.btn-link {
    color:#e63d2f;
}

#page-links .piped-list>li:after {
    content:"|";
    color:#4d4d4d;
}
#page-links .piped-list>li:before {
    display:none;
    margin-right:0;
}

/* this is the CSS for the added text under the search bar */

div#about\ text {
    background-color: white;
    color: black;
    text-align: left;
    align-content: center;
    padding: 18px 15% 8px 15%;
}