﻿.fa-regular::before, .fa-solid::before {
    font-family: "Font Awesome 6 Free" !important;
}

.property-header-buttons {
    display: block;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: .5rem 1rem .5rem 0;
}

.property-header-buttons ul {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.property-header-buttons li {
    margin: 0 .25rem;
    border-radius: .25rem;
    background-color: #f8f9fa;
    display: inline-block;
}

.property-header-buttons a {
    display: block;
    font-family: var(--font-family-primary);
    font-size: 1rem;
    font-weight: normal;
    text-decoration: none;
    color: #000;
    border-bottom: 3px solid transparent;
    padding: .5rem 1rem;
    border-left: none;
    border-right: none;
    border-top: none;
    line-height: 2;
}

.property-header-buttons a.selected-tab, .property-header-buttons a.selected-tab:hover {
    border-bottom: 3px solid orange;
    color: #333;
}

.property-header-buttons .fa-solid::before, .property-header-buttons .fa-regular::before {
    color: #000;
    margin: .5rem .5rem 0 0;
}

.property-header-tabs ul {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    border-bottom: 1px solid #dee2e6;
    background: #f4f3e8;
    text-transform: uppercase;
    font-size: 100%;
}

.property-header-tabs li {
    margin-bottom: 0;
}

.property-header-tabs a {
    display: block;
    border-bottom: 3px solid transparent;
    border-left: none;
    border-right: none;
    border-top: none;
    font-size: 1rem;
    text-decoration: none;
    padding: .75rem 1rem;
    margin-bottom: -1px;
    background-color: transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    transition: none;
    color: #00aaef;
}

.property-header-tabs .selected-tab a {
    border-bottom: 3px solid orange;
    color: #333;
}

.property-header-tabs a:hover {
    color: #003050;
    border-bottom: 3px solid orange;
}

.property-caption-summary {
    margin: 0;
    padding: 0;
}

.property-caption-summary a {
    font-weight: 600;
    font-size: 1rem;
}

@media only screen and (min-width: 768px) {
    .property-header-buttons ul {
        flex-direction: row;
    }
}

@media only print {
    body {
        margin: 0;
        padding: 0;
    }

    body > header {
        display: none;
    }

    th {
        white-space: nowrap;
    }

    tfoot {
        display:table-row-group;
    }
}