﻿/* ~/Content/basicsearch.css */

#searchFormContainer {
    background-color: white;
    border: 1px black solid;
    position: relative;
    z-index: 1;
}

#searchResultsContainer {
    background-color: white;
    border: 1px black solid;
    position: relative;
    z-index: 1;
}

    #searchResultsContainer:empty {
        display: none !important;
    }

#searchFormTabs {
    border-bottom: 0;
    margin-bottom: -3px;
}

    #searchFormTabs > .nav-pills > li > a {
        border: 1px black solid;
        border-radius: 10px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        border-bottom: 0;
        background-color: lightgray;
        color: gray;
    }

        #searchFormTabs > .nav-pills > li > a.active {
            border-bottom: 0;
            background-color: #080808;
            color: #fff;
        }

/* Full viewport invisible wall that forces the system hourglass */
.imirs-hourglass-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: transparent !important;
    z-index: 999999 !important;
    cursor: wait !important;
    pointer-events: auto !important;
}