﻿
.modSearchBar {
    padding: 15px;
    background: #f1f1f1;
    border-radius: 4px;
}

.modSearchBar .search_icon {
    padding-left: 6px;
    padding-right: 6px;
    color:#fff;
}

.modSearchBar .modSearchFilter td span input {
    margin-right: 5px;
}

.modSearchBar .modSearchFilter td span label {
    margin-right: 10px;
}

/*--------------------------------------------------------------*/

.search-overlay {
    height: 100vh;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
}

.search-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    text-align: center;
    margin: auto;
}

.search-overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: #fff;
}

.search-overlay .closebtn:hover {
    color: var(--green);
}

.search-overlay input[type=text] {
    border-radius: 0 !important;
    height: 54px;
    padding: 15px;
    font-size: 18px;
    border: none;
    float: left;
    width: 300px;
    background: #fff;
}

.search-overlay input[type=text]:hover {
    background: #f1f1f1;
}

.search-overlay input:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

.search-overlay button {
    float: left;
    padding: 15px 20px;
    color: #ffffff;
    background: var(--darkgreen);
    font-size: 24px;
    border: none;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    transition: all .5s ease;
}

.search-overlay button:hover {
    background: var(--green);
}

/*--------------------------------------------------------------*/

.tab-pane .padding_top:first-child {
    margin-top: 15px;
}

.tab-pane p:first-child {
    margin-top: 30px;
}

/*-------------------------------------------------*/

.quicksearch_results {
    background: #fff;
    margin-top: 5px;
}

.quicksearch_results p {
    color: #777;
    margin: 0;
    padding: 4px 15px;
    font-style: italic;
}

.quicksearch_results ul {
    list-style-type: none;
    margin: 0;
    max-height: 250px;
    overflow-y: auto;
    padding: 0;
    float: none !important;
}

.quicksearch_results li {
    margin: 0;
    padding: 0;
}

.quicksearch_results li a {
    border: none !important;
    color: #444 !important;
    display: block;
    padding: 4px 15px !important;
}

.quicksearch_results li a:hover {
    background: var(--green);
    color: #fff !important;
}