body {
    font-family: 'Source Sans Pro', sans-serif;
}

.btn {
    font-weight: 600;
    text-transform: uppercase;
}

img.account-icon {
    object-fit: cover;
    object-position: center;
}

.account-icon {
    position: relative;
    display: flex;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: white;
    color: var(--primary);
    align-items: center;
    justify-content: center;
    font-weight: 300;
    font-size: 1.5rem;
    font-family: Antonio, sans-serif;
    overflow: hidden;
}

.account-icon.large {
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
}

img.account-icon[alt]:after {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: white;
    color: var(--primary);
    align-items: center;
    justify-content: center;
    content: attr(alt);
}

#dash-header .navbar-nav > *:not(:first-child) {
    margin-left: 1rem;
}

#dash-content {
    position: relative;
}

#dash-content-header {
    background-color: var(--primary);
    color: white;
    border-top: 1px solid rgba(100%, 100%, 100%, 0.2);
    padding: 1rem 2rem;
}
#dash-content-header h1 {
    font-weight: bold;
}
#dash-content-header p {
    color: rgba(100%, 100%, 100%, 0.5);
}

#links-footer {
    background-color: var(--primary);
}
#links-footer a {
    color: white;
    font-size: 0.8rem;
}

body {
    min-height: 100vh;
    background-color: #f7faff;
}

.announcement p:last-child {
    margin-bottom: 0;
}

#dash-header nav {
    padding: 0.5rem 2rem;
}

#dash-header .nav-link {
    color: white;
}

#dash-header .navbar-brand img {
    max-height: 5rem;
}

#dash-content-body {
    padding: 1rem 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
#dash-content-body section h2 {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 0;
}
#dash-content-body section:not(:first-child) {
    margin-top: 1.5rem
}

.slider .slick-list {
    margin-left: -15px;
    margin-right: -15px;
}

.slider .slick-slide {
    margin-left: 15px;
    margin-right: 15px;
}

h3 {
    font-size: 1.25rem;
    font-weight: bold;
}

.upcoming-item img {
    height: 15rem;
    width: 100%;
    object-fit: cover;
    object-position: center;
    background-color: white;
    margin-bottom: 1rem;
}

#dash-content-body a {
    font-weight: 600;
}

.font-weight-medium {
    font-weight: 600;
}

.search-input {
    position: relative;
}
.search-input input {
    padding-left: 2.25rem;
}
.search-input:before {
    content: '\f002';
    font-family: 'Font Awesome 5 Pro', serif;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 0.75rem;
    transform: translateY(-45%);
    transform-origin: center center;
}

.table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.table tbody {
    background-color: white;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(1, 1, 1, 0.5);
    transition: opacity 0.5s;
}
#filter-sidebar .overlay {
    opacity: 0;
    pointer-events: none;
}
#filter-sidebar.active .overlay {
    opacity: 1;
    pointer-events: unset;
}

.filter-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    background-color: var(--primary);
    color: white;
    transform: translateX(-100%);
    transition: transform 0.5s;
    padding: 2rem;
}
#filter-sidebar.active .filter-sidebar {
    transform: translateX(0);
}
.filter-sidebar .h1 {
    font-weight: bold;
}
.filter-sidebar .input-group > label {
    text-transform: uppercase;
    font-weight: 600;
}

.rounded-xl {
    border-radius: 1rem;
}

#bios .card p:last-child {
    margin-bottom: 0;
}

.btn i {
    margin-right: 0.25rem;
}

#dash-content-header .nav-tabs .nav-link {
    color: rgba(100%, 100%, 100%, 0.5);
    text-transform: uppercase;
}

#dash-content-header .nav-tabs .nav-link.active, #dash-content-header .nav-tabs .nav-item.show .nav-link {
    background-color: transparent;
    border-color: transparent;
    color: white;
    margin-bottom: 0;
    border-bottom: 2px solid var(--warning);
    font-weight: bold;
}

#dash-content-header .nav-tabs .nav-link:hover, #dash-content-header .nav-tabs .nav-link:focus {
    border-color: transparent;
    border-bottom: 2px solid var(--warning);
}

.text-gray {
    color: #8796ac;
}

#dash-content-header .meeting-image {
    height: 10rem;
}

#responsibility-list .row {
    background-color: white;
}

#responsibility-list .row:not(:last-child) {
    border-bottom: 1px solid #8796ac;
}

.table th, .table td {
    vertical-align: middle;
}

.table tr:not(:first-of-type, .guest-attendance, .description-row) {
    border-top: 1px solid rgba(0, 0, 0, 0.5);
}

.table tr.description-row {
    color: rgba(0, 0, 0, 0.5);
}

.guest-attendance {
    color: rgba(0, 0, 0, 0.5);
}

.guest-attendance td {
    padding-top: 0;
}

.upcoming-item a {
    color: unset;
}
.upcoming-item a:hover {
    text-decoration: none;
}

.alerts {
    position: fixed;
    bottom: 0;
    right: 1rem;
    z-index: 9999;
    min-width: 50%;
}

#communications .announcement:not(:last-child) {
    margin-bottom: 0.5rem;
}

.fixed-w {
    width: 1.25rem;
}

label {
    font-weight: bold;
}

#billing:not(.edit-mode) #add-billing-form {
    display: none;
}

#billing.edit-mode #no-billing-message {
    display: none;
}

#tokenform iframe {
    height: 10.5rem;
}

#tokenform {
    position: relative;
}

#tokenform.border-success:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--success);
    opacity: 0.2;
}

#acting-as {
    background-color: black;
    color: white;
}

.template {
    display: none;
}

#line-items .gx-2 > div:not(:first-child) {
    padding-left: 0.25rem;
}
#line-items .gx-2 > div:not(:last-child) {
    padding-right: 0.25rem;
}

.index-links a {
    white-space: nowrap;
}

.splash-header {
    background-color: var(--primary);
}

.splash-header img {
    max-height: 5rem;
}

@media (max-width: 992px) {
    #dash-header nav {
        padding: 0.5rem 1rem;
    }

    #dash-header .navbar-nav {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    #dash-header .nav-item {
        width: 30%;
        text-align: center;
    }

    .filter-sidebar {
        width: 90%;
    }

    #dash-content-body {
        padding: 0.5rem 1rem;
    }
}
