/* Carousel CSS */
.carousel-inner .item img {
    width: 100%;
}

.feature-region {
	background-image: none;
}

/*CATALOG/SUB-CATALOG PAGES*/

#badges-container {

     font-weight: normal;

}
/*Modify search box background color*/
.search-form-container {
background-color: #00235D;
}

/*Modify search box size*/
form.search-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
}

/*Center search box*/
#search-form .search-box-wrapper {
    margin-top: 0px;
}

/* Modify search box size and corners*/
.search-form .search-box {
    border-radius: 4px;
    border: 1px solid black;
    height: 40px
}

/* Modify search box submit icon layout*/
.search-form .search-submit {
    color: #0899D3;
    width: 30px;
    height: 30px;
    margin-top: -3px;
    top: 8px;
}


/* Hover effect on course listings */
.product-link:hover {
transform: scale(1.04);
color: #002F6C;
}

.product-link {
transition: transform 0.6s ease;
transform: none;
color: #000000;
}

/* Orange underline when hover over listings */
.product-results .product-tile:hover {
    box-shadow: inset 0px -5px 0px #00245D;
}

/*LISTING PAGES*/

/*Format feature stripe color*/
#product-page #feature {
    background: #00235D;
    padding-top: 20px
}
#search-form .search-label,
#search-form .search-box-wrapper {
    visibility: visible;
}

#search-refine-button--refine 

::placeholder {
    color: #ffffff !important;
}
/*STUDENT DASHBOARD*/

/* Hide the Drop Course option from the student dashboard */
/*.col-xs-2.col-sm-1 {
    display: none;
}*/

/*HIDES ADMIN NAVIGATION, PROMOTION DATA*/
.col-md-12 {
    display: block;
}

/*program color green*/
.ProductIcon__LargeCircle--program {
    font-size: 21px;
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #71cc98;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 4px solid white
}
/*Course color blue*/
.ProductIcon__LargeCircle--course {
    font-size: 21px;
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0054A6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 4px solid white
}

