/* Header
-------------------------------- */
header {
    height: 100px;
    background-color: #FFFFFF;
}
header + #content {
    margin-top: 100px;
}

/* Content main wrapper
-------------------------------- */

#content {
    min-height: 70vh;
}

/* Footer
-------------------------------- */

footer {
    min-height: 250px;
    background-color: #20272c;
    color: white;
}

/* Search menu
--------------------------------- */
#menu {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin: 30px 0;
}

#menu > li {
    width: 14%;
    padding: 5px;
    border-right: 1px solid black;
    text-align: center;

}

#menu > li > a:link {
    color:#e37b00;
}

#menu > li > a:visited {
    color: #e37b00;
}

#menu > li > a:hover {

}

#menu > li > a:active {
    color: #e37b00;
}

/* Search filters
-------------------------------- */

#search-fiters-wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    margin: 50px 0 30px 0;
}

#search-fiters-wrapper > div {
    color: #e37b00;
    font-size: 18px;
}

#search-fiters-wrapper > div:hover {
    cursor: pointer;
}

/* Search text input field properties*/
.search-text{
    font-size: 1.1em;
}
/* Search input field placeholder*/
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #e37b00;
}
::-moz-placeholder { /* Firefox 19+ */

    color: #e37b00;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #e37b00;
}
:-moz-placeholder { /* Firefox 18- */
    color: #e37b00;
}

/* Suggest result class*/
.suggest-active{
    color: #e37b00;
    font-weight: bold;
}

/* Search filter forms
-------------------------------- */
.filter-form {
    display: none;
}
.filter-form.is-active{
    display:block
}

/* Search results
-------------------------------- */

#search-results {
    margin: 30px 0;
}

#search-results > .row {
    margin-bottom: 20px;
}

/* Pagination
-------------------------------- */
.pagination-wrapper {
    float: left;
    margin: 0 0 20px 0;
}

.pagination {
    display: inline-block;
}

.pagination:empty {
    margin: 0 0 5px 0;
}

.pagination span {
    font-size: 12px;
    color: #000;
    border: 1px solid #cecece;
    height: 30px;
    display: inline-block;
    box-sizing: border-box;
    margin: 0 10px 10px 0;
    line-height: 28px;
    text-align: center;
    padding: 0 5px;
    min-width: 30px;
    cursor: pointer;
}

.pagination span:hover {
    text-decoration: underline;
}

.pagination .curr {
    border: 1px solid #676767;
    line-height: 28px;
}

.pagination .curr:hover {
    cursor: default;
    text-decoration: none;
}

.pagination span#nxt,
.pagination span#prv {
    border: none;
    font-size: 14px;
    color: #333;
}

.pagination span#nxt:hover,
.pagination span#prv:hover {
    color: #000;
}

/*Google maps classes*/
.mapouter {
    text-align: right;
    height: 400px;
    width: 800px;
}
.gmap_canvas {
    overflow: hidden;
    background: none !important;
    height: 500px;
    width: 800px;
}
