/*Changes the cursor for dropdown menus*/
.menu-item{
    cursor:default;
}
/*Makes the Search Icon red when hovered*/
a:nth-child(2) > i:nth-child(1):hover{
    color:#e00007 !important;
}

/*Wildlife Issues Pages*/
.header{
    border-bottom: 2px solid #e00007;
}

.wildlifeAccordion:hover h4{
    color:#e00007;
}
.faq{
   box-shadow: 14px 15px 10px -12px #888; 
}

/*Forces full-width for pages with Sidebars on the right*/
.wf-wrap{
    width:100%!important;
}


/*------------------------------------------------------------------------------Sidebar-----------------------------------------------------------------------------------------------------------------*/
/*Sidebar*/
.sidebar-content{
    border-radius: 10px!important;    
}

/*Moving Sidebar down so it wont be obscured by the navigation*/
.is-affixed > .sidebar-content{
    margin-top:50px;
}

/*Changes the sidebar title !!Look for alternative!!*/
.widget-title{
    font-size:20px!important;
    text-align:center;
    font-weight:bold!important;
    color:#e00007!important;
}

/*Indents the child links in the sidebar*/
.custom-menu > li:not(.first){
    padding-left:25px!important;
}

/*Colors sidebar page links except for current page*/
.custom-menu > li:not(.current_page_item) > a{
    color:#ffffff!important;
}

/*Only purpose is to color the phone # link in sidebar*/
h1 a{
    color:red!important;
}
h1 a:hover{
    color:white!important;
}

/*Changes the next and previous buttons on the carousel to black when hovered*/
.slick-prev:hover, .slick-next:hover{
    background-color:black!important;
}