/* The search bar and the filter chips below it read as one connected panel:
   overflow:hidden + a single border-radius here clip every child to the same
   rounded shape, so it doesn't matter which inner cards end up rendering -
   the bar keeps the full primary color (the main action), the chips row below
   it uses a lighter tint of the same color (secondary, "narrow the results") */
.search_filters_panel {
    width: var(--portalWidth);
    margin: 16px auto 10px auto;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 10px 0 rgba(0, 0, 0, 0.09);
}

.search_filters_panel_chips {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: var(--primarycolor-light);
    padding: 10px;
}

@media (max-width: 768px) {
    .search_filters_panel {
        width: calc(100% - 15px);
    }
}

.ef_status {
    display: none;
    align-items: center;
    gap: 8px;
    width: var(--portalWidth);
    margin: 0 auto 10px auto;
    font-size: smaller;
    color: #4f4f4f;
}

.ef_status.ef_status_visible {
    display: flex;
}

.ef_spinner {
    width: 12px;
    height: 12px;
    border: 2px solid #d8d8d8;
    border-top-color: var(--primarycolor);
    border-radius: 50%;
    display: inline-block;
    animation: ef_spin 0.7s linear infinite;
}

@keyframes ef_spin {
    to {
        transform: rotate(360deg);
    }
}

.ef_show_more {
    display: none;
    width: var(--portalWidth);
    box-sizing: border-box;
    margin: 11px auto;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    background-color: #fefefe;
    color: var(--primarycolor);
    font-weight: bold;
    border: 1px solid var(--primarycolor);
    border-radius: 5px;
}

.ef_show_more:hover {
    background-color: var(--primarycolor);
    color: white;
}

@media (max-width: 768px) {
    .ef_status {
        width: calc(100% - 15px);
    }

    .ef_show_more {
        width: calc(100% - 15px);
    }
}
