﻿
.modSearchBar {
    padding: 15px;
    background: #f1f1f1;
    border-radius: 4px;
}

    .modSearchBar .search_icon {
        padding-left: 6px;
        padding-right: 6px;
    }

    .modSearchBar .modSearchFilter td span input {
        margin-right: 5px;
    }

    .modSearchBar .modSearchFilter td span label {
        margin-right: 10px;
    }

/*--------------------------------------------------------------*/

.search-overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background: rgba(11, 11, 11, 0.5);
    backdrop-filter: blur(5px);
}

.search-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    text-align: center;
    margin: auto;
    width: 375px;
}

    .search-overlay-content > .flex {
        border: 2px solid var(--pri);
        border-radius: 30px;
        overflow: hidden;
    }

.search-overlay .closebtn {
    position: absolute;
    top: 75px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: #fff;
}

    .search-overlay .closebtn:hover {
        color: var(--sec);
    }

.search-overlay input[type=text] {
    border-radius: 0 !important;
    height: 45px;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
}

.search-overlay input:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

.search-overlay button {
    padding: 7px 20px;
    color: #ffffff;
    background: var(--pri);
    font-size: 24px;
    border: none;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    transition: all .5s ease;
}

    .search-overlay button:hover {
        background: var(--sec);
    }

/*--------------------------------------------------------------*/

.tab-pane .padding_top:first-child {
    margin-top: 15px;
}

.tab-pane p:first-child {
    margin-top: 30px;
}

/*-------------------------------------------------*/
.quicksearch_results {
    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;
    }

    .quicksearch_results li {
        margin: 0;
        padding: 0;
    }

        .quicksearch_results li a {
            border: none !important;
            color: #fff !important;
            display: block;
            padding: 4px 15px !important;
        }
            .quicksearch_results li a::after{
                content: none!important;
            }

            .quicksearch_results li a:hover {
                color: var(--sec) !important;
            }
