#loading-indicator {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.loading-wrapper {
    position: sticky;
    top: 50%;
    left: 50%;
    z-index: 110;
    text-align: center;
    margin-top: 6rem;
}

.loading-spinner {
    border-top: 8px solid #ffcc00;
    border-radius: 50%;
    width: 165px;
    height: 165px;
    animation: spin 2s linear infinite;
    margin: 0 auto;
    position: relative;
}

.loading-message {
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    position: absolute;
    left: 49%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
}

.loading-message::after {
    content: '';
    animation: ellipsis 2s infinite;
}

.loading-background {
    background-color: rgba(80, 80, 80, 0.8);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; /* Cover the entire parent */
    left: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes ellipsis {
    0%, 20% {
        content: 'Loading';
    }
    40% {
        content: 'Loading.';
    }
    60% {
        content: 'Loading..';
    }
    80%, 100% {
        content: 'Loading...';
    }
}

.media {
    border: 1px solid #dddddd;
    margin-top: 1rem;
}

.media-body {
    padding: 1rem;
}

.media-footer {
    background-color: #eeeeee;
}

.offering-title{
    font-size:1.5rem;
}
.offering-logo {
    width: 100px;
    height: auto;
}

.offering-badge {
    float: right;
    border-radius: 200px;
    border: 1px solid #aaaaaa;
    color: #888888;
    padding: 0.25rem 0.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.taxonomy {
    font-size: 0.75rem;
}

.taxonomy-name {
    font-weight: bold;
    margin-right: 0.25rem;
}

.taxonomy-term {
    color:#444444;
}
.taxonomy-term:hover {
    color:#000000;
}

.filter-wrapper {
    position: sticky;
    top: 5rem;
    background: #eee;
    padding: 1rem;
    margin-top: 1.5rem;
}

.filter-heading {
    font-weight: bold;
    text-transform: uppercase;
}
.filter {
    width: 100%;
    margin: .25rem 0;
}

.resource-block {
    padding: 1rem;
    display: block;
}