﻿
@font-face {
    font-family: "Neo Sans";
    src: url('../fonts/NeoSansStd-Regular.otf') format('opentype');    
}
@font-face {
    font-family: "Neo Sans Light";
    src: url('../fonts/NeoSansStd-Light.otf') format('opentype');
}

body {
    font-family: 'Neo Sans','Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    color: rgb(0,81,146);
}

p{
    font-family: 'Neo Sans Light';
}


#map{
    height: 600px;
    width: 100%;
}
.result-list{
    height: 600px;
    overflow-y: auto;
}


.result-item {
    border-top: 1px solid rgb(0,81,146);
    cursor: pointer;
    padding: 0.5em;
    font-size: 0.8em;
}

    .result-item:hover .title{
        text-decoration: underline;
    }


    .result-item p {
        margin: 0.25em;
    }

    .result-item .title {
        color: #1E599B;
        font-weight: bold;
        font-size: 1.2em;
    }
    .result-item .dist {
        color: #1E599B;
        float: right;
        font-size: 0.75em;
    }

    .result-item.active {
        background-color: #1E599B;
        color: white;
    }
        .result-item.active .title,
        .result-item.active .dist {
            color: white;
        }



.baxi-btn {
    padding: 0.25em;
    border-radius: 5px;
    background-color: #0565d0;
}

    .baxi-btn input
    {
        padding: 0.25em;       
        height: auto;
    }

    .baxi-btn button {
        background-color: #0565d0;
        color: white;
        border: none;
        height: auto;
    }