﻿#SearchPage {
    font-size:16px;
}

#SearchPage h1 {
    font-size: 24px;
    line-height: 36px;
}

#SearchPage #result {
    width: 100%;
}

    #SearchPage #result .snippet b {
        font-style: italic;
    }

    #SearchPage #result .link {
        color: #999;
        font-size:14px;
    }

    #SearchPage #result b {
        font-weight: bold;
        font-family: inherit;
        color: inherit;
    }

    #SearchPage #result > div {
        margin-top: 10px;
    }

#SearchPage #searchBox {
    border: 1px solid black;
    height: 50px;
    width: calc(100% - 50px);
    outline: none;
    padding-left: 15px;
}

#SearchPage button.searchButton {
    height: 50px;
    border: 1px solid;
    border-left: none;
    width: 50px;
    background-color: white;
    outline: none;
}

#SearchPage button.filterSwitcher {
    border: none;
    padding: 5px;
    margin-right: 10px;
    outline: none;
    background: none;
}

#SearchPage .onFilter {
    border-bottom: 1px solid black !important;
    font-weight: bold;
}

#SearchPage .highlight {
    font-weight: 600;
}

#SearchPage .pageControl {
    margin-bottom: 100px;
}

    #SearchPage .pageControl span {
        padding-right: 20px;
        cursor: pointer;
    }
    #SearchPage #pages a {
        padding-right: 20px;
        cursor: pointer;
    }

        #SearchPage .pageControl span.prevPage {
            padding: 10px;
            padding-left: 0px;
            margin-right: 10px;
        }

@media (min-width: 768px) {
    #SearchPage h1 {
        font-size: 36px;
        line-height: 48px;
    }
}

@media (min-width: 992px) {
    #SearchPage h1 {
        font-size: 40px;
        line-height: 54px;
    }
}

a, a:visited {
    color: #1890ff;
}

#SearchPage .loading {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.575);
    height: 100%;
    width: 100%;
    margin-top: 0px !important;
    text-align: center;
}

#SearchPage .lds-ring {
    display: inline-block;
    position: relative;
    width: 60px;
    height: 60px;
    top: 50%;
}

    #SearchPage .lds-ring div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 36px;
        height: 36px;
        margin: 6px;
        border: 6px solid #666;
        border-radius: 50%;
        animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: #666 transparent transparent transparent;
    }

        #SearchPage .lds-ring div:nth-child(1) {
            animation-delay: -0.45s;
        }

        #SearchPage .lds-ring div:nth-child(2) {
            animation-delay: -0.3s;
        }

        #SearchPage .lds-ring div:nth-child(3) {
            animation-delay: -0.15s;
        }

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
