/*CATALOG/SUB-CATALOG PAGES*/

/*Modify home page feature area background*/
#home-page .feature-region {
    height: 20px;
    background-repeat: no-repeat;
    background: #FF0000;
}

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

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

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

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

/*LISTING PAGES*/

/*Format feature stripe color*/
#product-page #feature {
    background: #FF0000;
    padding-top: 20px
}

/*STUDENT DASHBOARD*/

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