html, body {
    width: 100%;
    height: 100%;
    background-color: white;
    border: 0;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI Regular", SegoeUI, "Segoe UI", sans-serif;
    font-size: 13px;
    color: rgb(36,36,36);
}


.errorpage p {
    margin: 20px 0 0 0;
    padding: 30px;
    background-color: #ffcaca;
    color: #870000;
    text-align: center;
}

#searchapi .why {
    width: 50%;
    text-align: center;
    background-color: #eaeaea;
    color: #6b6b6b;
    font-size: 75%;
    padding: 5px;
    margin: 0 auto 0 auto;
}

#searchapi .searchzone {
    margin: 20px auto;
    position: relative;
    width: 80%;
}

    #searchapi .searchzone #search[type=text] {
        display: block;
        margin: 0;
        border: 1px solid #949494;
        border-radius: 6px;
        box-sizing: border-box;
        width: 100%;
        font-size: 175%;
        padding: 10px;
        background-color: rgba(36,163,220,0);
        text-align: center;
        transition: all 0.25s ease-out;
    }

        #searchapi .searchzone #search[type=text]:focus {
            outline: none;
            border-color: transparent;
            background-color: rgba(36,163,220,0.2);
        }

        #searchapi .searchzone #search[type=text]::placeholder {
            color: #92a6e9;
        }

    #searchapi .searchzone img {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translate(0, -50%);
    }

        #searchapi .searchzone img.picto {
            height: 40px;
        }

        #searchapi .searchzone img.loader {
            height: 20px;
        }

    #searchapi .searchzone .loader {
        display: none;
    }

#searchapi.searching .searchzone .loader {
    display: block;
}

#searchapi.searching .searchzone .picto {
    display: none;
}

#searchapi #results ul {
    margin: 20px auto;
    width: 80%;
    list-style: none;
    padding: 0;
}

    #searchapi #results ul li {
        list-style: none;
        margin: 5px 0;
        border-radius: 4px;
    }

        #searchapi #results ul li.enabled {
            padding: 15px;
            background-color: #f3f3f3;
            border: 1px solid #f3f3f3;
            cursor: pointer;
            transition: all 0.25s ease-out;
        }

        #searchapi #results ul li.disabled {
            padding: 5px 15px;
            font-style: italic;
            background-color: #dddddd;
            color: #424242;
        }

        #searchapi #results ul li.enabled:hover {
            background-color: rgba(36,163,220,0.2);
            border-color: #8ac2ff;
            transition: all 0.25s ease-out;
        }

        #searchapi #results ul li.selected, #searchapi #results ul li.selected:hover {
            background-color: #faccb8;
            border-color: #cf6161;
        }


@media only screen and (max-width: 800px) {
    #searchapi .searchzone {
        width: 100%;
    }

    #searchapi #results ul {
        width: 100%;
    }
}
