﻿.search-results__data:first-child {
    font-style: italic;
}

#LoadMoreResults {
    background-color: #37589a;
    margin-bottom: 3em;
    margin-top: 1em;
}

/****Media queries****/

@media (max-width: 764px) {
    .search-results__table, .search-results__body, .search-results__header,
    .search-results__row--header,
    .search-results__row, .search-results__data {
        display: block;
    }

    .search-results__table {
        box-shadow: 0 0 0 0;
        margin-left: auto;
        margin-right: auto;
    }

    .search-results__data {
        /*Behave like a "row"*/
        border-top: none !important;
        border-bottom: 1px solid #eee;
        border-right: 1px solid #eee;
        position: relative;
        padding-left: 30% !important;
        white-space: normal;
        text-align: left;
    }

    .search-results__row--header {
        display: none;
    }

    .search-results__row {
        border: 1px solid #37589A;
        border-radius: 5px;
        margin-bottom: 1rem;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    }

    .search-results__data:first-child {
        background-color: #37589a;
        color: #fff;
        font-size: 1.1em;
    }

    .search-results__data:before {
         /*Now like a table header*/ 
        position: absolute;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
        content: attr(data-title);
    }

    .hide {
        display: none;
    }

    .depot {
        display: none;
    }
}

@media (min-width: 1024px) {

    #LoadMoreResults {
        margin-top: 2em;
    }
}
