/*CATALOG/SUB-CATALOG PAGES*/

/*Modify home page feature area background*/
#home-page .feature-region {
    position: absolute;
    opacity: 0;
    height: 20px;
    background-repeat: no-repeat;
    background: #007CF9;
}

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

/*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: 2px;
    border: 1px solid #007CF9;
    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 #007CF9;
}

/*Hide the redundant browse listings text*/
h2.css-1x7wuul-view-heading {
    display: none;
}

/* Hide Filter By section in Refine dropdown menu */
.search-refine__filter {
    display: none;
}

/* Hide Start Date option in Sort By menu */
.btn-group > .btn:nth-of-type(2) {
	display:none;
}


/*CUSTOM LISTINGS MENU*/
/*Hide the Listings menu in Search Form section*/
#search-refine-listings {
	display: none;
}

/*Set up Listings menu in Search Form section*/
#search-form .search-listings-button {
       display: inline-block;
}

#search-form .search-listings ul {
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-weight: 400;
    background-color: #f0f0f0;
    position: absolute;
    left: 10px;
    right:10px;
    border: 1px solid #cdcdcd;
    border-radius: 6px;
    list-style-type: none;
    padding: 0;
    margin: 0;
    max-height: 500px;
    overflow-y: scroll;
}

#search-form .search-listings ul li {
    padding: 8px;
    padding-left: 16px;
}

#search-form .search-listings ul li:hover {
    cursor: pointer;
    background-color: #fdfdfd;
}

#search-form .search-listings ul li a {
    color: #343c44;
    display: block;
    width: 100%;
}

#search-form .search-listings ul li ol {
    list-style: none;
    padding-left: 0px;
    padding-top: 8px;
    padding-bottom: 8px;
}

#search-form .search-listings ul li ol li:hover {
    cursor: pointer;
    background-color: #f0f0f0;
}

@media screen and (min-width: 530px) {
    #search-form .search-listings-button {
        position: relative;
    }
    #search-form .search-listings ul {
        left: auto;
        width: 250px;
    }
}


/*LISTING PAGES*/

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

/*Button styles*/
.tc_btn {
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: #fff;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.6;
    border-color: rgba(0, 0, 0, 0);
}
.tc_btn:hover {
    color: #fff;
    bottom: 2px;
    box-shadow: 0 14px 26px -12px hsla(0, 0%, 60%, .42), 0 4px 23px 0 rgba(0, 0, 0, .12), 0 8px 10px -5px hsla(0, 0%, 60%, .2);
}

/*Back Button*/
#tc_back {
    background-color: #c28508;
    margin-right: 10px;
}
#tc_back:hover {
    background-color: #916306;
}

/*More Information Button*/
#tc_more_info {
    background-color: #1b9776;
}
#tc_more_info:hover {
    background-color: #136c54;
}
